Skip to content

Instantly share code, notes, and snippets.

@jborden
Forked from cornfact/cityChicago.csv
Last active May 3, 2017 04:03
Show Gist options
  • Save jborden/2692e6f9896ed283ce5ba38ef0daa698 to your computer and use it in GitHub Desktop.
Save jborden/2692e6f9896ed283ce5ba38ef0daa698 to your computer and use it in GitHub Desktop.
Illinois counties, revised
city longitude latitude population
Bloomington-88.9936900 -88.99369 40.4842 76610
Chicago -87.65005 41.85003 2695598
Springfield -89.64371 39.80172 116250
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Illinois by county</title>
<script type="text/javascript" src="//d3js.org/d3.v3.min.js"></script>
<style type="text/css">
body {
margin: 0;
background-color: lightGray;
font-family: Helvetica, Arial, sans-serif;
}
svg {
background-color: white;
}
h1 {
font-size: 20px;
margin: 0;
}
p {
font-size: 12px;
margin: 5px 0 5px 0;
}
#container {
width: 550px;
margin-left: auto;
margin-right: auto;
margin-top: 50px;
padding: 50px;
background-color: white;
}
div.tooltip {
visibility:hidden;
position:absolute;
background: #ffffff;
width: 155px;
height: 10px;
padding-bottom: .5em;
padding-top: .25em;
padding-left: .5em;
font-size: 12px;
font-family: Helvetica, Arial, sans-serif;
text-align: left;
border: 1px solid;
pointer-events: none;
}
</style>
</head>
<body>
<div id="container">
<h1>Libertarian Party Support by County in Illinois</h1>
<p>Libertarian Party support is defined by the percentage of voters for Gary Johnson.</p>
<p>Source: <a href="http://www.elections.il.gov/ElectionInformation/DownloadVoteTotals.aspx">Illinois Election Information</a></p>
</div>
<div class="tooltip"></div>
<script type="text/javascript">
//crop revenue to map
var percent = "percent"
//Width and height
var w = 500;
var h = 800;
var padding = [ 20, 10, 30, 35 ]; //Top, right, bottom, left
//Define map projection
var projection = d3.geo.albers()
.center([ 6.5, 40 ])
.translate([ w/2, h/2 ])
.scale([ w * 15 ]);
//Define path generator
var path = d3.geo.path()
.projection(projection);
//define quantize scale to sort data values into areas of color
var color = d3.scale.quantize()
.range(["#2c7bb6", "#00a6ca","#00ccbc","#90eb9d","#ffff8c","#f9d057","#f29e2e","#e76818","#d7191c"]);
//Create SVG
var svg = d3.select("#container")
.append("svg")
.attr("width", w)
.attr("height", h);
//Load in revenue data
d3.csv("JohnsonVotes.csv", function(data) {
//set input domain for color scale
color.domain ([
d3.min(data, function(d) {return +d[percent]; }),
d3.max(data, function(d) {return +d[percent]; })
]);
var nameToPercent = {}
data.forEach(function(d){
nameToPercent[d.county.toUpperCase()] = +d.percent
})
//Load in GeoJSON data
d3.json("mapshaper_illinois.json", function(json) {
json.features.forEach(function(d){
var name = d.properties.COUNTY_NAM
var dataValue = nameToPercent[name]
d.properties.percent = dataValue
})
//Merge the revenue data and GEOjson into a single array
//Loop through once for each revenue data value
// for (var i = 0; i < data.length; i++) {
// debugger
// //grab county name
// var dataCounty = data[i].COUNTY_NAM;
// //grab data value, and convert from string to float
// var dataValue = +data[i][percent];
// //find the corresponding county inside GeoJSON
// for (var j = 0; j < json.features.length; j++) {
// //link to the FIPS code
// var jsonCounty = json.features[j].properties.CO_FIPS;
// if (dataCounty == jsonCounty) {
// //copy the data value into the GeoJSON
// json.features[j].properties.percent = dataValue;
// //Stop looking through the JSON
// break;
// }
// }
// }
//console.log(json);
//Bind data and create one path per GeoJSON feature
svg.selectAll("path")
.data(json.features)
.enter()
.append("path")
.attr("d", path)
.attr("stroke", "black")
.attr("stroke-width", .75 )
.style("fill", function(d) {
//get data value
var value = d.properties.percent
if (value) {
//if value exists...
return color(value);
}
});
var tooltip = d3.select("div.tooltip");
//Create tooltips
svg.selectAll("path")
.data(json.features)
.on("mouseover", function() {
return tooltip.style("visibility", "visible");
})
.on("mousemove", function(d) {
//debugger
tooltip.html('')
tooltip
.style("top", (d3.event.pageY + 16) + "px")
.style("left", (d3.event.pageX + 16) + "px")
tooltip
.append('div')
.text(d.properties.COUNTY_NAM + ": " + d.properties.percent + "%")
// .html('<div class="countyName">'+d.properties.COUNTY_NAM+'</div>' + ": " + d.properties.percent + " percent");
})
.on("mouseout", function() {
return tooltip.style("visibility", "hidden");
})
//Load in cities data
// d3.csv("cityChicago.csv", function(data) {
// //Create a circle for each city
// svg.selectAll("circle")
// .data(data)
// .enter()
// .append("circle")
// .attr("cx", function(d) {
// return projection([d.longitude, d.latitude])[0];
// })
// .attr("cy", function(d) {
// return projection([d.longitude, d.latitude])[1];
// })
// .attr("r", function(d) {
// //Use Math.sqrt to scale by area (not radius)
// return Math.sqrt(+d.population / w * .075);
// })
// //.attr("r", 10)
// .style("fill", "none")
// .attr("stroke", "black")
// .attr("stroke-width", 1);
// });
//end cities data
}); //end d3.json()
}); //end d3.csv
</script>
</body>
</html>
county percent
ALEXANDER 1.7
PULASKI 2.0
HARDIN 2.2
WAYNE 2.3
UNION 2.6
SCOTT 2.6
GALLATIN 2.7
COOK 2.7
EDWARDS 2.7
HAMILTON 2.7
WHITE 2.8
CALHOUN 2.8
POPE 2.9
FRANKLIN 2.9
MASSAC 2.9
GREENE 3.0
FAYETTE 3.0
JOHNSON 3.0
RICHLAND 3.1
WILLIAMSON 3.2
SALINE 3.2
LAWRENCE 3.2
WABASH 3.2
MARION 3.2
BROWN 3.3
CLAY 3.3
SHELBY 3.4
CASS 3.4
JEFFERSON 3.4
PIKE 3.4
ST. CLAIR 3.5
RANDOLPH 3.5
CLARK 3.5
JASPER 3.5
PERRY 3.5
VERMILION 3.6
ADAMS 3.7
EFFINGHAM 3.7
CRAWFORD 3.7
JERSEY 3.8
MOULTRIE 3.8
HANCOCK 3.9
MONROE 3.9
MACON 3.9
WASHINGTON 3.9
WILL 3.9
SCHUYLER 4.1
EDGAR 4.2
MACOUPIN 4.2
MADISON 4.3
KANKAKEE 4.3
IROQUOIS 4.3
WINNEBAGO 4.3
CUMBERLAND 4.3
CHRISTIAN 4.3
PUTNAM 4.4
LOGAN 4.4
JoDAVIESS 4.5
JACKSON 4.5
LAKE 4.5
DOUGLAS 4.5
MARSHALL 4.5
HENDERSON 4.5
MORGAN 4.6
WARREN 4.7
MONTGOMERY 4.7
SANGAMON 4.7
STEPHENSON 4.7
LaSALLE 4.7
KANE 4.7
CLINTON 4.7
BOONE 4.7
COLES 4.7
PEORIA 4.7
ROCK ISLAND 4.8
DuPAGE 4.8
MENARD 4.8
WOODFORD 4.8
OGLE 4.9
McDONOUGH 4.9
GRUNDY 5.0
MASON 5.0
FULTON 5.0
KNOX 5.0
KENDALL 5.0
CHAMPAIGN 5.1
McHENRY 5.1
WHITESIDE 5.1
HENRY 5.1
FORD 5.1
LIVINGSTON 5.1
BUREAU 5.2
TAZEWELL 5.3
CARROLL 5.4
STARK 5.5
MERCER 5.6
DeWITT 5.8
DeKALB 5.8
LEE 5.9
BOND 6.0
McLEAN 6.1
PIATT 6.3
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"COUNTY_NAM":"MCHENRY","CO_FIPS":111},"geometry":{"type":"Polygon","coordinates":[[[-88.7074185,42.493512],[-88.6880874,42.4939573],[-88.6880166,42.4939595],[-88.6684377,42.4944097],[-88.6683725,42.494412],[-88.6484105,42.4948206],[-88.6337287,42.4949686],[-88.628879,42.495006000000004],[-88.6284528,42.4950085],[-88.6250193,42.4950378],[-88.6091787,42.4950038],[-88.60901870000001,42.495004],[-88.589317,42.4949615],[-88.5891923,42.4949606],[-88.5696637,42.4949162],[-88.5694702,42.4949147],[-88.55015,42.4948688],[-88.5500756,42.4948682],[-88.5306382,42.494816900000004],[-88.5304558,42.494816900000004],[-88.5108045,42.4947621],[-88.5107431,42.494763],[-88.4910236,42.4947748],[-88.4715594,42.4947565],[-88.4522012,42.4946204],[-88.4321543,42.4944918],[-88.4128621,42.4946503],[-88.3939119,42.4945968],[-88.3745582,42.4946358],[-88.3552369,42.4945178],[-88.3353883,42.494543300000004],[-88.3157775,42.494587100000004],[-88.2966025,42.49461],[-88.2769992,42.4946422],[-88.2573331,42.4946514],[-88.2378757,42.494830300000004],[-88.2188013,42.4950184],[-88.1995578,42.4950875],[-88.1992885,42.488029499999996],[-88.1989977,42.473613],[-88.19872720000001,42.4591138],[-88.1986753,42.444657899999996],[-88.1986264,42.4300559],[-88.1985807,42.4154729],[-88.19911450000001,42.401298],[-88.1988741,42.3865995],[-88.1987233,42.372268],[-88.198627,42.3576174],[-88.1986396,42.3430971],[-88.1989339,42.3285988],[-88.1991436,42.3140554],[-88.1990355,42.2994366],[-88.1988478,42.2849105],[-88.1986923,42.2704478],[-88.1989191,42.2557795],[-88.1988336,42.2415347],[-88.1992219,42.226939200000004],[-88.1994368,42.212485],[-88.1995251,42.1976709],[-88.199825,42.1832226],[-88.2000663,42.1687293],[-88.1998443,42.1542529],[-88.2191957,42.154208],[-88.2193715,42.154208499999996],[-88.2385714,42.154240200000004],[-88.2386473,42.1542382],[-88.2576895,42.1540807],[-88.2772079,42.1538891],[-88.2965976,42.1538447],[-88.3163174,42.1537646],[-88.33589309999999,42.1538783],[-88.354534,42.1539774],[-88.3545343,42.1538506],[-88.3738219,42.153917],[-88.3930842,42.1538341],[-88.3933156,42.153833399999996],[-88.3936154,42.1538444],[-88.4130006,42.1538256],[-88.4324081,42.1537956],[-88.4517044,42.1537698],[-88.4719565,42.1534653],[-88.4914164,42.153385],[-88.500088,42.1535458],[-88.5000867,42.1536326],[-88.505937,42.1536542],[-88.5108467,42.1536762],[-88.5108985,42.1536766],[-88.5109726,42.1536758],[-88.5110244,42.1536762],[-88.511093,42.153674],[-88.511167,42.1536733],[-88.5302647,42.1536763],[-88.5303665,42.1536757],[-88.530522,42.153677],[-88.530709,42.1536757],[-88.5497123,42.1536736],[-88.5497919,42.1536742],[-88.5498419,42.1536732],[-88.5499196,42.1536738],[-88.5499678,42.1536728],[-88.5500159,42.1536718],[-88.5641558,42.1536419],[-88.5691696,42.1536306],[-88.5692141,42.153630899999996],[-88.5692659,42.1536313],[-88.569327,42.1536304],[-88.5693715,42.1536307],[-88.5694233,42.1536311],[-88.5695177,42.1536291],[-88.5884132,42.1536463],[-88.5885817,42.1536476],[-88.6006039,42.1535838],[-88.6028535,42.153571400000004],[-88.6077565,42.1535454],[-88.6078416,42.153546],[-88.60792119999999,42.1535466],[-88.6080268,42.153544600000004],[-88.6250195,42.1533741],[-88.6273965,42.1533884],[-88.6275132,42.153387800000004],[-88.6275666,42.153413],[-88.6277687,42.1533883],[-88.646837,42.15349],[-88.6469573,42.1534894],[-88.6663388,42.153419400000004],[-88.6663962,42.1534185],[-88.6665591,42.153418200000004],[-88.685913,42.153481299999996],[-88.6859611,42.1534816],[-88.6860407,42.1534821],[-88.7055854,42.1535406],[-88.7055867,42.1539016],[-88.7056105,42.167989],[-88.7056101,42.1680262],[-88.7056106,42.1681433],[-88.7056099,42.168360899999996],[-88.705566,42.1776372],[-88.7055424,42.1824888],[-88.7055419,42.1825384],[-88.7055417,42.1827065],[-88.7055432,42.1827409],[-88.70552670000001,42.1911011],[-88.7055192,42.1949003],[-88.7055141,42.1970713],[-88.7055131,42.197158099999996],[-88.7055133,42.1973027],[-88.7054303,42.210379],[-88.7053868,42.2115648],[-88.7054141,42.211608999999996],[-88.705415,42.2116903],[-88.7054152,42.2118253],[-88.7053854,42.22622],[-88.7053861,42.2263136],[-88.7054089,42.2300578],[-88.7054682,42.2408052],[-88.7054702,42.2409512],[-88.7054823,42.250030100000004],[-88.7054594,42.255141699999996],[-88.7054565,42.2553828],[-88.7055726,42.269815],[-88.7056552,42.2840979],[-88.7056543,42.2841792],[-88.7056555,42.2842329],[-88.7056354,42.298733999999996],[-88.7056368,42.2987725],[-88.7056714,42.3131966],[-88.7056714,42.3133522],[-88.7056707,42.3134101],[-88.7055425,42.327791500000004],[-88.7055416,42.3278727],[-88.7055744,42.342287999999996],[-88.7055736,42.3423555],[-88.7055741,42.3423933],[-88.7055761,42.3424615],[-88.7056682,42.3568852],[-88.7056677,42.3569306],[-88.7056685,42.3570202],[-88.7056692,42.3571166],[-88.7056673,42.3711772],[-88.7056656,42.371319],[-88.7056652,42.3715118],[-88.7056628,42.375030699999996],[-88.7057738,42.385809800000004],[-88.7057751,42.3858566],[-88.7057738,42.385964],[-88.7057752,42.386006699999996],[-88.7057193,42.400072],[-88.7057188,42.4001133],[-88.705718,42.400178],[-88.7057498,42.4004764],[-88.7057532,42.400506],[-88.705725,42.4005334],[-88.7058708,42.4149908],[-88.7061249,42.4294074],[-88.7061287,42.4295561],[-88.7061592,42.4348708],[-88.7062056,42.443879],[-88.7062069,42.4440064],[-88.7064335,42.4583279],[-88.7064349,42.4583693],[-88.7064355,42.4584725],[-88.7064428,42.4586434],[-88.7068935,42.4728153],[-88.7069232,42.4729849],[-88.7069261,42.473055099999996],[-88.7069304,42.4731612],[-88.7073061,42.4874012],[-88.7073087,42.487499],[-88.7073109,42.4876243],[-88.7073138,42.4876946],[-88.7074022,42.4934678],[-88.7074185,42.493512]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"BOONE","CO_FIPS":7},"geometry":{"type":"Polygon","coordinates":[[[-88.7074185,42.493512],[-88.7074022,42.4934678],[-88.7073138,42.4876946],[-88.7073109,42.4876243],[-88.7073087,42.487499],[-88.7073061,42.4874012],[-88.7069304,42.4731612],[-88.7069261,42.473055099999996],[-88.7069232,42.4729849],[-88.7068935,42.4728153],[-88.7064428,42.4586434],[-88.7064355,42.4584725],[-88.7064349,42.4583693],[-88.7064335,42.4583279],[-88.7062069,42.4440064],[-88.7062056,42.443879],[-88.7061592,42.4348708],[-88.7061287,42.4295561],[-88.7061249,42.4294074],[-88.7058708,42.4149908],[-88.705725,42.4005334],[-88.7057532,42.400506],[-88.7057498,42.4004764],[-88.705718,42.400178],[-88.7057188,42.4001133],[-88.7057193,42.400072],[-88.7057752,42.386006699999996],[-88.7057738,42.385964],[-88.7057751,42.3858566],[-88.7057738,42.385809800000004],[-88.7056628,42.375030699999996],[-88.7056652,42.3715118],[-88.7056656,42.371319],[-88.7056673,42.3711772],[-88.7056692,42.3571166],[-88.7056685,42.3570202],[-88.7056677,42.3569306],[-88.7056682,42.3568852],[-88.7055761,42.3424615],[-88.7055741,42.3423933],[-88.7055736,42.3423555],[-88.7055744,42.342287999999996],[-88.7055416,42.3278727],[-88.7055425,42.327791500000004],[-88.7056707,42.3134101],[-88.7056714,42.3133522],[-88.7056714,42.3131966],[-88.7056368,42.2987725],[-88.7056354,42.298733999999996],[-88.7056555,42.2842329],[-88.7056543,42.2841792],[-88.7056552,42.2840979],[-88.7055726,42.269815],[-88.7054565,42.2553828],[-88.7054594,42.255141699999996],[-88.7054823,42.250030100000004],[-88.7054702,42.2409512],[-88.7054682,42.2408052],[-88.7054089,42.2300578],[-88.7053861,42.2263136],[-88.7053854,42.22622],[-88.7054152,42.2118253],[-88.705415,42.2116903],[-88.7054141,42.211608999999996],[-88.7053868,42.2115648],[-88.7054303,42.210379],[-88.7055133,42.1973027],[-88.7055131,42.197158099999996],[-88.7055141,42.1970713],[-88.7055192,42.1949003],[-88.70552670000001,42.1911011],[-88.7055432,42.1827409],[-88.7055417,42.1827065],[-88.7055419,42.1825384],[-88.7055424,42.1824888],[-88.705566,42.1776372],[-88.7056099,42.168360899999996],[-88.7056106,42.1681433],[-88.7056101,42.1680262],[-88.7056105,42.167989],[-88.7055867,42.1539016],[-88.7055854,42.1535406],[-88.7250911,42.1535985],[-88.7251818,42.1535977],[-88.7446591,42.1535517],[-88.744835,42.1535514],[-88.7500857,42.1535383],[-88.7636767,42.1535425],[-88.7639674,42.1535428],[-88.7640303,42.1535432],[-88.7641229,42.1535438],[-88.7641951,42.1535442],[-88.7642932,42.153543400000004],[-88.7835573,42.1535119],[-88.7837054,42.1535127],[-88.8029009,42.1534791],[-88.8029675,42.1534781],[-88.8031397,42.1534791],[-88.8033322,42.1534788],[-88.8222037,42.1534403],[-88.8223722,42.1534412],[-88.8412703,42.1533324],[-88.8416554,42.1533289],[-88.8417369,42.153328],[-88.841885,42.1533288],[-88.8420034,42.153328099999996],[-88.8421794,42.1533249],[-88.8612251,42.1530567],[-88.8613195,42.153054499999996],[-88.8613936,42.1530549],[-88.8614732,42.1530539],[-88.8615861,42.1530517],[-88.8751355,42.152927500000004],[-88.8808231,42.1529083],[-88.8809434,42.1529089],[-88.8809971,42.1529091],[-88.8811156,42.152907],[-88.9001852,42.152626],[-88.9006184,42.1526198],[-88.9198481,42.1524302],[-88.9200277,42.1524297],[-88.9392996,42.1522703],[-88.9397384,42.1522668],[-88.9397407,42.1526553],[-88.9398094,42.166755],[-88.9398091,42.1667963],[-88.9398103,42.166872],[-88.9398127,42.167030499999996],[-88.9399259,42.1813615],[-88.9399287,42.1814649],[-88.9399301,42.1815255],[-88.940089,42.1959323],[-88.9400919,42.196026599999996],[-88.9403659,42.2104138],[-88.9403698,42.2106218],[-88.9405997,42.2249788],[-88.9406007,42.225072499999996],[-88.940831,42.2393921],[-88.9408341,42.239697899999996],[-88.9409304,42.2500483],[-88.9409325,42.2540525],[-88.9409332,42.2544162],[-88.9409369,42.2685526],[-88.9409386,42.268581499999996],[-88.9409373,42.2687289],[-88.9409372,42.2689672],[-88.9408871,42.2831059],[-88.9408864,42.2832023],[-88.9408852,42.2833387],[-88.9408845,42.2834323],[-88.940725,42.2975538],[-88.9407223,42.2976639],[-88.9407199,42.297949],[-88.9407195,42.2979931],[-88.940515,42.3121761],[-88.9405111,42.312424],[-88.9405078,42.312602999999996],[-88.9405075,42.3126333],[-88.9403842,42.3187908],[-88.9402245,42.3266407],[-88.9402261,42.3266697],[-88.9402287,42.3268074],[-88.9403066,42.3411647],[-88.9403078,42.341244599999996],[-88.9403082,42.3414181],[-88.9402174,42.3557428],[-88.9402213,42.3559397],[-88.9402916,42.3604533],[-88.94044099999999,42.3702159],[-88.940494,42.3750337],[-88.940614,42.3847657],[-88.9407685,42.3972893],[-88.9407916,42.3992106],[-88.9407932,42.3992409],[-88.9408153,42.4138529],[-88.940815,42.4138859],[-88.9406896,42.4283537],[-88.940691,42.4284019],[-88.9406914,42.428583700000004],[-88.9406394,42.4429235],[-88.940641,42.4429593],[-88.9405027,42.4573949],[-88.9405208,42.4574487],[-88.9405217,42.467210800000004],[-88.9405213,42.4717483],[-88.9405201,42.4718819],[-88.9404807,42.4775276],[-88.94041849999999,42.4861546],[-88.9404175,42.4862647],[-88.9404166,42.486381800000004],[-88.940416,42.4864479],[-88.9403413,42.4927585],[-88.9403223,42.4950429],[-88.9394554,42.4950252],[-88.9354703,42.4949491],[-88.918457,42.4945709],[-88.9146953,42.4944884],[-88.9036202,42.4942699],[-88.8987289,42.4942075],[-88.8954916,42.494168200000004],[-88.8899889,42.4940129],[-88.8826684,42.493848299999996],[-88.8791763,42.4938018],[-88.875085,42.4937493],[-88.8748841,42.4937428],[-88.8596386,42.4934082],[-88.8577467,42.4933666],[-88.8400154,42.4928458],[-88.8399652,42.4928441],[-88.828523,42.4925453],[-88.8211798,42.4924416],[-88.8198386,42.4924107],[-88.8040298,42.4920743],[-88.8017454,42.4920256],[-88.8013882,42.492018],[-88.7954171,42.4920376],[-88.7928424,42.4919925],[-88.7851615,42.4919839],[-88.7847819,42.4919844],[-88.7745222,42.4919752],[-88.7653931,42.4920229],[-88.76534290000001,42.4920239],[-88.7643306,42.492030299999996],[-88.7629123,42.492068599999996],[-88.758647,42.4921214],[-88.7532527,42.4922967],[-88.7500813,42.4923682],[-88.7484638,42.4924162],[-88.7458263,42.4924951],[-88.7438143,42.4925488],[-88.7268709,42.4930066],[-88.726642,42.4930134],[-88.7074892,42.493509700000004],[-88.7074185,42.493512]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"OGLE","CO_FIPS":141},"geometry":{"type":"Polygon","coordinates":[[[-89.6880787,42.1994941],[-89.6684616,42.200195],[-89.6490727,42.2003277],[-89.6294542,42.2005899],[-89.6100316,42.2006214],[-89.5905054,42.200848300000004],[-89.590372,42.2008484],[-89.5716275,42.2009821],[-89.5711051,42.2009824],[-89.5519915,42.2008531],[-89.5328115,42.2008722],[-89.5122624,42.2009849],[-89.49294330000001,42.201276],[-89.4733129,42.2011437],[-89.4538007,42.2016446],[-89.4345886,42.2018864],[-89.4151171,42.2020892],[-89.3960272,42.2022176],[-89.3762553,42.2024332],[-89.3571317,42.2026189],[-89.3563795,42.202618],[-89.3379859,42.2027519],[-89.3376154,42.2027514],[-89.33708,42.2027548],[-89.3181861,42.2028947],[-89.3179804,42.202913699999996],[-89.3176598,42.2029215],[-89.2986592,42.2033902],[-89.2985484,42.2032908],[-89.2791651,42.2034142],[-89.2597252,42.203843],[-89.250041,42.2033621],[-89.24072340000001,42.2034722],[-89.2399953,42.2034802],[-89.2212599,42.2036937],[-89.2203872,42.2037028],[-89.2019482,42.203914],[-89.2012441,42.2039219],[-89.2006901,42.2039288],[-89.1824657,42.204180300000004],[-89.1813744,42.204194],[-89.1729977,42.2043096],[-89.1729665,42.193846199999996],[-89.1729567,42.1912675],[-89.1729417,42.188622699999996],[-89.172939,42.1884216],[-89.1728766,42.1790544],[-89.1728473,42.1743694],[-89.1728436,42.1739933],[-89.1728113,42.1695507],[-89.1728173,42.1683123],[-89.1728332,42.1646261],[-89.1728427,42.1626452],[-89.1728563,42.1594384],[-89.1728683,42.1565676],[-89.1728735,42.1550881],[-89.1728228,42.1502445],[-89.1727747,42.1502361],[-89.1546086,42.1502095],[-89.1540439,42.1502079],[-89.1533978,42.1502129],[-89.135042,42.1503412],[-89.1345885,42.1503454],[-89.134246,42.1503457],[-89.1250838,42.1504061],[-89.1155717,42.1504688],[-89.1152755,42.1504706],[-89.096653,42.150594999999996],[-89.0963068,42.150598],[-89.0960827,42.1505987],[-89.0771046,42.150741],[-89.0570263,42.1509356],[-89.0374441,42.151122],[-89.03739039999999,42.1511231],[-89.0373293,42.151122900000004],[-89.01795,42.1513937],[-89.0001073,42.1516401],[-88.998354,42.1516577],[-88.9788804,42.1518628],[-88.9596695,42.152061700000004],[-88.95931039999999,42.1520657],[-88.9397384,42.1522668],[-88.9396684,42.1380898],[-88.9396663,42.1376765],[-88.9394823,42.124992],[-88.9394668,42.1235041],[-88.9394637,42.1232107],[-88.9393062,42.1091113],[-88.9393004,42.1086938],[-88.9391469,42.0945763],[-88.9391409,42.0941823],[-88.9389874,42.0800715],[-88.9389814,42.0796747],[-88.9388272,42.0656531],[-88.9388265,42.0655154],[-88.9388202,42.0651585],[-88.9388465,42.0651063],[-88.9419955,42.0650766],[-88.94182789999999,42.0519393],[-88.9418256,42.0517754],[-88.941886,42.0376593],[-88.941887,42.0370959],[-88.9418994,42.0344616],[-88.9419005,42.034323900000004],[-88.9419433,42.023251],[-88.9419457,42.0225111],[-88.9418518,42.0116662],[-88.9418238,42.008544],[-88.9418189,42.008012199999996],[-88.9418418,42.005230499999996],[-88.941842,42.0051988],[-88.9418807,42.0000391],[-88.9418619,41.993548000000004],[-88.9418535,41.993443299999996],[-88.9416627,41.979124999999996],[-88.9416351,41.978892099999996],[-88.9418862,41.9788918],[-88.9417742,41.9646468],[-88.9417697,41.9642954],[-88.9416576,41.9502885],[-88.9416532,41.9499192],[-88.9415392,41.9357013],[-88.9415358,41.9354339],[-88.9414235,41.9212433],[-88.9414182,41.9207665],[-88.9413792,41.9064038],[-88.941378,41.9063322],[-88.9411943,41.8920774],[-88.9411891,41.8918114],[-88.9607841,41.8915788],[-88.9614315,41.8915761],[-88.9617026,41.891576],[-88.9801005,41.8913501],[-88.9808438,41.8913394],[-88.9811666,41.8913367],[-88.9996269,41.8911315],[-89.0000568,41.891103],[-89.0001471,41.8911116],[-89.0006705,41.891163399999996],[-89.0008179,41.891175000000004],[-89.0008622,41.891173800000004],[-89.01904880000001,41.891036400000004],[-89.0205814,41.891019],[-89.0385783,41.8908256],[-89.0393778,41.890810099999996],[-89.0394986,41.8908071],[-89.0534498,41.8905395],[-89.0537319,41.890537800000004],[-89.0730982,41.8904325],[-89.073148,41.8904327],[-89.0924927,41.8902208],[-89.0925517,41.8902196],[-89.1119406,41.890006299999996],[-89.12507360000001,41.8898629],[-89.1313809,41.8898023],[-89.1314878,41.8897999],[-89.1508987,41.8895487],[-89.1686308,41.8893917],[-89.1686339,41.8895282],[-89.1688201,41.8895245],[-89.1877534,41.8892137],[-89.1879194,41.8892114],[-89.2071491,41.888961800000004],[-89.2075327,41.8889572],[-89.2265242,41.8887521],[-89.2269539,41.8887476],[-89.2460375,41.8885466],[-89.2500782,41.8884558],[-89.2642785,41.8882775],[-89.2820559,41.8881923],[-89.3025189,41.8879021],[-89.3218332,41.888188400000004],[-89.3410525,41.8881655],[-89.3602903,41.8880818],[-89.3603659,41.8880819],[-89.3602199,41.902784499999996],[-89.37946170000001,41.9027832],[-89.3982092,41.9027673],[-89.4013747,41.9025385],[-89.4015496,41.9014142],[-89.4020455,41.9002902],[-89.4024485,41.8996705],[-89.4036893,41.8987069],[-89.4044908,41.8979],[-89.405329,41.897250299999996],[-89.40597700000001,41.8968044],[-89.4060158,41.8967768],[-89.4067617,41.8961987],[-89.4078323,41.895507800000004],[-89.4079079,41.8954954],[-89.408819,41.8955002],[-89.4100293,41.8951567],[-89.41009940000001,41.895136],[-89.4106717,41.894673499999996],[-89.4113204,41.8935936],[-89.4114911,41.8927725],[-89.4117029,41.8916041],[-89.4114972,41.8908985],[-89.4114984,41.8899615],[-89.4113112,41.8892255],[-89.4109689,41.8886933],[-89.4111783,41.887926],[-89.4108561,41.8874669],[-89.4109127,41.8865161],[-89.4117726,41.88604],[-89.4124808,41.8859537],[-89.41255459999999,41.8859413],[-89.4132404,41.886041],[-89.4140033,41.8865183],[-89.4149357,41.8870688],[-89.4160914,41.8875409],[-89.4172228,41.888221],[-89.4173205,41.8882721],[-89.4182381,41.8888928],[-89.419355,41.8894599],[-89.4202693,41.8898215],[-89.4214341,41.8904424],[-89.4222523,41.8910189],[-89.4228827,41.8912508],[-89.4242138,41.891654],[-89.4253751,41.892145299999996],[-89.4264401,41.8930223],[-89.4271846,41.8936125],[-89.427929,41.8942331],[-89.4285,41.8950133],[-89.4285954,41.8954598],[-89.4282887,41.8960494],[-89.427604,41.8964955],[-89.4275283,41.8965051],[-89.4247245,41.8968906],[-89.4246489,41.8969015],[-89.4232543,41.8971735],[-89.4217079,41.8979359],[-89.4204307,41.8987287],[-89.4194007,41.899450099999996],[-89.41854000000001,41.9004458],[-89.4182088,41.9013426],[-89.418156,41.902385699999996],[-89.4181633,41.902447699999996],[-89.4183372,41.903575000000004],[-89.4189156,41.9042216],[-89.4198479,41.9051138],[-89.4210498,41.905822799999996],[-89.4224989,41.9064728],[-89.4233542,41.9070217],[-89.4246524,41.9074387],[-89.425796,41.907467],[-89.4274171,41.9077615],[-89.4296492,41.9076732],[-89.4297267,41.9076705],[-89.43161190000001,41.907611],[-89.4316876,41.9076],[-89.4330636,41.907672399999996],[-89.4346054,41.9080481],[-89.4356548,41.9082305],[-89.4357286,41.9082333],[-89.4363686,41.9082667],[-89.43678,41.908288999999996],[-89.4368519,41.908283499999996],[-89.438058,41.9086672],[-89.4395261,41.9088829],[-89.4406142,41.9091866],[-89.441968,41.9094187],[-89.4442736,41.9097478],[-89.4456495,41.9100819],[-89.4474405,41.9103087],[-89.447518,41.9103073],[-89.449691,41.9102958],[-89.4497667,41.9102849],[-89.4519618,41.9103712],[-89.4543432,41.910646299999996],[-89.4559664,41.9108026],[-89.4560125,41.9108082],[-89.4560642,41.9108206],[-89.457394,41.9110939],[-89.4588271,41.911669],[-89.4607528,41.9119866],[-89.4626232,41.9123289],[-89.4637484,41.9124037],[-89.4650268,41.9125143],[-89.4651024,41.9125143],[-89.4664583,41.9125147],[-89.4665358,41.9125133],[-89.4680596,41.9124903],[-89.4681371,41.9124931],[-89.4696793,41.9123378],[-89.4697531,41.912322700000004],[-89.4712272,41.912044699999996],[-89.4712992,41.912024],[-89.4728323,41.9115986],[-89.4728969,41.9115711],[-89.4743876,41.9109472],[-89.4752511,41.9104389],[-89.4753065,41.910399],[-89.4761958,41.909797],[-89.4767752,41.909376800000004],[-89.477862,41.908367],[-89.4784562,41.9073309],[-89.4793715,41.9060606],[-89.4798293,41.9049225],[-89.4804014,41.9037707],[-89.4813074,41.9021448],[-89.4944438,41.902149],[-89.5135305,41.9023605],[-89.5327944,41.9026019],[-89.5523236,41.9022889],[-89.5712995,41.9021799],[-89.5902568,41.901977],[-89.6097119,41.9017431],[-89.6284957,41.9015784],[-89.6283836,41.9162288],[-89.6283098,41.9162289],[-89.6285256,41.930548],[-89.6476052,41.9304104],[-89.6667596,41.9307024],[-89.6668426,41.9307023],[-89.6861091,41.9307734],[-89.6861262,41.9449326],[-89.6859116,41.9593979],[-89.6858363,41.9735431],[-89.6860052,41.9878448],[-89.6858613,42.0025766],[-89.68587,42.025244900000004],[-89.6858685,42.0253758],[-89.6846748,42.0253776],[-89.6853683,42.0397215],[-89.6852706,42.053992],[-89.6859058,42.068506299999996],[-89.6859065,42.0687819],[-89.6857683,42.083068499999996],[-89.6857691,42.083344],[-89.6861927,42.097483499999996],[-89.6856891,42.1121284],[-89.6863068,42.1267741],[-89.6864584,42.1414478],[-89.6871728,42.1561149],[-89.6873635,42.1701159],[-89.6880598,42.1847467],[-89.6880787,42.1994941]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"WILL","CO_FIPS":197},"geometry":{"type":"Polygon","coordinates":[[[-88.2614567,41.7243864],[-88.2614639,41.7245932],[-88.2450003,41.724732700000004],[-88.2255259,41.7250012],[-88.2061775,41.725215399999996],[-88.1867028,41.7254776],[-88.1673134,41.725699],[-88.1480009,41.7261139],[-88.1268055,41.7266368],[-88.1075157,41.7269904],[-88.0881042,41.7275214],[-88.0829273,41.7276596],[-88.0689478,41.7279752],[-88.0499543,41.7283727],[-88.0494907,41.7283672],[-88.0302895,41.7288253],[-88.0298318,41.7142198],[-88.0292258,41.6998466],[-88.0292225,41.685249],[-88.0284678,41.6706296],[-88.0281563,41.6560154],[-88.0277779,41.641351900000004],[-88.0090818,41.6416719],[-87.9894865,41.642253600000004],[-87.9699785,41.6426955],[-87.9506969,41.6430268],[-87.9314596,41.643499],[-87.9121404,41.643843000000004],[-87.9114857,41.6293377],[-87.9112519,41.614914999999996],[-87.9108019,41.6003127],[-87.9105152,41.5858061],[-87.9100041,41.5713212],[-87.9096344,41.5567635],[-87.8902995,41.5570953],[-87.8708129,41.557159999999996],[-87.8513541,41.5575831],[-87.8318681,41.5579091],[-87.8123313,41.5582008],[-87.7927908,41.558478300000004],[-87.7922642,41.5438596],[-87.7921576,41.537700900000004],[-87.7903695,41.539054300000004],[-87.790437,41.5278492],[-87.7904575,41.5132378],[-87.7900224,41.4989562],[-87.7899925,41.4844566],[-87.7900554,41.469914],[-87.787256,41.4698468],[-87.7708004,41.4697532],[-87.7672957,41.4697416],[-87.7512547,41.4697782],[-87.748214,41.469687199999996],[-87.7321166,41.4696348],[-87.7289531,41.469616099999996],[-87.7127669,41.4695928],[-87.7097558,41.4694931],[-87.693549,41.469558],[-87.69075839999999,41.4695783],[-87.6740548,41.4697035],[-87.6711207,41.4696067],[-87.6544882,41.4696737],[-87.6519149,41.4696565],[-87.6351694,41.4697012],[-87.632566,41.4697092],[-87.616036,41.469778],[-87.61345850000001,41.4697764],[-87.5965314,41.4698832],[-87.594178,41.4698682],[-87.589059,41.4698908],[-87.5771507,41.4699459],[-87.574879,41.4699566],[-87.5577463,41.470062999999996],[-87.5555922,41.4700656],[-87.5383827,41.4700949],[-87.5363735,41.4700926],[-87.52554620000001,41.4702251],[-87.525577,41.4581107],[-87.5260602,41.4432734],[-87.525826,41.4289067],[-87.5261646,41.4142486],[-87.526051,41.399894599999996],[-87.5263393,41.3850671],[-87.5262865,41.3706365],[-87.52630669999999,41.3560855],[-87.5265299,41.341477],[-87.5265538,41.3270526],[-87.52671649999999,41.3125062],[-87.5267694,41.298084700000004],[-87.5307566,41.2980588],[-87.534407,41.298044000000004],[-87.5498175,41.2978282],[-87.5535121,41.2977996],[-87.5690516,41.2976717],[-87.5727778,41.29769],[-87.5881058,41.2975369],[-87.5921892,41.2974637],[-87.6073555,41.2973332],[-87.6113754,41.297308],[-87.6263571,41.2971005],[-87.630705,41.2971156],[-87.6456222,41.296990199999996],[-87.6499006,41.2969388],[-87.6577128,41.296846099999996],[-87.6645318,41.2967667],[-87.6689539,41.2967402],[-87.6838601,41.2966016],[-87.6883129,41.2966603],[-87.7030938,41.2964182],[-87.7060711,41.2963964],[-87.7074885,41.296387100000004],[-87.7222126,41.296282500000004],[-87.726894,41.296266],[-87.74214,41.2961252],[-87.7462176,41.2961212],[-87.7615698,41.2958333],[-87.7651135,41.2958292],[-87.781265,41.2957435],[-87.7844068,41.2957275],[-87.8008137,41.2955104],[-87.8037731,41.2954749],[-87.8202856,41.2952703],[-87.8233543,41.2952496],[-87.8395178,41.2951011],[-87.8423448,41.2950931],[-87.8589747,41.2948601],[-87.8617175,41.2948532],[-87.8783919,41.294665],[-87.8809079,41.294583],[-87.8976145,41.2943374],[-87.9002594,41.2942926],[-87.917057,41.294056499999996],[-87.9196774,41.293964],[-87.936584,41.2935888],[-87.9388282,41.2935558],[-87.956048,41.2933074],[-87.95823730000001,41.2932748],[-87.9662043,41.2931558],[-87.9753697,41.2930397],[-87.9776366,41.2930111],[-87.9947428,41.2926689],[-87.9966299,41.2926593],[-88.0138797,41.2924348],[-88.0136007,41.2781426],[-88.013332,41.263799399999996],[-88.0133308,41.2637704],[-88.0127151,41.2491759],[-88.0121983,41.2345741],[-88.0118795,41.220286200000004],[-88.01156950000001,41.2055956],[-88.0312065,41.2052578],[-88.0499204,41.205038],[-88.0701447,41.204709199999996],[-88.0895862,41.2044257],[-88.1084605,41.2040139],[-88.1283573,41.2037652],[-88.1476325,41.2035477],[-88.1668059,41.2031108],[-88.1860567,41.2028124],[-88.2053055,41.2024143],[-88.2240945,41.2019835],[-88.2436744,41.2016187],[-88.2439846,41.2160213],[-88.244349,41.230871199999996],[-88.2453291,41.2452225],[-88.2462332,41.2595425],[-88.2465824,41.2742344],[-88.2470845,41.2885747],[-88.2474975,41.302993799999996],[-88.2478073,41.3176682],[-88.2480738,41.3321158],[-88.2487151,41.3466801],[-88.249047,41.3613734],[-88.2490978,41.3756252],[-88.2495754,41.3897654],[-88.250204,41.4042764],[-88.2506977,41.4187584],[-88.2511676,41.433761000000004],[-88.251527,41.4480963],[-88.2515956,41.4509634],[-88.2521629,41.4627597],[-88.252681,41.4772604],[-88.2526818,41.4773156],[-88.2526848,41.4773542],[-88.2532802,41.491748],[-88.2532822,41.49179],[-88.2538672,41.5064227],[-88.2538685,41.5064516],[-88.2542786,41.520686],[-88.2542867,41.5209452],[-88.2546549,41.5354781],[-88.2552473,41.5500971],[-88.2558714,41.5643027],[-88.2558726,41.5643386],[-88.2565144,41.5786951],[-88.2565301,41.579043999999996],[-88.2565688,41.57954],[-88.2565728,41.579622799999996],[-88.2571473,41.592647400000004],[-88.2571896,41.5936487],[-88.2578679,41.6070409],[-88.2578888,41.6081108],[-88.2586392,41.6219971],[-88.2586297,41.6225181],[-88.2590701,41.6360867],[-88.2596734,41.6506107],[-88.2600812,41.6651848],[-88.2604564,41.679743200000004],[-88.2608002,41.6944142],[-88.2610246,41.7087818],[-88.2614567,41.7243864]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"LASALLE","CO_FIPS":99},"geometry":{"type":"Polygon","coordinates":[[[-88.9388475,41.6283587],[-88.938706,41.628360799999996],[-88.933772,41.6285267],[-88.9268478,41.6287601],[-88.9248742,41.6288266],[-88.9203265,41.6289234],[-88.9152661,41.6290328],[-88.9151687,41.629035099999996],[-88.9150621,41.6290373],[-88.9120852,41.6291235],[-88.8957765,41.6295918],[-88.8957122,41.6295929],[-88.8763969,41.6299429],[-88.8750611,41.6299677],[-88.8717415,41.6299547],[-88.8572991,41.6303944],[-88.8571539,41.6303992],[-88.8568911,41.630406],[-88.8378769,41.6309142],[-88.8377722,41.6309177],[-88.8376197,41.6309197],[-88.8317027,41.6310415],[-88.8183766,41.6313173],[-88.8182682,41.631319500000004],[-88.8182149,41.6313219],[-88.8092344,41.6313386],[-88.8090783,41.6313391],[-88.8085198,41.6313318],[-88.7898893,41.6310971],[-88.789757,41.631096299999996],[-88.7889487,41.6310916],[-88.7704382,41.630981500000004],[-88.7703537,41.6309824],[-88.7700855,41.6309794],[-88.751019,41.630810600000004],[-88.7509234,41.63081],[-88.7505798,41.6308189],[-88.7501994,41.6308303],[-88.7451365,41.6307961],[-88.7317242,41.630708999999996],[-88.7316691,41.6307086],[-88.71241,41.6305421],[-88.712241,41.630542399999996],[-88.6997231,41.6306436],[-88.6993535,41.6306715],[-88.6990249,41.63065],[-88.6989055,41.630650599999996],[-88.6798418,41.630891],[-88.6795313,41.630893],[-88.6602205,41.631044599999996],[-88.6601562,41.6310455],[-88.6601194,41.6310466],[-88.6410607,41.6311541],[-88.6409523,41.6311561],[-88.625057,41.6312794],[-88.6215627,41.6312747],[-88.6214672,41.6312754],[-88.602218,41.631463600000004],[-88.6022103,41.631215499999996],[-88.6020345,41.6250196],[-88.6016585,41.6168759],[-88.6016575,41.6168153],[-88.6011337,41.6023172],[-88.6006696,41.5904233],[-88.6005693,41.587862799999996],[-88.6005648,41.5877869],[-88.6005624,41.5876863],[-88.6003065,41.578816700000004],[-88.600143,41.5732492],[-88.6001436,41.5731996],[-88.6000985,41.5711922],[-88.5998122,41.5587809],[-88.599804,41.55857],[-88.5992399,41.5442762],[-88.5992354,41.5441962],[-88.5986654,41.5298112],[-88.5986625,41.5297519],[-88.5986569,41.5296202],[-88.5986556,41.5295795],[-88.5981766,41.5181906],[-88.5980536,41.515274],[-88.5980476,41.5151747],[-88.5980404,41.5150217],[-88.5974378,41.5007863],[-88.5974278,41.5005656],[-88.5974209,41.500396],[-88.5974052,41.5000554],[-88.5969453,41.4879564],[-88.5968785,41.4862092],[-88.596876,41.486121],[-88.5968577,41.4855639],[-88.5968364,41.4849558],[-88.5963953,41.4715829],[-88.5963928,41.471496099999996],[-88.5963917,41.4714409],[-88.5962844,41.466381999999996],[-88.5960846,41.4570928],[-88.5960836,41.457029399999996],[-88.5957696,41.4423833],[-88.5957704,41.4423226],[-88.5954137,41.4278704],[-88.5954125,41.4278249],[-88.5954071,41.4276773],[-88.5950517,41.4134096],[-88.5950521,41.4133807],[-88.5950464,41.4132593],[-88.5950427,41.4131242],[-88.5946222,41.3990806],[-88.5946158,41.398871],[-88.5945922,41.3985826],[-88.5941297,41.3853836],[-88.5940992,41.384501],[-88.594088,41.384240399999996],[-88.5940799,41.3840266],[-88.594079,41.3839563],[-88.5938037,41.3750188],[-88.5935868,41.3698277],[-88.5935783,41.3696415],[-88.5928352,41.3554101],[-88.5928189,41.355119099999996],[-88.5928055,41.354888700000004],[-88.5920503,41.3404889],[-88.5920384,41.3402847],[-88.5912237,41.3259863],[-88.5912209,41.3259173],[-88.5912072,41.325709],[-88.590394,41.3114627],[-88.5897574,41.2971528],[-88.5897417,41.2970934],[-88.5897339,41.2968562],[-88.5891561,41.2826845],[-88.5891519,41.2825852],[-88.5891495,41.2824914],[-88.5885258,41.2680778],[-88.5885247,41.2680254],[-88.5885222,41.2679399],[-88.5881265,41.253845],[-88.5881178,41.2535416],[-88.5881169,41.2534685],[-88.5882482,41.250054],[-88.5876046,41.2389338],[-88.5871993,41.224325300000004],[-88.5871527,41.2099427],[-88.5866694,41.1951843],[-88.5867579,41.1808051],[-88.5862416,41.1663522],[-88.5864781,41.1518249],[-88.5859966,41.1372451],[-88.5860071,41.1227047],[-88.5859445,41.1081774],[-88.6035218,41.108100300000004],[-88.6051666,41.1080849],[-88.6228147,41.107875899999996],[-88.6243671,41.107959],[-88.641943,41.1076887],[-88.6434744,41.1077024],[-88.6613296,41.107530600000004],[-88.6627853,41.107469],[-88.6806285,41.1073825],[-88.6818851,41.106965],[-88.6983905,41.107061099999996],[-88.7010126,41.1070345],[-88.7177991,41.1068637],[-88.7202589,41.1070011],[-88.7370009,41.1068797],[-88.7393087,41.1069192],[-88.75654,41.1067375],[-88.756901,41.1067342],[-88.7592995,41.1067283],[-88.77618,41.1066837],[-88.7791983,41.106779],[-88.7945114,41.1065886],[-88.7948725,41.1065852],[-88.7983115,41.1065385],[-88.8131105,41.1063378],[-88.8167746,41.1063891],[-88.8318411,41.1062284],[-88.8358069,41.1061869],[-88.8520461,41.1059722],[-88.855104,41.106121],[-88.8709264,41.1060201],[-88.8741713,41.1060564],[-88.8904668,41.1060547],[-88.8931463,41.1061151],[-88.9100073,41.106069500000004],[-88.931135,41.1059563],[-88.9311805,41.0885421],[-88.9311823,41.0881077],[-88.9312319,41.0741589],[-88.931234,41.0736817],[-88.9312874,41.0594997],[-88.93128899999999,41.0590804],[-88.9313244,41.0450857],[-88.9313298,41.0446527],[-88.9314503,41.0307161],[-88.931528,41.0301263],[-88.9312087,41.0154207],[-88.9314098,41.0011973],[-88.9314692,41.0006184],[-88.9308493,40.9866036],[-88.9309774,40.986085700000004],[-88.9310246,40.9719637],[-88.9310604,40.9715887],[-88.9313526,40.9573215],[-88.9312938,40.9569489],[-88.9313226,40.9519041],[-88.9312658,40.942669],[-88.9312719,40.9422649],[-88.931495,40.9276399],[-88.9507182,40.9273626],[-88.9700144,40.927024700000004],[-88.9892362,40.926884799999996],[-89.0083507,40.9264738],[-89.0275449,40.9260354],[-89.0476477,40.9256636],[-89.0476313,40.9403958],[-89.0474489,40.9549258],[-89.0473041,40.9692544],[-89.0472244,40.9697589],[-89.0472694,40.9839888],[-89.0469806,40.998615799999996],[-89.0469704,40.9990668],[-89.0478089,41.0133024],[-89.0474468,41.0279664],[-89.047562,41.0425797],[-89.047642,41.0570161],[-89.0477894,41.071745],[-89.0479372,41.086413],[-89.0480754,41.1047766],[-89.0658732,41.1046438],[-89.0667995,41.1046224],[-89.0854796,41.104489900000004],[-89.0861762,41.104467400000004],[-89.1048229,41.1044173],[-89.1052586,41.1044201],[-89.10992,41.1044588],[-89.1237485,41.104529299999996],[-89.1244641,41.1045329],[-89.1428265,41.1044484],[-89.1436183,41.1043515],[-89.1620961,41.104144399999996],[-89.1621599,41.1041446],[-89.1622343,41.1187028],[-89.1625064,41.132736],[-89.1625123,41.1330105],[-89.1624796,41.1474909],[-89.162302,41.1479923],[-89.1626548,41.1578776],[-89.1627278,41.162331800000004],[-89.1627393,41.1629682],[-89.1628228,41.1675113],[-89.162995,41.1770457],[-89.1629817,41.1779157],[-89.1627438,41.1925467],[-89.1628425,41.2070253],[-89.1628436,41.2071687],[-89.1628444,41.2073852],[-89.1628489,41.2213464],[-89.1628482,41.221851],[-89.1629431,41.227453600000004],[-89.1630891,41.2362167],[-89.1630969,41.2366772],[-89.16292,41.2503714],[-89.1629085,41.2512373],[-89.1629599,41.2649372],[-89.1629636,41.2660292],[-89.1630969,41.2805537],[-89.1632925,41.295046400000004],[-89.1632949,41.2953098],[-89.1635267,41.3099031],[-89.1637261,41.3206881],[-89.1637944,41.323164500000004],[-89.1639976,41.335424599999996],[-89.1639571,41.3377159],[-89.1641074,41.3465868],[-89.1641385,41.3499537],[-89.1642032,41.35243],[-89.1645434,41.3643869],[-89.1644725,41.366906900000004],[-89.1649289,41.37909],[-89.1649662,41.381194],[-89.1650992,41.3936738],[-89.1652535,41.3957974],[-89.165372,41.408255],[-89.1654277,41.410336799999996],[-89.165614,41.4231736],[-89.1656368,41.424873500000004],[-89.1658766,41.4376482],[-89.1660656,41.4522147],[-89.1660858,41.4540869],[-89.1662215,41.4668141],[-89.1662478,41.4689233],[-89.1663347,41.4759141],[-89.166423,41.4814699],[-89.1664495,41.4831724],[-89.1665409,41.495626200000004],[-89.1665548,41.4976527],[-89.1665419,41.4999161],[-89.1665421,41.5100867],[-89.1665401,41.5101212],[-89.1665411,41.5102907],[-89.166545,41.5125239],[-89.1665607,41.5247732],[-89.166562,41.5248986],[-89.1665623,41.527093199999996],[-89.1665715,41.5350345],[-89.1665719,41.5353351],[-89.1665549,41.539220900000004],[-89.1665544,41.5393105],[-89.1665343,41.5415615],[-89.1664842,41.5469786],[-89.1664706,41.5482757],[-89.1664157,41.5539148],[-89.1664174,41.5546853],[-89.1664169,41.554799700000004],[-89.1664174,41.555448999999996],[-89.16642709999999,41.5681995],[-89.1664268,41.5682436],[-89.1664284,41.568301500000004],[-89.1664387,41.5699598],[-89.1665284,41.5843823],[-89.1665391,41.5851887],[-89.1665405,41.5852797],[-89.1667059,41.5988725],[-89.1667198,41.5997974],[-89.1667228,41.599929700000004],[-89.1669254,41.6134328],[-89.166927,41.6134866],[-89.1669486,41.6143385],[-89.1672016,41.6250242],[-89.1672099,41.6286341],[-89.1671436,41.628667],[-89.1669195,41.6286622],[-89.1668441,41.6286606],[-89.1489436,41.6283287],[-89.1487819,41.628331],[-89.1486698,41.6283334],[-89.1484659,41.6283287],[-89.1483043,41.6283241],[-89.141732,41.6281903],[-89.1416181,41.6281873],[-89.1295609,41.627945499999996],[-89.1291311,41.6279359],[-89.1250625,41.627854400000004],[-89.1099764,41.6275695],[-89.1098827,41.6275678],[-89.1095447,41.6275626],[-89.0907018,41.627307200000004],[-89.0903381,41.6273019],[-89.0713888,41.6270431],[-89.0712657,41.627042700000004],[-89.0710766,41.6270393],[-89.0520267,41.6267234],[-89.0519808,41.6267232],[-89.0518154,41.626725300000004],[-89.0355799,41.6269824],[-89.03547879999999,41.6269848],[-89.0349148,41.626990899999996],[-89.016339,41.6272074],[-89.0162967,41.6272086],[-89.016214,41.6272096],[-89.0160009,41.6272129],[-89.0158484,41.627215],[-89.0000607,41.627482900000004],[-88.9971539,41.6275577],[-88.9968856,41.6275663],[-88.9967791,41.627568600000004],[-88.9967295,41.6275711],[-88.9963787,41.6275545],[-88.9925058,41.627604500000004],[-88.98535509999999,41.6276984],[-88.9775706,41.627801500000004],[-88.977442,41.6278023],[-88.9773795,41.6278034],[-88.9770745,41.627809],[-88.9581077,41.6281308],[-88.9580122,41.6281318],[-88.9575914,41.6281395],[-88.9389026,41.6283576],[-88.9388475,41.6283587]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"BUREAU","CO_FIPS":11},"geometry":{"type":"Polygon","coordinates":[[[-89.6315432,41.5849056],[-89.628547,41.5849005],[-89.6284754,41.5849006],[-89.6250404,41.5848946],[-89.6123216,41.585051899999996],[-89.6122757,41.5850533],[-89.6090922,41.5850535],[-89.6090114,41.5850522],[-89.5928995,41.5850561],[-89.5898519,41.585057],[-89.5897289,41.5850571],[-89.5735931,41.585080500000004],[-89.5701122,41.585084],[-89.5700057,41.5850854],[-89.5544354,41.5851059],[-89.5509711,41.5851116],[-89.5508407,41.5851103],[-89.5351363,41.5850498],[-89.53167930000001,41.5850356],[-89.5314645,41.5850357],[-89.5158391,41.5850636],[-89.51262439999999,41.5850682],[-89.5123086,41.5850696],[-89.5122664,41.585071],[-89.5071644,41.5850507],[-89.4999566,41.5850221],[-89.4968264,41.5850068],[-89.4967713,41.5850055],[-89.4932978,41.5849901],[-89.4905421,41.584978899999996],[-89.4846581,41.5849548],[-89.4776908,41.5849275],[-89.4743917,41.5849158],[-89.4728771,41.5849168],[-89.4712009,41.5849192],[-89.4584267,41.5849347],[-89.4583771,41.584936],[-89.4545272,41.584936],[-89.4517605,41.5849322],[-89.4393443,41.584921],[-89.4391773,41.5849209],[-89.4325974,41.5849229],[-89.4216867,41.5849038],[-89.4201059,41.5849014],[-89.4198067,41.5848998],[-89.4151564,41.5848939],[-89.4129019,41.5848936],[-89.4007078,41.5848952],[-89.4005995,41.5848951],[-89.3946108,41.5848955],[-89.3816512,41.584894500000004],[-89.381552,41.584890200000004],[-89.3749738,41.5849635],[-89.3744856,41.5849189],[-89.36242,41.584936],[-89.3622107,41.5849358],[-89.3541768,41.5849484],[-89.3432439,41.584965],[-89.3431136,41.5849648],[-89.3347234,41.5849798],[-89.3240604,41.584993600000004],[-89.3238438,41.5849933],[-89.3190209,41.5849903],[-89.3153435,41.5850095],[-89.314958,41.5850103],[-89.3086865,41.5850267],[-89.3048199,41.5850618],[-89.3023856,41.5850455],[-89.3001531,41.5850528],[-89.2959047,41.585067699999996],[-89.2909808,41.5850841],[-89.2856676,41.5851037],[-89.2770002,41.5851335],[-89.2766091,41.5851342],[-89.2668217,41.585167999999996],[-89.2660286,41.5851706],[-89.2611469,41.5851886],[-89.2564946,41.5851931],[-89.2562743,41.5851927],[-89.2500083,41.5852005],[-89.2470764,41.5852095],[-89.2414896,41.585228],[-89.2390038,41.5852364],[-89.2310506,41.5852493],[-89.2277845,41.5852557],[-89.22468,41.5852597],[-89.2195817,41.58527],[-89.2194293,41.585268299999996],[-89.2084764,41.5852588],[-89.2081753,41.585258100000004],[-89.20034150000001,41.5852595],[-89.1998953,41.5852598],[-89.1986653,41.5852609],[-89.19608769999999,41.5852517],[-89.1892252,41.5852273],[-89.1833559,41.585205099999996],[-89.1809564,41.5851974],[-89.1747695,41.5851933],[-89.1665391,41.5851887],[-89.1665284,41.5843823],[-89.1664387,41.5699598],[-89.1664284,41.568301500000004],[-89.1664268,41.5682436],[-89.16642709999999,41.5681995],[-89.1664174,41.555448999999996],[-89.1664169,41.554799700000004],[-89.1664174,41.5546853],[-89.1664157,41.5539148],[-89.1664706,41.5482757],[-89.1664842,41.5469786],[-89.1665343,41.5415615],[-89.1665544,41.5393105],[-89.1665549,41.539220900000004],[-89.1665719,41.5353351],[-89.1665715,41.5350345],[-89.1665623,41.527093199999996],[-89.166562,41.5248986],[-89.1665607,41.5247732],[-89.166545,41.5125239],[-89.1665411,41.5102907],[-89.1665401,41.5101212],[-89.1665421,41.5100867],[-89.1665419,41.4999161],[-89.1665548,41.4976527],[-89.1665409,41.495626200000004],[-89.1664495,41.4831724],[-89.166423,41.4814699],[-89.1663347,41.4759141],[-89.1662478,41.4689233],[-89.1662215,41.4668141],[-89.1660858,41.4540869],[-89.1660656,41.4522147],[-89.1658766,41.4376482],[-89.1656368,41.424873500000004],[-89.165614,41.4231736],[-89.1654277,41.410336799999996],[-89.165372,41.408255],[-89.1652535,41.3957974],[-89.1650992,41.3936738],[-89.1649662,41.381194],[-89.1649289,41.37909],[-89.1644725,41.366906900000004],[-89.1645434,41.3643869],[-89.1642032,41.35243],[-89.1641385,41.3499537],[-89.1641074,41.3465868],[-89.1639571,41.3377159],[-89.1639976,41.335424599999996],[-89.1637944,41.323164500000004],[-89.1637261,41.3206881],[-89.1635267,41.3099031],[-89.1649908,41.3096328],[-89.1701484,41.3086488],[-89.1711255,41.3084999],[-89.1725083,41.308401599999996],[-89.1736967,41.308424099999996],[-89.1749256,41.3084054],[-89.1765269,41.3085062],[-89.1777583,41.308702600000004],[-89.1787265,41.3089023],[-89.1799684,41.3092269],[-89.1808252,41.3093974],[-89.1809731,41.3094281],[-89.1817474,41.3096452],[-89.1826317,41.309802],[-89.1835634,41.309983700000004],[-89.1848827,41.3101829],[-89.1856723,41.3102594],[-89.1871423,41.310277],[-89.1893144,41.3103323],[-89.1909086,41.3104026],[-89.192283,41.310555],[-89.1936389,41.3107488],[-89.194925,41.311016699999996],[-89.1962368,41.3112655],[-89.1971395,41.3114056],[-89.198396,41.3117548],[-89.1997155,41.3119332],[-89.2007791,41.3120683],[-89.2012288,41.3121052],[-89.2022671,41.3121823],[-89.2032838,41.312182],[-89.204392,41.3121627],[-89.2054454,41.312140400000004],[-89.2069412,41.3121276],[-89.2085505,41.3121011],[-89.2102585,41.3120722],[-89.2117724,41.3121034],[-89.2131435,41.3121949],[-89.2145402,41.3122892],[-89.2160353,41.3124527],[-89.2171538,41.3125849],[-89.2181771,41.3127542],[-89.2188496,41.3128619],[-89.2198512,41.3129883],[-89.2205786,41.3130755],[-89.2214306,41.3131051],[-89.2215038,41.3131052],[-89.2224546,41.3131212],[-89.2238847,41.3130887],[-89.2251096,41.3131659],[-89.2266992,41.3134839],[-89.228062,41.3138317],[-89.2290294,41.314275],[-89.23038,41.3149454],[-89.232432,41.3157993],[-89.2337361,41.316213],[-89.2351496,41.3167125],[-89.236604,41.3170328],[-89.2376383,41.317246],[-89.2386619,41.3173654],[-89.2406027,41.3177157],[-89.2417898,41.3176493],[-89.2434365,41.317903799999996],[-89.2447521,41.3182071],[-89.2463644,41.318387],[-89.2490961,41.3189925],[-89.2509047,41.3195202],[-89.2523802,41.320619300000004],[-89.2532345,41.3210609],[-89.2541147,41.3214156],[-89.2552469,41.3218977],[-89.256559,41.3221954],[-89.2573559,41.3223322],[-89.2579116,41.322384299999996],[-89.2588021,41.3224523],[-89.2600035,41.3224864],[-89.2602047,41.3224937],[-89.2621068,41.322452],[-89.2636908,41.3223903],[-89.2652274,41.3222995],[-89.267218,41.3220663],[-89.2683195,41.321901600000004],[-89.2691766,41.3215544],[-89.2715284,41.3204807],[-89.2715723,41.3204808],[-89.2721839,41.3202407],[-89.2727888,41.3198338],[-89.2733565,41.3195867],[-89.2738002,41.319258],[-89.2743976,41.3188951],[-89.2748265,41.3185761],[-89.275347,41.3182351],[-89.2759447,41.317773],[-89.2765535,41.3172681],[-89.2774442,41.31667],[-89.2786373,41.3152976],[-89.2794969,41.314705000000004],[-89.2804253,41.3137402],[-89.2813522,41.3132249],[-89.2814052,41.3132346],[-89.2819106,41.3130011],[-89.2824418,41.3127291],[-89.2834049,41.3123172],[-89.2847557,41.3119116],[-89.2868269,41.3115071],[-89.2881002,41.3113246],[-89.28980490000001,41.3111539],[-89.2909136,41.3109683],[-89.2920843,41.3108353],[-89.2938404,41.3106205],[-89.2946674,41.3104537],[-89.295381,41.3102839],[-89.2964423,41.310019600000004],[-89.2973268,41.3095785],[-89.2982588,41.3091582],[-89.3003104,41.3085067],[-89.3003563,41.3084682],[-89.3010117,41.3081853],[-89.3019707,41.3078642],[-89.303158,41.307663500000004],[-89.3039702,41.307527],[-89.3061389,41.3068563],[-89.3098021,41.305902599999996],[-89.3111704,41.3056745],[-89.3127328,41.3053295],[-89.3133512,41.3051691],[-89.3156558,41.304855599999996],[-89.3184616,41.3044752],[-89.319739,41.304018],[-89.3203654,41.3036122],[-89.3212545,41.303395699999996],[-89.3218364,41.3032283],[-89.3224623,41.3030059],[-89.3233004,41.3027286],[-89.3240796,41.3025671],[-89.3251225,41.3022763],[-89.3264286,41.30203],[-89.3273102,41.3018686],[-89.32799059999999,41.3017621],[-89.3285136,41.3017463],[-89.3291939,41.301650699999996],[-89.3304924,41.3014843],[-89.3315607,41.3012818],[-89.3327458,41.3011235],[-89.3339273,41.3009459],[-89.3346479,41.3008228],[-89.3351821,41.3006926],[-89.3359249,41.3004827],[-89.3372387,41.300026700000004],[-89.3381868,41.2995785],[-89.3387984,41.2991492],[-89.3395092,41.2985545],[-89.3400002,41.2981057],[-89.3407151,41.2972904],[-89.3411479,41.296725699999996],[-89.3415734,41.2961251],[-89.3419482,41.2953287],[-89.3422023,41.2945321],[-89.342372,41.2938512],[-89.3423915,41.2933577],[-89.342381,41.293115],[-89.3422583,41.2924503],[-89.3421602,41.2921606],[-89.3419495,41.291573],[-89.3417639,41.2912156],[-89.341292,41.2897453],[-89.3385626,41.2859666],[-89.3384983,41.2853171],[-89.3379668,41.2843678],[-89.3375506,41.2833745],[-89.3373828,41.2824408],[-89.3373462,41.2817073],[-89.3375588,41.280702500000004],[-89.3380643,41.2786915],[-89.3382336,41.2782285],[-89.3384577,41.2777297],[-89.3387372,41.277032399999996],[-89.3388659,41.276671300000004],[-89.3390938,41.2761284],[-89.339366,41.2754187],[-89.3397957,41.2745561],[-89.3401587,41.2740437],[-89.340555,41.2733962],[-89.3409546,41.2728756],[-89.3412846,41.2724458],[-89.3415599,41.2719057],[-89.3418757,41.2712691],[-89.3421619,41.2707787],[-89.3424081,41.2702302],[-89.3427495,41.2695827],[-89.343047,41.2689212],[-89.3432971,41.268257],[-89.3436498,41.2674633],[-89.3438409,41.2669975],[-89.34415680000001,41.2662864],[-89.344385,41.2655725],[-89.344664,41.2650241],[-89.3448073,41.2646741],[-89.3454103,41.2638959],[-89.34577469999999,41.2635516],[-89.3462144,41.26302],[-89.3468082,41.26225],[-89.347554,41.261283],[-89.3481103,41.26012],[-89.3498995,41.2549187],[-89.3508245,41.2513405],[-89.3508475,41.2500155],[-89.3508953,41.2498667],[-89.3509854,41.2495813],[-89.3516109,41.2475966],[-89.3526593,41.2442611],[-89.3533192,41.2423799],[-89.3543671,41.239213899999996],[-89.3547164,41.238138899999996],[-89.3555624,41.2354346],[-89.3556047,41.2352968],[-89.3562336,41.2332817],[-89.3562557,41.233182400000004],[-89.3562847,41.2332597],[-89.3572199,41.2332746],[-89.3695135,41.2334872],[-89.3699208,41.233493100000004],[-89.3740157,41.2335651],[-89.3750312,41.2335827],[-89.388843,41.2336128],[-89.3891389,41.2336131],[-89.391349,41.2336193],[-89.3937234,41.2336283],[-89.4078439,41.2336869],[-89.408169,41.2336871],[-89.4105745,41.2336986],[-89.4132777,41.2337006],[-89.4276083,41.233710200000004],[-89.4280924,41.2337104],[-89.4304394,41.2337132],[-89.4325015,41.2337213],[-89.4470494,41.233787899999996],[-89.4474604,41.2337895],[-89.4493435,41.2337986],[-89.4518495,41.233803800000004],[-89.4663262,41.2338446],[-89.4663613,41.2219438],[-89.4663615,41.2215122],[-89.4663615,41.2214309],[-89.4662715,41.2074685],[-89.4662664,41.2068053],[-89.4662646,41.2067777],[-89.4662897,41.1926456],[-89.46629,41.1921451],[-89.4663133,41.1780197],[-89.4663135,41.1775192],[-89.4663136,41.1774461],[-89.46618720000001,41.1634791],[-89.4661819,41.1629482],[-89.4661838,41.1628517],[-89.4663203,41.148657],[-89.4663213,41.1485281],[-89.46650819999999,41.148530199999996],[-89.4666925,41.1485303],[-89.4857027,41.148536899999996],[-89.4859782,41.1485356],[-89.486323,41.148537],[-89.5052987,41.148871400000004],[-89.5249094,41.148778],[-89.5440457,41.1486815],[-89.56330990000001,41.1487695],[-89.5826944,41.1487136],[-89.60222830000001,41.1486241],[-89.6029617,41.1486221],[-89.606871,41.1486146],[-89.6213055,41.148643],[-89.6219522,41.1486444],[-89.6390231,41.1484466],[-89.6390162,41.1630853],[-89.63885930000001,41.1775061],[-89.6391308,41.1917305],[-89.639131,41.191816],[-89.6391352,41.1920904],[-89.6391301,41.1922862],[-89.6386404,41.2065099],[-89.638597,41.2212058],[-89.6385383,41.2337534],[-89.644756,41.2338398],[-89.65769829999999,41.2336802],[-89.6643782,41.2338381],[-89.6773122,41.2340169],[-89.6834363,41.233954],[-89.6965668,41.2338216],[-89.7031171,41.2339651],[-89.7159119,41.233974599999996],[-89.7224307,41.233980700000004],[-89.7351718,41.2337745],[-89.7415863,41.2342251],[-89.7535671,41.2338833],[-89.7609266,41.2339834],[-89.7723322,41.2341374],[-89.7800477,41.234188599999996],[-89.7912244,41.2342034],[-89.7993747,41.234242699999996],[-89.8103615,41.2342728],[-89.8187937,41.234439699999996],[-89.8298003,41.2344017],[-89.8299081,41.234407],[-89.8379334,41.2342827],[-89.8472988,41.2344035],[-89.8488843,41.23441],[-89.8576905,41.2344875],[-89.8576916,41.2490701],[-89.8579544,41.2637205],[-89.8573662,41.278497200000004],[-89.8573087,41.2926987],[-89.8568716,41.307778],[-89.8571019,41.321082000000004],[-89.8572167,41.3353817],[-89.8578751,41.350755],[-89.8580241,41.3652555],[-89.8573418,41.379700400000004],[-89.8573226,41.3942451],[-89.8572978,41.4091371],[-89.8572047,41.4235824],[-89.8574106,41.4384458],[-89.8575828,41.4524543],[-89.8575978,41.4672323],[-89.8576362,41.4815745],[-89.8573114,41.496593000000004],[-89.8573385,41.5000158],[-89.8574123,41.5112668],[-89.8574133,41.511443299999996],[-89.8574275,41.5183218],[-89.8581373,41.5183197],[-89.858207,41.5183209],[-89.8592029,41.5183221],[-89.8591701,41.5183635],[-89.85949719999999,41.5257484],[-89.8595037,41.5259373],[-89.8595078,41.5260241],[-89.8601334,41.5402231],[-89.8601435,41.5403912],[-89.8601475,41.5404643],[-89.8608749,41.554769],[-89.8608812,41.5549247],[-89.8616051,41.569204400000004],[-89.861609,41.5692567],[-89.8624862,41.5839989],[-89.8432551,41.5840095],[-89.8412283,41.5840221],[-89.84108140000001,41.5840239],[-89.8240426,41.584094199999996],[-89.8219424,41.5841026],[-89.8215495,41.584105],[-89.8048082,41.5841774],[-89.8029153,41.5841711],[-89.8025481,41.5841692],[-89.8024857,41.5841694],[-89.7855204,41.5842465],[-89.7837414,41.5842479],[-89.783141,41.584249299999996],[-89.7663208,41.5843661],[-89.7643693,41.5843704],[-89.7637653,41.5843731],[-89.7501907,41.5844144],[-89.7471724,41.5844082],[-89.7449289,41.5844059],[-89.744883,41.584406],[-89.7447821,41.584406200000004],[-89.7278535,41.584478000000004],[-89.7267832,41.5844827],[-89.7265959,41.5844831],[-89.7087219,41.584576],[-89.7074548,41.5844762],[-89.7074071,41.5844735],[-89.706871,41.5844772],[-89.6894176,41.5846355],[-89.6879765,41.5846487],[-89.6878608,41.5846489],[-89.68753219999999,41.5846522],[-89.6699502,41.5848368],[-89.6699007,41.5848369],[-89.6678408,41.584848],[-89.6676664,41.584848300000004],[-89.6507249,41.5849423],[-89.6478664,41.5849362],[-89.6476883,41.584935099999996],[-89.6315432,41.5849056]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"HENRY","CO_FIPS":73},"geometry":{"type":"Polygon","coordinates":[[[-89.8624862,41.5839989],[-89.861609,41.5692567],[-89.8616051,41.569204400000004],[-89.8608812,41.5549247],[-89.8608749,41.554769],[-89.8601475,41.5404643],[-89.8601435,41.5403912],[-89.8601334,41.5402231],[-89.8595078,41.5260241],[-89.8595037,41.5259373],[-89.85949719999999,41.5257484],[-89.8591701,41.5183635],[-89.8592029,41.5183221],[-89.858207,41.5183209],[-89.8581373,41.5183197],[-89.8574275,41.5183218],[-89.8574133,41.511443299999996],[-89.8574123,41.5112668],[-89.8573385,41.5000158],[-89.8573114,41.496593000000004],[-89.8576362,41.4815745],[-89.8575978,41.4672323],[-89.8575828,41.4524543],[-89.8574106,41.4384458],[-89.8572047,41.4235824],[-89.8572978,41.4091371],[-89.8573226,41.3942451],[-89.8573418,41.379700400000004],[-89.8580241,41.3652555],[-89.8578751,41.350755],[-89.8572167,41.3353817],[-89.8571019,41.321082000000004],[-89.8568716,41.307778],[-89.8573087,41.2926987],[-89.8573662,41.278497200000004],[-89.8579544,41.2637205],[-89.8576916,41.2490701],[-89.8576905,41.2344875],[-89.8677182,41.2344546],[-89.8677963,41.222110799999996],[-89.8682474,41.2074576],[-89.8684005,41.1931085],[-89.8685122,41.1785276],[-89.8686276,41.163977],[-89.8686489,41.1495712],[-89.8687583,41.1495695],[-89.8882527,41.1495302],[-89.9065715,41.1493759],[-89.9260448,41.1494877],[-89.9457587,41.1495431],[-89.9654604,41.1494188],[-89.9852766,41.149488],[-89.9852872,41.1494342],[-90.0042186,41.1492515],[-90.0240678,41.1493541],[-90.0427079,41.1497127],[-90.0615195,41.1497208],[-90.0618816,41.1497212],[-90.0808038,41.149755400000004],[-90.0969877,41.1495686],[-90.1158926,41.150113],[-90.1349667,41.1505654],[-90.1353079,41.1505746],[-90.1542754,41.1511059],[-90.1547061,41.1511187],[-90.1734408,41.1514193],[-90.1737446,41.1514245],[-90.192897,41.1517762],[-90.2092508,41.1521221],[-90.2286644,41.1519454],[-90.2483643,41.1519374],[-90.2674718,41.1516501],[-90.2870862,41.1515122],[-90.3066658,41.151361800000004],[-90.32317689999999,41.1512264],[-90.32333009999999,41.1512267],[-90.3418594,41.1512804],[-90.3421988,41.1512821],[-90.3424305,41.1512805],[-90.3607502,41.1512045],[-90.3612683,41.1512036],[-90.3617774,41.1512054],[-90.3702432,41.1512479],[-90.3750837,41.1512734],[-90.3795077,41.1512604],[-90.380336,41.1512585],[-90.3812518,41.15126],[-90.3815474,41.1512593],[-90.3990148,41.1512899],[-90.3996022,41.1512924],[-90.4005108,41.1512952],[-90.4008283,41.1512956],[-90.4183381,41.1513603],[-90.418933,41.1513681],[-90.419515,41.1513706],[-90.4200222,41.1513681],[-90.4376144,41.1513121],[-90.4373502,41.1660528],[-90.4373428,41.16645],[-90.4373414,41.1664803],[-90.4370877,41.1805243],[-90.4370916,41.1806773],[-90.4370878,41.1809297],[-90.4370868,41.1809918],[-90.4367725,41.1950209],[-90.4367752,41.1952139],[-90.4367713,41.1954691],[-90.4367691,41.1955753],[-90.4364982,41.2095804],[-90.4365075,41.2098603],[-90.4365056,41.2101237],[-90.4365057,41.2102657],[-90.436389,41.2241992],[-90.4363863,41.2244047],[-90.4363836,41.2246074],[-90.43610699999999,41.2387419],[-90.4356689,41.253367],[-90.43537069999999,41.2676736],[-90.4350513,41.2823057],[-90.434523,41.2966413],[-90.4342931,41.311156499999996],[-90.4338139,41.326975],[-90.433806,41.3414219],[-90.4336923,41.3558888],[-90.4336892,41.3704207],[-90.4329794,41.3848063],[-90.4329648,41.3850808],[-90.4326427,41.3994563],[-90.4322245,41.41378],[-90.4321434,41.4138757],[-90.4321532,41.4278926],[-90.4321526,41.4279878],[-90.43215119999999,41.4284179],[-90.4320733,41.4423236],[-90.4320433,41.4566534],[-90.4244675,41.4570618],[-90.4216101,41.4574421],[-90.4207738,41.4576677],[-90.4195408,41.458098899999996],[-90.4159199,41.459494],[-90.4151203,41.4597276],[-90.4144355,41.4600471],[-90.4134981,41.4603905],[-90.4129296,41.460637500000004],[-90.4116786,41.4611046],[-90.4104659,41.4616956],[-90.409547,41.4620499],[-90.4079462,41.4626768],[-90.4068719,41.463208699999996],[-90.4056633,41.463841],[-90.4044039,41.4645094],[-90.4033176,41.4652454],[-90.402058,41.4659055],[-90.4011236,41.4664805],[-90.4002007,41.467105000000004],[-90.399338,41.4675664],[-90.3983128,41.4682137],[-90.3971372,41.4688566],[-90.39618899999999,41.4693695],[-90.3958718,41.4696462],[-90.3950482,41.470154199999996],[-90.3939832,41.4707107],[-90.3928571,41.4713601],[-90.3905207,41.4729545],[-90.389693,41.473582300000004],[-90.3889096,41.474513099999996],[-90.3882343,41.475167400000004],[-90.3876033,41.4759799],[-90.3870227,41.476577],[-90.3853401,41.4765962],[-90.38196,41.4767505],[-90.3811387,41.4767469],[-90.3805477,41.4768256],[-90.3796518,41.4770086],[-90.3787224,41.477292500000004],[-90.3779644,41.4776468],[-90.3768404,41.4783387],[-90.3763079,41.4788444],[-90.3751458,41.4799943],[-90.3747755,41.4805746],[-90.3737723,41.4828289],[-90.3731997,41.4837829],[-90.3729442,41.4843059],[-90.3726055,41.4854884],[-90.3725459,41.4862801],[-90.372286,41.4876068],[-90.3722983,41.488138899999996],[-90.3722006,41.4889598],[-90.3715799,41.490318099999996],[-90.3709315,41.491376],[-90.37033220000001,41.4928347],[-90.3699795,41.4933569],[-90.3695976,41.4943247],[-90.3694759,41.4948439],[-90.3693449,41.495938100000004],[-90.369397,41.496570399999996],[-90.3692379,41.4971768],[-90.3690184,41.497654],[-90.3687769,41.497986600000004],[-90.368063,41.4985128],[-90.3666175,41.5007881],[-90.3657563,41.5017042],[-90.3651173,41.502214699999996],[-90.3637758,41.5030059],[-90.3626499,41.5040258],[-90.3600207,41.505379],[-90.3592995,41.5056322],[-90.3582658,41.5065494],[-90.3578675,41.5066694],[-90.3574639,41.506655800000004],[-90.3564966,41.5070307],[-90.3555687,41.507472899999996],[-90.3540192,41.5083675],[-90.353224,41.5087219],[-90.3511474,41.5091197],[-90.3500976,41.509203],[-90.3483445,41.5095103],[-90.3467783,41.5096577],[-90.3459784,41.5097819],[-90.3437351,41.510497900000004],[-90.3428445,41.5108529],[-90.34221959999999,41.5111908],[-90.340299,41.5117597],[-90.3384586,41.5121378],[-90.3372883,41.512421700000004],[-90.3347062,41.5124395],[-90.3332401,41.5120816],[-90.3314003,41.511762],[-90.3277126,41.510447400000004],[-90.3240406,41.5096633],[-90.3222002,41.5091244],[-90.3197958,41.5089684],[-90.3188906,41.5088808],[-90.3176994,41.5089578],[-90.3169839,41.5089295],[-90.3160484,41.509069600000004],[-90.3131938,41.5097629],[-90.3127015,41.5099978],[-90.3122705,41.5104625],[-90.3105224,41.5119783],[-90.3098499,41.512338400000004],[-90.3092018,41.5128983],[-90.3087348,41.5134211],[-90.3077477,41.5147842],[-90.3069828,41.5157129],[-90.3057948,41.5165314],[-90.3045054,41.5171493],[-90.3025058,41.517588599999996],[-90.3012094,41.517775],[-90.3004127,41.5177252],[-90.2997617,41.5180507],[-90.2982127,41.5181243],[-90.2966495,41.5184007],[-90.2923462,41.519325],[-90.290823,41.5197306],[-90.2893758,41.520047500000004],[-90.2887492,41.5202708],[-90.288119,41.5203341],[-90.2862626,41.5203256],[-90.2854231,41.5203779],[-90.2823195,41.5202105],[-90.280998,41.5201433],[-90.2801605,41.520363700000004],[-90.2789758,41.5203907],[-90.2780216,41.5205167],[-90.2768553,41.5205435],[-90.2760381,41.5207818],[-90.27455,41.521057400000004],[-90.2735024,41.521197799999996],[-90.2711968,41.521696399999996],[-90.2702428,41.521836199999996],[-90.2690842,41.5222226],[-90.26843410000001,41.5223164],[-90.26717239999999,41.5223437],[-90.2663297,41.5222815],[-90.265391,41.522162],[-90.2644497,41.5219708],[-90.262723,41.5217446],[-90.2612193,41.5216176],[-90.2598171,41.521876],[-90.2576424,41.5221157],[-90.2559417,41.522249],[-90.2531384,41.522709],[-90.2519336,41.5227372],[-90.25075029999999,41.5228934],[-90.250073,41.5230189],[-90.250073,41.5228466],[-90.249097,41.5230043],[-90.2487752,41.5230959],[-90.2473963,41.5236462],[-90.2471609,41.5237565],[-90.2465149,41.5240638],[-90.2460603,41.5242637],[-90.2457442,41.5243773],[-90.2452111,41.5244385],[-90.2440929,41.5245143],[-90.2432741,41.524613099999996],[-90.2422997,41.5247514],[-90.2419847,41.5247974],[-90.2418986,41.5248145],[-90.2412986,41.5249671],[-90.2408947,41.525101899999996],[-90.2402569,41.5253222],[-90.2399485,41.5254688],[-90.2391266,41.5258033],[-90.238466,41.526123],[-90.2372332,41.5266199],[-90.2358165,41.5272585],[-90.2354272,41.5273877],[-90.2345398,41.5277708],[-90.234361,41.527864199999996],[-90.2341531,41.5279716],[-90.2336131,41.5282534],[-90.2323442,41.5288207],[-90.2315159,41.5290684],[-90.2308859,41.5291742],[-90.2290237,41.5293205],[-90.2283579,41.529336900000004],[-90.2276505,41.529397700000004],[-90.2272182,41.529460900000004],[-90.2264995,41.5296762],[-90.2260737,41.5298317],[-90.2257288,41.5299992],[-90.2253791,41.530239800000004],[-90.2253099,41.5302884],[-90.2251463,41.53043],[-90.2247388,41.5309218],[-90.2244192,41.5314021],[-90.2242213,41.531945],[-90.2241026,41.532163499999996],[-90.2240678,41.5325208],[-90.2240002,41.5327183],[-90.2239461,41.5329764],[-90.2238801,41.5334979],[-90.2237962,41.5338926],[-90.2235311,41.5344952],[-90.2233833,41.534746999999996],[-90.2232495,41.5349256],[-90.2229745,41.5352926],[-90.22292,41.5353453],[-90.2226857,41.5355714],[-90.22248,41.535724200000004],[-90.2220827,41.5359678],[-90.2216266,41.536211800000004],[-90.2212083,41.5363907],[-90.220796,41.5366068],[-90.2204727,41.5367425],[-90.2195187,41.537092799999996],[-90.2194021,41.5371693],[-90.2187114,41.5374381],[-90.217656,41.5377435],[-90.2156719,41.538201799999996],[-90.21480030000001,41.5383669],[-90.2144304,41.5384283],[-90.2120054,41.5388355],[-90.2104698,41.5390168],[-90.2096596,41.539087699999996],[-90.2087682,41.5391136],[-90.2078838,41.5391133],[-90.2074677,41.5391543],[-90.2065692,41.5392023],[-90.204955,41.5392352],[-90.2045023,41.539280500000004],[-90.2036459,41.5393296],[-90.2034553,41.53935],[-90.2033729,41.539360099999996],[-90.2029587,41.5394067],[-90.2025644,41.5394255],[-90.2012854,41.5395873],[-90.1999765,41.5396983],[-90.1995166,41.5397547],[-90.199055,41.5398345],[-90.19794279999999,41.5399747],[-90.1966189,41.5402345],[-90.1962441,41.540369],[-90.1959733,41.5404437],[-90.1954877,41.5406767],[-90.1951304,41.5409075],[-90.1950083,41.5409854],[-90.1946623,41.5412411],[-90.1942346,41.5415895],[-90.1938128,41.541971000000004],[-90.1936185,41.5421637],[-90.1935969,41.5422024],[-90.1934172,41.5423951],[-90.1933246,41.5424949],[-90.1930139,41.5427958],[-90.1919578,41.5441389],[-90.1918392,41.544385],[-90.1916746,41.5446147],[-90.1913678,41.5451238],[-90.1907969,41.5458177],[-90.1904097,41.5463644],[-90.1898336,41.547458],[-90.1892044,41.548563],[-90.1889646,41.5489848],[-90.1888234,41.5491758],[-90.1883515,41.5500566],[-90.1880913,41.5504564],[-90.1877982,41.5510481],[-90.1873218,41.5516697],[-90.1864884,41.5529109],[-90.186241,41.5533107],[-90.1859273,41.5538735],[-90.18536280000001,41.5550401],[-90.1847596,41.556008500000004],[-90.1846158,41.5563098],[-90.1843252,41.5567856],[-90.1842533,41.5569432],[-90.1842264,41.5569985],[-90.1841977,41.5570731],[-90.1837418,41.5582749],[-90.1836037,41.5587788],[-90.1835358,41.558957],[-90.1834964,41.5590565],[-90.1833765,41.5593659],[-90.1832488,41.559623099999996],[-90.182887,41.5605101],[-90.1825606,41.5614589],[-90.1824371,41.5619517],[-90.1820713,41.5629986],[-90.1819584,41.5632722],[-90.1816795,41.5638307],[-90.1814611,41.5643791],[-90.1808227,41.5656922],[-90.180548,41.5664919],[-90.1803033,41.5673479],[-90.1801214,41.5678907],[-90.1799954,41.5684993],[-90.17979389999999,41.569832],[-90.1797281,41.5704085],[-90.1796037,41.571002],[-90.1795417,41.5712311],[-90.1794951,41.571343],[-90.1794574,41.571427299999996],[-90.1791954,41.572027],[-90.1791174,41.5723059],[-90.178961,41.5731849],[-90.1789279,41.5733711],[-90.1789206,41.5739212],[-90.1789394,41.5741554],[-90.1789823,41.574405999999996],[-90.1790409,41.5747614],[-90.1790616,41.575365],[-90.1790602,41.5754064],[-90.1790336,41.5758669],[-90.17906669999999,41.5760528],[-90.1791711,41.5763996],[-90.1794511,41.5768639],[-90.1795862,41.5771554],[-90.179726,41.577553],[-90.1798158,41.5779109],[-90.1798439,41.5785145],[-90.18011,41.5788741],[-90.1807088,41.5794607],[-90.180853,41.579555],[-90.1811049,41.5797769],[-90.1812851,41.5799868],[-90.1814357,41.5801858],[-90.1817559,41.5808098],[-90.1818772,41.5810021],[-90.1823076,41.581632400000004],[-90.1824524,41.581792899999996],[-90.1829569,41.5823014],[-90.1831512,41.582457500000004],[-90.1835982,41.5829057],[-90.1841186,41.5833576],[-90.1841648,41.5833904],[-90.1844515,41.583597],[-90.1847403,41.583840699999996],[-90.1850366,41.5840954],[-90.1854469,41.5845438],[-90.1854879,41.5846015],[-90.1847774,41.5846041],[-90.1842284,41.5846045],[-90.1713422,41.5846517],[-90.1661482,41.5846404],[-90.1653109,41.5846381],[-90.1651292,41.584639100000004],[-90.1518146,41.584623199999996],[-90.14834450000001,41.5846157],[-90.14573,41.5846034],[-90.1448983,41.584599600000004],[-90.1325876,41.5845459],[-90.1260771,41.5845246],[-90.1256493,41.584524099999996],[-90.1250269,41.5845231],[-90.1137105,41.5845741],[-90.1108943,41.5845869],[-90.1090327,41.5845963],[-90.1069872,41.5845666],[-90.1063611,41.5845587],[-90.1059057,41.5845513],[-90.0953219,41.5844066],[-90.0942533,41.5843953],[-90.0888405,41.5843432],[-90.086806,41.5843145],[-90.08653699999999,41.5843123],[-90.0747939,41.5841625],[-90.0738006,41.5841507],[-90.07012280000001,41.584106],[-90.0697556,41.584102200000004],[-90.0656152,41.584054],[-90.0561391,41.5839642],[-90.0557481,41.5839605],[-90.0515398,41.5839218],[-90.0513488,41.5839227],[-90.0363321,41.5838412],[-90.0350212,41.5838332],[-90.03291899999999,41.5838217],[-90.0324912,41.583819500000004],[-90.0306533,41.5838096],[-90.0217524,41.5837628],[-90.0170414,41.5837637],[-90.0143297,41.5837642],[-90.0140507,41.583765400000004],[-90.0049313,41.5837196],[-90.0002181,41.5836702],[-89.9978994,41.583677],[-89.9950831,41.5836817],[-89.9948206,41.58368],[-89.9785723,41.583614499999996],[-89.976314,41.5836041],[-89.9761561,41.5836033],[-89.9592549,41.583631499999996],[-89.958069,41.5836374],[-89.9578229,41.583638300000004],[-89.9398242,41.583721600000004],[-89.9387852,41.5837406],[-89.9386438,41.5837397],[-89.9204609,41.583734],[-89.9194053,41.5837363],[-89.9192694,41.5837367],[-89.9010982,41.5838466],[-89.9005933,41.583829],[-89.900518,41.5838293],[-89.8838364,41.5840612],[-89.8837391,41.5840629],[-89.8819767,41.5840877],[-89.8815876,41.5840945],[-89.8814884,41.5840934],[-89.8796103,41.5840883],[-89.8795038,41.5840873],[-89.8751654,41.5840787],[-89.8624862,41.5839989]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"GRUNDY","CO_FIPS":63},"geometry":{"type":"Polygon","coordinates":[[[-88.2521629,41.4627597],[-88.2515956,41.4509634],[-88.251527,41.4480963],[-88.2511676,41.433761000000004],[-88.2506977,41.4187584],[-88.250204,41.4042764],[-88.2495754,41.3897654],[-88.2490978,41.3756252],[-88.249047,41.3613734],[-88.2487151,41.3466801],[-88.2480738,41.3321158],[-88.2478073,41.3176682],[-88.2474975,41.302993799999996],[-88.2470845,41.2885747],[-88.2465824,41.2742344],[-88.2462332,41.2595425],[-88.2453291,41.2452225],[-88.244349,41.230871199999996],[-88.2439846,41.2160213],[-88.2436744,41.2016187],[-88.2432051,41.1873328],[-88.2426427,41.1727616],[-88.2422297,41.158214],[-88.2418472,41.1434072],[-88.24138,41.1288475],[-88.2407961,41.114303],[-88.2517351,41.1142159],[-88.2600879,41.1141493],[-88.2705709,41.1138529],[-88.2792027,41.1136789],[-88.2898763,41.113318],[-88.2986421,41.1131854],[-88.3094086,41.1129257],[-88.3179049,41.1127641],[-88.3287289,41.1123296],[-88.3370039,41.1123107],[-88.3481268,41.1118717],[-88.3560996,41.111812799999996],[-88.3633138,41.111544699999996],[-88.3750811,41.111371399999996],[-88.3821247,41.1110428],[-88.3942513,41.1109647],[-88.4014828,41.1107373],[-88.4134409,41.110351],[-88.4155352,41.110283],[-88.420842,41.1101115],[-88.4325177,41.1099345],[-88.4403737,41.1096262],[-88.4517594,41.1093289],[-88.4593727,41.1091386],[-88.4703832,41.1090487],[-88.4896551,41.1088152],[-88.5085529,41.108228],[-88.5276779,41.1083182],[-88.5467826,41.108294799999996],[-88.5656077,41.108178],[-88.5785292,41.1081772],[-88.5842397,41.1081775],[-88.5859445,41.1081774],[-88.5860071,41.1227047],[-88.5859966,41.1372451],[-88.5864781,41.1518249],[-88.5862416,41.1663522],[-88.5867579,41.1808051],[-88.5866694,41.1951843],[-88.5871527,41.2099427],[-88.5871993,41.224325300000004],[-88.5876046,41.2389338],[-88.5882482,41.250054],[-88.5881169,41.2534685],[-88.5881178,41.2535416],[-88.5881265,41.253845],[-88.5885222,41.2679399],[-88.5885247,41.2680254],[-88.5885258,41.2680778],[-88.5891495,41.2824914],[-88.5891519,41.2825852],[-88.5891561,41.2826845],[-88.5897339,41.2968562],[-88.5897417,41.2970934],[-88.5897574,41.2971528],[-88.590394,41.3114627],[-88.5912072,41.325709],[-88.5912209,41.3259173],[-88.5912237,41.3259863],[-88.5920384,41.3402847],[-88.5920503,41.3404889],[-88.5928055,41.354888700000004],[-88.5928189,41.355119099999996],[-88.5928352,41.3554101],[-88.5935783,41.3696415],[-88.5935868,41.3698277],[-88.5938037,41.3750188],[-88.594079,41.3839563],[-88.5940799,41.3840266],[-88.594088,41.384240399999996],[-88.5940992,41.384501],[-88.5941297,41.3853836],[-88.5945922,41.3985826],[-88.5946158,41.398871],[-88.5946222,41.3990806],[-88.5950427,41.4131242],[-88.5950464,41.4132593],[-88.5950521,41.4133807],[-88.5950517,41.4134096],[-88.5954071,41.4276773],[-88.5954125,41.4278249],[-88.5954137,41.4278704],[-88.5957704,41.4423226],[-88.5957696,41.4423833],[-88.5960836,41.457029399999996],[-88.5960846,41.4570928],[-88.5957382,41.4570971],[-88.5786546,41.4572843],[-88.5785483,41.4572856],[-88.578508,41.4572867],[-88.5661678,41.4574083],[-88.5595917,41.4574731],[-88.559249,41.4574773],[-88.5590345,41.4574797],[-88.5588585,41.4574853],[-88.5551547,41.4575046],[-88.5399562,41.457586],[-88.5398517,41.4575865],[-88.5396666,41.4575864],[-88.5205735,41.4576922],[-88.5019941,41.4577482],[-88.5013618,41.4577513],[-88.5011639,41.4577538],[-88.5000793,41.4577338],[-88.4817063,41.457807700000004],[-88.4619681,41.4583593],[-88.4426966,41.4588098],[-88.4236907,41.4592443],[-88.4234029,41.4592514],[-88.4040176,41.459667100000004],[-88.3846217,41.460052],[-88.3652431,41.4604754],[-88.3490265,41.460741],[-88.3296647,41.4610099],[-88.3102047,41.4614374],[-88.2909654,41.4617978],[-88.2714879,41.4621444],[-88.2521629,41.4627597]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"MERCER","CO_FIPS":131},"geometry":{"type":"Polygon","coordinates":[[[-90.4338139,41.326975],[-90.4342931,41.311156499999996],[-90.434523,41.2966413],[-90.4350513,41.2823057],[-90.43537069999999,41.2676736],[-90.4356689,41.253367],[-90.43610699999999,41.2387419],[-90.4363836,41.2246074],[-90.4363863,41.2244047],[-90.436389,41.2241992],[-90.4365057,41.2102657],[-90.4365056,41.2101237],[-90.4365075,41.2098603],[-90.4364982,41.2095804],[-90.4367691,41.1955753],[-90.4367713,41.1954691],[-90.4367752,41.1952139],[-90.4367725,41.1950209],[-90.4370868,41.1809918],[-90.4370878,41.1809297],[-90.4370916,41.1806773],[-90.4370877,41.1805243],[-90.4373414,41.1664803],[-90.4373428,41.16645],[-90.4373502,41.1660528],[-90.4376144,41.1513121],[-90.4380221,41.137210100000004],[-90.4380254,41.1370515],[-90.438117,41.1368108],[-90.4381197,41.1367404],[-90.4386132,41.1223907],[-90.4389405,41.107629700000004],[-90.4394076,41.0935019],[-90.4394052,41.0929972],[-90.4394292,41.0782658],[-90.43976430000001,41.0639759],[-90.4398952,41.0638204],[-90.4587571,41.0637816],[-90.4591543,41.0637805],[-90.4774091,41.0635898],[-90.4779794,41.063587999999996],[-90.4807981,41.0635815],[-90.496649,41.0634841],[-90.5150581,41.0643269],[-90.5162095,41.0643792],[-90.5342335,41.0645949],[-90.5351737,41.0645951],[-90.550895,41.0650735],[-90.5699322,41.0658611],[-90.5707035,41.0658942],[-90.5901463,41.0664915],[-90.5906659,41.0665089],[-90.6091791,41.0669433],[-90.6103458,41.0669739],[-90.6286877,41.0671752],[-90.6293845,41.067221],[-90.6478979,41.0676357],[-90.648974,41.067697100000004],[-90.6680335,41.06828],[-90.6869416,41.068301399999996],[-90.6872079,41.0683153],[-90.6931604,41.0682673],[-90.7065138,41.0681587],[-90.7072702,41.0681676],[-90.7261369,41.0684205],[-90.7451968,41.0685608],[-90.7645535,41.0689873],[-90.7852626,41.0692142],[-90.8043458,41.070177799999996],[-90.823835,41.070472699999996],[-90.8246598,41.0704849],[-90.8428037,41.0706998],[-90.8430244,41.0707097],[-90.8433871,41.0707153],[-90.862392,41.0702308],[-90.8635143,41.0702181],[-90.8819809,41.0698882],[-90.88387,41.0698554],[-90.9009177,41.0695694],[-90.9203736,41.0701255],[-90.9207347,41.0701364],[-90.9396577,41.0704653],[-90.9400223,41.0704678],[-90.9476701,41.070522],[-90.9479825,41.0709058],[-90.9483405,41.0715469],[-90.9487209,41.0724746],[-90.9488954,41.0734917],[-90.9490025,41.0748544],[-90.9489325,41.075946200000004],[-90.9486318,41.0768987],[-90.9478272,41.0783303],[-90.9474512,41.079340200000004],[-90.9472688,41.0805478],[-90.9472468,41.0820996],[-90.9473519,41.085098],[-90.9473699,41.0852606],[-90.9475,41.0865899],[-90.9475323,41.088039],[-90.9474046,41.0890749],[-90.947081,41.0907586],[-90.9466753,41.0921853],[-90.9466242,41.093305799999996],[-90.9463558,41.0948454],[-90.9462879,41.0960378],[-90.946474,41.0967389],[-90.9468321,41.0974669],[-90.9471585,41.0984243],[-90.9475976,41.0994492],[-90.9476591,41.099596],[-90.9489417,41.1017182],[-90.9496118,41.1027155],[-90.9532159,41.1066604],[-90.9544761,41.1077925],[-90.955585,41.1089265],[-90.9575593,41.1104513],[-90.9581606,41.1110329],[-90.9584001,41.1114893],[-90.9585034,41.1118893],[-90.9588526,41.1121913],[-90.9591309,41.1125009],[-90.9603161,41.1135292],[-90.961039,41.1141658],[-90.9630883,41.1164591],[-90.9649561,41.118876],[-90.9658931,41.1203085],[-90.9669578,41.1214912],[-90.9679599,41.1228967],[-90.9685205,41.1250592],[-90.9685557,41.1250877],[-90.9687007,41.1252997],[-90.9688366,41.1256842],[-90.9689553,41.1261199],[-90.9689918,41.126205],[-90.9691544,41.1269022],[-90.9694275,41.127559500000004],[-90.9696157,41.1279157],[-90.96976599999999,41.1282063],[-90.9698197,41.1282856],[-90.9699895,41.128593800000004],[-90.9703859,41.1293902],[-90.9706032,41.1296551],[-90.970701,41.1297932],[-90.9709739,41.1301857],[-90.9713446,41.1306335],[-90.97212,41.1317479],[-90.973136,41.1330263],[-90.9736483,41.1336103],[-90.974046,41.134124],[-90.974287,41.1343872],[-90.9743827,41.1345115],[-90.9745901,41.1347393],[-90.9752003,41.135636500000004],[-90.9754837,41.1360053],[-90.9759052,41.1364373],[-90.9762229,41.1367879],[-90.9767126,41.137420399999996],[-90.9771717,41.137900200000004],[-90.9774968,41.1382602],[-90.9798165,41.140852],[-90.9814101,41.1426789],[-90.9819454,41.1433895],[-90.9822221,41.1437819],[-90.9824142,41.1440608],[-90.98284459999999,41.1446471],[-90.9830178,41.1448974],[-90.9832138,41.1453528],[-90.9833452,41.1456118],[-90.9835741,41.146069600000004],[-90.9837307,41.146310400000004],[-90.9839176,41.1466005],[-90.9845419,41.147463],[-90.9851188,41.1484088],[-90.9855883,41.149109100000004],[-90.985909,41.1499339],[-90.9861877,41.1506711],[-90.9865656,41.1515256],[-90.9870799,41.1522749],[-90.9876819,41.1531101],[-90.9880308,41.1535512],[-90.9882016,41.1537711],[-90.988574,41.154285099999996],[-90.9888968,41.1547817],[-90.9889988,41.1549404],[-90.98949089999999,41.1555038],[-90.9896593,41.155699],[-90.990259,41.1563425],[-90.9908299,41.1569201],[-90.9910309,41.1570996],[-90.9916674,41.157673700000004],[-90.9924323,41.1583634],[-90.9924994,41.158426],[-90.9925385,41.1584614],[-90.9928697,41.158842],[-90.9936262,41.159558000000004],[-90.99455090000001,41.1602926],[-90.9949567,41.1605786],[-90.9956182,41.1610792],[-90.9956062,41.1611138],[-90.9961684,41.1614985],[-90.9965864,41.1617581],[-90.996952,41.1619549],[-90.9993,41.1630978],[-91.0000066,41.1633662],[-91.0001279,41.1634033],[-91.0047084,41.1651581],[-91.0081056,41.1661981],[-91.0105659,41.1661285],[-91.0145346,41.1656056],[-91.0145982,41.1655937],[-91.0148235,41.1655467],[-91.0155325,41.1654247],[-91.0158938,41.1654257],[-91.0165879,41.1652873],[-91.017385,41.1651862],[-91.0181567,41.1650937],[-91.0188102,41.1649338],[-91.0195998,41.1648272],[-91.0202136,41.1646898],[-91.0208846,41.1644993],[-91.0216579,41.164313],[-91.0221391,41.1641249],[-91.022633,41.164011],[-91.0232632,41.1637907],[-91.0238157,41.1636899],[-91.0245433,41.1635841],[-91.0250731,41.163444999999996],[-91.0257409,41.163442],[-91.0261375,41.1633846],[-91.0269291,41.1633663],[-91.0276946,41.163323399999996],[-91.0284283,41.1633279],[-91.02912309999999,41.1633908],[-91.0296315,41.1634394],[-91.030371,41.1635376],[-91.031161,41.163613],[-91.0319142,41.1638351],[-91.0325517,41.1639456],[-91.0331675,41.1640646],[-91.0338488,41.1641745],[-91.0340467,41.1642078],[-91.0345872,41.1643885],[-91.0351778,41.1645189],[-91.0356736,41.1646559],[-91.0363971,41.1648591],[-91.0369558,41.165034],[-91.037355,41.1650923],[-91.0381242,41.1652148],[-91.03878710000001,41.1654794],[-91.0393405,41.1655826],[-91.0397408,41.1656934],[-91.0406638,41.165836],[-91.0414188,41.1659725],[-91.04181080000001,41.1661991],[-91.0421719,41.1666799],[-91.042629,41.1672036],[-91.0430753,41.167733],[-91.0435746,41.1683527],[-91.0439013,41.1689194],[-91.0441777,41.1693627],[-91.0444278,41.169770400000004],[-91.0448566,41.1703331],[-91.0452121,41.1708829],[-91.0455843,41.1713636],[-91.0458981,41.171845],[-91.0461608,41.1723298],[-91.0465675,41.1728817],[-91.0468276,41.1732479],[-91.0470825,41.1737039],[-91.0473039,41.1739727],[-91.0475308,41.1743228],[-91.0478766,41.174925200000004],[-91.0483174,41.1755318],[-91.0486999,41.1761474],[-91.0491063,41.1766856],[-91.0494754,41.1771883],[-91.049776,41.1777278],[-91.0499588,41.1780619],[-91.0501446,41.1783684],[-91.0503957,41.1788175],[-91.05072,41.1792767],[-91.051074,41.1797548],[-91.0513996,41.180109200000004],[-91.0516434,41.1805611],[-91.0519147,41.1809327],[-91.052262,41.1814385],[-91.0525193,41.1818406],[-91.0528065,41.1822699],[-91.0531298,41.1826822],[-91.053129,41.1827257],[-91.0533559,41.1831537],[-91.0535051,41.1834552],[-91.0538181,41.1838979],[-91.0541018,41.1843328],[-91.054415,41.1847838],[-91.0547245,41.1852294],[-91.0550719,41.1855752],[-91.055418,41.186025799999996],[-91.055729,41.186380299999996],[-91.0560323,41.1868729],[-91.0564057,41.1872404],[-91.0566754,41.187703],[-91.0569829,41.1880576],[-91.0570111,41.1880944],[-91.0573106,41.1885029],[-91.0576999,41.1889226],[-91.0580573,41.1893896],[-91.05836479999999,41.1897469],[-91.0587924,41.1902434],[-91.0590963,41.1906035],[-91.0593671,41.1909503],[-91.0594956,41.1911444],[-91.0599679,41.1916844],[-91.0602789,41.1921906],[-91.0606788,41.1925991],[-91.0611334,41.1931614],[-91.0615285,41.193672],[-91.0619863,41.194217699999996],[-91.0623479,41.1947012],[-91.0626944,41.195165599999996],[-91.06307580000001,41.1957178],[-91.0635104,41.196203],[-91.0639299,41.196823699999996],[-91.0643895,41.1974438],[-91.06479,41.1978743],[-91.0651974,41.1984427],[-91.0656047,41.1990111],[-91.0660316,41.1996344],[-91.0664617,41.2000811],[-91.0667467,41.2005656],[-91.0670232,41.2010005],[-91.0672966,41.2014603],[-91.067756,41.2019066],[-91.0681291,41.2024148],[-91.0686067,41.202855400000004],[-91.0690296,41.2033049],[-91.0693031,41.2037675],[-91.0697672,41.2042579],[-91.0703702,41.2047547],[-91.070883,41.205139700000004],[-91.0714131,41.2056457],[-91.0718613,41.206077],[-91.0719509,41.2061655],[-91.0721796,41.206739],[-91.0725328,41.2071729],[-91.0730491,41.2075523],[-91.0735654,41.2079261],[-91.0741651,41.2082796],[-91.074668,41.208866],[-91.0750121,41.20922],[-91.0754469,41.2095453],[-91.0759352,41.209974700000004],[-91.0764579,41.2104698],[-91.0769642,41.2108851],[-91.0773861,41.2112878],[-91.077781,41.2116246],[-91.078198,41.2119666],[-91.0787738,41.2123893],[-91.079284,41.2128157],[-91.0796597,41.2131114],[-91.080104,41.2135303],[-91.0806341,41.2138708],[-91.0810749,41.2141381],[-91.0814961,41.214502100000004],[-91.0820106,41.2147987],[-91.0825931,41.215191000000004],[-91.0830905,41.215537499999996],[-91.0835727,41.2158538],[-91.084059,41.2161922],[-91.0845406,41.2164864],[-91.0849456,41.2167845],[-91.0853886,41.2170627],[-91.0854646,41.2171114],[-91.0858734,41.2174149],[-91.0862412,41.2176831],[-91.0866721,41.2179918],[-91.0871315,41.2182753],[-91.0875837,41.2185562],[-91.0880509,41.2188562],[-91.0886109,41.2192211],[-91.08911259999999,41.2195896],[-91.0897173,41.219992500000004],[-91.0902669,41.2203797],[-91.0906866,41.2206775],[-91.0910598,41.2210215],[-91.0915916,41.2214268],[-91.0921165,41.2218501],[-91.0926709,41.2222868],[-91.0931342,41.2227302],[-91.0935764,41.2232098],[-91.0939403,41.2236242],[-91.0942643,41.2240474],[-91.0946593,41.2243814],[-91.0950118,41.2247711],[-91.0953433,41.2252052],[-91.095744,41.2256274],[-91.0961005,41.2260309],[-91.0964177,41.226319000000004],[-91.09671900000001,41.226709400000004],[-91.0970038,41.227014499999996],[-91.0972787,41.2273667],[-91.0976083,41.227718100000004],[-91.0978939,41.2280563],[-91.0981929,41.228347400000004],[-91.098628,41.2286754],[-91.0989388,41.2290022],[-91.0992549,41.2292407],[-91.0996445,41.229652],[-91.0999648,41.2299152],[-91.1004147,41.2302513],[-91.1008678,41.2305679],[-91.1012348,41.2307975],[-91.1016274,41.2310267],[-91.1020809,41.2315157],[-91.1021147,41.2315552],[-91.1027472,41.2320432],[-91.1029951,41.2321751],[-91.1032697,41.232359],[-91.1035687,41.2326446],[-91.1039535,41.2328518],[-91.1042044,41.2331132],[-91.1045878,41.2334143],[-91.1048822,41.2336613],[-91.1052209,41.2339298],[-91.1055769,41.2341513],[-91.1059285,41.2343451],[-91.1062328,41.2345452],[-91.1066043,41.2348105],[-91.10699,41.2350536],[-91.1073779,41.235233199999996],[-91.1078764,41.2354609],[-91.1083427,41.235714],[-91.1087749,41.235915],[-91.1091928,41.2362845],[-91.1097564,41.2366355],[-91.1101357,41.2369173],[-91.1102554,41.2370357],[-91.1104837,41.2372657],[-91.1107637,41.2375184],[-91.1111593,41.2378744],[-91.1115435,41.2382085],[-91.1118577,41.238515899999996],[-91.1121387,41.2388128],[-91.1124722,41.2391669],[-91.1127228,41.2395689],[-91.1130148,41.239865699999996],[-91.1132041,41.240147199999996],[-91.1133679,41.240431799999996],[-91.113466,41.240720100000004],[-91.1136091,41.2410547],[-91.113664,41.2413683],[-91.1137497,41.2417478],[-91.1138114,41.242199299999996],[-91.1139164,41.242622600000004],[-91.113912,41.2430557],[-91.1139682,41.2435817],[-91.1140575,41.2441156],[-91.1140719,41.2447249],[-91.1142004,41.2452169],[-91.1142382,41.2455832],[-91.1142301,41.2463252],[-91.1142245,41.2468631],[-91.1142126,41.2475996],[-91.1141995,41.248283799999996],[-91.1142573,41.2490332],[-91.11425320000001,41.2499461],[-91.114302,41.2499979],[-91.1141347,41.2503421],[-91.1138919,41.2507398],[-91.1135408,41.2513512],[-91.1133645,41.2517784],[-91.11303649999999,41.2522047],[-91.1129461,41.252321800000004],[-91.1127011,41.2527829],[-91.1124267,41.2532361],[-91.1120113,41.2539119],[-91.1114022,41.2547392],[-91.110911,41.2554546],[-91.1102789,41.256237999999996],[-91.1096122,41.256952999999996],[-91.1089523,41.257643099999996],[-91.1081298,41.2582581],[-91.1075481,41.2588588],[-91.1066425,41.2596735],[-91.1061256,41.2602292],[-91.1056875,41.2607177],[-91.1051001,41.2613875],[-91.10449320000001,41.262159600000004],[-91.1040843,41.2626477],[-91.1036368,41.2633624],[-91.1031161,41.2642271],[-91.1026712,41.2648977],[-91.1021188,41.2656608],[-91.1017213,41.2663252],[-91.10134120000001,41.266950800000004],[-91.1009753,41.267716899999996],[-91.100484,41.2684377],[-91.1001392,41.2691704],[-91.0997491,41.2698403],[-91.0994816,41.270594],[-91.0991096,41.2712554],[-91.0988948,41.2719201],[-91.0985901,41.272492299999996],[-91.098328,41.2730115],[-91.0981178,41.2735604],[-91.0978131,41.2741326],[-91.0975311,41.2747376],[-91.097495,41.2748332],[-91.0973279,41.275269800000004],[-91.0970227,41.2758227],[-91.0968489,41.2763656],[-91.0964208,41.2771324],[-91.0961561,41.277853],[-91.0959523,41.2785231],[-91.0956508,41.2792332],[-91.0954656,41.2799141],[-91.0951084,41.280591799999996],[-91.0947849,41.2812993],[-91.0945288,41.2819205],[-91.094268,41.2826548],[-91.0939269,41.2833916],[-91.0938189,41.2836233],[-91.093705,41.2840688],[-91.0933576,41.284694],[-91.0929484,41.2853365],[-91.0926115,41.2861021],[-91.0923102,41.2866687],[-91.0919377,41.2873162],[-91.0915575,41.2879473],[-91.0912024,41.288558699999996],[-91.0906779,41.2892772],[-91.0904503,41.2897118],[-91.0903978,41.2898105],[-91.0900392,41.290273],[-91.0896351,41.2908217],[-91.08913,41.2914323],[-91.0886303,41.2921146],[-91.0882383,41.292712699999996],[-91.0876864,41.2933571],[-91.0872522,41.2940275],[-91.086606,41.2947034],[-91.0859654,41.2953075],[-91.085333,41.295793],[-91.08486,41.296210200000004],[-91.0841983,41.2966932],[-91.0835453,41.2972369],[-91.082921,41.2977553],[-91.0822231,41.2982554],[-91.081422,41.298878099999996],[-91.08071580000001,41.299339700000004],[-91.0799677,41.2998846],[-91.0792785,41.3004452],[-91.0786241,41.3009281],[-91.077946,41.3014996],[-91.0773593,41.302067199999996],[-91.0769629,41.3026405],[-91.0763835,41.3033679],[-91.0760149,41.3038746],[-91.0759332,41.3039819],[-91.0758266,41.304117],[-91.0754561,41.3045438],[-91.0752005,41.3051981],[-91.0748545,41.3058976],[-91.074645,41.3064905],[-91.0744778,41.3070112],[-91.0743223,41.3075675],[-91.0741717,41.3081762],[-91.0739997,41.3088073],[-91.073854,41.3094683],[-91.0738328,41.309978799999996],[-91.0737293,41.3105703],[-91.0736659,41.3111503],[-91.0736318,41.3117382],[-91.0735866,41.3123179],[-91.0734852,41.3128405],[-91.0734339,41.3136299],[-91.0733827,41.3142676],[-91.0733519,41.314679],[-91.0733299,41.3153108],[-91.0732818,41.3159264],[-91.0732363,41.3164924],[-91.073239,41.3170853],[-91.0731734,41.317734200000004],[-91.0731537,41.3182295],[-91.0731448,41.3183992],[-91.0731234,41.3189014],[-91.0730938,41.3195224],[-91.0730729,41.3202038],[-91.0730163,41.3209271],[-91.07298660000001,41.3215425],[-91.0729661,41.322246],[-91.0728881,41.3228317],[-91.0728276,41.3233813],[-91.0727565,41.3241075],[-91.0726656,41.3249305],[-91.0726143,41.3255628],[-91.0725286,41.3262892],[-91.0725143,41.327100200000004],[-91.0724203,41.3277853],[-91.0723504,41.328566699999996],[-91.0723046,41.3292816],[-91.0722683,41.3299302],[-91.0722428,41.3305731],[-91.0722935,41.3313446],[-91.0722646,41.3319986],[-91.0722949,41.3329993],[-91.0554272,41.3329756],[-91.0357246,41.3327389],[-91.0354598,41.3327575],[-91.0158656,41.3326941],[-90.9967223,41.332583299999996],[-90.996556,41.332593599999996],[-90.9770858,41.3324975],[-90.9757862,41.3324665],[-90.9575183,41.3323842],[-90.9572713,41.3323831],[-90.9564169,41.332379599999996],[-90.9379484,41.332324299999996],[-90.9376594,41.3323236],[-90.9371874,41.332321],[-90.9190354,41.332265899999996],[-90.91876859999999,41.3322773],[-90.898511,41.3321226],[-90.8794012,41.331728],[-90.87911940000001,41.331723],[-90.8787369,41.3317149],[-90.8601104,41.3313241],[-90.8599109,41.3313209],[-90.8396546,41.3308281],[-90.8207739,41.3305044],[-90.8205868,41.3304775],[-90.801698,41.329912300000004],[-90.7826801,41.3295565],[-90.7825502,41.3295551],[-90.7824367,41.3295508],[-90.763608,41.3290328],[-90.763487,41.3290176],[-90.7447227,41.328801999999996],[-90.7255181,41.3287177],[-90.7253311,41.328692000000004],[-90.7062924,41.3286746],[-90.7061054,41.328653],[-90.6880589,41.3285649],[-90.687761,41.328583],[-90.66795139999999,41.328614],[-90.6480378,41.3284414],[-90.6478384,41.3284405],[-90.6282202,41.3282012],[-90.6279332,41.3282149],[-90.6082293,41.3277581],[-90.5887191,41.327492],[-90.569213,41.3272531],[-90.5498934,41.3269901],[-90.5309617,41.326962],[-90.5307239,41.326962699999996],[-90.51199270000001,41.3268871],[-90.4928044,41.3268234],[-90.4925336,41.326822899999996],[-90.4921934,41.3268202],[-90.4734658,41.326744],[-90.4731878,41.3267435],[-90.4728183,41.3267437],[-90.4544307,41.326779099999996],[-90.4541657,41.3267908],[-90.453343,41.3268249],[-90.4338139,41.326975]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"PUTNAM","CO_FIPS":155},"geometry":{"type":"Polygon","coordinates":[[[-89.1635267,41.3099031],[-89.1632949,41.2953098],[-89.1632925,41.295046400000004],[-89.1630969,41.2805537],[-89.1629636,41.2660292],[-89.1629599,41.2649372],[-89.1629085,41.2512373],[-89.16292,41.2503714],[-89.1630969,41.2366772],[-89.1630891,41.2362167],[-89.1629431,41.227453600000004],[-89.1628482,41.221851],[-89.1628489,41.2213464],[-89.1628444,41.2073852],[-89.1628436,41.2071687],[-89.1628425,41.2070253],[-89.1627438,41.1925467],[-89.1629817,41.1779157],[-89.162995,41.1770457],[-89.1628228,41.1675113],[-89.1627393,41.1629682],[-89.1627278,41.162331800000004],[-89.1626548,41.1578776],[-89.162302,41.1479923],[-89.1624796,41.1474909],[-89.1625123,41.1330105],[-89.1625064,41.132736],[-89.1622343,41.1187028],[-89.1621599,41.1041446],[-89.1818125,41.1041529],[-89.2013091,41.1039797],[-89.2207981,41.103844699999996],[-89.2401629,41.1037532],[-89.25907839999999,41.103861800000004],[-89.2597238,41.1038603],[-89.2608249,41.103857],[-89.2732418,41.1038177],[-89.2789662,41.1038008],[-89.2790228,41.103800899999996],[-89.2792634,41.1038],[-89.2795022,41.1037991],[-89.2978822,41.103775],[-89.2991255,41.1037743],[-89.3169258,41.103756000000004],[-89.3182037,41.1037552],[-89.3190606,41.1037524],[-89.3362191,41.103710899999996],[-89.3381188,41.1037066],[-89.3553393,41.1036625],[-89.3584749,41.1036552],[-89.3585715,41.103688500000004],[-89.3579355,41.1044255],[-89.3572137,41.1052575],[-89.3563864,41.1059763],[-89.3556066,41.106607],[-89.3548141,41.1071728],[-89.3535421,41.107818],[-89.3524418,41.1082248],[-89.350475,41.1089132],[-89.3501829,41.1090521],[-89.3490171,41.1094216],[-89.3474829,41.1098582],[-89.3439077,41.1106051],[-89.3428018,41.1110518],[-89.3414509,41.1117961],[-89.3410456,41.112001],[-89.3399717,41.1128201],[-89.3387255,41.1139657],[-89.3385683,41.1141365],[-89.338146,41.1145882],[-89.3376909,41.1150757],[-89.3369065,41.1159862],[-89.3361037,41.1169862],[-89.3356166,41.1178571],[-89.3353473,41.1183779],[-89.3352575,41.1185502],[-89.3347116,41.119603],[-89.3343063,41.1205567],[-89.3335833,41.1232033],[-89.3334053,41.124401399999996],[-89.3333874,41.125030100000004],[-89.3331847,41.1281629],[-89.3331347,41.1329891],[-89.3331301,41.1333752],[-89.333126,41.133550400000004],[-89.3329726,41.1381462],[-89.3329242,41.1385529],[-89.3326665,41.1395275],[-89.3313235,41.1426999],[-89.3302654,41.1450082],[-89.3289344,41.1476883],[-89.3295856,41.1476948],[-89.3312565,41.1477123],[-89.3503538,41.1478949],[-89.3509904,41.1479026],[-89.3695915,41.1481257],[-89.3701807,41.1481139],[-89.3744222,41.148032900000004],[-89.3750424,41.1480212],[-89.3889647,41.1480804],[-89.408345,41.148187899999996],[-89.4083907,41.1481866],[-89.4279864,41.1481573],[-89.4280247,41.1481642],[-89.4281415,41.1481643],[-89.4471114,41.1483218],[-89.447365,41.1483316],[-89.4478009,41.1483359],[-89.4662656,41.1485274],[-89.4663213,41.1485281],[-89.4663203,41.148657],[-89.4661838,41.1628517],[-89.4661819,41.1629482],[-89.46618720000001,41.1634791],[-89.4663136,41.1774461],[-89.4663135,41.1775192],[-89.4663133,41.1780197],[-89.46629,41.1921451],[-89.4662897,41.1926456],[-89.4662646,41.2067777],[-89.4662664,41.2068053],[-89.4662715,41.2074685],[-89.4663615,41.2214309],[-89.4663615,41.2215122],[-89.4663613,41.2219438],[-89.4663262,41.2338446],[-89.4518495,41.233803800000004],[-89.4493435,41.2337986],[-89.4474604,41.2337895],[-89.4470494,41.233787899999996],[-89.4325015,41.2337213],[-89.4304394,41.2337132],[-89.4280924,41.2337104],[-89.4276083,41.233710200000004],[-89.4132777,41.2337006],[-89.4105745,41.2336986],[-89.408169,41.2336871],[-89.4078439,41.2336869],[-89.3937234,41.2336283],[-89.391349,41.2336193],[-89.3891389,41.2336131],[-89.388843,41.2336128],[-89.3750312,41.2335827],[-89.3740157,41.2335651],[-89.3699208,41.233493100000004],[-89.3695135,41.2334872],[-89.3572199,41.2332746],[-89.3562847,41.2332597],[-89.3562557,41.233182400000004],[-89.3562336,41.2332817],[-89.3556047,41.2352968],[-89.3555624,41.2354346],[-89.3547164,41.238138899999996],[-89.3543671,41.239213899999996],[-89.3533192,41.2423799],[-89.3526593,41.2442611],[-89.3516109,41.2475966],[-89.3509854,41.2495813],[-89.3508953,41.2498667],[-89.3508475,41.2500155],[-89.3508245,41.2513405],[-89.3498995,41.2549187],[-89.3481103,41.26012],[-89.347554,41.261283],[-89.3468082,41.26225],[-89.3462144,41.26302],[-89.34577469999999,41.2635516],[-89.3454103,41.2638959],[-89.3448073,41.2646741],[-89.344664,41.2650241],[-89.344385,41.2655725],[-89.34415680000001,41.2662864],[-89.3438409,41.2669975],[-89.3436498,41.2674633],[-89.3432971,41.268257],[-89.343047,41.2689212],[-89.3427495,41.2695827],[-89.3424081,41.2702302],[-89.3421619,41.2707787],[-89.3418757,41.2712691],[-89.3415599,41.2719057],[-89.3412846,41.2724458],[-89.3409546,41.2728756],[-89.340555,41.2733962],[-89.3401587,41.2740437],[-89.3397957,41.2745561],[-89.339366,41.2754187],[-89.3390938,41.2761284],[-89.3388659,41.276671300000004],[-89.3387372,41.277032399999996],[-89.3384577,41.2777297],[-89.3382336,41.2782285],[-89.3380643,41.2786915],[-89.3375588,41.280702500000004],[-89.3373462,41.2817073],[-89.3373828,41.2824408],[-89.3375506,41.2833745],[-89.3379668,41.2843678],[-89.3384983,41.2853171],[-89.3385626,41.2859666],[-89.341292,41.2897453],[-89.3417639,41.2912156],[-89.3419495,41.291573],[-89.3421602,41.2921606],[-89.3422583,41.2924503],[-89.342381,41.293115],[-89.3423915,41.2933577],[-89.342372,41.2938512],[-89.3422023,41.2945321],[-89.3419482,41.2953287],[-89.3415734,41.2961251],[-89.3411479,41.296725699999996],[-89.3407151,41.2972904],[-89.3400002,41.2981057],[-89.3395092,41.2985545],[-89.3387984,41.2991492],[-89.3381868,41.2995785],[-89.3372387,41.300026700000004],[-89.3359249,41.3004827],[-89.3351821,41.3006926],[-89.3346479,41.3008228],[-89.3339273,41.3009459],[-89.3327458,41.3011235],[-89.3315607,41.3012818],[-89.3304924,41.3014843],[-89.3291939,41.301650699999996],[-89.3285136,41.3017463],[-89.32799059999999,41.3017621],[-89.3273102,41.3018686],[-89.3264286,41.30203],[-89.3251225,41.3022763],[-89.3240796,41.3025671],[-89.3233004,41.3027286],[-89.3224623,41.3030059],[-89.3218364,41.3032283],[-89.3212545,41.303395699999996],[-89.3203654,41.3036122],[-89.319739,41.304018],[-89.3184616,41.3044752],[-89.3156558,41.304855599999996],[-89.3133512,41.3051691],[-89.3127328,41.3053295],[-89.3111704,41.3056745],[-89.3098021,41.305902599999996],[-89.3061389,41.3068563],[-89.3039702,41.307527],[-89.303158,41.307663500000004],[-89.3019707,41.3078642],[-89.3010117,41.3081853],[-89.3003563,41.3084682],[-89.3003104,41.3085067],[-89.2982588,41.3091582],[-89.2973268,41.3095785],[-89.2964423,41.310019600000004],[-89.295381,41.3102839],[-89.2946674,41.3104537],[-89.2938404,41.3106205],[-89.2920843,41.3108353],[-89.2909136,41.3109683],[-89.28980490000001,41.3111539],[-89.2881002,41.3113246],[-89.2868269,41.3115071],[-89.2847557,41.3119116],[-89.2834049,41.3123172],[-89.2824418,41.3127291],[-89.2819106,41.3130011],[-89.2814052,41.3132346],[-89.2813522,41.3132249],[-89.2804253,41.3137402],[-89.2794969,41.314705000000004],[-89.2786373,41.3152976],[-89.2774442,41.31667],[-89.2765535,41.3172681],[-89.2759447,41.317773],[-89.275347,41.3182351],[-89.2748265,41.3185761],[-89.2743976,41.3188951],[-89.2738002,41.319258],[-89.2733565,41.3195867],[-89.2727888,41.3198338],[-89.2721839,41.3202407],[-89.2715723,41.3204808],[-89.2715284,41.3204807],[-89.2691766,41.3215544],[-89.2683195,41.321901600000004],[-89.267218,41.3220663],[-89.2652274,41.3222995],[-89.2636908,41.3223903],[-89.2621068,41.322452],[-89.2602047,41.3224937],[-89.2600035,41.3224864],[-89.2588021,41.3224523],[-89.2579116,41.322384299999996],[-89.2573559,41.3223322],[-89.256559,41.3221954],[-89.2552469,41.3218977],[-89.2541147,41.3214156],[-89.2532345,41.3210609],[-89.2523802,41.320619300000004],[-89.2509047,41.3195202],[-89.2490961,41.3189925],[-89.2463644,41.318387],[-89.2447521,41.3182071],[-89.2434365,41.317903799999996],[-89.2417898,41.3176493],[-89.2406027,41.3177157],[-89.2386619,41.3173654],[-89.2376383,41.317246],[-89.236604,41.3170328],[-89.2351496,41.3167125],[-89.2337361,41.316213],[-89.232432,41.3157993],[-89.23038,41.3149454],[-89.2290294,41.314275],[-89.228062,41.3138317],[-89.2266992,41.3134839],[-89.2251096,41.3131659],[-89.2238847,41.3130887],[-89.2224546,41.3131212],[-89.2215038,41.3131052],[-89.2214306,41.3131051],[-89.2205786,41.3130755],[-89.2198512,41.3129883],[-89.2188496,41.3128619],[-89.2181771,41.3127542],[-89.2171538,41.3125849],[-89.2160353,41.3124527],[-89.2145402,41.3122892],[-89.2131435,41.3121949],[-89.2117724,41.3121034],[-89.2102585,41.3120722],[-89.2085505,41.3121011],[-89.2069412,41.3121276],[-89.2054454,41.312140400000004],[-89.204392,41.3121627],[-89.2032838,41.312182],[-89.2022671,41.3121823],[-89.2012288,41.3121052],[-89.2007791,41.3120683],[-89.1997155,41.3119332],[-89.198396,41.3117548],[-89.1971395,41.3114056],[-89.1962368,41.3112655],[-89.194925,41.311016699999996],[-89.1936389,41.3107488],[-89.192283,41.310555],[-89.1909086,41.3104026],[-89.1893144,41.3103323],[-89.1871423,41.310277],[-89.1856723,41.3102594],[-89.1848827,41.3101829],[-89.1835634,41.309983700000004],[-89.1826317,41.309802],[-89.1817474,41.3096452],[-89.1809731,41.3094281],[-89.1808252,41.3093974],[-89.1799684,41.3092269],[-89.1787265,41.3089023],[-89.1777583,41.308702600000004],[-89.1765269,41.3085062],[-89.1749256,41.3084054],[-89.1736967,41.308424099999996],[-89.1725083,41.308401599999996],[-89.1711255,41.3084999],[-89.1701484,41.3086488],[-89.1649908,41.3096328],[-89.1635267,41.3099031]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"MCLEAN","CO_FIPS":113},"geometry":{"type":"Polygon","coordinates":[[[-88.9294284,40.753296399999996],[-88.9107506,40.7535837],[-88.9103914,40.7535902],[-88.8914659,40.7539725],[-88.8911067,40.7539762],[-88.8720552,40.7542196],[-88.8529198,40.754501],[-88.8338612,40.7546859],[-88.814664,40.7549442],[-88.7957331,40.755041],[-88.77686800000001,40.7554249],[-88.776507,40.7554296],[-88.7578736,40.7556671],[-88.7572925,40.7557269],[-88.7381206,40.7559262],[-88.71931119999999,40.756141299999996],[-88.6997422,40.7564615],[-88.6807754,40.7564571],[-88.6797958,40.756464199999996],[-88.6616639,40.7567218],[-88.6608539,40.7567989],[-88.642661,40.7569842],[-88.6416045,40.7570511],[-88.62322520000001,40.757190800000004],[-88.6225087,40.7571827],[-88.6039615,40.7573927],[-88.6034886,40.7573533],[-88.5839931,40.757244],[-88.5840146,40.743033499999996],[-88.5836775,40.7285221],[-88.5834741,40.7140668],[-88.5831306,40.6995109],[-88.5826813,40.6850258],[-88.5822865,40.670541],[-88.5751946,40.670596599999996],[-88.5748009,40.6457956],[-88.5747954,40.6454617],[-88.574499,40.6310655],[-88.5743883,40.616607200000004],[-88.5546708,40.6165656],[-88.5356724,40.616749999999996],[-88.5353103,40.616754],[-88.5351799,40.6167557],[-88.5164628,40.6170138],[-88.5161024,40.6170191],[-88.5159721,40.617019400000004],[-88.4978904,40.6171392],[-88.4787401,40.6171616],[-88.4596835,40.6174522],[-88.4592309,40.6027669],[-88.4593257,40.5880366],[-88.4593839,40.573568],[-88.4590602,40.5589966],[-88.459058,40.544455400000004],[-88.4594131,40.5300842],[-88.459419,40.5298097],[-88.4591658,40.5153681],[-88.4592245,40.500868499999996],[-88.4591928,40.4861223],[-88.4594362,40.471831],[-88.459414,40.4571757],[-88.4594895,40.4425074],[-88.4596151,40.4278697],[-88.4598776,40.413246900000004],[-88.4600264,40.3984906],[-88.4600822,40.3839236],[-88.4603429,40.3693998],[-88.46027,40.354746],[-88.4605463,40.3401337],[-88.4602812,40.3257981],[-88.46027839999999,40.3110397],[-88.4603346,40.2963134],[-88.4604634,40.281789],[-88.4795827,40.2812817],[-88.49881189999999,40.2811337],[-88.5179468,40.2812717],[-88.53699280000001,40.2813341],[-88.5557954,40.281267400000004],[-88.57475170000001,40.2815686],[-88.5937771,40.281549999999996],[-88.6127906,40.2818898],[-88.6317064,40.281707],[-88.6507736,40.2817955],[-88.669839,40.2820382],[-88.67019930000001,40.282040800000004],[-88.6888471,40.2819463],[-88.7079361,40.2820258],[-88.7269115,40.2822753],[-88.7459059,40.2822776],[-88.7462644,40.282278500000004],[-88.7500892,40.2822766],[-88.7500883,40.2823607],[-88.765032,40.2824212],[-88.7840544,40.2824963],[-88.80422659999999,40.2827144],[-88.804277,40.2827133],[-88.8232612,40.2826466],[-88.8233279,40.2826456],[-88.8425581,40.2826559],[-88.8617019,40.2826516],[-88.8750121,40.282648],[-88.8808909,40.2826292],[-88.8809269,40.282628],[-88.8999336,40.282643],[-88.8999769,40.282643300000004],[-88.9194822,40.2822686],[-88.9195312,40.2822233],[-88.9195358,40.282542],[-88.9195601,40.2828609],[-88.9390681,40.2830417],[-88.9583932,40.2831289],[-88.9584382,40.2831291],[-88.97743,40.2829785],[-88.9967343,40.282442599999996],[-89.0000524,40.282503500000004],[-89.0159788,40.2826954],[-89.0160455,40.2826915],[-89.0346297,40.2822873],[-89.0346352,40.282545400000004],[-89.0346426,40.2827717],[-89.0541369,40.2831503],[-89.0732286,40.2825268],[-89.0924897,40.2824361],[-89.1112568,40.2824],[-89.1250678,40.2823591],[-89.1302368,40.282300899999996],[-89.1487939,40.2820954],[-89.148795,40.2822279],[-89.1487979,40.2823741],[-89.1678425,40.2819339],[-89.1868316,40.2817547],[-89.2055824,40.2816712],[-89.2246362,40.2814841],[-89.2435766,40.2812412],[-89.2500696,40.2811586],[-89.2625745,40.2810106],[-89.2625776,40.2811541],[-89.2625824,40.281334799999996],[-89.2628895,40.2958129],[-89.2628909,40.295953600000004],[-89.2628943,40.296014299999996],[-89.2634029,40.310625200000004],[-89.2637009,40.325220200000004],[-89.2637007,40.3252879],[-89.2637023,40.325341699999996],[-89.2639533,40.3400083],[-89.2642012,40.354550599999996],[-89.264201,40.3546003],[-89.2642043,40.3546817],[-89.2645685,40.3690255],[-89.2645699,40.3691289],[-89.2646311,40.3749926],[-89.2647493,40.3837482],[-89.2649467,40.3983645],[-89.265103,40.4129131],[-89.2652576,40.4274298],[-89.2654142,40.441920100000004],[-89.2657243,40.4564355],[-89.2660217,40.4709949],[-89.2660234,40.4710377],[-89.2664437,40.4856303],[-89.2668575,40.500053],[-89.2668591,40.5001234],[-89.2671643,40.51467],[-89.2671642,40.5146989],[-89.2675836,40.529189],[-89.2675852,40.5292442],[-89.2675885,40.529327],[-89.2678984,40.543623600000004],[-89.2678982,40.5436857],[-89.2678999,40.543723],[-89.2684411,40.5581303],[-89.2684554,40.5581855],[-89.2687399,40.572593499999996],[-89.2691674,40.5870362],[-89.2691706,40.587159],[-89.2693252,40.5944967],[-89.2502052,40.594729900000004],[-89.2500513,40.594732300000004],[-89.2313397,40.5950708],[-89.2122333,40.5954151],[-89.1932209,40.5957552],[-89.1741105,40.5960947],[-89.1550832,40.59643],[-89.1550219,40.5963912],[-89.1550261,40.596634],[-89.1384877,40.5964869],[-89.1337034,40.5966985],[-89.1339406,40.6038546],[-89.1341883,40.6114218],[-89.1250516,40.6116003],[-89.1246914,40.611590899999996],[-89.1200133,40.611725],[-89.1150618,40.6118691],[-89.1011067,40.6123101],[-89.1014159,40.619576800000004],[-89.1016487,40.6250458],[-89.0822908,40.6268734],[-89.0633742,40.6271849],[-89.0588597,40.6273062],[-89.0455331,40.6277278],[-89.0443903,40.62778],[-89.0445416,40.6350435],[-89.0449821,40.6498053],[-89.0449872,40.6500046],[-89.04539869999999,40.663842700000004],[-89.04544,40.6639008],[-89.0453693,40.6639033],[-89.042119,40.6639763],[-89.0240137,40.6643799],[-89.0230642,40.664425800000004],[-89.0044118,40.6645621],[-89.0036454,40.664574099999996],[-89.0000491,40.6646294],[-88.9852276,40.6650657],[-88.9847836,40.6650983],[-88.9852266,40.6795456],[-88.985618,40.6941319],[-88.9858688,40.7086374],[-88.9858704,40.708676],[-88.9863126,40.723299499999996],[-88.9866157,40.7378808],[-88.986987,40.7523312],[-88.9680068,40.7526275],[-88.9676441,40.7526259],[-88.9486217,40.7529479],[-88.9294284,40.753296399999996]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"TAZEWELL","CO_FIPS":179},"geometry":{"type":"Polygon","coordinates":[[[-89.2693252,40.5944967],[-89.2691706,40.587159],[-89.2691674,40.5870362],[-89.2687399,40.572593499999996],[-89.2684554,40.5581855],[-89.2684411,40.5581303],[-89.2678999,40.543723],[-89.2678982,40.5436857],[-89.2678984,40.543623600000004],[-89.2675885,40.529327],[-89.2675852,40.5292442],[-89.2675836,40.529189],[-89.2671642,40.5146989],[-89.2671643,40.51467],[-89.2668591,40.5001234],[-89.2668575,40.500053],[-89.2664437,40.4856303],[-89.2660234,40.4710377],[-89.2660217,40.4709949],[-89.2657243,40.4564355],[-89.2654142,40.441920100000004],[-89.2652576,40.4274298],[-89.265103,40.4129131],[-89.2649467,40.3983645],[-89.2647493,40.3837482],[-89.2646311,40.3749926],[-89.2645699,40.3691289],[-89.2645685,40.3690255],[-89.2642043,40.3546817],[-89.264201,40.3546003],[-89.2642012,40.354550599999996],[-89.2639533,40.3400083],[-89.2637023,40.325341699999996],[-89.2637007,40.3252879],[-89.2637009,40.325220200000004],[-89.2825032,40.3250825],[-89.3016931,40.3249384],[-89.3206707,40.3245755],[-89.3398444,40.3242748],[-89.3587381,40.324202400000004],[-89.37509,40.3241381],[-89.3773128,40.3240756],[-89.3965328,40.3238913],[-89.41550960000001,40.3234968],[-89.4346953,40.3231697],[-89.4536447,40.322718],[-89.4727128,40.3224275],[-89.4894319,40.3221709],[-89.4894283,40.3220868],[-89.4894283,40.3220413],[-89.5001086,40.3218349],[-89.5083481,40.3216511],[-89.527273,40.3212371],[-89.5273234,40.321225999999996],[-89.5462968,40.3208986],[-89.5463545,40.3208986],[-89.5651998,40.320691],[-89.5843622,40.3204775],[-89.602991,40.3202669],[-89.6029891,40.3202075],[-89.6029871,40.3201027],[-89.6217058,40.3198794],[-89.6217473,40.3198793],[-89.624999,40.3198387],[-89.6404355,40.3197469],[-89.6593849,40.3195974],[-89.6783594,40.3194434],[-89.6784099,40.3194433],[-89.6973971,40.3193208],[-89.7147998,40.3191871],[-89.7151272,40.3336305],[-89.7151291,40.3336622],[-89.7153922,40.3482118],[-89.7156949,40.3627488],[-89.7160638,40.3735288],[-89.7159849,40.3737],[-89.7159819,40.3750631],[-89.716031,40.377505],[-89.7163082,40.3918776],[-89.7165899,40.4064625],[-89.7168228,40.4210102],[-89.7168229,40.4210557],[-89.7168251,40.4211813],[-89.7170212,40.4354613],[-89.735563,40.4352107],[-89.7500842,40.4350707],[-89.754356,40.4350727],[-89.77263669999999,40.435084599999996],[-89.7726764,40.4350832],[-89.7927115,40.43495],[-89.7927476,40.4349444],[-89.8118055,40.4343442],[-89.8276734,40.4346133],[-89.8276727,40.4344726],[-89.8276747,40.4343181],[-89.8470319,40.4349764],[-89.8661796,40.4357275],[-89.8662229,40.4357329],[-89.8750229,40.4357082],[-89.8850955,40.4359519],[-89.9048885,40.4354806],[-89.9236368,40.4357368],[-89.9249477,40.4357556],[-89.9251879,40.4357588],[-89.924941,40.4358411],[-89.9237334,40.4361807],[-89.9235766,40.4362309],[-89.9217278,40.4368279],[-89.9185501,40.4377483],[-89.9175206,40.4382914],[-89.9169358,40.438634199999996],[-89.9152625,40.4396182],[-89.9140472,40.4405136],[-89.9116734,40.4424395],[-89.9099117,40.4440873],[-89.9084568,40.4454099],[-89.9070694,40.446848],[-89.9063421,40.447848],[-89.9060249,40.4485789],[-89.9057501,40.4497552],[-89.9056394,40.450593],[-89.9056203,40.4507324],[-89.9055505,40.45145],[-89.9055183,40.4527442],[-89.9054445,40.4540303],[-89.9050117,40.4559976],[-89.90416139999999,40.4576133],[-89.9039303,40.4582501],[-89.9034991,40.4589482],[-89.90288699999999,40.459590399999996],[-89.902283,40.460096],[-89.9017004,40.4602318],[-89.9010372,40.4604837],[-89.9003041,40.4608297],[-89.8997355,40.461208299999996],[-89.8990527,40.461834100000004],[-89.8984897,40.462542400000004],[-89.8980368,40.4629536],[-89.8977562,40.4637782],[-89.8976765,40.4646848],[-89.8976637,40.465285],[-89.8976605,40.4653719],[-89.8976236,40.4658673],[-89.8975596,40.4660372],[-89.8974368,40.4663563],[-89.8971984,40.4666855],[-89.8971697,40.4667118],[-89.8964436,40.4673667],[-89.8949385,40.4685623],[-89.8923772,40.470505],[-89.89111,40.4713065],[-89.8900152,40.471936400000004],[-89.88841790000001,40.4731598],[-89.8878844,40.474028000000004],[-89.8875379,40.475055499999996],[-89.8873073,40.4764675],[-89.8871756,40.4778034],[-89.8872121,40.4781937],[-89.8873318,40.4795632],[-89.887324,40.4801068],[-89.887311,40.4803814],[-89.8873094,40.480409],[-89.8870039,40.4833002],[-89.8865346,40.484689599999996],[-89.8862157,40.4867944],[-89.8858251,40.4886857],[-89.88494180000001,40.4923334],[-89.8848,40.4928277],[-89.884761,40.4929603],[-89.8844656,40.4944332],[-89.8843943,40.494937],[-89.8842046,40.496263400000004],[-89.8840649,40.498450399999996],[-89.8838316,40.5000459],[-89.8839208,40.5001671],[-89.8838706,40.5005631],[-89.8835793,40.5018167],[-89.8832688,40.502531],[-89.88313,40.503244699999996],[-89.8827311,40.5040033],[-89.8826156,40.5043541],[-89.8823192,40.5050145],[-89.8821095,40.5053325],[-89.88195759999999,40.5056571],[-89.8812432,40.5065465],[-89.8807651,40.5070405],[-89.8806321,40.5071761],[-89.8804632,40.5073477],[-89.8796394,40.5080774],[-89.8791719,40.5085217],[-89.8782687,40.5092847],[-89.8773166,40.5100369],[-89.8768399,40.5104481],[-89.8764437,40.510728],[-89.8759022,40.5111836],[-89.8756501,40.5113665],[-89.8753693,40.511584],[-89.8751279,40.5117337],[-89.8747947,40.5119486],[-89.8738755,40.5124412],[-89.8730214,40.512948800000004],[-89.8726789,40.5131182],[-89.87246640000001,40.5132596],[-89.8712406,40.5138828],[-89.8700007,40.5145834],[-89.8683693,40.5154176],[-89.8671508,40.516084899999996],[-89.8666587,40.5163333],[-89.8661644,40.5165225],[-89.8658434,40.5166752],[-89.8655245,40.5168679],[-89.8652666,40.516976299999996],[-89.8649341,40.5170077],[-89.8637567,40.5175811],[-89.8600131,40.5193321],[-89.8579955,40.5199989],[-89.8552485,40.5215661],[-89.8546444,40.5218479],[-89.8539931,40.522099499999996],[-89.853064,40.5224927],[-89.8513703,40.5232441],[-89.8508799,40.5234938],[-89.850622,40.5236243],[-89.8490995,40.5242785],[-89.8475501,40.5249838],[-89.8460725,40.525599299999996],[-89.8451416,40.5259869],[-89.8444634,40.5263047],[-89.8437489,40.5265965],[-89.8432205,40.5268629],[-89.8405897,40.5279134],[-89.8399237,40.5281264],[-89.8382127,40.528735499999996],[-89.8377523,40.5288623],[-89.8370377,40.5291375],[-89.835812,40.5295452],[-89.8349819,40.5298662],[-89.8341972,40.5302326],[-89.834098,40.5302798],[-89.8332197,40.5307388],[-89.8276906,40.5337685],[-89.8271837,40.534003],[-89.8269473,40.534114],[-89.8253244,40.535050999999996],[-89.8236035,40.5359124],[-89.8228135,40.5363367],[-89.8220555,40.536645],[-89.8218752,40.53676],[-89.8213145,40.5371174],[-89.8200515,40.5376975],[-89.8187851,40.5383396],[-89.8185668,40.538450499999996],[-89.8177386,40.5388307],[-89.8166813,40.539352199999996],[-89.815003,40.540092],[-89.8138177,40.5406924],[-89.8135812,40.5407662],[-89.813388,40.5408412],[-89.8125234,40.541184200000004],[-89.8119997,40.5413456],[-89.811534,40.5415275],[-89.8099316,40.5418807],[-89.80927750000001,40.541983099999996],[-89.808361,40.5420462],[-89.8075136,40.542207],[-89.8069755,40.542396],[-89.8059786,40.542680000000004],[-89.8051242,40.5428905],[-89.8045518,40.5430741],[-89.8036085,40.5432255],[-89.8029206,40.543487999999996],[-89.8021965,40.5437188],[-89.8010063,40.5440653],[-89.7996974,40.5445625],[-89.7979041,40.5451271],[-89.7973678,40.545316],[-89.7963472,40.5455779],[-89.7952801,40.5459779],[-89.7946497,40.5461464],[-89.7942633,40.546282500000004],[-89.7937974,40.5464506],[-89.7924936,40.546881400000004],[-89.790514,40.547471200000004],[-89.78959449999999,40.5477093],[-89.7872843,40.5483909],[-89.7860215,40.5487167],[-89.7849668,40.5490614],[-89.7814582,40.5503541],[-89.78013490000001,40.550933799999996],[-89.7794869,40.5512678],[-89.7779344,40.5519667],[-89.7763503,40.5524781],[-89.7755607,40.5526578],[-89.7751035,40.5527624],[-89.7749355,40.5528014],[-89.7732891,40.5531156],[-89.7727848,40.553188399999996],[-89.7722731,40.5532227],[-89.7705314,40.5532088],[-89.7695546,40.5531668],[-89.7680347,40.5530061],[-89.7661804,40.5528502],[-89.7624204,40.552395000000004],[-89.7605677,40.5522005],[-89.7585302,40.5519193],[-89.7571842,40.5517953],[-89.7570757,40.5517804],[-89.7562363,40.5517256],[-89.7559667,40.5516959],[-89.7547871,40.551568700000004],[-89.7527804,40.5512943],[-89.7508339,40.5511605],[-89.7504485,40.5510951],[-89.7485965,40.5510921],[-89.747148,40.5505985],[-89.7455918,40.5503534],[-89.7439641,40.5503567],[-89.7419113,40.5508299],[-89.7393811,40.5513317],[-89.738078,40.5515826],[-89.7379171,40.5516133],[-89.7371942,40.5517527],[-89.7370677,40.5517777],[-89.7357919,40.5521045],[-89.7344118,40.5525748],[-89.7324724,40.5529456],[-89.7298531,40.5533576],[-89.7286473,40.5534993],[-89.7274248,40.5535402],[-89.7260856,40.5538408],[-89.7241461,40.5541962],[-89.7207347,40.5552096],[-89.7197247,40.5555357],[-89.7180118,40.5560906],[-89.7166381,40.556369000000004],[-89.715481,40.5565091],[-89.7136719,40.5563827],[-89.7111405,40.5566079],[-89.7099833,40.5567479],[-89.7088991,40.5570809],[-89.7070275,40.5578153],[-89.7052216,40.5587841],[-89.7029542,40.5602613],[-89.7015021,40.5610087],[-89.700056,40.5613422],[-89.6992898,40.561589],[-89.6991704,40.5615837],[-89.697119,40.5615154],[-89.6945132,40.5611058],[-89.693065,40.5606943],[-89.6912178,40.5598696],[-89.6890436,40.5584936],[-89.6875935,40.5573371],[-89.6868674,40.5563725],[-89.6857778,40.5547188],[-89.6840953,40.5531433],[-89.683371,40.5528133],[-89.6825386,40.5526546],[-89.6817716,40.5525771],[-89.6807733,40.552598],[-89.6803673,40.5526068],[-89.67964860000001,40.5526866],[-89.6774797,40.5532416],[-89.675673,40.553989200000004],[-89.6720613,40.5562293],[-89.6684501,40.5587728],[-89.6666447,40.5601548],[-89.6648266,40.5623342],[-89.6633815,40.5631639],[-89.6627677,40.5637165],[-89.6616844,40.564576],[-89.6610561,40.565079],[-89.6606522,40.5656617],[-89.6595688,40.5664909],[-89.6581457,40.5675302],[-89.6563404,40.5691879],[-89.6551877,40.5714822],[-89.6548275,40.5721724],[-89.6544692,40.5754284],[-89.6540042,40.577857],[-89.6542796,40.5796775],[-89.6544595,40.5800318],[-89.6554753,40.5820432],[-89.6565876,40.5842489],[-89.6576776,40.5861787],[-89.658768,40.5882796],[-89.6593154,40.5902653],[-89.6600444,40.5925267],[-89.6602327,40.594156999999996],[-89.6602205,40.5943846],[-89.6601039,40.596419499999996],[-89.6600883,40.5966954],[-89.6600622,40.5971451],[-89.6599947,40.5977108],[-89.6598911,40.5983069],[-89.6596286,40.599068700000004],[-89.6593481,40.5998526],[-89.659067,40.6004131],[-89.6588403,40.600995499999996],[-89.6585195,40.6016167],[-89.65824549999999,40.6021026],[-89.6579243,40.6024921],[-89.6575849,40.602892499999996],[-89.6571445,40.6034449],[-89.6568269,40.6038564],[-89.6548331,40.605793],[-89.65436,40.6063344],[-89.6539193,40.6067516],[-89.6536016,40.6071272],[-89.6532477,40.6075029],[-89.6529588,40.6078426],[-89.6526156,40.608157500000004],[-89.6523772,40.6084034],[-89.6518604,40.6087903],[-89.6515984,40.6090044],[-89.6515279,40.6090611],[-89.6511343,40.6094947],[-89.6507404,40.6098401],[-89.650242,40.610403500000004],[-89.6496604,40.6109588],[-89.6492051,40.6113512],[-89.6486559,40.6118457],[-89.6480813,40.6123651],[-89.6475214,40.6129534],[-89.6471136,40.6135361],[-89.6467126,40.6139669],[-89.6463008,40.614395099999996],[-89.6460805,40.6146768],[-89.6456756,40.6149614],[-89.6451189,40.6153483],[-89.6447069,40.615685400000004],[-89.6442586,40.616006],[-89.6439225,40.6163016],[-89.6435248,40.616572500000004],[-89.6431452,40.6168626],[-89.643044,40.6169],[-89.6429137,40.6169484],[-89.6425992,40.6171585],[-89.6421871,40.6174818],[-89.6417715,40.6178823],[-89.64128,40.6182912],[-89.6408318,40.6187111],[-89.6402822,40.6190538],[-89.6399208,40.6193991],[-89.6394762,40.6197666],[-89.63926670000001,40.6199875],[-89.6387678,40.620390900000004],[-89.6383777,40.6208521],[-89.6381139,40.6211173],[-89.6378248,40.6214045],[-89.6375646,40.6216697],[-89.6374313,40.6220037],[-89.6369286,40.622316],[-89.6366179,40.6226419],[-89.6362094,40.623001],[-89.6360215,40.6231778],[-89.6357975,40.6234098],[-89.6355768,40.6235232],[-89.6353672,40.623711],[-89.6350165,40.6239983],[-89.6345502,40.6244155],[-89.6340946,40.624755300000004],[-89.6338489,40.6250066],[-89.6334981,40.625258099999996],[-89.6330896,40.6255786],[-89.6327425,40.6258824],[-89.6322762,40.626299599999996],[-89.6318424,40.6266918],[-89.6311881,40.6272691],[-89.6306928,40.6277028],[-89.6301831,40.6281393],[-89.6296336,40.6286282],[-89.6291202,40.6290702],[-89.6286177,40.6295287],[-89.6280501,40.6300232],[-89.6274463,40.6305756],[-89.6270559,40.6309484],[-89.6264739,40.6314788],[-89.626022,40.6319013],[-89.6256387,40.6322549],[-89.6251325,40.6326968],[-89.6238202,40.633953500000004],[-89.6216355,40.6354373],[-89.6201883,40.6362664],[-89.6192722,40.6374329],[-89.6191042,40.6376469],[-89.6183424,40.639063],[-89.6176195,40.6398913],[-89.6168965,40.6407197],[-89.6158259,40.6415553],[-89.6144593,40.6430575],[-89.613189,40.644788500000004],[-89.6125748,40.6457836],[-89.612073,40.6468062],[-89.6117574,40.6476701],[-89.6111505,40.6497867],[-89.6108795,40.6513829],[-89.6109202,40.6519429],[-89.6109221,40.6519871],[-89.611095,40.6525331],[-89.6113239,40.652963299999996],[-89.611705,40.653392],[-89.6121221,40.653764],[-89.6140589,40.6552368],[-89.6156713,40.6565953],[-89.6160904,40.656966],[-89.6163955,40.6574678],[-89.6166446,40.6580704],[-89.6168398,40.6588606],[-89.6169007,40.6595502],[-89.6168133,40.6603421],[-89.6166657,40.6609464],[-89.6162578,40.6618103],[-89.61595750000001,40.6620851],[-89.6155855,40.662762799999996],[-89.6142591,40.6647242],[-89.6137366,40.665373],[-89.6131765,40.6662964],[-89.6128871,40.666527],[-89.6126519,40.6667148],[-89.6119416,40.6677818],[-89.6115112,40.6682732],[-89.6083258,40.6713647],[-89.6075008,40.6721006],[-89.6062432,40.673141799999996],[-89.6043105,40.6746029],[-89.6042091,40.674683],[-89.6035468,40.6752064],[-89.6024898,40.6759715],[-89.6012594,40.6770816],[-89.6002457,40.6777501],[-89.5995762,40.6783314],[-89.5992142,40.6786475],[-89.5983381,40.6792414],[-89.5973428,40.6800947],[-89.5961987,40.6808543],[-89.5959906,40.6810476],[-89.5954712,40.681530800000004],[-89.5945047,40.6823178],[-89.5940851,40.6829058],[-89.5937634,40.6835102],[-89.5932278,40.6840927],[-89.592627,40.684686299999996],[-89.5916239,40.6852995],[-89.5909432,40.6858049],[-89.5903783,40.6861695],[-89.5891613,40.6866753],[-89.5877921,40.687288699999996],[-89.5868214,40.687719799999996],[-89.5856948,40.6882034],[-89.5844777,40.6887284],[-89.5831483,40.6893584],[-89.5811849,40.6902039],[-89.579946,40.6907482],[-89.5787107,40.6912925],[-89.5759503,40.692602],[-89.5732296,40.693801],[-89.5708891,40.69479],[-89.568978,40.695628400000004],[-89.5685414,40.6958204],[-89.5667479,40.6965608],[-89.5654146,40.697209799999996],[-89.565208,40.6972458],[-89.5636283,40.6979281],[-89.5620811,40.6986461],[-89.5603854,40.6994277],[-89.5573363,40.700896900000004],[-89.5563961,40.7015332],[-89.5557006,40.7021681],[-89.5550451,40.702876],[-89.5544077,40.7037315],[-89.5538718,40.7045511],[-89.5531875,40.7056935],[-89.5524851,40.7067918],[-89.5521594,40.7075975],[-89.5516852,40.708555000000004],[-89.5512507,40.7093994],[-89.5509865,40.7100202],[-89.5509431,40.7101526],[-89.5507042,40.710641],[-89.5502226,40.7115709],[-89.5497232,40.7127629],[-89.5490896,40.714045999999996],[-89.5484633,40.7154587],[-89.5476851,40.7174232],[-89.547486,40.717974999999996],[-89.5471965,40.718775199999996],[-89.5468706,40.7195064],[-89.5466246,40.7202541],[-89.5465305,40.720599],[-89.5465235,40.720929999999996],[-89.5465274,40.7213962],[-89.5465205,40.7219397],[-89.5466116,40.7226073],[-89.5467136,40.7233217],[-89.5467796,40.7244528],[-89.5468993,40.72461],[-89.5469722,40.7250624],[-89.5472265,40.7258706],[-89.5475679,40.726593199999996],[-89.5479092,40.727269],[-89.548196,40.7277185],[-89.5483342,40.728372300000004],[-89.5485778,40.7292439],[-89.5489089,40.7309652],[-89.5490837,40.732019],[-89.54924,40.7325237],[-89.5492986,40.7333072],[-89.5494699,40.734612],[-89.5496155,40.7352768],[-89.5497574,40.735941499999996],[-89.5500119,40.7368794],[-89.5501248,40.7375166],[-89.55029210000001,40.738244800000004],[-89.5504157,40.7386944],[-89.5504702,40.7387441],[-89.5506666,40.7395716],[-89.5510808,40.740553500000004],[-89.551317,40.7411879],[-89.5516147,40.7415795],[-89.5518873,40.7423297],[-89.5523739,40.7431544],[-89.552708,40.7437253],[-89.5531692,40.744412],[-89.5535867,40.7450215],[-89.55396089999999,40.7457606],[-89.5543603,40.7463453],[-89.554709,40.7469161],[-89.5551119,40.7473105],[-89.5552356,40.7477159],[-89.5547804,40.7477134],[-89.5409837,40.7476748],[-89.5223934,40.7475776],[-89.5031285,40.747626600000004],[-89.5000779,40.747639],[-89.4863394,40.7474906],[-89.4843263,40.7474599],[-89.4665379,40.747555500000004],[-89.46531,40.7475551],[-89.4471244,40.7476394],[-89.4470736,40.7476407],[-89.4462865,40.7476252],[-89.4462175,40.7476252],[-89.4273934,40.747731],[-89.427105,40.747733600000004],[-89.4078382,40.7479036],[-89.4075988,40.7479062],[-89.387902,40.7480933],[-89.3751282,40.7481302],[-89.3692591,40.7481874],[-89.3689345,40.7481636],[-89.3684865,40.7481631],[-89.3500559,40.7481619],[-89.3497094,40.7481725],[-89.34931040000001,40.7481748],[-89.3308269,40.7483058],[-89.3305022,40.748304],[-89.3301359,40.7483048],[-89.3300271,40.7336395],[-89.3299852,40.7190735],[-89.3299835,40.7190431],[-89.3298347,40.704468500000004],[-89.3298201,40.6898967],[-89.3298184,40.6898485],[-89.3297348,40.6753275],[-89.3296096,40.6607801],[-89.3286207,40.6607441],[-89.3282606,40.6446223],[-89.3278642,40.6300991],[-89.3277248,40.6250377],[-89.3273378,40.615487200000004],[-89.3083338,40.6155794],[-89.3082976,40.615580800000004],[-89.2890561,40.6157772],[-89.26985930000001,40.6161168],[-89.2694765,40.6017627],[-89.2694732,40.6016496],[-89.2693252,40.5944967]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"FULTON","CO_FIPS":57},"geometry":{"type":"Polygon","coordinates":[[[-89.986056,40.712238400000004],[-89.9865219,40.6985819],[-89.9865339,40.6982259],[-89.9865563,40.697799599999996],[-89.98721929999999,40.684100799999996],[-89.987232,40.6838386],[-89.9872471,40.6834151],[-89.9877204,40.6695707],[-89.9877292,40.6692699],[-89.9877336,40.669126399999996],[-89.9880835,40.6550176],[-89.988089,40.6547761],[-89.9880923,40.6547278],[-89.9886965,40.6404922],[-89.9886995,40.6404163],[-89.988704,40.6402729],[-89.9889791,40.625884],[-89.9679701,40.6256316],[-89.9490313,40.6254782],[-89.9302528,40.625477000000004],[-89.9302148,40.625475800000004],[-89.9114252,40.6254179],[-89.9110287,40.6254165],[-89.892612,40.6253558],[-89.8925686,40.6253559],[-89.8920435,40.625343900000004],[-89.8832724,40.6251448],[-89.8791482,40.6248255],[-89.8750956,40.6246852],[-89.8737251,40.6246936],[-89.8737272,40.6244177],[-89.8737466,40.6105209],[-89.8737462,40.6097843],[-89.873746,40.609740099999996],[-89.87393660000001,40.596062],[-89.8739481,40.5951777],[-89.8741779,40.5817284],[-89.8741804,40.5815352],[-89.8741228,40.5805808],[-89.8720149,40.5805653],[-89.8720364,40.5805266],[-89.872129,40.5660636],[-89.8722282,40.5508169],[-89.872311,40.5379139],[-89.8724031,40.5233774],[-89.87246640000001,40.5132596],[-89.8726789,40.5131182],[-89.8730214,40.512948800000004],[-89.8738755,40.5124412],[-89.8747947,40.5119486],[-89.8751279,40.5117337],[-89.8753693,40.511584],[-89.8756501,40.5113665],[-89.8759022,40.5111836],[-89.8764437,40.510728],[-89.8768399,40.5104481],[-89.8773166,40.5100369],[-89.8782687,40.5092847],[-89.8791719,40.5085217],[-89.8796394,40.5080774],[-89.8804632,40.5073477],[-89.8806321,40.5071761],[-89.8807651,40.5070405],[-89.8812432,40.5065465],[-89.88195759999999,40.5056571],[-89.8821095,40.5053325],[-89.8823192,40.5050145],[-89.8826156,40.5043541],[-89.8827311,40.5040033],[-89.88313,40.503244699999996],[-89.8832688,40.502531],[-89.8835793,40.5018167],[-89.8838706,40.5005631],[-89.8839208,40.5001671],[-89.8838316,40.5000459],[-89.8840649,40.498450399999996],[-89.8842046,40.496263400000004],[-89.8843943,40.494937],[-89.8844656,40.4944332],[-89.884761,40.4929603],[-89.8848,40.4928277],[-89.88494180000001,40.4923334],[-89.8858251,40.4886857],[-89.8862157,40.4867944],[-89.8865346,40.484689599999996],[-89.8870039,40.4833002],[-89.8873094,40.480409],[-89.887311,40.4803814],[-89.887324,40.4801068],[-89.8873318,40.4795632],[-89.8872121,40.4781937],[-89.8871756,40.4778034],[-89.8873073,40.4764675],[-89.8875379,40.475055499999996],[-89.8878844,40.474028000000004],[-89.88841790000001,40.4731598],[-89.8900152,40.471936400000004],[-89.89111,40.4713065],[-89.8923772,40.470505],[-89.8949385,40.4685623],[-89.8964436,40.4673667],[-89.8971697,40.4667118],[-89.8971984,40.4666855],[-89.8974368,40.4663563],[-89.8975596,40.4660372],[-89.8976236,40.4658673],[-89.8976605,40.4653719],[-89.8976637,40.465285],[-89.8976765,40.4646848],[-89.8977562,40.4637782],[-89.8980368,40.4629536],[-89.8984897,40.462542400000004],[-89.8990527,40.461834100000004],[-89.8997355,40.461208299999996],[-89.9003041,40.4608297],[-89.9010372,40.4604837],[-89.9017004,40.4602318],[-89.902283,40.460096],[-89.90288699999999,40.459590399999996],[-89.9034991,40.4589482],[-89.9039303,40.4582501],[-89.90416139999999,40.4576133],[-89.9050117,40.4559976],[-89.9054445,40.4540303],[-89.9055183,40.4527442],[-89.9055505,40.45145],[-89.9056203,40.4507324],[-89.9056394,40.450593],[-89.9057501,40.4497552],[-89.9060249,40.4485789],[-89.9063421,40.447848],[-89.9070694,40.446848],[-89.9084568,40.4454099],[-89.9099117,40.4440873],[-89.9116734,40.4424395],[-89.9140472,40.4405136],[-89.9152625,40.4396182],[-89.9169358,40.438634199999996],[-89.9175206,40.4382914],[-89.9185501,40.4377483],[-89.9217278,40.4368279],[-89.9235766,40.4362309],[-89.9237334,40.4361807],[-89.924941,40.4358411],[-89.9251879,40.4357588],[-89.9277879,40.4348942],[-89.9282559,40.4346579],[-89.930836,40.4337864],[-89.933611,40.432634],[-89.9358261,40.4317346],[-89.9365806,40.4314284],[-89.9384707,40.4305288],[-89.9408222,40.429244],[-89.9408617,40.4292217],[-89.9428567,40.4280968],[-89.9452795,40.4266916],[-89.9471693,40.425522900000004],[-89.9485927,40.4245297],[-89.9496641,40.4238317],[-89.9515267,40.4226685],[-89.9524519,40.421983499999996],[-89.9536081,40.421281],[-89.9536386,40.4212629],[-89.9557227,40.4197567],[-89.9581607,40.4179952],[-89.9596406,40.4168637],[-89.9597196,40.4168],[-89.9608704,40.4158642],[-89.9625945,40.4145524],[-89.9634201,40.4138608],[-89.9650095,40.412662600000004],[-89.9656551,40.4120364],[-89.9666836,40.4111798],[-89.9685004,40.4097351],[-89.9698873,40.4085266],[-89.9710282,40.4077577],[-89.9710661,40.4077576],[-89.9722082,40.4069073],[-89.9732215,40.406236899999996],[-89.9742219,40.4052617],[-89.9755127,40.4040011],[-89.9766553,40.4027217],[-89.9772298,40.4020172],[-89.9780572,40.4008315],[-89.9784724,40.3998089],[-89.9792051,40.3982428],[-89.9796657,40.3972586],[-89.9804047,40.395836],[-89.9811229,40.3947914],[-89.9815112,40.3943194],[-89.9825891,40.3933741],[-89.983038,40.3930536],[-89.9838819,40.3924514],[-89.9844912,40.3921054],[-89.9853317,40.3918095],[-89.9867683,40.3915842],[-89.98921849999999,40.3913051],[-89.9926659,40.3909557],[-89.9936357,40.3908178],[-89.9950503,40.3905553],[-89.9971189,40.3896596],[-89.9980493,40.3890666],[-89.9990759,40.3885669],[-89.9996129,40.3882184],[-90.0001049,40.3878797],[-90.0002777,40.3878238],[-90.0024739,40.386628],[-90.0040711,40.3859494],[-90.0055362,40.3854575],[-90.0066651,40.3851395],[-90.0083745,40.3847487],[-90.0125467,40.3836492],[-90.0134435,40.3833045],[-90.0137881,40.383172],[-90.0156842,40.3821911],[-90.0165097,40.3818454],[-90.0169607,40.3815992],[-90.0175575,40.3813069],[-90.0181654,40.3810587],[-90.01901409999999,40.3806742],[-90.0197304,40.3804393],[-90.0205006,40.3801793],[-90.0214226,40.37996],[-90.0220096,40.3798002],[-90.0227842,40.379656],[-90.0236379,40.3794564],[-90.02436900000001,40.3792876],[-90.0253135,40.3791703],[-90.0269393,40.378980999999996],[-90.0276748,40.3789115],[-90.0284353,40.3788005],[-90.0290732,40.3786984],[-90.0295575,40.3785796],[-90.0304493,40.3784218],[-90.0312418,40.378241700000004],[-90.0320413,40.378047699999996],[-90.0326586,40.3778594],[-90.0329592,40.3777677],[-90.0341824,40.3773179],[-90.0351904,40.3770223],[-90.0359413,40.376605],[-90.0360059,40.3765592],[-90.03761,40.3754372],[-90.0392976,40.3736939],[-90.042506,40.3705985],[-90.0435422,40.369537],[-90.0442746,40.368631300000004],[-90.0451401,40.3674381],[-90.0459481,40.3658133],[-90.046017,40.3651797],[-90.0461363,40.364063],[-90.0462446,40.3636127],[-90.0463309,40.3633405],[-90.0463784,40.3631899],[-90.0465467,40.3625738],[-90.046677,40.3621786],[-90.0468967,40.3616671],[-90.047056,40.3612884],[-90.047308,40.3607629],[-90.0475705,40.360201599999996],[-90.0478835,40.3596372],[-90.0482105,40.3590204],[-90.0485022,40.3585113],[-90.0487763,40.3580465],[-90.0490254,40.3576204],[-90.0492959,40.3571555],[-90.0495982,40.356610599999996],[-90.0498359,40.3561128],[-90.050167,40.3555676],[-90.0504434,40.3549427],[-90.0506588,40.3543595],[-90.050907,40.3538175],[-90.0511446,40.3533004],[-90.0514098,40.3526314],[-90.0516942,40.3521141],[-90.0517006,40.3515539],[-90.0518625,40.3510537],[-90.0519582,40.35038],[-90.0522169,40.3498076],[-90.0523613,40.3493765],[-90.0524353,40.3491499],[-90.0525604,40.3485505],[-90.052673,40.3481995],[-90.0526725,40.3476918],[-90.052697,40.3471426],[-90.0526825,40.3466763],[-90.0525305,40.3461555],[-90.0523517,40.3454389],[-90.0521197,40.344835599999996],[-90.0518628,40.344268400000004],[-90.05163160000001,40.34377],[-90.0513131,40.34317],[-90.051027,40.342567],[-90.0505357,40.341322],[-90.0499967,40.3399655],[-90.0496411,40.338541899999996],[-90.0497159,40.3370612],[-90.0497507,40.3368968],[-90.0501878,40.335631],[-90.0502456,40.3351837],[-90.0502592,40.3350829],[-90.0503184,40.3345901],[-90.0504395,40.3339438],[-90.0506654,40.3333274],[-90.0511882,40.3324227],[-90.0513773,40.3317126],[-90.0515686,40.3312868],[-90.0518492,40.3307474],[-90.0522699,40.3296859],[-90.0525466,40.3291272],[-90.0529843,40.3283939],[-90.0533758,40.3277546],[-90.0538749,40.3270459],[-90.054349,40.3263594],[-90.0549707,40.3256556],[-90.055385,40.3251625],[-90.0556821,40.3249017],[-90.0559794,40.324652],[-90.0563093,40.324429699999996],[-90.0567321,40.3241048],[-90.0574641,40.323665399999996],[-90.0581317,40.3233008],[-90.0588143,40.3230023],[-90.0596047,40.3226564],[-90.0605339,40.322097400000004],[-90.0615282,40.3215629],[-90.0623279,40.3210348],[-90.0630521,40.3205375],[-90.0635217,40.3201986],[-90.0641203,40.3197763],[-90.0647329,40.3193016],[-90.0655961,40.3186186],[-90.0662466,40.3179202],[-90.066829,40.3172827],[-90.0673538,40.3166621],[-90.0677414,40.315998],[-90.0681115,40.315414000000004],[-90.0684456,40.3148384],[-90.0687781,40.314053200000004],[-90.0689778,40.3133513],[-90.0691222,40.3124924],[-90.0691969,40.3119319],[-90.0692395,40.3114129],[-90.0691855,40.310977199999996],[-90.0690715,40.3102686],[-90.0689781,40.3098634],[-90.068867,40.309505200000004],[-90.0686952,40.3092107],[-90.0685803,40.3088167],[-90.0684508,40.3084172],[-90.0684372,40.3080723],[-90.0684591,40.3076638],[-90.0685187,40.3074566],[-90.068447,40.3070706],[-90.068376,40.3067591],[-90.0683763,40.3065701],[-90.0683671,40.3063314],[-90.0682402,40.306022999999996],[-90.0681397,40.3056261],[-90.0681177,40.3051378],[-90.0679952,40.3046996],[-90.0680028,40.304313300000004],[-90.0679708,40.304147900000004],[-90.0679464,40.304029299999996],[-90.0680793,40.3035292],[-90.0681505,40.3029825],[-90.0682397,40.3024302],[-90.0682923,40.3020229],[-90.068293,40.3018918],[-90.0682967,40.3013537],[-90.0682997,40.3009467],[-90.0683116,40.298659],[-90.0684442,40.297681600000004],[-90.0686882,40.2968912],[-90.0694381,40.2951657],[-90.0707327,40.2932851],[-90.0707968,40.2931917],[-90.0709214,40.293008900000004],[-90.0717092,40.292174599999996],[-90.07283029999999,40.2913537],[-90.0733237,40.290874],[-90.0739967,40.2903381],[-90.0746233,40.2898439],[-90.07527089999999,40.2892834],[-90.0757968,40.2888228],[-90.07616780000001,40.288373899999996],[-90.0766741,40.287725800000004],[-90.0771595,40.2871605],[-90.0776309,40.2866504],[-90.0780241,40.286267699999996],[-90.0785132,40.2857189],[-90.0789725,40.28506],[-90.0793574,40.2845503],[-90.0798847,40.2838358],[-90.0803907,40.2831518],[-90.0809984,40.2825748],[-90.08155909999999,40.2819705],[-90.0819836,40.2814607],[-90.0826122,40.2808064],[-90.0830789,40.2801694],[-90.0836133,40.279454799999996],[-90.0842728,40.2786127],[-90.0848001,40.2779009],[-90.0853178,40.2773464],[-90.0858247,40.276781],[-90.0860398,40.2766613],[-90.0864468,40.276215],[-90.0869974,40.2757128],[-90.0871225,40.275596300000004],[-90.0874804,40.2753186],[-90.0878589,40.2749138],[-90.0883067,40.2746108],[-90.0887471,40.274283],[-90.0891334,40.2739555],[-90.0895508,40.2734733],[-90.0900772,40.2731009],[-90.0905065,40.2727455],[-90.0909753,40.2723762],[-90.0914905,40.271954199999996],[-90.091959,40.2715434],[-90.0923514,40.2710917],[-90.0928513,40.2705704],[-90.0932147,40.270091199999996],[-90.0936316,40.2695482],[-90.094038,40.2690495],[-90.09435,40.2684629],[-90.0947315,40.2680002],[-90.0951785,40.2676144],[-90.0955827,40.2672812],[-90.0961091,40.266914299999996],[-90.0966215,40.2665999],[-90.0974506,40.2662397],[-90.0982864,40.265832599999996],[-90.0990802,40.2655582],[-90.1001071,40.2651805],[-90.1010446,40.2648695],[-90.101957,40.2645696],[-90.1028046,40.2642838],[-90.1032813,40.2640054],[-90.1038152,40.2636798],[-90.1043957,40.2633237],[-90.1047609,40.2630707],[-90.1050504,40.2628071],[-90.105494,40.262459899999996],[-90.1056371,40.2623488],[-90.1056765,40.262318199999996],[-90.1059943,40.2619937],[-90.1063797,40.2615833],[-90.1068692,40.2611228],[-90.10728950000001,40.2605825],[-90.1076956,40.2600644],[-90.1079326,40.2597789],[-90.1081055,40.2595711],[-90.1084614,40.2590836],[-90.1087643,40.258704],[-90.1091194,40.2581227],[-90.1095171,40.2574749],[-90.1098512,40.2569572],[-90.110281,40.2562761],[-90.1106178,40.2556618],[-90.1110322,40.2548594],[-90.1115173,40.2539131],[-90.1119246,40.2531273],[-90.1122208,40.2524055],[-90.1125312,40.2516671],[-90.1128234,40.2508985],[-90.113034,40.250690399999996],[-90.1133364,40.2506806],[-90.1134151,40.2506112],[-90.1134802,40.2500382],[-90.1130463,40.2500377],[-90.113076,40.2499424],[-90.1131745,40.24947],[-90.113335,40.2490856],[-90.1135909,40.2484978],[-90.1138758,40.2479265],[-90.1140144,40.2477133],[-90.1143232,40.2469984],[-90.1144401,40.2467784],[-90.114489,40.246611200000004],[-90.1146761,40.2459824],[-90.1149846,40.2454386],[-90.1154562,40.244604100000004],[-90.1155744,40.2443234],[-90.1163342,40.242087],[-90.1169006,40.240576000000004],[-90.1173957,40.238949399999996],[-90.1174422,40.2387077],[-90.117567,40.238366299999996],[-90.1177274,40.2379763],[-90.1180209,40.2373787],[-90.1183918,40.2367738],[-90.1186697,40.2362357],[-90.1190526,40.2351588],[-90.1191907,40.2348959],[-90.1198738,40.233973399999996],[-90.1204901,40.2332279],[-90.1210757,40.2326812],[-90.1212856,40.2323903],[-90.1219079,40.2317207],[-90.1228402,40.2307975],[-90.1228825,40.2307966],[-90.1232383,40.230516],[-90.1239039,40.229864],[-90.1244226,40.2294874],[-90.1246493,40.2292765],[-90.1247422,40.2291918],[-90.1251288,40.22894],[-90.1252865,40.2286646],[-90.1253866,40.2285868],[-90.12594849999999,40.2282086],[-90.1263544,40.2279042],[-90.126674,40.2276211],[-90.1272357,40.2272276],[-90.1276637,40.2269784],[-90.12814230000001,40.2267441],[-90.1290825,40.2262106],[-90.129925,40.2258198],[-90.130153,40.225746900000004],[-90.1307319,40.2254692],[-90.1319871,40.2249327],[-90.1324033,40.224780100000004],[-90.1326599,40.224687599999996],[-90.1341498,40.2240353],[-90.1352923,40.2235766],[-90.1356059,40.2234218],[-90.1362855,40.2231422],[-90.1379864,40.2227302],[-90.1390595,40.222569899999996],[-90.1395464,40.2224734],[-90.1398108,40.2224444],[-90.140819,40.2222734],[-90.1426866,40.2219928],[-90.1430877,40.2219562],[-90.1440481,40.2218696],[-90.1454587,40.2218012],[-90.1465393,40.2216739],[-90.1475626,40.22158],[-90.1497966,40.2214119],[-90.150942,40.2212828],[-90.1512496,40.2212604],[-90.1534819,40.2209059],[-90.1554855,40.2205541],[-90.1560279,40.2204241],[-90.1564712,40.220283699999996],[-90.1573482,40.2199477],[-90.157549,40.2198638],[-90.1580415,40.2196031],[-90.1583977,40.2193914],[-90.1586682,40.219257400000004],[-90.1600928,40.2183968],[-90.1604921,40.2181738],[-90.1608272,40.2180174],[-90.1611116,40.217835],[-90.1615326,40.217628500000004],[-90.162252,40.2171898],[-90.1623667,40.2171312],[-90.1626855,40.2169666],[-90.1629523,40.2168285],[-90.1640986,40.2162371],[-90.1646176,40.2159251],[-90.1653446,40.2155361],[-90.1659583,40.2151477],[-90.1661553,40.2150486],[-90.1662274,40.2150648],[-90.1662488,40.215037],[-90.1666123,40.2148473],[-90.1675081,40.2142311],[-90.1677426,40.2140973],[-90.1685539,40.2134925],[-90.169229,40.2129423],[-90.1699461,40.2122773],[-90.1704846,40.2117513],[-90.1708595,40.2112539],[-90.1712122,40.210684799999996],[-90.1713305,40.2104468],[-90.1716552,40.2099661],[-90.1719028,40.2095191],[-90.1721406,40.208978200000004],[-90.1722506,40.2086354],[-90.1725162,40.207995],[-90.17269830000001,40.2074711],[-90.1728968,40.2067787],[-90.172989,40.2064511],[-90.1733397,40.2056889],[-90.1737507,40.204635100000004],[-90.1739797,40.2039453],[-90.1742048,40.203399],[-90.1742861,40.2030577],[-90.1743702,40.2028309],[-90.1744356,40.202700899999996],[-90.1747208,40.202048],[-90.1752767,40.2011079],[-90.1755804,40.2006936],[-90.175842,40.2003996],[-90.17638170000001,40.1998294],[-90.1769063,40.1993642],[-90.1773247,40.1989092],[-90.1777218,40.198660000000004],[-90.17792850000001,40.1984546],[-90.1780909,40.1983157],[-90.178568,40.1979721],[-90.1789228,40.197639],[-90.1792998,40.1973608],[-90.1796476,40.197051099999996],[-90.1800872,40.196734],[-90.1802869,40.1965507],[-90.180557,40.1963905],[-90.1809481,40.1960847],[-90.1813202,40.1958577],[-90.1813951,40.1957951],[-90.1818361,40.1954463],[-90.1819971,40.1953488],[-90.1823424,40.1951398],[-90.1826699,40.1949668],[-90.1834452,40.1945719],[-90.1839664,40.194331500000004],[-90.1847443,40.194029],[-90.1857947,40.1938077],[-90.1870163,40.1936061],[-90.1884114,40.1934986],[-90.18964940000001,40.1933259],[-90.190614,40.1931588],[-90.1918289,40.1928371],[-90.192576,40.1925126],[-90.192983,40.1923737],[-90.1931604,40.1923009],[-90.1933537,40.192194900000004],[-90.1935181,40.192089100000004],[-90.1941017,40.1917876],[-90.1948993,40.191304099999996],[-90.19551680000001,40.1907927],[-90.1957851,40.1904559],[-90.1962016,40.1898256],[-90.1965939,40.189118199999996],[-90.1966571,40.1889523],[-90.1967703,40.1887653],[-90.1971335,40.188019499999996],[-90.1972471,40.1878643],[-90.1973456,40.1876429],[-90.19759930000001,40.1872785],[-90.1981331,40.1863288],[-90.1984644,40.1858191],[-90.1987962,40.1853604],[-90.1993329,40.1846963],[-90.1997478,40.183917],[-90.1998361,40.1839262],[-90.2009946,40.1839166],[-90.2199213,40.1840074],[-90.24023389999999,40.1846495],[-90.2500102,40.1850048],[-90.2580866,40.1852114],[-90.2788336,40.1857157],[-90.2984131,40.186354],[-90.3176629,40.186919599999996],[-90.3374453,40.187757],[-90.3375515,40.187761699999996],[-90.356528,40.1878427],[-90.356573,40.1878424],[-90.375096,40.1880451],[-90.3755331,40.1880419],[-90.3946894,40.188230000000004],[-90.4133637,40.1884325],[-90.4326418,40.1886935],[-90.4517706,40.188816],[-90.4513948,40.203462099999996],[-90.4512046,40.2180071],[-90.4512034,40.2180513],[-90.4512039,40.2180858],[-90.4509825,40.2323288],[-90.4509806,40.2324517],[-90.4507488,40.247256300000004],[-90.4505439,40.261527900000004],[-90.4502087,40.2762835],[-90.449856,40.2908293],[-90.4498528,40.2909894],[-90.4495359,40.305659],[-90.4492022,40.320292699999996],[-90.4489281,40.3348182],[-90.448635,40.3495425],[-90.4486355,40.3495756],[-90.4482966,40.3643911],[-90.4483157,40.3787401],[-90.4482238,40.3934237],[-90.4482227,40.3936058],[-90.4480986,40.408049500000004],[-90.4481017,40.4082758],[-90.4479313,40.4227611],[-90.4479944,40.422893],[-90.4478762,40.4375048],[-90.4478728,40.4377862],[-90.4476838,40.4519817],[-90.4476018,40.4666067],[-90.4475672,40.4667201],[-90.4474802,40.4812484],[-90.4474599,40.4813479],[-90.4473695,40.4958982],[-90.4473686,40.4960969],[-90.4472521,40.5104556],[-90.4472513,40.5105301],[-90.4472492,40.5106349],[-90.4471475,40.5251535],[-90.4469626,40.5397995],[-90.4467517,40.554142],[-90.446748,40.5542731],[-90.4467477,40.554380699999996],[-90.44660089999999,40.5690496],[-90.4465998,40.5691006],[-90.4465981,40.5692441],[-90.4464049,40.5840939],[-90.4464036,40.5841312],[-90.4464018,40.584266400000004],[-90.4461162,40.5984519],[-90.4458995,40.6129277],[-90.4458946,40.6132285],[-90.4458887,40.613463100000004],[-90.44560010000001,40.6250631],[-90.4455619,40.6276983],[-90.4453488,40.642184900000004],[-90.4453461,40.642251099999996],[-90.4450557,40.6567865],[-90.4450387,40.6570046],[-90.4448122,40.6711847],[-90.4448235,40.671348800000004],[-90.444822,40.6715033],[-90.4446489,40.685754700000004],[-90.4446311,40.686039],[-90.444624,40.6865839],[-90.4444047,40.700241],[-90.4444005,40.700469999999996],[-90.444398,40.700947299999996],[-90.4442719,40.7148021],[-90.4442727,40.71486],[-90.4251901,40.7147127],[-90.424945,40.7146843],[-90.424749,40.7146734],[-90.4057918,40.7145344],[-90.4053875,40.714532],[-90.404985,40.7145268],[-90.3869081,40.7143257],[-90.3860178,40.714317199999996],[-90.3855246,40.7143056],[-90.3751162,40.714242999999996],[-90.3681203,40.7142361],[-90.3670525,40.7142356],[-90.3661894,40.7142239],[-90.357218,40.714109300000004],[-90.3487421,40.7140429],[-90.3480058,40.714024699999996],[-90.3474856,40.7140283],[-90.3295992,40.7139552],[-90.3288125,40.7139634],[-90.3280819,40.7139623],[-90.328042,40.7139619],[-90.3106385,40.713935],[-90.3105859,40.713934699999996],[-90.3100384,40.7139349],[-90.3095237,40.713943900000004],[-90.2915867,40.713880599999996],[-90.2911045,40.7138797],[-90.2907564,40.7138765],[-90.2725346,40.7137805],[-90.2720197,40.7137783],[-90.2717713,40.7137771],[-90.2534682,40.7137022],[-90.2530676,40.713700599999996],[-90.2500237,40.713688],[-90.2343605,40.7136639],[-90.2341067,40.7136627],[-90.2152167,40.7136323],[-90.196285,40.7136006],[-90.1960511,40.7136006],[-90.1957139,40.713597],[-90.1771565,40.7134691],[-90.1768556,40.713468],[-90.1765909,40.7134668],[-90.1577574,40.713453200000004],[-90.1575326,40.7134531],[-90.1573042,40.7134502],[-90.1387014,40.7132958],[-90.1250667,40.7132327],[-90.1197929,40.7131967],[-90.1195754,40.7131951],[-90.10073560000001,40.713065],[-90.0818378,40.7129322],[-90.0816982,40.712931499999996],[-90.0816258,40.7129415],[-90.0628157,40.7128728],[-90.0623407,40.7128723],[-90.0434074,40.712804],[-90.024372,40.7126531],[-90.0242887,40.7126534],[-90.0052146,40.7124003],[-90.0000169,40.7123422],[-89.986056,40.712238400000004]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"ADAMS","CO_FIPS":1},"geometry":{"type":"Polygon","coordinates":[[[-91.5053429,40.200279699999996],[-91.4918354,40.2000452],[-91.4917924,40.2000501],[-91.474652,40.1999422],[-91.47411460000001,40.1999388],[-91.4728817,40.1999358],[-91.4553179,40.199904000000004],[-91.4545238,40.1998923],[-91.45384250000001,40.199889],[-91.4358498,40.199799999999996],[-91.43534030000001,40.199794499999996],[-91.4347408,40.1997892],[-91.4156147,40.1996155],[-91.3965914,40.199441300000004],[-91.3962817,40.1994393],[-91.396035,40.199435],[-91.377107,40.1991167],[-91.377099,40.1991555],[-91.3770972,40.199219],[-91.3770555,40.19921],[-91.3751151,40.1991344],[-91.3617658,40.1988522],[-91.3554387,40.1987528],[-91.3543062,40.198736],[-91.3480009,40.1986385],[-91.3363302,40.1985302],[-91.3357343,40.198525599999996],[-91.33522669999999,40.1985224],[-91.3198933,40.1983339],[-91.3167471,40.1983228],[-91.3164606,40.198312],[-91.3161896,40.1983072],[-91.2980031,40.1979836],[-91.2976808,40.1979788],[-91.2974449,40.197974099999996],[-91.2778924,40.1976798],[-91.2778187,40.1976809],[-91.2587306,40.197310200000004],[-91.2501541,40.1971267],[-91.2405272,40.197035299999996],[-91.2404786,40.1970346],[-91.2402482,40.1970325],[-91.2224169,40.1968804],[-91.2220012,40.1968781],[-91.2213945,40.1968704],[-91.2025526,40.1966665],[-91.2023923,40.1966619],[-91.1832766,40.1962153],[-91.1642632,40.1958994],[-91.1639979,40.1958672],[-91.14518580000001,40.1955241],[-91.1251304,40.1953371],[-91.1227385,40.195324299999996],[-91.1224226,40.1953211],[-91.1036354,40.1951414],[-91.1035495,40.195163300000004],[-91.0846535,40.1949786],[-91.0655095,40.1947998],[-91.0464149,40.194653],[-91.0272822,40.194403],[-91.0078218,40.1942203],[-91.0074781,40.194217699999996],[-91.0071703,40.1942161],[-91.0001426,40.1941011],[-90.9887073,40.1939513],[-90.9883725,40.1939473],[-90.9880377,40.1939404],[-90.969637,40.1936277],[-90.9694498,40.1936259],[-90.9689062,40.1936174],[-90.9506144,40.193339],[-90.9503642,40.1933366],[-90.9500924,40.193333],[-90.9312861,40.193138],[-90.9308793,40.1931332],[-90.9118967,40.1929345],[-90.9122558,40.17789],[-90.9122567,40.1778445],[-90.9122605,40.177586399999996],[-90.9124349,40.163290599999996],[-90.91243539999999,40.1631388],[-90.912442,40.1628434],[-90.9127567,40.148547199999996],[-90.91275830000001,40.1484492],[-90.9127642,40.1480296],[-90.9129371,40.1338413],[-90.9129362,40.1338013],[-90.9130709,40.1250077],[-90.9132011,40.1191011],[-90.9133565,40.104500099999996],[-90.9134814,40.0909703],[-90.9134845,40.0906819],[-90.9136181,40.0762521],[-90.9137513,40.0618098],[-90.9137639,40.0617185],[-90.9139691,40.047195200000004],[-90.9143203,40.0325321],[-90.9146681,40.0179696],[-90.9144999,40.0033677],[-90.9144993,40.003335899999996],[-90.9146624,40.000048],[-90.9145592,39.988477],[-90.9145531,39.988444],[-90.9145161,39.9738483],[-90.9144781,39.9592042],[-90.914445,39.944626299999996],[-90.9147721,39.930037],[-90.9163982,39.9166755],[-90.9164318,39.9163881],[-90.9164506,39.9159917],[-90.9164532,39.9159406],[-90.9170661,39.9023994],[-90.917,39.887983],[-90.9169993,39.8878615],[-90.9170005,39.8878311],[-90.9168681,39.8750068],[-90.9167862,39.8738788],[-90.9167713,39.8736774],[-90.9167726,39.8735615],[-90.9167887,39.8594006],[-90.9167876,39.8593468],[-90.9167857,39.8588982],[-90.9166883,39.844966299999996],[-90.9166874,39.8447441],[-90.9165598,39.8315316],[-90.9165512,39.8305752],[-90.9164177,39.8170646],[-90.9164132,39.8166644],[-90.9164124,39.8161841],[-90.9163661,39.801583300000004],[-90.9163638,39.8010299],[-90.9163621,39.8007704],[-90.9162066,39.7868762],[-90.9161968,39.7859488],[-90.9160403,39.772089],[-90.9160327,39.7715342],[-90.9160304,39.7709794],[-90.9159577,39.75728],[-90.9350737,39.7571755],[-90.935181,39.7571742],[-90.953782,39.7570715],[-90.9539144,39.7570713],[-90.95401269999999,39.7570701],[-90.972477,39.7568433],[-90.9732029,39.7568356],[-90.9911955,39.7568796],[-90.9916283,39.756881],[-90.9920969,39.7568861],[-91.0000887,39.7568867],[-91.0105436,39.7569131],[-91.010726,39.7569149],[-91.0111108,39.7569265],[-91.0295521,39.7570279],[-91.0296719,39.7570277],[-91.0486351,39.7570268],[-91.0677387,39.7569851],[-91.067889,39.756985900000004],[-91.0681733,39.7569862],[-91.08689820000001,39.7570389],[-91.0873185,39.757038800000004],[-91.1060488,39.7570898],[-91.1061597,39.757091],[-91.1063081,39.757091700000004],[-91.1249227,39.757316599999996],[-91.1251571,39.7573203],[-91.14816,39.7569907],[-91.1664707,39.7567578],[-91.1667306,39.7567817],[-91.1854737,39.7568309],[-91.2037339,39.7568772],[-91.204767,39.7569257],[-91.2048081,39.756925100000004],[-91.2227177,39.7570329],[-91.2228107,39.7570343],[-91.2237288,39.7570609],[-91.2416797,39.7571708],[-91.2418084,39.7571716],[-91.2425084,39.7572013],[-91.2501051,39.757112],[-91.2658967,39.7573993],[-91.284875,39.7577425],[-91.3035102,39.7579457],[-91.3223997,39.7581503],[-91.3224551,39.758150799999996],[-91.3410968,39.7585854],[-91.35914819999999,39.7587365],[-91.3591983,39.7587357],[-91.365121,39.7587759],[-91.3650991,39.759028799999996],[-91.3651429,39.7592656],[-91.36512450000001,39.7593804],[-91.3651555,39.7594683],[-91.3653691,39.7609115],[-91.3656164,39.7622728],[-91.3659937,39.764620300000004],[-91.365959,39.7649301],[-91.3660079,39.7660957],[-91.3658788,39.767699],[-91.3658073,39.7732781],[-91.3657921,39.774321900000004],[-91.3656147,39.7757893],[-91.3655782,39.7771757],[-91.3652453,39.7784482],[-91.3650745,39.778885700000004],[-91.3649183,39.7796046],[-91.36430730000001,39.7811174],[-91.3637772,39.7821735],[-91.3635353,39.7824258],[-91.3625378,39.783804],[-91.3623108,39.7840823],[-91.3621751,39.7842942],[-91.361987,39.7846879],[-91.361762,39.7852436],[-91.3616935,39.7855635],[-91.3616346,39.7862408],[-91.3616088,39.7868196],[-91.3616604,39.7873474],[-91.3616983,39.7876284],[-91.3617524,39.78805],[-91.3619625,39.7888886],[-91.3619931,39.7891629],[-91.3624558,39.7903482],[-91.3631628,39.7918374],[-91.364927,39.7953998],[-91.3670152,39.7987568],[-91.3676649,39.799768],[-91.3686726,39.8011199],[-91.369899,39.8023469],[-91.3699804,39.8024477],[-91.3710458,39.803811100000004],[-91.3715932,39.804471899999996],[-91.3723689,39.8056412],[-91.3735408,39.8071657],[-91.3743201,39.8079995],[-91.3751463,39.8090423],[-91.3756891,39.809398099999996],[-91.3759745,39.8096282],[-91.3771094,39.8104383],[-91.3785074,39.811176599999996],[-91.3791979,39.8115659],[-91.3800848,39.812068],[-91.3813693,39.8128453],[-91.383904,39.8146517],[-91.3841965,39.8148762],[-91.3843972,39.8150855],[-91.3847673,39.8152052],[-91.3850314,39.8153749],[-91.3872075,39.8166183],[-91.3881492,39.8171581],[-91.3894557,39.8178797],[-91.3910245,39.8187062],[-91.39235120000001,39.8193779],[-91.3933721,39.8198639],[-91.3936995,39.820056],[-91.3954397,39.8207265],[-91.395667,39.8208581],[-91.396138,39.8209996],[-91.3964875,39.821081],[-91.3968076,39.8212677],[-91.3976164,39.8215211],[-91.3985337,39.8218113],[-91.4002447,39.8225264],[-91.4015004,39.8232819],[-91.4043052,39.8248516],[-91.4051912,39.8255026],[-91.4054414,39.8257497],[-91.4059062,39.826121799999996],[-91.4059638,39.8261982],[-91.4065211,39.8266806],[-91.4067583,39.8269114],[-91.4070639,39.8270859],[-91.4073145,39.8272834],[-91.4078289,39.8275677],[-91.4082642,39.827840800000004],[-91.4096773,39.8286503],[-91.411368,39.8293986],[-91.413087,39.8301299],[-91.414778,39.8308837],[-91.4152999,39.8311789],[-91.4164123,39.831725399999996],[-91.4166394,39.8318473],[-91.4180532,39.8326097],[-91.4186956,39.8329222],[-91.4191811,39.8331945],[-91.4201372,39.8335876],[-91.421055,39.8340226],[-91.4215067,39.8342375],[-91.4231049,39.8349305],[-91.4248325,39.835772],[-91.4256467,39.8361438],[-91.42670820000001,39.8365902],[-91.4283784,39.8373607],[-91.4295066,39.8380821],[-91.4301215,39.8384986],[-91.4307006,39.8389142],[-91.431202,39.8393698],[-91.4319894,39.8403287],[-91.4323905,39.840652],[-91.4335219,39.842329899999996],[-91.43386,39.842708099999996],[-91.4341052,39.8431582],[-91.4343852,39.843570400000004],[-91.4347594,39.8442172],[-91.4350032,39.8445514],[-91.4354134,39.8453314],[-91.43552,39.845495299999996],[-91.4358955,39.846385],[-91.4361841,39.8469117],[-91.4362704,39.8471201],[-91.4363507,39.8474997],[-91.4366247,39.8480805],[-91.4368804,39.8490398],[-91.4372342,39.8503715],[-91.437315,39.850766300000004],[-91.437365,39.8508276],[-91.437879,39.8522492],[-91.43873310000001,39.8548965],[-91.43910460000001,39.8561534],[-91.4405642,39.8600964],[-91.4411334,39.8613749],[-91.4412785,39.8616334],[-91.4414866,39.86216],[-91.4417828,39.8627031],[-91.442235,39.8636357],[-91.4424878,39.8641629],[-91.44266,39.8644265],[-91.443028,39.8652335],[-91.4438056,39.8666603],[-91.4443008,39.867461],[-91.4451078,39.8688488],[-91.4452442,39.8691171],[-91.4454667,39.8694529],[-91.4455884,39.8697049],[-91.4457682,39.8699242],[-91.4465892,39.871554599999996],[-91.4467544,39.8718279],[-91.4469073,39.872427200000004],[-91.4471157,39.8728379],[-91.4471478,39.8732183],[-91.4473807,39.8741849],[-91.4473876,39.874304800000004],[-91.4473541,39.8745801],[-91.44742719999999,39.8748273],[-91.4474423,39.8750479],[-91.4476157,39.8766435],[-91.4476322,39.8776881],[-91.4476318,39.8777364],[-91.4476864,39.87822],[-91.4476107,39.879362799999996],[-91.4474192,39.8807863],[-91.4471585,39.8819777],[-91.4466735,39.8836697],[-91.4463265,39.884724500000004],[-91.4458052,39.8867235],[-91.443956,39.8924644],[-91.4439427,39.8925019],[-91.4436978,39.893105],[-91.4433247,39.8937364],[-91.442837,39.8943076],[-91.441457,39.895721699999996],[-91.438401,39.8987382],[-91.4346111,39.9020593],[-91.4322607,39.904363000000004],[-91.4308838,39.905712],[-91.4299387,39.9065998],[-91.4297313,39.9068792],[-91.4278286,39.9085957],[-91.4256314,39.9104908],[-91.4233065,39.9124419],[-91.4214026,39.9143225],[-91.4206512,39.9152222],[-91.4201991,39.915991500000004],[-91.4198101,39.9168412],[-91.4193089,39.9185665],[-91.4192119,39.9196709],[-91.4191627,39.9212107],[-91.4191108,39.9227809],[-91.4194077,39.9247817],[-91.4196113,39.9268433],[-91.4202903,39.929637],[-91.4208599,39.9311833],[-91.4211069,39.9316886],[-91.4217283,39.932773],[-91.4223031,39.933593200000004],[-91.4239625,39.9353882],[-91.4244896,39.936037999999996],[-91.4262234,39.9380539],[-91.4269113,39.938808699999996],[-91.4275781,39.9394535],[-91.4282378,39.940032099999996],[-91.4291247,39.9407201],[-91.4304404,39.94168],[-91.4315054,39.9423858],[-91.4337008,39.9438972],[-91.4357204,39.9452099],[-91.4365149,39.9458594],[-91.4393829,39.9483989],[-91.4412982,39.9506629],[-91.4423747,39.9520337],[-91.4435169,39.953574599999996],[-91.4449899,39.9554634],[-91.4459673,39.9569435],[-91.446697,39.9583518],[-91.4475026,39.959968599999996],[-91.4476649,39.9603869],[-91.4493865,39.9641722],[-91.4497699,39.964926399999996],[-91.4501233,39.9655086],[-91.4503239,39.965883500000004],[-91.4508252,39.9664894],[-91.451306,39.967133000000004],[-91.4528955,39.9690653],[-91.4533489,39.969565700000004],[-91.4539451,39.9702267],[-91.45469,39.9712068],[-91.4551439,39.9719777],[-91.4560971,39.973985400000004],[-91.456423,39.9745404],[-91.4565506,39.9748709],[-91.4581908,39.9780225],[-91.4587154,39.978882],[-91.4598379,39.980076600000004],[-91.4605598,39.9806085],[-91.460591,39.9806328],[-91.4614381,39.9809638],[-91.4623788,39.9813015],[-91.4630684,39.981643399999996],[-91.4638226,39.9821126],[-91.4642982,39.9825643],[-91.4647745,39.983103],[-91.4651001,39.9836428],[-91.4654471,39.984307799999996],[-91.4663862,39.9864371],[-91.4666882,39.987476900000004],[-91.4670948,39.9894288],[-91.4673318,39.9908355],[-91.4676491,39.9917812],[-91.4680437,39.9927932],[-91.4686523,39.9941413],[-91.4690555,39.9949489],[-91.469382,39.9955149],[-91.4697006,39.9959954],[-91.4700681,39.9966173],[-91.4720612,39.9993294],[-91.4725223,40.0000229],[-91.4732627,40.0011382],[-91.4745447,40.0035087],[-91.4745438,40.0035729],[-91.4761476,40.0073218],[-91.4763794,40.0078383],[-91.4766532,40.0083154],[-91.47684100000001,40.0085455],[-91.4770488,40.0088485],[-91.4777181,40.0096033],[-91.4777385,40.009627800000004],[-91.4845116,40.0201435],[-91.4856264,40.0214057],[-91.4869279,40.0227268],[-91.4881521,40.0246468],[-91.49456,40.035815400000004],[-91.4946989,40.0361554],[-91.4948225,40.0365839],[-91.4948662,40.03692],[-91.4948399,40.0372558],[-91.4943592,40.0390347],[-91.4904669,40.0534272],[-91.4895211,40.057298],[-91.4895235,40.0574457],[-91.4896906,40.0580129],[-91.4900733,40.058836],[-91.4915504,40.0607462],[-91.4923103,40.0624504],[-91.49285,40.0643018],[-91.4939785,40.0677734],[-91.4952704,40.071490600000004],[-91.4988321,40.0825646],[-91.5000971,40.088145499999996],[-91.5001116,40.0905951],[-91.5002648,40.0916774],[-91.5005355,40.093599499999996],[-91.5008101,40.0955299],[-91.5013212,40.0973073],[-91.5013781,40.0974747],[-91.5063409,40.1121228],[-91.5064438,40.1128278],[-91.506728,40.113706300000004],[-91.5070153,40.1149463],[-91.5072627,40.1160463],[-91.5074716,40.1171855],[-91.507971,40.1190458],[-91.5085754,40.120805000000004],[-91.5092001,40.122519600000004],[-91.5097677,40.1238763],[-91.5100177,40.1248134],[-91.5100566,40.1259141],[-91.5100829,40.126951500000004],[-91.5100116,40.1274717],[-91.5098836,40.1283958],[-91.5099844,40.1298958],[-91.5100329,40.1314546],[-91.5100375,40.1326111],[-91.5101374,40.133708],[-91.5102881,40.1344452],[-91.510461,40.1353256],[-91.5107461,40.1362344],[-91.5108809,40.1370437],[-91.5109595,40.1376469],[-91.5110551,40.1380952],[-91.5112837,40.1387869],[-91.5112297,40.1397843],[-91.5110138,40.1407789],[-91.5108829,40.1417887],[-91.5108665,40.1419049],[-91.5108889,40.1425587],[-91.5110607,40.1432762],[-91.5108616,40.1438565],[-91.5110324,40.1446652],[-91.5111846,40.1457032],[-91.5111967,40.1459956],[-91.51122960000001,40.146886699999996],[-91.5111959,40.1478396],[-91.5111666,40.148693],[-91.5110562,40.1493574],[-91.5106111,40.150137799999996],[-91.5099291,40.1520595],[-91.5089115,40.1544452],[-91.5081164,40.1560652],[-91.5079229,40.1563431],[-91.5076327,40.156757999999996],[-91.5073376,40.1573813],[-91.5069838,40.1580884],[-91.5064688,40.1589418],[-91.5064921,40.1601283],[-91.5068146,40.1612077],[-91.5078452,40.1620128],[-91.5089545,40.1628055],[-91.5099891,40.1636243],[-91.5107424,40.1645445],[-91.510889,40.1649491],[-91.5110437,40.165384],[-91.51138159999999,40.1662478],[-91.5116136,40.1673038],[-91.5117498,40.1686568],[-91.5122428,40.1700286],[-91.5124946,40.171023500000004],[-91.51240250000001,40.1715716],[-91.5123667,40.1724528],[-91.5122429,40.1735231],[-91.5123584,40.1745314],[-91.5127222,40.175541],[-91.5131212,40.1768978],[-91.5135183,40.1779372],[-91.5134718,40.179194],[-91.5128781,40.1808133],[-91.512412,40.1816217],[-91.5119492,40.182546],[-91.5117322,40.1832563],[-91.5115845,40.1841228],[-91.5115718,40.184929],[-91.5114437,40.1854777],[-91.5114055,40.1860277],[-91.5114131,40.1870378],[-91.5113613,40.1878613],[-91.5113485,40.1885405],[-91.511048,40.1891032],[-91.5107987,40.1893793],[-91.5087185,40.1921942],[-91.5057814,40.195192],[-91.505031,40.196134900000004],[-91.5045235,40.1969467],[-91.504311,40.1975672],[-91.5042857,40.198128],[-91.50435039999999,40.1985009],[-91.5053429,40.200279699999996]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"CHAMPAIGN","CO_FIPS":19},"geometry":{"type":"Polygon","coordinates":[[[-88.4600264,40.3984906],[-88.4414422,40.3985886],[-88.4228569,40.398403],[-88.4222181,40.3983966],[-88.4035989,40.398190400000004],[-88.403122,40.3981018],[-88.3846342,40.3983713],[-88.36592,40.398455],[-88.3468682,40.398324099999996],[-88.3289197,40.398479699999996],[-88.3283352,40.3984657],[-88.3092264,40.3984993],[-88.3087599,40.398445],[-88.2906957,40.3989083],[-88.2902807,40.3989068],[-88.2713934,40.399052499999996],[-88.2526154,40.3993398],[-88.2336451,40.3994622],[-88.213386,40.3995786],[-88.1941339,40.3996999],[-88.1748492,40.3998149],[-88.1558282,40.4001036],[-88.1366177,40.4002851],[-88.117445,40.4005549],[-88.0979505,40.4004839],[-88.07879439999999,40.4002841],[-88.0593745,40.4004422],[-88.0402756,40.4004356],[-88.0215148,40.4004853],[-88.0022675,40.4006611],[-87.9903462,40.3990891],[-87.9712791,40.3989586],[-87.9694536,40.399078700000004],[-87.9512347,40.3990332],[-87.9324,40.3993245],[-87.9318601,40.3993339],[-87.93171770000001,40.3993265],[-87.9321329,40.3853223],[-87.9317746,40.3708137],[-87.9313789,40.3564467],[-87.9308664,40.3419924],[-87.9305743,40.3276831],[-87.93022500000001,40.3132017],[-87.9301742,40.298833200000004],[-87.9299311,40.2843655],[-87.9295833,40.269592700000004],[-87.9293449,40.2549233],[-87.9291296,40.2500188],[-87.928891,40.2402399],[-87.9288884,40.2401943],[-87.9286678,40.2255512],[-87.9286957,40.2255101],[-87.9420059,40.2253421],[-87.9418751,40.2142881],[-87.9417033,40.1998372],[-87.941704,40.1998041],[-87.9413793,40.1853567],[-87.9412468,40.170925499999996],[-87.9412476,40.170891],[-87.9410811,40.1563736],[-87.9409128,40.141939],[-87.9410102,40.141845],[-87.940602,40.1418466],[-87.9403232,40.1418498],[-87.9401819,40.1272663],[-87.9401596,40.1250442],[-87.9399939,40.1125966],[-87.9397565,40.0981359],[-87.9396319,40.0836144],[-87.9395049,40.0691218],[-87.9394243,40.0547263],[-87.9395506,40.0546217],[-87.9392613,40.0546262],[-87.9391033,40.0546269],[-87.938999,40.0398473],[-87.9389997,40.0398183],[-87.9389626,40.0253308],[-87.9389048,40.0108028],[-87.93857919999999,39.9963788],[-87.9386093,39.981700000000004],[-87.9384164,39.967205899999996],[-87.9382777,39.9523783],[-87.9381585,39.9379595],[-87.9379081,39.9233208],[-87.9377517,39.9088129],[-87.937725,39.894436400000004],[-87.9376075,39.879953799999996],[-87.9565087,39.8798879],[-87.9754088,39.879705799999996],[-87.9944201,39.8793426],[-88.0092536,39.8794895],[-88.0280326,39.8796064],[-88.0472592,39.8795658],[-88.0661696,39.8799074],[-88.0848544,39.8800776],[-88.1036348,39.8801273],[-88.1227859,39.8800845],[-88.1417882,39.8799568],[-88.1604931,39.8800104],[-88.179514,39.879829900000004],[-88.1983678,39.8795783],[-88.2171663,39.8792043],[-88.236538,39.879013],[-88.25479,39.8791214],[-88.2550318,39.8791198],[-88.2736824,39.8790738],[-88.2925204,39.8792683],[-88.3112999,39.8791114],[-88.3116902,39.879126400000004],[-88.33000559999999,39.8790806],[-88.3305849,39.8790891],[-88.3491072,39.879368],[-88.3680151,39.879231000000004],[-88.3683358,39.8792271],[-88.38705590000001,39.8790645],[-88.4060261,39.8792836],[-88.4249908,39.8791683],[-88.443998,39.8790751],[-88.462017,39.8791718],[-88.46197480000001,39.8936347],[-88.4622543,39.9083902],[-88.4620865,39.9228546],[-88.462381,39.9375797],[-88.4626251,39.9525637],[-88.4626409,39.967230900000004],[-88.4624712,39.981578999999996],[-88.4624761,39.9818537],[-88.4626916,39.9962341],[-88.4626955,40.000088500000004],[-88.4627942,40.0000894],[-88.462847,40.0107975],[-88.4628469,40.0110431],[-88.462915,40.0254359],[-88.4629147,40.0255739],[-88.4629153,40.0256553],[-88.4629523,40.0400932],[-88.4629537,40.0402354],[-88.4629542,40.0403278],[-88.4629133,40.0550451],[-88.4629871,40.069546700000004],[-88.4630073,40.0840214],[-88.4630257,40.098500200000004],[-88.463025,40.0985457],[-88.4630276,40.0986148],[-88.4631928,40.1131334],[-88.463192,40.1131899],[-88.4633511,40.1249733],[-88.4633319,40.127475000000004],[-88.46333010000001,40.127595],[-88.4632058,40.1421274],[-88.4633625,40.1566208],[-88.4633631,40.1567036],[-88.4632809,40.1710582],[-88.4632798,40.1711299],[-88.4632819,40.1712334],[-88.4633799,40.185561899999996],[-88.4633806,40.1857606],[-88.4633826,40.185869600000004],[-88.4634389,40.2000996],[-88.4634382,40.200270700000004],[-88.4634411,40.2004405],[-88.4635591,40.2145218],[-88.4635602,40.2148075],[-88.4635614,40.215093100000004],[-88.4635597,40.2233117],[-88.4617865,40.223314099999996],[-88.4607604,40.2233175],[-88.4607256,40.2379494],[-88.4607243,40.238159100000004],[-88.4606971,40.2501153],[-88.4606835,40.2523506],[-88.4604079,40.266942900000004],[-88.4604064,40.2670436],[-88.4604077,40.2673168],[-88.4604634,40.281789],[-88.4603346,40.2963134],[-88.46027839999999,40.3110397],[-88.4602812,40.3257981],[-88.4605463,40.3401337],[-88.46027,40.354746],[-88.4603429,40.3693998],[-88.4600822,40.3839236],[-88.4600264,40.3984906]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"LOGAN","CO_FIPS":107},"geometry":{"type":"Polygon","coordinates":[[[-89.6029871,40.3201027],[-89.6029891,40.3202075],[-89.602991,40.3202669],[-89.5843622,40.3204775],[-89.5651998,40.320691],[-89.5463545,40.3208986],[-89.5462968,40.3208986],[-89.5273234,40.321225999999996],[-89.527273,40.3212371],[-89.5083481,40.3216511],[-89.5001086,40.3218349],[-89.4894283,40.3220413],[-89.4894283,40.3220868],[-89.4894319,40.3221709],[-89.4727128,40.3224275],[-89.4536447,40.322718],[-89.4346953,40.3231697],[-89.41550960000001,40.3234968],[-89.3965328,40.3238913],[-89.3773128,40.3240756],[-89.37509,40.3241381],[-89.3587381,40.324202400000004],[-89.3398444,40.3242748],[-89.3206707,40.3245755],[-89.3016931,40.3249384],[-89.2825032,40.3250825],[-89.2637009,40.325220200000004],[-89.2634029,40.310625200000004],[-89.2628943,40.296014299999996],[-89.2628909,40.295953600000004],[-89.2628895,40.2958129],[-89.2625824,40.281334799999996],[-89.2625776,40.2811541],[-89.2625745,40.2810106],[-89.2500696,40.2811586],[-89.2435766,40.2812412],[-89.2246362,40.2814841],[-89.2055824,40.2816712],[-89.1868316,40.2817547],[-89.1678425,40.2819339],[-89.1487979,40.2823741],[-89.148795,40.2822279],[-89.1487939,40.2820954],[-89.1484972,40.2677645],[-89.1484926,40.2676224],[-89.14849,40.2674126],[-89.1482187,40.253081699999996],[-89.1482075,40.2524608],[-89.1481604,40.2500322],[-89.1479164,40.238453899999996],[-89.1479148,40.2384221],[-89.1477093,40.2238842],[-89.1475158,40.2101947],[-89.1475088,40.2097959],[-89.1474969,40.2093005],[-89.1471429,40.195351099999996],[-89.1471337,40.1950447],[-89.1471287,40.1945976],[-89.1469221,40.1806927],[-89.1469166,40.1803739],[-89.1469091,40.180069],[-89.1465498,40.1661482],[-89.1465349,40.1655466],[-89.1461646,40.1513318],[-89.146157,40.1510627],[-89.1461543,40.1508972],[-89.1458992,40.136336299999996],[-89.1456995,40.1250389],[-89.1456876,40.1224433],[-89.1456895,40.1224157],[-89.1456948,40.1217189],[-89.1454351,40.107751199999996],[-89.1454238,40.1071619],[-89.1454161,40.0941815],[-89.1453958,40.0928788],[-89.1453891,40.0924165],[-89.1451762,40.0784832],[-89.1451691,40.0780996],[-89.1448896,40.0638541],[-89.1449075,40.0634996],[-89.1449077,40.0634692],[-89.1446517,40.0488429],[-89.14458020000001,40.0346931],[-89.1445799,40.0343964],[-89.1445784,40.034338399999996],[-89.1443401,40.0201438],[-89.1443565,40.0197548],[-89.1441671,40.005505],[-89.1441689,40.0051407],[-89.144185,39.9908329],[-89.1441668,39.9903409],[-89.1439476,39.9762371],[-89.14394419999999,39.9758466],[-89.1437971,39.961321999999996],[-89.1439133,39.9468548],[-89.1435263,39.9326481],[-89.1435426,39.932259],[-89.1434927,39.9180367],[-89.1434848,39.9174819],[-89.1624178,39.9172869],[-89.1807334,39.9172748],[-89.199247,39.9170699],[-89.2179711,39.9170503],[-89.2363769,39.9168559],[-89.254921,39.9170923],[-89.2734554,39.9171464],[-89.2921372,39.9170378],[-89.3109901,39.9172412],[-89.3297467,39.9173282],[-89.3484454,39.9176717],[-89.3670729,39.9178934],[-89.385937,39.9180737],[-89.40493359999999,39.9184664],[-89.4051476,39.9328681],[-89.4239121,39.9329236],[-89.4428198,39.9332522],[-89.4617672,39.9333763],[-89.4832494,39.9331942],[-89.4836266,39.947764],[-89.483839,39.9621377],[-89.483994,39.976566500000004],[-89.502885,39.9766259],[-89.5216822,39.9765218],[-89.5402857,39.9763651],[-89.5592658,39.9763185],[-89.5782671,39.9760452],[-89.5785854,39.990669600000004],[-89.578652,40.004971],[-89.5789412,40.0195259],[-89.5793563,40.0340945],[-89.5795598,40.0487927],[-89.5790606,40.0487945],[-89.5790589,40.048863499999996],[-89.5789207,40.0488649],[-89.5786279,40.0631026],[-89.5787306,40.077671],[-89.5788873,40.0923249],[-89.6007476,40.091723200000004],[-89.601024,40.1063464],[-89.601028,40.1066238],[-89.6013152,40.1211793],[-89.6015925,40.1239774],[-89.6016031,40.1250867],[-89.6016858,40.125088],[-89.6019494,40.1357248],[-89.6022097,40.1501684],[-89.6022171,40.1502705],[-89.6025622,40.1647967],[-89.6025622,40.1648298],[-89.6025661,40.1649954],[-89.6028714,40.1792621],[-89.603233,40.1938308],[-89.6034595,40.2081761],[-89.6034615,40.2083113],[-89.6035899,40.2183572],[-89.6021518,40.2183695],[-89.6009333,40.2183871],[-89.6009712,40.2184188],[-89.6014622,40.2330023],[-89.6015842,40.2474577],[-89.601597,40.2500419],[-89.6018645,40.2619378],[-89.6021685,40.2765447],[-89.6024274,40.2910163],[-89.6024294,40.2911446],[-89.6027279,40.3055416],[-89.6029871,40.3201027]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"PIATT","CO_FIPS":147},"geometry":{"type":"Polygon","coordinates":[[[-88.57475170000001,40.2815686],[-88.5557954,40.281267400000004],[-88.53699280000001,40.2813341],[-88.5179468,40.2812717],[-88.49881189999999,40.2811337],[-88.4795827,40.2812817],[-88.4604634,40.281789],[-88.4604077,40.2673168],[-88.4604064,40.2670436],[-88.4604079,40.266942900000004],[-88.4606835,40.2523506],[-88.4606971,40.2501153],[-88.4607243,40.238159100000004],[-88.4607256,40.2379494],[-88.4607604,40.2233175],[-88.4617865,40.223314099999996],[-88.4635597,40.2233117],[-88.4635614,40.215093100000004],[-88.4635602,40.2148075],[-88.4635591,40.2145218],[-88.4634411,40.2004405],[-88.4634382,40.200270700000004],[-88.4634389,40.2000996],[-88.4633826,40.185869600000004],[-88.4633806,40.1857606],[-88.4633799,40.185561899999996],[-88.4632819,40.1712334],[-88.4632798,40.1711299],[-88.4632809,40.1710582],[-88.4633631,40.1567036],[-88.4633625,40.1566208],[-88.4632058,40.1421274],[-88.46333010000001,40.127595],[-88.4633319,40.127475000000004],[-88.4633511,40.1249733],[-88.463192,40.1131899],[-88.4631928,40.1131334],[-88.4630276,40.0986148],[-88.463025,40.0985457],[-88.4630257,40.098500200000004],[-88.4630073,40.0840214],[-88.4629871,40.069546700000004],[-88.4629133,40.0550451],[-88.4629542,40.0403278],[-88.4629537,40.0402354],[-88.4629523,40.0400932],[-88.4629153,40.0256553],[-88.4629147,40.0255739],[-88.462915,40.0254359],[-88.4628469,40.0110431],[-88.462847,40.0107975],[-88.4627942,40.0000894],[-88.4626955,40.000088500000004],[-88.4626916,39.9962341],[-88.4624761,39.9818537],[-88.4624712,39.981578999999996],[-88.4626409,39.967230900000004],[-88.4626251,39.9525637],[-88.462381,39.9375797],[-88.4620865,39.9228546],[-88.4622543,39.9083902],[-88.46197480000001,39.8936347],[-88.462017,39.8791718],[-88.4620373,39.8645043],[-88.46209640000001,39.8498647],[-88.4619271,39.8354272],[-88.4619139,39.8210793],[-88.4618794,39.8064828],[-88.4618224,39.7919578],[-88.4619691,39.7919563],[-88.4727165,39.791861499999996],[-88.4772104,39.7918219],[-88.4810443,39.7918262],[-88.484413,39.7918291],[-88.4918095,39.7919189],[-88.4999913,39.7920177],[-88.510888,39.7920553],[-88.5188132,39.792082300000004],[-88.5296846,39.792263500000004],[-88.5377939,39.7921728],[-88.5483081,39.7920568],[-88.5567186,39.792177],[-88.5670668,39.7921546],[-88.5674211,39.7921547],[-88.5748798,39.792277],[-88.5944192,39.792338],[-88.6064305,39.7923663],[-88.6133456,39.7924766],[-88.6254299,39.7923987],[-88.632066,39.7925003],[-88.6439819,39.7924386],[-88.6512188,39.792571],[-88.6635772,39.7923007],[-88.6697867,39.7924745],[-88.6824813,39.7922128],[-88.6888958,39.7922959],[-88.7013171,39.792452600000004],[-88.7079912,39.792367999999996],[-88.71093809999999,39.7923313],[-88.7201082,39.7922171],[-88.7267272,39.7922526],[-88.7397575,39.7920201],[-88.7455011,39.7920253],[-88.7455881,39.8068137],[-88.7455147,39.821618900000004],[-88.7455674,39.8363502],[-88.7458405,39.8509063],[-88.7457022,39.8654237],[-88.7454545,39.880110200000004],[-88.7454518,39.880197100000004],[-88.7450829,39.8801864],[-88.7450572,39.8947127],[-88.7451671,39.9094551],[-88.74497099999999,39.9239883],[-88.7452644,39.9386737],[-88.7451251,39.953418299999996],[-88.7448753,39.967770200000004],[-88.7451564,39.9822786],[-88.7453936,39.9968776],[-88.7453669,40.0114735],[-88.7452521,40.0262521],[-88.7450916,40.0407627],[-88.7451686,40.0550566],[-88.7452481,40.069625099999996],[-88.7452857,40.0842525],[-88.7453204,40.0988095],[-88.7262174,40.0988418],[-88.7261743,40.098840100000004],[-88.7070156,40.0987103],[-88.6880569,40.0985401],[-88.6880305,40.112844100000004],[-88.6880299,40.1130483],[-88.6880305,40.1131518],[-88.6879966,40.1250146],[-88.6879364,40.1274083],[-88.6879276,40.1277022],[-88.6879296,40.1278375],[-88.6879828,40.142255],[-88.6763185,40.1566106],[-88.6682001,40.1665979],[-88.6645636,40.1710707],[-88.6528495,40.185471899999996],[-88.6492018,40.1899565],[-88.6410848,40.199930800000004],[-88.6301013,40.2134201],[-88.6293884,40.2142952],[-88.6251199,40.2195347],[-88.6218287,40.2235933],[-88.6128454,40.2346686],[-88.610043,40.2381206],[-88.5980786,40.2524383],[-88.5939337,40.2581909],[-88.5866457,40.267054099999996],[-88.57475170000001,40.2815686]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"STARK","CO_FIPS":175},"geometry":{"type":"Polygon","coordinates":[[[-89.8576905,41.2344875],[-89.8488843,41.23441],[-89.8472988,41.2344035],[-89.8379334,41.2342827],[-89.8299081,41.234407],[-89.8298003,41.2344017],[-89.8187937,41.234439699999996],[-89.8103615,41.2342728],[-89.7993747,41.234242699999996],[-89.7912244,41.2342034],[-89.7800477,41.234188599999996],[-89.7723322,41.2341374],[-89.7609266,41.2339834],[-89.7535671,41.2338833],[-89.7415863,41.2342251],[-89.7351718,41.2337745],[-89.7224307,41.233980700000004],[-89.7159119,41.233974599999996],[-89.7031171,41.2339651],[-89.6965668,41.2338216],[-89.6834363,41.233954],[-89.6773122,41.2340169],[-89.6643782,41.2338381],[-89.65769829999999,41.2336802],[-89.644756,41.2338398],[-89.6385383,41.2337534],[-89.638597,41.2212058],[-89.6386404,41.2065099],[-89.6391301,41.1922862],[-89.6391352,41.1920904],[-89.639131,41.191816],[-89.6391308,41.1917305],[-89.63885930000001,41.1775061],[-89.6390162,41.1630853],[-89.6390231,41.1484466],[-89.6390485,41.133951100000004],[-89.639273,41.119644199999996],[-89.6392779,41.1193284],[-89.6395093,41.1048751],[-89.6395271,41.1046751],[-89.6393284,41.0902952],[-89.6396563,41.075829],[-89.6393973,41.0613027],[-89.6396298,41.046621200000004],[-89.6395782,41.0319371],[-89.6396219,41.0175423],[-89.6397198,41.002973499999996],[-89.6384016,40.9883483],[-89.6384381,40.9738538],[-89.6383723,40.973721499999996],[-89.6575773,40.974006700000004],[-89.67708,40.9739409],[-89.6963975,40.9740157],[-89.6967614,40.9740151],[-89.7158817,40.9738609],[-89.7163693,40.9738634],[-89.734768,40.9739578],[-89.7351301,40.9739598],[-89.7351774,40.9739598],[-89.7355413,40.973960399999996],[-89.7546877,40.9739999],[-89.7737513,40.974231],[-89.7739369,40.974232],[-89.7927162,40.9743255],[-89.7933204,40.9743282],[-89.8118564,40.974527],[-89.8130865,40.9745362],[-89.8240159,40.9746285],[-89.8310656,40.9746879],[-89.8317052,40.9746978],[-89.850261,40.9749809],[-89.8695278,40.9749811],[-89.8885466,40.974876800000004],[-89.9080609,40.974869999999996],[-89.927443,40.9746729],[-89.9467858,40.974618899999996],[-89.9471824,40.9746009],[-89.9661473,40.974617],[-89.9858582,40.9746367],[-89.9859238,40.974637799999996],[-89.9860661,40.9891484],[-89.9859153,40.9894497],[-89.9863023,41.0035454],[-89.98628360000001,41.0039924],[-89.986423,41.018069600000004],[-89.9863623,41.0182409],[-89.9860524,41.032637],[-89.9860536,41.032808],[-89.9860519,41.0330825],[-89.9860161,41.0472325],[-89.9860151,41.0474828],[-89.9857971,41.0620313],[-89.9859359,41.076541],[-89.9859398,41.0770871],[-89.9855739,41.091093900000004],[-89.9855664,41.0913256],[-89.9854224,41.1055299],[-89.9853632,41.1059356],[-89.9853134,41.1200704],[-89.985296,41.1207048],[-89.9852498,41.1348395],[-89.9852451,41.1354559],[-89.9852872,41.1494342],[-89.9852766,41.149488],[-89.9654604,41.1494188],[-89.9457587,41.1495431],[-89.9260448,41.1494877],[-89.9065715,41.1493759],[-89.8882527,41.1495302],[-89.8687583,41.1495695],[-89.8686489,41.1495712],[-89.8686276,41.163977],[-89.8685122,41.1785276],[-89.8684005,41.1931085],[-89.8682474,41.2074576],[-89.8677963,41.222110799999996],[-89.8677182,41.2344546],[-89.8576905,41.2344875]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"KNOX","CO_FIPS":95},"geometry":{"type":"Polygon","coordinates":[[[-89.9852872,41.1494342],[-89.9852451,41.1354559],[-89.9852498,41.1348395],[-89.985296,41.1207048],[-89.9853134,41.1200704],[-89.9853632,41.1059356],[-89.9854224,41.1055299],[-89.9855664,41.0913256],[-89.9855739,41.091093900000004],[-89.9859398,41.0770871],[-89.9859359,41.076541],[-89.9857971,41.0620313],[-89.9860151,41.0474828],[-89.9860161,41.0472325],[-89.9860519,41.0330825],[-89.9860536,41.032808],[-89.9860524,41.032637],[-89.9863623,41.0182409],[-89.986423,41.018069600000004],[-89.98628360000001,41.0039924],[-89.9863023,41.0035454],[-89.9859153,40.9894497],[-89.9860661,40.9891484],[-89.9859238,40.974637799999996],[-89.985982,40.9612102],[-89.9859389,40.960777300000004],[-89.9858524,40.9459104],[-89.9854069,40.9311991],[-89.9852091,40.9165198],[-89.9851806,40.9021238],[-89.9852846,40.8874402],[-89.985448,40.8729328],[-89.9853411,40.8582359],[-89.9852558,40.8435112],[-89.9848538,40.8291877],[-89.984903,40.8144622],[-89.9851341,40.7997937],[-89.9852021,40.7851671],[-89.98543839999999,40.7707438],[-89.9857307,40.7560443],[-89.9858203,40.7414283],[-89.98581970000001,40.741341399999996],[-89.985821,40.7412641],[-89.9858474,40.7272097],[-89.9858478,40.7270014],[-89.9860549,40.712341800000004],[-89.9860545,40.7122825],[-89.986056,40.712238400000004],[-90.0000169,40.7123422],[-90.0052146,40.7124003],[-90.0242887,40.7126534],[-90.024372,40.7126531],[-90.0434074,40.712804],[-90.0623407,40.7128723],[-90.0628157,40.7128728],[-90.0816258,40.7129415],[-90.0816982,40.712931499999996],[-90.0818378,40.7129322],[-90.10073560000001,40.713065],[-90.1195754,40.7131951],[-90.1197929,40.7131967],[-90.1250667,40.7132327],[-90.1387014,40.7132958],[-90.1573042,40.7134502],[-90.1575326,40.7134531],[-90.1577574,40.713453200000004],[-90.1765909,40.7134668],[-90.1768556,40.713468],[-90.1771565,40.7134691],[-90.1957139,40.713597],[-90.1960511,40.7136006],[-90.196285,40.7136006],[-90.2152167,40.7136323],[-90.2341067,40.7136627],[-90.2343605,40.7136639],[-90.2500237,40.713688],[-90.2530676,40.713700599999996],[-90.2534682,40.7137022],[-90.2717713,40.7137771],[-90.2720197,40.7137783],[-90.2725346,40.7137805],[-90.2907564,40.7138765],[-90.2911045,40.7138797],[-90.2915867,40.713880599999996],[-90.3095237,40.713943900000004],[-90.3100384,40.7139349],[-90.3105859,40.713934699999996],[-90.3106385,40.713935],[-90.328042,40.7139619],[-90.3280819,40.7139623],[-90.3288125,40.7139634],[-90.3295992,40.7139552],[-90.3474856,40.7140283],[-90.3480058,40.714024699999996],[-90.3487421,40.7140429],[-90.357218,40.714109300000004],[-90.3661894,40.7142239],[-90.3670525,40.7142356],[-90.3681203,40.7142361],[-90.3751162,40.714242999999996],[-90.3855246,40.7143056],[-90.3860178,40.714317199999996],[-90.3869081,40.7143257],[-90.404985,40.7145268],[-90.4053875,40.714532],[-90.4057918,40.7145344],[-90.424749,40.7146734],[-90.424945,40.7146843],[-90.4251901,40.7147127],[-90.4442727,40.71486],[-90.444063,40.7293651],[-90.4437655,40.7440941],[-90.4437598,40.744337],[-90.4435119,40.7589868],[-90.4431953,40.7737985],[-90.4429971,40.788512499999996],[-90.4426565,40.802386],[-90.4424942,40.8169532],[-90.4424934,40.8170236],[-90.4421767,40.831596],[-90.4422043,40.8458566],[-90.4422029,40.8458856],[-90.4422031,40.846164200000004],[-90.4422038,40.8607103],[-90.4418598,40.8749018],[-90.441853,40.8751984],[-90.4412664,40.8894703],[-90.4411195,40.904268200000004],[-90.441051,40.9186901],[-90.441021,40.9332716],[-90.4409335,40.9481651],[-90.4409211,40.9629751],[-90.4407288,40.976865000000004],[-90.4405294,40.9915741],[-90.4404013,41.0053832],[-90.4403929,41.0199718],[-90.4402348,41.0345311],[-90.4399,41.048962],[-90.4399225,41.0492763],[-90.4398952,41.0638204],[-90.43976430000001,41.0639759],[-90.4394292,41.0782658],[-90.4394052,41.0929972],[-90.4394076,41.0935019],[-90.4389405,41.107629700000004],[-90.4386132,41.1223907],[-90.4381197,41.1367404],[-90.438117,41.1368108],[-90.4380254,41.1370515],[-90.4380221,41.137210100000004],[-90.4376144,41.1513121],[-90.4200222,41.1513681],[-90.419515,41.1513706],[-90.418933,41.1513681],[-90.4183381,41.1513603],[-90.4008283,41.1512956],[-90.4005108,41.1512952],[-90.3996022,41.1512924],[-90.3990148,41.1512899],[-90.3815474,41.1512593],[-90.3812518,41.15126],[-90.380336,41.1512585],[-90.3795077,41.1512604],[-90.3750837,41.1512734],[-90.3702432,41.1512479],[-90.3617774,41.1512054],[-90.3612683,41.1512036],[-90.3607502,41.1512045],[-90.3424305,41.1512805],[-90.3421988,41.1512821],[-90.3418594,41.1512804],[-90.32333009999999,41.1512267],[-90.32317689999999,41.1512264],[-90.3066658,41.151361800000004],[-90.2870862,41.1515122],[-90.2674718,41.1516501],[-90.2483643,41.1519374],[-90.2286644,41.1519454],[-90.2092508,41.1521221],[-90.192897,41.1517762],[-90.1737446,41.1514245],[-90.1734408,41.1514193],[-90.1547061,41.1511187],[-90.1542754,41.1511059],[-90.1353079,41.1505746],[-90.1349667,41.1505654],[-90.1158926,41.150113],[-90.0969877,41.1495686],[-90.0808038,41.149755400000004],[-90.0618816,41.1497212],[-90.0615195,41.1497208],[-90.0427079,41.1497127],[-90.0240678,41.1493541],[-90.0042186,41.1492515],[-89.9852872,41.1494342]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"MARSHALL","CO_FIPS":123},"geometry":{"type":"Polygon","coordinates":[[[-89.6390231,41.1484466],[-89.6219522,41.1486444],[-89.6213055,41.148643],[-89.606871,41.1486146],[-89.6029617,41.1486221],[-89.60222830000001,41.1486241],[-89.5826944,41.1487136],[-89.56330990000001,41.1487695],[-89.5440457,41.1486815],[-89.5249094,41.148778],[-89.5052987,41.148871400000004],[-89.486323,41.148537],[-89.4859782,41.1485356],[-89.4857027,41.148536899999996],[-89.4666925,41.1485303],[-89.46650819999999,41.148530199999996],[-89.4663213,41.1485281],[-89.4662656,41.1485274],[-89.4478009,41.1483359],[-89.447365,41.1483316],[-89.4471114,41.1483218],[-89.4281415,41.1481643],[-89.4280247,41.1481642],[-89.4279864,41.1481573],[-89.4083907,41.1481866],[-89.408345,41.148187899999996],[-89.3889647,41.1480804],[-89.3750424,41.1480212],[-89.3744222,41.148032900000004],[-89.3701807,41.1481139],[-89.3695915,41.1481257],[-89.3509904,41.1479026],[-89.3503538,41.1478949],[-89.3312565,41.1477123],[-89.3295856,41.1476948],[-89.3289344,41.1476883],[-89.3302654,41.1450082],[-89.3313235,41.1426999],[-89.3326665,41.1395275],[-89.3329242,41.1385529],[-89.3329726,41.1381462],[-89.333126,41.133550400000004],[-89.3331301,41.1333752],[-89.3331347,41.1329891],[-89.3331847,41.1281629],[-89.3333874,41.125030100000004],[-89.3334053,41.124401399999996],[-89.3335833,41.1232033],[-89.3343063,41.1205567],[-89.3347116,41.119603],[-89.3352575,41.1185502],[-89.3353473,41.1183779],[-89.3356166,41.1178571],[-89.3361037,41.1169862],[-89.3369065,41.1159862],[-89.3376909,41.1150757],[-89.338146,41.1145882],[-89.3385683,41.1141365],[-89.3387255,41.1139657],[-89.3399717,41.1128201],[-89.3410456,41.112001],[-89.3414509,41.1117961],[-89.3428018,41.1110518],[-89.3439077,41.1106051],[-89.3474829,41.1098582],[-89.3490171,41.1094216],[-89.3501829,41.1090521],[-89.350475,41.1089132],[-89.3524418,41.1082248],[-89.3535421,41.107818],[-89.3548141,41.1071728],[-89.3556066,41.106607],[-89.3563864,41.1059763],[-89.3572137,41.1052575],[-89.3579355,41.1044255],[-89.3585715,41.103688500000004],[-89.3584749,41.1036552],[-89.3553393,41.1036625],[-89.3381188,41.1037066],[-89.3362191,41.103710899999996],[-89.3190606,41.1037524],[-89.3182037,41.1037552],[-89.3169258,41.103756000000004],[-89.2991255,41.1037743],[-89.2978822,41.103775],[-89.2795022,41.1037991],[-89.2792634,41.1038],[-89.2790228,41.103800899999996],[-89.2789662,41.1038008],[-89.2732418,41.1038177],[-89.2608249,41.103857],[-89.2597238,41.1038603],[-89.25907839999999,41.103861800000004],[-89.2401629,41.1037532],[-89.2207981,41.103844699999996],[-89.2013091,41.1039797],[-89.1818125,41.1041529],[-89.1621599,41.1041446],[-89.1620961,41.104144399999996],[-89.1436183,41.1043515],[-89.1428265,41.1044484],[-89.1244641,41.1045329],[-89.1237485,41.104529299999996],[-89.10992,41.1044588],[-89.1052586,41.1044201],[-89.1048229,41.1044173],[-89.0861762,41.104467400000004],[-89.0854796,41.104489900000004],[-89.0667995,41.1046224],[-89.0658732,41.1046438],[-89.0480754,41.1047766],[-89.0479372,41.086413],[-89.0477894,41.071745],[-89.047642,41.0570161],[-89.047562,41.0425797],[-89.0474468,41.0279664],[-89.0478089,41.0133024],[-89.0469704,40.9990668],[-89.0469806,40.998615799999996],[-89.0472694,40.9839888],[-89.0472244,40.9697589],[-89.0473041,40.9692544],[-89.0474489,40.9549258],[-89.0476313,40.9403958],[-89.0476477,40.9256636],[-89.0670113,40.9259781],[-89.0862992,40.9262064],[-89.1053062,40.9265906],[-89.1243683,40.9269252],[-89.1246304,40.9268819],[-89.1436568,40.9271277],[-89.1604229,40.9270083],[-89.1797288,40.926612],[-89.1986636,40.9261731],[-89.1989655,40.9261739],[-89.2179943,40.9258107],[-89.2183544,40.9258047],[-89.2372273,40.925254699999996],[-89.2565557,40.9248999],[-89.2566757,40.9249043],[-89.2567175,40.924903],[-89.2758423,40.9244288],[-89.2758805,40.9244288],[-89.2949524,40.9239253],[-89.2953124,40.9239149],[-89.31411130000001,40.9234161],[-89.3142549,40.9234135],[-89.3143713,40.9234109],[-89.3331566,40.9231394],[-89.3333239,40.9231438],[-89.3335693,40.9231428],[-89.3520257,40.9226913],[-89.3522676,40.9226806],[-89.3524458,40.9226767],[-89.3711636,40.9223274],[-89.3715863,40.9223189],[-89.3751366,40.922246200000004],[-89.390272,40.9220184],[-89.4091457,40.921724],[-89.4091821,40.921733700000004],[-89.4092767,40.921722700000004],[-89.4279846,40.9215535],[-89.4470634,40.9213788],[-89.4471579,40.9213844],[-89.4662566,40.9211749],[-89.4729604,40.9211298],[-89.4725912,40.9213614],[-89.4717801,40.9218025],[-89.4712163,40.9221389],[-89.4701088,40.9226958],[-89.4692976,40.9231535],[-89.4687265,40.9235064],[-89.46827,40.9237545],[-89.4675679,40.9242287],[-89.4671405,40.9244824],[-89.4668586,40.9246533],[-89.4664457,40.9248573],[-89.4662439,40.9249676],[-89.465309,40.9254859],[-89.4646288,40.925767],[-89.464476,40.925866299999996],[-89.4641867,40.926131],[-89.4636971,40.9270218],[-89.463597,40.9272921],[-89.4634023,40.9275113],[-89.4630693,40.9278477],[-89.4628674,40.9280021],[-89.4623235,40.9283219],[-89.4620707,40.9285259],[-89.4614064,40.9294498],[-89.4610152,40.9299448],[-89.4607932,40.930226],[-89.4595447,40.931922],[-89.4593645,40.9322515],[-89.4592043,40.9324611],[-89.458924,40.9329065],[-89.4581435,40.9335351],[-89.4578451,40.9337446],[-89.4576214,40.933887999999996],[-89.4566444,40.9344338],[-89.456015,40.9348197],[-89.4553709,40.9353477],[-89.4551251,40.935771],[-89.4548301,40.9363322],[-89.4546571,40.9367403],[-89.4542471,40.9378338],[-89.4539973,40.9388681],[-89.454066,40.9395053],[-89.4540803,40.939868000000004],[-89.4541475,40.9400336],[-89.4542581,40.9404998],[-89.4546595,40.941356400000004],[-89.4547993,40.9417302],[-89.4550642,40.9426805],[-89.455249,40.9437687],[-89.4553452,40.9440763],[-89.4553686,40.9443715],[-89.4553903,40.9446528],[-89.4553628,40.944998999999996],[-89.4552552,40.9453575],[-89.4551201,40.9461049],[-89.4549689,40.9464786],[-89.4548613,40.9468854],[-89.454661,40.9473253],[-89.4544224,40.9477169],[-89.4537157,40.949202],[-89.453204,40.950076100000004],[-89.4530273,40.9504388],[-89.4529817,40.9505325],[-89.4526558,40.9510716],[-89.452288,40.9516066],[-89.4519711,40.9521071],[-89.4517471,40.9525139],[-89.4512281,40.9533122],[-89.45046310000001,40.9546537],[-89.4502318,40.9550177],[-89.4492373,40.9568212],[-89.4489567,40.9574265],[-89.4488126,40.957833300000004],[-89.4486555,40.9587573],[-89.4486099,40.9589765],[-89.4483342,40.96027],[-89.4482007,40.9611223],[-89.4480726,40.9622048],[-89.448054,40.9626834],[-89.4480919,40.9631013],[-89.4481734,40.9635454],[-89.448393,40.9643316],[-89.4484455,40.9646171],[-89.4486089,40.9650668],[-89.4488777,40.9658144],[-89.4490611,40.9662378],[-89.44920809999999,40.966704],[-89.449291,40.9678143],[-89.4491372,40.9691616],[-89.4489857,40.9697766],[-89.4489162,40.9702165],[-89.44867909999999,40.9710315],[-89.4485204,40.9714824],[-89.4479154,40.9727744],[-89.4477841,40.9731343],[-89.4664694,40.9731452],[-89.4858079,40.9731506],[-89.5001517,40.973152999999996],[-89.5001517,40.9732509],[-89.5042149,40.973205300000004],[-89.5045952,40.973208],[-89.504799,40.973210800000004],[-89.505323,40.9732149],[-89.5242998,40.973396],[-89.543009,40.973236299999996],[-89.5433748,40.9732417],[-89.5621171,40.97353],[-89.5625301,40.9735367],[-89.5731221,40.9735321],[-89.5815161,40.9735722],[-89.5819473,40.9735305],[-89.60077509999999,40.9736776],[-89.6009061,40.9736788],[-89.6138982,40.973658900000004],[-89.6195645,40.9736521],[-89.6198848,40.9736517],[-89.6384381,40.9738538],[-89.6384016,40.9883483],[-89.6397198,41.002973499999996],[-89.6396219,41.0175423],[-89.6395782,41.0319371],[-89.6396298,41.046621200000004],[-89.6393973,41.0613027],[-89.6396563,41.075829],[-89.6393284,41.0902952],[-89.6395271,41.1046751],[-89.6395093,41.1048751],[-89.6392779,41.1193284],[-89.639273,41.119644199999996],[-89.6390485,41.133951100000004],[-89.6390231,41.1484466]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"LIVINGSTON","CO_FIPS":105},"geometry":{"type":"Polygon","coordinates":[[[-88.2517351,41.1142159],[-88.2511044,41.0965099],[-88.2503854,41.0818782],[-88.2500523,41.0817533],[-88.2498224,41.0671017],[-88.2491809,41.0524429],[-88.2488792,41.0377488],[-88.2482916,41.0231591],[-88.2476204,41.008775299999996],[-88.2475684,40.9946048],[-88.2469637,40.980009100000004],[-88.2462106,40.9655854],[-88.2458096,40.950826],[-88.2453482,40.9363968],[-88.244763,40.921784099999996],[-88.24456430000001,40.9073243],[-88.2438885,40.8927213],[-88.2435988,40.8780836],[-88.2427957,40.863313500000004],[-88.2423749,40.849115499999996],[-88.241986,40.8344681],[-88.2414554,40.8203321],[-88.2414453,40.820092],[-88.2406664,40.8057491],[-88.2406714,40.8054732],[-88.2405496,40.7910433],[-88.2401193,40.7766128],[-88.2393676,40.7621152],[-88.2394428,40.7474455],[-88.2394333,40.7471708],[-88.238895,40.7329371],[-88.2385525,40.7185176],[-88.2380594,40.7040109],[-88.2379434,40.6895136],[-88.2375809,40.675016299999996],[-88.2365625,40.6750248],[-88.2365251,40.660602499999996],[-88.2360979,40.6468023],[-88.2360926,40.6464973],[-88.2358069,40.632288700000004],[-88.2353698,40.6179556],[-88.2533873,40.6181646],[-88.2723709,40.617790400000004],[-88.291407,40.6177144],[-88.3107636,40.6175227],[-88.3296497,40.6173122],[-88.3471441,40.6173832],[-88.3471438,40.6169666],[-88.3662563,40.6172822],[-88.3857057,40.6173662],[-88.4044226,40.6172885],[-88.4234593,40.617368],[-88.4427604,40.617441299999996],[-88.4596835,40.6174522],[-88.4787401,40.6171616],[-88.4978904,40.6171392],[-88.5159721,40.617019400000004],[-88.5161024,40.6170191],[-88.5164628,40.6170138],[-88.5351799,40.6167557],[-88.5353103,40.616754],[-88.5356724,40.616749999999996],[-88.5546708,40.6165656],[-88.5743883,40.616607200000004],[-88.574499,40.6310655],[-88.5747954,40.6454617],[-88.5748009,40.6457956],[-88.5751946,40.670596599999996],[-88.5822865,40.670541],[-88.5826813,40.6850258],[-88.5831306,40.6995109],[-88.5834741,40.7140668],[-88.5836775,40.7285221],[-88.5840146,40.743033499999996],[-88.5839931,40.757244],[-88.6034886,40.7573533],[-88.6039615,40.7573927],[-88.6225087,40.7571827],[-88.62322520000001,40.757190800000004],[-88.6416045,40.7570511],[-88.642661,40.7569842],[-88.6608539,40.7567989],[-88.6616639,40.7567218],[-88.6797958,40.756464199999996],[-88.6807754,40.7564571],[-88.6997422,40.7564615],[-88.71931119999999,40.756141299999996],[-88.7381206,40.7559262],[-88.7572925,40.7557269],[-88.7578736,40.7556671],[-88.776507,40.7554296],[-88.77686800000001,40.7554249],[-88.7957331,40.755041],[-88.814664,40.7549442],[-88.8338612,40.7546859],[-88.8529198,40.754501],[-88.8720552,40.7542196],[-88.8911067,40.7539762],[-88.8914659,40.7539725],[-88.9103914,40.7535902],[-88.9107506,40.7535837],[-88.9294284,40.753296399999996],[-88.9297393,40.767979600000004],[-88.9299941,40.7824334],[-88.9302492,40.7968568],[-88.9302962,40.811439],[-88.9306481,40.8260528],[-88.9308638,40.8404452],[-88.9311036,40.8550168],[-88.9311914,40.8695269],[-88.9315373,40.8840353],[-88.9314177,40.8985744],[-88.9314496,40.9132603],[-88.931495,40.9276399],[-88.9312719,40.9422649],[-88.9312658,40.942669],[-88.9313226,40.9519041],[-88.9312938,40.9569489],[-88.9313526,40.9573215],[-88.9310604,40.9715887],[-88.9310246,40.9719637],[-88.9309774,40.986085700000004],[-88.9308493,40.9866036],[-88.9314692,41.0006184],[-88.9314098,41.0011973],[-88.9312087,41.0154207],[-88.931528,41.0301263],[-88.9314503,41.0307161],[-88.9313298,41.0446527],[-88.9313244,41.0450857],[-88.93128899999999,41.0590804],[-88.9312874,41.0594997],[-88.931234,41.0736817],[-88.9312319,41.0741589],[-88.9311823,41.0881077],[-88.9311805,41.0885421],[-88.931135,41.1059563],[-88.9100073,41.106069500000004],[-88.8931463,41.1061151],[-88.8904668,41.1060547],[-88.8741713,41.1060564],[-88.8709264,41.1060201],[-88.855104,41.106121],[-88.8520461,41.1059722],[-88.8358069,41.1061869],[-88.8318411,41.1062284],[-88.8167746,41.1063891],[-88.8131105,41.1063378],[-88.7983115,41.1065385],[-88.7948725,41.1065852],[-88.7945114,41.1065886],[-88.7791983,41.106779],[-88.77618,41.1066837],[-88.7592995,41.1067283],[-88.756901,41.1067342],[-88.75654,41.1067375],[-88.7393087,41.1069192],[-88.7370009,41.1068797],[-88.7202589,41.1070011],[-88.7177991,41.1068637],[-88.7010126,41.1070345],[-88.6983905,41.107061099999996],[-88.6818851,41.106965],[-88.6806285,41.1073825],[-88.6627853,41.107469],[-88.6613296,41.107530600000004],[-88.6434744,41.1077024],[-88.641943,41.1076887],[-88.6243671,41.107959],[-88.6228147,41.107875899999996],[-88.6051666,41.1080849],[-88.6035218,41.108100300000004],[-88.5859445,41.1081774],[-88.5842397,41.1081775],[-88.5785292,41.1081772],[-88.5656077,41.108178],[-88.5467826,41.108294799999996],[-88.5276779,41.1083182],[-88.5085529,41.108228],[-88.4896551,41.1088152],[-88.4703832,41.1090487],[-88.4593727,41.1091386],[-88.4517594,41.1093289],[-88.4403737,41.1096262],[-88.4325177,41.1099345],[-88.420842,41.1101115],[-88.4155352,41.110283],[-88.4134409,41.110351],[-88.4014828,41.1107373],[-88.3942513,41.1109647],[-88.3821247,41.1110428],[-88.3750811,41.111371399999996],[-88.3633138,41.111544699999996],[-88.3560996,41.111812799999996],[-88.3481268,41.1118717],[-88.3370039,41.1123107],[-88.3287289,41.1123296],[-88.3179049,41.1127641],[-88.3094086,41.1129257],[-88.2986421,41.1131854],[-88.2898763,41.113318],[-88.2792027,41.1136789],[-88.2705709,41.1138529],[-88.2600879,41.1141493],[-88.2517351,41.1142159]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"HENDERSON","CO_FIPS":71},"geometry":{"type":"Polygon","coordinates":[[[-90.7852626,41.0692142],[-90.7859686,41.0539561],[-90.7862867,41.0397942],[-90.7865403,41.0253019],[-90.7868996,41.0106317],[-90.7863916,40.9961196],[-90.7864736,40.981029899999996],[-90.7865312,40.9667762],[-90.786626,40.9524764],[-90.7866263,40.9521992],[-90.78660550000001,40.938034200000004],[-90.7868907,40.9233197],[-90.7873242,40.9089537],[-90.787418,40.8945112],[-90.7878002,40.8799413],[-90.7880079,40.864995199999996],[-90.78834810000001,40.8505248],[-90.7884088,40.835880700000004],[-90.7880356,40.8212466],[-90.7881617,40.8068911],[-90.7881654,40.7923051],[-90.7884134,40.7775894],[-90.7885264,40.7630267],[-90.7886718,40.74836],[-90.7887695,40.7338675],[-90.78891899999999,40.7192322],[-90.7888219,40.719180800000004],[-90.7893025,40.7191853],[-90.7894263,40.7083368],[-90.7894269,40.708272],[-90.789511,40.693641299999996],[-90.789511,40.6792651],[-90.7895096,40.6790885],[-90.7895095,40.678989200000004],[-90.7894081,40.6645175],[-90.7894063,40.6643202],[-90.7894082,40.664231900000004],[-90.7895085,40.6498889],[-90.789511,40.649586],[-90.7895113,40.6495508],[-90.7896057,40.6356754],[-90.7896638,40.6356817],[-90.80855,40.636274900000004],[-90.82756499999999,40.636953399999996],[-90.8469794,40.6373774],[-90.8659974,40.6378042],[-90.8661767,40.637802199999996],[-90.8663561,40.6378084],[-90.87508940000001,40.6381192],[-90.8847384,40.638394],[-90.8851298,40.638406],[-90.8856472,40.6384262],[-90.9041084,40.6391775],[-90.9042009,40.639182],[-90.9137574,40.6377516],[-90.9232915,40.6376301],[-90.9237804,40.6376242],[-90.9291214,40.6375576],[-90.9298461,40.6374827],[-90.9343651,40.6374258],[-90.9425975,40.6375804],[-90.9432437,40.6375685],[-90.9619068,40.6372613],[-90.9627102,40.6372308],[-90.9628224,40.6372239],[-90.9724394,40.63666],[-90.9814303,40.6364632],[-90.9818412,40.636451199999996],[-91.0010394,40.6354505],[-91.0012365,40.6354404],[-91.0220205,40.6345093],[-91.0222014,40.6345015],[-91.0407726,40.6349018],[-91.041059,40.6349119],[-91.0412294,40.6349194],[-91.0414177,40.6349169],[-91.0600638,40.635254],[-91.0604498,40.6352683],[-91.0605786,40.6352749],[-91.0792582,40.6356416],[-91.0801726,40.635715],[-91.0988526,40.6360842],[-91.0996723,40.636128400000004],[-91.101062,40.6361567],[-91.1189525,40.6367513],[-91.1190504,40.6367555],[-91.1364787,40.637239199999996],[-91.1368538,40.6372506],[-91.1465357,40.6372485],[-91.15661539999999,40.6375228],[-91.1755914,40.6376496],[-91.18455230000001,40.6378587],[-91.1842005,40.638063700000004],[-91.1834995,40.6384296],[-91.1826545,40.6388361],[-91.1818816,40.6392277],[-91.1811952,40.6396017],[-91.1801352,40.6401022],[-91.1793989,40.6405099],[-91.178207,40.6411034],[-91.176925,40.641711900000004],[-91.1757841,40.6423157],[-91.1757161,40.6423525],[-91.1747188,40.6429046],[-91.1736362,40.6433751],[-91.1724316,40.6438914],[-91.1710385,40.6445593],[-91.1696933,40.645257],[-91.1686586,40.6457626],[-91.1674671,40.646378],[-91.1664682,40.6468693],[-91.16575,40.6472822],[-91.1648012,40.647748],[-91.1641826,40.6480877],[-91.1632996,40.6487264],[-91.162589,40.6491585],[-91.1617903,40.6495394],[-91.1609937,40.6500085],[-91.1600046,40.6504582],[-91.1588378,40.6510539],[-91.15798290000001,40.65151],[-91.1567868,40.6520923],[-91.1561954,40.6523585],[-91.1555214,40.652659],[-91.1547164,40.6530813],[-91.1538815,40.6534709],[-91.1525438,40.6540413],[-91.1516119,40.6544653],[-91.1504928,40.6549361],[-91.1492923,40.6554907],[-91.1479134,40.656012000000004],[-91.1470312,40.6563939],[-91.1461934,40.6568138],[-91.1456771,40.6570417],[-91.1450205,40.6573129],[-91.1441205,40.6577088],[-91.142949,40.6582685],[-91.1420961,40.658666600000004],[-91.1412827,40.6590475],[-91.1405379,40.659422],[-91.1396637,40.6598368],[-91.1388433,40.6602316],[-91.1377615,40.6607597],[-91.1370084,40.661090099999996],[-91.1364769,40.6614423],[-91.1359895,40.6613635],[-91.1358703,40.6618397],[-91.1355421,40.6620566],[-91.134924,40.6624266],[-91.1341411,40.6628788],[-91.1334592,40.6633103],[-91.1328637,40.6637158],[-91.1321824,40.6641721],[-91.1315503,40.6645643],[-91.1311118,40.664871],[-91.1304753,40.6652301],[-91.1301258,40.6654695],[-91.1298832,40.6656328],[-91.1295937,40.665802299999996],[-91.12931090000001,40.6659483],[-91.1263627,40.6671639],[-91.1250228,40.6678196],[-91.1243591,40.6683349],[-91.1232555,40.6693322],[-91.1216792,40.6709568],[-91.1212065,40.671583999999996],[-91.1207797,40.6724686],[-91.1196947,40.6753502],[-91.1192349,40.677688],[-91.1191197,40.6788829],[-91.118849,40.6799379],[-91.1183994,40.6812463],[-91.1182799,40.681717],[-91.1180252,40.6824489],[-91.117904,40.6833114],[-91.1177416,40.6841165],[-91.1175558,40.684692999999996],[-91.117355,40.6854076],[-91.117201,40.686105],[-91.1171244,40.686553],[-91.1168766,40.6874255],[-91.116754,40.6880728],[-91.1165681,40.688801],[-91.1163161,40.689497],[-91.1161271,40.69025],[-91.1158529,40.690769700000004],[-91.1156668,40.691340600000004],[-91.1154583,40.691878700000004],[-91.1153372,40.6922832],[-91.1146988,40.6930423],[-91.1142083,40.6937691],[-91.1137582,40.6943657],[-91.1137301,40.6944019],[-91.1133848,40.6948315],[-91.113001,40.6954713],[-91.112645,40.6960638],[-91.112194,40.6969335],[-91.1119584,40.6975548],[-91.1115641,40.6985231],[-91.1114114,40.6992839],[-91.1112708,40.700097],[-91.1111481,40.7008961],[-91.1110886,40.701766],[-91.1109885,40.7024489],[-91.1110109,40.703099699999996],[-91.1109928,40.7035663],[-91.1109736,40.704146],[-91.1110231,40.7050227],[-91.1109999,40.705894900000004],[-91.1109993,40.7066454],[-91.11104399999999,40.7073208],[-91.1111244,40.7081254],[-91.1111769,40.7086682],[-91.1112975,40.7090984],[-91.111347,40.7092757],[-91.1114193,40.7098873],[-91.1115457,40.7104871],[-91.1117471,40.7111962],[-91.1118937,40.7118868],[-91.1121103,40.7127751],[-91.1123409,40.713646600000004],[-91.1125511,40.7144191],[-91.1127583,40.7152192],[-91.1128955,40.7159678],[-91.1131688,40.7169574],[-91.1134496,40.717957999999996],[-91.1136369,40.7188356],[-91.1140336,40.7198263],[-91.1143558,40.7204262],[-91.114384,40.7205472],[-91.114625,40.7209275],[-91.1148985,40.7214563],[-91.1152085,40.7223102],[-91.1154006,40.7227711],[-91.1154678,40.723162],[-91.1155941,40.7237535],[-91.1157239,40.7244968],[-91.1157542,40.7251723],[-91.1157516,40.725371],[-91.1156891,40.7258023],[-91.1155677,40.7263502],[-91.1153709,40.7272386],[-91.11519559999999,40.7281184],[-91.1150003,40.7290729],[-91.1147398,40.7303429],[-91.1145637,40.731344],[-91.1142358,40.7323693],[-91.1140118,40.7331822],[-91.1139717,40.7333276],[-91.1136727,40.734347],[-91.1134916,40.7350571],[-91.1134533,40.7352025],[-91.1132519,40.7359005],[-91.1130922,40.7365152],[-91.1129034,40.7372848],[-91.1126189,40.7383067],[-91.1123055,40.739486299999996],[-91.1119614,40.7405974],[-91.1116529,40.7418376],[-91.1113147,40.7428906],[-91.1109321,40.7442174],[-91.1108184,40.7447873],[-91.11062390000001,40.7454687],[-91.1103693,40.7462171],[-91.1100728,40.7468805],[-91.1098442,40.7475016],[-91.1095902,40.7481258],[-91.1093455,40.7486782],[-91.1090933,40.7492196],[-91.1088862,40.7496749],[-91.1086511,40.7500146],[-91.1086011,40.7498167],[-91.1084078,40.7503187],[-91.1082979,40.7505823],[-91.1080778,40.750949399999996],[-91.1074949,40.7516222],[-91.1066964,40.752391700000004],[-91.10578100000001,40.7532786],[-91.104976,40.7540785],[-91.1039625,40.7552785],[-91.1030308,40.7564029],[-91.1023824,40.7572338],[-91.1016708,40.7581538],[-91.1011105,40.758867699999996],[-91.1006593,40.7595966],[-91.0997828,40.7609189],[-91.0991418,40.7617579],[-91.0984941,40.7627764],[-91.0979183,40.7636118],[-91.0976001,40.764367899999996],[-91.097533,40.7645247],[-91.0971039,40.7652726],[-91.0966227,40.7662723],[-91.0962601,40.7670717],[-91.0959832,40.767652],[-91.0957372,40.7684692],[-91.0954679,40.7693806],[-91.09502810000001,40.7702941],[-91.0948965,40.7706449],[-91.0946792,40.771214799999996],[-91.0943498,40.7720359],[-91.0940372,40.7729588],[-91.0937331,40.7740913],[-91.0933258,40.775001700000004],[-91.0929689,40.7757348],[-91.0926728,40.7765885],[-91.09240199999999,40.7772791],[-91.092148,40.778066100000004],[-91.0918956,40.7788488],[-91.0918566,40.778966600000004],[-91.09162,40.7800375],[-91.0915043,40.7808474],[-91.0914052,40.7817427],[-91.0913442,40.782877400000004],[-91.0912766,40.783722600000004],[-91.0912595,40.784716],[-91.0912125,40.7858258],[-91.0913,40.7866275],[-91.0913843,40.7874513],[-91.0914428,40.7880989],[-91.0915025,40.7888016],[-91.0916537,40.7896908],[-91.0918525,40.790598599999996],[-91.0921064,40.7915332],[-91.0925035,40.7930123],[-91.0927033,40.7934897],[-91.0927879,40.7936955],[-91.093027,40.794461999999996],[-91.0933831,40.7951029],[-91.0936971,40.7958105],[-91.09406,40.796431999999996],[-91.0945944,40.797407],[-91.0947087,40.7976386],[-91.0949564,40.7981499],[-91.0953381,40.7987959],[-91.0957635,40.7996096],[-91.096208,40.800304499999996],[-91.0964681,40.8010349],[-91.0968298,40.8017612],[-91.0971333,40.80264],[-91.0974522,40.8037117],[-91.0975437,40.8045244],[-91.0976753,40.8053503],[-91.0977396,40.806246099999996],[-91.0977658,40.8069052],[-91.0976821,40.807369800000004],[-91.0976778,40.8079658],[-91.0975474,40.8084531],[-91.0974662,40.808707999999996],[-91.0973801,40.809382299999996],[-91.0971189,40.8101776],[-91.0968994,40.8110469],[-91.09670009999999,40.8120069],[-91.0963734,40.812797599999996],[-91.0961968,40.8134841],[-91.0958482,40.8144241],[-91.095585,40.815291099999996],[-91.0951746,40.8162319],[-91.0946133,40.8172436],[-91.0944894,40.817620500000004],[-91.0942977,40.818202400000004],[-91.0939271,40.8189826],[-91.0936815,40.819670099999996],[-91.0932594,40.8204179],[-91.0929767,40.8210755],[-91.0924907,40.8217303],[-91.0921983,40.8224377],[-91.0917849,40.8228571],[-91.0916056,40.8230388],[-91.0911252,40.8236218],[-91.0903369,40.824402],[-91.0897063,40.824937399999996],[-91.0891937,40.825385600000004],[-91.0883602,40.8259402],[-91.087671,40.8264542],[-91.0869997,40.8267942],[-91.08572290000001,40.8274981],[-91.0849081,40.82808],[-91.0840989,40.8285873],[-91.083249,40.8292221],[-91.0825961,40.8295783],[-91.0818064,40.8301433],[-91.0810098,40.8307277],[-91.0803006,40.831162],[-91.0796694,40.8316752],[-91.0789962,40.8322579],[-91.0782712,40.8327972],[-91.0778089,40.833070899999996],[-91.0772167,40.8336995],[-91.0765855,40.8342154],[-91.0760334,40.8346917],[-91.0755793,40.8350867],[-91.07558,40.835117],[-91.074932,40.8357711],[-91.0742738,40.8362185],[-91.0738195,40.8366879],[-91.0734766,40.8369408],[-91.07338730000001,40.8370054],[-91.0729476,40.8373202],[-91.0724483,40.837724],[-91.0718918,40.8381727],[-91.0711416,40.8385688],[-91.070603,40.8393236],[-91.070051,40.8398081],[-91.0694195,40.8403157],[-91.0685813,40.840997099999996],[-91.0680405,40.8413353],[-91.0674271,40.8416799],[-91.066819,40.842099],[-91.0661888,40.8425017],[-91.0654756,40.8429304],[-91.0647292,40.843337500000004],[-91.0637853,40.8438492],[-91.0628893,40.8442278],[-91.0606676,40.845101],[-91.0597121,40.8455852],[-91.0591282,40.8459487],[-91.058608,40.8462397],[-91.0582622,40.8465311],[-91.0576987,40.8469992],[-91.0571497,40.8474643],[-91.0567882,40.8478663],[-91.0564251,40.8483593],[-91.0563251,40.8485137],[-91.0560424,40.8489492],[-91.0556638,40.8495583],[-91.0551865,40.8501438],[-91.0546832,40.8508677],[-91.05446620000001,40.8512305],[-91.0543891,40.8513571],[-91.0539912,40.8519195],[-91.0537919,40.852267],[-91.0535038,40.8527038],[-91.0531175,40.8532965],[-91.0527193,40.8538451],[-91.0524235,40.8542628],[-91.0520398,40.8549768],[-91.0514642,40.8557154],[-91.0510112,40.8564137],[-91.0505839,40.8571283],[-91.0503297,40.8577799],[-91.0500697,40.858335],[-91.0497137,40.858988],[-91.0494602,40.859672700000004],[-91.0490686,40.8603564],[-91.0487843,40.8611298],[-91.0484368,40.8618378],[-91.048103,40.862507],[-91.0475752,40.863438],[-91.047313,40.8640622],[-91.0470093,40.8646151],[-91.0468256,40.8650147],[-91.0465364,40.8654075],[-91.0465082,40.865446399999996],[-91.0463529,40.8656498],[-91.0460866,40.8659264],[-91.0458558,40.866492199999996],[-91.0455083,40.8668802],[-91.0451265,40.867356799999996],[-91.0447948,40.8677998],[-91.0444028,40.8683069],[-91.0438448,40.8688687],[-91.0431592,40.8697382],[-91.0427712,40.8701019],[-91.0424622,40.8704204],[-91.0422189,40.8707546],[-91.0418665,40.8710846],[-91.041461,40.8714789],[-91.0411302,40.8718031],[-91.0408062,40.8721053],[-91.0404179,40.872455099999996],[-91.0396624,40.8731269],[-91.038792,40.8736982],[-91.0380457,40.874132599999996],[-91.0374149,40.8745297],[-91.0369335,40.8747814],[-91.036682,40.874913],[-91.0362332,40.8753256],[-91.0358815,40.875526],[-91.0351882,40.8758936],[-91.0345902,40.8761302],[-91.0340972,40.8763517],[-91.0335642,40.8765765],[-91.0326879,40.8768857],[-91.0314251,40.8773046],[-91.03081,40.877596600000004],[-91.0301128,40.8779532],[-91.0295661,40.878214],[-91.0289812,40.8785525],[-91.0282176,40.878868499999996],[-91.02764,40.8792069],[-91.0270594,40.8795785],[-91.0265688,40.879913],[-91.0262443,40.8800316],[-91.0249265,40.8808443],[-91.0236048,40.882304],[-91.0228854,40.882978],[-91.0214391,40.8840668],[-91.0208502,40.8847226],[-91.0202474,40.8854958],[-91.0187576,40.887749299999996],[-91.0175713,40.8898824],[-91.0175716,40.8899341],[-91.0170054,40.8908021],[-91.014201,40.8954516],[-91.0138871,40.895972799999996],[-91.0137958,40.8961174],[-91.0128312,40.89764],[-91.0120022,40.8986298],[-91.0111167,40.899533500000004],[-91.008877,40.9016073],[-91.0077627,40.9025276],[-91.0050437,40.904392200000004],[-91.0027026,40.906252],[-91.0004222,40.9074765],[-90.9996718,40.9078363],[-90.9990007,40.9081592],[-90.9989339,40.9081821],[-90.9978353,40.9085779],[-90.9944103,40.9094317],[-90.9928674,40.9098855],[-90.9915915,40.9104062],[-90.9915177,40.9104416],[-90.9884281,40.9119325],[-90.9864399,40.9127365],[-90.9809814,40.9156883],[-90.9794057,40.9163147],[-90.977417,40.917104800000004],[-90.9728309,40.918622],[-90.970689,40.9193987],[-90.9689859,40.9201989],[-90.96784650000001,40.9209191],[-90.9671262,40.9216769],[-90.9664567,40.9221747],[-90.9659714,40.9224414],[-90.9655273,40.922935100000004],[-90.96417339999999,40.924690999999996],[-90.9641004,40.9250201],[-90.9633932,40.9261433],[-90.962593,40.9275103],[-90.9619952,40.9291673],[-90.9615323,40.930491599999996],[-90.9611232,40.93264],[-90.9603855,40.9350766],[-90.9598638,40.937063699999996],[-90.959696,40.939103],[-90.9596755,40.9393391],[-90.9595119,40.9396018],[-90.958511,40.941209799999996],[-90.9579511,40.9431145],[-90.9570493,40.9448552],[-90.9562618,40.9466689],[-90.9557055,40.948066],[-90.9548278,40.949229700000004],[-90.9539316,40.9503799],[-90.9533355,40.9516175],[-90.9530082,40.9528297],[-90.95275960000001,40.9537237],[-90.9526023,40.9542856],[-90.95221480000001,40.9555814],[-90.9522446,40.9568224],[-90.9523278,40.9578338],[-90.9525919,40.958280200000004],[-90.9526936,40.9596527],[-90.9529682,40.9612853],[-90.9530727,40.9627846],[-90.9534177,40.964648],[-90.9538785,40.9664796],[-90.954346,40.9678532],[-90.9545305,40.9684027],[-90.9551616,40.9700226],[-90.9562298,40.9716565],[-90.9570134,40.972915900000004],[-90.9577243,40.9740024],[-90.9582302,40.9752017],[-90.9588068,40.976648499999996],[-90.9589907,40.9774269],[-90.9589666,40.9781775],[-90.958845,40.978968],[-90.9586131,40.979878299999996],[-90.9583787,40.9808412],[-90.9579734,40.982153600000004],[-90.9578894,40.982316],[-90.9574769,40.9831196],[-90.9569758,40.9840388],[-90.9564979,40.9851922],[-90.9562058,40.9861833],[-90.9552162,40.9869015],[-90.9543213,40.987618499999996],[-90.9536202,40.9883801],[-90.9530662,40.9888668],[-90.9524747,40.9894725],[-90.952056,40.9898142],[-90.9516732,40.990478100000004],[-90.9512135,40.9911236],[-90.9507767,40.9918158],[-90.9505631,40.9925632],[-90.9501217,40.993385],[-90.9499093,40.9943641],[-90.9496548,40.9954182],[-90.9493416,40.9966274],[-90.9492994,40.9967838],[-90.94911139999999,40.9974495],[-90.9488574,40.9983546],[-90.9488326,40.9992514],[-90.9489057,40.9999594],[-90.9488835,41.0001142],[-90.9487078,41.0007618],[-90.948289,41.0012799],[-90.9478836,41.0024296],[-90.9473131,41.0033495],[-90.9469686,41.0044598],[-90.94652310000001,41.005610000000004],[-90.9461391,41.0067456],[-90.9458122,41.0079991],[-90.9455221,41.0089212],[-90.9452486,41.0099423],[-90.94515,41.011491],[-90.9451444,41.0115711],[-90.9448921,41.0125617],[-90.9448823,41.0136569],[-90.9447268,41.0145773],[-90.944681,41.0156895],[-90.9447711,41.0163394],[-90.945008,41.017735099999996],[-90.9451833,41.0191481],[-90.9453852,41.0202601],[-90.9454507,41.021470199999996],[-90.9455951,41.022798],[-90.945585,41.0243953],[-90.945554,41.0256949],[-90.9455245,41.0261104],[-90.9454746,41.026771600000004],[-90.9450848,41.0279818],[-90.9446622,41.0291923],[-90.94435490000001,41.0301697],[-90.9441951,41.0314074],[-90.9442251,41.032662099999996],[-90.9441631,41.0335262],[-90.9441934,41.0342762],[-90.9440597,41.0350225],[-90.9440518,41.0360322],[-90.9439691,41.0369545],[-90.94395779999999,41.0383228],[-90.94407939999999,41.0396068],[-90.94401189999999,41.0406434],[-90.943994,41.0409153],[-90.9441794,41.0419392],[-90.9442301,41.0427909],[-90.9442756,41.0440896],[-90.9442494,41.0452705],[-90.9444512,41.0460349],[-90.9443919,41.0468548],[-90.9444401,41.0477617],[-90.9444316,41.0487438],[-90.9444853,41.0493914],[-90.9445199,41.0499978],[-90.9447038,41.0507762],[-90.9448678,41.0516431],[-90.9451431,41.052605299999996],[-90.94536360000001,41.0533887],[-90.9454513,41.0542648],[-90.9457317,41.0552103],[-90.9458044,41.0554632],[-90.9459839,41.0567189],[-90.9461472,41.0575555],[-90.9461052,41.0585048],[-90.9461158,41.0596991],[-90.9461443,41.0605373],[-90.9461938,41.0616759],[-90.9462232,41.0627265],[-90.9462559,41.063936999999996],[-90.946566,41.0653372],[-90.9468588,41.066952900000004],[-90.9472645,41.0683933],[-90.9477851,41.0695787],[-90.9477995,41.0705232],[-90.9476701,41.070522],[-90.9400223,41.0704678],[-90.9396577,41.0704653],[-90.9207347,41.0701364],[-90.9203736,41.0701255],[-90.9009177,41.0695694],[-90.88387,41.0698554],[-90.8819809,41.0698882],[-90.8635143,41.0702181],[-90.862392,41.0702308],[-90.8433871,41.0707153],[-90.8430244,41.0707097],[-90.8428037,41.0706998],[-90.8246598,41.0704849],[-90.823835,41.070472699999996],[-90.8043458,41.070177799999996],[-90.7852626,41.0692142]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"WARREN","CO_FIPS":187},"geometry":{"type":"Polygon","coordinates":[[[-90.4398952,41.0638204],[-90.4399225,41.0492763],[-90.4399,41.048962],[-90.4402348,41.0345311],[-90.4403929,41.0199718],[-90.4404013,41.0053832],[-90.4405294,40.9915741],[-90.4407288,40.976865000000004],[-90.4409211,40.9629751],[-90.4409335,40.9481651],[-90.441021,40.9332716],[-90.441051,40.9186901],[-90.4411195,40.904268200000004],[-90.4412664,40.8894703],[-90.441853,40.8751984],[-90.4418598,40.8749018],[-90.4422038,40.8607103],[-90.4422031,40.846164200000004],[-90.4422029,40.8458856],[-90.4422043,40.8458566],[-90.4421767,40.831596],[-90.4424934,40.8170236],[-90.4424942,40.8169532],[-90.4426565,40.802386],[-90.4429971,40.788512499999996],[-90.4431953,40.7737985],[-90.4435119,40.7589868],[-90.4437598,40.744337],[-90.4437655,40.7440941],[-90.444063,40.7293651],[-90.4442727,40.71486],[-90.4442719,40.7148021],[-90.444398,40.700947299999996],[-90.4444005,40.700469999999996],[-90.4444047,40.700241],[-90.444624,40.6865839],[-90.4446311,40.686039],[-90.4446489,40.685754700000004],[-90.444822,40.6715033],[-90.4448235,40.671348800000004],[-90.4448122,40.6711847],[-90.4450387,40.6570046],[-90.4450557,40.6567865],[-90.4453461,40.642251099999996],[-90.4453488,40.642184900000004],[-90.4455619,40.6276983],[-90.4648711,40.628154800000004],[-90.4649272,40.628157099999996],[-90.4839569,40.6286666],[-90.4840347,40.6286674],[-90.500123,40.6290978],[-90.5033469,40.6291632],[-90.5223211,40.6295635],[-90.5225655,40.629558599999996],[-90.5227022,40.6295609],[-90.5414645,40.6300014],[-90.5417181,40.6300082],[-90.56,40.6304485],[-90.57855119999999,40.6307292],[-90.5790239,40.6307373],[-90.5792775,40.6307392],[-90.5975463,40.6308966],[-90.5978994,40.6309003],[-90.598231,40.6309138],[-90.6171029,40.6311813],[-90.6178962,40.6311932],[-90.625101,40.6312993],[-90.63627460000001,40.6313865],[-90.6368233,40.6313909],[-90.6373157,40.6313862],[-90.6555625,40.6314936],[-90.6559409,40.6314955],[-90.6730739,40.6315889],[-90.691926,40.6322435],[-90.6925493,40.6322663],[-90.6930004,40.6322797],[-90.7113099,40.6328415],[-90.7116161,40.6328522],[-90.7118661,40.6328593],[-90.731517,40.6334843],[-90.7317598,40.6334929],[-90.7320425,40.6335051],[-90.7501257,40.6343309],[-90.7506747,40.6343473],[-90.7700765,40.6349564],[-90.7702378,40.6349615],[-90.7706265,40.6349747],[-90.7896057,40.6356754],[-90.7895113,40.6495508],[-90.789511,40.649586],[-90.7895085,40.6498889],[-90.7894082,40.664231900000004],[-90.7894063,40.6643202],[-90.7894081,40.6645175],[-90.7895095,40.678989200000004],[-90.7895096,40.6790885],[-90.789511,40.6792651],[-90.789511,40.693641299999996],[-90.7894269,40.708272],[-90.7894263,40.7083368],[-90.7893025,40.7191853],[-90.7888219,40.719180800000004],[-90.78891899999999,40.7192322],[-90.7887695,40.7338675],[-90.7886718,40.74836],[-90.7885264,40.7630267],[-90.7884134,40.7775894],[-90.7881654,40.7923051],[-90.7881617,40.8068911],[-90.7880356,40.8212466],[-90.7884088,40.835880700000004],[-90.78834810000001,40.8505248],[-90.7880079,40.864995199999996],[-90.7878002,40.8799413],[-90.787418,40.8945112],[-90.7873242,40.9089537],[-90.7868907,40.9233197],[-90.78660550000001,40.938034200000004],[-90.7866263,40.9521992],[-90.786626,40.9524764],[-90.7865312,40.9667762],[-90.7864736,40.981029899999996],[-90.7863916,40.9961196],[-90.7868996,41.0106317],[-90.7865403,41.0253019],[-90.7862867,41.0397942],[-90.7859686,41.0539561],[-90.7852626,41.0692142],[-90.7645535,41.0689873],[-90.7451968,41.0685608],[-90.7261369,41.0684205],[-90.7072702,41.0681676],[-90.7065138,41.0681587],[-90.6931604,41.0682673],[-90.6872079,41.0683153],[-90.6869416,41.068301399999996],[-90.6680335,41.06828],[-90.648974,41.067697100000004],[-90.6478979,41.0676357],[-90.6293845,41.067221],[-90.6286877,41.0671752],[-90.6103458,41.0669739],[-90.6091791,41.0669433],[-90.5906659,41.0665089],[-90.5901463,41.0664915],[-90.5707035,41.0658942],[-90.5699322,41.0658611],[-90.550895,41.0650735],[-90.5351737,41.0645951],[-90.5342335,41.0645949],[-90.5162095,41.0643792],[-90.5150581,41.0643269],[-90.496649,41.0634841],[-90.4807981,41.0635815],[-90.4779794,41.063587999999996],[-90.4774091,41.0635898],[-90.4591543,41.0637805],[-90.4587571,41.0637816],[-90.4398952,41.0638204]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"IROQUOIS","CO_FIPS":75},"geometry":{"type":"Polygon","coordinates":[[[-87.5261546,41.0103398],[-87.5262746,40.99548],[-87.5260349,40.9812268],[-87.5260741,40.9667683],[-87.5258035,40.9522025],[-87.5259636,40.937588500000004],[-87.5261209,40.9230708],[-87.5259195,40.908632499999996],[-87.5258619,40.8941276],[-87.52585930000001,40.8794771],[-87.5259782,40.865154000000004],[-87.5256888,40.8506227],[-87.5255874,40.8360005],[-87.5255914,40.821631],[-87.5257501,40.806927200000004],[-87.525726,40.7922699],[-87.5257769,40.7776524],[-87.5258006,40.7631005],[-87.52596,40.748238900000004],[-87.5260016,40.7336246],[-87.5260513,40.7189786],[-87.5261958,40.7042498],[-87.5262868,40.6899961],[-87.5262879,40.6771163],[-87.526288,40.6640791],[-87.5262856,40.6508748],[-87.5263933,40.6362234],[-87.5258938,40.6219068],[-87.5259805,40.6074204],[-87.5260079,40.5928556],[-87.5260062,40.578165999999996],[-87.5261828,40.5640781],[-87.5263178,40.5494125],[-87.52623080000001,40.5347956],[-87.5263229,40.5202395],[-87.52623919999999,40.5056362],[-87.5263021,40.490899999999996],[-87.5372495,40.4907692],[-87.5564392,40.490281100000004],[-87.5754095,40.4898719],[-87.5948513,40.489392699999996],[-87.6141217,40.489091099999996],[-87.6143386,40.4890877],[-87.6143857,40.489085700000004],[-87.6332265,40.4887535],[-87.6332798,40.4887523],[-87.6526566,40.4882702],[-87.6716839,40.4881087],[-87.6903089,40.487847],[-87.6906704,40.4878415],[-87.7092711,40.4878138],[-87.7096676,40.4878529],[-87.7276047,40.4879034],[-87.7286456,40.4879078],[-87.746962,40.4880356],[-87.7473215,40.4880381],[-87.7634234,40.4880588],[-87.7821175,40.4877588],[-87.8012291,40.4875197],[-87.8192065,40.4873196],[-87.8195632,40.4872915],[-87.8201861,40.4872423],[-87.8390868,40.4871929],[-87.8577776,40.4866905],[-87.87844630000001,40.486444],[-87.8974963,40.486012],[-87.9162632,40.4859347],[-87.9166023,40.485964100000004],[-87.9350711,40.4859572],[-87.9541414,40.4857178],[-87.9722657,40.485593],[-87.993073,40.4855712],[-88.0025277,40.4887508],[-88.0219325,40.4886043],[-88.0409219,40.488267300000004],[-88.060122,40.4882141],[-88.0790163,40.4880879],[-88.0981001,40.4880575],[-88.1177699,40.4879095],[-88.1183893,40.5022687],[-88.1185002,40.5166659],[-88.1186118,40.5313942],[-88.1187028,40.5458904],[-88.1187572,40.5605901],[-88.1185673,40.575016500000004],[-88.1189424,40.5894245],[-88.1194862,40.6040936],[-88.1198804,40.6188327],[-88.1201586,40.632948],[-88.1201588,40.6330239],[-88.120187,40.6337899],[-88.1206671,40.6475046],[-88.1215306,40.6767259],[-88.1226065,40.6767466],[-88.1229761,40.6913163],[-88.1234584,40.7058816],[-88.1237495,40.7202184],[-88.12433060000001,40.7343928],[-88.1251273,40.7490441],[-88.1254196,40.7633554],[-88.1259978,40.7778989],[-88.1264733,40.7923251],[-88.1264823,40.7925997],[-88.1268823,40.8071808],[-88.1272505,40.8215448],[-88.1280958,40.8362149],[-88.1281012,40.8364894],[-88.1283782,40.8514411],[-88.1284816,40.8659864],[-88.1294794,40.8805253],[-88.1300155,40.8948077],[-88.1300184,40.8949346],[-88.1300256,40.8953981],[-88.1302175,40.9098116],[-88.1303019,40.9246044],[-88.1305805,40.9391509],[-88.1308796,40.9537665],[-88.1313306,40.9684361],[-88.1315147,40.9831715],[-88.1318923,40.9978868],[-88.1140477,40.9982694],[-88.0944134,40.998382899999996],[-88.07498029999999,40.9986143],[-88.0557489,40.999468300000004],[-88.0361714,40.9999592],[-88.016448,40.9997692],[-88.0020324,41.0002962],[-87.9830493,41.0005514],[-87.9639279,41.0009536],[-87.9444955,41.001894899999996],[-87.9251308,41.002400800000004],[-87.9058215,41.002852000000004],[-87.8860415,41.0034896],[-87.885996,41.003490299999996],[-87.8677281,41.0038376],[-87.8482545,41.004269],[-87.8286045,41.004601],[-87.8096832,41.0050559],[-87.790725,41.0052259],[-87.7714918,41.0053875],[-87.7714973,41.0056759],[-87.751557,41.005781400000004],[-87.7322369,41.0062734],[-87.7133503,41.0066033],[-87.6942397,41.006993],[-87.6748914,41.007412],[-87.6555793,41.007414499999996],[-87.6555209,41.007695],[-87.6383246,41.0079646],[-87.6188981,41.0084119],[-87.6188435,41.0084138],[-87.6186795,41.008415400000004],[-87.5997578,41.0086399],[-87.5806706,41.0091774],[-87.5614851,41.0096966],[-87.542307,41.0100748],[-87.5261546,41.0103398]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"PEORIA","CO_FIPS":143},"geometry":{"type":"Polygon","coordinates":[[[-89.9859238,40.974637799999996],[-89.9858582,40.9746367],[-89.9661473,40.974617],[-89.9471824,40.9746009],[-89.9467858,40.974618899999996],[-89.927443,40.9746729],[-89.9080609,40.974869999999996],[-89.8885466,40.974876800000004],[-89.8695278,40.9749811],[-89.850261,40.9749809],[-89.8317052,40.9746978],[-89.8310656,40.9746879],[-89.8240159,40.9746285],[-89.8130865,40.9745362],[-89.8118564,40.974527],[-89.7933204,40.9743282],[-89.7927162,40.9743255],[-89.7739369,40.974232],[-89.7737513,40.974231],[-89.7546877,40.9739999],[-89.7355413,40.973960399999996],[-89.7351774,40.9739598],[-89.7351301,40.9739598],[-89.734768,40.9739578],[-89.7163693,40.9738634],[-89.7158817,40.9738609],[-89.6967614,40.9740151],[-89.6963975,40.9740157],[-89.67708,40.9739409],[-89.6575773,40.974006700000004],[-89.6383723,40.973721499999996],[-89.6384381,40.9738538],[-89.6198848,40.9736517],[-89.6195645,40.9736521],[-89.6138982,40.973658900000004],[-89.6009061,40.9736788],[-89.60077509999999,40.9736776],[-89.5819473,40.9735305],[-89.5815161,40.9735722],[-89.5731221,40.9735321],[-89.5625301,40.9735367],[-89.5621171,40.97353],[-89.5433748,40.9732417],[-89.543009,40.973236299999996],[-89.5242998,40.973396],[-89.505323,40.9732149],[-89.504799,40.973210800000004],[-89.5045952,40.973208],[-89.5042149,40.973205300000004],[-89.5001517,40.9732509],[-89.5001517,40.973152999999996],[-89.4858079,40.9731506],[-89.4664694,40.9731452],[-89.4477841,40.9731343],[-89.4479154,40.9727744],[-89.4485204,40.9714824],[-89.44867909999999,40.9710315],[-89.4489162,40.9702165],[-89.4489857,40.9697766],[-89.4491372,40.9691616],[-89.449291,40.9678143],[-89.44920809999999,40.966704],[-89.4490611,40.9662378],[-89.4488777,40.9658144],[-89.4486089,40.9650668],[-89.4484455,40.9646171],[-89.448393,40.9643316],[-89.4481734,40.9635454],[-89.4480919,40.9631013],[-89.448054,40.9626834],[-89.4480726,40.9622048],[-89.4482007,40.9611223],[-89.4483342,40.96027],[-89.4486099,40.9589765],[-89.4486555,40.9587573],[-89.4488126,40.957833300000004],[-89.4489567,40.9574265],[-89.4492373,40.9568212],[-89.4502318,40.9550177],[-89.45046310000001,40.9546537],[-89.4512281,40.9533122],[-89.4517471,40.9525139],[-89.4519711,40.9521071],[-89.452288,40.9516066],[-89.4526558,40.9510716],[-89.4529817,40.9505325],[-89.4530273,40.9504388],[-89.453204,40.950076100000004],[-89.4537157,40.949202],[-89.4544224,40.9477169],[-89.454661,40.9473253],[-89.4548613,40.9468854],[-89.4549689,40.9464786],[-89.4551201,40.9461049],[-89.4552552,40.9453575],[-89.4553628,40.944998999999996],[-89.4553903,40.9446528],[-89.4553686,40.9443715],[-89.4553452,40.9440763],[-89.455249,40.9437687],[-89.4550642,40.9426805],[-89.4547993,40.9417302],[-89.4546595,40.941356400000004],[-89.4542581,40.9404998],[-89.4541475,40.9400336],[-89.4540803,40.939868000000004],[-89.454066,40.9395053],[-89.4539973,40.9388681],[-89.4542471,40.9378338],[-89.4546571,40.9367403],[-89.4548301,40.9363322],[-89.4551251,40.935771],[-89.4553709,40.9353477],[-89.456015,40.9348197],[-89.4566444,40.9344338],[-89.4576214,40.933887999999996],[-89.4578451,40.9337446],[-89.4581435,40.9335351],[-89.458924,40.9329065],[-89.4592043,40.9324611],[-89.4593645,40.9322515],[-89.4595447,40.931922],[-89.4607932,40.930226],[-89.4610152,40.9299448],[-89.4614064,40.9294498],[-89.4620707,40.9285259],[-89.4623235,40.9283219],[-89.4628674,40.9280021],[-89.4630693,40.9278477],[-89.4634023,40.9275113],[-89.463597,40.9272921],[-89.4636971,40.9270218],[-89.4641867,40.926131],[-89.464476,40.925866299999996],[-89.4646288,40.925767],[-89.465309,40.9254859],[-89.4662439,40.9249676],[-89.4664457,40.9248573],[-89.4668586,40.9246533],[-89.4671405,40.9244824],[-89.4675679,40.9242287],[-89.46827,40.9237545],[-89.4687265,40.9235064],[-89.4692976,40.9231535],[-89.4701088,40.9226958],[-89.4712163,40.9221389],[-89.4717801,40.9218025],[-89.4725912,40.9213614],[-89.4729604,40.9211298],[-89.4730895,40.921047],[-89.4736042,40.9207975],[-89.4757174,40.9195954],[-89.4768903,40.9189888],[-89.4785342,40.9180402],[-89.4792998,40.917538300000004],[-89.47969810000001,40.9172405],[-89.4801964,40.9167841],[-89.4805946,40.916398],[-89.48133849999999,40.9155444],[-89.48152400000001,40.9152962],[-89.481604,40.9151872],[-89.4819205,40.9145487],[-89.4820497,40.914141900000004],[-89.4825972,40.9131462],[-89.48304279999999,40.9122815],[-89.4831447,40.9120181],[-89.4837121,40.9109838],[-89.4841814,40.9101798],[-89.4844687,40.9097785],[-89.4846269,40.9094475],[-89.4853125,40.908347],[-89.4857526,40.9077416],[-89.48604710000001,40.9073072],[-89.4861126,40.9071803],[-89.4863381,40.9068811],[-89.4865526,40.906597],[-89.4875036,40.9051655],[-89.4876619,40.9046387],[-89.487811,40.904236],[-89.4879111,40.9038071],[-89.4879602,40.903483],[-89.4882313,40.9023121],[-89.4884186,40.9018004],[-89.4884532,40.9014928],[-89.4884496,40.9009039],[-89.4885497,40.9004585],[-89.4885697,40.9002295],[-89.4885715,40.900189499999996],[-89.4884316,40.8998875],[-89.4884662,40.8993592],[-89.4885572,40.8987607],[-89.4886573,40.8983814],[-89.4887791,40.8980504],[-89.4895918,40.8964051],[-89.4897718,40.8961362],[-89.49012450000001,40.8955252],[-89.4906081,40.8948646],[-89.4913007,40.8938413],[-89.4914952,40.8935324],[-89.4916461,40.8932359],[-89.4918351,40.8927849],[-89.4924351,40.8913423],[-89.4925623,40.8908044],[-89.4926842,40.8904348],[-89.4927551,40.8900169],[-89.4928769,40.8897204],[-89.493126,40.8886488],[-89.493306,40.8880323],[-89.4935713,40.8874268],[-89.4939749,40.8867166],[-89.4941621,40.8864476],[-89.4945147,40.8858477],[-89.4945365,40.8857815],[-89.4946001,40.8855718],[-89.4948237,40.8851153],[-89.49508,40.8843733],[-89.4952744,40.883961],[-89.4957343,40.8827776],[-89.4962504,40.881546],[-89.4964867,40.8808799],[-89.4966666,40.8804785],[-89.4971537,40.8792124],[-89.4975716,40.8784373],[-89.497837,40.877837400000004],[-89.4982331,40.8771491],[-89.498989,40.8759217],[-89.4996304,40.875025199999996],[-89.5000956,40.874517600000004],[-89.5013366,40.8731798],[-89.5022887,40.8721053],[-89.5029119,40.8715426],[-89.5042727,40.8703716],[-89.5058678,40.8690944],[-89.5059023,40.8690654],[-89.5063056,40.8686309],[-89.5071795,40.8678861],[-89.5080151,40.8670227],[-89.5088943,40.8660751],[-89.5117988,40.8628433],[-89.513212,40.8613177],[-89.5175981,40.8567753],[-89.5201023,40.8541806],[-89.5212772,40.8530025],[-89.5230732,40.8513775],[-89.523607,40.8507332],[-89.5248108,40.849441999999996],[-89.5248983,40.8451843],[-89.5248652,40.8441885],[-89.5249267,40.8435071],[-89.525186,40.8422244],[-89.525302,40.8416409],[-89.5258154,40.8401553],[-89.5265594,40.838569],[-89.5274142,40.837082],[-89.5281166,40.835985300000004],[-89.5283489,40.8356529],[-89.5285286,40.835476299999996],[-89.5289224,40.83489],[-89.530211,40.8332429],[-89.5307972,40.8324248],[-89.5314125,40.831628800000004],[-89.5322219,40.83075],[-89.5330458,40.8297112],[-89.5336339,40.8290587],[-89.5341347,40.8284613],[-89.5347463,40.8278239],[-89.5349514,40.8276087],[-89.5354086,40.8269189],[-89.535953,40.8262664],[-89.5367497,40.825393],[-89.5374283,40.824437],[-89.5379489,40.8236631],[-89.5388797,40.8224587],[-89.5393949,40.8216792],[-89.5398303,40.8211094],[-89.5399301,40.8209922],[-89.5402531,40.8206127],[-89.5408172,40.8197615],[-89.5410567,40.819467700000004],[-89.5416337,40.8187944],[-89.5420055,40.8182908],[-89.5424355,40.8178052],[-89.5428292,40.8172795],[-89.5433372,40.8167373],[-89.5437454,40.8162668],[-89.5441119,40.8159356],[-89.5446363,40.8154955],[-89.5450881,40.815116],[-89.5457286,40.8146716],[-89.5461751,40.8143942],[-89.5466941,40.8141168],[-89.5479481,40.8135039],[-89.5484218,40.8132375],[-89.549213,40.8128551],[-89.5493872,40.812770900000004],[-89.5503109,40.8122974],[-89.5519494,40.8112209],[-89.5533591,40.8101458],[-89.554411,40.8088916],[-89.5545397,40.8086639],[-89.5549459,40.8080734],[-89.5550891,40.807814],[-89.5555315,40.8071835],[-89.5560734,40.806146],[-89.5561078,40.8060798],[-89.556329,40.805759699999996],[-89.5567423,40.805074],[-89.5570559,40.804489000000004],[-89.5574692,40.8037937],[-89.557759,40.8030873],[-89.55820130000001,40.8023851],[-89.5585401,40.8016291],[-89.55903119999999,40.8006633],[-89.5599243,40.7986822],[-89.5603302,40.7978765],[-89.5604896,40.797519199999996],[-89.5606689,40.7971094],[-89.5615493,40.7952373],[-89.5619532,40.7942881],[-89.5622845,40.7934107],[-89.5624257,40.7929651],[-89.5625815,40.792623],[-89.5626917,40.7920546],[-89.5628454,40.7915139],[-89.5629536,40.7907207],[-89.5630584,40.7901689],[-89.5633769,40.7872336],[-89.56358589999999,40.7855411],[-89.5636629,40.7844293],[-89.56365890000001,40.78401],[-89.5637058,40.7837231],[-89.5635192,40.7820777],[-89.5634625,40.7815826],[-89.5633352,40.781264],[-89.563104,40.7804503],[-89.5627857,40.7796257],[-89.5621711,40.7782356],[-89.5618568,40.7777089],[-89.5618095,40.7776138],[-89.5616932,40.7773904],[-89.5611953,40.7766279],[-89.5610099,40.7762266],[-89.5607683,40.775886],[-89.5605194,40.775453],[-89.5600125,40.774674],[-89.559798,40.7742837],[-89.5595419,40.7739211],[-89.5593656,40.773586],[-89.5591603,40.7732565],[-89.5579828,40.7710874],[-89.5576938,40.7704061],[-89.5573103,40.7696325],[-89.556874,40.7685775],[-89.5565868,40.7678246],[-89.5562522,40.7669502],[-89.5559176,40.7659449],[-89.5556174,40.764800199999996],[-89.5555554,40.7643878],[-89.5554808,40.7641299],[-89.5554543,40.7627368],[-89.5554633,40.7626802],[-89.5555011,40.7623781],[-89.5555692,40.7612167],[-89.5556609,40.7602359],[-89.55587,40.7586041],[-89.5559095,40.7580482],[-89.5561312,40.7563405],[-89.5561635,40.7558825],[-89.5562591,40.7552549],[-89.5563725,40.754219],[-89.5564557,40.7538658],[-89.5564861,40.7532878],[-89.5564805,40.7531885],[-89.5564695,40.753012],[-89.5565302,40.7517954],[-89.5564186,40.7505678],[-89.5559825,40.7495653],[-89.5555319,40.748593],[-89.555009,40.747823600000004],[-89.5547804,40.7477134],[-89.5552356,40.7477159],[-89.5551119,40.7473105],[-89.554709,40.7469161],[-89.5543603,40.7463453],[-89.55396089999999,40.7457606],[-89.5535867,40.7450215],[-89.5531692,40.744412],[-89.552708,40.7437253],[-89.5523739,40.7431544],[-89.5518873,40.7423297],[-89.5516147,40.7415795],[-89.551317,40.7411879],[-89.5510808,40.740553500000004],[-89.5506666,40.7395716],[-89.5504702,40.7387441],[-89.5504157,40.7386944],[-89.55029210000001,40.738244800000004],[-89.5501248,40.7375166],[-89.5500119,40.7368794],[-89.5497574,40.735941499999996],[-89.5496155,40.7352768],[-89.5494699,40.734612],[-89.5492986,40.7333072],[-89.54924,40.7325237],[-89.5490837,40.732019],[-89.5489089,40.7309652],[-89.5485778,40.7292439],[-89.5483342,40.728372300000004],[-89.548196,40.7277185],[-89.5479092,40.727269],[-89.5475679,40.726593199999996],[-89.5472265,40.7258706],[-89.5469722,40.7250624],[-89.5468993,40.72461],[-89.5467796,40.7244528],[-89.5467136,40.7233217],[-89.5466116,40.7226073],[-89.5465205,40.7219397],[-89.5465274,40.7213962],[-89.5465235,40.720929999999996],[-89.5465305,40.720599],[-89.5466246,40.7202541],[-89.5468706,40.7195064],[-89.5471965,40.718775199999996],[-89.547486,40.717974999999996],[-89.5476851,40.7174232],[-89.5484633,40.7154587],[-89.5490896,40.714045999999996],[-89.5497232,40.7127629],[-89.5502226,40.7115709],[-89.5507042,40.710641],[-89.5509431,40.7101526],[-89.5509865,40.7100202],[-89.5512507,40.7093994],[-89.5516852,40.708555000000004],[-89.5521594,40.7075975],[-89.5524851,40.7067918],[-89.5531875,40.7056935],[-89.5538718,40.7045511],[-89.5544077,40.7037315],[-89.5550451,40.702876],[-89.5557006,40.7021681],[-89.5563961,40.7015332],[-89.5573363,40.700896900000004],[-89.5603854,40.6994277],[-89.5620811,40.6986461],[-89.5636283,40.6979281],[-89.565208,40.6972458],[-89.5654146,40.697209799999996],[-89.5667479,40.6965608],[-89.5685414,40.6958204],[-89.568978,40.695628400000004],[-89.5708891,40.69479],[-89.5732296,40.693801],[-89.5759503,40.692602],[-89.5787107,40.6912925],[-89.579946,40.6907482],[-89.5811849,40.6902039],[-89.5831483,40.6893584],[-89.5844777,40.6887284],[-89.5856948,40.6882034],[-89.5868214,40.687719799999996],[-89.5877921,40.687288699999996],[-89.5891613,40.6866753],[-89.5903783,40.6861695],[-89.5909432,40.6858049],[-89.5916239,40.6852995],[-89.592627,40.684686299999996],[-89.5932278,40.6840927],[-89.5937634,40.6835102],[-89.5940851,40.6829058],[-89.5945047,40.6823178],[-89.5954712,40.681530800000004],[-89.5959906,40.6810476],[-89.5961987,40.6808543],[-89.5973428,40.6800947],[-89.5983381,40.6792414],[-89.5992142,40.6786475],[-89.5995762,40.6783314],[-89.6002457,40.6777501],[-89.6012594,40.6770816],[-89.6024898,40.6759715],[-89.6035468,40.6752064],[-89.6042091,40.674683],[-89.6043105,40.6746029],[-89.6062432,40.673141799999996],[-89.6075008,40.6721006],[-89.6083258,40.6713647],[-89.6115112,40.6682732],[-89.6119416,40.6677818],[-89.6126519,40.6667148],[-89.6128871,40.666527],[-89.6131765,40.6662964],[-89.6137366,40.665373],[-89.6142591,40.6647242],[-89.6155855,40.662762799999996],[-89.61595750000001,40.6620851],[-89.6162578,40.6618103],[-89.6166657,40.6609464],[-89.6168133,40.6603421],[-89.6169007,40.6595502],[-89.6168398,40.6588606],[-89.6166446,40.6580704],[-89.6163955,40.6574678],[-89.6160904,40.656966],[-89.6156713,40.6565953],[-89.6140589,40.6552368],[-89.6121221,40.653764],[-89.611705,40.653392],[-89.6113239,40.652963299999996],[-89.611095,40.6525331],[-89.6109221,40.6519871],[-89.6109202,40.6519429],[-89.6108795,40.6513829],[-89.6111505,40.6497867],[-89.6117574,40.6476701],[-89.612073,40.6468062],[-89.6125748,40.6457836],[-89.613189,40.644788500000004],[-89.6144593,40.6430575],[-89.6158259,40.6415553],[-89.6168965,40.6407197],[-89.6176195,40.6398913],[-89.6183424,40.639063],[-89.6191042,40.6376469],[-89.6192722,40.6374329],[-89.6201883,40.6362664],[-89.6216355,40.6354373],[-89.6238202,40.633953500000004],[-89.6251325,40.6326968],[-89.6256387,40.6322549],[-89.626022,40.6319013],[-89.6264739,40.6314788],[-89.6270559,40.6309484],[-89.6274463,40.6305756],[-89.6280501,40.6300232],[-89.6286177,40.6295287],[-89.6291202,40.6290702],[-89.6296336,40.6286282],[-89.6301831,40.6281393],[-89.6306928,40.6277028],[-89.6311881,40.6272691],[-89.6318424,40.6266918],[-89.6322762,40.626299599999996],[-89.6327425,40.6258824],[-89.6330896,40.6255786],[-89.6334981,40.625258099999996],[-89.6338489,40.6250066],[-89.6340946,40.624755300000004],[-89.6345502,40.6244155],[-89.6350165,40.6239983],[-89.6353672,40.623711],[-89.6355768,40.6235232],[-89.6357975,40.6234098],[-89.6360215,40.6231778],[-89.6362094,40.623001],[-89.6366179,40.6226419],[-89.6369286,40.622316],[-89.6374313,40.6220037],[-89.6375646,40.6216697],[-89.6378248,40.6214045],[-89.6381139,40.6211173],[-89.6383777,40.6208521],[-89.6387678,40.620390900000004],[-89.63926670000001,40.6199875],[-89.6394762,40.6197666],[-89.6399208,40.6193991],[-89.6402822,40.6190538],[-89.6408318,40.6187111],[-89.64128,40.6182912],[-89.6417715,40.6178823],[-89.6421871,40.6174818],[-89.6425992,40.6171585],[-89.6429137,40.6169484],[-89.643044,40.6169],[-89.6431452,40.6168626],[-89.6435248,40.616572500000004],[-89.6439225,40.6163016],[-89.6442586,40.616006],[-89.6447069,40.615685400000004],[-89.6451189,40.6153483],[-89.6456756,40.6149614],[-89.6460805,40.6146768],[-89.6463008,40.614395099999996],[-89.6467126,40.6139669],[-89.6471136,40.6135361],[-89.6475214,40.6129534],[-89.6480813,40.6123651],[-89.6486559,40.6118457],[-89.6492051,40.6113512],[-89.6496604,40.6109588],[-89.650242,40.610403500000004],[-89.6507404,40.6098401],[-89.6511343,40.6094947],[-89.6515279,40.6090611],[-89.6515984,40.6090044],[-89.6518604,40.6087903],[-89.6523772,40.6084034],[-89.6526156,40.608157500000004],[-89.6529588,40.6078426],[-89.6532477,40.6075029],[-89.6536016,40.6071272],[-89.6539193,40.6067516],[-89.65436,40.6063344],[-89.6548331,40.605793],[-89.6568269,40.6038564],[-89.6571445,40.6034449],[-89.6575849,40.602892499999996],[-89.6579243,40.6024921],[-89.65824549999999,40.6021026],[-89.6585195,40.6016167],[-89.6588403,40.600995499999996],[-89.659067,40.6004131],[-89.6593481,40.5998526],[-89.6596286,40.599068700000004],[-89.6598911,40.5983069],[-89.6599947,40.5977108],[-89.6600622,40.5971451],[-89.6600883,40.5966954],[-89.6601039,40.596419499999996],[-89.6602205,40.5943846],[-89.6602327,40.594156999999996],[-89.6600444,40.5925267],[-89.6593154,40.5902653],[-89.658768,40.5882796],[-89.6576776,40.5861787],[-89.6565876,40.5842489],[-89.6554753,40.5820432],[-89.6544595,40.5800318],[-89.6542796,40.5796775],[-89.6540042,40.577857],[-89.6544692,40.5754284],[-89.6548275,40.5721724],[-89.6551877,40.5714822],[-89.6563404,40.5691879],[-89.6581457,40.5675302],[-89.6595688,40.5664909],[-89.6606522,40.5656617],[-89.6610561,40.565079],[-89.6616844,40.564576],[-89.6627677,40.5637165],[-89.6633815,40.5631639],[-89.6648266,40.5623342],[-89.6666447,40.5601548],[-89.6684501,40.5587728],[-89.6720613,40.5562293],[-89.675673,40.553989200000004],[-89.6774797,40.5532416],[-89.67964860000001,40.5526866],[-89.6803673,40.5526068],[-89.6807733,40.552598],[-89.6817716,40.5525771],[-89.6825386,40.5526546],[-89.683371,40.5528133],[-89.6840953,40.5531433],[-89.6857778,40.5547188],[-89.6868674,40.5563725],[-89.6875935,40.5573371],[-89.6890436,40.5584936],[-89.6912178,40.5598696],[-89.693065,40.5606943],[-89.6945132,40.5611058],[-89.697119,40.5615154],[-89.6991704,40.5615837],[-89.6992898,40.561589],[-89.700056,40.5613422],[-89.7015021,40.5610087],[-89.7029542,40.5602613],[-89.7052216,40.5587841],[-89.7070275,40.5578153],[-89.7088991,40.5570809],[-89.7099833,40.5567479],[-89.7111405,40.5566079],[-89.7136719,40.5563827],[-89.715481,40.5565091],[-89.7166381,40.556369000000004],[-89.7180118,40.5560906],[-89.7197247,40.5555357],[-89.7207347,40.5552096],[-89.7241461,40.5541962],[-89.7260856,40.5538408],[-89.7274248,40.5535402],[-89.7286473,40.5534993],[-89.7298531,40.5533576],[-89.7324724,40.5529456],[-89.7344118,40.5525748],[-89.7357919,40.5521045],[-89.7370677,40.5517777],[-89.7371942,40.5517527],[-89.7379171,40.5516133],[-89.738078,40.5515826],[-89.7393811,40.5513317],[-89.7419113,40.5508299],[-89.7439641,40.5503567],[-89.7455918,40.5503534],[-89.747148,40.5505985],[-89.7485965,40.5510921],[-89.7504485,40.5510951],[-89.7508339,40.5511605],[-89.7527804,40.5512943],[-89.7547871,40.551568700000004],[-89.7559667,40.5516959],[-89.7562363,40.5517256],[-89.7570757,40.5517804],[-89.7571842,40.5517953],[-89.7585302,40.5519193],[-89.7605677,40.5522005],[-89.7624204,40.552395000000004],[-89.7661804,40.5528502],[-89.7680347,40.5530061],[-89.7695546,40.5531668],[-89.7705314,40.5532088],[-89.7722731,40.5532227],[-89.7727848,40.553188399999996],[-89.7732891,40.5531156],[-89.7749355,40.5528014],[-89.7751035,40.5527624],[-89.7755607,40.5526578],[-89.7763503,40.5524781],[-89.7779344,40.5519667],[-89.7794869,40.5512678],[-89.78013490000001,40.550933799999996],[-89.7814582,40.5503541],[-89.7849668,40.5490614],[-89.7860215,40.5487167],[-89.7872843,40.5483909],[-89.78959449999999,40.5477093],[-89.790514,40.547471200000004],[-89.7924936,40.546881400000004],[-89.7937974,40.5464506],[-89.7942633,40.546282500000004],[-89.7946497,40.5461464],[-89.7952801,40.5459779],[-89.7963472,40.5455779],[-89.7973678,40.545316],[-89.7979041,40.5451271],[-89.7996974,40.5445625],[-89.8010063,40.5440653],[-89.8021965,40.5437188],[-89.8029206,40.543487999999996],[-89.8036085,40.5432255],[-89.8045518,40.5430741],[-89.8051242,40.5428905],[-89.8059786,40.542680000000004],[-89.8069755,40.542396],[-89.8075136,40.542207],[-89.808361,40.5420462],[-89.80927750000001,40.541983099999996],[-89.8099316,40.5418807],[-89.811534,40.5415275],[-89.8119997,40.5413456],[-89.8125234,40.541184200000004],[-89.813388,40.5408412],[-89.8135812,40.5407662],[-89.8138177,40.5406924],[-89.815003,40.540092],[-89.8166813,40.539352199999996],[-89.8177386,40.5388307],[-89.8185668,40.538450499999996],[-89.8187851,40.5383396],[-89.8200515,40.5376975],[-89.8213145,40.5371174],[-89.8218752,40.53676],[-89.8220555,40.536645],[-89.8228135,40.5363367],[-89.8236035,40.5359124],[-89.8253244,40.535050999999996],[-89.8269473,40.534114],[-89.8271837,40.534003],[-89.8276906,40.5337685],[-89.8332197,40.5307388],[-89.834098,40.5302798],[-89.8341972,40.5302326],[-89.8349819,40.5298662],[-89.835812,40.5295452],[-89.8370377,40.5291375],[-89.8377523,40.5288623],[-89.8382127,40.528735499999996],[-89.8399237,40.5281264],[-89.8405897,40.5279134],[-89.8432205,40.5268629],[-89.8437489,40.5265965],[-89.8444634,40.5263047],[-89.8451416,40.5259869],[-89.8460725,40.525599299999996],[-89.8475501,40.5249838],[-89.8490995,40.5242785],[-89.850622,40.5236243],[-89.8508799,40.5234938],[-89.8513703,40.5232441],[-89.853064,40.5224927],[-89.8539931,40.522099499999996],[-89.8546444,40.5218479],[-89.8552485,40.5215661],[-89.8579955,40.5199989],[-89.8600131,40.5193321],[-89.8637567,40.5175811],[-89.8649341,40.5170077],[-89.8652666,40.516976299999996],[-89.8655245,40.5168679],[-89.8658434,40.5166752],[-89.8661644,40.5165225],[-89.8666587,40.5163333],[-89.8671508,40.516084899999996],[-89.8683693,40.5154176],[-89.8700007,40.5145834],[-89.8712406,40.5138828],[-89.87246640000001,40.5132596],[-89.8724031,40.5233774],[-89.872311,40.5379139],[-89.8722282,40.5508169],[-89.872129,40.5660636],[-89.8720364,40.5805266],[-89.8720149,40.5805653],[-89.8741228,40.5805808],[-89.8741804,40.5815352],[-89.8741779,40.5817284],[-89.8739481,40.5951777],[-89.87393660000001,40.596062],[-89.873746,40.609740099999996],[-89.8737462,40.6097843],[-89.8737466,40.6105209],[-89.8737272,40.6244177],[-89.8737251,40.6246936],[-89.8750956,40.6246852],[-89.8791482,40.6248255],[-89.8832724,40.6251448],[-89.8920435,40.625343900000004],[-89.8925686,40.6253559],[-89.892612,40.6253558],[-89.9110287,40.6254165],[-89.9114252,40.6254179],[-89.9302148,40.625475800000004],[-89.9302528,40.625477000000004],[-89.9490313,40.6254782],[-89.9679701,40.6256316],[-89.9889791,40.625884],[-89.988704,40.6402729],[-89.9886995,40.6404163],[-89.9886965,40.6404922],[-89.9880923,40.6547278],[-89.988089,40.6547761],[-89.9880835,40.6550176],[-89.9877336,40.669126399999996],[-89.9877292,40.6692699],[-89.9877204,40.6695707],[-89.9872471,40.6834151],[-89.987232,40.6838386],[-89.98721929999999,40.684100799999996],[-89.9865563,40.697799599999996],[-89.9865339,40.6982259],[-89.9865219,40.6985819],[-89.986056,40.712238400000004],[-89.9860545,40.7122825],[-89.9860549,40.712341800000004],[-89.9858478,40.7270014],[-89.9858474,40.7272097],[-89.985821,40.7412641],[-89.98581970000001,40.741341399999996],[-89.9858203,40.7414283],[-89.9857307,40.7560443],[-89.98543839999999,40.7707438],[-89.9852021,40.7851671],[-89.9851341,40.7997937],[-89.984903,40.8144622],[-89.9848538,40.8291877],[-89.9852558,40.8435112],[-89.9853411,40.8582359],[-89.985448,40.8729328],[-89.9852846,40.8874402],[-89.9851806,40.9021238],[-89.9852091,40.9165198],[-89.9854069,40.9311991],[-89.9858524,40.9459104],[-89.9859389,40.960777300000004],[-89.985982,40.9612102],[-89.9859238,40.974637799999996]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"WOODFORD","CO_FIPS":203},"geometry":{"type":"Polygon","coordinates":[[[-89.0476477,40.9256636],[-89.0275449,40.9260354],[-89.0083507,40.9264738],[-88.9892362,40.926884799999996],[-88.9700144,40.927024700000004],[-88.9507182,40.9273626],[-88.931495,40.9276399],[-88.9314496,40.9132603],[-88.9314177,40.8985744],[-88.9315373,40.8840353],[-88.9311914,40.8695269],[-88.9311036,40.8550168],[-88.9308638,40.8404452],[-88.9306481,40.8260528],[-88.9302962,40.811439],[-88.9302492,40.7968568],[-88.9299941,40.7824334],[-88.9297393,40.767979600000004],[-88.9294284,40.753296399999996],[-88.9486217,40.7529479],[-88.9676441,40.7526259],[-88.9680068,40.7526275],[-88.986987,40.7523312],[-88.9866157,40.7378808],[-88.9863126,40.723299499999996],[-88.9858704,40.708676],[-88.9858688,40.7086374],[-88.985618,40.6941319],[-88.9852266,40.6795456],[-88.9847836,40.6650983],[-88.9852276,40.6650657],[-89.0000491,40.6646294],[-89.0036454,40.664574099999996],[-89.0044118,40.6645621],[-89.0230642,40.664425800000004],[-89.0240137,40.6643799],[-89.042119,40.6639763],[-89.0453693,40.6639033],[-89.04544,40.6639008],[-89.04539869999999,40.663842700000004],[-89.0449872,40.6500046],[-89.0449821,40.6498053],[-89.0445416,40.6350435],[-89.0443903,40.62778],[-89.0455331,40.6277278],[-89.0588597,40.6273062],[-89.0633742,40.6271849],[-89.0822908,40.6268734],[-89.1016487,40.6250458],[-89.1014159,40.619576800000004],[-89.1011067,40.6123101],[-89.1150618,40.6118691],[-89.1200133,40.611725],[-89.1246914,40.611590899999996],[-89.1250516,40.6116003],[-89.1341883,40.6114218],[-89.1339406,40.6038546],[-89.1337034,40.5966985],[-89.1384877,40.5964869],[-89.1550261,40.596634],[-89.1550219,40.5963912],[-89.1550832,40.59643],[-89.1741105,40.5960947],[-89.1932209,40.5957552],[-89.2122333,40.5954151],[-89.2313397,40.5950708],[-89.2500513,40.594732300000004],[-89.2502052,40.594729900000004],[-89.2693252,40.5944967],[-89.2694732,40.6016496],[-89.2694765,40.6017627],[-89.26985930000001,40.6161168],[-89.2890561,40.6157772],[-89.3082976,40.615580800000004],[-89.3083338,40.6155794],[-89.3273378,40.615487200000004],[-89.3277248,40.6250377],[-89.3278642,40.6300991],[-89.3282606,40.6446223],[-89.3286207,40.6607441],[-89.3296096,40.6607801],[-89.3297348,40.6753275],[-89.3298184,40.6898485],[-89.3298201,40.6898967],[-89.3298347,40.704468500000004],[-89.3299835,40.7190431],[-89.3299852,40.7190735],[-89.3300271,40.7336395],[-89.3301359,40.7483048],[-89.3305022,40.748304],[-89.3308269,40.7483058],[-89.34931040000001,40.7481748],[-89.3497094,40.7481725],[-89.3500559,40.7481619],[-89.3684865,40.7481631],[-89.3689345,40.7481636],[-89.3692591,40.7481874],[-89.3751282,40.7481302],[-89.387902,40.7480933],[-89.4075988,40.7479062],[-89.4078382,40.7479036],[-89.427105,40.747733600000004],[-89.4273934,40.747731],[-89.4462175,40.7476252],[-89.4462865,40.7476252],[-89.4470736,40.7476407],[-89.4471244,40.7476394],[-89.46531,40.7475551],[-89.4665379,40.747555500000004],[-89.4843263,40.7474599],[-89.4863394,40.7474906],[-89.5000779,40.747639],[-89.5031285,40.747626600000004],[-89.5223934,40.7475776],[-89.5409837,40.7476748],[-89.5547804,40.7477134],[-89.555009,40.747823600000004],[-89.5555319,40.748593],[-89.5559825,40.7495653],[-89.5564186,40.7505678],[-89.5565302,40.7517954],[-89.5564695,40.753012],[-89.5564805,40.7531885],[-89.5564861,40.7532878],[-89.5564557,40.7538658],[-89.5563725,40.754219],[-89.5562591,40.7552549],[-89.5561635,40.7558825],[-89.5561312,40.7563405],[-89.5559095,40.7580482],[-89.55587,40.7586041],[-89.5556609,40.7602359],[-89.5555692,40.7612167],[-89.5555011,40.7623781],[-89.5554633,40.7626802],[-89.5554543,40.7627368],[-89.5554808,40.7641299],[-89.5555554,40.7643878],[-89.5556174,40.764800199999996],[-89.5559176,40.7659449],[-89.5562522,40.7669502],[-89.5565868,40.7678246],[-89.556874,40.7685775],[-89.5573103,40.7696325],[-89.5576938,40.7704061],[-89.5579828,40.7710874],[-89.5591603,40.7732565],[-89.5593656,40.773586],[-89.5595419,40.7739211],[-89.559798,40.7742837],[-89.5600125,40.774674],[-89.5605194,40.775453],[-89.5607683,40.775886],[-89.5610099,40.7762266],[-89.5611953,40.7766279],[-89.5616932,40.7773904],[-89.5618095,40.7776138],[-89.5618568,40.7777089],[-89.5621711,40.7782356],[-89.5627857,40.7796257],[-89.563104,40.7804503],[-89.5633352,40.781264],[-89.5634625,40.7815826],[-89.5635192,40.7820777],[-89.5637058,40.7837231],[-89.56365890000001,40.78401],[-89.5636629,40.7844293],[-89.56358589999999,40.7855411],[-89.5633769,40.7872336],[-89.5630584,40.7901689],[-89.5629536,40.7907207],[-89.5628454,40.7915139],[-89.5626917,40.7920546],[-89.5625815,40.792623],[-89.5624257,40.7929651],[-89.5622845,40.7934107],[-89.5619532,40.7942881],[-89.5615493,40.7952373],[-89.5606689,40.7971094],[-89.5604896,40.797519199999996],[-89.5603302,40.7978765],[-89.5599243,40.7986822],[-89.55903119999999,40.8006633],[-89.5585401,40.8016291],[-89.55820130000001,40.8023851],[-89.557759,40.8030873],[-89.5574692,40.8037937],[-89.5570559,40.804489000000004],[-89.5567423,40.805074],[-89.556329,40.805759699999996],[-89.5561078,40.8060798],[-89.5560734,40.806146],[-89.5555315,40.8071835],[-89.5550891,40.807814],[-89.5549459,40.8080734],[-89.5545397,40.8086639],[-89.554411,40.8088916],[-89.5533591,40.8101458],[-89.5519494,40.8112209],[-89.5503109,40.8122974],[-89.5493872,40.812770900000004],[-89.549213,40.8128551],[-89.5484218,40.8132375],[-89.5479481,40.8135039],[-89.5466941,40.8141168],[-89.5461751,40.8143942],[-89.5457286,40.8146716],[-89.5450881,40.815116],[-89.5446363,40.8154955],[-89.5441119,40.8159356],[-89.5437454,40.8162668],[-89.5433372,40.8167373],[-89.5428292,40.8172795],[-89.5424355,40.8178052],[-89.5420055,40.8182908],[-89.5416337,40.8187944],[-89.5410567,40.819467700000004],[-89.5408172,40.8197615],[-89.5402531,40.8206127],[-89.5399301,40.8209922],[-89.5398303,40.8211094],[-89.5393949,40.8216792],[-89.5388797,40.8224587],[-89.5379489,40.8236631],[-89.5374283,40.824437],[-89.5367497,40.825393],[-89.535953,40.8262664],[-89.5354086,40.8269189],[-89.5349514,40.8276087],[-89.5347463,40.8278239],[-89.5341347,40.8284613],[-89.5336339,40.8290587],[-89.5330458,40.8297112],[-89.5322219,40.83075],[-89.5314125,40.831628800000004],[-89.5307972,40.8324248],[-89.530211,40.8332429],[-89.5289224,40.83489],[-89.5285286,40.835476299999996],[-89.5283489,40.8356529],[-89.5281166,40.835985300000004],[-89.5274142,40.837082],[-89.5265594,40.838569],[-89.5258154,40.8401553],[-89.525302,40.8416409],[-89.525186,40.8422244],[-89.5249267,40.8435071],[-89.5248652,40.8441885],[-89.5248983,40.8451843],[-89.5248108,40.849441999999996],[-89.523607,40.8507332],[-89.5230732,40.8513775],[-89.5212772,40.8530025],[-89.5201023,40.8541806],[-89.5175981,40.8567753],[-89.513212,40.8613177],[-89.5117988,40.8628433],[-89.5088943,40.8660751],[-89.5080151,40.8670227],[-89.5071795,40.8678861],[-89.5063056,40.8686309],[-89.5059023,40.8690654],[-89.5058678,40.8690944],[-89.5042727,40.8703716],[-89.5029119,40.8715426],[-89.5022887,40.8721053],[-89.5013366,40.8731798],[-89.5000956,40.874517600000004],[-89.4996304,40.875025199999996],[-89.498989,40.8759217],[-89.4982331,40.8771491],[-89.497837,40.877837400000004],[-89.4975716,40.8784373],[-89.4971537,40.8792124],[-89.4966666,40.8804785],[-89.4964867,40.8808799],[-89.4962504,40.881546],[-89.4957343,40.8827776],[-89.4952744,40.883961],[-89.49508,40.8843733],[-89.4948237,40.8851153],[-89.4946001,40.8855718],[-89.4945365,40.8857815],[-89.4945147,40.8858477],[-89.4941621,40.8864476],[-89.4939749,40.8867166],[-89.4935713,40.8874268],[-89.493306,40.8880323],[-89.493126,40.8886488],[-89.4928769,40.8897204],[-89.4927551,40.8900169],[-89.4926842,40.8904348],[-89.4925623,40.8908044],[-89.4924351,40.8913423],[-89.4918351,40.8927849],[-89.4916461,40.8932359],[-89.4914952,40.8935324],[-89.4913007,40.8938413],[-89.4906081,40.8948646],[-89.49012450000001,40.8955252],[-89.4897718,40.8961362],[-89.4895918,40.8964051],[-89.4887791,40.8980504],[-89.4886573,40.8983814],[-89.4885572,40.8987607],[-89.4884662,40.8993592],[-89.4884316,40.8998875],[-89.4885715,40.900189499999996],[-89.4885697,40.9002295],[-89.4885497,40.9004585],[-89.4884496,40.9009039],[-89.4884532,40.9014928],[-89.4884186,40.9018004],[-89.4882313,40.9023121],[-89.4879602,40.903483],[-89.4879111,40.9038071],[-89.487811,40.904236],[-89.4876619,40.9046387],[-89.4875036,40.9051655],[-89.4865526,40.906597],[-89.4863381,40.9068811],[-89.4861126,40.9071803],[-89.48604710000001,40.9073072],[-89.4857526,40.9077416],[-89.4853125,40.908347],[-89.4846269,40.9094475],[-89.4844687,40.9097785],[-89.4841814,40.9101798],[-89.4837121,40.9109838],[-89.4831447,40.9120181],[-89.48304279999999,40.9122815],[-89.4825972,40.9131462],[-89.4820497,40.914141900000004],[-89.4819205,40.9145487],[-89.481604,40.9151872],[-89.48152400000001,40.9152962],[-89.48133849999999,40.9155444],[-89.4805946,40.916398],[-89.4801964,40.9167841],[-89.47969810000001,40.9172405],[-89.4792998,40.917538300000004],[-89.4785342,40.9180402],[-89.4768903,40.9189888],[-89.4757174,40.9195954],[-89.4736042,40.9207975],[-89.4730895,40.921047],[-89.4729604,40.9211298],[-89.4662566,40.9211749],[-89.4471579,40.9213844],[-89.4470634,40.9213788],[-89.4279846,40.9215535],[-89.4092767,40.921722700000004],[-89.4091821,40.921733700000004],[-89.4091457,40.921724],[-89.390272,40.9220184],[-89.3751366,40.922246200000004],[-89.3715863,40.9223189],[-89.3711636,40.9223274],[-89.3524458,40.9226767],[-89.3522676,40.9226806],[-89.3520257,40.9226913],[-89.3335693,40.9231428],[-89.3333239,40.9231438],[-89.3331566,40.9231394],[-89.3143713,40.9234109],[-89.3142549,40.9234135],[-89.31411130000001,40.9234161],[-89.2953124,40.9239149],[-89.2949524,40.9239253],[-89.2758805,40.9244288],[-89.2758423,40.9244288],[-89.2567175,40.924903],[-89.2566757,40.9249043],[-89.2565557,40.9248999],[-89.2372273,40.925254699999996],[-89.2183544,40.9258047],[-89.2179943,40.9258107],[-89.1989655,40.9261739],[-89.1986636,40.9261731],[-89.1797288,40.926612],[-89.1604229,40.9270083],[-89.1436568,40.9271277],[-89.1246304,40.9268819],[-89.1243683,40.9269252],[-89.1053062,40.9265906],[-89.0862992,40.9262064],[-89.0670113,40.9259781],[-89.0476477,40.9256636]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"CARROLL","CO_FIPS":15},"geometry":{"type":"Polygon","coordinates":[[[-89.9197855,42.1967726],[-89.9003055,42.1963809],[-89.8803614,42.1964144],[-89.8610013,42.1968976],[-89.8610042,42.1974486],[-89.86100569999999,42.1977241],[-89.8449295,42.1978064],[-89.844559,42.197807499999996],[-89.8251792,42.198180300000004],[-89.8248087,42.1981813],[-89.8055569,42.1982201],[-89.7856269,42.1982162],[-89.7659344,42.1983186],[-89.7466741,42.1980451],[-89.7268283,42.1987449],[-89.7074036,42.1991376],[-89.6880787,42.1994941],[-89.6880598,42.1847467],[-89.6873635,42.1701159],[-89.6871728,42.1561149],[-89.6864584,42.1414478],[-89.6863068,42.1267741],[-89.6856891,42.1121284],[-89.6861927,42.097483499999996],[-89.6857691,42.083344],[-89.6857683,42.083068499999996],[-89.6859065,42.0687819],[-89.6859058,42.068506299999996],[-89.6852706,42.053992],[-89.6853683,42.0397215],[-89.6846748,42.0253776],[-89.6858685,42.0253758],[-89.68587,42.025244900000004],[-89.6858613,42.0025766],[-89.6860052,41.9878448],[-89.6858363,41.9735431],[-89.6859116,41.9593979],[-89.6861262,41.9449326],[-89.6861091,41.9307734],[-89.7055495,41.9303671],[-89.7248592,41.930660700000004],[-89.7446663,41.930694],[-89.7649072,41.9312026],[-89.7841824,41.9310516],[-89.8018079,41.930914],[-89.8033801,41.9309004],[-89.8035185,41.9309028],[-89.8228762,41.9314344],[-89.8229924,41.931434100000004],[-89.8423075,41.931505200000004],[-89.8423961,41.9315049],[-89.8618567,41.9315284],[-89.8809988,41.931334899999996],[-89.9004449,41.9313963],[-89.9196424,41.9312241],[-89.9392283,41.9312045],[-89.9398815,41.9312021],[-89.9583286,41.931156],[-89.9585223,41.9311415],[-89.9593266,41.9311081],[-89.9785435,41.9311029],[-89.9971752,41.9310598],[-89.9974574,41.9310352],[-89.9978816,41.9310004],[-90.0018096,41.9309236],[-90.0166823,41.9306354],[-90.0360521,41.930402900000004],[-90.0554598,41.9302828],[-90.0752766,41.9301192],[-90.0940482,41.929872],[-90.1135141,41.9296873],[-90.1327197,41.929301],[-90.132847,41.9292934],[-90.151965,41.9290314],[-90.1518343,41.9300228],[-90.15178,41.930709300000004],[-90.1518668,41.9312917],[-90.1520322,41.931992199999996],[-90.1521749,41.9322477],[-90.1523571,41.932580200000004],[-90.1527945,41.9331593],[-90.15322,41.933649],[-90.1537041,41.9340956],[-90.1541967,41.9344705],[-90.1544035,41.9346692],[-90.1545417,41.9348393],[-90.1546823,41.935064499999996],[-90.1549608,41.9356211],[-90.1553189,41.9362048],[-90.1557078,41.9367277],[-90.1563315,41.9376696],[-90.1566997,41.938154],[-90.1574483,41.938843],[-90.157742,41.9390633],[-90.1591979,41.939984100000004],[-90.1602356,41.9406013],[-90.1611089,41.9412084],[-90.1613234,41.9414387],[-90.1617492,41.9419573],[-90.1630945,41.9440099],[-90.1633846,41.944615999999996],[-90.1637727,41.9452326],[-90.1639346,41.9455583],[-90.1640447,41.9458663],[-90.1642118,41.9465323],[-90.1642772,41.9475557],[-90.1642726,41.9491555],[-90.1641208,41.9515594],[-90.164123,41.9534802],[-90.1640845,41.9540743],[-90.1640979,41.9546846],[-90.1640677,41.955185],[-90.1638881,41.956258],[-90.163687,41.957781600000004],[-90.1636271,41.9580727],[-90.163568,41.9582535],[-90.1635177,41.9584026],[-90.1634048,41.9587436],[-90.1631518,41.9592988],[-90.1627088,41.9604366],[-90.1622276,41.9612619],[-90.1621,41.961433400000004],[-90.1619625,41.961718],[-90.1611613,41.962855],[-90.1603807,41.9642082],[-90.15999479999999,41.9651596],[-90.15975710000001,41.9655881],[-90.159255,41.9663459],[-90.1587896,41.9669009],[-90.1584273,41.9672418],[-90.1577334,41.9678463],[-90.1565903,41.9687688],[-90.1559926,41.969208800000004],[-90.1558078,41.9693779],[-90.1554001,41.9699836],[-90.1549861,41.9708952],[-90.1547573,41.9714834],[-90.1546681,41.9718091],[-90.154526,41.9722039],[-90.1540824,41.9733045],[-90.1540379,41.9734742],[-90.1539478,41.9737048],[-90.1534747,41.9746126],[-90.1532816,41.9748878],[-90.153009,41.9751469],[-90.1527802,41.9753645],[-90.1514516,41.9764091],[-90.1508387,41.9768147],[-90.1503667,41.9770777],[-90.1495996,41.9775778],[-90.1492163,41.9778527],[-90.1485586,41.9783908],[-90.1482931,41.978631899999996],[-90.1479097,41.978895800000004],[-90.147688,41.9790774],[-90.1469276,41.9798903],[-90.1466397,41.9802969],[-90.146565,41.980400599999996],[-90.1462973,41.980989],[-90.1461495,41.9817587],[-90.1461033,41.9821447],[-90.1460878,41.982457600000004],[-90.14612460000001,41.982826599999996],[-90.1464202,41.9847747],[-90.1464346,41.985318899999996],[-90.1463505,41.9861764],[-90.14613489999999,41.9871999],[-90.14601880000001,41.9876097],[-90.1459562,41.9878264],[-90.1459257,41.9879189],[-90.1458145,41.9882612],[-90.1456376,41.988694699999996],[-90.1453346,41.989266799999996],[-90.1451709,41.9895308],[-90.1443285,41.9906679],[-90.143826,41.9912341],[-90.1424499,41.992976],[-90.1418732,41.993905],[-90.1415708,41.9943502],[-90.1410598,41.9951962],[-90.1408228,41.9957127],[-90.1406523,41.9962468],[-90.1405747,41.9966275],[-90.1405464,41.9967641],[-90.1405389,41.997341399999996],[-90.1404252,41.9982046],[-90.1404305,41.9991566],[-90.1403911,42.0000634],[-90.138917,42.0000629],[-90.1389497,42.0013772],[-90.1391721,42.0022412],[-90.139205,42.002394],[-90.1393383,42.0030202],[-90.1393282,42.0038993],[-90.139961,42.0051911],[-90.1404526,42.0059959],[-90.1415295,42.0073432],[-90.1424718,42.0085314],[-90.1431891,42.0093654],[-90.1442612,42.0102057],[-90.14456799999999,42.011386200000004],[-90.145565,42.0124749],[-90.1457106,42.0134082],[-90.1463155,42.0140691],[-90.1464225,42.014831799999996],[-90.1468766,42.0155652],[-90.1471372,42.016542],[-90.1471122,42.017407399999996],[-90.147431,42.0182847],[-90.1474077,42.0193237],[-90.1477873,42.0203743],[-90.1472433,42.0214601],[-90.1472918,42.0216927],[-90.1474295,42.022382199999996],[-90.1476902,42.0233618],[-90.1480553,42.02444],[-90.1485317,42.025559],[-90.1489296,42.0265957],[-90.1492543,42.0276907],[-90.1497066,42.0286086],[-90.1503548,42.0295283],[-90.1505832,42.0306072],[-90.1509577,42.031498],[-90.1515494,42.032302200000004],[-90.1521746,42.033131],[-90.152844,42.0339348],[-90.1533913,42.0347365],[-90.1540392,42.035612],[-90.1543757,42.0360084],[-90.1549123,42.0366393],[-90.1550974,42.0368601],[-90.1561091,42.0378907],[-90.1567179,42.038546],[-90.1575707,42.0391917],[-90.1589648,42.0396278],[-90.1602602,42.0401774],[-90.1616933,42.0408172],[-90.1628015,42.0414863],[-90.1639124,42.0424419],[-90.1646397,42.0434767],[-90.1650543,42.0442791],[-90.16531810000001,42.0451732],[-90.1652719,42.0461103],[-90.1652341,42.0475378],[-90.1650981,42.0487482],[-90.1649212,42.049934],[-90.1649967,42.0510358],[-90.1650163,42.051333299999996],[-90.16518980000001,42.052440000000004],[-90.1652926,42.0531173],[-90.1656885,42.0538949],[-90.1661159,42.055623],[-90.1661702,42.0566312],[-90.1661425,42.057582],[-90.1663148,42.058936700000004],[-90.1656735,42.0598936],[-90.1653757,42.0608183],[-90.1650207,42.0615725],[-90.1652844,42.0624473],[-90.1652277,42.0638198],[-90.1655819,42.0644929],[-90.166219,42.0657294],[-90.1660691,42.0668503],[-90.1660605,42.0669123],[-90.1663823,42.0680513],[-90.1667212,42.0686667],[-90.1671177,42.0694994],[-90.1674194,42.0704649],[-90.1677666,42.0719178],[-90.1679783,42.0731401],[-90.1680503,42.0744375],[-90.168024,42.0751458],[-90.1676694,42.0759412],[-90.1676825,42.0768945],[-90.1670258,42.0781821],[-90.1662489,42.0792996],[-90.1655298,42.0802679],[-90.1652,42.080959899999996],[-90.1651566,42.081052400000004],[-90.164577,42.0822955],[-90.1646613,42.0829729],[-90.1639843,42.0840897],[-90.1637653,42.0851435],[-90.1635662,42.0859656],[-90.1634669,42.087162],[-90.1630789,42.0883351],[-90.1629238,42.0894905],[-90.16284,42.0907584],[-90.1628474,42.0911358],[-90.1626678,42.0920571],[-90.1624881,42.0929811],[-90.1622705,42.0938061],[-90.1622847,42.0948723],[-90.162219,42.0957241],[-90.1621863,42.0959681],[-90.1620431,42.0970256],[-90.1619178,42.0978336],[-90.1616191,42.0998245],[-90.1615715,42.1006321],[-90.1616031,42.101599],[-90.1612729,42.1026368],[-90.1609972,42.1035806],[-90.1610092,42.1044292],[-90.161001,42.1054817],[-90.1609964,42.1065343],[-90.1612822,42.1077561],[-90.1616978,42.1086328],[-90.1618453,42.1093401],[-90.1615468,42.109840399999996],[-90.1614303,42.1100339],[-90.1614652,42.1109567],[-90.1616878,42.1117766],[-90.1619886,42.1126401],[-90.1624957,42.113414399999996],[-90.1629312,42.1140457],[-90.1632758,42.1152258],[-90.164192,42.116199],[-90.1641857,42.1170642],[-90.164604,42.1178251],[-90.1649774,42.1185422],[-90.1656873,42.1196046],[-90.1663549,42.1205074],[-90.1668269,42.1210807],[-90.1684847,42.1225539],[-90.1690901,42.1231402],[-90.1699291,42.1237804],[-90.1707221,42.1244331],[-90.170765,42.124470099999996],[-90.1715071,42.1250322],[-90.1751953,42.1250311],[-90.1890005,42.125016],[-90.1890732,42.1250596],[-90.1891756,42.1251266],[-90.1893676,42.1252591],[-90.1895575,42.1253751],[-90.1898514,42.1255209],[-90.1901602,42.1256817],[-90.1905209,42.1258422],[-90.190831,42.1259479],[-90.1913902,42.126155499999996],[-90.191795,42.1262937],[-90.192083,42.1264065],[-90.1924135,42.1265065],[-90.1926938,42.1265959],[-90.193121,42.1267463],[-90.1931693,42.1267626],[-90.19349629999999,42.1268861],[-90.1938341,42.126980599999996],[-90.1939306,42.127009],[-90.19429099999999,42.1271433],[-90.1947015,42.1272884],[-90.1948353,42.127340000000004],[-90.1971709,42.128253799999996],[-90.1995364,42.1291798],[-90.2005504,42.1298711],[-90.2019125,42.1313028],[-90.2027196,42.1327405],[-90.2032625,42.1347584],[-90.2033069,42.134931699999996],[-90.2034584,42.1352628],[-90.2035971,42.1356092],[-90.2036615,42.1357479],[-90.2038284,42.1361327],[-90.2039293,42.1364035],[-90.2040583,42.136707200000004],[-90.2042127,42.1369598],[-90.2043948,42.1372081],[-90.204556,42.1373959],[-90.2047601,42.1376234],[-90.2049644,42.1378661],[-90.2051334,42.1380979],[-90.2052276,42.1382641],[-90.2053072,42.1384399],[-90.2053931,42.1386874],[-90.2054497,42.1389736],[-90.2054565,42.1390838],[-90.2054464,42.139359400000004],[-90.2054293,42.1396722],[-90.2054488,42.1399476],[-90.2054615,42.1401018],[-90.2055744,42.140635599999996],[-90.2055874,42.1408174],[-90.2056168,42.1409715],[-90.2056445,42.141136700000004],[-90.205726,42.1418581],[-90.2057597,42.1422491],[-90.2058079,42.142607],[-90.205849,42.142996600000004],[-90.2058975,42.1433876],[-90.2060053,42.1437851],[-90.20609759999999,42.1441152],[-90.206163,42.144357299999996],[-90.2062616,42.1447534],[-90.2063037,42.1450673],[-90.2063231,42.1453262],[-90.2063367,42.145562999999996],[-90.2063843,42.145871299999996],[-90.206498,42.1464768],[-90.2066275,42.1468246],[-90.2068441,42.1473537],[-90.2069375,42.1476066],[-90.2071109,42.1480864],[-90.2072109,42.1484385],[-90.2072618,42.1487027],[-90.207318,42.148950299999996],[-90.20736840000001,42.1491594],[-90.2074824,42.1494467],[-90.20754840000001,42.149562],[-90.2077883,42.1500139],[-90.2079559,42.150284299999996],[-90.2080949,42.150477699999996],[-90.208204,42.1506438],[-90.2083342,42.1508758],[-90.2085172,42.1512067],[-90.2086478,42.1514815],[-90.2089032,42.1518244],[-90.2092171,42.1522717],[-90.2095302,42.1526515],[-90.209847,42.152846600000004],[-90.210104,42.1529898],[-90.2103404,42.1531124],[-90.21058239999999,42.1532404],[-90.2109212,42.153412],[-90.2112301,42.1535618],[-90.2115615,42.1537403],[-90.2119792,42.154023],[-90.2122294,42.1542213],[-90.2123692,42.154315600000004],[-90.2126174,42.1544987],[-90.2127649,42.1546205],[-90.2129409,42.1548026],[-90.2130495,42.1549246],[-90.2131822,42.1550409],[-90.2134751,42.1552555],[-90.213723,42.1554111],[-90.2139096,42.1555436],[-90.21416669999999,42.1556992],[-90.2144983,42.1558942],[-90.2147849,42.1560275],[-90.2153445,42.1562557],[-90.2157128,42.1564106],[-90.2161476,42.1565609],[-90.2164785,42.1566844],[-90.2169268,42.1568842],[-90.2172152,42.1570175],[-90.2176043,42.1572233],[-90.2178912,42.1573841],[-90.2182581,42.1575941],[-90.2186563,42.1577778],[-90.2189651,42.1579109],[-90.2194665,42.1580512],[-90.2202051,42.1582191],[-90.2207049,42.158375899999996],[-90.2211401,42.1585593],[-90.2214789,42.1587378],[-90.2216911,42.1588426],[-90.2219631,42.1589925],[-90.2222055,42.1591537],[-90.2225073,42.159331],[-90.2228015,42.1594863],[-90.223053,42.1596294],[-90.2233028,42.159785],[-90.2236415,42.1599469],[-90.2240081,42.1601238],[-90.2244066,42.160335],[-90.2247514,42.1605451],[-90.2250606,42.1607168],[-90.2254422,42.1609005],[-90.2258477,42.161073099999996],[-90.226268,42.161251],[-90.2266865,42.1614235],[-90.2271291,42.1616013],[-90.22746,42.1617302],[-90.2278654,42.1618917],[-90.2281536,42.162003],[-90.228507,42.1621524],[-90.2288826,42.1622975],[-90.2292938,42.1624811],[-90.2296772,42.1626578],[-90.2301109,42.1628702],[-90.2304203,42.1630584],[-90.2306625,42.1632016],[-90.2310818,42.1634457],[-90.2314863,42.1636953],[-90.2318476,42.1638902],[-90.2322071,42.1640836],[-90.2325832,42.1642729],[-90.2328402,42.164406299999996],[-90.2331415,42.164534],[-90.2334506,42.1646892],[-90.2336722,42.1648049],[-90.2338195,42.1649005],[-90.2339811,42.1649505],[-90.2345991,42.1652443],[-90.2352393,42.1655394],[-90.2356521,42.1656995],[-90.2362267,42.1659233],[-90.2365952,42.1660891],[-90.2370084,42.1662836],[-90.2371256,42.1663394],[-90.2374421,42.1664945],[-90.2379207,42.1667451],[-90.2382817,42.1669],[-90.2384602,42.1669705],[-90.2386276,42.1670398],[-90.23910599999999,42.1672669],[-90.2395116,42.1674394],[-90.2399243,42.1675898],[-90.2403517,42.1677291],[-90.2407047,42.1678358],[-90.2410446,42.1679302],[-90.2414422,42.1680421],[-90.241862,42.1681649],[-90.2421723,42.1682567],[-90.2422391,42.168277],[-90.2425773,42.1683824],[-90.2428654,42.168476999999996],[-90.2431814,42.1685839],[-90.2434841,42.168662],[-90.243735,42.1687514],[-90.2440158,42.168851599999996],[-90.2443171,42.1689738],[-90.2445608,42.1690742],[-90.2449809,42.169219],[-90.2454601,42.169347],[-90.2458797,42.1694477],[-90.2461307,42.1695426],[-90.2463668,42.1696266],[-90.2468241,42.1697822],[-90.2470008,42.1698486],[-90.2471701,42.1699261],[-90.24732470000001,42.1700051],[-90.2475073,42.17011],[-90.2478016,42.1702598],[-90.2479712,42.1703593],[-90.248193,42.1704929],[-90.2483162,42.1705803],[-90.2485008,42.1706922],[-90.2486702,42.1707696],[-90.248951,42.1708754],[-90.2491484,42.1709747],[-90.2493997,42.1710972],[-90.2496136,42.1711813],[-90.2498199,42.171242],[-90.2501579,42.1713363],[-90.2509585,42.1713879],[-90.2518443,42.1714403],[-90.2524856,42.1714942],[-90.2533591,42.1716073],[-90.253398,42.1716139],[-90.2546856,42.171825],[-90.2564191,42.1721766],[-90.2576355,42.1724817],[-90.2586939,42.1727286],[-90.2595443,42.1729341],[-90.2605716,42.1732143],[-90.2616267,42.1735052],[-90.2620431,42.1736432],[-90.2623527,42.1736701],[-90.262714,42.1736872],[-90.2630992,42.1736875],[-90.2635046,42.1736712],[-90.2642556,42.173760200000004],[-90.2648957,42.173863600000004],[-90.265733,42.174052599999996],[-90.2665036,42.174235100000004],[-90.2671275,42.1743814],[-90.268067,42.1745945],[-90.2687282,42.1747584],[-90.2695638,42.1749529],[-90.2703654,42.1750966],[-90.271373,42.1752721],[-90.2719836,42.1753798],[-90.27268720000001,42.1755338],[-90.2730552,42.1756513],[-90.2731352,42.1756783],[-90.2736913,42.1758828],[-90.2741432,42.1760508],[-90.2748806,42.1764029],[-90.2753908,42.1766421],[-90.2757545,42.1768671],[-90.2763521,42.177134699999996],[-90.2771053,42.1774109],[-90.2774998,42.1775764],[-90.27818189999999,42.1777842],[-90.2787838,42.1779416],[-90.27939860000001,42.1781002],[-90.2801415,42.1782759],[-90.2805446,42.1783808],[-90.2810572,42.1785098],[-90.2815835,42.1786992],[-90.2817771,42.1787834],[-90.2821753,42.1789448],[-90.2826578,42.1791828],[-90.2831013,42.1794155],[-90.28376420000001,42.1797281],[-90.2845373,42.180113],[-90.2848581,42.1803051],[-90.2854324,42.1806431],[-90.28602910000001,42.1809822],[-90.2865887,42.1813272],[-90.2870024,42.1815476],[-90.2874625,42.1817692],[-90.2884042,42.1821571],[-90.2892204,42.1825872],[-90.2898925,42.1828831],[-90.2908997,42.1833271],[-90.2913597,42.1835376],[-90.2919355,42.1838328],[-90.292222,42.1839425],[-90.2924904,42.1840882],[-90.2925482,42.1841222],[-90.2928167,42.1842748],[-90.293151,42.1845109],[-90.2936288,42.1848205],[-90.2940654,42.1850849],[-90.294545,42.1853945],[-90.2948777,42.1856472],[-90.2951985,42.1858338],[-90.295547,42.1860148],[-90.2958974,42.1862067],[-90.2963723,42.1864226],[-90.2966258,42.1865532],[-90.2968815,42.1867224],[-90.2971337,42.1869067],[-90.2974087,42.1871308],[-90.2977996,42.1874561],[-90.2981469,42.1876867],[-90.2984677,42.1878733],[-90.2988684,42.188082800000004],[-90.29940859999999,42.1883438],[-90.2997806,42.1884708],[-90.3003667,42.1886929],[-90.3007773,42.188799],[-90.3011375,42.1888697],[-90.3015838,42.1890141],[-90.3025505,42.1893095],[-90.3032252,42.1895061],[-90.3035842,42.1896278],[-90.3038424,42.189686699999996],[-90.3044589,42.189821800000004],[-90.305304,42.1900104],[-90.3057944,42.1901229],[-90.306241,42.190298999999996],[-90.3066654,42.190465700000004],[-90.3071329,42.1906871],[-90.3079529,42.1909407],[-90.3084872,42.191163],[-90.3090712,42.1913644],[-90.3096587,42.1915382],[-90.3101197,42.1916771],[-90.3107219,42.1918453],[-90.31116420000001,42.1919594],[-90.3112199,42.191974200000004],[-90.3117625,42.192119399999996],[-90.312108,42.192197],[-90.3122326,42.192232000000004],[-90.3124612,42.192300700000004],[-90.3129593,42.1924351],[-90.3134811,42.1925419],[-90.3140667,42.1927157],[-90.3146837,42.1928782],[-90.315072,42.1929776],[-90.3154324,42.1930606],[-90.3157334,42.1931357],[-90.3161367,42.1932405],[-90.3164735,42.1933663],[-90.3168904,42.193533],[-90.3172142,42.193652],[-90.3142088,42.1937492],[-90.3134866,42.1937692],[-90.3122644,42.1938035],[-90.2930543,42.194106],[-90.2927209,42.1941123],[-90.2735471,42.1945259],[-90.2732841,42.1945317],[-90.2732378,42.1945334],[-90.2539972,42.1949567],[-90.2538176,42.1949606],[-90.2501432,42.195041],[-90.23445219999999,42.195365100000004],[-90.2341262,42.1953712],[-90.232,42.195417],[-90.2147051,42.1957825],[-90.2146514,42.1957842],[-90.2145033,42.195792],[-90.1957005,42.1961843],[-90.195657,42.1961852],[-90.1949448,42.196201],[-90.19421320000001,42.1962148],[-90.1757935,42.1965826],[-90.1749378,42.1965997],[-90.1748563,42.1966001],[-90.1601316,42.1967219],[-90.1559526,42.1967569],[-90.1552655,42.1967743],[-90.1546783,42.196777499999996],[-90.1360446,42.1968883],[-90.1356723,42.1968916],[-90.1355852,42.1968962],[-90.1250338,42.1969686],[-90.1153615,42.1971555],[-90.0961036,42.197283999999996],[-90.076164,42.196994000000004],[-90.0746966,42.1969734],[-90.0564239,42.197058],[-90.0552643,42.197063299999996],[-90.0541064,42.197060300000004],[-90.0358494,42.1970233],[-90.0161056,42.1970946],[-90.01605,42.1970934],[-89.9979765,42.1970679],[-89.9783163,42.196951],[-89.9587112,42.1967536],[-89.9390231,42.1968867],[-89.9197855,42.1967726]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"KANE","CO_FIPS":89},"geometry":{"type":"Polygon","coordinates":[[[-88.5885817,42.1536476],[-88.5884132,42.1536463],[-88.5695177,42.1536291],[-88.5694233,42.1536311],[-88.5693715,42.1536307],[-88.569327,42.1536304],[-88.5692659,42.1536313],[-88.5692141,42.153630899999996],[-88.5691696,42.1536306],[-88.5641558,42.1536419],[-88.5500159,42.1536718],[-88.5499678,42.1536728],[-88.5499196,42.1536738],[-88.5498419,42.1536732],[-88.5497919,42.1536742],[-88.5497123,42.1536736],[-88.530709,42.1536757],[-88.530522,42.153677],[-88.5303665,42.1536757],[-88.5302647,42.1536763],[-88.511167,42.1536733],[-88.511093,42.153674],[-88.5110244,42.1536762],[-88.5109726,42.1536758],[-88.5108985,42.1536766],[-88.5108467,42.1536762],[-88.505937,42.1536542],[-88.5000867,42.1536326],[-88.500088,42.1535458],[-88.4914164,42.153385],[-88.4719565,42.1534653],[-88.4517044,42.1537698],[-88.4324081,42.1537956],[-88.4130006,42.1538256],[-88.3936154,42.1538444],[-88.3933156,42.153833399999996],[-88.3930842,42.1538341],[-88.3738219,42.153917],[-88.3545343,42.1538506],[-88.354534,42.1539774],[-88.33589309999999,42.1538783],[-88.3163174,42.1537646],[-88.2965976,42.1538447],[-88.2772079,42.1538891],[-88.2576895,42.1540807],[-88.2386473,42.1542382],[-88.2385714,42.154240200000004],[-88.2386432,42.1394498],[-88.2385836,42.124961],[-88.2383566,42.1248236],[-88.2384085,42.1103082],[-88.238303,42.0959011],[-88.2382753,42.0812906],[-88.2380799,42.0669482],[-88.2425144,42.0668314],[-88.2576601,42.0670679],[-88.2636348,42.0671603],[-88.2635558,42.0596283],[-88.263553,42.0594767],[-88.2635507,42.0592962],[-88.2633376,42.0447205],[-88.2632785,42.0303184],[-88.2632767,42.0302164],[-88.2632769,42.0301062],[-88.2632552,42.0156822],[-88.2631201,42.0010915],[-88.2627271,41.9863683],[-88.2626556,41.9720477],[-88.2626157,41.9574131],[-88.2627446,41.9429384],[-88.2627458,41.942768900000004],[-88.2627437,41.9425801],[-88.2625845,41.9283173],[-88.2624333,41.9137166],[-88.2622816,41.8991489],[-88.2624542,41.8846007],[-88.2626548,41.869925800000004],[-88.2626549,41.8555216],[-88.2626333,41.8411031],[-88.2626325,41.8409404],[-88.2626371,41.8407916],[-88.2629186,41.8264201],[-88.2628588,41.8120697],[-88.2627162,41.7975143],[-88.26271320000001,41.7973737],[-88.2627104,41.7972234],[-88.2623426,41.7829012],[-88.2623432,41.7682751],[-88.2620883,41.7537289],[-88.2618558,41.739179899999996],[-88.2614639,41.7245932],[-88.2614567,41.7243864],[-88.2806974,41.7240893],[-88.300258,41.723897],[-88.3190004,41.723613],[-88.3193455,41.7236074],[-88.3199047,41.7236142],[-88.3388394,41.723208400000004],[-88.3394823,41.7232683],[-88.3588283,41.722896399999996],[-88.3653113,41.7228043],[-88.3712651,41.722671],[-88.3751839,41.722666000000004],[-88.3904535,41.722458],[-88.3905161,41.7224572],[-88.3944814,41.722414799999996],[-88.409868,41.7222522],[-88.4099323,41.7222528],[-88.4139804,41.7222147],[-88.4293046,41.7220243],[-88.4293709,41.7220235],[-88.4333932,41.7219817],[-88.4488599,41.7217308],[-88.4489317,41.7217287],[-88.4529925,41.7216908],[-88.4683408,41.721475],[-88.4684125,41.7214742],[-88.4724145,41.721431],[-88.4887893,41.7210862],[-88.4895623,41.7210623],[-88.5000593,41.7209509],[-88.5082342,41.7208636],[-88.508709,41.7208551],[-88.5089666,41.7208517],[-88.5181522,41.7207142],[-88.5189986,41.720700300000004],[-88.5274959,41.7205745],[-88.5276228,41.7205796],[-88.5283414,41.720563999999996],[-88.5382224,41.7203499],[-88.543697,41.720231999999996],[-88.5469744,41.7201613],[-88.5477877,41.7201442],[-88.547865,41.7201435],[-88.5656954,41.7199555],[-88.5662014,41.7199511],[-88.566264,41.7199489],[-88.5666339,41.7199407],[-88.5667277,41.71994],[-88.5856299,41.7197946],[-88.585676,41.7197908],[-88.5863789,41.7197782],[-88.602009,41.719576599999996],[-88.60201,41.7196469],[-88.6020438,41.7314631],[-88.6020513,41.7341122],[-88.6020338,41.7386493],[-88.6019951,41.748571],[-88.60199420000001,41.748644],[-88.6019869,41.7500318],[-88.6021016,41.7629825],[-88.6021007,41.7630528],[-88.6021034,41.7634084],[-88.6021049,41.763571],[-88.602146,41.777505],[-88.6021483,41.7778868],[-88.6021476,41.7780839],[-88.6022952,41.7920405],[-88.6022857,41.792617899999996],[-88.6022998,41.7926648],[-88.6023053,41.7932258],[-88.6023948,41.8065643],[-88.6023935,41.8069419],[-88.6023043,41.8211196],[-88.6021606,41.8211213],[-88.6020814,41.8211221],[-88.6020865,41.8211497],[-88.6020874,41.8216472],[-88.6020904,41.8355346],[-88.6020898,41.835716500000004],[-88.6020891,41.8357717],[-88.6020847,41.8360996],[-88.6018893,41.850080399999996],[-88.6018852,41.8502513],[-88.6018839,41.8504883],[-88.6017688,41.864659700000004],[-88.6017425,41.8648414],[-88.6017431,41.864929599999996],[-88.6016406,41.8750686],[-88.6015324,41.8793536],[-88.6015322,41.8795121],[-88.6015315,41.879841400000004],[-88.60143360000001,41.8939574],[-88.6013331,41.9084093],[-88.6013317,41.908514],[-88.6013328,41.9087097],[-88.6013742,41.9230302],[-88.6013743,41.923162500000004],[-88.6013753,41.9232259],[-88.6014219,41.937573799999996],[-88.6014159,41.9376068],[-88.6014163,41.9377225],[-88.6014176,41.9377611],[-88.6013477,41.9521258],[-88.601349,41.9523022],[-88.6013499,41.952372499999996],[-88.6014217,41.9667697],[-88.6014186,41.9670039],[-88.601417,41.9671279],[-88.6014158,41.9672189],[-88.601229,41.9813439],[-88.6012324,41.981501],[-88.6013698,41.9934566],[-88.6013993,41.9960383],[-88.6013995,41.996095499999996],[-88.6013989,41.9961423],[-88.6013811,42.000003],[-88.6014275,42.0061307],[-88.6014581,42.0105207],[-88.6014576,42.0105552],[-88.6014579,42.010672299999996],[-88.6015651,42.0249198],[-88.6015662,42.0251114],[-88.6015665,42.0252299],[-88.6016434,42.0393916],[-88.6016443,42.0397443],[-88.6016439,42.0397746],[-88.6016466,42.0398518],[-88.6018052,42.0544065],[-88.6018065,42.054450599999996],[-88.60193459999999,42.0664298],[-88.6019544,42.0664686],[-88.5972894,42.0664575],[-88.5883015,42.066436100000004],[-88.5882888,42.0665572],[-88.5882298,42.0809942],[-88.5882313,42.081023099999996],[-88.5882324,42.0810755],[-88.5882642,42.095497800000004],[-88.5882687,42.0957196],[-88.5882486,42.1100077],[-88.5882065,42.1153459],[-88.5881448,42.1228249],[-88.5881581,42.1244479],[-88.5881581,42.1245856],[-88.5881621,42.124700000000004],[-88.5883825,42.1336372],[-88.5885099,42.1388911],[-88.5885112,42.138927],[-88.5885118,42.1390262],[-88.5885817,42.1536476]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"DEKALB","CO_FIPS":37},"geometry":{"type":"Polygon","coordinates":[[[-88.7055854,42.1535406],[-88.6860407,42.1534821],[-88.6859611,42.1534816],[-88.685913,42.153481299999996],[-88.6665591,42.153418200000004],[-88.6663962,42.1534185],[-88.6663388,42.153419400000004],[-88.6469573,42.1534894],[-88.646837,42.15349],[-88.6277687,42.1533883],[-88.6275666,42.153413],[-88.6275132,42.153387800000004],[-88.6273965,42.1533884],[-88.6250195,42.1533741],[-88.6080268,42.153544600000004],[-88.60792119999999,42.1535466],[-88.6078416,42.153546],[-88.6077565,42.1535454],[-88.6028535,42.153571400000004],[-88.6006039,42.1535838],[-88.5885817,42.1536476],[-88.5885118,42.1390262],[-88.5885112,42.138927],[-88.5885099,42.1388911],[-88.5883825,42.1336372],[-88.5881621,42.124700000000004],[-88.5881581,42.1245856],[-88.5881581,42.1244479],[-88.5881448,42.1228249],[-88.5882065,42.1153459],[-88.5882486,42.1100077],[-88.5882687,42.0957196],[-88.5882642,42.095497800000004],[-88.5882324,42.0810755],[-88.5882313,42.081023099999996],[-88.5882298,42.0809942],[-88.5882888,42.0665572],[-88.5883015,42.066436100000004],[-88.5972894,42.0664575],[-88.6019544,42.0664686],[-88.60193459999999,42.0664298],[-88.6018065,42.054450599999996],[-88.6018052,42.0544065],[-88.6016466,42.0398518],[-88.6016439,42.0397746],[-88.6016443,42.0397443],[-88.6016434,42.0393916],[-88.6015665,42.0252299],[-88.6015662,42.0251114],[-88.6015651,42.0249198],[-88.6014579,42.010672299999996],[-88.6014576,42.0105552],[-88.6014581,42.0105207],[-88.6014275,42.0061307],[-88.6013811,42.000003],[-88.6013989,41.9961423],[-88.6013995,41.996095499999996],[-88.6013993,41.9960383],[-88.6013698,41.9934566],[-88.6012324,41.981501],[-88.601229,41.9813439],[-88.6014158,41.9672189],[-88.601417,41.9671279],[-88.6014186,41.9670039],[-88.6014217,41.9667697],[-88.6013499,41.952372499999996],[-88.601349,41.9523022],[-88.6013477,41.9521258],[-88.6014176,41.9377611],[-88.6014163,41.9377225],[-88.6014159,41.9376068],[-88.6014219,41.937573799999996],[-88.6013753,41.9232259],[-88.6013743,41.923162500000004],[-88.6013742,41.9230302],[-88.6013328,41.9087097],[-88.6013317,41.908514],[-88.6013331,41.9084093],[-88.60143360000001,41.8939574],[-88.6015315,41.879841400000004],[-88.6015322,41.8795121],[-88.6015324,41.8793536],[-88.6016406,41.8750686],[-88.6017431,41.864929599999996],[-88.6017425,41.8648414],[-88.6017688,41.864659700000004],[-88.6018839,41.8504883],[-88.6018852,41.8502513],[-88.6018893,41.850080399999996],[-88.6020847,41.8360996],[-88.6020891,41.8357717],[-88.6020898,41.835716500000004],[-88.6020904,41.8355346],[-88.6020874,41.8216472],[-88.6020865,41.8211497],[-88.6020814,41.8211221],[-88.6021606,41.8211213],[-88.6023043,41.8211196],[-88.6023935,41.8069419],[-88.6023948,41.8065643],[-88.6023053,41.7932258],[-88.6022998,41.7926648],[-88.6022857,41.792617899999996],[-88.6022952,41.7920405],[-88.6021476,41.7780839],[-88.6021483,41.7778868],[-88.602146,41.777505],[-88.6021049,41.763571],[-88.6021034,41.7634084],[-88.6021007,41.7630528],[-88.6021016,41.7629825],[-88.6019869,41.7500318],[-88.60199420000001,41.748644],[-88.6019951,41.748571],[-88.6020338,41.7386493],[-88.6020513,41.7341122],[-88.6020438,41.7314631],[-88.60201,41.7196469],[-88.602009,41.719576599999996],[-88.6034922,41.719540699999996],[-88.60372219999999,41.7195369],[-88.6034658,41.7096582],[-88.60332030000001,41.7040805],[-88.6033162,41.703826899999996],[-88.6029999,41.689559],[-88.6029982,41.6894102],[-88.6027463,41.6750089],[-88.6027447,41.6748545],[-88.6024414,41.6604499],[-88.602436,41.6603037],[-88.60231279999999,41.6459126],[-88.6023106,41.645799600000004],[-88.6022566,41.637330399999996],[-88.602218,41.631463600000004],[-88.6214672,41.6312754],[-88.6215627,41.6312747],[-88.625057,41.6312794],[-88.6409523,41.6311561],[-88.6410607,41.6311541],[-88.6601194,41.6310466],[-88.6601562,41.6310455],[-88.6602205,41.631044599999996],[-88.6795313,41.630893],[-88.6798418,41.630891],[-88.6989055,41.630650599999996],[-88.6990249,41.63065],[-88.6993535,41.6306715],[-88.6997231,41.6306436],[-88.712241,41.630542399999996],[-88.71241,41.6305421],[-88.7316691,41.6307086],[-88.7317242,41.630708999999996],[-88.7451365,41.6307961],[-88.7501994,41.6308303],[-88.7505798,41.6308189],[-88.7509234,41.63081],[-88.751019,41.630810600000004],[-88.7700855,41.6309794],[-88.7703537,41.6309824],[-88.7704382,41.630981500000004],[-88.7889487,41.6310916],[-88.789757,41.631096299999996],[-88.7898893,41.6310971],[-88.8085198,41.6313318],[-88.8090783,41.6313391],[-88.8092344,41.6313386],[-88.8182149,41.6313219],[-88.8182682,41.631319500000004],[-88.8183766,41.6313173],[-88.8317027,41.6310415],[-88.8376197,41.6309197],[-88.8377722,41.6309177],[-88.8378769,41.6309142],[-88.8568911,41.630406],[-88.8571539,41.6303992],[-88.8572991,41.6303944],[-88.8717415,41.6299547],[-88.8750611,41.6299677],[-88.8763969,41.6299429],[-88.8957122,41.6295929],[-88.8957765,41.6295918],[-88.9120852,41.6291235],[-88.9150621,41.6290373],[-88.9151687,41.629035099999996],[-88.9152661,41.6290328],[-88.9203265,41.6289234],[-88.9248742,41.6288266],[-88.9268478,41.6287601],[-88.933772,41.6285267],[-88.938706,41.628360799999996],[-88.9388475,41.6283587],[-88.9388504,41.628458],[-88.9388636,41.6295373],[-88.9388704,41.6300446],[-88.9390293,41.642715100000004],[-88.93903040000001,41.642806],[-88.9390333,41.6428984],[-88.9390346,41.6429659],[-88.9391356,41.6479133],[-88.9392361,41.6529102],[-88.9393238,41.6572371],[-88.939325,41.657314299999996],[-88.9393262,41.6573915],[-88.9393277,41.657438400000004],[-88.9394983,41.6689177],[-88.93954,41.67168],[-88.9395414,41.6717407],[-88.9397157,41.6812104],[-88.9398055,41.6861878],[-88.939807,41.686225],[-88.9398127,41.6864331],[-88.9401092,41.7007451],[-88.9401132,41.700938],[-88.9401157,41.701074500000004],[-88.9403049,41.7170617],[-88.9403509,41.7170619],[-88.9417506,41.717078],[-88.9417498,41.7173977],[-88.941749,41.717497],[-88.9416575,41.7316316],[-88.9416568,41.7319473],[-88.9416106,41.746161900000004],[-88.9416034,41.7463727],[-88.9414482,41.7500504],[-88.9413767,41.7608027],[-88.9413768,41.7610136],[-88.9413402,41.7751493],[-88.9413382,41.7754015],[-88.9413378,41.7756716],[-88.9412651,41.7897188],[-88.9412647,41.7897698],[-88.9412422,41.7900453],[-88.9412435,41.7901018],[-88.941236,41.8045129],[-88.941238,41.804712800000004],[-88.941292,41.819033],[-88.9412726,41.8191528],[-88.9412554,41.8192216],[-88.9412625,41.8192588],[-88.9413625,41.833579],[-88.9413656,41.8338767],[-88.9413671,41.833925],[-88.9413189,41.8481244],[-88.9413197,41.8482443],[-88.9413204,41.8483876],[-88.9413183,41.8625787],[-88.941318,41.8626104],[-88.9412992,41.8628901],[-88.9412894,41.8629507],[-88.94128979999999,41.8631326],[-88.9412161,41.8750329],[-88.9411952,41.8771371],[-88.94119309999999,41.877166],[-88.9411956,41.877316199999996],[-88.9411948,41.8774085],[-88.9411891,41.8918114],[-88.9411943,41.8920774],[-88.941378,41.9063322],[-88.9413792,41.9064038],[-88.9414182,41.9207665],[-88.9414235,41.9212433],[-88.9415358,41.9354339],[-88.9415392,41.9357013],[-88.9416532,41.9499192],[-88.9416576,41.9502885],[-88.9417697,41.9642954],[-88.9417742,41.9646468],[-88.9418862,41.9788918],[-88.9416351,41.978892099999996],[-88.9416627,41.979124999999996],[-88.9418535,41.993443299999996],[-88.9418619,41.993548000000004],[-88.9418807,42.0000391],[-88.941842,42.0051988],[-88.9418418,42.005230499999996],[-88.9418189,42.008012199999996],[-88.9418238,42.008544],[-88.9418518,42.0116662],[-88.9419457,42.0225111],[-88.9419433,42.023251],[-88.9419005,42.034323900000004],[-88.9418994,42.0344616],[-88.941887,42.0370959],[-88.941886,42.0376593],[-88.9418256,42.0517754],[-88.94182789999999,42.0519393],[-88.9419955,42.0650766],[-88.9388465,42.0651063],[-88.9388202,42.0651585],[-88.9388265,42.0655154],[-88.9388272,42.0656531],[-88.9389814,42.0796747],[-88.9389874,42.0800715],[-88.9391409,42.0941823],[-88.9391469,42.0945763],[-88.9393004,42.1086938],[-88.9393062,42.1091113],[-88.9394637,42.1232107],[-88.9394668,42.1235041],[-88.9394823,42.124992],[-88.9396663,42.1376765],[-88.9396684,42.1380898],[-88.9397384,42.1522668],[-88.9392996,42.1522703],[-88.9200277,42.1524297],[-88.9198481,42.1524302],[-88.9006184,42.1526198],[-88.9001852,42.152626],[-88.8811156,42.152907],[-88.8809971,42.1529091],[-88.8809434,42.1529089],[-88.8808231,42.1529083],[-88.8751355,42.152927500000004],[-88.8615861,42.1530517],[-88.8614732,42.1530539],[-88.8613936,42.1530549],[-88.8613195,42.153054499999996],[-88.8612251,42.1530567],[-88.8421794,42.1533249],[-88.8420034,42.153328099999996],[-88.841885,42.1533288],[-88.8417369,42.153328],[-88.8416554,42.1533289],[-88.8412703,42.1533324],[-88.8223722,42.1534412],[-88.8222037,42.1534403],[-88.8033322,42.1534788],[-88.8031397,42.1534791],[-88.8029675,42.1534781],[-88.8029009,42.1534791],[-88.7837054,42.1535127],[-88.7835573,42.1535119],[-88.7642932,42.153543400000004],[-88.7641951,42.1535442],[-88.7641229,42.1535438],[-88.7640303,42.1535432],[-88.7639674,42.1535428],[-88.7636767,42.1535425],[-88.7500857,42.1535383],[-88.744835,42.1535514],[-88.7446591,42.1535517],[-88.7251818,42.1535977],[-88.7250911,42.1535985],[-88.7055854,42.1535406]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"COOK","CO_FIPS":31},"geometry":{"type":"Polygon","coordinates":[[[-88.2385714,42.154240200000004],[-88.2193715,42.154208499999996],[-88.2191957,42.154208],[-88.1998443,42.1542529],[-88.180689,42.1542101],[-88.1608516,42.1542036],[-88.141304,42.1541421],[-88.1215655,42.1540008],[-88.1018331,42.1539226],[-88.0824113,42.1538668],[-88.0628645,42.1537651],[-88.0434413,42.153772000000004],[-88.0241387,42.153678],[-88.004466,42.153573800000004],[-87.9850484,42.1536513],[-87.9656205,42.153519],[-87.9462102,42.1534224],[-87.9265242,42.153244799999996],[-87.9069934,42.1530798],[-87.8873905,42.1529851],[-87.8679399,42.152950000000004],[-87.8677048,42.1529496],[-87.8674401,42.1529474],[-87.848209,42.152866599999996],[-87.8288284,42.1527669],[-87.8286323,42.1527628],[-87.8284212,42.1527613],[-87.809096,42.1526675],[-87.7895268,42.152554800000004],[-87.7700178,42.1524068],[-87.7589084,42.1523867],[-87.7589806,42.1523133],[-87.7588116,42.152118],[-87.75832510000001,42.1514525],[-87.7578224,42.1508391],[-87.7573994,42.150439],[-87.7575218,42.1502892],[-87.7572571,42.1497839],[-87.7567991,42.1493034],[-87.7562,42.1486997],[-87.7559877,42.1483136],[-87.7556833,42.147912399999996],[-87.7555285,42.1475961],[-87.7553005,42.1472484],[-87.7550502,42.1467598],[-87.7547343,42.146229],[-87.754261,42.1456298],[-87.75390709999999,42.145137],[-87.7540574,42.144907599999996],[-87.7531858,42.1441016],[-87.7525752,42.1433708],[-87.7528546,42.143306],[-87.7521852,42.142555099999996],[-87.75161,42.1418883],[-87.7511308,42.141374400000004],[-87.7512254,42.1412958],[-87.7511506,42.1410385],[-87.7504577,42.1403424],[-87.7494323,42.139046300000004],[-87.7489659,42.1384665],[-87.7481231,42.1376994],[-87.7487173,42.1373428],[-87.7476839,42.136216],[-87.7470745,42.1355845],[-87.7466524,42.1350135],[-87.7463793,42.1346955],[-87.74603379999999,42.1341697],[-87.7456813,42.1337706],[-87.7458952,42.1336607],[-87.7452518,42.1331995],[-87.74453,42.1326242],[-87.74376960000001,42.1318252],[-87.7438786,42.1317606],[-87.7434826,42.1313278],[-87.7433563,42.1309154],[-87.7429354,42.1304436],[-87.7429548,42.1301242],[-87.7426126,42.129615],[-87.7422246,42.129017],[-87.7418204,42.1284738],[-87.7415925,42.1279855],[-87.7415018,42.127626],[-87.7409349,42.1272182],[-87.7404184,42.1264392],[-87.7399348,42.125961000000004],[-87.7399404,42.1257462],[-87.7397022,42.1253679],[-87.739361,42.1249635],[-87.7392622,42.124920700000004],[-87.73917900000001,42.1247018],[-87.738627,42.1242943],[-87.7381467,42.123405500000004],[-87.7376814,42.1227925],[-87.7368457,42.1220475],[-87.7360087,42.1209276],[-87.7360646,42.1207686],[-87.7356594,42.1205533],[-87.7352061,42.1200507],[-87.7346147,42.1197335],[-87.7340404,42.1191879],[-87.7337395,42.1186627],[-87.7331965,42.1181919],[-87.7317683,42.1171791],[-87.7317737,42.1172564],[-87.7307637,42.1163875],[-87.7304567,42.1162397],[-87.7298674,42.1164103],[-87.729575,42.116125],[-87.7305162,42.1155186],[-87.7308595,42.1152728],[-87.7301275,42.1145319],[-87.7296572,42.1139739],[-87.7289699,42.1129388],[-87.7283996,42.1119606],[-87.7278206,42.111175],[-87.7270102,42.1106039],[-87.727059,42.1104365],[-87.7264094,42.109523100000004],[-87.7259658,42.108794700000004],[-87.7254295,42.1083598],[-87.7248759,42.1080183],[-87.7247507,42.1078511],[-87.724754,42.1075838],[-87.7236929,42.1067004],[-87.721971,42.1054683],[-87.7220258,42.1052155],[-87.72107510000001,42.1043557],[-87.721087,42.1041822],[-87.7206486,42.103825900000004],[-87.7202727,42.1034842],[-87.7202243,42.1032134],[-87.7194446,42.1027501],[-87.71870200000001,42.1021385],[-87.717873,42.1014402],[-87.7172549,42.100880000000004],[-87.7165883,42.1001979],[-87.7158637,42.099468],[-87.7154651,42.0995697],[-87.7152809,42.0992583],[-87.7152553,42.0989631],[-87.7148877,42.0988723],[-87.7147967,42.0983942],[-87.7143964,42.097997],[-87.7135261,42.0973229],[-87.7130409,42.0967784],[-87.7124388,42.0963177],[-87.7114511,42.0958898],[-87.7114531,42.095672199999996],[-87.7104763,42.0949689],[-87.7089873,42.0941892],[-87.7081213,42.0934958],[-87.7078721,42.093404],[-87.70710869999999,42.0928884],[-87.706659,42.092124],[-87.705857,42.0915307],[-87.7049142,42.091087],[-87.7050469,42.0909649],[-87.7040105,42.0902827],[-87.7023227,42.089191400000004],[-87.7012485,42.0886795],[-87.7002907,42.0882465],[-87.7002915,42.087935099999996],[-87.6984624,42.0868774],[-87.6984789,42.086671],[-87.696977,42.0859709],[-87.6960618,42.0853263],[-87.6952516,42.0847714],[-87.6940025,42.0840254],[-87.6932742,42.0835902],[-87.6916561,42.0828084],[-87.6893924,42.081824],[-87.6873501,42.081],[-87.68481919999999,42.080053],[-87.6835397,42.0793422],[-87.6823035,42.0789518],[-87.6819411,42.0786708],[-87.6816966,42.0782703],[-87.6799788,42.0785947],[-87.67986930000001,42.0785407],[-87.681325,42.0781959],[-87.681297,42.0771703],[-87.6817942,42.0775277],[-87.6831146,42.0772635],[-87.6837058,42.076872699999996],[-87.6843857,42.0760726],[-87.6856552,42.0748072],[-87.6852758,42.0747437],[-87.6840841,42.0758724],[-87.6834566,42.0755434],[-87.6824655,42.0763609],[-87.6821967,42.0770045],[-87.6822698,42.076211900000004],[-87.6822405,42.0755115],[-87.6818647,42.0743512],[-87.6809819,42.0731998],[-87.6802659,42.0724533],[-87.6797217,42.0717811],[-87.67925460000001,42.0708536],[-87.678582,42.069870800000004],[-87.6777883,42.0685747],[-87.6772105,42.0677778],[-87.6769954,42.0673888],[-87.67668689999999,42.0668936],[-87.6762679,42.0666586],[-87.67587209999999,42.0663826],[-87.6758745,42.0661567],[-87.6757176,42.0660799],[-87.6756395,42.0658197],[-87.6757255,42.0656474],[-87.6754929,42.0650844],[-87.6747809,42.0639163],[-87.6747757,42.0630095],[-87.6744303,42.0619654],[-87.6734986,42.0619542],[-87.6734917,42.061662],[-87.6735169,42.0614115],[-87.6739403,42.0610734],[-87.674003,42.0605287],[-87.6727963,42.0596066],[-87.6718049,42.059481500000004],[-87.6717004,42.0599264],[-87.6710769,42.0601458],[-87.6701396,42.0597956],[-87.6695492,42.0591969],[-87.6697486,42.0581141],[-87.6698681,42.0565643],[-87.6699053,42.0554597],[-87.6698681,42.0543733],[-87.6697176,42.0535112],[-87.6694952,42.0525708],[-87.6691854,42.0518579],[-87.6694365,42.0515943],[-87.6698653,42.0514657],[-87.6704841,42.051692700000004],[-87.6703741,42.0522037],[-87.669867,42.051947999999996],[-87.6699912,42.0526885],[-87.6701865,42.0532647],[-87.6703668,42.054119],[-87.6704573,42.0548755],[-87.6704669,42.0554792],[-87.6703689,42.0567812],[-87.6702941,42.0574967],[-87.6702165,42.058179],[-87.6702179,42.0586751],[-87.6708008,42.0585901],[-87.6732542,42.0589493],[-87.6738397,42.0593164],[-87.6743848,42.0592639],[-87.6743953,42.057910899999996],[-87.6742292,42.0576245],[-87.6742675,42.0573027],[-87.6739725,42.0569951],[-87.6739958,42.0559923],[-87.6734783,42.0559845],[-87.6735535,42.055666],[-87.6742715,42.055643599999996],[-87.6742907,42.0555489],[-87.6744131,42.0549182],[-87.6743915,42.0542096],[-87.67413619999999,42.05339],[-87.6738076,42.0528229],[-87.6736463,42.051809],[-87.6733298,42.051754700000004],[-87.6732729,42.0508444],[-87.6732873,42.0500371],[-87.673566,42.0499861],[-87.67309470000001,42.048816099999996],[-87.672373,42.048017],[-87.6731821,42.047767300000004],[-87.6726621,42.0466186],[-87.67211449999999,42.0455356],[-87.6721009,42.0452157],[-87.6719842,42.0440592],[-87.6718401,42.043233],[-87.6710553,42.0424468],[-87.6705518,42.0420589],[-87.6705071,42.0419342],[-87.6694976,42.040982],[-87.6690784,42.0400759],[-87.6686618,42.0387316],[-87.6682486,42.0367824],[-87.6679881,42.0319899],[-87.6675978,42.0298826],[-87.6674521,42.0279539],[-87.6670499,42.0266277],[-87.666443,42.0255603],[-87.6655698,42.0238164],[-87.6652824,42.0229632],[-87.66507250000001,42.0221139],[-87.6642689,42.0213494],[-87.6642561,42.0210047],[-87.6638354,42.0201605],[-87.66410020000001,42.0199358],[-87.6639191,42.0193901],[-87.6637957,42.0191705],[-87.6638227,42.018718899999996],[-87.66343570000001,42.0182694],[-87.6635034,42.017953399999996],[-87.663291,42.017605700000004],[-87.6632077,42.0171332],[-87.6632697,42.0168916],[-87.6629755,42.0165647],[-87.6628362,42.0162512],[-87.6628355,42.0158681],[-87.6620846,42.014798400000004],[-87.6622009,42.0144639],[-87.6615587,42.013338],[-87.6615727,42.0129579],[-87.6613574,42.0127218],[-87.661154,42.012725599999996],[-87.660062,42.0108846],[-87.6586773,42.0097502],[-87.6589379,42.0095447],[-87.6582265,42.0090681],[-87.6571831,42.007757],[-87.6563703,42.0066616],[-87.6558978,42.0063678],[-87.6552971,42.006717699999996],[-87.6559517,42.0061536],[-87.6571965,42.0061724],[-87.6573302,42.005196],[-87.6571643,42.004504499999996],[-87.6571713,42.0036998],[-87.6569841,42.0029749],[-87.6568331,42.0022781],[-87.6566866,42.0019562],[-87.6562736,42.0012471],[-87.6562465,42.0010207],[-87.6563545,42.0008514],[-87.655935,41.9998363],[-87.6552211,41.9982325],[-87.6545835,41.9981732],[-87.654494,41.9976592],[-87.6546887,41.9975657],[-87.6546408,41.9971543],[-87.65425379999999,41.996983],[-87.6542427,41.9964399],[-87.6545136,41.996397099999996],[-87.6545666,41.9954002],[-87.6544035,41.9952847],[-87.6545292,41.9951433],[-87.65450440000001,41.9945614],[-87.6542681,41.994555],[-87.6541393,41.993993599999996],[-87.6544044,41.9938929],[-87.6544231,41.9934742],[-87.6545759,41.9934269],[-87.6544488,41.9928021],[-87.6540117,41.9927073],[-87.6540303,41.9922969],[-87.6544684,41.992083],[-87.6540874,41.9901975],[-87.6546881,41.990115599999996],[-87.6546841,41.9895836],[-87.6545112,41.9894211],[-87.6545096,41.9889388],[-87.6546283,41.9887835],[-87.6539279,41.9883181],[-87.6515864,41.9858488],[-87.6504942,41.985396800000004],[-87.6499459,41.9851817],[-87.6503915,41.9838793],[-87.65041,41.9837404],[-87.6505473,41.9826358],[-87.6505809,41.9819445],[-87.6504564,41.980277900000004],[-87.6500694,41.9798365],[-87.6502916,41.9794099],[-87.6493254,41.978538],[-87.6490432,41.977916300000004],[-87.6475851,41.9777453],[-87.6468057,41.9776095],[-87.6464007,41.9772891],[-87.646164,41.9770319],[-87.646029,41.9731849],[-87.6450831,41.9713017],[-87.64325840000001,41.969146],[-87.641937,41.9679021],[-87.6403802,41.9668943],[-87.6388201,41.9661429],[-87.6370173,41.9656219],[-87.635415,41.9653328],[-87.63175580000001,41.9651692],[-87.6314551,41.9640207],[-87.6312626,41.9632322],[-87.6312706,41.9626728],[-87.6318926,41.9623461],[-87.6335139,41.9618087],[-87.6341293,41.9614543],[-87.6351451,41.9605051],[-87.6364552,41.9595963],[-87.6379618,41.959465],[-87.639463,41.9595293],[-87.6406462,41.9597458],[-87.6408352,41.9603937],[-87.6407233,41.9607034],[-87.6404791,41.9608568],[-87.6397814,41.9607138],[-87.6386002,41.9602879],[-87.6375812,41.9604129],[-87.6365878,41.9608194],[-87.6352545,41.9620338],[-87.63525010000001,41.9623286],[-87.6356309,41.9627176],[-87.6364628,41.9628158],[-87.6414908,41.9623469],[-87.642118,41.9616949],[-87.6421135,41.9610499],[-87.6415706,41.9603746],[-87.6414648,41.9595185],[-87.6416192,41.9583329],[-87.6413253,41.9566581],[-87.6407604,41.9546318],[-87.6390541,41.9501984],[-87.6378937,41.9476751],[-87.6362822,41.945718299999996],[-87.6342297,41.943694],[-87.6332434,41.942772],[-87.63310129999999,41.9423012],[-87.6333894,41.9421623],[-87.6337864,41.9422235],[-87.6339324,41.9425538],[-87.63422560000001,41.9430351],[-87.6346627,41.943118999999996],[-87.6354189,41.9428715],[-87.6359174,41.9428681],[-87.6361376,41.9430534],[-87.6370042,41.9445689],[-87.6368812,41.9448812],[-87.6374587,41.9457666],[-87.6385691,41.9460702],[-87.6390119,41.9462148],[-87.6397463,41.946225999999996],[-87.640304,41.9464909],[-87.6403034,41.9466452],[-87.6410661,41.947379],[-87.6417872,41.9478752],[-87.6421051,41.9478635],[-87.6419897,41.9474924],[-87.6410477,41.9467007],[-87.6400747,41.9458286],[-87.6403706,41.9447306],[-87.6395791,41.9435719],[-87.6391196,41.9433636],[-87.638555,41.9424096],[-87.6384652,41.9413773],[-87.6381082,41.940795800000004],[-87.6374214,41.9401968],[-87.6368498,41.9397015],[-87.63629159999999,41.9394587],[-87.6356485,41.9396197],[-87.6349242,41.940182],[-87.6346981,41.9408897],[-87.6345397,41.941546],[-87.6340266,41.9415436],[-87.633914,41.9409383],[-87.6339247,41.9401474],[-87.6334025,41.9387308],[-87.6327478,41.9377037],[-87.6322164,41.9368879],[-87.6320515,41.9359069],[-87.631229,41.9345381],[-87.6303684,41.933617999999996],[-87.6304581,41.9331756],[-87.6312633,41.9328876],[-87.6313543,41.9325334],[-87.6318473,41.9324583],[-87.6313891,41.932341],[-87.6309703,41.932133300000004],[-87.6309742,41.9315904],[-87.631143,41.9305538],[-87.6310594,41.9288959],[-87.6301835,41.9275952],[-87.6296731,41.9268266],[-87.6294603,41.9261094],[-87.6299578,41.9260041],[-87.6298468,41.9256137],[-87.6293065,41.9245938],[-87.6295077,41.924255099999996],[-87.6286918,41.922925],[-87.6294763,41.9224464],[-87.629164,41.9217277],[-87.6286068,41.9209197],[-87.6290311,41.9206534],[-87.6280651,41.919414700000004],[-87.6285505,41.9190776],[-87.6275371,41.917816099999996],[-87.6277689,41.9175743],[-87.6275861,41.9171112],[-87.6267622,41.9163377],[-87.6269324,41.9160564],[-87.6257105,41.9152658],[-87.6242293,41.9142424],[-87.6234541,41.9138501],[-87.622621,41.9135505],[-87.6217695,41.9135153],[-87.6212864,41.9136347],[-87.62025320000001,41.9141645],[-87.6202515,41.9135608],[-87.6209707,41.9129076],[-87.6229299,41.9126539],[-87.624047,41.9117588],[-87.6248285,41.9112554],[-87.6246017,41.911183],[-87.6248078,41.9106679],[-87.6254405,41.909936200000004],[-87.625081,41.9085221],[-87.6240517,41.9039691],[-87.6226407,41.9025553],[-87.62264640000001,41.9018139],[-87.6201305,41.9015297],[-87.6197362,41.901512600000004],[-87.6195012,41.9013353],[-87.6190405,41.9009174],[-87.6162486,41.8967478],[-87.6138463,41.893041600000004],[-87.6125537,41.8930905],[-87.61202,41.893311],[-87.6102317,41.8961941],[-87.6079466,41.8962413],[-87.6068513,41.896226999999996],[-87.6068501,41.8964007],[-87.6058638,41.8964432],[-87.6056298,41.8962356],[-87.6023041,41.8962885],[-87.6023119,41.8932371],[-87.609868,41.8930901],[-87.6098172,41.8919978],[-87.5985726,41.8922553],[-87.5985776,41.8914147],[-87.6009239,41.8914155],[-87.6012245,41.8910894],[-87.609482,41.8909175],[-87.6094957,41.8892307],[-87.6113594,41.8892073],[-87.6115546,41.890544500000004],[-87.614045,41.8905363],[-87.61402509999999,41.8901914],[-87.6126902,41.8901707],[-87.6125725,41.8889615],[-87.613944,41.888726399999996],[-87.6139709,41.8880239],[-87.61361600000001,41.8879164],[-87.6135736,41.8866533],[-87.61355209999999,41.8863635],[-87.6137533,41.8862922],[-87.613553,41.8861981],[-87.613519,41.8846346],[-87.6138984,41.8843869],[-87.6147717,41.8842902],[-87.616625,41.8842334],[-87.6166128,41.88401],[-87.6144792,41.8840624],[-87.6144966,41.883434199999996],[-87.61651739999999,41.8834572],[-87.6165539,41.8821401],[-87.6164612,41.8813613],[-87.6158122,41.880554599999996],[-87.6166035,41.8804842],[-87.6161434,41.8749943],[-87.6162519,41.8738713],[-87.6162544,41.8719196],[-87.6162671,41.8717269],[-87.6162346,41.8714369],[-87.6162009,41.8689252],[-87.6157169,41.8686916],[-87.6153228,41.868272],[-87.6147044,41.868229400000004],[-87.6141203,41.8684133],[-87.6130824,41.8680747],[-87.6127528,41.8675899],[-87.6133444,41.8668713],[-87.61339,41.8666901],[-87.6077678,41.8667599],[-87.6071303,41.867138600000004],[-87.6060754,41.867012],[-87.6055802,41.8665191],[-87.6056239,41.8661421],[-87.6060589,41.8656196],[-87.606061,41.8647486],[-87.6067091,41.865048099999996],[-87.6073172,41.8646634],[-87.6074198,41.8637608],[-87.6069829,41.8626321],[-87.6067268,41.8624268],[-87.6065071,41.8619713],[-87.6061163,41.861968],[-87.6059649,41.8599919],[-87.6071457,41.8599634],[-87.6065084,41.8533183],[-87.6089159,41.8530636],[-87.6096278,41.8533172],[-87.609463,41.85646],[-87.6093378,41.8568522],[-87.6100051,41.857651000000004],[-87.6098891,41.8586416],[-87.6104795,41.8592875],[-87.610353,41.8598589],[-87.6106798,41.8601755],[-87.6106456,41.8606078],[-87.6104594,41.8613381],[-87.6097645,41.8624576],[-87.6097512,41.8639983],[-87.6100036,41.8646004],[-87.6104582,41.8652277],[-87.6105487,41.8658218],[-87.6127508,41.8658036],[-87.6126785,41.8652208],[-87.6129373,41.8651945],[-87.613348,41.8638171],[-87.6133072,41.8623665],[-87.6125847,41.861294],[-87.6125411,41.8607364],[-87.6122201,41.860213200000004],[-87.61242490000001,41.8600097],[-87.6122252,41.859367],[-87.6122085,41.8585067],[-87.6126126,41.8584275],[-87.6130733,41.857638],[-87.6129947,41.8564845],[-87.6128963,41.8561797],[-87.61315139999999,41.855621400000004],[-87.6127248,41.8551847],[-87.6124336,41.854915500000004],[-87.6120039,41.8549861],[-87.6112059,41.853316899999996],[-87.6110036,41.8530326],[-87.6108867,41.852595199999996],[-87.6108107,41.8520152],[-87.6106629,41.8520239],[-87.6105512,41.8515342],[-87.6110944,41.851358],[-87.611092,41.8509141],[-87.6114066,41.8506048],[-87.6112352,41.8501362],[-87.6109505,41.849903],[-87.6107862,41.8490486],[-87.6102544,41.8484174],[-87.6098859,41.8478796],[-87.6097198,41.8470886],[-87.6097334,41.8466009],[-87.6092144,41.8461738],[-87.6093675,41.845175499999996],[-87.6090169,41.843993],[-87.6087029,41.8432218],[-87.6085087,41.8427804],[-87.6081141,41.842388299999996],[-87.60799850000001,41.8412425],[-87.6075569,41.8406843],[-87.60715569999999,41.839738],[-87.606079,41.8386875],[-87.6061315,41.8370674],[-87.6059021,41.8364353],[-87.6053682,41.8356193],[-87.6045602,41.8348514],[-87.6050247,41.8341887],[-87.604913,41.8337018],[-87.6045666,41.8331671],[-87.604016,41.832951800000004],[-87.6033613,41.832903],[-87.602758,41.8323284],[-87.6027937,41.8313145],[-87.6022188,41.830255199999996],[-87.601628,41.8297636],[-87.6017374,41.8292774],[-87.6015273,41.8284857],[-87.6011663,41.8278184],[-87.6007314,41.8272878],[-87.6004562,41.826848],[-87.599144,41.8264553],[-87.5984695,41.8256674],[-87.5984852,41.8244436],[-87.598117,41.824038099999996],[-87.5976109,41.8236856],[-87.5974539,41.8233689],[-87.59700480000001,41.822295],[-87.5958772,41.821103],[-87.59547549999999,41.8201842],[-87.5947307,41.8196681],[-87.5945175,41.8191244],[-87.5939724,41.8191103],[-87.5935279,41.8186678],[-87.592715,41.818349],[-87.5922102,41.8175554],[-87.5922122,41.8168304],[-87.5914016,41.8159052],[-87.5907055,41.814841200000004],[-87.5902701,41.8144677],[-87.5902417,41.8137698],[-87.5895512,41.8131663],[-87.5888991,41.812767300000004],[-87.5885272,41.8120998],[-87.5871805,41.8117699],[-87.5870154,41.8116129],[-87.5868337,41.811259899999996],[-87.5869058,41.8105305],[-87.5864199,41.8097262],[-87.5861109,41.809316100000004],[-87.5855832,41.8081637],[-87.5850381,41.8072398],[-87.5838775,41.8064524],[-87.5827514,41.8056159],[-87.5816942,41.8048245],[-87.5812662,41.8043216],[-87.5809987,41.8041409],[-87.5804746,41.8041712],[-87.5799471,41.8038017],[-87.5804378,41.802602],[-87.5807143,41.8015505],[-87.5807625,41.8003659],[-87.5803282,41.7993031],[-87.57973,41.7983068],[-87.5788778,41.7975655],[-87.5777878,41.7968976],[-87.5771848,41.796855],[-87.5762844,41.797036500000004],[-87.57533910000001,41.7967238],[-87.5749543,41.7962601],[-87.5753864,41.7954399],[-87.5759863,41.7950717],[-87.57691009999999,41.7949733],[-87.5782602,41.794650000000004],[-87.57890090000001,41.7941391],[-87.5793769,41.7934574],[-87.5793911,41.7922998],[-87.5788974,41.7912582],[-87.5779048,41.7896215],[-87.5763575,41.7885852],[-87.5773847,41.7883423],[-87.578177,41.7883328],[-87.578782,41.7884306],[-87.5793879,41.7882362],[-87.5798112,41.7879892],[-87.5801203,41.787475799999996],[-87.58048289999999,41.7872886],[-87.5808109,41.7871532],[-87.5811778,41.7870735],[-87.5818306,41.7874367],[-87.5821554,41.7878057],[-87.5825782,41.7882259],[-87.5825418,41.788603],[-87.5826163,41.7890977],[-87.5819028,41.7890589],[-87.5814194,41.7898728],[-87.5819675,41.789900700000004],[-87.5825104,41.7898486],[-87.5830505,41.7897689],[-87.5834769,41.7898005],[-87.5841174,41.789816099999996],[-87.5844858,41.7894249],[-87.5845326,41.7891996],[-87.5839798,41.7890778],[-87.5833509,41.7889108],[-87.5829183,41.7885787],[-87.5829093,41.7881126],[-87.5830783,41.7877348],[-87.5838615,41.7880477],[-87.5842332,41.7879267],[-87.5845724,41.787786],[-87.5845484,41.787463],[-87.5845953,41.7871026],[-87.5845372,41.7866827],[-87.58446119999999,41.7857166],[-87.5842082,41.7852825],[-87.58412870000001,41.7847051],[-87.5841369,41.7841511],[-87.5841434,41.7836577],[-87.5841455,41.7834537],[-87.5841511,41.7831258],[-87.5839363,41.7826427],[-87.5838084,41.7822134],[-87.583552,41.781771],[-87.5833695,41.7815806],[-87.5829021,41.7816973],[-87.5823657,41.7817798],[-87.5816465,41.7819449],[-87.5807873,41.782240099999996],[-87.5805326,41.7827847],[-87.5803193,41.7831645],[-87.5800366,41.7832621],[-87.5794654,41.7831428],[-87.5790305,41.783149699999996],[-87.579277,41.783550500000004],[-87.5796638,41.7838103],[-87.5802733,41.7838806],[-87.5803499,41.7843008],[-87.5804744,41.7847163],[-87.5807062,41.785119699999996],[-87.5805742,41.7854898],[-87.5806903,41.7862057],[-87.5805924,41.7869319],[-87.5798626,41.7870803],[-87.579017,41.7872847],[-87.57853779999999,41.7878175],[-87.5780428,41.7881267],[-87.5770116,41.788118600000004],[-87.5772739,41.7873095],[-87.5770785,41.786272600000004],[-87.5763398,41.7845213],[-87.5759135,41.7838337],[-87.5753749,41.7833427],[-87.5748637,41.7830534],[-87.574067,41.782572099999996],[-87.5727551,41.7820743],[-87.5716133,41.781684],[-87.5705695,41.7814717],[-87.5695314,41.7814525],[-87.5693794,41.7812295],[-87.5714632,41.7807388],[-87.5729364,41.7802246],[-87.5729165,41.7798852],[-87.5745706,41.7790899],[-87.5750535,41.778295299999996],[-87.5752329,41.7776806],[-87.5751804,41.777065],[-87.5747929,41.7764413],[-87.5745558,41.7759689],[-87.575155,41.7758791],[-87.5759556,41.776479],[-87.5765893,41.777385],[-87.5765032,41.7779543],[-87.5772023,41.778370699999996],[-87.5767457,41.779540600000004],[-87.5764193,41.7797505],[-87.5766411,41.7801124],[-87.5780148,41.7798557],[-87.5784763,41.7802104],[-87.578857,41.780164],[-87.578697,41.779566],[-87.57898349999999,41.7790743],[-87.5785133,41.7785072],[-87.5785138,41.7778373],[-87.578323,41.7772884],[-87.5782078,41.777066],[-87.5775247,41.776865],[-87.5774951,41.776478600000004],[-87.5779521,41.776336900000004],[-87.5774843,41.776211],[-87.57681529999999,41.776035],[-87.5763303,41.7759942],[-87.5760527,41.7757803],[-87.5756444,41.7756332],[-87.574692,41.7757091],[-87.5741925,41.7755303],[-87.5734715,41.7755023],[-87.5728295,41.7755417],[-87.5719873,41.7757599],[-87.5718923,41.7767757],[-87.5720368,41.7770041],[-87.5722962,41.7773363],[-87.5728356,41.777408199999996],[-87.5732797,41.7781155],[-87.573262,41.7790002],[-87.5722997,41.7792937],[-87.5717768,41.7787699],[-87.5707515,41.7777804],[-87.5702062,41.7773996],[-87.5690653,41.7768494],[-87.5684593,41.7764014],[-87.5680584,41.7759897],[-87.5676029,41.7754311],[-87.5664817,41.774061],[-87.5663591,41.7739695],[-87.5658767,41.7735786],[-87.5655389,41.7730218],[-87.56449860000001,41.7724373],[-87.563982,41.7720845],[-87.5632114,41.7718572],[-87.5633405,41.771070800000004],[-87.5631484,41.7705742],[-87.5628172,41.7700479],[-87.5621763,41.7690176],[-87.5614944,41.7687807],[-87.5606575,41.768557799999996],[-87.5599673,41.768480600000004],[-87.5596821,41.7687986],[-87.5595513,41.7692541],[-87.5593501,41.7684294],[-87.5593141,41.7673674],[-87.5593141,41.766592700000004],[-87.5604457,41.766296499999996],[-87.5603623,41.7654736],[-87.5599743,41.7648747],[-87.5596256,41.7649656],[-87.5594007,41.7647166],[-87.5593487,41.764343600000004],[-87.558668,41.7639385],[-87.5583199,41.7640073],[-87.557908,41.7636038],[-87.557457,41.7631472],[-87.5574471,41.7627197],[-87.5567349,41.762515300000004],[-87.5565713,41.7623142],[-87.5563841,41.762035499999996],[-87.5556048,41.7618576],[-87.5549734,41.761662799999996],[-87.5545431,41.7619013],[-87.55416579999999,41.7610599],[-87.5529722,41.7605638],[-87.5519984,41.7601098],[-87.5510916,41.7597589],[-87.5500151,41.7592895],[-87.549259,41.7590761],[-87.5481724,41.7588326],[-87.5471857,41.7588305],[-87.5466088,41.7590473],[-87.5450241,41.759609],[-87.5442063,41.7597502],[-87.5436266,41.7600635],[-87.5424646,41.7589833],[-87.5426028,41.7586575],[-87.5414327,41.757734299999996],[-87.5410497,41.7577364],[-87.5404175,41.7571886],[-87.5437278,41.755130199999996],[-87.5442567,41.754019400000004],[-87.543809,41.7529424],[-87.5427766,41.7519719],[-87.5403194,41.7517696],[-87.53810730000001,41.7509812],[-87.5355966,41.7499536],[-87.5355256,41.7499911],[-87.533357,41.7491013],[-87.5308829,41.7479612],[-87.5305331,41.7452895],[-87.5302358,41.743095600000004],[-87.52997260000001,41.7416328],[-87.5294462,41.7412493],[-87.529654,41.741192],[-87.5301177,41.7411968],[-87.5305275,41.7410298],[-87.5345676,41.7409629],[-87.5398641,41.7408556],[-87.5398546,41.740417],[-87.5354116,41.7404169],[-87.5298771,41.7404788],[-87.5295525,41.7383396],[-87.5292247,41.7373307],[-87.5292576,41.7364463],[-87.528926,41.7336618],[-87.5317581,41.7324588],[-87.5338193,41.7315631],[-87.5357942,41.7307238],[-87.5368233,41.7302663],[-87.53714360000001,41.73039],[-87.5371643,41.7304372],[-87.5375128,41.7312424],[-87.5381505,41.7326174],[-87.5385325,41.7335362],[-87.5387964,41.7334495],[-87.5388348,41.7327553],[-87.538106,41.7310948],[-87.53835480000001,41.7306329],[-87.5379944,41.7298579],[-87.5387903,41.7294434],[-87.5396243,41.7289826],[-87.5403282,41.7292035],[-87.5406815,41.729206500000004],[-87.5408703,41.7290386],[-87.5406433,41.7287427],[-87.5411942,41.7282718],[-87.5416238,41.7279231],[-87.5419097,41.7274508],[-87.5421018,41.7272995],[-87.5413573,41.7270807],[-87.5403815,41.7276081],[-87.5393643,41.7283609],[-87.5388861,41.7283517],[-87.5298062,41.732050799999996],[-87.5286533,41.7302372],[-87.5251375,41.7241765],[-87.5249037,41.723670999999996],[-87.52478310000001,41.7225634],[-87.5248125,41.7216154],[-87.5249009,41.7212295],[-87.5253666,41.721035799999996],[-87.5257818,41.7206125],[-87.5260039,41.720186],[-87.5259264,41.7196237],[-87.5256552,41.7190747],[-87.5253804,41.7186525],[-87.525044,41.7183893],[-87.5248392,41.7181557],[-87.5248709,41.717506900000004],[-87.5248906,41.7170799],[-87.5256381,41.717063100000004],[-87.52632,41.7170246],[-87.5271691,41.7168013],[-87.527951,41.7163591],[-87.52838080000001,41.715748500000004],[-87.5282296,41.7151257],[-87.5279893,41.7144022],[-87.5274039,41.7133973],[-87.5269091,41.7129482],[-87.5263866,41.7124406],[-87.52541120000001,41.7132105],[-87.5253438,41.713124],[-87.5266485,41.7120341],[-87.527979,41.7109418],[-87.5271328,41.710305],[-87.52637250000001,41.7097522],[-87.52594020000001,41.7098141],[-87.5257984,41.7097539],[-87.5258689,41.7094793],[-87.5256816,41.7093412],[-87.5254441,41.709282200000004],[-87.525322,41.7090541],[-87.5248623,41.708793],[-87.524641,41.7086818],[-87.52445589999999,41.7028861],[-87.5247191,41.6883505],[-87.5247215,41.6880762],[-87.5248174,41.6735363],[-87.5249713,41.6589586],[-87.5250591,41.6448841],[-87.5252607,41.6300503],[-87.524897,41.6157034],[-87.5250028,41.6011323],[-87.5251079,41.5867099],[-87.5251276,41.5721894],[-87.5251766,41.5576747],[-87.5251915,41.5428146],[-87.5253997,41.5283738],[-87.5254031,41.513780499999996],[-87.5252507,41.499121099999996],[-87.525676,41.4846529],[-87.52554620000001,41.4702251],[-87.5363735,41.4700926],[-87.5383827,41.4700949],[-87.5555922,41.4700656],[-87.5577463,41.470062999999996],[-87.574879,41.4699566],[-87.5771507,41.4699459],[-87.589059,41.4698908],[-87.594178,41.4698682],[-87.5965314,41.4698832],[-87.61345850000001,41.4697764],[-87.616036,41.469778],[-87.632566,41.4697092],[-87.6351694,41.4697012],[-87.6519149,41.4696565],[-87.6544882,41.4696737],[-87.6711207,41.4696067],[-87.6740548,41.4697035],[-87.69075839999999,41.4695783],[-87.693549,41.469558],[-87.7097558,41.4694931],[-87.7127669,41.4695928],[-87.7289531,41.469616099999996],[-87.7321166,41.4696348],[-87.748214,41.469687199999996],[-87.7512547,41.4697782],[-87.7672957,41.4697416],[-87.7708004,41.4697532],[-87.787256,41.4698468],[-87.7900554,41.469914],[-87.7899925,41.4844566],[-87.7900224,41.4989562],[-87.7904575,41.5132378],[-87.790437,41.5278492],[-87.7903695,41.539054300000004],[-87.7921576,41.537700900000004],[-87.7922642,41.5438596],[-87.7927908,41.558478300000004],[-87.8123313,41.5582008],[-87.8318681,41.5579091],[-87.8513541,41.5575831],[-87.8708129,41.557159999999996],[-87.8902995,41.5570953],[-87.9096344,41.5567635],[-87.9100041,41.5713212],[-87.9105152,41.5858061],[-87.9108019,41.6003127],[-87.9112519,41.614914999999996],[-87.9114857,41.6293377],[-87.9121404,41.643843000000004],[-87.9314596,41.643499],[-87.9506969,41.6430268],[-87.9699785,41.6426955],[-87.9894865,41.642253600000004],[-88.0090818,41.6416719],[-88.0277779,41.641351900000004],[-88.0281563,41.6560154],[-88.0284678,41.6706296],[-88.0292225,41.685249],[-88.0106656,41.685466399999996],[-88.0001816,41.685617],[-87.9938873,41.685780199999996],[-87.9911451,41.6858378],[-87.9898214,41.6858654],[-87.9859605,41.685957200000004],[-87.9826864,41.6859149],[-87.9824711,41.686210700000004],[-87.9822943,41.686347],[-87.9821605,41.6864508],[-87.9819547,41.6865261],[-87.981639,41.6866234],[-87.9813371,41.6867203],[-87.9811389,41.686784700000004],[-87.9809332,41.6868551],[-87.9806014,41.6870178],[-87.9802859,41.6871041],[-87.9799917,41.6871845],[-87.9797345,41.6872543],[-87.9792871,41.6873232],[-87.9789711,41.6873488],[-87.9786864,41.6873356],[-87.9784373,41.6872905],[-87.9782116,41.6872284],[-87.977875,41.6871497],[-87.9776131,41.6870603],[-87.977357,41.6869978],[-87.9770289,41.6869082],[-87.9766352,41.6867516],[-87.9762343,41.6865894],[-87.97596300000001,41.6865495],[-87.9757152,41.6864878],[-87.9754302,41.686447],[-87.9752402,41.686435],[-87.9749387,41.6864718],[-87.9746887,41.6865473],[-87.9742995,41.6866437],[-87.9739468,41.6867516],[-87.9736678,41.6868487],[-87.97338740000001,41.6869734],[-87.9731447,41.6870923],[-87.9726964,41.6871997],[-87.9722625,41.6873176],[-87.9719394,41.6874149],[-87.9717007,41.6873988],[-87.9715667,41.687390199999996],[-87.9713098,41.6873669],[-87.9711204,41.6873218],[-87.9709452,41.6872659],[-87.9707484,41.6871821],[-87.970501,41.6870652],[-87.9702312,41.686959099999996],[-87.9699315,41.686874700000004],[-87.9695957,41.6868008],[-87.9692228,41.6867438],[-87.9686084,41.686668499999996],[-87.9679721,41.686631500000004],[-87.9675544,41.68664],[-87.9670633,41.6866476],[-87.9665883,41.6865899],[-87.9663079,41.686753100000004],[-87.9658057,41.6870852],[-87.9649802,41.6875303],[-87.9643822,41.6879115],[-87.9635492,41.6883186],[-87.9629223,41.6887159],[-87.9623255,41.689003299999996],[-87.9619411,41.6892921],[-87.9614322,41.6895965],[-87.9607246,41.6899052],[-87.9601645,41.6902372],[-87.9597593,41.6904271],[-87.9594793,41.6905297],[-87.9590597,41.6907029],[-87.9586842,41.6908815],[-87.9584267,41.6910064],[-87.9581092,41.6911802],[-87.9578364,41.6913269],[-87.9576812,41.691441499999996],[-87.9574073,41.6916813],[-87.9570963,41.6919323],[-87.9568225,41.6921666],[-87.956497,41.6924506],[-87.9562455,41.6926741],[-87.9558309,41.692996199999996],[-87.9556763,41.693083200000004],[-87.9554618,41.6932135],[-87.9550877,41.693288],[-87.9547857,41.693384800000004],[-87.95436720000001,41.6934704],[-87.9539798,41.693445499999996],[-87.9535323,41.6935087],[-87.9531427,41.6935782],[-87.9526885,41.6936185],[-87.9524163,41.693657099999996],[-87.952241,41.6936818],[-87.9520199,41.693741],[-87.9516594,41.6938653],[-87.9513655,41.693929],[-87.9510567,41.6940423],[-87.9507179,41.6941834],[-87.95040159999999,41.694302],[-87.9498291,41.6944084],[-87.9491667,41.6946626],[-87.9487166,41.6949235],[-87.9485321,41.6950707],[-87.9481922,41.6952993],[-87.9477571,41.6955495],[-87.94752030000001,41.6956905],[-87.9471517,41.6959242],[-87.9468555,41.6961314],[-87.9465831,41.696300199999996],[-87.9461842,41.6965776],[-87.9455785,41.6969641],[-87.9451058,41.697291],[-87.9447138,41.697541],[-87.9442854,41.6978573],[-87.9439375,41.6981134],[-87.9435976,41.698336499999996],[-87.9432424,41.698631],[-87.94283730000001,41.698853299999996],[-87.94248329999999,41.6990493],[-87.9422643,41.701391900000004],[-87.9421194,41.7029436],[-87.9418695,41.7030134],[-87.9416411,41.7031056],[-87.9414723,41.7031703],[-87.9412511,41.7032674],[-87.9410891,41.7033542],[-87.9408227,41.703501],[-87.9404706,41.703575799999996],[-87.94021359999999,41.7036345],[-87.9399268,41.7037094],[-87.9397356,41.7037855],[-87.9395662,41.7038722],[-87.939374,41.7039531],[-87.93919,41.7040783],[-87.9390415,41.7042149],[-87.938923,41.7043299],[-87.938746,41.7044275],[-87.9385464,41.7045083],[-87.9382891,41.7046222],[-87.9380976,41.7047093],[-87.9378918,41.704779],[-87.9375681,41.7048597],[-87.9372884,41.7049842],[-87.9370085,41.7051199],[-87.936786,41.7052776],[-87.9365204,41.7054678],[-87.9363422,41.7056206],[-87.9361492,41.7058118],[-87.9359711,41.7059977],[-87.9358672,41.7061176],[-87.9357696,41.7062825],[-87.9356659,41.7064355],[-87.9355681,41.7066052],[-87.93541210000001,41.7067906],[-87.9352629,41.7069603],[-87.9351356,41.7071792],[-87.9349848,41.7075357],[-87.9348729,41.7076831],[-87.9347979,41.7078255],[-87.9347378,41.7080012],[-87.9346185,41.7081485],[-87.9344775,41.7082797],[-87.9342922,41.7084213],[-87.93413699999999,41.7085303],[-87.9339603,41.7086555],[-87.9337905,41.7087202],[-87.9335545,41.7088233],[-87.9335303,41.708833999999996],[-87.9332163,41.7089692],[-87.9329142,41.7090666],[-87.9326495,41.7091417],[-87.9323769,41.7092333],[-87.9321635,41.709314],[-87.9319212,41.7094115],[-87.9315535,41.7095246],[-87.9312585,41.709632400000004],[-87.9310527,41.7097028],[-87.9307658,41.7098218],[-87.9305811,41.709930299999996],[-87.930367,41.7100441],[-87.92999760000001,41.7102674],[-87.9296427,41.7105399],[-87.9295242,41.7106541],[-87.9293682,41.710796200000004],[-87.929198,41.7109215],[-87.9289985,41.711073999999996],[-87.9287837,41.7112538],[-87.928547,41.7114286],[-87.928413,41.7115757],[-87.9281697,41.7117559],[-87.9280211,41.7118594],[-87.9278214,41.7120229],[-87.92769559999999,41.7121316],[-87.9272519,41.7124642],[-87.9271041,41.7125733],[-87.9269783,41.7126819],[-87.9266615,41.7127791],[-87.9263835,41.7127493],[-87.9260464,41.7127312],[-87.925834,41.7127243],[-87.9255122,41.7127215],[-87.9252551,41.7127809],[-87.9250558,41.712845099999996],[-87.9248054,41.7129756],[-87.9246506,41.713068],[-87.92451679999999,41.7131662],[-87.9243394,41.7133183],[-87.924161,41.7135151],[-87.9239609,41.713695200000004],[-87.9237527,41.7139082],[-87.9235962,41.7141109],[-87.923447,41.7143185],[-87.9232248,41.7145423],[-87.9230086,41.7148214],[-87.9227712,41.7150616],[-87.9224517,41.7153945],[-87.9220964,41.7156835],[-87.9216519,41.716087099999996],[-87.9213717,41.716233700000004],[-87.9211212,41.716325499999996],[-87.9209805,41.716363],[-87.9208416,41.7164005],[-87.9204525,41.7164802],[-87.9200348,41.716483],[-87.9198006,41.7164703],[-87.9192877,41.7164505],[-87.9189355,41.716448],[-87.9186788,41.7164908],[-87.91837100000001,41.716515799999996],[-87.9181223,41.716487],[-87.9179913,41.7164267],[-87.9179403,41.716403299999996],[-87.9177218,41.7163081],[-87.9175539,41.7162467],[-87.91719570000001,41.7161841],[-87.9169608,41.7161604],[-87.9167197,41.7161641],[-87.9164772,41.7162285],[-87.9161895,41.7163364],[-87.9156831,41.7164759],[-87.9156445,41.7164768],[-87.9153368,41.7165727],[-87.9149686,41.7166637],[-87.9145866,41.7167545],[-87.9142852,41.7167809],[-87.914569,41.7237573],[-87.9148603,41.7310089],[-87.9153583,41.745676],[-87.9160223,41.7601824],[-87.9165963,41.7747701],[-87.9170003,41.7893912],[-87.9176335,41.8039875],[-87.9182827,41.8185425],[-87.9189026,41.8330996],[-87.9195802,41.8477261],[-87.9201145,41.8621796],[-87.9202323,41.8655247],[-87.92074410000001,41.876829900000004],[-87.9206343,41.8912443],[-87.9205872,41.8927142],[-87.9201176,41.9068081],[-87.9205038,41.9213085],[-87.9202739,41.9358006],[-87.9203183,41.9502423],[-87.9203179,41.9504201],[-87.9203179,41.9504958],[-87.9203116,41.9648967],[-87.9203102,41.965035900000004],[-87.9204594,41.9794165],[-87.9205265,41.993997],[-87.9400541,41.9934299],[-87.9592806,41.9930874],[-87.9787584,41.9928125],[-87.97886,41.9928124],[-87.9789469,41.9928107],[-87.9982791,41.9925901],[-88.0179477,41.9924368],[-88.0312606,41.9925098],[-88.0509768,41.9918419],[-88.070386,41.991349],[-88.0900735,41.9906],[-88.0907612,41.9905694],[-88.1096775,41.9897518],[-88.1103098,41.9897246],[-88.129043,41.9888014],[-88.1298859,41.988769500000004],[-88.1449283,41.9882129],[-88.1645306,41.9877513],[-88.1837525,41.9876463],[-88.184133,41.9876449],[-88.2036286,41.9873275],[-88.2229347,41.9870518],[-88.2231459,41.9870209],[-88.2423399,41.9867038],[-88.242545,41.9867018],[-88.2426503,41.9866987],[-88.2627271,41.9863683],[-88.2631201,42.0010915],[-88.2632552,42.0156822],[-88.2632769,42.0301062],[-88.2632767,42.0302164],[-88.2632785,42.0303184],[-88.2633376,42.0447205],[-88.2635507,42.0592962],[-88.263553,42.0594767],[-88.2635558,42.0596283],[-88.2636348,42.0671603],[-88.2576601,42.0670679],[-88.2425144,42.0668314],[-88.2380799,42.0669482],[-88.2382753,42.0812906],[-88.238303,42.0959011],[-88.2384085,42.1103082],[-88.2383566,42.1248236],[-88.2385836,42.124961],[-88.2386432,42.1394498],[-88.2385714,42.154240200000004]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"ROCK ISLAND","CO_FIPS":161},"geometry":{"type":"Polygon","coordinates":[[[-90.2424997,41.7830834],[-90.2422181,41.7773603],[-90.2422128,41.7770461],[-90.2422612,41.7767619],[-90.2424187,41.7763392],[-90.24268119999999,41.7759379],[-90.2428739,41.7757135],[-90.2433933,41.775221099999996],[-90.2436522,41.7748253],[-90.2437066,41.7747437],[-90.2438356,41.7744245],[-90.243891,41.7741003],[-90.24442,41.772639],[-90.244498,41.7725338],[-90.2447193,41.7722334],[-90.2448449,41.7720989],[-90.2448958,41.7720449],[-90.2451051,41.7718176],[-90.2451423,41.7716905],[-90.245154,41.771410700000004],[-90.244931,41.769204200000004],[-90.2448858,41.7687759],[-90.2448724,41.768565100000004],[-90.2447848,41.767289500000004],[-90.2448225,41.767201],[-90.2450287,41.767033],[-90.2450669,41.7669914],[-90.2451415,41.7669083],[-90.2452379,41.7668016],[-90.2460093,41.7661408],[-90.24637,41.7657899],[-90.2464993,41.7656637],[-90.246811,41.7653848],[-90.2472704,41.7649754],[-90.2473901,41.7648107],[-90.2474435,41.7646422],[-90.2474535,41.7643831],[-90.2474279,41.7625544],[-90.2473628,41.7624997],[-90.2471709,41.762454],[-90.2468689,41.7624448],[-90.2462779,41.7624305],[-90.2450221,41.7623996],[-90.2445673,41.7623886],[-90.2434571,41.7623624],[-90.243203,41.762357],[-90.2429759,41.7629717],[-90.2427657,41.7636125],[-90.2424752,41.764485199999996],[-90.2424015,41.7646497],[-90.242318,41.7647591],[-90.2422079,41.7647914],[-90.2420314,41.7648104],[-90.2404836,41.7648364],[-90.2402977,41.7648403],[-90.2402165,41.7648284],[-90.2389811,41.7639553],[-90.2386472,41.7637216],[-90.2383266,41.7635279],[-90.2382579,41.7634745],[-90.2376177,41.7630002],[-90.2371151,41.762648999999996],[-90.2370133,41.7626001],[-90.2369197,41.7624573],[-90.2370825,41.7621931],[-90.2373956,41.761865900000004],[-90.2379399,41.761136300000004],[-90.2380805,41.7610321],[-90.2382801,41.7609344],[-90.2391926,41.7607208],[-90.2399879,41.7605602],[-90.2414691,41.7601722],[-90.2425156,41.759926],[-90.2427655,41.7598886],[-90.242892,41.7598396],[-90.2430035,41.7597631],[-90.2431727,41.7595884],[-90.2432866,41.7593962],[-90.2442388,41.7580976],[-90.2442805,41.7580395],[-90.2454465,41.756446],[-90.2458052,41.7559215],[-90.245992,41.755669499999996],[-90.2463264,41.7552816],[-90.24674279999999,41.754481],[-90.2467607,41.7544327],[-90.2468517,41.7541675],[-90.2468721,41.7540213],[-90.2469316,41.7535675],[-90.2469655,41.7529678],[-90.2470436,41.7522052],[-90.2470952,41.7520395],[-90.2471283,41.7518698],[-90.2472093,41.7508646],[-90.2472366,41.7505088],[-90.2472797,41.7502412],[-90.2473946,41.750142600000004],[-90.2475824,41.7499844],[-90.2477108,41.7491112],[-90.2479266,41.7476489],[-90.2480584,41.7467454],[-90.2474711,41.7460599],[-90.2471734,41.745764],[-90.2468646,41.7454627],[-90.2467916,41.7454308],[-90.2460601,41.7454373],[-90.2441496,41.7454174],[-90.2440417,41.7453105],[-90.2430613,41.7443449],[-90.2429665,41.7442517],[-90.2433533,41.743782100000004],[-90.2434005,41.7437254],[-90.2434495,41.7436644],[-90.2442541,41.7426878],[-90.2443612,41.7425576],[-90.2443976,41.7425133],[-90.2443193,41.7404092],[-90.2433885,41.7404439],[-90.2426105,41.7404735],[-90.2423456,41.7404833],[-90.2420169,41.7407128],[-90.2395733,41.7424229],[-90.23677,41.7408329],[-90.2345577,41.7362086],[-90.2357908,41.7318142],[-90.2384643,41.7291077],[-90.238548,41.729021700000004],[-90.2385124,41.7274383],[-90.2341392,41.7250639],[-90.2340448,41.7250149],[-90.2345334,41.7203397],[-90.2352877,41.7193331],[-90.2387766,41.7146824],[-90.2388328,41.7146076],[-90.2393786,41.713879399999996],[-90.2392446,41.713568699999996],[-90.2389537,41.7130371],[-90.2385952,41.7122082],[-90.2382926,41.7111046],[-90.238869,41.7108324],[-90.2405862,41.7099164],[-90.2406003,41.7081673],[-90.239999,41.70667],[-90.2411512,41.7057327],[-90.2422724,41.7048203],[-90.2425524,41.7048586],[-90.2430217,41.7048833],[-90.2438522,41.704977400000004],[-90.2442109,41.7049876],[-90.2444172,41.7050139],[-90.2453617,41.704766899999996],[-90.2458185,41.7041591],[-90.2458959,41.7038347],[-90.2458843,41.7034502],[-90.2453418,41.7026169],[-90.2451197,41.7023206],[-90.2449129,41.7022502],[-90.2436963,41.7014872],[-90.2425415,41.701169],[-90.242366,41.7010929],[-90.2417406,41.7009148],[-90.2414025,41.700779],[-90.2408718,41.7005121],[-90.2406356,41.7004364],[-90.240303,41.7002937],[-90.2401496,41.7002285],[-90.2400833,41.700217800000004],[-90.2399722,41.7001482],[-90.2385506,41.7001486],[-90.238471,41.7001008],[-90.2381008,41.6998867],[-90.2379253,41.699812],[-90.2377535,41.69974],[-90.2374369,41.6995503],[-90.2373114,41.699507],[-90.2369039,41.6982166],[-90.2372942,41.6970758],[-90.2373477,41.6969156],[-90.2369485,41.696397],[-90.2361594,41.6960434],[-90.2356543,41.6960961],[-90.2349393,41.696638],[-90.2343918,41.6968604],[-90.234267,41.6968832],[-90.2335542,41.6967828],[-90.2330696,41.696692],[-90.2321261,41.696174],[-90.2317511,41.696010799999996],[-90.2315288,41.6958688],[-90.2312422,41.6957217],[-90.2309324,41.6946182],[-90.2311817,41.694368600000004],[-90.2325244,41.6930305],[-90.2325681,41.6929861],[-90.2325698,41.692808299999996],[-90.2325711,41.6924141],[-90.2323404,41.6919992],[-90.2322583,41.6918895],[-90.2312408,41.6918308],[-90.2311065,41.691823299999996],[-90.2308113,41.6920746],[-90.230261,41.692543799999996],[-90.2300218,41.6926982],[-90.2289232,41.6929667],[-90.2279781,41.6931474],[-90.2279281,41.693121500000004],[-90.2275658,41.6929459],[-90.2270643,41.6926456],[-90.226887,41.6925709],[-90.2268342,41.6914217],[-90.2269618,41.690975800000004],[-90.2274982,41.6893793],[-90.2275134,41.6885646],[-90.2275412,41.688235],[-90.2262231,41.6868894],[-90.2264637,41.6858322],[-90.2264883,41.6857232],[-90.2265093,41.6856293],[-90.22701670000001,41.6833866],[-90.2278845,41.6828645],[-90.2280928,41.6827392],[-90.2293222,41.682],[-90.2306761,41.6825721],[-90.2326035,41.6814289],[-90.2336822,41.681545],[-90.2345411,41.6808976],[-90.2351039,41.681422],[-90.2361076,41.6805587],[-90.2361551,41.6803585],[-90.2362779,41.6798147],[-90.2363929,41.6795728],[-90.2362379,41.679349099999996],[-90.2351873,41.6791019],[-90.2347023,41.6782847],[-90.2342476,41.6782323],[-90.2337704,41.6772828],[-90.2328496,41.6767977],[-90.2328243,41.6765015],[-90.2321634,41.6764173],[-90.2316777,41.6762107],[-90.2306444,41.6762045],[-90.2297707,41.6751306],[-90.2286145,41.6748067],[-90.2282033,41.6746934],[-90.2165248,41.671455],[-90.2164375,41.6714569],[-90.2090469,41.6693804],[-90.2088829,41.6693359],[-90.2076237,41.6689876],[-90.1914797,41.6640526],[-90.1914318,41.6640391],[-90.1913948,41.664022700000004],[-90.189702,41.663304600000004],[-90.1892021,41.663131],[-90.1869381,41.6613617],[-90.1862819,41.6608155],[-90.1859196,41.6606135],[-90.1855068,41.6603237],[-90.1841158,41.6594397],[-90.1817567,41.6578776],[-90.1796737,41.6570829],[-90.1761832,41.6557572],[-90.17384559999999,41.6548509],[-90.1730258,41.6540959],[-90.1728291,41.6539041],[-90.1719662,41.6530681],[-90.17174729999999,41.6528584],[-90.1716927,41.6527236],[-90.1715609,41.6524073],[-90.171191,41.6512392],[-90.1703376,41.6485589],[-90.1650695,41.647493499999996],[-90.1649554,41.6474721],[-90.1614308,41.6437009],[-90.162021,41.6426033],[-90.1638745,41.6391569],[-90.1664043,41.6393112],[-90.1689387,41.639555],[-90.17162210000001,41.6398145],[-90.17199360000001,41.6398497],[-90.1741713,41.6400636],[-90.1739762,41.639285900000004],[-90.1737045,41.6382013],[-90.1735,41.6373975],[-90.1734005,41.6373719],[-90.1725827,41.6371683],[-90.1722217,41.637079299999996],[-90.172021,41.6370432],[-90.171594,41.6369684],[-90.1715535,41.6369617],[-90.1687421,41.6363804],[-90.1655993,41.635907],[-90.1624547,41.6354349],[-90.1616939,41.633916],[-90.1599328,41.6304039],[-90.1600572,41.6294039],[-90.1600758,41.6290468],[-90.1600725,41.6283259],[-90.1600713,41.628206],[-90.1600709,41.6281646],[-90.1600674,41.6278022],[-90.1601053,41.6269777],[-90.1602138,41.626802],[-90.1602991,41.6264997],[-90.1609369,41.6250214],[-90.1608917,41.6249031],[-90.1610113,41.6247398],[-90.1611863,41.6242247],[-90.1619134,41.622484],[-90.1618841,41.6213636],[-90.1619125,41.620881],[-90.1619058,41.6203807],[-90.1618995,41.620298],[-90.160549,41.6185631],[-90.160559,41.6178862],[-90.1624533,41.6162425],[-90.1622071,41.6158621],[-90.1617018,41.6150874],[-90.1626824,41.6143088],[-90.1628538,41.6141728],[-90.162923,41.613925699999996],[-90.1629993,41.6136551],[-90.16346970000001,41.6119778],[-90.163546,41.6117003],[-90.1640691,41.6114742],[-90.1673265,41.6100696],[-90.1669328,41.6056954],[-90.1652027,41.6028668],[-90.1650814,41.602669],[-90.1654094,41.6016609],[-90.165453,41.6014264],[-90.1654809,41.601276],[-90.1654771,41.6010692],[-90.1654372,41.6007483],[-90.1653914,41.6003805],[-90.1653085,41.5999798],[-90.165107,41.5992807],[-90.1650329,41.5990289],[-90.1650235,41.5989986],[-90.1648359,41.5982222],[-90.1647652,41.5975637],[-90.16476779999999,41.596893800000004],[-90.1648462,41.5964606],[-90.1650991,41.5956487],[-90.1654083,41.5949757],[-90.1656236,41.594647800000004],[-90.1659664,41.5942104],[-90.1661662,41.5939873],[-90.1669507,41.5932842],[-90.1671658,41.5931272],[-90.1676364,41.5928062],[-90.168544,41.5922912],[-90.1690783,41.5921036],[-90.1693585,41.5920276],[-90.1702656,41.5918489],[-90.1713727,41.5916539],[-90.1714864,41.591634],[-90.1723827,41.591478800000004],[-90.1731878,41.591381999999996],[-90.1749582,41.591230100000004],[-90.1767437,41.5911168],[-90.1774523,41.5911059],[-90.1780579,41.5910722],[-90.1790004,41.5911276],[-90.1798487,41.591124199999996],[-90.1802944,41.5910776],[-90.1810628,41.5909837],[-90.1820743,41.5907781],[-90.1829912,41.5904821],[-90.1832857,41.5903743],[-90.183638,41.5901683],[-90.1847671,41.589419],[-90.1853288,41.5888576],[-90.1856045,41.5885293],[-90.1858576,41.588130899999996],[-90.1860611,41.5877355],[-90.1861583,41.5870003],[-90.1861319,41.5861982],[-90.1860149,41.5857081],[-90.1858744,41.585245799999996],[-90.18558110000001,41.5847402],[-90.1854879,41.5846015],[-90.1854469,41.5845438],[-90.1850366,41.5840954],[-90.1847403,41.583840699999996],[-90.1844515,41.583597],[-90.1841648,41.5833904],[-90.1841186,41.5833576],[-90.1835982,41.5829057],[-90.1831512,41.582457500000004],[-90.1829569,41.5823014],[-90.1824524,41.581792899999996],[-90.1823076,41.581632400000004],[-90.1818772,41.5810021],[-90.1817559,41.5808098],[-90.1814357,41.5801858],[-90.1812851,41.5799868],[-90.1811049,41.5797769],[-90.180853,41.579555],[-90.1807088,41.5794607],[-90.18011,41.5788741],[-90.1798439,41.5785145],[-90.1798158,41.5779109],[-90.179726,41.577553],[-90.1795862,41.5771554],[-90.1794511,41.5768639],[-90.1791711,41.5763996],[-90.17906669999999,41.5760528],[-90.1790336,41.5758669],[-90.1790602,41.5754064],[-90.1790616,41.575365],[-90.1790409,41.5747614],[-90.1789823,41.574405999999996],[-90.1789394,41.5741554],[-90.1789206,41.5739212],[-90.1789279,41.5733711],[-90.178961,41.5731849],[-90.1791174,41.5723059],[-90.1791954,41.572027],[-90.1794574,41.571427299999996],[-90.1794951,41.571343],[-90.1795417,41.5712311],[-90.1796037,41.571002],[-90.1797281,41.5704085],[-90.17979389999999,41.569832],[-90.1799954,41.5684993],[-90.1801214,41.5678907],[-90.1803033,41.5673479],[-90.180548,41.5664919],[-90.1808227,41.5656922],[-90.1814611,41.5643791],[-90.1816795,41.5638307],[-90.1819584,41.5632722],[-90.1820713,41.5629986],[-90.1824371,41.5619517],[-90.1825606,41.5614589],[-90.182887,41.5605101],[-90.1832488,41.559623099999996],[-90.1833765,41.5593659],[-90.1834964,41.5590565],[-90.1835358,41.558957],[-90.1836037,41.5587788],[-90.1837418,41.5582749],[-90.1841977,41.5570731],[-90.1842264,41.5569985],[-90.1842533,41.5569432],[-90.1843252,41.5567856],[-90.1846158,41.5563098],[-90.1847596,41.556008500000004],[-90.18536280000001,41.5550401],[-90.1859273,41.5538735],[-90.186241,41.5533107],[-90.1864884,41.5529109],[-90.1873218,41.5516697],[-90.1877982,41.5510481],[-90.1880913,41.5504564],[-90.1883515,41.5500566],[-90.1888234,41.5491758],[-90.1889646,41.5489848],[-90.1892044,41.548563],[-90.1898336,41.547458],[-90.1904097,41.5463644],[-90.1907969,41.5458177],[-90.1913678,41.5451238],[-90.1916746,41.5446147],[-90.1918392,41.544385],[-90.1919578,41.5441389],[-90.1930139,41.5427958],[-90.1933246,41.5424949],[-90.1934172,41.5423951],[-90.1935969,41.5422024],[-90.1936185,41.5421637],[-90.1938128,41.541971000000004],[-90.1942346,41.5415895],[-90.1946623,41.5412411],[-90.1950083,41.5409854],[-90.1951304,41.5409075],[-90.1954877,41.5406767],[-90.1959733,41.5404437],[-90.1962441,41.540369],[-90.1966189,41.5402345],[-90.19794279999999,41.5399747],[-90.199055,41.5398345],[-90.1995166,41.5397547],[-90.1999765,41.5396983],[-90.2012854,41.5395873],[-90.2025644,41.5394255],[-90.2029587,41.5394067],[-90.2033729,41.539360099999996],[-90.2034553,41.53935],[-90.2036459,41.5393296],[-90.2045023,41.539280500000004],[-90.204955,41.5392352],[-90.2065692,41.5392023],[-90.2074677,41.5391543],[-90.2078838,41.5391133],[-90.2087682,41.5391136],[-90.2096596,41.539087699999996],[-90.2104698,41.5390168],[-90.2120054,41.5388355],[-90.2144304,41.5384283],[-90.21480030000001,41.5383669],[-90.2156719,41.538201799999996],[-90.217656,41.5377435],[-90.2187114,41.5374381],[-90.2194021,41.5371693],[-90.2195187,41.537092799999996],[-90.2204727,41.5367425],[-90.220796,41.5366068],[-90.2212083,41.5363907],[-90.2216266,41.536211800000004],[-90.2220827,41.5359678],[-90.22248,41.535724200000004],[-90.2226857,41.5355714],[-90.22292,41.5353453],[-90.2229745,41.5352926],[-90.2232495,41.5349256],[-90.2233833,41.534746999999996],[-90.2235311,41.5344952],[-90.2237962,41.5338926],[-90.2238801,41.5334979],[-90.2239461,41.5329764],[-90.2240002,41.5327183],[-90.2240678,41.5325208],[-90.2241026,41.532163499999996],[-90.2242213,41.531945],[-90.2244192,41.5314021],[-90.2247388,41.5309218],[-90.2251463,41.53043],[-90.2253099,41.5302884],[-90.2253791,41.530239800000004],[-90.2257288,41.5299992],[-90.2260737,41.5298317],[-90.2264995,41.5296762],[-90.2272182,41.529460900000004],[-90.2276505,41.529397700000004],[-90.2283579,41.529336900000004],[-90.2290237,41.5293205],[-90.2308859,41.5291742],[-90.2315159,41.5290684],[-90.2323442,41.5288207],[-90.2336131,41.5282534],[-90.2341531,41.5279716],[-90.234361,41.527864199999996],[-90.2345398,41.5277708],[-90.2354272,41.5273877],[-90.2358165,41.5272585],[-90.2372332,41.5266199],[-90.238466,41.526123],[-90.2391266,41.5258033],[-90.2399485,41.5254688],[-90.2402569,41.5253222],[-90.2408947,41.525101899999996],[-90.2412986,41.5249671],[-90.2418986,41.5248145],[-90.2419847,41.5247974],[-90.2422997,41.5247514],[-90.2432741,41.524613099999996],[-90.2440929,41.5245143],[-90.2452111,41.5244385],[-90.2457442,41.5243773],[-90.2460603,41.5242637],[-90.2465149,41.5240638],[-90.2471609,41.5237565],[-90.2473963,41.5236462],[-90.2487752,41.5230959],[-90.249097,41.5230043],[-90.250073,41.5228466],[-90.250073,41.5230189],[-90.25075029999999,41.5228934],[-90.2519336,41.5227372],[-90.2531384,41.522709],[-90.2559417,41.522249],[-90.2576424,41.5221157],[-90.2598171,41.521876],[-90.2612193,41.5216176],[-90.262723,41.5217446],[-90.2644497,41.5219708],[-90.265391,41.522162],[-90.2663297,41.5222815],[-90.26717239999999,41.5223437],[-90.26843410000001,41.5223164],[-90.2690842,41.5222226],[-90.2702428,41.521836199999996],[-90.2711968,41.521696399999996],[-90.2735024,41.521197799999996],[-90.27455,41.521057400000004],[-90.2760381,41.5207818],[-90.2768553,41.5205435],[-90.2780216,41.5205167],[-90.2789758,41.5203907],[-90.2801605,41.520363700000004],[-90.280998,41.5201433],[-90.2823195,41.5202105],[-90.2854231,41.5203779],[-90.2862626,41.5203256],[-90.288119,41.5203341],[-90.2887492,41.5202708],[-90.2893758,41.520047500000004],[-90.290823,41.5197306],[-90.2923462,41.519325],[-90.2966495,41.5184007],[-90.2982127,41.5181243],[-90.2997617,41.5180507],[-90.3004127,41.5177252],[-90.3012094,41.517775],[-90.3025058,41.517588599999996],[-90.3045054,41.5171493],[-90.3057948,41.5165314],[-90.3069828,41.5157129],[-90.3077477,41.5147842],[-90.3087348,41.5134211],[-90.3092018,41.5128983],[-90.3098499,41.512338400000004],[-90.3105224,41.5119783],[-90.3122705,41.5104625],[-90.3127015,41.5099978],[-90.3131938,41.5097629],[-90.3160484,41.509069600000004],[-90.3169839,41.5089295],[-90.3176994,41.5089578],[-90.3188906,41.5088808],[-90.3197958,41.5089684],[-90.3222002,41.5091244],[-90.3240406,41.5096633],[-90.3277126,41.510447400000004],[-90.3314003,41.511762],[-90.3332401,41.5120816],[-90.3347062,41.5124395],[-90.3372883,41.512421700000004],[-90.3384586,41.5121378],[-90.340299,41.5117597],[-90.34221959999999,41.5111908],[-90.3428445,41.5108529],[-90.3437351,41.510497900000004],[-90.3459784,41.5097819],[-90.3467783,41.5096577],[-90.3483445,41.5095103],[-90.3500976,41.509203],[-90.3511474,41.5091197],[-90.353224,41.5087219],[-90.3540192,41.5083675],[-90.3555687,41.507472899999996],[-90.3564966,41.5070307],[-90.3574639,41.506655800000004],[-90.3578675,41.5066694],[-90.3582658,41.5065494],[-90.3592995,41.5056322],[-90.3600207,41.505379],[-90.3626499,41.5040258],[-90.3637758,41.5030059],[-90.3651173,41.502214699999996],[-90.3657563,41.5017042],[-90.3666175,41.5007881],[-90.368063,41.4985128],[-90.3687769,41.497986600000004],[-90.3690184,41.497654],[-90.3692379,41.4971768],[-90.369397,41.496570399999996],[-90.3693449,41.495938100000004],[-90.3694759,41.4948439],[-90.3695976,41.4943247],[-90.3699795,41.4933569],[-90.37033220000001,41.4928347],[-90.3709315,41.491376],[-90.3715799,41.490318099999996],[-90.3722006,41.4889598],[-90.3722983,41.488138899999996],[-90.372286,41.4876068],[-90.3725459,41.4862801],[-90.3726055,41.4854884],[-90.3729442,41.4843059],[-90.3731997,41.4837829],[-90.3737723,41.4828289],[-90.3747755,41.4805746],[-90.3751458,41.4799943],[-90.3763079,41.4788444],[-90.3768404,41.4783387],[-90.3779644,41.4776468],[-90.3787224,41.477292500000004],[-90.3796518,41.4770086],[-90.3805477,41.4768256],[-90.3811387,41.4767469],[-90.38196,41.4767505],[-90.3853401,41.4765962],[-90.3870227,41.476577],[-90.3876033,41.4759799],[-90.3882343,41.475167400000004],[-90.3889096,41.474513099999996],[-90.389693,41.473582300000004],[-90.3905207,41.4729545],[-90.3928571,41.4713601],[-90.3939832,41.4707107],[-90.3950482,41.470154199999996],[-90.3958718,41.4696462],[-90.39618899999999,41.4693695],[-90.3971372,41.4688566],[-90.3983128,41.4682137],[-90.399338,41.4675664],[-90.4002007,41.467105000000004],[-90.4011236,41.4664805],[-90.402058,41.4659055],[-90.4033176,41.4652454],[-90.4044039,41.4645094],[-90.4056633,41.463841],[-90.4068719,41.463208699999996],[-90.4079462,41.4626768],[-90.409547,41.4620499],[-90.4104659,41.4616956],[-90.4116786,41.4611046],[-90.4129296,41.460637500000004],[-90.4134981,41.4603905],[-90.4144355,41.4600471],[-90.4151203,41.4597276],[-90.4159199,41.459494],[-90.4195408,41.458098899999996],[-90.4207738,41.4576677],[-90.4216101,41.4574421],[-90.4244675,41.4570618],[-90.4320433,41.4566534],[-90.4320733,41.4423236],[-90.43215119999999,41.4284179],[-90.4321526,41.4279878],[-90.4321532,41.4278926],[-90.4321434,41.4138757],[-90.4322245,41.41378],[-90.4326427,41.3994563],[-90.4329648,41.3850808],[-90.4329794,41.3848063],[-90.4336892,41.3704207],[-90.4336923,41.3558888],[-90.433806,41.3414219],[-90.4338139,41.326975],[-90.453343,41.3268249],[-90.4541657,41.3267908],[-90.4544307,41.326779099999996],[-90.4728183,41.3267437],[-90.4731878,41.3267435],[-90.4734658,41.326744],[-90.4921934,41.3268202],[-90.4925336,41.326822899999996],[-90.4928044,41.3268234],[-90.51199270000001,41.3268871],[-90.5307239,41.326962699999996],[-90.5309617,41.326962],[-90.5498934,41.3269901],[-90.569213,41.3272531],[-90.5887191,41.327492],[-90.6082293,41.3277581],[-90.6279332,41.3282149],[-90.6282202,41.3282012],[-90.6478384,41.3284405],[-90.6480378,41.3284414],[-90.66795139999999,41.328614],[-90.687761,41.328583],[-90.6880589,41.3285649],[-90.7061054,41.328653],[-90.7062924,41.3286746],[-90.7253311,41.328692000000004],[-90.7255181,41.3287177],[-90.7447227,41.328801999999996],[-90.763487,41.3290176],[-90.763608,41.3290328],[-90.7824367,41.3295508],[-90.7825502,41.3295551],[-90.7826801,41.3295565],[-90.801698,41.329912300000004],[-90.8205868,41.3304775],[-90.8207739,41.3305044],[-90.8396546,41.3308281],[-90.8599109,41.3313209],[-90.8601104,41.3313241],[-90.8787369,41.3317149],[-90.87911940000001,41.331723],[-90.8794012,41.331728],[-90.898511,41.3321226],[-90.91876859999999,41.3322773],[-90.9190354,41.332265899999996],[-90.9371874,41.332321],[-90.9376594,41.3323236],[-90.9379484,41.332324299999996],[-90.9564169,41.332379599999996],[-90.9572713,41.3323831],[-90.9575183,41.3323842],[-90.9757862,41.3324665],[-90.9770858,41.3324975],[-90.996556,41.332593599999996],[-90.9967223,41.332583299999996],[-91.0158656,41.3326941],[-91.0354598,41.3327575],[-91.0357246,41.3327389],[-91.0554272,41.3329756],[-91.0722949,41.3329993],[-91.0711255,41.3418271],[-91.0704137,41.3476429],[-91.0702819,41.3482789],[-91.0703862,41.3486774],[-91.0701216,41.3492682],[-91.0700353,41.3498126],[-91.0699114,41.3504734],[-91.0698372,41.35107],[-91.0697064,41.3517474],[-91.0696535,41.352156199999996],[-91.0695166,41.3527288],[-91.0694134,41.3531769],[-91.0692317,41.3537116],[-91.0691179,41.354173599999996],[-91.068938,41.3547882],[-91.0687917,41.3552727],[-91.0686882,41.3557042],[-91.0685801,41.3562599],[-91.0683883,41.3569905],[-91.0682487,41.35761],[-91.0680445,41.3581229],[-91.0678995,41.3586598],[-91.0677811,41.359246],[-91.0677054,41.3597737],[-91.0676106,41.3602713],[-91.067559,41.3608952],[-91.0674815,41.3613457],[-91.0674725,41.3619112],[-91.0674441,41.3620301],[-91.0673654,41.3623511],[-91.0672541,41.3627634],[-91.0671253,41.3633746],[-91.0669977,41.3638726],[-91.0668955,41.3645275],[-91.0667037,41.3651036],[-91.0666197,41.36575],[-91.0663688,41.366622],[-91.0661331,41.3673586],[-91.0658645,41.367941200000004],[-91.0656812,41.3682497],[-91.0654924,41.368795399999996],[-91.0651589,41.3692603],[-91.0647953,41.3696897],[-91.064482,41.3700743],[-91.0640011,41.3706569],[-91.063556,41.371206],[-91.0629743,41.3718616],[-91.062637,41.372321],[-91.0620802,41.3729487],[-91.0615269,41.373565299999996],[-91.0608273,41.3743548],[-91.0603079,41.3750179],[-91.0600846,41.3750152],[-91.0596913,41.3755912],[-91.059522,41.3760346],[-91.0590981,41.3763903],[-91.0587132,41.3768503],[-91.05865059999999,41.3769159],[-91.0584808,41.377096],[-91.0582072,41.377458000000004],[-91.05777140000001,41.377938],[-91.0571765,41.3785027],[-91.0567434,41.3789358],[-91.0562092,41.3794335],[-91.0558684,41.379744],[-91.0554588,41.3802485],[-91.0550111,41.3806872],[-91.05479,41.3811065],[-91.054207,41.3815525],[-91.0538446,41.3820397],[-91.0535771,41.3825147],[-91.0535322,41.3825512],[-91.0530305,41.382952],[-91.0527012,41.3834443],[-91.0522636,41.3840098],[-91.0519132,41.384541],[-91.0515645,41.3851494],[-91.0513569,41.3856816],[-91.0512611,41.3861406],[-91.0510879,41.3867385],[-91.0509838,41.3873162],[-91.0508743,41.388136599999996],[-91.0508336,41.3886032],[-91.0508402,41.389218],[-91.0508412,41.3897447],[-91.0508625,41.3901995],[-91.0508565,41.3907428],[-91.0508478,41.3913303],[-91.0508406,41.391414499999996],[-91.0508072,41.3917969],[-91.050767,41.3922855],[-91.0507035,41.392879199999996],[-91.05067030000001,41.3935139],[-91.0507026,41.394131200000004],[-91.0507155,41.3945364],[-91.0506981,41.395063300000004],[-91.0506053,41.3956547],[-91.0505865,41.3962754],[-91.0506354,41.3969807],[-91.0506374,41.3975515],[-91.050613,41.3980896],[-91.0505707,41.3986499],[-91.0505082,41.3992822],[-91.0505052,41.399957900000004],[-91.0502174,41.4006731],[-91.050053,41.401337],[-91.0498803,41.4019569],[-91.0497903,41.4025124],[-91.0496056,41.4030883],[-91.0495276,41.403684999999996],[-91.0493033,41.4042945],[-91.0492189,41.4049354],[-91.0490762,41.4054253],[-91.0490881,41.4059519],[-91.0490686,41.4059811],[-91.0488401,41.4063218],[-91.0487954,41.4067719],[-91.0487597,41.4072991],[-91.0485525,41.4078532],[-91.0484178,41.4082135],[-91.0483339,41.4087137],[-91.0483893,41.4092176],[-91.0481625,41.4097169],[-91.0480281,41.410253600000004],[-91.0477098,41.4107568],[-91.0475099,41.4111482],[-91.0472169,41.4116345],[-91.0468391,41.4122598],[-91.0465074,41.4128184],[-91.046197,41.4133463],[-91.0458772,41.4137833],[-91.0454476,41.4142245],[-91.0449568,41.4147134],[-91.044574,41.4151182],[-91.0440552,41.4155054],[-91.0436177,41.4159218],[-91.042994,41.4163655],[-91.0424183,41.4168279],[-91.0417686,41.4172554],[-91.0411623,41.417663],[-91.0407372,41.417982800000004],[-91.040246,41.4182924],[-91.0397418,41.4185167],[-91.0390999,41.4188061],[-91.038457,41.4190515],[-91.0379683,41.4193114],[-91.0375015,41.4195655],[-91.0371018,41.4197113],[-91.0367846,41.4199414],[-91.0361007,41.4201597],[-91.0353105,41.4205338],[-91.0352307,41.4205693],[-91.0349296,41.4207041],[-91.0341835,41.4210859],[-91.0338974,41.4212329],[-91.0333595,41.421421699999996],[-91.0328436,41.4216186],[-91.0322949,41.4218158],[-91.0315817,41.4220317],[-91.03104809999999,41.4222563],[-91.0306066,41.4224963],[-91.0300062,41.422680400000004],[-91.029291,41.4229735],[-91.0286475,41.4231968],[-91.0280865,41.423339],[-91.0272676,41.4235783],[-91.0264852,41.423817],[-91.0254344,41.4240096],[-91.0247056,41.4240243],[-91.0239823,41.4241162],[-91.0234265,41.4241646],[-91.0227348,41.4242009],[-91.0221894,41.4242215],[-91.0216075,41.4242482],[-91.0210926,41.4243236],[-91.0204891,41.4243698],[-91.0198556,41.4243861],[-91.0191487,41.424395000000004],[-91.0183001,41.4244553],[-91.0177035,41.424479399999996],[-91.0170163,41.4245514],[-91.0162948,41.4245633],[-91.0156471,41.424596199999996],[-91.0149814,41.4246487],[-91.0144005,41.4247194],[-91.0137751,41.4247714],[-91.0134797,41.424830299999996],[-91.0134009,41.424828500000004],[-91.0129958,41.4248198],[-91.0124942,41.4248344],[-91.0119052,41.4248721],[-91.0113428,41.4249536],[-91.0106932,41.425069300000004],[-91.0099325,41.425296599999996],[-91.0092396,41.425443200000004],[-91.008525,41.425598300000004],[-91.0079006,41.4256971],[-91.0071399,41.4259217],[-91.0066161,41.426093699999996],[-91.006053,41.4263103],[-91.0054744,41.4264912],[-91.0050493,41.4266537],[-91.0047291,41.4267515],[-91.0036908,41.4271863],[-91.0030338,41.427464799999996],[-91.0027595,41.4276557],[-91.0020574,41.427885],[-91.0014528,41.428047],[-91.0008116,41.4282149],[-91.00012100000001,41.4283007],[-90.9989966,41.428485699999996],[-90.9982941,41.4286957],[-90.9975653,41.429043899999996],[-90.9967195,41.4292364],[-90.9958678,41.4294979],[-90.9953463,41.4297774],[-90.9947322,41.4300111],[-90.9938266,41.4303174],[-90.9930476,41.4307158],[-90.9923072,41.4308711],[-90.9917251,41.4310631],[-90.991113,41.4313905],[-90.9905794,41.4316205],[-90.9899235,41.431954],[-90.9891952,41.432327],[-90.9885068,41.4326884],[-90.9876524,41.432991200000004],[-90.987225,41.4332226],[-90.9867359,41.4334768],[-90.9863452,41.4335368],[-90.9858946,41.4337106],[-90.985508,41.4337953],[-90.9850328,41.4338453],[-90.984492,41.4339181],[-90.984061,41.4339813],[-90.9835735,41.4339708],[-90.9829812,41.4340332],[-90.982304,41.4340608],[-90.9817737,41.434108699999996],[-90.9813786,41.4341356],[-90.9808704,41.4341915],[-90.9801433,41.4342859],[-90.9796885,41.4342639],[-90.9790065,41.4342419],[-90.9783496,41.4341976],[-90.9776417,41.4341649],[-90.9771794,41.4341347],[-90.9763196,41.434026599999996],[-90.9756949,41.433943299999996],[-90.9749228,41.4338204],[-90.9744887,41.4337402],[-90.974041,41.4335416],[-90.9734358,41.4333394],[-90.972967,41.4331825],[-90.9724665,41.4327418],[-90.9717387,41.432293],[-90.9714052,41.4319468],[-90.9709184,41.4316302],[-90.9703985,41.4313083],[-90.9698747,41.4309756],[-90.9690427,41.4306244],[-90.9681909,41.4303701],[-90.967564,41.4301847],[-90.966739,41.429985200000004],[-90.9658314,41.4298611],[-90.9652771,41.4298127],[-90.9642249,41.4296131],[-90.9633539,41.4294885],[-90.9623676,41.4292854],[-90.9617388,41.429009],[-90.960978,41.4287232],[-90.9603419,41.4284469],[-90.9596323,41.4281631],[-90.9590484,41.427927499999996],[-90.958397,41.4276183],[-90.9577105,41.427213],[-90.9575526,41.4271073],[-90.9570453,41.4267715],[-90.9564736,41.42642],[-90.9559278,41.4260819],[-90.95539959999999,41.4258814],[-90.9548286,41.4255629],[-90.9543477,41.4253454],[-90.9536146,41.4251529],[-90.9528704,41.4249578],[-90.952067,41.4247358],[-90.9513416,41.4245653],[-90.9504139,41.4243559],[-90.9496542,41.4241196],[-90.94886460000001,41.4240298],[-90.9475252,41.4239273],[-90.9468428,41.4238804],[-90.9463283,41.4238038],[-90.9455021,41.4237172],[-90.9446789,41.4235947],[-90.9436871,41.4234687],[-90.9427249,41.4233616],[-90.94189539999999,41.4232861],[-90.9410553,41.4232327],[-90.9401193,41.4231473],[-90.9395059,41.4230719],[-90.9388282,41.4229008],[-90.9377027,41.4226908],[-90.9365986,41.4224503],[-90.935873,41.4222659],[-90.9354016,41.4221474],[-90.9345936,41.4220495],[-90.9337841,41.4218854],[-90.9330364,41.4216902],[-90.9323826,41.4216098],[-90.9315989,41.421450899999996],[-90.9306852,41.4213762],[-90.9300075,41.4213815],[-90.9295077,41.4214784],[-90.9288919,41.4216374],[-90.9282391,41.421783],[-90.9274295,41.421958000000004],[-90.9263271,41.4221475],[-90.9255618,41.422344100000004],[-90.9247486,41.4226984],[-90.9239673,41.4230054],[-90.9232331,41.423458],[-90.9225361,41.4237696],[-90.9219278,41.4241132],[-90.9212445,41.4245514],[-90.9203283,41.4250641],[-90.9197996,41.425365299999996],[-90.9192181,41.42559],[-90.9188914,41.425734500000004],[-90.9171488,41.4264182],[-90.9131904,41.4278475],[-90.9115028,41.4283581],[-90.9024994,41.4305243],[-90.9007574,41.431250500000004],[-90.8998235,41.4315384],[-90.8993834,41.431698],[-90.8987217,41.4319455],[-90.8983188,41.4321322],[-90.8977626,41.4323482],[-90.8971934,41.4326443],[-90.8965608,41.4328888],[-90.8958348,41.4332226],[-90.8954281,41.4333983],[-90.89495,41.433673999999996],[-90.8941878,41.4340303],[-90.8932355,41.4344053],[-90.8924914,41.434753],[-90.8916314,41.4351655],[-90.890999,41.435421],[-90.8901527,41.4357837],[-90.889527,41.4360115],[-90.8890133,41.4363345],[-90.8883452,41.4366345],[-90.8877076,41.4369948],[-90.8870586,41.4373359],[-90.8865038,41.4376236],[-90.8859972,41.437941],[-90.8854823,41.4382089],[-90.8849238,41.4384965],[-90.8844678,41.4387775],[-90.8837848,41.439066600000004],[-90.8832177,41.4392937],[-90.8826455,41.439628400000004],[-90.8820335,41.4399856],[-90.8814351,41.4402958],[-90.8807204,41.4406514],[-90.8800167,41.4410069],[-90.8793974,41.441369699999996],[-90.8789744,41.4416585],[-90.8785439,41.4419309],[-90.8780381,41.4422924],[-90.8773306,41.4426424],[-90.8766497,41.4430417],[-90.8760521,41.4433932],[-90.8751533,41.443888799999996],[-90.8750784,41.4438097],[-90.8745937,41.4441268],[-90.8739948,41.4444149],[-90.8734437,41.4447079],[-90.8728639,41.4450371],[-90.8724005,41.4453154],[-90.8717444,41.445675800000004],[-90.8709368,41.4461565],[-90.8703353,41.446497],[-90.8697226,41.4468293],[-90.8690556,41.4471954],[-90.8682803,41.4476453],[-90.8674424,41.4480767],[-90.8667313,41.4484377],[-90.8660557,41.448743199999996],[-90.8653085,41.4491322],[-90.8648327,41.4493444],[-90.8644808,41.449527599999996],[-90.8640411,41.4497145],[-90.8635774,41.4499845],[-90.8629377,41.4502509],[-90.8624686,41.4504354],[-90.8619716,41.4506947],[-90.8614169,41.450996],[-90.860734,41.4513015],[-90.8600732,41.4516151],[-90.8595022,41.4518366],[-90.8589359,41.4521104],[-90.8583976,41.4523205],[-90.8579581,41.4525185],[-90.8572375,41.4527748],[-90.8567758,41.4529647],[-90.855988,41.4531583],[-90.8554743,41.4533185],[-90.8547553,41.4534672],[-90.8542527,41.453630000000004],[-90.8534177,41.4538489],[-90.85247939999999,41.4540304],[-90.8517305,41.4541574],[-90.8512004,41.454223999999996],[-90.8505442,41.454405],[-90.8494296,41.4545719],[-90.8486044,41.45473],[-90.847822,41.4548298],[-90.8470592,41.45499],[-90.8463688,41.455107999999996],[-90.8453659,41.455177],[-90.8446426,41.4553009],[-90.8437604,41.4553604],[-90.8429049,41.4554664],[-90.8419777,41.4554767],[-90.841425,41.4555104],[-90.8409466,41.455601200000004],[-90.8403562,41.4555885],[-90.83984,41.455619],[-90.8394782,41.4556727],[-90.8386794,41.4556815],[-90.838159,41.4556846],[-90.8373553,41.4556356],[-90.8363762,41.4556106],[-90.8355021,41.455521],[-90.8346629,41.4555275],[-90.8339838,41.455471599999996],[-90.8331586,41.4554449],[-90.8323575,41.4553379],[-90.8314396,41.4552598],[-90.8306092,41.4551504],[-90.8297316,41.4550718],[-90.8288979,41.4549845],[-90.8282364,41.454889800000004],[-90.8275347,41.4548092],[-90.8275702,41.4547482],[-90.8258931,41.454637],[-90.8250601,41.4545883],[-90.82434,41.4544997],[-90.8235835,41.4544225],[-90.8226262,41.4543861],[-90.8219848,41.4543849],[-90.8209652,41.4543519],[-90.8200747,41.4543589],[-90.8197262,41.4543434],[-90.8191062,41.4543143],[-90.8184286,41.4543355],[-90.81756730000001,41.4543367],[-90.8165931,41.4543749],[-90.8157248,41.4543926],[-90.8148612,41.4544627],[-90.8139713,41.454505499999996],[-90.8130882,41.4545123],[-90.8121189,41.4546166],[-90.8112892,41.4545457],[-90.810484,41.4546068],[-90.809644,41.454569],[-90.8088775,41.4545443],[-90.8081327,41.454505499999996],[-90.8073037,41.4544703],[-90.8063172,41.4544369],[-90.8054504,41.4543443],[-90.8046902,41.454267],[-90.8039637,41.4542225],[-90.803211,41.454153399999996],[-90.8022789,41.454088999999996],[-90.8015479,41.4540031],[-90.8004443,41.4539847],[-90.7998358,41.453980200000004],[-90.7991347,41.4539244],[-90.7982466,41.453865],[-90.7973297,41.4538307],[-90.7961741,41.453777],[-90.7953373,41.453717],[-90.7944085,41.4536332],[-90.7934695,41.4535964],[-90.7924343,41.453511],[-90.7913712,41.4534976],[-90.7904147,41.4533093],[-90.7892218,41.4532172],[-90.7881304,41.4530634],[-90.7871673,41.4529138],[-90.7863995,41.4528144],[-90.7858541,41.4526576],[-90.7850339,41.452506400000004],[-90.7840049,41.4523574],[-90.7832618,41.4522081],[-90.7824274,41.4520791],[-90.7819602,41.4519876],[-90.78166949999999,41.4519273],[-90.7803644,41.4517095],[-90.7792323,41.451534],[-90.7784601,41.4513988],[-90.777472,41.4512797],[-90.7763294,41.4511291],[-90.775301,41.4510131],[-90.7743001,41.4509933],[-90.7734547,41.4508589],[-90.772522,41.4507667],[-90.7716667,41.450693],[-90.7706539,41.450620900000004],[-90.7699606,41.4505869],[-90.7693265,41.4505853],[-90.7685905,41.4506178],[-90.7678066,41.4506399],[-90.767055,41.4506257],[-90.7660765,41.4506277],[-90.7651373,41.4505769],[-90.7642378,41.4504898],[-90.763434,41.450423799999996],[-90.7622786,41.450375199999996],[-90.762141,41.4503629],[-90.761339,41.4502995],[-90.7605285,41.4502667],[-90.7596874,41.4501679],[-90.7589167,41.4501125],[-90.7583879,41.4500546],[-90.7574305,41.4500095],[-90.7564608,41.449889999999996],[-90.7556498,41.4498295],[-90.7550077,41.4497893],[-90.7542406,41.449728300000004],[-90.7537966,41.4496971],[-90.7523838,41.4496015],[-90.751581,41.4495905],[-90.7508188,41.4495956],[-90.7502061,41.4495606],[-90.7499733,41.4494527],[-90.7493108,41.449501],[-90.7483396,41.4495],[-90.7476629,41.4495704],[-90.7469388,41.4496578],[-90.7461443,41.4497019],[-90.7454675,41.449764],[-90.7443244,41.4497841],[-90.7435954,41.4498054],[-90.7427942,41.4498826],[-90.742102,41.449909],[-90.7411215,41.4500018],[-90.7400628,41.4500237],[-90.739181,41.4501045],[-90.7382146,41.4501696],[-90.7370582,41.4502642],[-90.7361965,41.4504412],[-90.7353117,41.4505578],[-90.7343679,41.4506557],[-90.7334349,41.4507452],[-90.7326375,41.4508278],[-90.7317388,41.4509886],[-90.7309162,41.451099],[-90.7298627,41.4512146],[-90.7290437,41.4513249],[-90.7280604,41.4514645],[-90.7271526,41.4515289],[-90.7263449,41.4516557],[-90.7254294,41.4516981],[-90.7242494,41.4519058],[-90.72339410000001,41.452035800000004],[-90.7225566,41.4521353],[-90.7217734,41.452201099999996],[-90.721075,41.4522882],[-90.720248,41.4523655],[-90.7192193,41.4524283],[-90.7183446,41.4525005],[-90.7172621,41.4526328],[-90.7162448,41.4527202],[-90.7151094,41.452762],[-90.7142643,41.4528505],[-90.7132777,41.4530176],[-90.7123257,41.4530713],[-90.7113421,41.4531969],[-90.7104711,41.4532691],[-90.709399,41.4533708],[-90.7082764,41.45352],[-90.7073765,41.4536172],[-90.7064555,41.4537643],[-90.705315,41.4539329],[-90.7048367,41.4540369],[-90.7042589,41.4541088],[-90.7033482,41.4542172],[-90.7025584,41.454324299999996],[-90.701704,41.4545066],[-90.7009213,41.4546053],[-90.7003879,41.4546989],[-90.6994517,41.4548212],[-90.6985896,41.4549815],[-90.6977666,41.4550751],[-90.6967796,41.4552283],[-90.6961655,41.4553226],[-90.6953772,41.4555152],[-90.6945587,41.455658400000004],[-90.6936754,41.455865599999996],[-90.6927836,41.4560123],[-90.6916882,41.456249299999996],[-90.6909776,41.4564879],[-90.6901687,41.4567606],[-90.6894728,41.4570018],[-90.6884734,41.4572791],[-90.6877189,41.4575264],[-90.6869894,41.4577266],[-90.6863478,41.4579315],[-90.6855893,41.4581512],[-90.6847632,41.4584957],[-90.6841006,41.4587559],[-90.683416,41.4590163],[-90.6829651,41.459222],[-90.6820649,41.4595176],[-90.6811063,41.4598303],[-90.6804063,41.4600495],[-90.67958110000001,41.460234],[-90.678741,41.460407599999996],[-90.6777623,41.4606185],[-90.6767676,41.460752299999996],[-90.6759481,41.460843],[-90.6751233,41.4608372],[-90.674005,41.4608205],[-90.6730438,41.4607692],[-90.6718556,41.4607339],[-90.6705386,41.4606722],[-90.6694821,41.4606191],[-90.6687819,41.4606176],[-90.6678501,41.460568699999996],[-90.6670774,41.460612],[-90.6665861,41.4606057],[-90.6658828,41.4606318],[-90.6650295,41.4606787],[-90.6641025,41.4606986],[-90.6627735,41.4607914],[-90.661906,41.4608632],[-90.6610968,41.4609096],[-90.6602635,41.461052699999996],[-90.6594733,41.461143],[-90.6586481,41.4613357],[-90.6577634,41.461471],[-90.656718,41.461643699999996],[-90.6559302,41.4618801],[-90.6550886,41.4621805],[-90.6542268,41.4625913],[-90.6535469,41.4629204],[-90.6528565,41.4632799],[-90.6521855,41.4637027],[-90.6514449,41.4641289],[-90.6509263,41.4644647],[-90.6506476,41.4646714],[-90.6501958,41.4650534],[-90.6497516,41.4654492],[-90.649273,41.4657653],[-90.6487125,41.4662201],[-90.6480987,41.4667802],[-90.6474609,41.4672219],[-90.6467876,41.4677274],[-90.6460841,41.4681862],[-90.6454683,41.468625],[-90.644825,41.469177],[-90.6442177,41.4696874],[-90.6437372,41.4701138],[-90.6434366,41.4705468],[-90.6428975,41.470973799999996],[-90.6426283,41.471321],[-90.6420955,41.471902299999996],[-90.6415273,41.472346099999996],[-90.6410312,41.4727147],[-90.6405663,41.4729728],[-90.6399218,41.4734586],[-90.6393491,41.4738528],[-90.6388289,41.4743127],[-90.6383593,41.4747362],[-90.6377234,41.4750786],[-90.6372347,41.4754527],[-90.6368373,41.4758066],[-90.6361476,41.4762184],[-90.6355339,41.476574400000004],[-90.6349535,41.4769465],[-90.6344356,41.4773292],[-90.6339683,41.4776699],[-90.6333584,41.4780341],[-90.6327347,41.4784508],[-90.6320125,41.4788987],[-90.6314397,41.479292900000004],[-90.6309777,41.479512299999996],[-90.6304467,41.4797737],[-90.6296468,41.4801782],[-90.6289738,41.4805016],[-90.6282274,41.4808146],[-90.6273979,41.481205599999996],[-90.6267646,41.4814928],[-90.6259595,41.4818091],[-90.62500059999999,41.4821351],[-90.6252317,41.4821412],[-90.6246481,41.4823287],[-90.6241464,41.482587],[-90.6235966,41.4828237],[-90.6231309,41.4830431],[-90.6225692,41.4832221],[-90.6221445,41.483485200000004],[-90.6215661,41.4837663],[-90.6209939,41.4839756],[-90.6204039,41.4842238],[-90.6198073,41.4845133],[-90.6191233,41.484834],[-90.6185561,41.485128700000004],[-90.6179271,41.4854572],[-90.6170698,41.485727],[-90.61652050000001,41.4859941],[-90.6161076,41.486309399999996],[-90.6156124,41.4865181],[-90.6150355,41.4868929],[-90.6145336,41.4871484],[-90.6141159,41.4873949],[-90.6136395,41.4876336],[-90.61308149999999,41.488044099999996],[-90.6125886,41.4884016],[-90.6120995,41.4887645],[-90.6115741,41.4891526],[-90.61108899999999,41.4895376],[-90.6106477,41.4899111],[-90.610213,41.4902405],[-90.609582,41.4906792],[-90.6090002,41.4912084],[-90.608632,41.4915674],[-90.6081589,41.4920129],[-90.6077617,41.4923943],[-90.6075042,41.492802],[-90.6070517,41.4931646],[-90.6067175,41.4935867],[-90.6063128,41.494186],[-90.6060601,41.4946598],[-90.6057887,41.4951062],[-90.6054016,41.4954351],[-90.6051483,41.4958758],[-90.6048746,41.4964077],[-90.6045182,41.4970506],[-90.6043193,41.4974495],[-90.6041114,41.4979753],[-90.6038815,41.4984985],[-90.6037748,41.4991612],[-90.6037582,41.499494999999996],[-90.60368,41.4999851],[-90.6037295,41.4999888],[-90.603726,41.5002232],[-90.6037211,41.5005982],[-90.6036278,41.5009547],[-90.6035709,41.5012944],[-90.6035363,41.5016504],[-90.6034977,41.501984300000004],[-90.6034616,41.5024727],[-90.6034612,41.5029],[-90.6033617,41.5033256],[-90.6033257,41.5038194],[-90.6031114,41.5044059],[-90.6028141,41.504847],[-90.6026174,41.505389199999996],[-90.6023604,41.5058272],[-90.6020008,41.5062689],[-90.6016267,41.506724500000004],[-90.6012733,41.5070999],[-90.6008996,41.507357],[-90.60068150000001,41.507706400000004],[-90.6001588,41.5080475],[-90.5995089,41.508461499999996],[-90.5990009,41.5088025],[-90.5986283,41.5091285],[-90.5982644,41.509305499999996],[-90.5978325,41.5095934],[-90.5972142,41.5099243],[-90.5965571,41.5103466],[-90.5961743,41.5107223],[-90.5956687,41.5109861],[-90.5950825,41.5112561],[-90.5945839,41.511506],[-90.5940634,41.511758900000004],[-90.5934914,41.5120012],[-90.5929196,41.5122573],[-90.5920062,41.5124833],[-90.5913037,41.5126],[-90.5907459,41.5128118],[-90.5898776,41.5131091],[-90.5890635,41.5133564],[-90.5881867,41.5135793],[-90.5874453,41.513787300000004],[-90.5868749,41.5138999],[-90.5862432,41.514082099999996],[-90.5855202,41.5142899],[-90.5848592,41.5144778],[-90.5842894,41.514631800000004],[-90.5839346,41.514697],[-90.5825264,41.5149591],[-90.5819708,41.515085400000004],[-90.5813453,41.5151931],[-90.5805762,41.5152716],[-90.5798295,41.5153776],[-90.5791707,41.5154717],[-90.57821799999999,41.5155408],[-90.5773387,41.5156121],[-90.5768045,41.5156996],[-90.5756906,41.5157784],[-90.5749399,41.5158651],[-90.5741272,41.515968799999996],[-90.5731347,41.5160741],[-90.5723955,41.516191],[-90.5713002,41.5162889],[-90.5706123,41.5164026],[-90.5696405,41.5166538],[-90.5691221,41.5168156],[-90.5684597,41.517155],[-90.5677598,41.5174397],[-90.5670927,41.517704800000004],[-90.5665013,41.5181263],[-90.5661711,41.518360799999996],[-90.5660477,41.5184474],[-90.5653119,41.518782],[-90.5647742,41.5191176],[-90.5642606,41.519351],[-90.5638192,41.5197464],[-90.5629499,41.5202282],[-90.5624703,41.520524699999996],[-90.5619913,41.5208681],[-90.5613801,41.5211933],[-90.5607727,41.521532199999996],[-90.5602319,41.5219119],[-90.5597776,41.5221833],[-90.55913699999999,41.5225171],[-90.5585917,41.522838899999996],[-90.5579738,41.523211],[-90.5573703,41.5235692],[-90.55667,41.5240689],[-90.5562639,41.5243812],[-90.5559639,41.5244335],[-90.5552062,41.5245504],[-90.5543714,41.5246597],[-90.5535957,41.5247933],[-90.5527576,41.5249302],[-90.5521618,41.5250705],[-90.5512165,41.5251559],[-90.5504814,41.5253029],[-90.5499508,41.5253985],[-90.549189,41.5254796],[-90.5486915,41.5255749],[-90.5481236,41.525626700000004],[-90.5476331,41.5257054],[-90.5474713,41.5256765],[-90.5468926,41.5257394],[-90.5464642,41.5257982],[-90.5457194,41.525796400000004],[-90.54502360000001,41.525885099999996],[-90.544438,41.525975700000004],[-90.5440756,41.5260312],[-90.5432994,41.5261316],[-90.5425265,41.5262155],[-90.5419953,41.526267000000004],[-90.5414566,41.5263075],[-90.5408423,41.5262025],[-90.5404048,41.5261456],[-90.5394013,41.5260219],[-90.5388243,41.5259579],[-90.5382069,41.5258916],[-90.5374315,41.5258045],[-90.5368323,41.5257324],[-90.5360302,41.5255794],[-90.5349342,41.5254013],[-90.5340952,41.5252403],[-90.5331967,41.5250192],[-90.5322991,41.524858699999996],[-90.5317611,41.5247061],[-90.5312673,41.524561399999996],[-90.5307549,41.5243976],[-90.5300177,41.5241751],[-90.5293699,41.5240345],[-90.5287069,41.5238637],[-90.5282201,41.5236941],[-90.5279454,41.5236027],[-90.5277851,41.5235517],[-90.5273058,41.5233986],[-90.5267678,41.5232405],[-90.5262622,41.5230436],[-90.5255698,41.522862],[-90.5249692,41.5226934],[-90.524468,41.5225432],[-90.5237467,41.5223922],[-90.5232089,41.5222451],[-90.5226341,41.522079],[-90.5221808,41.5219478],[-90.5214299,41.5217804],[-90.5207964,41.5216121],[-90.5201702,41.5214437],[-90.5195657,41.5212503],[-90.5190457,41.5210672],[-90.5181924,41.5209227],[-90.5172563,41.520638399999996],[-90.516774,41.520521099999996],[-90.516045,41.5203453],[-90.5154622,41.5201324],[-90.5145011,41.5198896],[-90.5139191,41.5197345],[-90.5132637,41.5195746],[-90.5127161,41.519502],[-90.5119657,41.5193704],[-90.5113776,41.5192926],[-90.5107379,41.519198700000004],[-90.5099044,41.5191478],[-90.5089303,41.5190154],[-90.5081736,41.518950000000004],[-90.5077023,41.5188354],[-90.5076548,41.5188468],[-90.5066697,41.5187172],[-90.5060851,41.5186283],[-90.5053354,41.518535299999996],[-90.5046152,41.5184586],[-90.5040273,41.5183945],[-90.5032772,41.5182767],[-90.5023449,41.5182376],[-90.5014482,41.518129200000004],[-90.5003615,41.518077500000004],[-90.5001661,41.5180102],[-90.4993047,41.5180532],[-90.4985784,41.518062],[-90.4978608,41.5181589],[-90.4971226,41.5181016],[-90.4960555,41.5181269],[-90.4949774,41.5181606],[-90.4942191,41.5182302],[-90.4935175,41.5181726],[-90.4926442,41.5181577],[-90.4918625,41.5181338],[-90.4909345,41.5181442],[-90.4901465,41.518192],[-90.4897816,41.518199100000004],[-90.48954140000001,41.5182052],[-90.4889203,41.518130299999996],[-90.4879742,41.5181519],[-90.4870615,41.5182089],[-90.4861608,41.5183266],[-90.48540320000001,41.5184513],[-90.4845212,41.5185991],[-90.4836639,41.5186723],[-90.4828289,41.51877],[-90.4818657,41.5188881],[-90.4810343,41.518980400000004],[-90.4803425,41.519087999999996],[-90.4795849,41.5192127],[-90.4785854,41.519353100000004],[-90.4777683,41.5194204],[-90.4768678,41.5195573],[-90.4760546,41.519641],[-90.475149,41.5196787],[-90.4745511,41.5196862],[-90.4737844,41.5196897],[-90.4730802,41.5196981],[-90.4722621,41.5196964],[-90.4715836,41.5197101],[-90.4710304,41.5197614],[-90.4709717,41.5197674],[-90.4704697,41.5198073],[-90.4699211,41.5199275],[-90.4692447,41.5200818],[-90.4686232,41.5202384],[-90.4678419,41.5205066],[-90.4670971,41.520755199999996],[-90.4665796,41.5209992],[-90.4662521,41.5211893],[-90.4657227,41.52137],[-90.4651634,41.5217715],[-90.4645514,41.5220769],[-90.4640206,41.5224175],[-90.4634665,41.5226673],[-90.4629605,41.5229498],[-90.46242050000001,41.5231609],[-90.4617457,41.5234419],[-90.4611402,41.5236866],[-90.4608351,41.523904099999996],[-90.4603686,41.5241284],[-90.4598231,41.5244691],[-90.4592876,41.5247407],[-90.4587748,41.5250646],[-90.4581663,41.5253617],[-90.4574667,41.5257036],[-90.4568042,41.5260783],[-90.4559551,41.526487599999996],[-90.4555399,41.5267031],[-90.4549495,41.5269918],[-90.4545236,41.5272323],[-90.4538914,41.5276729],[-90.4533978,41.5280572],[-90.4530038,41.5284794],[-90.452571,41.5287558],[-90.4522848,41.5290199],[-90.4521116,41.5292281],[-90.4519167,41.5294612],[-90.4515837,41.529783699999996],[-90.4512469,41.530102],[-90.4508016,41.5302682],[-90.4505044,41.5305324],[-90.450306,41.5307738],[-90.4500649,41.5311149],[-90.4495344,41.5314885],[-90.4492409,41.5317555],[-90.4488725,41.5321774],[-90.4485387,41.5324502],[-90.4482283,41.532822100000004],[-90.4479278,41.5331084],[-90.4476134,41.5334555],[-90.4472413,41.5338803],[-90.4469096,41.5343019],[-90.4465521,41.534715500000004],[-90.4462116,41.535035300000004],[-90.4458793,41.5354156],[-90.4454959,41.5358211],[-90.4453058,41.5361314],[-90.4449663,41.536525499999996],[-90.4445938,41.5369227],[-90.4442719,41.537258800000004],[-90.4439225,41.5377275],[-90.4435686,41.5381438],[-90.4432966,41.538377499999996],[-90.4429669,41.5386861],[-90.4425795,41.5390641],[-90.4420726,41.5395588],[-90.4416386,41.540019900000004],[-90.4411684,41.5405143],[-90.4408474,41.5409221],[-90.4404283,41.5413995],[-90.4401223,41.5418265],[-90.4397903,41.5422371],[-90.4394484,41.542725000000004],[-90.43911,41.5431991],[-90.4389252,41.5435065],[-90.4386144,41.5439887],[-90.4385069,41.544177],[-90.4384136,41.5443321],[-90.4382361,41.544629900000004],[-90.4380196,41.5450327],[-90.4376725,41.5454159],[-90.437381,41.5458317],[-90.43707069999999,41.5462228],[-90.4367485,41.5465451],[-90.4364344,41.546917],[-90.4360826,41.5472257],[-90.4356765,41.5475845],[-90.4352592,41.5479352],[-90.4348199,41.5482777],[-90.4343844,41.5486367],[-90.43380930000001,41.5489885],[-90.4333813,41.5494936],[-90.4330535,41.5496781],[-90.4327875,41.5498166],[-90.4320589,41.550077200000004],[-90.4312952,41.5503285],[-90.4304771,41.5506188],[-90.4297031,41.5509197],[-90.4290577,41.5512335],[-90.4283853,41.5514454],[-90.4276589,41.551737700000004],[-90.4268224,41.5520281],[-90.4261359,41.552287],[-90.4255879,41.5524759],[-90.4250573,41.552863200000004],[-90.4243091,41.5531777],[-90.4237414,41.5535377],[-90.4232687,41.5538666],[-90.4228035,41.554203799999996],[-90.4224852,41.5545508],[-90.4220651,41.5549731],[-90.4216647,41.5554917],[-90.4212837,41.5560846],[-90.4210577,41.556475],[-90.4208944,41.5568898],[-90.4207649,41.557354000000004],[-90.4204319,41.5578404],[-90.4201247,41.5583252],[-90.4198093,41.5587577],[-90.4195413,41.5591636],[-90.4192414,41.559516],[-90.4189781,41.5598626],[-90.4187814,41.5602501],[-90.4184686,41.5607294],[-90.4181805,41.5611452],[-90.41782309999999,41.561589],[-90.4175558,41.5619136],[-90.4172761,41.5622672],[-90.4169398,41.5626447],[-90.416942,41.5626723],[-90.4165698,41.5629756],[-90.41599479999999,41.5634859],[-90.4156699,41.563896400000004],[-90.4152706,41.5642302],[-90.4147761,41.5645841],[-90.4144195,41.5648156],[-90.4139685,41.5651306],[-90.4133987,41.5653471],[-90.4128985,41.5655522],[-90.4122859,41.5658601],[-90.411566,41.5661054],[-90.4109591,41.566291899999996],[-90.4102681,41.5664983],[-90.4096118,41.5668341],[-90.4090607,41.5670781],[-90.4083891,41.5673699],[-90.408002,41.5675217],[-90.4074914,41.5677736],[-90.4070139,41.5680336],[-90.406423,41.568322],[-90.4059348,41.5685986],[-90.4053282,41.5688099],[-90.4048332,41.5691334],[-90.4043185,41.5693578],[-90.403692,41.5697264],[-90.40303109999999,41.570001500000004],[-90.4025349,41.5702341],[-90.4020755,41.5704718],[-90.4014408,41.5707853],[-90.4009387,41.571128200000004],[-90.400319,41.5714609],[-90.3996869,41.5716861],[-90.3991184,41.572007400000004],[-90.3984795,41.5722823],[-90.3979116,41.5725098],[-90.397213,41.572710799999996],[-90.396728,41.572957],[-90.3965364,41.573048],[-90.396237,41.5731701],[-90.3959783,41.5733251],[-90.395436,41.573541399999996],[-90.3948195,41.5738423],[-90.3942734,41.5740531],[-90.393656,41.574292],[-90.3930417,41.5744785],[-90.3923428,41.5746629],[-90.3917317,41.5748135],[-90.3910441,41.5750226],[-90.3904251,41.5751291],[-90.3896639,41.5753249],[-90.3890007,41.5754236],[-90.3885067,41.575554],[-90.3877917,41.5756227],[-90.3871734,41.575789900000004],[-90.3863557,41.5758703],[-90.3856923,41.5759579],[-90.3848965,41.5760354],[-90.3841085,41.576137599999996],[-90.3833058,41.57624],[-90.382485,41.57637],[-90.3817844,41.576422],[-90.3810134,41.5764249],[-90.3802253,41.5765188],[-90.3795466,41.576565099999996],[-90.3792975,41.576608300000004],[-90.3786554,41.5766433],[-90.377584,41.5766979],[-90.3767234,41.576726199999996],[-90.3763183,41.5767705],[-90.3755022,41.5768384],[-90.3751312,41.5771071],[-90.37224,41.5776932],[-90.3703606,41.5780238],[-90.36824060000001,41.5784801],[-90.3662919,41.5788497],[-90.3645406,41.5794357],[-90.3624207,41.5802007],[-90.3609888,41.5807898],[-90.3592251,41.5815633],[-90.3580454,41.5820624],[-90.3567344,41.5826354],[-90.3556842,41.583066099999996],[-90.3546152,41.5834734],[-90.354594,41.5835383],[-90.3537315,41.5840062],[-90.3525978,41.584232],[-90.3515751,41.5846637],[-90.3505485,41.585087200000004],[-90.3495469,41.5854444],[-90.3485377,41.5857878],[-90.3466091,41.586319599999996],[-90.3448288,41.5869675],[-90.34310669999999,41.5878659],[-90.342551,41.588661],[-90.3420702,41.5895741],[-90.3415013,41.5907855],[-90.3411523,41.5916674],[-90.3408411,41.59264],[-90.3404282,41.593398199999996],[-90.3403442,41.5940329],[-90.3400908,41.5943324],[-90.3400038,41.5950167],[-90.3398636,41.5955608],[-90.3396948,41.596174],[-90.3395014,41.5971678],[-90.3394235,41.5979995],[-90.3394161,41.5985868],[-90.3395358,41.5993579],[-90.3396223,41.6004214],[-90.3397043,41.601413300000004],[-90.33994799999999,41.6033001],[-90.3400499,41.6047191],[-90.3401982,41.606016600000004],[-90.3403503,41.607631],[-90.3405413,41.6097083],[-90.3407905,41.6114461],[-90.3408302,41.6125817],[-90.3410078,41.6141711],[-90.3412017,41.6164882],[-90.3415042,41.6183718],[-90.3416938,41.619743400000004],[-90.3418666,41.6212419],[-90.3420643,41.6226713],[-90.3421882,41.6237786],[-90.3421882,41.624964],[-90.3419464,41.6250209],[-90.3418226,41.6254049],[-90.3417957,41.6259041],[-90.3418051,41.6263699],[-90.3418067,41.6269433],[-90.3419528,41.6276205],[-90.3419923,41.6281385],[-90.3420511,41.6287363],[-90.3420589,41.6293675],[-90.3420491,41.630054],[-90.34205,41.6307211],[-90.3420519,41.6314737],[-90.3421195,41.6321845],[-90.3422452,41.6328425],[-90.3422827,41.6334983],[-90.3424159,41.6341646],[-90.342472,41.6348396],[-90.3424794,41.6351345],[-90.3424653,41.635776899999996],[-90.3424654,41.636386200000004],[-90.3425286,41.6370335],[-90.3427132,41.6376994],[-90.3426712,41.6384578],[-90.3427593,41.6390499],[-90.3428706,41.63973],[-90.3430008,41.6407436],[-90.3431016,41.6411702],[-90.3431715,41.641467399999996],[-90.3431779,41.6415432],[-90.3432396,41.642514500000004],[-90.3432478,41.6428811],[-90.3432614,41.643391],[-90.3433226,41.6438785],[-90.3433993,41.6444348],[-90.3434069,41.645044],[-90.3434089,41.6455044],[-90.3433945,41.6461192],[-90.3433067,41.6467511],[-90.3432859,41.6471455],[-90.3431868,41.6477499],[-90.3430023,41.6482832],[-90.3428649,41.6487611],[-90.3426591,41.649358],[-90.3424779,41.6498637],[-90.3422649,41.6504772],[-90.3420383,41.6508785],[-90.3418431,41.6514395],[-90.3416679,41.6518321],[-90.3415432,41.65215],[-90.3414119,41.6525314],[-90.3412504,41.6528523],[-90.3410176,41.6533473],[-90.3408239,41.6537319],[-90.3406958,41.6540718],[-90.3405263,41.6546381],[-90.3404118,41.6551847],[-90.3401091,41.655677499999996],[-90.3401068,41.6557906],[-90.3401022,41.6560084],[-90.3399411,41.6563596],[-90.3397662,41.6567826],[-90.3396137,41.6572358],[-90.339417,41.6576809],[-90.33918800000001,41.658187],[-90.3388893,41.6587018],[-90.3386921,41.6591112],[-90.3383973,41.659648000000004],[-90.3382166,41.660200599999996],[-90.337981,41.6607701],[-90.337655,41.6614588],[-90.3374354,41.6618407],[-90.3373187,41.6622137],[-90.3371652,41.662584100000004],[-90.3369871,41.6630485],[-90.3368721,41.6635593],[-90.3367537,41.6640976],[-90.33669019999999,41.664613599999996],[-90.3365604,41.6651217],[-90.3364217,41.6658008],[-90.3362743,41.6663724],[-90.336153,41.666966],[-90.33599,41.6674633],[-90.3358771,41.668150499999996],[-90.3357803,41.6686556],[-90.3357808,41.6692896],[-90.3356803,41.6697893],[-90.3356674,41.6702387],[-90.33578370000001,41.6704254],[-90.3357649,41.670990599999996],[-90.3357498,41.6715558],[-90.3356512,41.6722071],[-90.3355606,41.6726157],[-90.3354965,41.6730903],[-90.335492,41.6736168],[-90.3354172,41.6741163],[-90.3353463,41.6746323],[-90.3352429,41.6751871],[-90.3352108,41.6758709],[-90.3352038,41.676502299999996],[-90.3350414,41.6770464],[-90.3350216,41.6775317],[-90.3348553,41.6780649],[-90.3348021,41.6785201],[-90.3347106,41.6788598],[-90.3346426,41.679309599999996],[-90.3344316,41.6797907],[-90.3341723,41.680236300000004],[-90.3338361,41.6807073],[-90.3334234,41.6812366],[-90.3330193,41.681573],[-90.3325435,41.6820559],[-90.3321763,41.6823947],[-90.3317369,41.6828498],[-90.3313181,41.6831862],[-90.3309505,41.6834948],[-90.3304725,41.6838013],[-90.32992229999999,41.6842185],[-90.3292755,41.684551],[-90.3286291,41.684922],[-90.3280696,41.6851767],[-90.3275347,41.6853458],[-90.3269756,41.6856335],[-90.3263948,41.685951700000004],[-90.3260448,41.686205],[-90.3255156,41.6865394],[-90.3250811,41.6867932],[-90.3246565,41.6869532],[-90.3244643,41.6871833],[-90.3238246,41.6874964],[-90.3233251,41.6878581],[-90.3228504,41.6881343],[-90.3219979,41.6884984],[-90.3211762,41.6889698],[-90.3202451,41.6895247],[-90.319621,41.6899204],[-90.3189795,41.6903988],[-90.3183705,41.6908275],[-90.3177179,41.691306],[-90.3171529,41.6917206],[-90.3165635,41.6922593],[-90.3161382,41.6926757],[-90.315544,41.6934184],[-90.3152598,41.6939524],[-90.31483180000001,41.6944459],[-90.3145706,41.6950569],[-90.3142682,41.6959107],[-90.3138242,41.6966083],[-90.3135896,41.6972935],[-90.3133991,41.697972899999996],[-90.313268,41.6986988],[-90.313092,41.699356],[-90.3130562,41.6994362],[-90.3129594,41.6996491],[-90.3129473,41.7001757],[-90.3128089,41.7009071],[-90.3127202,41.7014838],[-90.31270190000001,41.7021097],[-90.3127016,41.7026969],[-90.312709,41.7033198],[-90.3127135,41.7040006],[-90.3126827,41.7048113],[-90.3127446,41.7053704],[-90.3127537,41.7061339],[-90.3128417,41.706726],[-90.3128445,41.7072718],[-90.3129549,41.7078858],[-90.3131022,41.7085188],[-90.3132902,41.7091598],[-90.3134354,41.7096136],[-90.3135987,41.7100426],[-90.3138653,41.7104956],[-90.3141101,41.7109736],[-90.3143471,41.7114048],[-90.3145879,41.711855299999996],[-90.314848,41.712379999999996],[-90.3150972,41.7129076],[-90.3153862,41.713388],[-90.31561,41.7139544],[-90.3157501,41.714287],[-90.3160732,41.714844400000004],[-90.3163831,41.7155259],[-90.3165844,41.716051],[-90.3169245,41.7168013],[-90.3170945,41.7174755],[-90.3172892,41.7180641],[-90.3174585,41.7186776],[-90.3175236,41.7192037],[-90.3175271,41.7201023],[-90.31746150000001,41.7207698],[-90.3174497,41.7213129],[-90.3174412,41.7218285],[-90.3174724,41.7222831],[-90.3174013,41.722799],[-90.3173741,41.7235958],[-90.3171686,41.724256],[-90.3169921,41.725186199999996],[-90.3167525,41.726064300000004],[-90.316605,41.726649699999996],[-90.3164749,41.727154999999996],[-90.3163075,41.7279225],[-90.3162373,41.7282013],[-90.3161248,41.7286404],[-90.3160876,41.7292222],[-90.3159728,41.7297743],[-90.3158623,41.7303787],[-90.3157448,41.7310163],[-90.315681,41.7315211],[-90.3155733,41.7320566],[-90.3155952,41.732654600000004],[-90.3153704,41.7335492],[-90.3152016,41.7341981],[-90.3149215,41.7347816],[-90.3146891,41.7353483],[-90.3143372,41.7360728],[-90.3140131,41.7366704],[-90.3138022,41.7371873],[-90.3134337,41.7377604],[-90.3130956,41.7384159],[-90.3127612,41.7390742],[-90.3124515,41.7396441],[-90.3120695,41.7403247],[-90.3115552,41.741017299999996],[-90.3110799,41.741593800000004],[-90.3107211,41.7420593],[-90.3103668,41.742590899999996],[-90.3100578,41.7429155],[-90.3095568,41.7434922],[-90.3090765,41.7439585],[-90.30861469999999,41.7444356],[-90.3082046,41.744918],[-90.3075785,41.7455065],[-90.3070804,41.7460225],[-90.3065664,41.7464394],[-90.3060353,41.7469722],[-90.3055845,41.747441],[-90.3055445,41.7474826],[-90.305212,41.7476888],[-90.3047937,41.748116100000004],[-90.3043531,41.7485159],[-90.3037523,41.7490657],[-90.3026852,41.750032],[-90.3021398,41.750292],[-90.3010523,41.7514017],[-90.2998512,41.752247600000004],[-90.2981852,41.7536257],[-90.2968474,41.7547481],[-90.2949955,41.7562983],[-90.2933743,41.7574308],[-90.2922645,41.7579149],[-90.2904215,41.7596138],[-90.2889726,41.760384],[-90.288367,41.7608565],[-90.2875066,41.761587],[-90.2866564,41.7632023],[-90.28607,41.763743500000004],[-90.2847964,41.764722],[-90.2826203,41.7650255],[-90.280383,41.7660846],[-90.27792529999999,41.767519899999996],[-90.2756845,41.7682895],[-90.2730903,41.7693893],[-90.2705842,41.7701577],[-90.2676391,41.770848900000004],[-90.2654406,41.7714664],[-90.2639034,41.7719585],[-90.2628023,41.7726035],[-90.2614696,41.773276100000004],[-90.2597086,41.774511000000004],[-90.2573407,41.7761437],[-90.2540978,41.7779059],[-90.2517553,41.7785268],[-90.2500208,41.7795133],[-90.2481049,41.7804292],[-90.2463694,41.7813425],[-90.2442277,41.7824899],[-90.2427694,41.7833326],[-90.2427402,41.7831867],[-90.2427395,41.782962],[-90.2424997,41.7830834]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"KENDALL","CO_FIPS":93},"geometry":{"type":"Polygon","coordinates":[[[-88.602009,41.719576599999996],[-88.5863789,41.7197782],[-88.585676,41.7197908],[-88.5856299,41.7197946],[-88.5667277,41.71994],[-88.5666339,41.7199407],[-88.566264,41.7199489],[-88.5662014,41.7199511],[-88.5656954,41.7199555],[-88.547865,41.7201435],[-88.5477877,41.7201442],[-88.5469744,41.7201613],[-88.543697,41.720231999999996],[-88.5382224,41.7203499],[-88.5283414,41.720563999999996],[-88.5276228,41.7205796],[-88.5274959,41.7205745],[-88.5189986,41.720700300000004],[-88.5181522,41.7207142],[-88.5089666,41.7208517],[-88.508709,41.7208551],[-88.5082342,41.7208636],[-88.5000593,41.7209509],[-88.4895623,41.7210623],[-88.4887893,41.7210862],[-88.4724145,41.721431],[-88.4684125,41.7214742],[-88.4683408,41.721475],[-88.4529925,41.7216908],[-88.4489317,41.7217287],[-88.4488599,41.7217308],[-88.4333932,41.7219817],[-88.4293709,41.7220235],[-88.4293046,41.7220243],[-88.4139804,41.7222147],[-88.4099323,41.7222528],[-88.409868,41.7222522],[-88.3944814,41.722414799999996],[-88.3905161,41.7224572],[-88.3904535,41.722458],[-88.3751839,41.722666000000004],[-88.3712651,41.722671],[-88.3653113,41.7228043],[-88.3588283,41.722896399999996],[-88.3394823,41.7232683],[-88.3388394,41.723208400000004],[-88.3199047,41.7236142],[-88.3193455,41.7236074],[-88.3190004,41.723613],[-88.300258,41.723897],[-88.2806974,41.7240893],[-88.2614567,41.7243864],[-88.2610246,41.7087818],[-88.2608002,41.6944142],[-88.2604564,41.679743200000004],[-88.2600812,41.6651848],[-88.2596734,41.6506107],[-88.2590701,41.6360867],[-88.2586297,41.6225181],[-88.2586392,41.6219971],[-88.2578888,41.6081108],[-88.2578679,41.6070409],[-88.2571896,41.5936487],[-88.2571473,41.592647400000004],[-88.2565728,41.579622799999996],[-88.2565688,41.57954],[-88.2565301,41.579043999999996],[-88.2565144,41.5786951],[-88.2558726,41.5643386],[-88.2558714,41.5643027],[-88.2552473,41.5500971],[-88.2546549,41.5354781],[-88.2542867,41.5209452],[-88.2542786,41.520686],[-88.2538685,41.5064516],[-88.2538672,41.5064227],[-88.2532822,41.49179],[-88.2532802,41.491748],[-88.2526848,41.4773542],[-88.2526818,41.4773156],[-88.252681,41.4772604],[-88.2521629,41.4627597],[-88.2714879,41.4621444],[-88.2909654,41.4617978],[-88.3102047,41.4614374],[-88.3296647,41.4610099],[-88.3490265,41.460741],[-88.3652431,41.4604754],[-88.3846217,41.460052],[-88.4040176,41.459667100000004],[-88.4234029,41.4592514],[-88.4236907,41.4592443],[-88.4426966,41.4588098],[-88.4619681,41.4583593],[-88.4817063,41.457807700000004],[-88.5000793,41.4577338],[-88.5011639,41.4577538],[-88.5013618,41.4577513],[-88.5019941,41.4577482],[-88.5205735,41.4576922],[-88.5396666,41.4575864],[-88.5398517,41.4575865],[-88.5399562,41.457586],[-88.5551547,41.4575046],[-88.5588585,41.4574853],[-88.5590345,41.4574797],[-88.559249,41.4574773],[-88.5595917,41.4574731],[-88.5661678,41.4574083],[-88.578508,41.4572867],[-88.5785483,41.4572856],[-88.5786546,41.4572843],[-88.5957382,41.4570971],[-88.5960846,41.4570928],[-88.5962844,41.466381999999996],[-88.5963917,41.4714409],[-88.5963928,41.471496099999996],[-88.5963953,41.4715829],[-88.5968364,41.4849558],[-88.5968577,41.4855639],[-88.596876,41.486121],[-88.5968785,41.4862092],[-88.5969453,41.4879564],[-88.5974052,41.5000554],[-88.5974209,41.500396],[-88.5974278,41.5005656],[-88.5974378,41.5007863],[-88.5980404,41.5150217],[-88.5980476,41.5151747],[-88.5980536,41.515274],[-88.5981766,41.5181906],[-88.5986556,41.5295795],[-88.5986569,41.5296202],[-88.5986625,41.5297519],[-88.5986654,41.5298112],[-88.5992354,41.5441962],[-88.5992399,41.5442762],[-88.599804,41.55857],[-88.5998122,41.5587809],[-88.6000985,41.5711922],[-88.6001436,41.5731996],[-88.600143,41.5732492],[-88.6003065,41.578816700000004],[-88.6005624,41.5876863],[-88.6005648,41.5877869],[-88.6005693,41.587862799999996],[-88.6006696,41.5904233],[-88.6011337,41.6023172],[-88.6016575,41.6168153],[-88.6016585,41.6168759],[-88.6020345,41.6250196],[-88.6022103,41.631215499999996],[-88.602218,41.631463600000004],[-88.6022566,41.637330399999996],[-88.6023106,41.645799600000004],[-88.60231279999999,41.6459126],[-88.602436,41.6603037],[-88.6024414,41.6604499],[-88.6027447,41.6748545],[-88.6027463,41.6750089],[-88.6029982,41.6894102],[-88.6029999,41.689559],[-88.6033162,41.703826899999996],[-88.60332030000001,41.7040805],[-88.6034658,41.7096582],[-88.60372219999999,41.7195369],[-88.6034922,41.719540699999996],[-88.602009,41.719576599999996]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"KANKAKEE","CO_FIPS":91},"geometry":{"type":"Polygon","coordinates":[[[-87.5267694,41.298084700000004],[-87.52678829999999,41.282686],[-87.5267564,41.2680365],[-87.5266341,41.2533523],[-87.5267539,41.2385118],[-87.5267501,41.2240305],[-87.52676220000001,41.2089975],[-87.5266711,41.194376500000004],[-87.5267958,41.1798691],[-87.5268134,41.1652771],[-87.5267549,41.150794],[-87.526756,41.1507554],[-87.5267408,41.1360356],[-87.526719,41.1214175],[-87.526593,41.1123369],[-87.5265394,41.097811899999996],[-87.5263799,41.0831691],[-87.526437,41.0687255],[-87.5264355,41.0544188],[-87.5262793,41.0395355],[-87.52634570000001,41.024893],[-87.5261546,41.0103398],[-87.542307,41.0100748],[-87.5614851,41.0096966],[-87.5806706,41.0091774],[-87.5997578,41.0086399],[-87.6186795,41.008415400000004],[-87.6188435,41.0084138],[-87.6188981,41.0084119],[-87.6383246,41.0079646],[-87.6555209,41.007695],[-87.6555793,41.007414499999996],[-87.6748914,41.007412],[-87.6942397,41.006993],[-87.7133503,41.0066033],[-87.7322369,41.0062734],[-87.751557,41.005781400000004],[-87.7714973,41.0056759],[-87.7714918,41.0053875],[-87.790725,41.0052259],[-87.8096832,41.0050559],[-87.8286045,41.004601],[-87.8482545,41.004269],[-87.8677281,41.0038376],[-87.885996,41.003490299999996],[-87.8860415,41.0034896],[-87.9058215,41.002852000000004],[-87.9251308,41.002400800000004],[-87.9444955,41.001894899999996],[-87.9639279,41.0009536],[-87.9830493,41.0005514],[-88.0020324,41.0002962],[-88.016448,40.9997692],[-88.0361714,40.9999592],[-88.0557489,40.999468300000004],[-88.07498029999999,40.9986143],[-88.0944134,40.998382899999996],[-88.1140477,40.9982694],[-88.1318923,40.9978868],[-88.1327798,40.9978403],[-88.1511431,40.9968911],[-88.170401,40.9966317],[-88.189551,40.9960922],[-88.2087394,40.9956273],[-88.2280377,40.9955026],[-88.2475684,40.9946048],[-88.2476204,41.008775299999996],[-88.2482916,41.0231591],[-88.2488792,41.0377488],[-88.2491809,41.0524429],[-88.2498224,41.0671017],[-88.2500523,41.0817533],[-88.2503854,41.0818782],[-88.2511044,41.0965099],[-88.2517351,41.1142159],[-88.2407961,41.114303],[-88.24138,41.1288475],[-88.2418472,41.1434072],[-88.2422297,41.158214],[-88.2426427,41.1727616],[-88.2432051,41.1873328],[-88.2436744,41.2016187],[-88.2240945,41.2019835],[-88.2053055,41.2024143],[-88.1860567,41.2028124],[-88.1668059,41.2031108],[-88.1476325,41.2035477],[-88.1283573,41.2037652],[-88.1084605,41.2040139],[-88.0895862,41.2044257],[-88.0701447,41.204709199999996],[-88.0499204,41.205038],[-88.0312065,41.2052578],[-88.01156950000001,41.2055956],[-88.0118795,41.220286200000004],[-88.0121983,41.2345741],[-88.0127151,41.2491759],[-88.0133308,41.2637704],[-88.013332,41.263799399999996],[-88.0136007,41.2781426],[-88.0138797,41.2924348],[-87.9966299,41.2926593],[-87.9947428,41.2926689],[-87.9776366,41.2930111],[-87.9753697,41.2930397],[-87.9662043,41.2931558],[-87.95823730000001,41.2932748],[-87.956048,41.2933074],[-87.9388282,41.2935558],[-87.936584,41.2935888],[-87.9196774,41.293964],[-87.917057,41.294056499999996],[-87.9002594,41.2942926],[-87.8976145,41.2943374],[-87.8809079,41.294583],[-87.8783919,41.294665],[-87.8617175,41.2948532],[-87.8589747,41.2948601],[-87.8423448,41.2950931],[-87.8395178,41.2951011],[-87.8233543,41.2952496],[-87.8202856,41.2952703],[-87.8037731,41.2954749],[-87.8008137,41.2955104],[-87.7844068,41.2957275],[-87.781265,41.2957435],[-87.7651135,41.2958292],[-87.7615698,41.2958333],[-87.7462176,41.2961212],[-87.74214,41.2961252],[-87.726894,41.296266],[-87.7222126,41.296282500000004],[-87.7074885,41.296387100000004],[-87.7060711,41.2963964],[-87.7030938,41.2964182],[-87.6883129,41.2966603],[-87.6838601,41.2966016],[-87.6689539,41.2967402],[-87.6645318,41.2967667],[-87.6577128,41.296846099999996],[-87.6499006,41.2969388],[-87.6456222,41.296990199999996],[-87.630705,41.2971156],[-87.6263571,41.2971005],[-87.6113754,41.297308],[-87.6073555,41.2973332],[-87.5921892,41.2974637],[-87.5881058,41.2975369],[-87.5727778,41.29769],[-87.5690516,41.2976717],[-87.5535121,41.2977996],[-87.5498175,41.2978282],[-87.534407,41.298044000000004],[-87.5307566,41.2980588],[-87.5267694,41.298084700000004]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"FORD","CO_FIPS":53},"geometry":{"type":"Polygon","coordinates":[[[-88.1318923,40.9978868],[-88.1315147,40.9831715],[-88.1313306,40.9684361],[-88.1308796,40.9537665],[-88.1305805,40.9391509],[-88.1303019,40.9246044],[-88.1302175,40.9098116],[-88.1300256,40.8953981],[-88.1300184,40.8949346],[-88.1300155,40.8948077],[-88.1294794,40.8805253],[-88.1284816,40.8659864],[-88.1283782,40.8514411],[-88.1281012,40.8364894],[-88.1280958,40.8362149],[-88.1272505,40.8215448],[-88.1268823,40.8071808],[-88.1264823,40.7925997],[-88.1264733,40.7923251],[-88.1259978,40.7778989],[-88.1254196,40.7633554],[-88.1251273,40.7490441],[-88.12433060000001,40.7343928],[-88.1237495,40.7202184],[-88.1234584,40.7058816],[-88.1229761,40.6913163],[-88.1226065,40.6767466],[-88.1215306,40.6767259],[-88.1206671,40.6475046],[-88.120187,40.6337899],[-88.1201588,40.6330239],[-88.1201586,40.632948],[-88.1198804,40.6188327],[-88.1194862,40.6040936],[-88.1189424,40.5894245],[-88.1185673,40.575016500000004],[-88.1187572,40.5605901],[-88.1187028,40.5458904],[-88.1186118,40.5313942],[-88.1185002,40.5166659],[-88.1183893,40.5022687],[-88.1177699,40.4879095],[-88.0981001,40.4880575],[-88.0790163,40.4880879],[-88.060122,40.4882141],[-88.0409219,40.488267300000004],[-88.0219325,40.4886043],[-88.0025277,40.4887508],[-87.993073,40.4855712],[-87.9722657,40.485593],[-87.9541414,40.4857178],[-87.9350711,40.4859572],[-87.9347195,40.4714206],[-87.9340684,40.457197300000004],[-87.933398,40.442717],[-87.93291239999999,40.428222399999996],[-87.9324297,40.413769200000004],[-87.93171770000001,40.3993265],[-87.9318601,40.3993339],[-87.9324,40.3993245],[-87.9512347,40.3990332],[-87.9694536,40.399078700000004],[-87.9712791,40.3989586],[-87.9903462,40.3990891],[-88.0022675,40.4006611],[-88.0215148,40.4004853],[-88.0402756,40.4004356],[-88.0593745,40.4004422],[-88.07879439999999,40.4002841],[-88.0979505,40.4004839],[-88.117445,40.4005549],[-88.1366177,40.4002851],[-88.1558282,40.4001036],[-88.1748492,40.3998149],[-88.1941339,40.3996999],[-88.213386,40.3995786],[-88.2336451,40.3994622],[-88.2526154,40.3993398],[-88.2713934,40.399052499999996],[-88.2902807,40.3989068],[-88.2906957,40.3989083],[-88.3087599,40.398445],[-88.3092264,40.3984993],[-88.3283352,40.3984657],[-88.3289197,40.398479699999996],[-88.3468682,40.398324099999996],[-88.36592,40.398455],[-88.3846342,40.3983713],[-88.403122,40.3981018],[-88.4035989,40.398190400000004],[-88.4222181,40.3983966],[-88.4228569,40.398403],[-88.4414422,40.3985886],[-88.4600264,40.3984906],[-88.4598776,40.413246900000004],[-88.4596151,40.4278697],[-88.4594895,40.4425074],[-88.459414,40.4571757],[-88.4594362,40.471831],[-88.4591928,40.4861223],[-88.4592245,40.500868499999996],[-88.4591658,40.5153681],[-88.459419,40.5298097],[-88.4594131,40.5300842],[-88.459058,40.544455400000004],[-88.4590602,40.5589966],[-88.4593839,40.573568],[-88.4593257,40.5880366],[-88.4592309,40.6027669],[-88.4596835,40.6174522],[-88.4427604,40.617441299999996],[-88.4234593,40.617368],[-88.4044226,40.6172885],[-88.3857057,40.6173662],[-88.3662563,40.6172822],[-88.3471438,40.6169666],[-88.3471441,40.6173832],[-88.3296497,40.6173122],[-88.3107636,40.6175227],[-88.291407,40.6177144],[-88.2723709,40.617790400000004],[-88.2533873,40.6181646],[-88.2353698,40.6179556],[-88.2358069,40.632288700000004],[-88.2360926,40.6464973],[-88.2360979,40.6468023],[-88.2365251,40.660602499999996],[-88.2365625,40.6750248],[-88.2375809,40.675016299999996],[-88.2379434,40.6895136],[-88.2380594,40.7040109],[-88.2385525,40.7185176],[-88.238895,40.7329371],[-88.2394333,40.7471708],[-88.2394428,40.7474455],[-88.2393676,40.7621152],[-88.2401193,40.7766128],[-88.2405496,40.7910433],[-88.2406714,40.8054732],[-88.2406664,40.8057491],[-88.2414453,40.820092],[-88.2414554,40.8203321],[-88.241986,40.8344681],[-88.2423749,40.849115499999996],[-88.2427957,40.863313500000004],[-88.2435988,40.8780836],[-88.2438885,40.8927213],[-88.24456430000001,40.9073243],[-88.244763,40.921784099999996],[-88.2453482,40.9363968],[-88.2458096,40.950826],[-88.2462106,40.9655854],[-88.2469637,40.980009100000004],[-88.2475684,40.9946048],[-88.2280377,40.9955026],[-88.2087394,40.9956273],[-88.189551,40.9960922],[-88.170401,40.9966317],[-88.1511431,40.9968911],[-88.1327798,40.9978403],[-88.1318923,40.9978868]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"MENARD","CO_FIPS":129},"geometry":{"type":"Polygon","coordinates":[[[-89.6015925,40.1239774],[-89.6013152,40.1211793],[-89.601028,40.1066238],[-89.601024,40.1063464],[-89.6007476,40.091723200000004],[-89.5788873,40.0923249],[-89.5787306,40.077671],[-89.5786279,40.0631026],[-89.5789207,40.0488649],[-89.5790589,40.048863499999996],[-89.5790606,40.0487945],[-89.5795598,40.0487927],[-89.5793563,40.0340945],[-89.5789412,40.0195259],[-89.578652,40.004971],[-89.5785854,39.990669600000004],[-89.5782671,39.9760452],[-89.5988627,39.975631],[-89.599103,39.9756308],[-89.6180238,39.975612],[-89.6369217,39.9758344],[-89.6555783,39.9756126],[-89.6745759,39.9754701],[-89.6933115,39.9753168],[-89.6981436,39.975375],[-89.6979624,39.9608804],[-89.6976617,39.9459332],[-89.6976445,39.9386361],[-89.7022372,39.938609],[-89.7021229,39.9313423],[-89.7017158,39.9170907],[-89.7126221,39.9168963],[-89.7126245,39.9170895],[-89.731063,39.9168851],[-89.7502691,39.9173786],[-89.75026,39.9168501],[-89.7693423,39.916786],[-89.769231,39.9023323],[-89.7877474,39.9024472],[-89.7878012,39.9024457],[-89.8067576,39.9023579],[-89.8259428,39.9021504],[-89.8448148,39.9016647],[-89.863538,39.9015753],[-89.8751319,39.9014714],[-89.8825536,39.9015372],[-89.9014754,39.9017061],[-89.9015345,39.901705899999996],[-89.9202606,39.9017938],[-89.9379941,39.9018741],[-89.9380461,39.9018739],[-89.9568288,39.9018316],[-89.9756036,39.901945],[-89.9945161,39.9020051],[-89.9944803,39.9164415],[-89.9944807,39.9165009],[-89.9945675,39.9310415],[-89.9945695,39.9310733],[-89.9947398,39.945493400000004],[-89.9947546,39.959983199999996],[-89.9947695,39.974490700000004],[-89.9946852,39.9889172],[-89.9947319,40.0000588],[-89.9943138,40.0000578],[-89.9940959,40.0032463],[-89.9942657,40.0176078],[-89.9942002,40.0321771],[-89.994223,40.0465583],[-89.9942111,40.0610996],[-89.99432709999999,40.0754444],[-89.9943291,40.0757217],[-89.9946201,40.0899097],[-89.9946256,40.090184300000004],[-89.9948376,40.1046209],[-89.9950032,40.108700400000004],[-89.9949281,40.108631700000004],[-89.9948961,40.108553900000004],[-89.9947116,40.1083891],[-89.9946158,40.1083033],[-89.9945183,40.1082457],[-89.9944064,40.1081813],[-89.9942875,40.1081342],[-89.9941327,40.1080907],[-89.993933,40.1080688],[-89.993898,40.1080676],[-89.9937982,40.108059],[-89.9937479,40.1080633],[-89.9936185,40.1080646],[-89.9935036,40.1080726],[-89.9932865,40.1081212],[-89.9931764,40.1081892],[-89.9930129,40.1083113],[-89.9929211,40.1084187],[-89.9928165,40.108503999999996],[-89.99271039999999,40.1086217],[-89.9927009,40.1086714],[-89.9926866,40.1088081],[-89.992658,40.108955800000004],[-89.9926892,40.1090454],[-89.99271,40.1091998],[-89.9927085,40.1093647],[-89.9927661,40.1095046],[-89.9927981,40.1095769],[-89.9928085,40.1096486],[-89.99282529999999,40.109743],[-89.9928957,40.109910400000004],[-89.9930092,40.1100789],[-89.9930411,40.1101513],[-89.9931497,40.1102591],[-89.9932329,40.110454000000004],[-89.9932985,40.1105828],[-89.9933304,40.1106551],[-89.9933401,40.110748900000004],[-89.9933338,40.1108758],[-89.9933418,40.1109862],[-89.9932988,40.1111333],[-89.9932733,40.1112148],[-89.99320230000001,40.1113448],[-89.9931034,40.1114577],[-89.9930061,40.1115485],[-89.992872,40.1116436],[-89.9926653,40.11177],[-89.9924897,40.1118473],[-89.9922072,40.1119271],[-89.9919821,40.1119812],[-89.9916732,40.1120108],[-89.991437,40.1120256],[-89.9912358,40.1120416],[-89.9910282,40.112041],[-89.9908932,40.112009900000004],[-89.9906409,40.1119088],[-89.9904358,40.1118696],[-89.9902218,40.1118519],[-89.9899231,40.111810399999996],[-89.9897157,40.1118209],[-89.9894778,40.1118522],[-89.9894123,40.111872500000004],[-89.9891536,40.1118922],[-89.9889238,40.1119131],[-89.9887083,40.1119396],[-89.9886428,40.1119488],[-89.9884065,40.1119525],[-89.9882437,40.1119318],[-89.9880424,40.1119368],[-89.9877783,40.111940000000004],[-89.9875563,40.111933300000004],[-89.987427,40.1119462],[-89.9873048,40.1119536],[-89.9872186,40.1119678],[-89.9869815,40.1119826],[-89.9867181,40.111963599999996],[-89.9864882,40.1119846],[-89.986315,40.1120122],[-89.9861849,40.1120417],[-89.9859525,40.1120951],[-89.9857857,40.1121399],[-89.98563970000001,40.1122019],[-89.9854864,40.1122578],[-89.9853556,40.1123087],[-89.9852167,40.1123603],[-89.9850291,40.1123928],[-89.9848926,40.1124003],[-89.9847561,40.1124125],[-89.9845166,40.1124825],[-89.9842995,40.1125365],[-89.9841391,40.1125979],[-89.9840002,40.1126544],[-89.9838381,40.1127323],[-89.9837137,40.1127949],[-89.9836331,40.1128366],[-89.983499,40.112931700000004],[-89.9832421,40.113215600000004],[-89.9830809,40.113420500000004],[-89.9829588,40.1135707],[-89.9828153,40.113732],[-89.9827314,40.1138172],[-89.9826285,40.1140122],[-89.9825711,40.1141594],[-89.9825553,40.1143354],[-89.9825019,40.1145481],[-89.9824644,40.114712499999996],[-89.9824932,40.1148455],[-89.9825148,40.1149834],[-89.9825853,40.115161799999996],[-89.9826826,40.1153408],[-89.9828105,40.1155045],[-89.9829814,40.1156638],[-89.9831459,40.1158004],[-89.98345259999999,40.1159696],[-89.9836275,40.1160517],[-89.9839724,40.1161551],[-89.984263,40.116202200000004],[-89.9844906,40.116242],[-89.9846455,40.116285500000004],[-89.9848994,40.1163535],[-89.9851429,40.1163553],[-89.98537759999999,40.1163784],[-89.9856212,40.1163802],[-89.9859485,40.1164175],[-89.9861265,40.1164278],[-89.9864068,40.1164087],[-89.9867269,40.116434999999996],[-89.9869776,40.1164367],[-89.98717,40.1164477],[-89.9872977,40.1164623],[-89.98751730000001,40.1165132],[-89.987602,40.1165432],[-89.9877976,40.1166258],[-89.9878958,40.1166675],[-89.9880004,40.1167202],[-89.9881178,40.1168004],[-89.9881985,40.1169022],[-89.9882384,40.1169579],[-89.9883783,40.117033899999996],[-89.9884861,40.1171694],[-89.9886132,40.1174759],[-89.988638,40.1176855],[-89.9886637,40.1178903],[-89.9886903,40.118221399999996],[-89.988518,40.118513899999996],[-89.9884184,40.1187862],[-89.9883434,40.1189873],[-89.98831559999999,40.1191192],[-89.9881856,40.1194233],[-89.9880604,40.1196342],[-89.9879878,40.1197973],[-89.9879217,40.119977],[-89.987889,40.1201855],[-89.9878764,40.120306299999996],[-89.9878373,40.1205086],[-89.98784380000001,40.1206631],[-89.9878671,40.1209114],[-89.9878849,40.1212645],[-89.987889,40.121468],[-89.9879361,40.1216514],[-89.9880185,40.1218683],[-89.9881561,40.1222638],[-89.9882743,40.122465399999996],[-89.9883942,40.1226505],[-89.9885412,40.122847300000004],[-89.9886244,40.1230428],[-89.9886796,40.1232317],[-89.9886517,40.1233573],[-89.9886087,40.1234934],[-89.9885392,40.123591],[-89.988485,40.1236719],[-89.9884172,40.1237412],[-89.9883502,40.1238001],[-89.9883046,40.1238424],[-89.9882017,40.1239056],[-89.9880987,40.1239523],[-89.9879846,40.1239541],[-89.9878352,40.1239333],[-89.9877026,40.123858],[-89.9875516,40.1237324],[-89.9874159,40.1235963],[-89.9872113,40.1233923],[-89.9871035,40.1232678],[-89.9869613,40.1231035],[-89.9866921,40.122908699999996],[-89.9865467,40.1228106],[-89.986387,40.1227237],[-89.9862871,40.1227041],[-89.9860908,40.1226379],[-89.9859422,40.1225999],[-89.9857698,40.1226172],[-89.9856317,40.1226571],[-89.9854369,40.1226951],[-89.9850856,40.122839400000004],[-89.9849388,40.1229173],[-89.9848406,40.1230136],[-89.9846698,40.123273],[-89.9846644,40.1233937],[-89.984646,40.1234704],[-89.9846165,40.1234919],[-89.984567,40.1236059],[-89.9845336,40.123852400000004],[-89.9845728,40.1240578],[-89.9845817,40.1241682],[-89.9846098,40.1243281],[-89.9846361,40.124505299999996],[-89.9846865,40.1246445],[-89.9847441,40.1247836],[-89.9847194,40.1248437],[-89.9847019,40.1249093],[-89.9846995,40.1249528],[-89.9847258,40.1249927],[-89.9847694,40.1250512],[-89.9848051,40.1251449],[-89.9848444,40.1252468],[-89.9852741,40.1257777],[-89.985902,40.1263698],[-89.9861414,40.1266738],[-89.9862182,40.1268611],[-89.9862672,40.1269271],[-89.9864757,40.1274451],[-89.9865246,40.1275001],[-89.9868308,40.1283543],[-89.9868763,40.128701899999996],[-89.9868239,40.1289104],[-89.9867653,40.1290197],[-89.9865276,40.129215200000004],[-89.9863126,40.1293127],[-89.9861188,40.1293618],[-89.9859194,40.1293819],[-89.985833,40.1293657],[-89.9854628,40.1293797],[-89.985184,40.1293615],[-89.9845918,40.129237],[-89.9838669,40.1289184],[-89.9828147,40.1285653],[-89.9826366,40.1285481],[-89.98221530000001,40.1284464],[-89.981952,40.1283288],[-89.9815539,40.1282048],[-89.9813555,40.1281104],[-89.9810358,40.1278827],[-89.9807969,40.127656],[-89.9803038,40.127048099999996],[-89.9801984,40.1268884],[-89.9800853,40.126646],[-89.9800649,40.1265578],[-89.9798495,40.126073],[-89.9796392,40.125813],[-89.9793352,40.1255135],[-89.9786759,40.1250484],[-89.9780989,40.1250479],[-89.9766073,40.1266753],[-89.9762002,40.1268066],[-89.9753688,40.1269341],[-89.9745834,40.1269566],[-89.9740183,40.1271176],[-89.9736584,40.1273301],[-89.9735924,40.127406300000004],[-89.9734984,40.127581899999996],[-89.9734529,40.1277739],[-89.973435,40.1280375],[-89.9734965,40.1283725],[-89.9735383,40.1284386],[-89.9736595,40.128544399999996],[-89.9739211,40.1286896],[-89.9742634,40.1287958],[-89.9746055,40.1288745],[-89.9748267,40.128887399999996],[-89.9752964,40.128978000000004],[-89.9757578,40.1291569],[-89.9759711,40.1293285],[-89.9763517,40.1297823],[-89.976506,40.1300038],[-89.9765899,40.130180100000004],[-89.9766379,40.1303538],[-89.9766399,40.1306491],[-89.9766406,40.1307512],[-89.976539,40.1308772],[-89.9763012,40.1310685],[-89.9760432,40.1311937],[-89.9756184,40.1313831],[-89.9751181,40.1315562],[-89.9747076,40.131729],[-89.9738125,40.1320085],[-89.973089,40.1321466],[-89.9728737,40.132211],[-89.9725008,40.132368400000004],[-89.9723649,40.1324779],[-89.9721483,40.132614000000004],[-89.9717973,40.1327989],[-89.97161679999999,40.132968],[-89.9715294,40.133066299999996],[-89.9714281,40.133235],[-89.9713469,40.1334548],[-89.9712366,40.1336249],[-89.9712136,40.1336899],[-89.9711995,40.1337286],[-89.9712046,40.1339548],[-89.9713075,40.1342801],[-89.9714487,40.134423],[-89.9716832,40.1345352],[-89.9720898,40.1345874],[-89.9724203,40.1345392],[-89.9726702,40.134552],[-89.9730034,40.1346362],[-89.9731761,40.1346548],[-89.9740405,40.1346045],[-89.9743464,40.134651500000004],[-89.9745176,40.1347184],[-89.9746658,40.1348296],[-89.9747498,40.1350169],[-89.9747631,40.1351259],[-89.9747167,40.1354338],[-89.9745351,40.1357022],[-89.9743977,40.1358449],[-89.9739292,40.136226199999996],[-89.9734223,40.1367664],[-89.9732925,40.1369642],[-89.9731171,40.1373471],[-89.9730297,40.1374565],[-89.9727202,40.1376743],[-89.9725266,40.137762],[-89.9722609,40.13781],[-89.9719191,40.1377907],[-89.9716831,40.1377061],[-89.971371,40.1375569],[-89.971144,40.1374888],[-89.9710433,40.1374768],[-89.9708151,40.137491499999996],[-89.9705277,40.1375396],[-89.9702209,40.1376208],[-89.9700417,40.1377071],[-89.969788,40.1379523],[-89.9696865,40.138089300000004],[-89.9696039,40.1383753],[-89.9695874,40.1385892],[-89.9696226,40.1387546],[-89.9696906,40.1389641],[-89.9699566,40.1394819],[-89.9705154,40.139975],[-89.9706913,40.1401965],[-89.9710467,40.1409015],[-89.9710962,40.1410448],[-89.9711085,40.1412656],[-89.9710333,40.1415887],[-89.9708575,40.1419013],[-89.9705538,40.1421909],[-89.9703602,40.142288199999996],[-89.9701091,40.1423748],[-89.9699439,40.1424072],[-89.9697875,40.142399499999996],[-89.969609,40.1423381],[-89.9691129,40.1420765],[-89.96894879999999,40.1420151],[-89.9685336,40.142034699999996],[-89.9682913,40.1420881],[-89.96799730000001,40.142212],[-89.9673707,40.142620199999996],[-89.9670972,40.1428558],[-89.9669665,40.142930899999996],[-89.966737,40.1430283],[-89.9663939,40.1430711],[-89.9655437,40.1431089],[-89.9650506,40.143044599999996],[-89.9647301,40.1429769],[-89.9645017,40.1429585],[-89.9642734,40.142969],[-89.9640868,40.1430277],[-89.9638731,40.1430699],[-89.9634581,40.1431171],[-89.9632298,40.1431152],[-89.9630657,40.143048300000004],[-89.9629804,40.1429272],[-89.9628272,40.142591100000004],[-89.96280110000001,40.1424587],[-89.9628198,40.142024],[-89.9629533,40.141553],[-89.9630178,40.1409815],[-89.9630477,40.140871000000004],[-89.9630535,40.1404046],[-89.9629709,40.1401455],[-89.9628509,40.1399473],[-89.9626896,40.1397533],[-89.9622176,40.1390625],[-89.96209089999999,40.1389361],[-89.9618002,40.1387468],[-89.9616218,40.1386854],[-89.9613019,40.1386935],[-89.9611424,40.1387755],[-89.9610567,40.1388628],[-89.960985,40.1388893],[-89.9607768,40.1389439],[-89.9605917,40.1389584],[-89.9603629,40.1388917],[-89.9600444,40.138575599999996],[-89.9599678,40.1384048],[-89.9599212,40.1381511],[-89.9599379,40.1379648],[-89.9599128,40.137706800000004],[-89.9597656,40.1374632],[-89.9596051,40.1371216],[-89.959515,40.1368129],[-89.9592013,40.1361352],[-89.9591284,40.1357105],[-89.9591163,40.1349571],[-89.9589912,40.134534],[-89.958879,40.1344172],[-89.9586663,40.1343338],[-89.9584377,40.134287799999996],[-89.9583802,40.1342935],[-89.95828,40.1343643],[-89.9581639,40.1344793],[-89.9580396,40.1347143],[-89.9580012,40.1348897],[-89.9580003,40.1350277],[-89.9578393,40.1354161],[-89.9578236,40.1354934],[-89.9578358,40.1357086],[-89.9577762,40.135931],[-89.9576375,40.1361633],[-89.956986,40.136884699999996],[-89.9567336,40.1370527],[-89.9563264,40.1371826],[-89.9557174,40.1372553],[-89.9554602,40.1372369],[-89.9552604,40.1372032],[-89.9550335,40.1371461],[-89.9549415,40.137101],[-89.9542378,40.1367007],[-89.9538925,40.1364123],[-89.95363,40.1361304],[-89.9534496,40.1357503],[-89.9532099,40.1353911],[-89.9529588,40.1349284],[-89.9526825,40.1341733],[-89.9526344,40.133974800000004],[-89.9526496,40.1338257],[-89.952674,40.1337056],[-89.9526882,40.1336752],[-89.9527467,40.1335466],[-89.9527706,40.1333548],[-89.9527308,40.133029300000004],[-89.9526683,40.1328253],[-89.9524796,40.132561100000004],[-89.952219,40.1322944],[-89.9521051,40.1321955],[-89.9518,40.1319952],[-89.9517298,40.1319789],[-89.9515932,40.1319836],[-89.9514499,40.1320586],[-89.951291,40.1322179],[-89.9512094,40.132392100000004],[-89.9511425,40.1326117],[-89.951119,40.1328643],[-89.9511122,40.1334866],[-89.9510667,40.1336772],[-89.9509529,40.1341551],[-89.9509044,40.13471],[-89.9508507,40.1350234],[-89.9507698,40.1352983],[-89.9506453,40.1355113],[-89.9503858,40.1356971],[-89.9500701,40.1357991],[-89.9499066,40.1358094],[-89.949777,40.1357919],[-89.9493087,40.1356516],[-89.9490726,40.1355614],[-89.9489102,40.1354723],[-89.9487763,40.135339],[-89.94872720000001,40.1352453],[-89.9486193,40.1346842],[-89.9485292,40.134375399999996],[-89.9484911,40.1340403],[-89.948496,40.1336801],[-89.9484982,40.1334635],[-89.948552,40.1331556],[-89.9486189,40.1329414],[-89.9486283,40.132722],[-89.9487045,40.1322774],[-89.9486661,40.1318967],[-89.9485979,40.1316389],[-89.9483787,40.1313679],[-89.9480031,40.1311072],[-89.9477704,40.130983900000004],[-89.9475645,40.130839800000004],[-89.94699489999999,40.130595],[-89.9463267,40.1303864],[-89.9461988,40.1303579],[-89.945992,40.1303462],[-89.9458698,40.1303453],[-89.9457334,40.1303762],[-89.9453452,40.1306715],[-89.9452077,40.1308128],[-89.9450831,40.131005099999996],[-89.9448441,40.1312999],[-89.9448142,40.1314145],[-89.9449102,40.1318005],[-89.9449866,40.1319382],[-89.9450057,40.1321203],[-89.9451316,40.1324178],[-89.9451507,40.1325833],[-89.9451475,40.1329352],[-89.9450553,40.133413],[-89.9449896,40.133533299999996],[-89.9449042,40.133679900000004],[-89.9448811,40.1337186],[-89.9447349,40.1339054],[-89.9444757,40.1341451],[-89.9442306,40.1343254],[-89.9440727,40.1343674],[-89.9439508,40.134421599999996],[-89.9434352,40.1344898],[-89.9432788,40.134478],[-89.942987,40.134388],[-89.9427956,40.1342659],[-89.9425984,40.134061],[-89.9425634,40.1339287],[-89.9425744,40.1336817],[-89.9428787,40.1326333],[-89.9429172,40.1324579],[-89.9429197,40.1322978],[-89.9428572,40.1320676],[-89.9427173,40.1318349],[-89.9425185,40.1316798],[-89.9423634,40.131590599999996],[-89.9421491,40.1315404],[-89.9418849,40.1315497],[-89.9418132,40.1315706],[-89.9415979,40.1316459],[-89.9412166,40.1318971],[-89.9409728,40.1320043],[-89.9403413,40.1321984],[-89.9401922,40.1322252],[-89.9399065,40.132239999999996],[-89.9395556,40.1321875],[-89.9388652,40.1318865],[-89.93868140000001,40.1318072],[-89.9383754,40.1317504],[-89.9382621,40.131749400000004],[-89.9379891,40.1317863],[-89.9374095,40.1319416],[-89.9371643,40.1321163],[-89.9369623,40.1322965],[-89.9367361,40.1326354],[-89.9366477,40.1328716],[-89.9365643,40.1333383],[-89.936651,40.1336926],[-89.9366935,40.1338774],[-89.9368133,40.134060399999996],[-89.936996,40.1342378],[-89.9371675,40.1343489],[-89.9373947,40.1344598],[-89.9375785,40.1345268],[-89.9379694,40.1346509],[-89.9384553,40.134741500000004],[-89.9388905,40.134762],[-89.9389822,40.1347672],[-89.9399308,40.1349499],[-89.9402873,40.1350452],[-89.9405721,40.1351518],[-89.9408624,40.1352914],[-89.9409903,40.135331],[-89.941288,40.1354982],[-89.9415228,40.1356808],[-89.9417055,40.1358582],[-89.9418051,40.1359682],[-89.9419015,40.1361513],[-89.9418722,40.1363488],[-89.9417766,40.1365726],[-89.9415373,40.1368302],[-89.9412921,40.1369981],[-89.9410627,40.137112099999996],[-89.940833,40.1371764],[-89.9405905,40.1372187],[-89.9402042,40.1372491],[-89.9398679,40.1372255],[-89.93931309999999,40.1370675],[-89.9390072,40.1370162],[-89.9389012,40.1370249],[-89.938275,40.137220400000004],[-89.9379464,40.1372892],[-89.9369885,40.137332799999996],[-89.9367658,40.1373694],[-89.9364732,40.1374492],[-89.9360728,40.1375238],[-89.9355703,40.137663599999996],[-89.9352689,40.1377599],[-89.9350252,40.1378905],[-89.9347107,40.137911],[-89.9345541,40.1378812],[-89.9337002,40.1376125],[-89.9329585,40.1374469],[-89.9324613,40.1372735],[-89.9322185,40.1372606],[-89.9319527,40.1373084],[-89.9315023,40.1374481],[-89.9309626,40.137681799999996],[-89.9304664,40.1379693],[-89.9302643,40.1381328],[-89.9301124,40.1382852],[-89.9298004,40.1387182],[-89.9295683,40.1389798],[-89.9293279,40.1393519],[-89.9291691,40.1395387],[-89.9290116,40.1396635],[-89.9286515,40.1398593],[-89.9280988,40.140031],[-89.9277199,40.140100000000004],[-89.9270693,40.1401507],[-89.9268841,40.1401431],[-89.9265549,40.1401028],[-89.9264198,40.1400688],[-89.9261081,40.1399568],[-89.9259655,40.1398676],[-89.9258875,40.1397575],[-89.9258401,40.1396473],[-89.9257847,40.1393991],[-89.9255813,40.1390784],[-89.9254547,40.1389408],[-89.9250517,40.138613899999996],[-89.9249683,40.1384914],[-89.9249263,40.1383812],[-89.9248247,40.1379469],[-89.9248198,40.137722],[-89.9248448,40.1373976],[-89.9249417,40.137084099999996],[-89.925,40.1369141],[-89.9250554,40.136569],[-89.9250563,40.1364144],[-89.9250087,40.1362656],[-89.924925,40.1361169],[-89.9248472,40.1360288],[-89.9245856,40.1358725],[-89.9244289,40.135822],[-89.9241988,40.135831100000004],[-89.9239133,40.1358845],[-89.9236694,40.135982],[-89.9235101,40.1361012],[-89.9234001,40.136332100000004],[-89.9233777,40.1365019],[-89.923411,40.136645200000004],[-89.9234025,40.1367391],[-89.923349,40.1370953],[-89.9232366,40.1375455],[-89.9230785,40.1378524],[-89.9230796,40.137885499999996],[-89.9226685,40.138432],[-89.9225309,40.1385636],[-89.9224234,40.1386288],[-89.9218205,40.1388269],[-89.9216912,40.138848100000004],[-89.9214126,40.1388463],[-89.9213136,40.1388411],[-89.9211426,40.1388003],[-89.9209442,40.138689299999996],[-89.9208319,40.1385572],[-89.9207955,40.1384801],[-89.9207692,40.138298],[-89.9208028,40.1379129],[-89.92081,40.1373141],[-89.9207277,40.1370825],[-89.9204397,40.1367234],[-89.9201921,40.136513199999996],[-89.919788,40.1362732],[-89.9192687,40.136022499999996],[-89.9190201,40.1359323],[-89.9189121,40.1359161],[-89.9184709,40.1357921],[-89.9181722,40.1357352],[-89.9180371,40.1356902],[-89.9178532,40.1356108],[-89.9175411,40.1354229],[-89.9173984,40.1353116],[-89.9172299,40.13509],[-89.9169814,40.1344175],[-89.9168758,40.1342082],[-89.9167276,40.1340693],[-89.9165954,40.1339042],[-89.91651949999999,40.133841000000004],[-89.9162485,40.1336212],[-89.9160843,40.133521099999996],[-89.9157365,40.1333815],[-89.9144059,40.1330261],[-89.9134313,40.1326776],[-89.9127544,40.1325075],[-89.9120561,40.1323761],[-89.9115287,40.1322524],[-89.9103259,40.1319254],[-89.9093146,40.1317467],[-89.9088434,40.1317221],[-89.9084355,40.131736000000004],[-89.907772,40.1317148],[-89.9074577,40.1317669],[-89.9069913,40.1319341],[-89.906882,40.131999300000004],[-89.9066371,40.1322292],[-89.9065357,40.1324034],[-89.9063955,40.1327213],[-89.906312,40.133193500000004],[-89.9063656,40.1334472],[-89.9064708,40.133617900000004],[-89.906724,40.1338723],[-89.9068448,40.133933999999996],[-89.907029,40.134072700000004],[-89.90734810000001,40.1342344],[-89.9079302,40.1344753],[-89.9084566,40.134726],[-89.9087326,40.1348823],[-89.9088952,40.1350211],[-89.9089876,40.1351478],[-89.90906269999999,40.1353793],[-89.9090948,40.1356427],[-89.90914599999999,40.1367161],[-89.9091426,40.137045900000004],[-89.909023,40.1374961],[-89.9089715,40.1376108],[-89.9088484,40.1377685],[-89.9086905,40.1378229],[-89.9084694,40.1378209],[-89.9082766,40.1377539],[-89.9076526,40.1374249],[-89.9073891,40.1372478],[-89.9069087,40.1368645],[-89.9063945,40.1362454],[-89.9060327,40.1355498],[-89.9057865,40.1352567],[-89.9055104,40.1350742],[-89.9049981,40.1347848],[-89.9041707,40.1343943],[-89.9036389,40.134145000000004],[-89.9031883,40.1339355],[-89.9030963,40.1338861],[-89.9029048,40.1337253],[-89.9025591,40.1333153],[-89.9021938,40.1329343],[-89.9018983,40.1325034],[-89.9014574,40.1318123],[-89.9012279,40.1312942],[-89.9009049,40.1307641],[-89.9008586,40.1305214],[-89.9006709,40.1300805],[-89.9004547,40.1296783],[-89.8998037,40.128695300000004],[-89.8993443,40.128212500000004],[-89.89887,40.1279299],[-89.8987061,40.127878],[-89.8983125,40.1278862],[-89.8980485,40.127933999999996],[-89.8978533,40.1280589],[-89.8974506,40.1283748],[-89.8969312,40.1286967],[-89.8966515,40.1288259],[-89.8962197,40.1290758],[-89.8958468,40.1292495],[-89.8949353,40.1295395],[-89.8947647,40.129576],[-89.8944646,40.1295853],[-89.8941556,40.1296222],[-89.8937337,40.129717400000004],[-89.8933034,40.129923],[-89.8929489,40.1301795],[-89.8923809,40.1305001],[-89.8917795,40.1306497],[-89.8916358,40.130663999999996],[-89.8914146,40.1306413],[-89.8913227,40.1306071],[-89.8911302,40.1305732],[-89.8902756,40.1304519],[-89.8899048,40.1303551],[-89.8898129,40.1303113],[-89.8893957,40.1299663],[-89.888638,40.1294776],[-89.888071,40.1290337],[-89.8878669,40.1288509],[-89.8876269,40.1286792],[-89.8873494,40.128567000000004],[-89.8870718,40.128421599999996],[-89.8860054,40.1280236],[-89.885642,40.1279709],[-89.8854553,40.1280033],[-89.8852847,40.1280342],[-89.8850909,40.1280941],[-89.8849331,40.1281692],[-89.88447,40.1286122],[-89.8842879,40.1288529],[-89.8841135,40.1291639],[-89.8840524,40.1294884],[-89.8839779,40.1296749],[-89.8839397,40.1299165],[-89.8840385,40.130566099999996],[-89.8840623,40.130962],[-89.8841566,40.131429499999996],[-89.8841742,40.1316985],[-89.8842017,40.1317867],[-89.8846161,40.1322904],[-89.8848852,40.1325185],[-89.8851747,40.1328446],[-89.885507,40.1331319],[-89.8855703,40.1331883],[-89.8857242,40.133392],[-89.8858367,40.133586199999996],[-89.8860024,40.133961],[-89.8860286,40.134143],[-89.8859845,40.1342963],[-89.8858829,40.1344664],[-89.8857293,40.1346407],[-89.8856739,40.134692],[-89.8855236,40.1348277],[-89.8854771,40.1348692],[-89.8850751,40.1349933],[-89.88496190000001,40.1350034],[-89.8846028,40.1350832],[-89.8841738,40.135200499999996],[-89.8839514,40.1352923],[-89.8836056,40.135504499999996],[-89.8831422,40.1359075],[-89.8828037,40.1361529],[-89.8825096,40.136272500000004],[-89.8823373,40.136331],[-89.8822007,40.136341099999996],[-89.8818951,40.1363448],[-89.8816738,40.1363152],[-89.8810816,40.1361736],[-89.8808631,40.1359963],[-89.8807796,40.1358475],[-89.8807963,40.1356102],[-89.8808876,40.135209700000004],[-89.8811529,40.1347411],[-89.8811724,40.1347065],[-89.8812612,40.1345034],[-89.8812706,40.1342454],[-89.8811312,40.1340678],[-89.8809597,40.133945600000004],[-89.8807688,40.1338675],[-89.8806696,40.1338071],[-89.8803489,40.1336936],[-89.8802858,40.1336552],[-89.8801076,40.1336102],[-89.8794299,40.133611],[-89.8786932,40.1336824],[-89.8776462,40.133883],[-89.8774327,40.1339472],[-89.87716,40.134050200000004],[-89.8768214,40.1342734],[-89.876639,40.1344589],[-89.8763856,40.1347922],[-89.8762238,40.1351211],[-89.8759987,40.1353992],[-89.8758088,40.1358386],[-89.8757285,40.1359478],[-89.8755049,40.1361597],[-89.8752954,40.1363121],[-89.87508389999999,40.1364328],[-89.874942,40.136465],[-89.874777,40.1365318],[-89.8745691,40.1366456],[-89.8739656,40.1370959],[-89.873528,40.1372918],[-89.8730772,40.1373678],[-89.8724751,40.1373986],[-89.8717826,40.1373263],[-89.8713973,40.1372199],[-89.8711396,40.137119999999996],[-89.8708548,40.1369718],[-89.8703407,40.1366395],[-89.8701421,40.1364911],[-89.8698292,40.1361223],[-89.869673,40.1358248],[-89.8693412,40.1352959],[-89.8690424,40.1348885],[-89.8688794,40.1346682],[-89.8685883,40.1343476],[-89.8682468,40.1340285],[-89.8678295,40.1332902],[-89.8675379,40.1328882],[-89.8674034,40.1326017],[-89.8673538,40.132399],[-89.8672553,40.1321399],[-89.8672216,40.1318861],[-89.8672514,40.1317384],[-89.8673667,40.1314358],[-89.867669,40.1311562],[-89.8679074,40.1306904],[-89.8679878,40.1305963],[-89.8680614,40.1302401],[-89.8680548,40.1300138],[-89.8680207,40.1296842],[-89.8679933,40.1295959],[-89.8679081,40.1294582],[-89.8678087,40.129353699999996],[-89.8674025,40.1290334],[-89.8671459,40.1287693],[-89.8670107,40.1287076],[-89.8666758,40.1285969],[-89.8664923,40.1285643],[-89.8662044,40.1285142],[-89.8659397,40.1284198],[-89.86539,40.1281538],[-89.864785,40.1279542],[-89.8644557,40.1278987],[-89.864249,40.1278869],[-89.8637764,40.1279132],[-89.8632165,40.1281094],[-89.8622417,40.128683699999996],[-89.8618747,40.1289856],[-89.8616166,40.1291271],[-89.8614215,40.1292919],[-89.8613643,40.1293514],[-89.8611543,40.1297633],[-89.8609684,40.1299556],[-89.860746,40.1300487],[-89.8605319,40.1300149],[-89.8599247,40.129738],[-89.8591393,40.1294286],[-89.8584769,40.1292498],[-89.8576765,40.1291598],[-89.8573459,40.1291925],[-89.8569325,40.129202],[-89.8566165,40.1292665],[-89.8562018,40.1293809],[-89.8558286,40.1295172],[-89.8553898,40.1298193],[-89.8548795,40.130229299999996],[-89.8546716,40.1303444],[-89.85447070000001,40.1304264],[-89.8536206,40.1304731],[-89.8532629,40.1304673],[-89.8530974,40.1304388],[-89.8524835,40.1302613],[-89.851642,40.1298636],[-89.8498752,40.1288354],[-89.8495042,40.128691599999996],[-89.8486984,40.1282386],[-89.8477291,40.1277903],[-89.8464378,40.127307],[-89.8459733,40.1271579],[-89.8455103,40.1269482],[-89.8448603,40.126730699999996],[-89.8442033,40.1265477],[-89.8432678,40.1263862],[-89.8431456,40.1263907],[-89.8427738,40.1264442],[-89.8426086,40.126487499999996],[-89.8425154,40.1265319],[-89.8423435,40.126669],[-89.8421204,40.126987],[-89.841916,40.1274705],[-89.841807,40.1279538],[-89.8417536,40.1284313],[-89.8417445,40.1287722],[-89.8415973,40.1295426],[-89.8415159,40.1298105],[-89.8413501,40.1300966],[-89.8411911,40.1302943],[-89.8409619,40.1304744],[-89.8406965,40.1306007],[-89.8403014,40.1306874],[-89.8400589,40.1307254],[-89.8396725,40.1307403],[-89.8392715,40.1307166],[-89.8390143,40.1306773],[-89.8382149,40.1304229],[-89.8378599,40.130257],[-89.8377229,40.1301622],[-89.8373184,40.129788],[-89.8371971,40.1296117],[-89.8370917,40.1293692],[-89.8370859,40.1292919],[-89.8371591,40.1288143],[-89.8372106,40.1286872],[-89.8373144,40.1282316],[-89.8372658,40.1278467],[-89.8372166,40.1277034],[-89.8371389,40.1276208],[-89.8369678,40.1275371],[-89.8366818,40.127509],[-89.8365612,40.1274652],[-89.8359961,40.1273371],[-89.8357243,40.1272481],[-89.8353549,40.1270712],[-89.8351763,40.1269434],[-89.8348136,40.1266464],[-89.8345788,40.1264138],[-89.8345426,40.1263643],[-89.8344948,40.1261395],[-89.8345924,40.1255072],[-89.8345862,40.1253362],[-89.8345582,40.1251168],[-89.8345218,40.1250217],[-89.8345118,40.1250031],[-89.8345046,40.1249866],[-89.8344972,40.124959000000004],[-89.83449,40.1249425],[-89.8344763,40.1249039],[-89.8344689,40.124865299999996],[-89.8344615,40.1248274],[-89.8344478,40.1247722],[-89.8343619,40.1246731],[-89.8343121,40.124596],[-89.8341975,40.1244969],[-89.8341117,40.1244089],[-89.8340188,40.1243374],[-89.8338684,40.1242709],[-89.8337252,40.1242106],[-89.8335613,40.1241441],[-89.8333605,40.1240619],[-89.833203,40.1240065],[-89.8330175,40.1239297],[-89.8328672,40.1238853],[-89.8326953,40.123835400000004],[-89.8325522,40.1238027],[-89.8324163,40.1237472],[-89.8322587,40.123686899999996],[-89.8321658,40.1236209],[-89.8320164,40.1235655],[-89.831637,40.1235383],[-89.8314431,40.1235871],[-89.8313355,40.1236481],[-89.8312713,40.1237469],[-89.8312286,40.1238347],[-89.8311852,40.123967300000004],[-89.8311488,40.124066],[-89.831106,40.1241482],[-89.8310419,40.1242588],[-89.8309913,40.1243907],[-89.830955,40.1245171],[-89.8309554,40.1245944],[-89.8309262,40.1246931],[-89.83084769999999,40.1248085],[-89.8307214,40.125095200000004],[-89.830683,40.1251429],[-89.8303231,40.1254502],[-89.830187,40.1255431],[-89.8299502,40.1256362],[-89.8296197,40.1256895],[-89.8293914,40.1256998],[-89.8290121,40.1256829],[-89.8289689,40.1256817],[-89.8286902,40.125648],[-89.8279479,40.125662399999996],[-89.8275757,40.125634500000004],[-89.8272752,40.1255774],[-89.8266974,40.1254065],[-89.8265478,40.1253172],[-89.8264342,40.1252402],[-89.8263268,40.1251405],[-89.8260728,40.1250212],[-89.8260521,40.1250102],[-89.8260088,40.1249765],[-89.8259727,40.1249435],[-89.8259303,40.1249105],[-89.8258943,40.124894],[-89.8258373,40.1248335],[-89.8257659,40.1247288],[-89.8256943,40.1246138],[-89.8256443,40.1244925],[-89.8255799,40.1243602],[-89.8254946,40.1241948],[-89.8254302,40.1240522],[-89.8253521,40.1238924],[-89.8252661,40.1237491],[-89.8252022,40.1235458],[-89.8251664,40.1233748],[-89.8251316,40.123243099999996],[-89.825067,40.1230666],[-89.824996,40.1228799],[-89.8249315,40.1227365],[-89.8248457,40.1226319],[-89.8247605,40.1224942],[-89.8246248,40.1222903],[-89.8245394,40.1221036],[-89.8244462,40.1219659],[-89.8242819,40.1217952],[-89.824132,40.1216411],[-89.8240101,40.1215145],[-89.8238603,40.1213879],[-89.8237386,40.1213213],[-89.8235954,40.121255500000004],[-89.8234957,40.1212503],[-89.8233376,40.1212666],[-89.8232524,40.121299199999996],[-89.8231944,40.1214035],[-89.8231805,40.1214919],[-89.8232016,40.1215967],[-89.8231941,40.1217175],[-89.8232442,40.1218553],[-89.8233084,40.1219434],[-89.8233725,40.122009500000004],[-89.8234511,40.1220921],[-89.8235441,40.1221856],[-89.8236586,40.1222792],[-89.82375880000001,40.1223782],[-89.8238726,40.1224938],[-89.8239874,40.1226425],[-89.8240223,40.122790800000004],[-89.8240227,40.1228736],[-89.8239295,40.1229394],[-89.823829,40.1229783],[-89.82370710000001,40.1230331],[-89.8235644,40.123087999999996],[-89.8234281,40.1231374],[-89.8233203,40.1231646],[-89.8231776,40.123198099999996],[-89.8229701,40.1232248],[-89.8228696,40.1232472],[-89.8227115,40.12328],[-89.8225761,40.1233349],[-89.8224469,40.1233732],[-89.8223185,40.1234012],[-89.8222034,40.1234008],[-89.8221394,40.123345799999996],[-89.822075,40.1232245],[-89.8220467,40.1231204],[-89.8220255,40.1230156],[-89.8220044,40.1229218],[-89.8219688,40.1228067],[-89.8219468,40.122713],[-89.8218753,40.122602799999996],[-89.8217472,40.122503800000004],[-89.82164,40.1224378],[-89.8215328,40.1223933],[-89.8214249,40.1223825],[-89.8212965,40.1223987],[-89.8211106,40.1224206],[-89.8209453,40.122431399999996],[-89.8207953,40.1224532],[-89.8206589,40.1224977],[-89.8205521,40.122536],[-89.8204516,40.1225742],[-89.82040860000001,40.1225964],[-89.8203156,40.122695300000004],[-89.8202647,40.1227727],[-89.8202506,40.1228328],[-89.8202366,40.1229156],[-89.8202217,40.1230033],[-89.820243,40.1231301],[-89.82023530000001,40.1232178],[-89.8202356,40.1232895],[-89.8201857,40.1233828],[-89.8200703,40.1234928],[-89.81996290000001,40.1235814],[-89.8198768,40.1236361],[-89.8197836,40.1236909],[-89.819669,40.1237843],[-89.8195903,40.1238729],[-89.8195619,40.1239495],[-89.819547,40.1240213],[-89.819533,40.124109000000004],[-89.819554,40.1241862],[-89.8195687,40.1242579],[-89.8195755,40.124351000000004],[-89.8195822,40.1244559],[-89.8195674,40.124549],[-89.8195606,40.1246319],[-89.8195243,40.1247637],[-89.8194601,40.1248632],[-89.8191431,40.1251132],[-89.8190982,40.125134700000004],[-89.8188398,40.1252099],[-89.8185811,40.1252423],[-89.8184391,40.1252427],[-89.81811,40.125207700000004],[-89.8178026,40.1252127],[-89.8175309,40.1251568],[-89.8173706,40.125075100000004],[-89.8173199,40.1249994],[-89.817291,40.1249664],[-89.8172694,40.124949900000004],[-89.8171981,40.1248893],[-89.8171557,40.1248563],[-89.8170619,40.1247897],[-89.8169619,40.124723700000004],[-89.8168834,40.1246687],[-89.8167618,40.1246083],[-89.8166331,40.124552800000004],[-89.8165044,40.124520000000004],[-89.81634700000001,40.1244922],[-89.8161681,40.1244919],[-89.816054,40.1244922],[-89.8159103,40.1245085],[-89.8157962,40.1245198],[-89.815638,40.1245251],[-89.8154808,40.1245303],[-89.8152876,40.1245302],[-89.8151232,40.124552],[-89.8149516,40.1245738],[-89.8148294,40.1245797],[-89.8146649,40.1245684],[-89.8145219,40.124535],[-89.8143717,40.1245078],[-89.8142643,40.124419700000004],[-89.814157,40.1243428],[-89.8140647,40.1241995],[-89.8139859,40.1240728],[-89.8138862,40.1238798],[-89.8138432,40.1237206],[-89.8137651,40.1235276],[-89.81373669999999,40.123407],[-89.8136801,40.123213899999996],[-89.8136155,40.123048499999996],[-89.81353730000001,40.1228342],[-89.81348009999999,40.122701899999996],[-89.813366,40.1225207],[-89.8133089,40.1223994],[-89.813223,40.1222948],[-89.8131156,40.1222013],[-89.8129949,40.1221291],[-89.8129156,40.1220742],[-89.8127732,40.1219917],[-89.8126444,40.1219203],[-89.8125229,40.1218924],[-89.8123935,40.1218872],[-89.8121938,40.1218484],[-89.8120787,40.1218259],[-89.8118287,40.1218093],[-89.8116642,40.1217932],[-89.8115204,40.1217819],[-89.8114278,40.121771100000004],[-89.8113135,40.1217431],[-89.8110984,40.1216822],[-89.8109986,40.121654899999996],[-89.81087,40.121638000000004],[-89.810691,40.1216109],[-89.8105119,40.1215444],[-89.8104046,40.1214674],[-89.8102758,40.121396000000004],[-89.81019739999999,40.1213514],[-89.8100543,40.1213021],[-89.8098681,40.1212632],[-89.8097179,40.1212526],[-89.8095679,40.1212578],[-89.8094529,40.121274],[-89.8093604,40.1212853],[-89.80921670000001,40.1213015],[-89.8091601,40.121307200000004],[-89.8090452,40.1213399],[-89.8088945,40.1214058],[-89.8087735,40.1214662],[-89.8086946,40.121516],[-89.8086659,40.1215375],[-89.8086797,40.1216037],[-89.8087079,40.1216699],[-89.8087441,40.121736],[-89.8087941,40.1218683],[-89.8088296,40.1219559],[-89.8088508,40.1220883],[-89.8088719,40.1221765],[-89.8089217,40.122275099999996],[-89.8089571,40.1223467],[-89.8089934,40.1224239],[-89.8090143,40.1224845],[-89.8090641,40.1225562],[-89.8091722,40.1226056],[-89.8092721,40.1226439],[-89.809336,40.1226776],[-89.8094511,40.1226938],[-89.8095078,40.1227102],[-89.8096014,40.1227217],[-89.8097866,40.1227488],[-89.8098946,40.1227768],[-89.8100663,40.1227992],[-89.810195,40.1228375],[-89.8103525,40.122887399999996],[-89.8104383,40.12297],[-89.8105024,40.123036],[-89.8105449,40.1231132],[-89.8106235,40.1231958],[-89.810695,40.1233053],[-89.8107167,40.1233328],[-89.8108091,40.1234926],[-89.8108157,40.1235754],[-89.8108161,40.123652],[-89.8108084,40.1237514],[-89.8107728,40.123828700000004],[-89.8107372,40.1238999],[-89.8107078,40.1239607],[-89.810672,40.1239987],[-89.8106219,40.124043],[-89.810536,40.1241364],[-89.8104286,40.1242298],[-89.8103426,40.1242955],[-89.8102136,40.1243835],[-89.8100844,40.124444600000004],[-89.8099624,40.1244939],[-89.8097551,40.1245648],[-89.8095691,40.1245653],[-89.8094612,40.1245538],[-89.8093254,40.124532099999996],[-89.8092111,40.1244931],[-89.809068,40.1244548],[-89.8089897,40.1244322],[-89.8088818,40.1244104],[-89.8087245,40.1244102],[-89.8086247,40.1244049],[-89.8085385,40.12441],[-89.8084244,40.1244158],[-89.808295,40.124432],[-89.8081091,40.1244538],[-89.8079591,40.1244756],[-89.8077867,40.124514],[-89.8076727,40.1245474],[-89.8075004,40.1245969],[-89.807321,40.1246677],[-89.8072501,40.1246955],[-89.8071138,40.1247614],[-89.8069991,40.1248383],[-89.8068985,40.1248606],[-89.8068419,40.1248545],[-89.8068058,40.1248325],[-89.8067417,40.124761],[-89.8067133,40.1246513],[-89.8066562,40.1245411],[-89.8066343,40.1244584],[-89.8066133,40.1243811],[-89.8065345,40.1242489],[-89.8064919,40.1241559],[-89.8064278,40.1240898],[-89.8063206,40.1240397],[-89.8061847,40.1239904],[-89.8060561,40.123968],[-89.8058916,40.1239629],[-89.8057263,40.1239847],[-89.8055692,40.124023],[-89.8054759,40.1240557],[-89.8053683,40.1241105],[-89.8052678,40.1241549],[-89.8051324,40.124231800000004],[-89.8050177,40.1243032],[-89.804903,40.1243745],[-89.8048098,40.1244293],[-89.8047237,40.124479199999996],[-89.8042797,40.1246824],[-89.8041864,40.1247262],[-89.8040573,40.124792],[-89.8040071,40.1248142],[-89.8039066,40.1248524],[-89.8038069,40.1248637],[-89.8036991,40.1248688],[-89.8035993,40.1248801],[-89.8035489,40.1248582],[-89.803535,40.124764400000004],[-89.8034925,40.1246983],[-89.8034634,40.1246266],[-89.8034424,40.1245439],[-89.803414,40.124428699999996],[-89.803428,40.1243293],[-89.8034076,40.1241921],[-89.8033574,40.1240046],[-89.803293,40.123884000000004],[-89.803236,40.123795799999996],[-89.8031215,40.123701600000004],[-89.8030791,40.1236741],[-89.8029504,40.1236193],[-89.8028218,40.1236023],[-89.8026349,40.1236138],[-89.8025999,40.1236298],[-89.802521,40.1236631],[-89.8024205,40.1237124],[-89.8023633,40.123783599999996],[-89.8023339,40.1238333],[-89.802291,40.123905199999996],[-89.8022691,40.1240315],[-89.8022552,40.1241254],[-89.8022482,40.1241744],[-89.8022188,40.1242407],[-89.8021329,40.124328500000004],[-89.8020686,40.1244218],[-89.8019466,40.1244821],[-89.8018747,40.124471299999996],[-89.8017891,40.1244218],[-89.8017251,40.1243778],[-89.8016889,40.1243227],[-89.8016032,40.1242512],[-89.8015535,40.1241906],[-89.80149660000001,40.124119],[-89.80144609999999,40.1240695],[-89.801303,40.124025],[-89.8012248,40.1240197],[-89.8011602,40.1240419],[-89.8010956,40.12408],[-89.8010095,40.1241189],[-89.8009379,40.1241791],[-89.8008735,40.1242503],[-89.8008305,40.1242946],[-89.8007732,40.1243492],[-89.800716,40.1244211],[-89.8006793,40.1244598],[-89.8006078,40.1245311],[-89.8005649,40.1246022],[-89.800515,40.1246907],[-89.8004857,40.124772899999996],[-89.8004358,40.1248668],[-89.8003856,40.1249159],[-89.8003283,40.124960200000004],[-89.8002038,40.125062],[-89.8001905,40.125105500000004],[-89.8000973,40.1251609],[-89.7996449,40.1253014],[-89.7993736,40.1253283],[-89.79882190000001,40.125338],[-89.7983208,40.1254289],[-89.7976991,40.1255036],[-89.7972134,40.1254096],[-89.7968064,40.1252147],[-89.7965765,40.1250614],[-89.7965269,40.1250229],[-89.7965061,40.1249954],[-89.7964701,40.1249624],[-89.7964204,40.124907300000004],[-89.7963635,40.1248412],[-89.7963057,40.1247861],[-89.7962273,40.1247201],[-89.7961704,40.1246706],[-89.7960632,40.1245991],[-89.7960127,40.1245606],[-89.7959127,40.1245056],[-89.79579820000001,40.124428],[-89.7957126,40.1243675],[-89.7956558,40.1243179],[-89.79554830000001,40.1242078],[-89.7954699,40.1241363],[-89.7953912,40.1240206],[-89.7953342,40.1239269],[-89.7952484,40.1238388],[-89.7950908,40.1237729],[-89.7949271,40.1237285],[-89.7948119,40.1236957],[-89.7947768,40.1236902],[-89.7945901,40.1237231],[-89.7944976,40.1237503],[-89.7943828,40.1238051],[-89.7942537,40.1238764],[-89.7941534,40.1239533],[-89.7940961,40.124008599999996],[-89.7940029,40.1240909],[-89.7938876,40.124234],[-89.7938089,40.124316300000004],[-89.7937158,40.1244097],[-89.7936513,40.124465],[-89.7935438,40.1245474],[-89.7932353,40.1246958],[-89.7930783,40.1247618],[-89.7928414,40.1248548],[-89.7926413,40.1249153],[-89.792383,40.1250622],[-89.7917985,40.1256218],[-89.7916518,40.125793200000004],[-89.7915391,40.1259232],[-89.7913946,40.1261761],[-89.7913217,40.1263625],[-89.7912847,40.1265324],[-89.7913167,40.1268952],[-89.7913531,40.1269999],[-89.7916721,40.1276311],[-89.7919023,40.12809],[-89.792038,40.1282884],[-89.7921417,40.1285751],[-89.7921622,40.1287517],[-89.7921326,40.1289767],[-89.7920599,40.1292128],[-89.7920169,40.129268100000004],[-89.7919005,40.1293719],[-89.7917857,40.129426],[-89.7916923,40.1294428],[-89.7914569,40.1294475],[-89.791293,40.1293913],[-89.7912011,40.1293364],[-89.79108,40.1291821],[-89.7909744,40.1288567],[-89.7908692,40.1286307],[-89.7908131,40.128526],[-89.790692,40.1283883],[-89.79054239999999,40.1282728],[-89.7904361,40.1282178],[-89.7901431,40.1282158],[-89.7898632,40.1283531],[-89.7895961,40.1285276],[-89.7894313,40.1286646],[-89.7890428,40.1290312],[-89.7886026,40.1295193],[-89.7881066,40.12998],[-89.7878412,40.1301435],[-89.7876043,40.130242],[-89.7872754,40.130258],[-89.7870398,40.1302186],[-89.7869533,40.130178799999996],[-89.7867838,40.1300467],[-89.786421,40.1296764],[-89.7861793,40.1294893],[-89.7859794,40.1293946],[-89.7857365,40.129329],[-89.7855584,40.1293004],[-89.7852366,40.1292888],[-89.7850713,40.1293044],[-89.7848216,40.1293532],[-89.7841339,40.129537],[-89.7837531,40.1296014],[-89.7836254,40.1296072],[-89.7834312,40.1295843],[-89.7832045,40.1295227],[-89.7830964,40.1294733],[-89.782898,40.1293013],[-89.7828418,40.1291924],[-89.7826884,40.1286091],[-89.7825793,40.1278546],[-89.7824233,40.1274976],[-89.7821612,40.127138099999996],[-89.7819701,40.1270116],[-89.7818207,40.1269554],[-89.7815202,40.126883],[-89.7810761,40.1268495],[-89.7808336,40.1268805],[-89.7803596,40.1270334],[-89.7800097,40.127186],[-89.7798286,40.1272954],[-89.7794989,40.127552800000004],[-89.7788995,40.1282262],[-89.7785122,40.1284838],[-89.7782895,40.1285381],[-89.7776392,40.1286238],[-89.7766153,40.128818],[-89.7762562,40.1289265],[-89.7749513,40.129400000000004],[-89.77464259999999,40.1295318],[-89.7743199,40.129734],[-89.7742124,40.129837800000004],[-89.7741034,40.1299967],[-89.7739805,40.130299199999996],[-89.7740485,40.1306674],[-89.774246,40.1310533],[-89.7744648,40.131384],[-89.77455,40.131558999999996],[-89.7745919,40.131719000000004],[-89.7745979,40.131868],[-89.7745248,40.1320158],[-89.7744747,40.132065600000004],[-89.77420910000001,40.1321848],[-89.77409420000001,40.1322182],[-89.7738372,40.1322395],[-89.7732007,40.1322148],[-89.7731575,40.1322052],[-89.7729435,40.1321643],[-89.772758,40.132075],[-89.7725452,40.1319155],[-89.7724531,40.1318163],[-89.7724041,40.131684],[-89.7724049,40.1314315],[-89.7725076,40.1310242],[-89.7724888,40.1308214],[-89.7723965,40.1306671],[-89.77229,40.1305569],[-89.7720271,40.130440300000004],[-89.7718112,40.1303952],[-89.7715127,40.1303614],[-89.771119,40.1303651],[-89.7708978,40.1303256],[-89.770797,40.1302927],[-89.7706907,40.1302267],[-89.7706201,40.1301054],[-89.7705635,40.1298903],[-89.7705588,40.1296047],[-89.7705312,40.1294447],[-89.7702978,40.129058900000004],[-89.7701208,40.128833],[-89.7699309,40.128529900000004],[-89.7697813,40.1284309],[-89.7696446,40.1284077],[-89.7694237,40.128451],[-89.7691006,40.1285718],[-89.7690215,40.128576100000004],[-89.7689064,40.1285653],[-89.76841519999999,40.1284367],[-89.7682211,40.1284413],[-89.7681493,40.128474600000004],[-89.7680777,40.1285562],[-89.7680979,40.128672],[-89.7683743,40.1290246],[-89.7684524,40.1292287],[-89.7684436,40.1292894],[-89.768365,40.1294041],[-89.7682429,40.1294527],[-89.7681854,40.129452799999996],[-89.7680865,40.1294365],[-89.7676579,40.1292318],[-89.7674438,40.1291923],[-89.7672355,40.1292355],[-89.7669555,40.1293548],[-89.7668136,40.1293828],[-89.7665835,40.1293819],[-89.7664557,40.129336699999996],[-89.7664196,40.1293091],[-89.7663146,40.1291107],[-89.7665131,40.1283637],[-89.7665143,40.1282216],[-89.7664079,40.1281156],[-89.7663215,40.1280993],[-89.765892,40.128108499999996],[-89.7656926,40.128157200000004],[-89.7656209,40.1282126],[-89.7655319,40.1284377],[-89.7655108,40.1285523],[-89.7654163,40.1287608],[-89.7652054,40.1290745],[-89.7650979,40.1291672],[-89.7649686,40.1292048],[-89.7648841,40.129205],[-89.7647833,40.1291596],[-89.7642856,40.128762],[-89.7641157,40.128519499999996],[-89.7637388,40.1281782],[-89.7636253,40.1281218],[-89.7631527,40.1281698],[-89.7630522,40.1281921],[-89.7628584,40.128296],[-89.7627869,40.1283886],[-89.7624102,40.1290863],[-89.7620287,40.129452799999996],[-89.7617202,40.1296218],[-89.7614904,40.1296982],[-89.7613466,40.129713699999996],[-89.761032,40.1297075],[-89.7608467,40.1296734],[-89.7605406,40.1295292],[-89.7603261,40.129369600000004],[-89.7601781,40.1292043],[-89.7600859,40.1290666],[-89.7599587,40.1287191],[-89.7598884,40.128642],[-89.7597461,40.1285651],[-89.7595607,40.1285144],[-89.7592403,40.1283923],[-89.759026,40.128281],[-89.7586835,40.1280389],[-89.7585426,40.1278502],[-89.7584001,40.127707],[-89.7582721,40.127618999999996],[-89.7580308,40.1274967],[-89.7578095,40.1274365],[-89.7573726,40.1274015],[-89.7570509,40.1274271],[-89.7562568,40.1275461],[-89.7560484,40.1275617],[-89.7559711,40.127566],[-89.7556995,40.1275155],[-89.7553,40.1274046],[-89.7551775,40.1273331],[-89.754716,40.1269574],[-89.7543053,40.126732000000004],[-89.7542387,40.1266963],[-89.7540102,40.126625000000004],[-89.753789,40.1266186],[-89.7536885,40.126639499999996],[-89.7532147,40.126841999999996],[-89.7528989,40.127016499999996],[-89.7527194,40.1270763],[-89.7525631,40.1271083],[-89.7514958,40.127225100000004],[-89.7513306,40.1272572],[-89.7511368,40.1273501],[-89.7509434,40.1275643],[-89.750886,40.1275921],[-89.750807,40.1276074],[-89.7504865,40.1274742],[-89.7502437,40.1274237],[-89.7500749,40.1274917],[-89.7499308,40.127399499999996],[-89.7497534,40.1270605],[-89.7496723,40.1269847],[-89.7494923,40.1269203],[-89.7492784,40.126934500000004],[-89.7491654,40.1269789],[-89.7486509,40.1273705],[-89.7483767,40.1276043],[-89.7478529,40.1279117],[-89.7477275,40.1280278],[-89.7475664,40.128233800000004],[-89.7474192,40.1287957],[-89.7473032,40.1290167],[-89.7471904,40.1291439],[-89.7470362,40.129267],[-89.7468371,40.1293626],[-89.7465678,40.129458400000004],[-89.7462175,40.1295281],[-89.7460683,40.1295298],[-89.7457608,40.129489],[-89.7453432,40.1293298],[-89.7450746,40.12914],[-89.7447104,40.1288082],[-89.7444222,40.1286418],[-89.744163,40.1285458],[-89.7439472,40.128536600000004],[-89.7437838,40.1285659],[-89.7436439,40.1286724],[-89.7434563,40.1289819],[-89.7434226,40.1291089],[-89.7433046,40.1292968],[-89.7430878,40.1295028],[-89.7426314,40.1295617],[-89.7421801,40.129533699999996],[-89.7419447,40.129559],[-89.7415534,40.1297061],[-89.7414567,40.1298166],[-89.7414426,40.1299105],[-89.7414612,40.1300691],[-89.741521,40.1302111],[-89.7416982,40.1305226],[-89.7419453,40.1307622],[-89.7421872,40.1310349],[-89.7423788,40.131356],[-89.7423954,40.1314719],[-89.7423472,40.131560300000004],[-89.7422343,40.1316599],[-89.7421571,40.1317],[-89.7420494,40.1317279],[-89.741672,40.131754799999996],[-89.7411918,40.1317048],[-89.740431,40.1315752],[-89.7399724,40.1315251],[-89.7396865,40.1315174],[-89.7395374,40.1315467],[-89.7394029,40.1316201],[-89.739177,40.1318041],[-89.738833,40.1321373],[-89.7385271,40.1325795],[-89.7384429,40.1326583],[-89.7381882,40.1328313],[-89.7379477,40.132937999999996],[-89.7376834,40.1329192],[-89.7372372,40.1328194],[-89.737014,40.132734299999996],[-89.7366322,40.132535000000004],[-89.7364955,40.132498],[-89.7363226,40.1324059],[-89.7360347,40.132332],[-89.7357847,40.132302100000004],[-89.7356769,40.1323037],[-89.7354164,40.1323553],[-89.7352781,40.1323845],[-89.7348576,40.1324378],[-89.7345092,40.1325461],[-89.7342545,40.1326915],[-89.7341486,40.1327427],[-89.7338868,40.1329378],[-89.7336773,40.133188000000004],[-89.7336166,40.1333261],[-89.7335759,40.1335124],[-89.7335801,40.133678],[-89.7336164,40.133781400000004],[-89.7338582,40.1340597],[-89.7340978,40.1342275],[-89.7342275,40.134292099999996],[-89.7344506,40.1343607],[-89.7351254,40.1345291],[-89.7352262,40.1345716],[-89.7354351,40.1346954],[-89.7354946,40.1347505],[-89.7355544,40.134887],[-89.7355261,40.135025],[-89.7355138,40.1350857],[-89.7354655,40.1351631],[-89.7354368,40.1351921],[-89.735186,40.135452],[-89.734996,40.1356125],[-89.7348204,40.1357963],[-89.734765,40.1358847],[-89.7345436,40.1363378],[-89.7344804,40.1367725],[-89.7342198,40.1373415],[-89.7341017,40.137512900000004],[-89.7336662,40.1379139],[-89.733467,40.1380095],[-89.7332316,40.1380444],[-89.7329672,40.1380201],[-89.7325732,40.137920199999996],[-89.7322132,40.1377815],[-89.7318317,40.1376746],[-89.7314789,40.137547],[-89.7314067,40.1374713],[-89.7312655,40.1371914],[-89.7311497,40.1364024],[-89.7310443,40.1360673],[-89.7309322,40.1358937],[-89.7307788,40.1357132],[-89.7306562,40.1356044],[-89.7305266,40.1355619],[-89.7303828,40.1355636],[-89.7301926,40.1356536],[-89.7299686,40.1358873],[-89.7299135,40.136064],[-89.7298739,40.1365912],[-89.7296493,40.1371822],[-89.7294421,40.1375855],[-89.729175,40.137819199999996],[-89.7289345,40.1379314],[-89.7285933,40.1380507],[-89.7282182,40.1382639],[-89.7279872,40.1385403],[-89.7278907,40.1387227],[-89.7278972,40.139041399999996],[-89.7279262,40.1391131],[-89.7281465,40.1394079],[-89.7286571,40.1399465],[-89.7288487,40.1402676],[-89.7289539,40.140553],[-89.7289891,40.140855099999996],[-89.7289669,40.141229100000004],[-89.7289088,40.1416086],[-89.7288554,40.1417578],[-89.7287999,40.1418407],[-89.7283645,40.1422844],[-89.7281385,40.1424353],[-89.7278763,40.1425475],[-89.72742,40.142651900000004],[-89.72698510000001,40.142701],[-89.726692,40.1427085],[-89.7265284,40.142695],[-89.7261756,40.1425715],[-89.7258805,40.1424975],[-89.725751,40.1424826],[-89.7254436,40.142508],[-89.72499619999999,40.1425848],[-89.7244875,40.142612],[-89.7238313,40.1426242],[-89.7230939,40.1425608],[-89.7223279,40.1425305],[-89.7220833,40.1424896],[-89.7219753,40.1424525],[-89.7218671,40.1423768],[-89.7217929,40.1422017],[-89.7217885,40.1419644],[-89.7219259,40.1416399],[-89.7221262,40.1413125],[-89.7222492,40.1409659],[-89.7221349,40.1406474],[-89.7220627,40.1405606],[-89.7219024,40.140463],[-89.7216864,40.140377799999996],[-89.7212009,40.1403773],[-89.720915,40.140336500000004],[-89.7206127,40.1402625],[-89.7202189,40.140245300000004],[-89.7200194,40.1402747],[-89.7198198,40.1402613],[-89.719419,40.1403034],[-89.7190058,40.1404063],[-89.7183902,40.1407261],[-89.7182503,40.1408437],[-89.7178508,40.1412984],[-89.7177163,40.141398],[-89.7174685,40.1415116],[-89.7169639,40.1416974],[-89.7167594,40.1418316],[-89.7166356,40.1419284],[-89.7163935,40.1421165],[-89.7163164,40.142199500000004],[-89.7160999,40.14252],[-89.7159213,40.1429011],[-89.7158679,40.1430778],[-89.7157212,40.1433044],[-89.715567,40.1434495],[-89.7152422,40.143644699999996],[-89.7151147,40.1436905],[-89.7149278,40.1437308],[-89.7146851,40.143723],[-89.7144638,40.1436861],[-89.7141399,40.143597],[-89.7139887,40.1435324],[-89.7136049,40.1432779],[-89.7133218,40.1430121],[-89.7132047,40.1429419],[-89.7129167,40.1428348],[-89.712566,40.1427885],[-89.7123521,40.142791700000004],[-89.7122442,40.1428029],[-89.7119533,40.1429111],[-89.7118762,40.1429719],[-89.7117849,40.143099],[-89.7117335,40.143353],[-89.711774,40.143655100000004],[-89.7118522,40.1439613],[-89.7118691,40.1441861],[-89.7119978,40.1445309],[-89.7120308,40.1447295],[-89.7120186,40.1448551],[-89.7119458,40.1451809],[-89.711637,40.145903000000004],[-89.7115743,40.1459818],[-89.711341,40.1461381],[-89.7111148,40.1462338],[-89.7105166,40.1464266],[-89.7094413,40.1469873],[-89.7090857,40.1471177],[-89.7089005,40.1471249],[-89.7086918,40.1470839],[-89.7084306,40.1469215],[-89.70803,40.146442],[-89.7077017,40.1460935],[-89.7076349,40.1460067],[-89.7075897,40.1458964],[-89.707573,40.1457488],[-89.7075926,40.1456715],[-89.7078316,40.1450378],[-89.7078705,40.1448224],[-89.7079383,40.1446402],[-89.7080434,40.1437045],[-89.7079504,40.143282400000004],[-89.7078022,40.1430095],[-89.7076851,40.1429228],[-89.7076059,40.1428912],[-89.7072839,40.1428338],[-89.7070411,40.1428314],[-89.7066475,40.1428625],[-89.705386,40.143079900000004],[-89.7050282,40.1430833],[-89.7048573,40.1430519],[-89.7046917,40.142998399999996],[-89.7045385,40.1428744],[-89.7044952,40.1428138],[-89.7044046,40.1425628],[-89.7044097,40.14248],[-89.7045473,40.142192800000004],[-89.7047166,40.1416682],[-89.704743,40.1414874],[-89.7047317,40.141294200000004],[-89.704679,40.1411136],[-89.704466,40.14082],[-89.704284,40.1407003],[-89.7040753,40.1406372],[-89.7037894,40.1406128],[-89.703669,40.1406351],[-89.7032989,40.1407324],[-89.7029505,40.1408682],[-89.702268,40.1410956],[-89.701799,40.141199900000004],[-89.7012893,40.141485],[-89.7011547,40.1415805],[-89.7010221,40.1417187],[-89.7006757,40.1419469],[-89.7002626,40.1420897],[-89.7001206,40.1421024],[-89.6999787,40.1421413],[-89.6991233,40.1422931],[-89.6980591,40.1423432],[-89.6977372,40.1423189],[-89.69747100000001,40.142266899999996],[-89.6971759,40.1421763],[-89.6969382,40.1420415],[-89.6967869,40.14197],[-89.6966141,40.1418917],[-89.69636009999999,40.1417072],[-89.6961492,40.1415116],[-89.6957416,40.1410818],[-89.6954876,40.1408863],[-89.6953652,40.1408216],[-89.6950125,40.140727],[-89.6948129,40.1407287],[-89.6947123,40.1407468],[-89.6944788,40.1408369],[-89.6943228,40.1409544],[-89.69407,40.1412087],[-89.69384289999999,40.1416506],[-89.6937175,40.1418233],[-89.6933302,40.1421896],[-89.6932242,40.1422298],[-89.6927103,40.1423341],[-89.6922774,40.1424866],[-89.6918541,40.1428308],[-89.6916999,40.1430036],[-89.69148,40.1434565],[-89.6914555,40.1436759],[-89.6915245,40.1439338],[-89.6917664,40.144277],[-89.6917776,40.1444371],[-89.6916811,40.1446635],[-89.6913512,40.144980000000004],[-89.6911178,40.145125300000004],[-89.6908342,40.1452706],[-89.6903438,40.1454466],[-89.6901587,40.1454759],[-89.6898799,40.145457],[-89.6896136,40.145388499999996],[-89.6892341,40.1453201],[-89.6888764,40.1453469],[-89.6885475,40.1453943],[-89.6883428,40.1455175],[-89.6879625,40.145823],[-89.6872695,40.146198],[-89.6871492,40.146282400000004],[-89.6868892,40.146527],[-89.6866776,40.1467536],[-89.6864771,40.1470699],[-89.6864302,40.1476854],[-89.6863132,40.1482968],[-89.6863749,40.148532700000004],[-89.6865252,40.1489326],[-89.6866016,40.1492553],[-89.6866402,40.1495685],[-89.6866605,40.1497492],[-89.6865855,40.1499315],[-89.6863058,40.1502534],[-89.6861568,40.150342],[-89.6857383,40.1504958],[-89.6851039,40.1506223],[-89.6849908,40.1506956],[-89.6849519,40.1509537],[-89.6848626,40.1511746],[-89.6845326,40.1515187],[-89.6844288,40.1516955],[-89.6843825,40.1518556],[-89.6843919,40.1520253],[-89.6844444,40.1521522],[-89.6845185,40.1522721],[-89.6845978,40.1523534],[-89.6847365,40.1524511],[-89.685003,40.1525859],[-89.6853126,40.1526972],[-89.6855162,40.1528501],[-89.68558110000001,40.1529258],[-89.6856768,40.1530678],[-89.6858705,40.1535546],[-89.6858869,40.1536208],[-89.685855,40.1538071],[-89.6857636,40.1539356],[-89.6856936,40.1539798],[-89.6856217,40.1539965],[-89.6854365,40.154003700000004],[-89.6852495,40.1539736],[-89.6850623,40.1539146],[-89.6849058,40.1538997],[-89.684762,40.1539123],[-89.6846201,40.1539801],[-89.6845285,40.154041],[-89.6844248,40.1542509],[-89.6841596,40.1546004],[-89.6839694,40.1547718],[-89.6835941,40.1549407],[-89.6834429,40.1548926],[-89.6833615,40.1547355],[-89.6832854,40.1544886],[-89.6831805,40.1542583],[-89.6831442,40.1541549],[-89.68321710000001,40.153829200000004],[-89.6831678,40.1535657],[-89.6830431,40.1532927],[-89.6829619,40.1531893],[-89.6828159,40.153064],[-89.6827129,40.1528848],[-89.6826512,40.1526765],[-89.6826705,40.1524833],[-89.6826593,40.1523247],[-89.6825418,40.1520779],[-89.6821612,40.1516424],[-89.6817344,40.1513947],[-89.6815976,40.151335599999996],[-89.6814123,40.1513042],[-89.68081169999999,40.1512885],[-89.680711,40.151299699999996],[-89.6805548,40.1513731],[-89.6805569,40.1515111],[-89.6806547,40.1517565],[-89.6806783,40.1518448],[-89.6806731,40.1519331],[-89.6805961,40.1520436],[-89.6804872,40.1523639],[-89.6805253,40.1525059],[-89.6806714,40.152663000000004],[-89.680875,40.1528324],[-89.6812064,40.1530099],[-89.6815254,40.153286800000004],[-89.6817166,40.1535155],[-89.6817906,40.153641],[-89.6818124,40.1537127],[-89.6817876,40.1538603],[-89.681725,40.1539984],[-89.6816622,40.1540551],[-89.6812994,40.154206],[-89.6811306,40.1543125],[-89.681066,40.1543623],[-89.6808922,40.1545737],[-89.680844,40.1547283],[-89.6808503,40.1550746],[-89.6808113,40.155283],[-89.6806714,40.155444700000004],[-89.68044330000001,40.155540200000004],[-89.6803228,40.1555418],[-89.6800926,40.1555049],[-89.6797776,40.155419800000004],[-89.6786475,40.1550863],[-89.6780787,40.154876],[-89.6776611,40.1547221],[-89.6768496,40.1545163],[-89.6760164,40.1542775],[-89.6748829,40.1540363],[-89.6742588,40.1539779],[-89.6740016,40.1539742],[-89.6730985,40.1538141],[-89.6724332,40.1537985],[-89.67152,40.1539116],[-89.6712198,40.153981],[-89.6709379,40.1541428],[-89.6706687,40.1543654],[-89.6705575,40.1544883],[-89.6703521,40.1550502],[-89.6703295,40.1553634],[-89.6703357,40.1556987],[-89.6702763,40.1564136],[-89.6702299,40.1565516],[-89.6699237,40.1570667],[-89.6698147,40.157369],[-89.6696894,40.1575803],[-89.6695219,40.1582084],[-89.669492,40.1585051],[-89.6695066,40.1585768],[-89.6696547,40.158833200000004],[-89.6697072,40.1589863],[-89.6697401,40.1592001],[-89.6697081,40.1593658],[-89.6695632,40.1596695],[-89.6693257,40.160386],[-89.6692003,40.1605848],[-89.66901730000001,40.16073],[-89.6689382,40.1607577],[-89.6687315,40.1607828],[-89.6684886,40.1607735],[-89.6682172,40.1608043],[-89.66787360000001,40.1607909],[-89.6676218,40.1607499],[-89.6672708,40.160631699999996],[-89.6663639,40.1603998],[-89.6659699,40.1603328],[-89.6655595,40.1601774],[-89.6654514,40.1601127],[-89.6651994,40.1600275],[-89.6647026,40.1598075],[-89.6629921,40.1589447],[-89.6620377,40.158399599999996],[-89.6615387,40.1580485],[-89.6612341,40.1577481],[-89.6609904,40.1573552],[-89.6609298,40.156773],[-89.6607272,40.1562641],[-89.6604134,40.1559003],[-89.6603125,40.1558135],[-89.6601685,40.1557212],[-89.6599885,40.1556511],[-89.6599021,40.1556305],[-89.6596935,40.1556322],[-89.6593593,40.155729199999996],[-89.6591543,40.1557612],[-89.6588182,40.1558169],[-89.65856840000001,40.1558752],[-89.6574349,40.15643],[-89.6570812,40.156665000000004],[-89.6565999,40.1569499],[-89.6562925,40.1570193],[-89.6557782,40.157002],[-89.6554038,40.156863200000004],[-89.654797,40.15649],[-89.6546386,40.156430900000004],[-89.6545091,40.156399300000004],[-89.6541008,40.1563874],[-89.6533973,40.156191],[-89.6531938,40.1560561],[-89.65262799999999,40.1555449],[-89.6522281,40.155235],[-89.6518464,40.155025699999996],[-89.6517383,40.1549431],[-89.6516069,40.1548839],[-89.6514864,40.154857899999996],[-89.6513929,40.1548649],[-89.6511953,40.1549769],[-89.6510895,40.1551095],[-89.6509786,40.155347],[-89.6509342,40.155606399999996],[-89.6508395,40.1558922],[-89.6505332,40.1564445],[-89.6504137,40.1569303],[-89.6502347,40.1572727],[-89.65008040000001,40.157444],[-89.6498326,40.1576223],[-89.6495396,40.1576751],[-89.6492824,40.1576506],[-89.6487785,40.1574843],[-89.648584,40.1573493],[-89.6484308,40.1571867],[-89.6482324,40.1569193],[-89.6481131,40.1566448],[-89.6479456,40.1556806],[-89.6479322,40.1552846],[-89.6477893,40.1548957],[-89.6476864,40.1546874],[-89.6474611,40.1544752],[-89.6471712,40.154281],[-89.6467641,40.153933800000004],[-89.6463752,40.1537177],[-89.6462149,40.1536034],[-89.645999,40.1535181],[-89.6458839,40.1535086],[-89.6453787,40.1535906],[-89.6441931,40.1541412],[-89.6438516,40.1542161],[-89.643402,40.154225],[-89.6431503,40.1542115],[-89.6430351,40.1541744],[-89.6428139,40.1541484],[-89.642706,40.154161],[-89.6421917,40.1541547],[-89.6418358,40.1542089],[-89.6404287,40.154700399999996],[-89.6402256,40.1547393],[-89.6399363,40.1548266],[-89.6394332,40.1550231],[-89.6393326,40.155079799999996],[-89.6392193,40.1551034],[-89.6388615,40.155106599999996],[-89.63853950000001,40.155032399999996],[-89.6383307,40.1549416],[-89.6382567,40.1548327],[-89.6381592,40.1545913],[-89.6381572,40.154486500000004],[-89.6382322,40.154261500000004],[-89.6382499,40.1540904],[-89.6382241,40.1537937],[-89.6382284,40.1532446],[-89.6381668,40.1529866],[-89.6380927,40.152828],[-89.6379016,40.1525495],[-89.6377214,40.1523924],[-89.6375468,40.1523002],[-89.6373813,40.1522411],[-89.6371168,40.1521724],[-89.6369369,40.1521478],[-89.636644,40.152199100000004],[-89.63638159999999,40.1522905],[-89.6360206,40.1524965],[-89.6358466,40.152752],[-89.6357087,40.1530281],[-89.6356513,40.1530999],[-89.6353929,40.153372],[-89.6351936,40.1535061],[-89.634782,40.1535921],[-89.6344222,40.1535511],[-89.6342062,40.1534051],[-89.6340963,40.1532962],[-89.6337643,40.152717100000004],[-89.633685,40.1526358],[-89.6333375,40.1523864],[-89.6331987,40.1522334],[-89.63311039999999,40.152096900000004],[-89.6330508,40.1519549],[-89.632873,40.1511658],[-89.6328125,40.1505671],[-89.6326909,40.149936600000004],[-89.6326709,40.1498428],[-89.6323996,40.1490001],[-89.6322641,40.1486718],[-89.6321541,40.148507800000004],[-89.631857,40.1482859],[-89.6317274,40.148232300000004],[-89.6316429,40.1482379],[-89.6315927,40.1482711],[-89.6315227,40.1483705],[-89.6312056,40.1489793],[-89.6310297,40.1491506],[-89.6308519,40.1492681],[-89.630532,40.1493374],[-89.630239,40.1493792],[-89.6298542,40.1493989],[-89.629437,40.1493373],[-89.6285681,40.1490981],[-89.628237,40.1489647],[-89.6281362,40.148905400000004],[-89.6279831,40.1487635],[-89.6278134,40.1484187],[-89.6277826,40.1482766],[-89.6277806,40.1481718],[-89.6280635,40.1475478],[-89.6281171,40.147367],[-89.6280822,40.146971],[-89.6280155,40.1468621],[-89.6279507,40.146812499999996],[-89.627706,40.1467106],[-89.6273299,40.146522],[-89.6271787,40.1464683],[-89.6269699,40.146349900000004],[-89.6268312,40.146219],[-89.6267553,40.1459624],[-89.6267461,40.1458465],[-89.6268015,40.1456974],[-89.6270258,40.1454599],[-89.6271513,40.1452224],[-89.627458,40.1448399],[-89.6275762,40.1446024],[-89.6275938,40.144354],[-89.62750869999999,40.1440257],[-89.627377,40.1438134],[-89.6273104,40.1437528],[-89.6272384,40.1436935],[-89.6270008,40.1435861],[-89.626571,40.1435135],[-89.6259881,40.1433375],[-89.6258587,40.1433224],[-89.6250783,40.1432874],[-89.6244922,40.1432963],[-89.6238268,40.1432183],[-89.6236991,40.1431853],[-89.6231773,40.1429265],[-89.62296309999999,40.1427998],[-89.6228406,40.1427006],[-89.6226409,40.142601400000004],[-89.6222987,40.142276100000004],[-89.6221637,40.1421769],[-89.6220412,40.142022499999996],[-89.6218138,40.141566],[-89.6216873,40.1411922],[-89.6215299,40.1405977],[-89.6212896,40.139955],[-89.6211831,40.1397122],[-89.6210263,40.1394654],[-89.6209505,40.1392971],[-89.6208188,40.1390089],[-89.6206836,40.1388103],[-89.6206276,40.138666900000004],[-89.6206131,40.1385952],[-89.6206559,40.1384144],[-89.6207277,40.1383205],[-89.6209278,40.1381119],[-89.6210292,40.138013799999996],[-89.6211079,40.137788799999996],[-89.6210947,40.137426],[-89.6210241,40.137188699999996],[-89.620907,40.1370026],[-89.6206962,40.136782],[-89.6204604,40.136611099999996],[-89.6198755,40.1362585],[-89.61956789999999,40.1361305],[-89.6191255,40.1360206],[-89.6187675,40.1358829],[-89.6185103,40.1358432],[-89.6183396,40.1358378],[-89.618131,40.1358532],[-89.6177087,40.135924],[-89.6173726,40.1359464],[-89.6171011,40.1359288],[-89.6168294,40.1358242],[-89.6163724,40.135579],[-89.615973,40.1353835],[-89.615151,40.1351511],[-89.6140576,40.1348955],[-89.6138939,40.1348349],[-89.6137787,40.1347523],[-89.6136653,40.1346309],[-89.6135589,40.134471],[-89.6134032,40.1338006],[-89.6133039,40.1335261],[-89.6130407,40.1330586],[-89.6118559,40.1318358],[-89.6115928,40.1314883],[-89.6111354,40.1309879],[-89.610851,40.1307288],[-89.6104152,40.1302393],[-89.6101812,40.1300629],[-89.609987,40.1299679],[-89.6096668,40.129846799999996],[-89.6094094,40.1296594],[-89.6092456,40.1294719],[-89.6091103,40.129202899999996],[-89.6090957,40.1290429],[-89.609189,40.128917200000004],[-89.6092824,40.1288785],[-89.6095124,40.1288355],[-89.6100409,40.1288143],[-89.6108133,40.1284907],[-89.6110287,40.1283153],[-89.6111362,40.128084799999996],[-89.6111594,40.1279647],[-89.6111519,40.1277715],[-89.611038,40.1273756],[-89.6109317,40.127248800000004],[-89.6105826,40.1269621],[-89.6103541,40.126829900000004],[-89.6102317,40.1267693],[-89.6098829,40.1266592],[-89.6096186,40.126624899999996],[-89.6092033,40.1266033],[-89.6084232,40.1266178],[-89.6078517,40.1266666],[-89.6069871,40.1266591],[-89.6066221,40.1266208],[-89.6064927,40.1265864],[-89.6060862,40.126421199999996],[-89.605872,40.1262724],[-89.6058288,40.1262172],[-89.6057728,40.1260034],[-89.60582289999999,40.1258599],[-89.6060668,40.1255368],[-89.6061887,40.1252952],[-89.6062406,40.125113],[-89.6062189,40.1250744],[-89.6058486,40.1250747],[-89.6059001,40.1246359],[-89.6059744,40.1238714],[-89.6059917,40.123424299999996],[-89.6057537,40.1229195],[-89.6052676,40.1224149],[-89.60439,40.1220432],[-89.6033832,40.121911600000004],[-89.6025277,40.1219289],[-89.60187379999999,40.1221889],[-89.6018385,40.1225918],[-89.6019506,40.1230526],[-89.6020412,40.1235299],[-89.6020593,40.123659599999996],[-89.6018907,40.123905300000004],[-89.6015925,40.1239774]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"MASON","CO_FIPS":125},"geometry":{"type":"Polygon","coordinates":[[[-89.9251879,40.4357588],[-89.9249477,40.4357556],[-89.9236368,40.4357368],[-89.9048885,40.4354806],[-89.8850955,40.4359519],[-89.8750229,40.4357082],[-89.8662229,40.4357329],[-89.8661796,40.4357275],[-89.8470319,40.4349764],[-89.8276747,40.4343181],[-89.8276727,40.4344726],[-89.8276734,40.4346133],[-89.8118055,40.4343442],[-89.7927476,40.4349444],[-89.7927115,40.43495],[-89.7726764,40.4350832],[-89.77263669999999,40.435084599999996],[-89.754356,40.4350727],[-89.7500842,40.4350707],[-89.735563,40.4352107],[-89.7170212,40.4354613],[-89.7168251,40.4211813],[-89.7168229,40.4210557],[-89.7168228,40.4210102],[-89.7165899,40.4064625],[-89.7163082,40.3918776],[-89.716031,40.377505],[-89.7159819,40.3750631],[-89.7159849,40.3737],[-89.7160638,40.3735288],[-89.7156949,40.3627488],[-89.7153922,40.3482118],[-89.7151291,40.3336622],[-89.7151272,40.3336305],[-89.7147998,40.3191871],[-89.6973971,40.3193208],[-89.6784099,40.3194433],[-89.6783594,40.3194434],[-89.6593849,40.3195974],[-89.6404355,40.3197469],[-89.624999,40.3198387],[-89.6217473,40.3198793],[-89.6217058,40.3198794],[-89.6029871,40.3201027],[-89.6027279,40.3055416],[-89.6024294,40.2911446],[-89.6024274,40.2910163],[-89.6021685,40.2765447],[-89.6018645,40.2619378],[-89.601597,40.2500419],[-89.6015842,40.2474577],[-89.6014622,40.2330023],[-89.6009712,40.2184188],[-89.6009333,40.2183871],[-89.6021518,40.2183695],[-89.6035899,40.2183572],[-89.6034615,40.2083113],[-89.6034595,40.2081761],[-89.603233,40.1938308],[-89.6028714,40.1792621],[-89.6025661,40.1649954],[-89.6025622,40.1648298],[-89.6025622,40.1647967],[-89.6022171,40.1502705],[-89.6022097,40.1501684],[-89.6019494,40.1357248],[-89.6016858,40.125088],[-89.6016031,40.1250867],[-89.6015925,40.1239774],[-89.6018907,40.123905300000004],[-89.6020593,40.123659599999996],[-89.6020412,40.1235299],[-89.6019506,40.1230526],[-89.6018385,40.1225918],[-89.60187379999999,40.1221889],[-89.6025277,40.1219289],[-89.6033832,40.121911600000004],[-89.60439,40.1220432],[-89.6052676,40.1224149],[-89.6057537,40.1229195],[-89.6059917,40.123424299999996],[-89.6059744,40.1238714],[-89.6059001,40.1246359],[-89.6058486,40.1250747],[-89.6062189,40.1250744],[-89.6062406,40.125113],[-89.6061887,40.1252952],[-89.6060668,40.1255368],[-89.60582289999999,40.1258599],[-89.6057728,40.1260034],[-89.6058288,40.1262172],[-89.605872,40.1262724],[-89.6060862,40.126421199999996],[-89.6064927,40.1265864],[-89.6066221,40.1266208],[-89.6069871,40.1266591],[-89.6078517,40.1266666],[-89.6084232,40.1266178],[-89.6092033,40.1266033],[-89.6096186,40.126624899999996],[-89.6098829,40.1266592],[-89.6102317,40.1267693],[-89.6103541,40.126829900000004],[-89.6105826,40.1269621],[-89.6109317,40.127248800000004],[-89.611038,40.1273756],[-89.6111519,40.1277715],[-89.6111594,40.1279647],[-89.6111362,40.128084799999996],[-89.6110287,40.1283153],[-89.6108133,40.1284907],[-89.6100409,40.1288143],[-89.6095124,40.1288355],[-89.6092824,40.1288785],[-89.609189,40.128917200000004],[-89.6090957,40.1290429],[-89.6091103,40.129202899999996],[-89.6092456,40.1294719],[-89.6094094,40.1296594],[-89.6096668,40.129846799999996],[-89.609987,40.1299679],[-89.6101812,40.1300629],[-89.6104152,40.1302393],[-89.610851,40.1307288],[-89.6111354,40.1309879],[-89.6115928,40.1314883],[-89.6118559,40.1318358],[-89.6130407,40.1330586],[-89.6133039,40.1335261],[-89.6134032,40.1338006],[-89.6135589,40.134471],[-89.6136653,40.1346309],[-89.6137787,40.1347523],[-89.6138939,40.1348349],[-89.6140576,40.1348955],[-89.615151,40.1351511],[-89.615973,40.1353835],[-89.6163724,40.135579],[-89.6168294,40.1358242],[-89.6171011,40.1359288],[-89.6173726,40.1359464],[-89.6177087,40.135924],[-89.618131,40.1358532],[-89.6183396,40.1358378],[-89.6185103,40.1358432],[-89.6187675,40.1358829],[-89.6191255,40.1360206],[-89.61956789999999,40.1361305],[-89.6198755,40.1362585],[-89.6204604,40.136611099999996],[-89.6206962,40.136782],[-89.620907,40.1370026],[-89.6210241,40.137188699999996],[-89.6210947,40.137426],[-89.6211079,40.137788799999996],[-89.6210292,40.138013799999996],[-89.6209278,40.1381119],[-89.6207277,40.1383205],[-89.6206559,40.1384144],[-89.6206131,40.1385952],[-89.6206276,40.138666900000004],[-89.6206836,40.1388103],[-89.6208188,40.1390089],[-89.6209505,40.1392971],[-89.6210263,40.1394654],[-89.6211831,40.1397122],[-89.6212896,40.139955],[-89.6215299,40.1405977],[-89.6216873,40.1411922],[-89.6218138,40.141566],[-89.6220412,40.142022499999996],[-89.6221637,40.1421769],[-89.6222987,40.142276100000004],[-89.6226409,40.142601400000004],[-89.6228406,40.1427006],[-89.62296309999999,40.1427998],[-89.6231773,40.1429265],[-89.6236991,40.1431853],[-89.6238268,40.1432183],[-89.6244922,40.1432963],[-89.6250783,40.1432874],[-89.6258587,40.1433224],[-89.6259881,40.1433375],[-89.626571,40.1435135],[-89.6270008,40.1435861],[-89.6272384,40.1436935],[-89.6273104,40.1437528],[-89.627377,40.1438134],[-89.62750869999999,40.1440257],[-89.6275938,40.144354],[-89.6275762,40.1446024],[-89.627458,40.1448399],[-89.6271513,40.1452224],[-89.6270258,40.1454599],[-89.6268015,40.1456974],[-89.6267461,40.1458465],[-89.6267553,40.1459624],[-89.6268312,40.146219],[-89.6269699,40.146349900000004],[-89.6271787,40.1464683],[-89.6273299,40.146522],[-89.627706,40.1467106],[-89.6279507,40.146812499999996],[-89.6280155,40.1468621],[-89.6280822,40.146971],[-89.6281171,40.147367],[-89.6280635,40.1475478],[-89.6277806,40.1481718],[-89.6277826,40.1482766],[-89.6278134,40.1484187],[-89.6279831,40.1487635],[-89.6281362,40.148905400000004],[-89.628237,40.1489647],[-89.6285681,40.1490981],[-89.629437,40.1493373],[-89.6298542,40.1493989],[-89.630239,40.1493792],[-89.630532,40.1493374],[-89.6308519,40.1492681],[-89.6310297,40.1491506],[-89.6312056,40.1489793],[-89.6315227,40.1483705],[-89.6315927,40.1482711],[-89.6316429,40.1482379],[-89.6317274,40.148232300000004],[-89.631857,40.1482859],[-89.6321541,40.148507800000004],[-89.6322641,40.1486718],[-89.6323996,40.1490001],[-89.6326709,40.1498428],[-89.6326909,40.149936600000004],[-89.6328125,40.1505671],[-89.632873,40.1511658],[-89.6330508,40.1519549],[-89.63311039999999,40.152096900000004],[-89.6331987,40.1522334],[-89.6333375,40.1523864],[-89.633685,40.1526358],[-89.6337643,40.152717100000004],[-89.6340963,40.1532962],[-89.6342062,40.1534051],[-89.6344222,40.1535511],[-89.634782,40.1535921],[-89.6351936,40.1535061],[-89.6353929,40.153372],[-89.6356513,40.1530999],[-89.6357087,40.1530281],[-89.6358466,40.152752],[-89.6360206,40.1524965],[-89.63638159999999,40.1522905],[-89.636644,40.152199100000004],[-89.6369369,40.1521478],[-89.6371168,40.1521724],[-89.6373813,40.1522411],[-89.6375468,40.1523002],[-89.6377214,40.1523924],[-89.6379016,40.1525495],[-89.6380927,40.152828],[-89.6381668,40.1529866],[-89.6382284,40.1532446],[-89.6382241,40.1537937],[-89.6382499,40.1540904],[-89.6382322,40.154261500000004],[-89.6381572,40.154486500000004],[-89.6381592,40.1545913],[-89.6382567,40.1548327],[-89.6383307,40.1549416],[-89.63853950000001,40.155032399999996],[-89.6388615,40.155106599999996],[-89.6392193,40.1551034],[-89.6393326,40.155079799999996],[-89.6394332,40.1550231],[-89.6399363,40.1548266],[-89.6402256,40.1547393],[-89.6404287,40.154700399999996],[-89.6418358,40.1542089],[-89.6421917,40.1541547],[-89.642706,40.154161],[-89.6428139,40.1541484],[-89.6430351,40.1541744],[-89.6431503,40.1542115],[-89.643402,40.154225],[-89.6438516,40.1542161],[-89.6441931,40.1541412],[-89.6453787,40.1535906],[-89.6458839,40.1535086],[-89.645999,40.1535181],[-89.6462149,40.1536034],[-89.6463752,40.1537177],[-89.6467641,40.153933800000004],[-89.6471712,40.154281],[-89.6474611,40.1544752],[-89.6476864,40.1546874],[-89.6477893,40.1548957],[-89.6479322,40.1552846],[-89.6479456,40.1556806],[-89.6481131,40.1566448],[-89.6482324,40.1569193],[-89.6484308,40.1571867],[-89.648584,40.1573493],[-89.6487785,40.1574843],[-89.6492824,40.1576506],[-89.6495396,40.1576751],[-89.6498326,40.1576223],[-89.65008040000001,40.157444],[-89.6502347,40.1572727],[-89.6504137,40.1569303],[-89.6505332,40.1564445],[-89.6508395,40.1558922],[-89.6509342,40.155606399999996],[-89.6509786,40.155347],[-89.6510895,40.1551095],[-89.6511953,40.1549769],[-89.6513929,40.1548649],[-89.6514864,40.154857899999996],[-89.6516069,40.1548839],[-89.6517383,40.1549431],[-89.6518464,40.155025699999996],[-89.6522281,40.155235],[-89.65262799999999,40.1555449],[-89.6531938,40.1560561],[-89.6533973,40.156191],[-89.6541008,40.1563874],[-89.6545091,40.156399300000004],[-89.6546386,40.156430900000004],[-89.654797,40.15649],[-89.6554038,40.156863200000004],[-89.6557782,40.157002],[-89.6562925,40.1570193],[-89.6565999,40.1569499],[-89.6570812,40.156665000000004],[-89.6574349,40.15643],[-89.65856840000001,40.1558752],[-89.6588182,40.1558169],[-89.6591543,40.1557612],[-89.6593593,40.155729199999996],[-89.6596935,40.1556322],[-89.6599021,40.1556305],[-89.6599885,40.1556511],[-89.6601685,40.1557212],[-89.6603125,40.1558135],[-89.6604134,40.1559003],[-89.6607272,40.1562641],[-89.6609298,40.156773],[-89.6609904,40.1573552],[-89.6612341,40.1577481],[-89.6615387,40.1580485],[-89.6620377,40.158399599999996],[-89.6629921,40.1589447],[-89.6647026,40.1598075],[-89.6651994,40.1600275],[-89.6654514,40.1601127],[-89.6655595,40.1601774],[-89.6659699,40.1603328],[-89.6663639,40.1603998],[-89.6672708,40.160631699999996],[-89.6676218,40.1607499],[-89.66787360000001,40.1607909],[-89.6682172,40.1608043],[-89.6684886,40.1607735],[-89.6687315,40.1607828],[-89.6689382,40.1607577],[-89.66901730000001,40.16073],[-89.6692003,40.1605848],[-89.6693257,40.160386],[-89.6695632,40.1596695],[-89.6697081,40.1593658],[-89.6697401,40.1592001],[-89.6697072,40.1589863],[-89.6696547,40.158833200000004],[-89.6695066,40.1585768],[-89.669492,40.1585051],[-89.6695219,40.1582084],[-89.6696894,40.1575803],[-89.6698147,40.157369],[-89.6699237,40.1570667],[-89.6702299,40.1565516],[-89.6702763,40.1564136],[-89.6703357,40.1556987],[-89.6703295,40.1553634],[-89.6703521,40.1550502],[-89.6705575,40.1544883],[-89.6706687,40.1543654],[-89.6709379,40.1541428],[-89.6712198,40.153981],[-89.67152,40.1539116],[-89.6724332,40.1537985],[-89.6730985,40.1538141],[-89.6740016,40.1539742],[-89.6742588,40.1539779],[-89.6748829,40.1540363],[-89.6760164,40.1542775],[-89.6768496,40.1545163],[-89.6776611,40.1547221],[-89.6780787,40.154876],[-89.6786475,40.1550863],[-89.6797776,40.155419800000004],[-89.6800926,40.1555049],[-89.6803228,40.1555418],[-89.68044330000001,40.155540200000004],[-89.6806714,40.155444700000004],[-89.6808113,40.155283],[-89.6808503,40.1550746],[-89.680844,40.1547283],[-89.6808922,40.1545737],[-89.681066,40.1543623],[-89.6811306,40.1543125],[-89.6812994,40.154206],[-89.6816622,40.1540551],[-89.681725,40.1539984],[-89.6817876,40.1538603],[-89.6818124,40.1537127],[-89.6817906,40.153641],[-89.6817166,40.1535155],[-89.6815254,40.153286800000004],[-89.6812064,40.1530099],[-89.680875,40.1528324],[-89.6806714,40.152663000000004],[-89.6805253,40.1525059],[-89.6804872,40.1523639],[-89.6805961,40.1520436],[-89.6806731,40.1519331],[-89.6806783,40.1518448],[-89.6806547,40.1517565],[-89.6805569,40.1515111],[-89.6805548,40.1513731],[-89.680711,40.151299699999996],[-89.68081169999999,40.1512885],[-89.6814123,40.1513042],[-89.6815976,40.151335599999996],[-89.6817344,40.1513947],[-89.6821612,40.1516424],[-89.6825418,40.1520779],[-89.6826593,40.1523247],[-89.6826705,40.1524833],[-89.6826512,40.1526765],[-89.6827129,40.1528848],[-89.6828159,40.153064],[-89.6829619,40.1531893],[-89.6830431,40.1532927],[-89.6831678,40.1535657],[-89.68321710000001,40.153829200000004],[-89.6831442,40.1541549],[-89.6831805,40.1542583],[-89.6832854,40.1544886],[-89.6833615,40.1547355],[-89.6834429,40.1548926],[-89.6835941,40.1549407],[-89.6839694,40.1547718],[-89.6841596,40.1546004],[-89.6844248,40.1542509],[-89.6845285,40.154041],[-89.6846201,40.1539801],[-89.684762,40.1539123],[-89.6849058,40.1538997],[-89.6850623,40.1539146],[-89.6852495,40.1539736],[-89.6854365,40.154003700000004],[-89.6856217,40.1539965],[-89.6856936,40.1539798],[-89.6857636,40.1539356],[-89.685855,40.1538071],[-89.6858869,40.1536208],[-89.6858705,40.1535546],[-89.6856768,40.1530678],[-89.68558110000001,40.1529258],[-89.6855162,40.1528501],[-89.6853126,40.1526972],[-89.685003,40.1525859],[-89.6847365,40.1524511],[-89.6845978,40.1523534],[-89.6845185,40.1522721],[-89.6844444,40.1521522],[-89.6843919,40.1520253],[-89.6843825,40.1518556],[-89.6844288,40.1516955],[-89.6845326,40.1515187],[-89.6848626,40.1511746],[-89.6849519,40.1509537],[-89.6849908,40.1506956],[-89.6851039,40.1506223],[-89.6857383,40.1504958],[-89.6861568,40.150342],[-89.6863058,40.1502534],[-89.6865855,40.1499315],[-89.6866605,40.1497492],[-89.6866402,40.1495685],[-89.6866016,40.1492553],[-89.6865252,40.1489326],[-89.6863749,40.148532700000004],[-89.6863132,40.1482968],[-89.6864302,40.1476854],[-89.6864771,40.1470699],[-89.6866776,40.1467536],[-89.6868892,40.146527],[-89.6871492,40.146282400000004],[-89.6872695,40.146198],[-89.6879625,40.145823],[-89.6883428,40.1455175],[-89.6885475,40.1453943],[-89.6888764,40.1453469],[-89.6892341,40.1453201],[-89.6896136,40.145388499999996],[-89.6898799,40.145457],[-89.6901587,40.1454759],[-89.6903438,40.1454466],[-89.6908342,40.1452706],[-89.6911178,40.145125300000004],[-89.6913512,40.144980000000004],[-89.6916811,40.1446635],[-89.6917776,40.1444371],[-89.6917664,40.144277],[-89.6915245,40.1439338],[-89.6914555,40.1436759],[-89.69148,40.1434565],[-89.6916999,40.1430036],[-89.6918541,40.1428308],[-89.6922774,40.1424866],[-89.6927103,40.1423341],[-89.6932242,40.1422298],[-89.6933302,40.1421896],[-89.6937175,40.1418233],[-89.69384289999999,40.1416506],[-89.69407,40.1412087],[-89.6943228,40.1409544],[-89.6944788,40.1408369],[-89.6947123,40.1407468],[-89.6948129,40.1407287],[-89.6950125,40.140727],[-89.6953652,40.1408216],[-89.6954876,40.1408863],[-89.6957416,40.1410818],[-89.6961492,40.1415116],[-89.69636009999999,40.1417072],[-89.6966141,40.1418917],[-89.6967869,40.14197],[-89.6969382,40.1420415],[-89.6971759,40.1421763],[-89.69747100000001,40.142266899999996],[-89.6977372,40.1423189],[-89.6980591,40.1423432],[-89.6991233,40.1422931],[-89.6999787,40.1421413],[-89.7001206,40.1421024],[-89.7002626,40.1420897],[-89.7006757,40.1419469],[-89.7010221,40.1417187],[-89.7011547,40.1415805],[-89.7012893,40.141485],[-89.701799,40.141199900000004],[-89.702268,40.1410956],[-89.7029505,40.1408682],[-89.7032989,40.1407324],[-89.703669,40.1406351],[-89.7037894,40.1406128],[-89.7040753,40.1406372],[-89.704284,40.1407003],[-89.704466,40.14082],[-89.704679,40.1411136],[-89.7047317,40.141294200000004],[-89.704743,40.1414874],[-89.7047166,40.1416682],[-89.7045473,40.142192800000004],[-89.7044097,40.14248],[-89.7044046,40.1425628],[-89.7044952,40.1428138],[-89.7045385,40.1428744],[-89.7046917,40.142998399999996],[-89.7048573,40.1430519],[-89.7050282,40.1430833],[-89.705386,40.143079900000004],[-89.7066475,40.1428625],[-89.7070411,40.1428314],[-89.7072839,40.1428338],[-89.7076059,40.1428912],[-89.7076851,40.1429228],[-89.7078022,40.1430095],[-89.7079504,40.143282400000004],[-89.7080434,40.1437045],[-89.7079383,40.1446402],[-89.7078705,40.1448224],[-89.7078316,40.1450378],[-89.7075926,40.1456715],[-89.707573,40.1457488],[-89.7075897,40.1458964],[-89.7076349,40.1460067],[-89.7077017,40.1460935],[-89.70803,40.146442],[-89.7084306,40.1469215],[-89.7086918,40.1470839],[-89.7089005,40.1471249],[-89.7090857,40.1471177],[-89.7094413,40.1469873],[-89.7105166,40.1464266],[-89.7111148,40.1462338],[-89.711341,40.1461381],[-89.7115743,40.1459818],[-89.711637,40.145903000000004],[-89.7119458,40.1451809],[-89.7120186,40.1448551],[-89.7120308,40.1447295],[-89.7119978,40.1445309],[-89.7118691,40.1441861],[-89.7118522,40.1439613],[-89.711774,40.143655100000004],[-89.7117335,40.143353],[-89.7117849,40.143099],[-89.7118762,40.1429719],[-89.7119533,40.1429111],[-89.7122442,40.1428029],[-89.7123521,40.142791700000004],[-89.712566,40.1427885],[-89.7129167,40.1428348],[-89.7132047,40.1429419],[-89.7133218,40.1430121],[-89.7136049,40.1432779],[-89.7139887,40.1435324],[-89.7141399,40.143597],[-89.7144638,40.1436861],[-89.7146851,40.143723],[-89.7149278,40.1437308],[-89.7151147,40.1436905],[-89.7152422,40.143644699999996],[-89.715567,40.1434495],[-89.7157212,40.1433044],[-89.7158679,40.1430778],[-89.7159213,40.1429011],[-89.7160999,40.14252],[-89.7163164,40.142199500000004],[-89.7163935,40.1421165],[-89.7166356,40.1419284],[-89.7167594,40.1418316],[-89.7169639,40.1416974],[-89.7174685,40.1415116],[-89.7177163,40.141398],[-89.7178508,40.1412984],[-89.7182503,40.1408437],[-89.7183902,40.1407261],[-89.7190058,40.1404063],[-89.719419,40.1403034],[-89.7198198,40.1402613],[-89.7200194,40.1402747],[-89.7202189,40.140245300000004],[-89.7206127,40.1402625],[-89.720915,40.140336500000004],[-89.7212009,40.1403773],[-89.7216864,40.140377799999996],[-89.7219024,40.140463],[-89.7220627,40.1405606],[-89.7221349,40.1406474],[-89.7222492,40.1409659],[-89.7221262,40.1413125],[-89.7219259,40.1416399],[-89.7217885,40.1419644],[-89.7217929,40.1422017],[-89.7218671,40.1423768],[-89.7219753,40.1424525],[-89.7220833,40.1424896],[-89.7223279,40.1425305],[-89.7230939,40.1425608],[-89.7238313,40.1426242],[-89.7244875,40.142612],[-89.72499619999999,40.1425848],[-89.7254436,40.142508],[-89.725751,40.1424826],[-89.7258805,40.1424975],[-89.7261756,40.1425715],[-89.7265284,40.142695],[-89.726692,40.1427085],[-89.72698510000001,40.142701],[-89.72742,40.142651900000004],[-89.7278763,40.1425475],[-89.7281385,40.1424353],[-89.7283645,40.1422844],[-89.7287999,40.1418407],[-89.7288554,40.1417578],[-89.7289088,40.1416086],[-89.7289669,40.141229100000004],[-89.7289891,40.140855099999996],[-89.7289539,40.140553],[-89.7288487,40.1402676],[-89.7286571,40.1399465],[-89.7281465,40.1394079],[-89.7279262,40.1391131],[-89.7278972,40.139041399999996],[-89.7278907,40.1387227],[-89.7279872,40.1385403],[-89.7282182,40.1382639],[-89.7285933,40.1380507],[-89.7289345,40.1379314],[-89.729175,40.137819199999996],[-89.7294421,40.1375855],[-89.7296493,40.1371822],[-89.7298739,40.1365912],[-89.7299135,40.136064],[-89.7299686,40.1358873],[-89.7301926,40.1356536],[-89.7303828,40.1355636],[-89.7305266,40.1355619],[-89.7306562,40.1356044],[-89.7307788,40.1357132],[-89.7309322,40.1358937],[-89.7310443,40.1360673],[-89.7311497,40.1364024],[-89.7312655,40.1371914],[-89.7314067,40.1374713],[-89.7314789,40.137547],[-89.7318317,40.1376746],[-89.7322132,40.1377815],[-89.7325732,40.137920199999996],[-89.7329672,40.1380201],[-89.7332316,40.1380444],[-89.733467,40.1380095],[-89.7336662,40.1379139],[-89.7341017,40.137512900000004],[-89.7342198,40.1373415],[-89.7344804,40.1367725],[-89.7345436,40.1363378],[-89.734765,40.1358847],[-89.7348204,40.1357963],[-89.734996,40.1356125],[-89.735186,40.135452],[-89.7354368,40.1351921],[-89.7354655,40.1351631],[-89.7355138,40.1350857],[-89.7355261,40.135025],[-89.7355544,40.134887],[-89.7354946,40.1347505],[-89.7354351,40.1346954],[-89.7352262,40.1345716],[-89.7351254,40.1345291],[-89.7344506,40.1343607],[-89.7342275,40.134292099999996],[-89.7340978,40.1342275],[-89.7338582,40.1340597],[-89.7336164,40.133781400000004],[-89.7335801,40.133678],[-89.7335759,40.1335124],[-89.7336166,40.1333261],[-89.7336773,40.133188000000004],[-89.7338868,40.1329378],[-89.7341486,40.1327427],[-89.7342545,40.1326915],[-89.7345092,40.1325461],[-89.7348576,40.1324378],[-89.7352781,40.1323845],[-89.7354164,40.1323553],[-89.7356769,40.1323037],[-89.7357847,40.132302100000004],[-89.7360347,40.132332],[-89.7363226,40.1324059],[-89.7364955,40.132498],[-89.7366322,40.132535000000004],[-89.737014,40.132734299999996],[-89.7372372,40.1328194],[-89.7376834,40.1329192],[-89.7379477,40.132937999999996],[-89.7381882,40.1328313],[-89.7384429,40.1326583],[-89.7385271,40.1325795],[-89.738833,40.1321373],[-89.739177,40.1318041],[-89.7394029,40.1316201],[-89.7395374,40.1315467],[-89.7396865,40.1315174],[-89.7399724,40.1315251],[-89.740431,40.1315752],[-89.7411918,40.1317048],[-89.741672,40.131754799999996],[-89.7420494,40.1317279],[-89.7421571,40.1317],[-89.7422343,40.1316599],[-89.7423472,40.131560300000004],[-89.7423954,40.1314719],[-89.7423788,40.131356],[-89.7421872,40.1310349],[-89.7419453,40.1307622],[-89.7416982,40.1305226],[-89.741521,40.1302111],[-89.7414612,40.1300691],[-89.7414426,40.1299105],[-89.7414567,40.1298166],[-89.7415534,40.1297061],[-89.7419447,40.129559],[-89.7421801,40.129533699999996],[-89.7426314,40.1295617],[-89.7430878,40.1295028],[-89.7433046,40.1292968],[-89.7434226,40.1291089],[-89.7434563,40.1289819],[-89.7436439,40.1286724],[-89.7437838,40.1285659],[-89.7439472,40.128536600000004],[-89.744163,40.1285458],[-89.7444222,40.1286418],[-89.7447104,40.1288082],[-89.7450746,40.12914],[-89.7453432,40.1293298],[-89.7457608,40.129489],[-89.7460683,40.1295298],[-89.7462175,40.1295281],[-89.7465678,40.129458400000004],[-89.7468371,40.1293626],[-89.7470362,40.129267],[-89.7471904,40.1291439],[-89.7473032,40.1290167],[-89.7474192,40.1287957],[-89.7475664,40.128233800000004],[-89.7477275,40.1280278],[-89.7478529,40.1279117],[-89.7483767,40.1276043],[-89.7486509,40.1273705],[-89.7491654,40.1269789],[-89.7492784,40.126934500000004],[-89.7494923,40.1269203],[-89.7496723,40.1269847],[-89.7497534,40.1270605],[-89.7499308,40.127399499999996],[-89.7500749,40.1274917],[-89.7502437,40.1274237],[-89.7504865,40.1274742],[-89.750807,40.1276074],[-89.750886,40.1275921],[-89.7509434,40.1275643],[-89.7511368,40.1273501],[-89.7513306,40.1272572],[-89.7514958,40.127225100000004],[-89.7525631,40.1271083],[-89.7527194,40.1270763],[-89.7528989,40.127016499999996],[-89.7532147,40.126841999999996],[-89.7536885,40.126639499999996],[-89.753789,40.1266186],[-89.7540102,40.126625000000004],[-89.7542387,40.1266963],[-89.7543053,40.126732000000004],[-89.754716,40.1269574],[-89.7551775,40.1273331],[-89.7553,40.1274046],[-89.7556995,40.1275155],[-89.7559711,40.127566],[-89.7560484,40.1275617],[-89.7562568,40.1275461],[-89.7570509,40.1274271],[-89.7573726,40.1274015],[-89.7578095,40.1274365],[-89.7580308,40.1274967],[-89.7582721,40.127618999999996],[-89.7584001,40.127707],[-89.7585426,40.1278502],[-89.7586835,40.1280389],[-89.759026,40.128281],[-89.7592403,40.1283923],[-89.7595607,40.1285144],[-89.7597461,40.1285651],[-89.7598884,40.128642],[-89.7599587,40.1287191],[-89.7600859,40.1290666],[-89.7601781,40.1292043],[-89.7603261,40.129369600000004],[-89.7605406,40.1295292],[-89.7608467,40.1296734],[-89.761032,40.1297075],[-89.7613466,40.129713699999996],[-89.7614904,40.1296982],[-89.7617202,40.1296218],[-89.7620287,40.129452799999996],[-89.7624102,40.1290863],[-89.7627869,40.1283886],[-89.7628584,40.128296],[-89.7630522,40.1281921],[-89.7631527,40.1281698],[-89.7636253,40.1281218],[-89.7637388,40.1281782],[-89.7641157,40.128519499999996],[-89.7642856,40.128762],[-89.7647833,40.1291596],[-89.7648841,40.129205],[-89.7649686,40.1292048],[-89.7650979,40.1291672],[-89.7652054,40.1290745],[-89.7654163,40.1287608],[-89.7655108,40.1285523],[-89.7655319,40.1284377],[-89.7656209,40.1282126],[-89.7656926,40.128157200000004],[-89.765892,40.128108499999996],[-89.7663215,40.1280993],[-89.7664079,40.1281156],[-89.7665143,40.1282216],[-89.7665131,40.1283637],[-89.7663146,40.1291107],[-89.7664196,40.1293091],[-89.7664557,40.129336699999996],[-89.7665835,40.1293819],[-89.7668136,40.1293828],[-89.7669555,40.1293548],[-89.7672355,40.1292355],[-89.7674438,40.1291923],[-89.7676579,40.1292318],[-89.7680865,40.1294365],[-89.7681854,40.129452799999996],[-89.7682429,40.1294527],[-89.768365,40.1294041],[-89.7684436,40.1292894],[-89.7684524,40.1292287],[-89.7683743,40.1290246],[-89.7680979,40.128672],[-89.7680777,40.1285562],[-89.7681493,40.128474600000004],[-89.7682211,40.1284413],[-89.76841519999999,40.1284367],[-89.7689064,40.1285653],[-89.7690215,40.128576100000004],[-89.7691006,40.1285718],[-89.7694237,40.128451],[-89.7696446,40.1284077],[-89.7697813,40.1284309],[-89.7699309,40.128529900000004],[-89.7701208,40.128833],[-89.7702978,40.129058900000004],[-89.7705312,40.1294447],[-89.7705588,40.1296047],[-89.7705635,40.1298903],[-89.7706201,40.1301054],[-89.7706907,40.1302267],[-89.770797,40.1302927],[-89.7708978,40.1303256],[-89.771119,40.1303651],[-89.7715127,40.1303614],[-89.7718112,40.1303952],[-89.7720271,40.130440300000004],[-89.77229,40.1305569],[-89.7723965,40.1306671],[-89.7724888,40.1308214],[-89.7725076,40.1310242],[-89.7724049,40.1314315],[-89.7724041,40.131684],[-89.7724531,40.1318163],[-89.7725452,40.1319155],[-89.772758,40.132075],[-89.7729435,40.1321643],[-89.7731575,40.1322052],[-89.7732007,40.1322148],[-89.7738372,40.1322395],[-89.77409420000001,40.1322182],[-89.77420910000001,40.1321848],[-89.7744747,40.132065600000004],[-89.7745248,40.1320158],[-89.7745979,40.131868],[-89.7745919,40.131719000000004],[-89.77455,40.131558999999996],[-89.7744648,40.131384],[-89.774246,40.1310533],[-89.7740485,40.1306674],[-89.7739805,40.130299199999996],[-89.7741034,40.1299967],[-89.7742124,40.129837800000004],[-89.7743199,40.129734],[-89.77464259999999,40.1295318],[-89.7749513,40.129400000000004],[-89.7762562,40.1289265],[-89.7766153,40.128818],[-89.7776392,40.1286238],[-89.7782895,40.1285381],[-89.7785122,40.1284838],[-89.7788995,40.1282262],[-89.7794989,40.127552800000004],[-89.7798286,40.1272954],[-89.7800097,40.127186],[-89.7803596,40.1270334],[-89.7808336,40.1268805],[-89.7810761,40.1268495],[-89.7815202,40.126883],[-89.7818207,40.1269554],[-89.7819701,40.1270116],[-89.7821612,40.127138099999996],[-89.7824233,40.1274976],[-89.7825793,40.1278546],[-89.7826884,40.1286091],[-89.7828418,40.1291924],[-89.782898,40.1293013],[-89.7830964,40.1294733],[-89.7832045,40.1295227],[-89.7834312,40.1295843],[-89.7836254,40.1296072],[-89.7837531,40.1296014],[-89.7841339,40.129537],[-89.7848216,40.1293532],[-89.7850713,40.1293044],[-89.7852366,40.1292888],[-89.7855584,40.1293004],[-89.7857365,40.129329],[-89.7859794,40.1293946],[-89.7861793,40.1294893],[-89.786421,40.1296764],[-89.7867838,40.1300467],[-89.7869533,40.130178799999996],[-89.7870398,40.1302186],[-89.7872754,40.130258],[-89.7876043,40.130242],[-89.7878412,40.1301435],[-89.7881066,40.12998],[-89.7886026,40.1295193],[-89.7890428,40.1290312],[-89.7894313,40.1286646],[-89.7895961,40.1285276],[-89.7898632,40.1283531],[-89.7901431,40.1282158],[-89.7904361,40.1282178],[-89.79054239999999,40.1282728],[-89.790692,40.1283883],[-89.7908131,40.128526],[-89.7908692,40.1286307],[-89.7909744,40.1288567],[-89.79108,40.1291821],[-89.7912011,40.1293364],[-89.791293,40.1293913],[-89.7914569,40.1294475],[-89.7916923,40.1294428],[-89.7917857,40.129426],[-89.7919005,40.1293719],[-89.7920169,40.129268100000004],[-89.7920599,40.1292128],[-89.7921326,40.1289767],[-89.7921622,40.1287517],[-89.7921417,40.1285751],[-89.792038,40.1282884],[-89.7919023,40.12809],[-89.7916721,40.1276311],[-89.7913531,40.1269999],[-89.7913167,40.1268952],[-89.7912847,40.1265324],[-89.7913217,40.1263625],[-89.7913946,40.1261761],[-89.7915391,40.1259232],[-89.7916518,40.125793200000004],[-89.7917985,40.1256218],[-89.792383,40.1250622],[-89.7926413,40.1249153],[-89.7928414,40.1248548],[-89.7930783,40.1247618],[-89.7932353,40.1246958],[-89.7935438,40.1245474],[-89.7936513,40.124465],[-89.7937158,40.1244097],[-89.7938089,40.124316300000004],[-89.7938876,40.124234],[-89.7940029,40.1240909],[-89.7940961,40.124008599999996],[-89.7941534,40.1239533],[-89.7942537,40.1238764],[-89.7943828,40.1238051],[-89.7944976,40.1237503],[-89.7945901,40.1237231],[-89.7947768,40.1236902],[-89.7948119,40.1236957],[-89.7949271,40.1237285],[-89.7950908,40.1237729],[-89.7952484,40.1238388],[-89.7953342,40.1239269],[-89.7953912,40.1240206],[-89.7954699,40.1241363],[-89.79554830000001,40.1242078],[-89.7956558,40.1243179],[-89.7957126,40.1243675],[-89.79579820000001,40.124428],[-89.7959127,40.1245056],[-89.7960127,40.1245606],[-89.7960632,40.1245991],[-89.7961704,40.1246706],[-89.7962273,40.1247201],[-89.7963057,40.1247861],[-89.7963635,40.1248412],[-89.7964204,40.124907300000004],[-89.7964701,40.1249624],[-89.7965061,40.1249954],[-89.7965269,40.1250229],[-89.7965765,40.1250614],[-89.7968064,40.1252147],[-89.7972134,40.1254096],[-89.7976991,40.1255036],[-89.7983208,40.1254289],[-89.79882190000001,40.125338],[-89.7993736,40.1253283],[-89.7996449,40.1253014],[-89.8000973,40.1251609],[-89.8001905,40.125105500000004],[-89.8002038,40.125062],[-89.8003283,40.124960200000004],[-89.8003856,40.1249159],[-89.8004358,40.1248668],[-89.8004857,40.124772899999996],[-89.800515,40.1246907],[-89.8005649,40.1246022],[-89.8006078,40.1245311],[-89.8006793,40.1244598],[-89.800716,40.1244211],[-89.8007732,40.1243492],[-89.8008305,40.1242946],[-89.8008735,40.1242503],[-89.8009379,40.1241791],[-89.8010095,40.1241189],[-89.8010956,40.12408],[-89.8011602,40.1240419],[-89.8012248,40.1240197],[-89.801303,40.124025],[-89.80144609999999,40.1240695],[-89.80149660000001,40.124119],[-89.8015535,40.1241906],[-89.8016032,40.1242512],[-89.8016889,40.1243227],[-89.8017251,40.1243778],[-89.8017891,40.1244218],[-89.8018747,40.124471299999996],[-89.8019466,40.1244821],[-89.8020686,40.1244218],[-89.8021329,40.124328500000004],[-89.8022188,40.1242407],[-89.8022482,40.1241744],[-89.8022552,40.1241254],[-89.8022691,40.1240315],[-89.802291,40.123905199999996],[-89.8023339,40.1238333],[-89.8023633,40.123783599999996],[-89.8024205,40.1237124],[-89.802521,40.1236631],[-89.8025999,40.1236298],[-89.8026349,40.1236138],[-89.8028218,40.1236023],[-89.8029504,40.1236193],[-89.8030791,40.1236741],[-89.8031215,40.123701600000004],[-89.803236,40.123795799999996],[-89.803293,40.123884000000004],[-89.8033574,40.1240046],[-89.8034076,40.1241921],[-89.803428,40.1243293],[-89.803414,40.124428699999996],[-89.8034424,40.1245439],[-89.8034634,40.1246266],[-89.8034925,40.1246983],[-89.803535,40.124764400000004],[-89.8035489,40.1248582],[-89.8035993,40.1248801],[-89.8036991,40.1248688],[-89.8038069,40.1248637],[-89.8039066,40.1248524],[-89.8040071,40.1248142],[-89.8040573,40.124792],[-89.8041864,40.1247262],[-89.8042797,40.1246824],[-89.8047237,40.124479199999996],[-89.8048098,40.1244293],[-89.804903,40.1243745],[-89.8050177,40.1243032],[-89.8051324,40.124231800000004],[-89.8052678,40.1241549],[-89.8053683,40.1241105],[-89.8054759,40.1240557],[-89.8055692,40.124023],[-89.8057263,40.1239847],[-89.8058916,40.1239629],[-89.8060561,40.123968],[-89.8061847,40.1239904],[-89.8063206,40.1240397],[-89.8064278,40.1240898],[-89.8064919,40.1241559],[-89.8065345,40.1242489],[-89.8066133,40.1243811],[-89.8066343,40.1244584],[-89.8066562,40.1245411],[-89.8067133,40.1246513],[-89.8067417,40.124761],[-89.8068058,40.1248325],[-89.8068419,40.1248545],[-89.8068985,40.1248606],[-89.8069991,40.1248383],[-89.8071138,40.1247614],[-89.8072501,40.1246955],[-89.807321,40.1246677],[-89.8075004,40.1245969],[-89.8076727,40.1245474],[-89.8077867,40.124514],[-89.8079591,40.1244756],[-89.8081091,40.1244538],[-89.808295,40.124432],[-89.8084244,40.1244158],[-89.8085385,40.12441],[-89.8086247,40.1244049],[-89.8087245,40.1244102],[-89.8088818,40.1244104],[-89.8089897,40.1244322],[-89.809068,40.1244548],[-89.8092111,40.1244931],[-89.8093254,40.124532099999996],[-89.8094612,40.1245538],[-89.8095691,40.1245653],[-89.8097551,40.1245648],[-89.8099624,40.1244939],[-89.8100844,40.124444600000004],[-89.8102136,40.1243835],[-89.8103426,40.1242955],[-89.8104286,40.1242298],[-89.810536,40.1241364],[-89.8106219,40.124043],[-89.810672,40.1239987],[-89.8107078,40.1239607],[-89.8107372,40.1238999],[-89.8107728,40.123828700000004],[-89.8108084,40.1237514],[-89.8108161,40.123652],[-89.8108157,40.1235754],[-89.8108091,40.1234926],[-89.8107167,40.1233328],[-89.810695,40.1233053],[-89.8106235,40.1231958],[-89.8105449,40.1231132],[-89.8105024,40.123036],[-89.8104383,40.12297],[-89.8103525,40.122887399999996],[-89.810195,40.1228375],[-89.8100663,40.1227992],[-89.8098946,40.1227768],[-89.8097866,40.1227488],[-89.8096014,40.1227217],[-89.8095078,40.1227102],[-89.8094511,40.1226938],[-89.809336,40.1226776],[-89.8092721,40.1226439],[-89.8091722,40.1226056],[-89.8090641,40.1225562],[-89.8090143,40.1224845],[-89.8089934,40.1224239],[-89.8089571,40.1223467],[-89.8089217,40.122275099999996],[-89.8088719,40.1221765],[-89.8088508,40.1220883],[-89.8088296,40.1219559],[-89.8087941,40.1218683],[-89.8087441,40.121736],[-89.8087079,40.1216699],[-89.8086797,40.1216037],[-89.8086659,40.1215375],[-89.8086946,40.121516],[-89.8087735,40.1214662],[-89.8088945,40.1214058],[-89.8090452,40.1213399],[-89.8091601,40.121307200000004],[-89.80921670000001,40.1213015],[-89.8093604,40.1212853],[-89.8094529,40.121274],[-89.8095679,40.1212578],[-89.8097179,40.1212526],[-89.8098681,40.1212632],[-89.8100543,40.1213021],[-89.81019739999999,40.1213514],[-89.8102758,40.121396000000004],[-89.8104046,40.1214674],[-89.8105119,40.1215444],[-89.810691,40.1216109],[-89.81087,40.121638000000004],[-89.8109986,40.121654899999996],[-89.8110984,40.1216822],[-89.8113135,40.1217431],[-89.8114278,40.121771100000004],[-89.8115204,40.1217819],[-89.8116642,40.1217932],[-89.8118287,40.1218093],[-89.8120787,40.1218259],[-89.8121938,40.1218484],[-89.8123935,40.1218872],[-89.8125229,40.1218924],[-89.8126444,40.1219203],[-89.8127732,40.1219917],[-89.8129156,40.1220742],[-89.8129949,40.1221291],[-89.8131156,40.1222013],[-89.813223,40.1222948],[-89.8133089,40.1223994],[-89.813366,40.1225207],[-89.81348009999999,40.122701899999996],[-89.81353730000001,40.1228342],[-89.8136155,40.123048499999996],[-89.8136801,40.123213899999996],[-89.81373669999999,40.123407],[-89.8137651,40.1235276],[-89.8138432,40.1237206],[-89.8138862,40.1238798],[-89.8139859,40.1240728],[-89.8140647,40.1241995],[-89.814157,40.1243428],[-89.8142643,40.124419700000004],[-89.8143717,40.1245078],[-89.8145219,40.124535],[-89.8146649,40.1245684],[-89.8148294,40.1245797],[-89.8149516,40.1245738],[-89.8151232,40.124552],[-89.8152876,40.1245302],[-89.8154808,40.1245303],[-89.815638,40.1245251],[-89.8157962,40.1245198],[-89.8159103,40.1245085],[-89.816054,40.1244922],[-89.8161681,40.1244919],[-89.81634700000001,40.1244922],[-89.8165044,40.124520000000004],[-89.8166331,40.124552800000004],[-89.8167618,40.1246083],[-89.8168834,40.1246687],[-89.8169619,40.124723700000004],[-89.8170619,40.1247897],[-89.8171557,40.1248563],[-89.8171981,40.1248893],[-89.8172694,40.124949900000004],[-89.817291,40.1249664],[-89.8173199,40.1249994],[-89.8173706,40.125075100000004],[-89.8175309,40.1251568],[-89.8178026,40.1252127],[-89.81811,40.125207700000004],[-89.8184391,40.1252427],[-89.8185811,40.1252423],[-89.8188398,40.1252099],[-89.8190982,40.125134700000004],[-89.8191431,40.1251132],[-89.8194601,40.1248632],[-89.8195243,40.1247637],[-89.8195606,40.1246319],[-89.8195674,40.124549],[-89.8195822,40.1244559],[-89.8195755,40.124351000000004],[-89.8195687,40.1242579],[-89.819554,40.1241862],[-89.819533,40.124109000000004],[-89.819547,40.1240213],[-89.8195619,40.1239495],[-89.8195903,40.1238729],[-89.819669,40.1237843],[-89.8197836,40.1236909],[-89.8198768,40.1236361],[-89.81996290000001,40.1235814],[-89.8200703,40.1234928],[-89.8201857,40.1233828],[-89.8202356,40.1232895],[-89.82023530000001,40.1232178],[-89.820243,40.1231301],[-89.8202217,40.1230033],[-89.8202366,40.1229156],[-89.8202506,40.1228328],[-89.8202647,40.1227727],[-89.8203156,40.122695300000004],[-89.82040860000001,40.1225964],[-89.8204516,40.1225742],[-89.8205521,40.122536],[-89.8206589,40.1224977],[-89.8207953,40.1224532],[-89.8209453,40.122431399999996],[-89.8211106,40.1224206],[-89.8212965,40.1223987],[-89.8214249,40.1223825],[-89.8215328,40.1223933],[-89.82164,40.1224378],[-89.8217472,40.122503800000004],[-89.8218753,40.122602799999996],[-89.8219468,40.122713],[-89.8219688,40.1228067],[-89.8220044,40.1229218],[-89.8220255,40.1230156],[-89.8220467,40.1231204],[-89.822075,40.1232245],[-89.8221394,40.123345799999996],[-89.8222034,40.1234008],[-89.8223185,40.1234012],[-89.8224469,40.1233732],[-89.8225761,40.1233349],[-89.8227115,40.12328],[-89.8228696,40.1232472],[-89.8229701,40.1232248],[-89.8231776,40.123198099999996],[-89.8233203,40.1231646],[-89.8234281,40.1231374],[-89.8235644,40.123087999999996],[-89.82370710000001,40.1230331],[-89.823829,40.1229783],[-89.8239295,40.1229394],[-89.8240227,40.1228736],[-89.8240223,40.122790800000004],[-89.8239874,40.1226425],[-89.8238726,40.1224938],[-89.82375880000001,40.1223782],[-89.8236586,40.1222792],[-89.8235441,40.1221856],[-89.8234511,40.1220921],[-89.8233725,40.122009500000004],[-89.8233084,40.1219434],[-89.8232442,40.1218553],[-89.8231941,40.1217175],[-89.8232016,40.1215967],[-89.8231805,40.1214919],[-89.8231944,40.1214035],[-89.8232524,40.121299199999996],[-89.8233376,40.1212666],[-89.8234957,40.1212503],[-89.8235954,40.121255500000004],[-89.8237386,40.1213213],[-89.8238603,40.1213879],[-89.8240101,40.1215145],[-89.824132,40.1216411],[-89.8242819,40.1217952],[-89.8244462,40.1219659],[-89.8245394,40.1221036],[-89.8246248,40.1222903],[-89.8247605,40.1224942],[-89.8248457,40.1226319],[-89.8249315,40.1227365],[-89.824996,40.1228799],[-89.825067,40.1230666],[-89.8251316,40.123243099999996],[-89.8251664,40.1233748],[-89.8252022,40.1235458],[-89.8252661,40.1237491],[-89.8253521,40.1238924],[-89.8254302,40.1240522],[-89.8254946,40.1241948],[-89.8255799,40.1243602],[-89.8256443,40.1244925],[-89.8256943,40.1246138],[-89.8257659,40.1247288],[-89.8258373,40.1248335],[-89.8258943,40.124894],[-89.8259303,40.1249105],[-89.8259727,40.1249435],[-89.8260088,40.1249765],[-89.8260521,40.1250102],[-89.8260728,40.1250212],[-89.8263268,40.1251405],[-89.8264342,40.1252402],[-89.8265478,40.1253172],[-89.8266974,40.1254065],[-89.8272752,40.1255774],[-89.8275757,40.125634500000004],[-89.8279479,40.125662399999996],[-89.8286902,40.125648],[-89.8289689,40.1256817],[-89.8290121,40.1256829],[-89.8293914,40.1256998],[-89.8296197,40.1256895],[-89.8299502,40.1256362],[-89.830187,40.1255431],[-89.8303231,40.1254502],[-89.830683,40.1251429],[-89.8307214,40.125095200000004],[-89.83084769999999,40.1248085],[-89.8309262,40.1246931],[-89.8309554,40.1245944],[-89.830955,40.1245171],[-89.8309913,40.1243907],[-89.8310419,40.1242588],[-89.831106,40.1241482],[-89.8311488,40.124066],[-89.8311852,40.123967300000004],[-89.8312286,40.1238347],[-89.8312713,40.1237469],[-89.8313355,40.1236481],[-89.8314431,40.1235871],[-89.831637,40.1235383],[-89.8320164,40.1235655],[-89.8321658,40.1236209],[-89.8322587,40.123686899999996],[-89.8324163,40.1237472],[-89.8325522,40.1238027],[-89.8326953,40.123835400000004],[-89.8328672,40.1238853],[-89.8330175,40.1239297],[-89.833203,40.1240065],[-89.8333605,40.1240619],[-89.8335613,40.1241441],[-89.8337252,40.1242106],[-89.8338684,40.1242709],[-89.8340188,40.1243374],[-89.8341117,40.1244089],[-89.8341975,40.1244969],[-89.8343121,40.124596],[-89.8343619,40.1246731],[-89.8344478,40.1247722],[-89.8344615,40.1248274],[-89.8344689,40.124865299999996],[-89.8344763,40.1249039],[-89.83449,40.1249425],[-89.8344972,40.124959000000004],[-89.8345046,40.1249866],[-89.8345118,40.1250031],[-89.8345218,40.1250217],[-89.8345582,40.1251168],[-89.8345862,40.1253362],[-89.8345924,40.1255072],[-89.8344948,40.1261395],[-89.8345426,40.1263643],[-89.8345788,40.1264138],[-89.8348136,40.1266464],[-89.8351763,40.1269434],[-89.8353549,40.1270712],[-89.8357243,40.1272481],[-89.8359961,40.1273371],[-89.8365612,40.1274652],[-89.8366818,40.127509],[-89.8369678,40.1275371],[-89.8371389,40.1276208],[-89.8372166,40.1277034],[-89.8372658,40.1278467],[-89.8373144,40.1282316],[-89.8372106,40.1286872],[-89.8371591,40.1288143],[-89.8370859,40.1292919],[-89.8370917,40.1293692],[-89.8371971,40.1296117],[-89.8373184,40.129788],[-89.8377229,40.1301622],[-89.8378599,40.130257],[-89.8382149,40.1304229],[-89.8390143,40.1306773],[-89.8392715,40.1307166],[-89.8396725,40.1307403],[-89.8400589,40.1307254],[-89.8403014,40.1306874],[-89.8406965,40.1306007],[-89.8409619,40.1304744],[-89.8411911,40.1302943],[-89.8413501,40.1300966],[-89.8415159,40.1298105],[-89.8415973,40.1295426],[-89.8417445,40.1287722],[-89.8417536,40.1284313],[-89.841807,40.1279538],[-89.841916,40.1274705],[-89.8421204,40.126987],[-89.8423435,40.126669],[-89.8425154,40.1265319],[-89.8426086,40.126487499999996],[-89.8427738,40.1264442],[-89.8431456,40.1263907],[-89.8432678,40.1263862],[-89.8442033,40.1265477],[-89.8448603,40.126730699999996],[-89.8455103,40.1269482],[-89.8459733,40.1271579],[-89.8464378,40.127307],[-89.8477291,40.1277903],[-89.8486984,40.1282386],[-89.8495042,40.128691599999996],[-89.8498752,40.1288354],[-89.851642,40.1298636],[-89.8524835,40.1302613],[-89.8530974,40.1304388],[-89.8532629,40.1304673],[-89.8536206,40.1304731],[-89.85447070000001,40.1304264],[-89.8546716,40.1303444],[-89.8548795,40.130229299999996],[-89.8553898,40.1298193],[-89.8558286,40.1295172],[-89.8562018,40.1293809],[-89.8566165,40.1292665],[-89.8569325,40.129202],[-89.8573459,40.1291925],[-89.8576765,40.1291598],[-89.8584769,40.1292498],[-89.8591393,40.1294286],[-89.8599247,40.129738],[-89.8605319,40.1300149],[-89.860746,40.1300487],[-89.8609684,40.1299556],[-89.8611543,40.1297633],[-89.8613643,40.1293514],[-89.8614215,40.1292919],[-89.8616166,40.1291271],[-89.8618747,40.1289856],[-89.8622417,40.128683699999996],[-89.8632165,40.1281094],[-89.8637764,40.1279132],[-89.864249,40.1278869],[-89.8644557,40.1278987],[-89.864785,40.1279542],[-89.86539,40.1281538],[-89.8659397,40.1284198],[-89.8662044,40.1285142],[-89.8664923,40.1285643],[-89.8666758,40.1285969],[-89.8670107,40.1287076],[-89.8671459,40.1287693],[-89.8674025,40.1290334],[-89.8678087,40.129353699999996],[-89.8679081,40.1294582],[-89.8679933,40.1295959],[-89.8680207,40.1296842],[-89.8680548,40.1300138],[-89.8680614,40.1302401],[-89.8679878,40.1305963],[-89.8679074,40.1306904],[-89.867669,40.1311562],[-89.8673667,40.1314358],[-89.8672514,40.1317384],[-89.8672216,40.1318861],[-89.8672553,40.1321399],[-89.8673538,40.132399],[-89.8674034,40.1326017],[-89.8675379,40.1328882],[-89.8678295,40.1332902],[-89.8682468,40.1340285],[-89.8685883,40.1343476],[-89.8688794,40.1346682],[-89.8690424,40.1348885],[-89.8693412,40.1352959],[-89.869673,40.1358248],[-89.8698292,40.1361223],[-89.8701421,40.1364911],[-89.8703407,40.1366395],[-89.8708548,40.1369718],[-89.8711396,40.137119999999996],[-89.8713973,40.1372199],[-89.8717826,40.1373263],[-89.8724751,40.1373986],[-89.8730772,40.1373678],[-89.873528,40.1372918],[-89.8739656,40.1370959],[-89.8745691,40.1366456],[-89.874777,40.1365318],[-89.874942,40.136465],[-89.87508389999999,40.1364328],[-89.8752954,40.1363121],[-89.8755049,40.1361597],[-89.8757285,40.1359478],[-89.8758088,40.1358386],[-89.8759987,40.1353992],[-89.8762238,40.1351211],[-89.8763856,40.1347922],[-89.876639,40.1344589],[-89.8768214,40.1342734],[-89.87716,40.134050200000004],[-89.8774327,40.1339472],[-89.8776462,40.133883],[-89.8786932,40.1336824],[-89.8794299,40.133611],[-89.8801076,40.1336102],[-89.8802858,40.1336552],[-89.8803489,40.1336936],[-89.8806696,40.1338071],[-89.8807688,40.1338675],[-89.8809597,40.133945600000004],[-89.8811312,40.1340678],[-89.8812706,40.1342454],[-89.8812612,40.1345034],[-89.8811724,40.1347065],[-89.8811529,40.1347411],[-89.8808876,40.135209700000004],[-89.8807963,40.1356102],[-89.8807796,40.1358475],[-89.8808631,40.1359963],[-89.8810816,40.1361736],[-89.8816738,40.1363152],[-89.8818951,40.1363448],[-89.8822007,40.136341099999996],[-89.8823373,40.136331],[-89.8825096,40.136272500000004],[-89.8828037,40.1361529],[-89.8831422,40.1359075],[-89.8836056,40.135504499999996],[-89.8839514,40.1352923],[-89.8841738,40.135200499999996],[-89.8846028,40.1350832],[-89.88496190000001,40.1350034],[-89.8850751,40.1349933],[-89.8854771,40.1348692],[-89.8855236,40.1348277],[-89.8856739,40.134692],[-89.8857293,40.1346407],[-89.8858829,40.1344664],[-89.8859845,40.1342963],[-89.8860286,40.134143],[-89.8860024,40.133961],[-89.8858367,40.133586199999996],[-89.8857242,40.133392],[-89.8855703,40.1331883],[-89.885507,40.1331319],[-89.8851747,40.1328446],[-89.8848852,40.1325185],[-89.8846161,40.1322904],[-89.8842017,40.1317867],[-89.8841742,40.1316985],[-89.8841566,40.131429499999996],[-89.8840623,40.130962],[-89.8840385,40.130566099999996],[-89.8839397,40.1299165],[-89.8839779,40.1296749],[-89.8840524,40.1294884],[-89.8841135,40.1291639],[-89.8842879,40.1288529],[-89.88447,40.1286122],[-89.8849331,40.1281692],[-89.8850909,40.1280941],[-89.8852847,40.1280342],[-89.8854553,40.1280033],[-89.885642,40.1279709],[-89.8860054,40.1280236],[-89.8870718,40.128421599999996],[-89.8873494,40.128567000000004],[-89.8876269,40.1286792],[-89.8878669,40.1288509],[-89.888071,40.1290337],[-89.888638,40.1294776],[-89.8893957,40.1299663],[-89.8898129,40.1303113],[-89.8899048,40.1303551],[-89.8902756,40.1304519],[-89.8911302,40.1305732],[-89.8913227,40.1306071],[-89.8914146,40.1306413],[-89.8916358,40.130663999999996],[-89.8917795,40.1306497],[-89.8923809,40.1305001],[-89.8929489,40.1301795],[-89.8933034,40.129923],[-89.8937337,40.129717400000004],[-89.8941556,40.1296222],[-89.8944646,40.1295853],[-89.8947647,40.129576],[-89.8949353,40.1295395],[-89.8958468,40.1292495],[-89.8962197,40.1290758],[-89.8966515,40.1288259],[-89.8969312,40.1286967],[-89.8974506,40.1283748],[-89.8978533,40.1280589],[-89.8980485,40.127933999999996],[-89.8983125,40.1278862],[-89.8987061,40.127878],[-89.89887,40.1279299],[-89.8993443,40.128212500000004],[-89.8998037,40.128695300000004],[-89.9004547,40.1296783],[-89.9006709,40.1300805],[-89.9008586,40.1305214],[-89.9009049,40.1307641],[-89.9012279,40.1312942],[-89.9014574,40.1318123],[-89.9018983,40.1325034],[-89.9021938,40.1329343],[-89.9025591,40.1333153],[-89.9029048,40.1337253],[-89.9030963,40.1338861],[-89.9031883,40.1339355],[-89.9036389,40.134145000000004],[-89.9041707,40.1343943],[-89.9049981,40.1347848],[-89.9055104,40.1350742],[-89.9057865,40.1352567],[-89.9060327,40.1355498],[-89.9063945,40.1362454],[-89.9069087,40.1368645],[-89.9073891,40.1372478],[-89.9076526,40.1374249],[-89.9082766,40.1377539],[-89.9084694,40.1378209],[-89.9086905,40.1378229],[-89.9088484,40.1377685],[-89.9089715,40.1376108],[-89.909023,40.1374961],[-89.9091426,40.137045900000004],[-89.90914599999999,40.1367161],[-89.9090948,40.1356427],[-89.90906269999999,40.1353793],[-89.9089876,40.1351478],[-89.9088952,40.1350211],[-89.9087326,40.1348823],[-89.9084566,40.134726],[-89.9079302,40.1344753],[-89.90734810000001,40.1342344],[-89.907029,40.134072700000004],[-89.9068448,40.133933999999996],[-89.906724,40.1338723],[-89.9064708,40.133617900000004],[-89.9063656,40.1334472],[-89.906312,40.133193500000004],[-89.9063955,40.1327213],[-89.9065357,40.1324034],[-89.9066371,40.1322292],[-89.906882,40.131999300000004],[-89.9069913,40.1319341],[-89.9074577,40.1317669],[-89.907772,40.1317148],[-89.9084355,40.131736000000004],[-89.9088434,40.1317221],[-89.9093146,40.1317467],[-89.9103259,40.1319254],[-89.9115287,40.1322524],[-89.9120561,40.1323761],[-89.9127544,40.1325075],[-89.9134313,40.1326776],[-89.9144059,40.1330261],[-89.9157365,40.1333815],[-89.9160843,40.133521099999996],[-89.9162485,40.1336212],[-89.91651949999999,40.133841000000004],[-89.9165954,40.1339042],[-89.9167276,40.1340693],[-89.9168758,40.1342082],[-89.9169814,40.1344175],[-89.9172299,40.13509],[-89.9173984,40.1353116],[-89.9175411,40.1354229],[-89.9178532,40.1356108],[-89.9180371,40.1356902],[-89.9181722,40.1357352],[-89.9184709,40.1357921],[-89.9189121,40.1359161],[-89.9190201,40.1359323],[-89.9192687,40.136022499999996],[-89.919788,40.1362732],[-89.9201921,40.136513199999996],[-89.9204397,40.1367234],[-89.9207277,40.1370825],[-89.92081,40.1373141],[-89.9208028,40.1379129],[-89.9207692,40.138298],[-89.9207955,40.1384801],[-89.9208319,40.1385572],[-89.9209442,40.138689299999996],[-89.9211426,40.1388003],[-89.9213136,40.1388411],[-89.9214126,40.1388463],[-89.9216912,40.138848100000004],[-89.9218205,40.1388269],[-89.9224234,40.1386288],[-89.9225309,40.1385636],[-89.9226685,40.138432],[-89.9230796,40.137885499999996],[-89.9230785,40.1378524],[-89.9232366,40.1375455],[-89.923349,40.1370953],[-89.9234025,40.1367391],[-89.923411,40.136645200000004],[-89.9233777,40.1365019],[-89.9234001,40.136332100000004],[-89.9235101,40.1361012],[-89.9236694,40.135982],[-89.9239133,40.1358845],[-89.9241988,40.135831100000004],[-89.9244289,40.135822],[-89.9245856,40.1358725],[-89.9248472,40.1360288],[-89.924925,40.1361169],[-89.9250087,40.1362656],[-89.9250563,40.1364144],[-89.9250554,40.136569],[-89.925,40.1369141],[-89.9249417,40.137084099999996],[-89.9248448,40.1373976],[-89.9248198,40.137722],[-89.9248247,40.1379469],[-89.9249263,40.1383812],[-89.9249683,40.1384914],[-89.9250517,40.138613899999996],[-89.9254547,40.1389408],[-89.9255813,40.1390784],[-89.9257847,40.1393991],[-89.9258401,40.1396473],[-89.9258875,40.1397575],[-89.9259655,40.1398676],[-89.9261081,40.1399568],[-89.9264198,40.1400688],[-89.9265549,40.1401028],[-89.9268841,40.1401431],[-89.9270693,40.1401507],[-89.9277199,40.140100000000004],[-89.9280988,40.140031],[-89.9286515,40.1398593],[-89.9290116,40.1396635],[-89.9291691,40.1395387],[-89.9293279,40.1393519],[-89.9295683,40.1389798],[-89.9298004,40.1387182],[-89.9301124,40.1382852],[-89.9302643,40.1381328],[-89.9304664,40.1379693],[-89.9309626,40.137681799999996],[-89.9315023,40.1374481],[-89.9319527,40.1373084],[-89.9322185,40.1372606],[-89.9324613,40.1372735],[-89.9329585,40.1374469],[-89.9337002,40.1376125],[-89.9345541,40.1378812],[-89.9347107,40.137911],[-89.9350252,40.1378905],[-89.9352689,40.1377599],[-89.9355703,40.137663599999996],[-89.9360728,40.1375238],[-89.9364732,40.1374492],[-89.9367658,40.1373694],[-89.9369885,40.137332799999996],[-89.9379464,40.1372892],[-89.938275,40.137220400000004],[-89.9389012,40.1370249],[-89.9390072,40.1370162],[-89.93931309999999,40.1370675],[-89.9398679,40.1372255],[-89.9402042,40.1372491],[-89.9405905,40.1372187],[-89.940833,40.1371764],[-89.9410627,40.137112099999996],[-89.9412921,40.1369981],[-89.9415373,40.1368302],[-89.9417766,40.1365726],[-89.9418722,40.1363488],[-89.9419015,40.1361513],[-89.9418051,40.1359682],[-89.9417055,40.1358582],[-89.9415228,40.1356808],[-89.941288,40.1354982],[-89.9409903,40.135331],[-89.9408624,40.1352914],[-89.9405721,40.1351518],[-89.9402873,40.1350452],[-89.9399308,40.1349499],[-89.9389822,40.1347672],[-89.9388905,40.134762],[-89.9384553,40.134741500000004],[-89.9379694,40.1346509],[-89.9375785,40.1345268],[-89.9373947,40.1344598],[-89.9371675,40.1343489],[-89.936996,40.1342378],[-89.9368133,40.134060399999996],[-89.9366935,40.1338774],[-89.936651,40.1336926],[-89.9365643,40.1333383],[-89.9366477,40.1328716],[-89.9367361,40.1326354],[-89.9369623,40.1322965],[-89.9371643,40.1321163],[-89.9374095,40.1319416],[-89.9379891,40.1317863],[-89.9382621,40.131749400000004],[-89.9383754,40.1317504],[-89.93868140000001,40.1318072],[-89.9388652,40.1318865],[-89.9395556,40.1321875],[-89.9399065,40.132239999999996],[-89.9401922,40.1322252],[-89.9403413,40.1321984],[-89.9409728,40.1320043],[-89.9412166,40.1318971],[-89.9415979,40.1316459],[-89.9418132,40.1315706],[-89.9418849,40.1315497],[-89.9421491,40.1315404],[-89.9423634,40.131590599999996],[-89.9425185,40.1316798],[-89.9427173,40.1318349],[-89.9428572,40.1320676],[-89.9429197,40.1322978],[-89.9429172,40.1324579],[-89.9428787,40.1326333],[-89.9425744,40.1336817],[-89.9425634,40.1339287],[-89.9425984,40.134061],[-89.9427956,40.1342659],[-89.942987,40.134388],[-89.9432788,40.134478],[-89.9434352,40.1344898],[-89.9439508,40.134421599999996],[-89.9440727,40.1343674],[-89.9442306,40.1343254],[-89.9444757,40.1341451],[-89.9447349,40.1339054],[-89.9448811,40.1337186],[-89.9449042,40.133679900000004],[-89.9449896,40.133533299999996],[-89.9450553,40.133413],[-89.9451475,40.1329352],[-89.9451507,40.1325833],[-89.9451316,40.1324178],[-89.9450057,40.1321203],[-89.9449866,40.1319382],[-89.9449102,40.1318005],[-89.9448142,40.1314145],[-89.9448441,40.1312999],[-89.9450831,40.131005099999996],[-89.9452077,40.1308128],[-89.9453452,40.1306715],[-89.9457334,40.1303762],[-89.9458698,40.1303453],[-89.945992,40.1303462],[-89.9461988,40.1303579],[-89.9463267,40.1303864],[-89.94699489999999,40.130595],[-89.9475645,40.130839800000004],[-89.9477704,40.130983900000004],[-89.9480031,40.1311072],[-89.9483787,40.1313679],[-89.9485979,40.1316389],[-89.9486661,40.1318967],[-89.9487045,40.1322774],[-89.9486283,40.132722],[-89.9486189,40.1329414],[-89.948552,40.1331556],[-89.9484982,40.1334635],[-89.948496,40.1336801],[-89.9484911,40.1340403],[-89.9485292,40.134375399999996],[-89.9486193,40.1346842],[-89.94872720000001,40.1352453],[-89.9487763,40.135339],[-89.9489102,40.1354723],[-89.9490726,40.1355614],[-89.9493087,40.1356516],[-89.949777,40.1357919],[-89.9499066,40.1358094],[-89.9500701,40.1357991],[-89.9503858,40.1356971],[-89.9506453,40.1355113],[-89.9507698,40.1352983],[-89.9508507,40.1350234],[-89.9509044,40.13471],[-89.9509529,40.1341551],[-89.9510667,40.1336772],[-89.9511122,40.1334866],[-89.951119,40.1328643],[-89.9511425,40.1326117],[-89.9512094,40.132392100000004],[-89.951291,40.1322179],[-89.9514499,40.1320586],[-89.9515932,40.1319836],[-89.9517298,40.1319789],[-89.9518,40.1319952],[-89.9521051,40.1321955],[-89.952219,40.1322944],[-89.9524796,40.132561100000004],[-89.9526683,40.1328253],[-89.9527308,40.133029300000004],[-89.9527706,40.1333548],[-89.9527467,40.1335466],[-89.9526882,40.1336752],[-89.952674,40.1337056],[-89.9526496,40.1338257],[-89.9526344,40.133974800000004],[-89.9526825,40.1341733],[-89.9529588,40.1349284],[-89.9532099,40.1353911],[-89.9534496,40.1357503],[-89.95363,40.1361304],[-89.9538925,40.1364123],[-89.9542378,40.1367007],[-89.9549415,40.137101],[-89.9550335,40.1371461],[-89.9552604,40.1372032],[-89.9554602,40.1372369],[-89.9557174,40.1372553],[-89.9563264,40.1371826],[-89.9567336,40.1370527],[-89.956986,40.136884699999996],[-89.9576375,40.1361633],[-89.9577762,40.135931],[-89.9578358,40.1357086],[-89.9578236,40.1354934],[-89.9578393,40.1354161],[-89.9580003,40.1350277],[-89.9580012,40.1348897],[-89.9580396,40.1347143],[-89.9581639,40.1344793],[-89.95828,40.1343643],[-89.9583802,40.1342935],[-89.9584377,40.134287799999996],[-89.9586663,40.1343338],[-89.958879,40.1344172],[-89.9589912,40.134534],[-89.9591163,40.1349571],[-89.9591284,40.1357105],[-89.9592013,40.1361352],[-89.959515,40.1368129],[-89.9596051,40.1371216],[-89.9597656,40.1374632],[-89.9599128,40.137706800000004],[-89.9599379,40.1379648],[-89.9599212,40.1381511],[-89.9599678,40.1384048],[-89.9600444,40.138575599999996],[-89.9603629,40.1388917],[-89.9605917,40.1389584],[-89.9607768,40.1389439],[-89.960985,40.1388893],[-89.9610567,40.1388628],[-89.9611424,40.1387755],[-89.9613019,40.1386935],[-89.9616218,40.1386854],[-89.9618002,40.1387468],[-89.96209089999999,40.1389361],[-89.9622176,40.1390625],[-89.9626896,40.1397533],[-89.9628509,40.1399473],[-89.9629709,40.1401455],[-89.9630535,40.1404046],[-89.9630477,40.140871000000004],[-89.9630178,40.1409815],[-89.9629533,40.141553],[-89.9628198,40.142024],[-89.96280110000001,40.1424587],[-89.9628272,40.142591100000004],[-89.9629804,40.1429272],[-89.9630657,40.143048300000004],[-89.9632298,40.1431152],[-89.9634581,40.1431171],[-89.9638731,40.1430699],[-89.9640868,40.1430277],[-89.9642734,40.142969],[-89.9645017,40.1429585],[-89.9647301,40.1429769],[-89.9650506,40.143044599999996],[-89.9655437,40.1431089],[-89.9663939,40.1430711],[-89.966737,40.1430283],[-89.9669665,40.142930899999996],[-89.9670972,40.1428558],[-89.9673707,40.142620199999996],[-89.96799730000001,40.142212],[-89.9682913,40.1420881],[-89.9685336,40.142034699999996],[-89.96894879999999,40.1420151],[-89.9691129,40.1420765],[-89.969609,40.1423381],[-89.9697875,40.142399499999996],[-89.9699439,40.1424072],[-89.9701091,40.1423748],[-89.9703602,40.142288199999996],[-89.9705538,40.1421909],[-89.9708575,40.1419013],[-89.9710333,40.1415887],[-89.9711085,40.1412656],[-89.9710962,40.1410448],[-89.9710467,40.1409015],[-89.9706913,40.1401965],[-89.9705154,40.139975],[-89.9699566,40.1394819],[-89.9696906,40.1389641],[-89.9696226,40.1387546],[-89.9695874,40.1385892],[-89.9696039,40.1383753],[-89.9696865,40.138089300000004],[-89.969788,40.1379523],[-89.9700417,40.1377071],[-89.9702209,40.1376208],[-89.9705277,40.1375396],[-89.9708151,40.137491499999996],[-89.9710433,40.1374768],[-89.971144,40.1374888],[-89.971371,40.1375569],[-89.9716831,40.1377061],[-89.9719191,40.1377907],[-89.9722609,40.13781],[-89.9725266,40.137762],[-89.9727202,40.1376743],[-89.9730297,40.1374565],[-89.9731171,40.1373471],[-89.9732925,40.1369642],[-89.9734223,40.1367664],[-89.9739292,40.136226199999996],[-89.9743977,40.1358449],[-89.9745351,40.1357022],[-89.9747167,40.1354338],[-89.9747631,40.1351259],[-89.9747498,40.1350169],[-89.9746658,40.1348296],[-89.9745176,40.1347184],[-89.9743464,40.134651500000004],[-89.9740405,40.1346045],[-89.9731761,40.1346548],[-89.9730034,40.1346362],[-89.9726702,40.134552],[-89.9724203,40.1345392],[-89.9720898,40.1345874],[-89.9716832,40.1345352],[-89.9714487,40.134423],[-89.9713075,40.1342801],[-89.9712046,40.1339548],[-89.9711995,40.1337286],[-89.9712136,40.1336899],[-89.9712366,40.1336249],[-89.9713469,40.1334548],[-89.9714281,40.133235],[-89.9715294,40.133066299999996],[-89.97161679999999,40.132968],[-89.9717973,40.1327989],[-89.9721483,40.132614000000004],[-89.9723649,40.1324779],[-89.9725008,40.132368400000004],[-89.9728737,40.132211],[-89.973089,40.1321466],[-89.9738125,40.1320085],[-89.9747076,40.131729],[-89.9751181,40.1315562],[-89.9756184,40.1313831],[-89.9760432,40.1311937],[-89.9763012,40.1310685],[-89.976539,40.1308772],[-89.9766406,40.1307512],[-89.9766399,40.1306491],[-89.9766379,40.1303538],[-89.9765899,40.130180100000004],[-89.976506,40.1300038],[-89.9763517,40.1297823],[-89.9759711,40.1293285],[-89.9757578,40.1291569],[-89.9752964,40.128978000000004],[-89.9748267,40.128887399999996],[-89.9746055,40.1288745],[-89.9742634,40.1287958],[-89.9739211,40.1286896],[-89.9736595,40.128544399999996],[-89.9735383,40.1284386],[-89.9734965,40.1283725],[-89.973435,40.1280375],[-89.9734529,40.1277739],[-89.9734984,40.127581899999996],[-89.9735924,40.127406300000004],[-89.9736584,40.1273301],[-89.9740183,40.1271176],[-89.9745834,40.1269566],[-89.9753688,40.1269341],[-89.9762002,40.1268066],[-89.9766073,40.1266753],[-89.9780989,40.1250479],[-89.9786759,40.1250484],[-89.9793352,40.1255135],[-89.9796392,40.125813],[-89.9798495,40.126073],[-89.9800649,40.1265578],[-89.9800853,40.126646],[-89.9801984,40.1268884],[-89.9803038,40.127048099999996],[-89.9807969,40.127656],[-89.9810358,40.1278827],[-89.9813555,40.1281104],[-89.9815539,40.1282048],[-89.981952,40.1283288],[-89.98221530000001,40.1284464],[-89.9826366,40.1285481],[-89.9828147,40.1285653],[-89.9838669,40.1289184],[-89.9845918,40.129237],[-89.985184,40.1293615],[-89.9854628,40.1293797],[-89.985833,40.1293657],[-89.9859194,40.1293819],[-89.9861188,40.1293618],[-89.9863126,40.1293127],[-89.9865276,40.129215200000004],[-89.9867653,40.1290197],[-89.9868239,40.1289104],[-89.9868763,40.128701899999996],[-89.9868308,40.1283543],[-89.9865246,40.1275001],[-89.9864757,40.1274451],[-89.9862672,40.1269271],[-89.9862182,40.1268611],[-89.9861414,40.1266738],[-89.985902,40.1263698],[-89.9852741,40.1257777],[-89.9848444,40.1252468],[-89.9848051,40.1251449],[-89.9847694,40.1250512],[-89.9847258,40.1249927],[-89.9846995,40.1249528],[-89.9847019,40.1249093],[-89.9847194,40.1248437],[-89.9847441,40.1247836],[-89.9846865,40.1246445],[-89.9846361,40.124505299999996],[-89.9846098,40.1243281],[-89.9845817,40.1241682],[-89.9845728,40.1240578],[-89.9845336,40.123852400000004],[-89.984567,40.1236059],[-89.9846165,40.1234919],[-89.984646,40.1234704],[-89.9846644,40.1233937],[-89.9846698,40.123273],[-89.9848406,40.1230136],[-89.9849388,40.1229173],[-89.9850856,40.122839400000004],[-89.9854369,40.1226951],[-89.9856317,40.1226571],[-89.9857698,40.1226172],[-89.9859422,40.1225999],[-89.9860908,40.1226379],[-89.9862871,40.1227041],[-89.986387,40.1227237],[-89.9865467,40.1228106],[-89.9866921,40.122908699999996],[-89.9869613,40.1231035],[-89.9871035,40.1232678],[-89.9872113,40.1233923],[-89.9874159,40.1235963],[-89.9875516,40.1237324],[-89.9877026,40.123858],[-89.9878352,40.1239333],[-89.9879846,40.1239541],[-89.9880987,40.1239523],[-89.9882017,40.1239056],[-89.9883046,40.1238424],[-89.9883502,40.1238001],[-89.9884172,40.1237412],[-89.988485,40.1236719],[-89.9885392,40.123591],[-89.9886087,40.1234934],[-89.9886517,40.1233573],[-89.9886796,40.1232317],[-89.9886244,40.1230428],[-89.9885412,40.122847300000004],[-89.9883942,40.1226505],[-89.9882743,40.122465399999996],[-89.9881561,40.1222638],[-89.9880185,40.1218683],[-89.9879361,40.1216514],[-89.987889,40.121468],[-89.9878849,40.1212645],[-89.9878671,40.1209114],[-89.98784380000001,40.1206631],[-89.9878373,40.1205086],[-89.9878764,40.120306299999996],[-89.987889,40.1201855],[-89.9879217,40.119977],[-89.9879878,40.1197973],[-89.9880604,40.1196342],[-89.9881856,40.1194233],[-89.98831559999999,40.1191192],[-89.9883434,40.1189873],[-89.9884184,40.1187862],[-89.988518,40.118513899999996],[-89.9886903,40.118221399999996],[-89.9886637,40.1178903],[-89.988638,40.1176855],[-89.9886132,40.1174759],[-89.9884861,40.1171694],[-89.9883783,40.117033899999996],[-89.9882384,40.1169579],[-89.9881985,40.1169022],[-89.9881178,40.1168004],[-89.9880004,40.1167202],[-89.9878958,40.1166675],[-89.9877976,40.1166258],[-89.987602,40.1165432],[-89.98751730000001,40.1165132],[-89.9872977,40.1164623],[-89.98717,40.1164477],[-89.9869776,40.1164367],[-89.9867269,40.116434999999996],[-89.9864068,40.1164087],[-89.9861265,40.1164278],[-89.9859485,40.1164175],[-89.9856212,40.1163802],[-89.98537759999999,40.1163784],[-89.9851429,40.1163553],[-89.9848994,40.1163535],[-89.9846455,40.116285500000004],[-89.9844906,40.116242],[-89.984263,40.116202200000004],[-89.9839724,40.1161551],[-89.9836275,40.1160517],[-89.98345259999999,40.1159696],[-89.9831459,40.1158004],[-89.9829814,40.1156638],[-89.9828105,40.1155045],[-89.9826826,40.1153408],[-89.9825853,40.115161799999996],[-89.9825148,40.1149834],[-89.9824932,40.1148455],[-89.9824644,40.114712499999996],[-89.9825019,40.1145481],[-89.9825553,40.1143354],[-89.9825711,40.1141594],[-89.9826285,40.1140122],[-89.9827314,40.1138172],[-89.9828153,40.113732],[-89.9829588,40.1135707],[-89.9830809,40.113420500000004],[-89.9832421,40.113215600000004],[-89.983499,40.112931700000004],[-89.9836331,40.1128366],[-89.9837137,40.1127949],[-89.9838381,40.1127323],[-89.9840002,40.1126544],[-89.9841391,40.1125979],[-89.9842995,40.1125365],[-89.9845166,40.1124825],[-89.9847561,40.1124125],[-89.9848926,40.1124003],[-89.9850291,40.1123928],[-89.9852167,40.1123603],[-89.9853556,40.1123087],[-89.9854864,40.1122578],[-89.98563970000001,40.1122019],[-89.9857857,40.1121399],[-89.9859525,40.1120951],[-89.9861849,40.1120417],[-89.986315,40.1120122],[-89.9864882,40.1119846],[-89.9867181,40.111963599999996],[-89.9869815,40.1119826],[-89.9872186,40.1119678],[-89.9873048,40.1119536],[-89.987427,40.1119462],[-89.9875563,40.111933300000004],[-89.9877783,40.111940000000004],[-89.9880424,40.1119368],[-89.9882437,40.1119318],[-89.9884065,40.1119525],[-89.9886428,40.1119488],[-89.9887083,40.1119396],[-89.9889238,40.1119131],[-89.9891536,40.1118922],[-89.9894123,40.111872500000004],[-89.9894778,40.1118522],[-89.9897157,40.1118209],[-89.9899231,40.111810399999996],[-89.9902218,40.1118519],[-89.9904358,40.1118696],[-89.9906409,40.1119088],[-89.9908932,40.112009900000004],[-89.9910282,40.112041],[-89.9912358,40.1120416],[-89.991437,40.1120256],[-89.9916732,40.1120108],[-89.9919821,40.1119812],[-89.9922072,40.1119271],[-89.9924897,40.1118473],[-89.9926653,40.11177],[-89.992872,40.1116436],[-89.9930061,40.1115485],[-89.9931034,40.1114577],[-89.99320230000001,40.1113448],[-89.9932733,40.1112148],[-89.9932988,40.1111333],[-89.9933418,40.1109862],[-89.9933338,40.1108758],[-89.9933401,40.110748900000004],[-89.9933304,40.1106551],[-89.9932985,40.1105828],[-89.9932329,40.110454000000004],[-89.9931497,40.1102591],[-89.9930411,40.1101513],[-89.9930092,40.1100789],[-89.9928957,40.109910400000004],[-89.99282529999999,40.109743],[-89.9928085,40.1096486],[-89.9927981,40.1095769],[-89.9927661,40.1095046],[-89.9927085,40.1093647],[-89.99271,40.1091998],[-89.9926892,40.1090454],[-89.992658,40.108955800000004],[-89.9926866,40.1088081],[-89.9927009,40.1086714],[-89.99271039999999,40.1086217],[-89.9928165,40.108503999999996],[-89.9929211,40.1084187],[-89.9930129,40.1083113],[-89.9931764,40.1081892],[-89.9932865,40.1081212],[-89.9935036,40.1080726],[-89.9936185,40.1080646],[-89.9937479,40.1080633],[-89.9937982,40.108059],[-89.993898,40.1080676],[-89.993933,40.1080688],[-89.9941327,40.1080907],[-89.9942875,40.1081342],[-89.9944064,40.1081813],[-89.9945183,40.1082457],[-89.9946158,40.1083033],[-89.9947116,40.1083891],[-89.9948961,40.108553900000004],[-89.9949281,40.108631700000004],[-89.9950032,40.108700400000004],[-89.9950647,40.1087567],[-89.9951718,40.1089088],[-89.9952692,40.1090877],[-89.9953604,40.1092778],[-89.9954578,40.109462300000004],[-89.9955466,40.109685400000004],[-89.9955947,40.1098791],[-89.9956307,40.1100128],[-89.9956515,40.1101673],[-89.9956956,40.1104217],[-89.9957037,40.1105541],[-89.9957429,40.1107644],[-89.995779,40.1110298],[-89.9958391,40.1114008],[-89.9958322,40.111686399999996],[-89.9959193,40.1119372],[-89.9960185,40.1122376],[-89.99605389999999,40.1125355],[-89.9962489,40.1127892],[-89.9965205,40.1130723],[-89.9967042,40.1132592],[-89.9969423,40.1135032],[-89.9970932,40.1136233],[-89.9972729,40.1137495],[-89.9974406,40.1138315],[-89.9976586,40.113904399999996],[-89.9978359,40.1139423],[-89.9980435,40.113942800000004],[-89.998188,40.1139139],[-89.9983467,40.1138746],[-89.998492,40.1138292],[-89.9985958,40.1137722],[-89.9986995,40.1136979],[-89.9987602,40.1136335],[-89.9988375,40.1135145],[-89.9988933,40.1134066],[-89.9989563,40.1132925],[-89.9990129,40.1131619],[-89.9990072,40.1129915],[-89.999011,40.1129032],[-89.9989798,40.1126819],[-89.9989773,40.1125832],[-89.9988678,40.1123539],[-89.9988158,40.1122369],[-89.9987287,40.1121296],[-89.99864170000001,40.1120168],[-89.99858090000001,40.1119384],[-89.998449,40.1117196],[-89.9983563,40.1115627],[-89.9982205,40.1114266],[-89.9981038,40.1113188],[-89.9978946,40.111081],[-89.9977149,40.1109603],[-89.997512,40.1107286],[-89.9974823,40.1106011],[-89.99740800000001,40.110521399999996],[-89.9974414,40.1104178],[-89.9974262,40.110301899999996],[-89.9974469,40.1101708],[-89.9975043,40.1100291],[-89.9975441,40.109947500000004],[-89.9975903,40.109872100000004],[-89.9976821,40.1097593],[-89.9977363,40.1096776],[-89.9978631,40.1094446],[-89.9978783,40.1094287],[-89.9979899,40.1093385],[-89.998108,40.1092594],[-89.9982556,40.1091704],[-89.9984623,40.109044],[-89.998582,40.1089483],[-89.998716,40.108842100000004],[-89.9988732,40.108703500000004],[-89.9990455,40.1085544],[-89.999217,40.108416399999996],[-89.9993806,40.108295],[-89.9998529,40.108006],[-90.0001139,40.1078103],[-90.000363,40.1077189],[-90.0004905,40.1075749],[-90.0005546,40.1074863],[-90.0006389,40.1073376],[-90.0006517,40.1072437],[-90.00067250000001,40.1071443],[-90.0006923,40.1070234],[-90.0006987,40.1069075],[-90.0006835,40.1067924],[-90.0006818,40.1066875],[-90.0006594,40.106566799999996],[-90.0006516,40.1064841],[-90.0006437,40.1063903],[-90.0006062,40.1062973],[-90.0005481,40.1062092],[-90.0005189,40.1061549],[-90.0004755,40.106105400000004],[-90.0004391,40.1060503],[-90.0004029,40.106007],[-90.0003522,40.105952],[-90.0003013,40.1058805],[-90.0002869,40.1058702],[-90.0002434,40.105826199999996],[-90.0000165,40.1057479],[-89.9999822,40.1057301],[-89.999947,40.1057068],[-89.9998927,40.1056504],[-89.9998727,40.1056277],[-89.999804,40.1055652],[-89.9997561,40.1055254],[-89.9997153,40.1054801],[-89.9996538,40.105423099999996],[-89.9995724,40.1053378],[-89.9995196,40.1052539],[-89.999474,40.1051589],[-89.9994014,40.1050467],[-89.9993613,40.1049793],[-89.9993182,40.1048463],[-89.9993134,40.1048022],[-89.9992542,40.1046955],[-89.9991807,40.1045999],[-89.9991559,40.1045165],[-89.9990832,40.1044044],[-89.9990624,40.1042547],[-89.9990383,40.1040285],[-89.9990461,40.1038691],[-89.99904599999999,40.1037312],[-89.99905150000001,40.1036214],[-89.9990825,40.103424000000004],[-89.9991454,40.1033106],[-89.9992092,40.1031854],[-89.9993392,40.1030131],[-89.9994963,40.1028751],[-89.9995427,40.1028211],[-89.9996335,40.102713800000004],[-89.9998202,40.1025647],[-89.999963,40.1024316],[-90.0001146,40.102264],[-90.0003219,40.1022314],[-90.0005223,40.1022416],[-90.0007086,40.1022843],[-90.0009248,40.102371],[-90.0011908,40.1024954],[-90.0015001,40.102659],[-90.0017374,40.1027891],[-90.0020406,40.1029748],[-90.0022782,40.10316],[-90.0025239,40.103346],[-90.0027328,40.1035258],[-90.0028776,40.1036735],[-90.0029644,40.1037442],[-90.0030514,40.1038543],[-90.0031241,40.1039637],[-90.0031894,40.1040565],[-90.0032409,40.104210800000004],[-90.0032645,40.1043812],[-90.0033015,40.1045183],[-90.0033179,40.1046728],[-90.0032758,40.1048213],[-90.0032147,40.1050692],[-90.003216,40.1052458],[-90.0033053,40.1055421],[-90.0033132,40.105647],[-90.0033646,40.1057896],[-90.00351,40.1060249],[-90.0034976,40.106173999999996],[-90.0034866,40.10651],[-90.0034406,40.1068621],[-90.0034219,40.1071374],[-90.0033461,40.1074627],[-90.0032911,40.1076886],[-90.0031932,40.1079373],[-90.0031109,40.1082351],[-90.0029983,40.1084556],[-90.0029214,40.1086215],[-90.0028371,40.108776399999996],[-90.0027888,40.108925],[-90.0027109,40.1090909],[-90.0026335,40.1092009],[-90.0025993,40.1093225],[-90.0026002,40.1094439],[-90.0026803,40.1095864],[-90.0027456,40.1096737],[-90.0029546,40.1097384],[-90.0031698,40.1097975],[-90.0034784,40.109861699999996],[-90.0037075,40.109849],[-90.00400690000001,40.1097484],[-90.0043204,40.1096139],[-90.0046262,40.1094139],[-90.0048532,40.1092418],[-90.0051724,40.1088983],[-90.00537,40.1086387],[-90.0055532,40.108384],[-90.0058579,40.1080136],[-90.0061272,40.107742],[-90.0061881,40.107461],[-90.0062859,40.1072018],[-90.006377,40.1069972],[-90.0064319,40.1067658],[-90.0064721,40.1064794],[-90.006557,40.1064183],[-90.0065777,40.1062968],[-90.0065876,40.1059338],[-90.0065496,40.1056477],[-90.0065165,40.1052904],[-90.0065078,40.1050869],[-90.0064978,40.1048227],[-90.0064947,40.1045199],[-90.0064927,40.1043764],[-90.0064544,40.1040467],[-90.0064233,40.1038489],[-90.0064369,40.1037439],[-90.0064564,40.103578999999996],[-90.0065404,40.1033965],[-90.006689,40.1031923],[-90.0068095,40.1030814],[-90.0069084,40.1029651],[-90.0070433,40.1028596],[-90.0071856,40.1027817],[-90.0073278,40.1027038],[-90.0074631,40.1026419],[-90.007585,40.1026137],[-90.0077924,40.1025853],[-90.007964,40.1025838],[-90.00820039999999,40.1026042],[-90.0082715,40.1026205],[-90.0084518,40.1026963],[-90.0086023,40.1027612],[-90.008783,40.1029087],[-90.0089851,40.1030231],[-90.0092882,40.1033019],[-90.0094327,40.103411],[-90.0096204,40.1035254],[-90.0097856,40.1036233],[-90.0099371,40.1037048],[-90.0100874,40.1037365],[-90.0102374,40.103735900000004],[-90.0106171,40.1036894],[-90.0108099,40.1036327],[-90.0110375,40.1035545],[-90.0111377,40.103487799999996],[-90.0114641,40.103287699999996],[-90.0116073,40.1032043],[-90.0117625,40.1030546],[-90.0118687,40.1029492],[-90.0119827,40.1028163],[-90.0120671,40.1026945],[-90.012144,40.1025182],[-90.0121851,40.102358],[-90.0121538,40.102132499999996],[-90.0120728,40.1018741],[-90.0119852,40.1016931],[-90.0118547,40.101534900000004],[-90.0117455,40.1013485],[-90.0116297,40.1012386],[-90.0114994,40.101118400000004],[-90.0114047,40.1009429],[-90.0113244,40.1007783],[-90.0113078,40.1005914],[-90.0113286,40.100492],[-90.011449,40.1003707],[-90.0116477,40.1002588],[-90.0117623,40.1002086],[-90.0119683,40.1001194],[-90.0121538,40.100063399999996],[-90.0123609,40.1000011],[-90.0125898,40.0999774],[-90.0127902,40.0999765],[-90.0130841,40.0999911],[-90.0132415,40.100011800000004],[-90.0134864,40.1000928],[-90.0135868,40.10018],[-90.0137603,40.1003166],[-90.0138979,40.1004533],[-90.0140284,40.1006065],[-90.0141158,40.1007655],[-90.0142539,40.1009795],[-90.0142999,40.101238],[-90.0142879,40.1014471],[-90.0142837,40.101728],[-90.01426359999999,40.1019316],[-90.0142541,40.1023442],[-90.0142919,40.1025972],[-90.014345,40.1028557],[-90.0143547,40.1030647],[-90.0144499,40.1033065],[-90.0145445,40.103471],[-90.0146174,40.1036024],[-90.0146915,40.103778],[-90.0148076,40.1039259],[-90.0149016,40.1040082],[-90.0150233,40.1040677],[-90.0151674,40.1041161],[-90.0153319,40.1041154],[-90.0154601,40.1040817],[-90.0157592,40.1039417],[-90.0158939,40.1038197],[-90.0160427,40.103648],[-90.0161697,40.1034549],[-90.0163096,40.103172799999996],[-90.0163935,40.1029744],[-90.0164703,40.1027871],[-90.0165471,40.1025991],[-90.0166527,40.1024276],[-90.0167799,40.102256600000004],[-90.016907,40.1020739],[-90.0169771,40.1019522],[-90.0171189,40.1018025],[-90.017254,40.1017357],[-90.0175114,40.1016684],[-90.017719,40.1016833],[-90.0179199,40.101759],[-90.018108,40.1019121],[-90.0182748,40.1021197],[-90.0185789,40.102415],[-90.0186811,40.1026291],[-90.018776,40.1028212],[-90.0189,40.1030677],[-90.0189817,40.103304],[-90.0190842,40.1035512],[-90.0191657,40.1037544],[-90.0192752,40.103985],[-90.01937,40.1041709],[-90.019508,40.104362800000004],[-90.019653,40.104521500000004],[-90.0197472,40.1046308],[-90.0198341,40.1047187],[-90.0199354,40.1048059],[-90.0200154,40.1049263],[-90.0200303,40.104998],[-90.0200098,40.1051464],[-90.0200046,40.1052844],[-90.0200284,40.1054713],[-90.0200795,40.1055704],[-90.0201799,40.1056631],[-90.0202956,40.1057557],[-90.0203823,40.105810500000004],[-90.0205683,40.1058201],[-90.0208256,40.1057355],[-90.020932,40.1056632],[-90.0210312,40.1055966],[-90.0211672,40.1055187],[-90.0214373,40.1053519],[-90.0217795,40.1052117],[-90.0219791,40.1051226],[-90.0223,40.1050163],[-90.0224639,40.1049486],[-90.0226423,40.1048871],[-90.0229415,40.1047747],[-90.0231844,40.1046909],[-90.0234551,40.1046062],[-90.0236407,40.1045557],[-90.0240335,40.104453899999996],[-90.024219,40.1043924],[-90.0244191,40.1043577],[-90.0246699,40.1043724],[-90.0249565,40.1043767],[-90.0252,40.1043804],[-90.0255146,40.1043894],[-90.0258666,40.1044913],[-90.0260169,40.1045176],[-90.0262043,40.104583],[-90.0263838,40.1046808],[-90.0265858,40.1047786],[-90.0268012,40.1048652],[-90.0270456,40.104989700000004],[-90.0272474,40.1050544],[-90.0274165,40.105075],[-90.027678,40.1050801],[-90.027881,40.1050791],[-90.0280706,40.1050804],[-90.02826,40.1050623],[-90.0284521,40.1050373],[-90.0287429,40.104989700000004],[-90.0290352,40.104916],[-90.0292281,40.104871],[-90.0295418,40.1047751],[-90.0297211,40.1047246],[-90.0299069,40.1046955],[-90.0301565,40.1046716],[-90.0303288,40.1046432],[-90.0305361,40.1046195],[-90.0307643,40.1046075],[-90.0309585,40.104628],[-90.0311519,40.1046595],[-90.0312879,40.1046976],[-90.03146100000001,40.1047789],[-90.031655,40.1048877],[-90.0319291,40.105012],[-90.0321018,40.1051541],[-90.0321975,40.1053351],[-90.0322345,40.1054778],[-90.0322716,40.1056211],[-90.03230980000001,40.1058024],[-90.0323403,40.1060389],[-90.0323067,40.1062205],[-90.0322011,40.1063921],[-90.0320883,40.106563],[-90.0318689,40.1067847],[-90.0316493,40.1069734],[-90.0314071,40.1071401],[-90.0311446,40.1073565],[-90.0309608,40.1075229],[-90.0308898,40.1076391],[-90.0308555,40.1077442],[-90.0307289,40.1079924],[-90.0306669,40.1082238],[-90.0306049,40.108461399999996],[-90.0305994,40.1085656],[-90.0305521,40.1088411],[-90.0305692,40.1090832],[-90.0305851,40.109281100000004],[-90.0306236,40.1095011],[-90.0306613,40.1097375],[-90.0306785,40.1099796],[-90.0307245,40.110238100000004],[-90.03082739999999,40.1105399],[-90.0309233,40.110743],[-90.0310466,40.1108908],[-90.03121229999999,40.1110494],[-90.0313858,40.1111804],[-90.0316011,40.111256],[-90.0317306,40.1112665],[-90.0319239,40.111281500000004],[-90.0322101,40.111229800000004],[-90.0324163,40.1111571],[-90.0326658,40.111007],[-90.0328148,40.1108683],[-90.0329411,40.1107022],[-90.0330678,40.110465],[-90.0331589,40.1102769],[-90.0332208,40.1100179],[-90.0332608,40.1097314],[-90.0332865,40.109456],[-90.0333692,40.109218999999996],[-90.0334814,40.1089646],[-90.033558,40.1087607],[-90.0336279,40.1086224],[-90.033791,40.1084506],[-90.0339756,40.1082621],[-90.0342021,40.108041],[-90.0344146,40.1078689],[-90.0347201,40.1076357],[-90.0347559,40.1076135],[-90.0350892,40.1073684],[-90.0352455,40.1072518],[-90.0354366,40.1069757],[-90.03555539999999,40.1067654],[-90.03566789999999,40.1065558],[-90.0357302,40.1063679],[-90.0358068,40.1061585],[-90.0358544,40.1059216],[-90.0359358,40.105530099999996],[-90.0360112,40.1051661],[-90.0360227,40.1049018],[-90.0360772,40.1046373],[-90.0361534,40.1043838],[-90.0361868,40.1041636],[-90.0362415,40.1039156],[-90.0363241,40.1036724],[-90.0363937,40.1034906],[-90.0364919,40.1032915],[-90.0366046,40.103115],[-90.0367242,40.102899199999996],[-90.0368229,40.1027663],[-90.0369219,40.1026672],[-90.0370567,40.1025507],[-90.0371629,40.1024619],[-90.0373121,40.1023564],[-90.037476,40.1022777],[-90.0376829,40.102205],[-90.0379043,40.1021322],[-90.0381257,40.1020643],[-90.0382683,40.102036],[-90.0384614,40.1020289],[-90.0385983,40.1020614],[-90.0388208,40.1021425],[-90.0390159,40.1022727],[-90.0391525,40.102392800000004],[-90.0392828,40.1025137],[-90.0393627,40.1026285],[-90.0393647,40.1027658],[-90.0393515,40.1029149],[-90.03929600000001,40.1030635],[-90.0392117,40.1031963],[-90.0389854,40.1034457],[-90.038844,40.1036334],[-90.0386668,40.1038439],[-90.0385122,40.104059899999996],[-90.0383494,40.1042697],[-90.03822339999999,40.104485499999996],[-90.0381689,40.104755499999996],[-90.0381722,40.1050694],[-90.0382339,40.1054872],[-90.0383308,40.1058276],[-90.0384282,40.1062232],[-90.0385099,40.1065588],[-90.0386063,40.1068219],[-90.0387155,40.1070084],[-90.0387956,40.1071398],[-90.0388979,40.1073484],[-90.0391803,40.1076162],[-90.0394117,40.1077966],[-90.0396353,40.1080094],[-90.0398601,40.1082664],[-90.0400922,40.1085296],[-90.0403524,40.1087202],[-90.0405472,40.1089222],[-90.0408007,40.1091687],[-90.0409601,40.1093322],[-90.0411264,40.1094577],[-90.0412843,40.1095453],[-90.0414779,40.1095934],[-90.0417288,40.1096247],[-90.0419649,40.1095898],[-90.0421506,40.109561299999996],[-90.0424223,40.1094876],[-90.0426654,40.1094368],[-90.0430641,40.1092908],[-90.0434924,40.1091281],[-90.0438128,40.1089666],[-90.0441616,40.1087601],[-90.0445022,40.1085377],[-90.04474450000001,40.1083765],[-90.0450993,40.1081376],[-90.045455,40.1078876],[-90.0457033,40.1077043],[-90.0458594,40.1075601],[-90.046037,40.1073937],[-90.046278,40.1071994],[-90.0465191,40.1069995],[-90.0467674,40.1068163],[-90.0468675,40.106744],[-90.0470515,40.1066107],[-90.0472508,40.1064663],[-90.047463,40.1062666],[-90.0476183,40.1060175],[-90.0477442,40.1058024],[-90.0478281,40.1056198],[-90.0479122,40.1054546],[-90.0480466,40.1052939],[-90.0481668,40.1051498],[-90.0483657,40.1049612],[-90.0485147,40.1048281],[-90.048706,40.1047113],[-90.0489771,40.104566500000004],[-90.0491195,40.1044996],[-90.0496116,40.104358],[-90.0497971,40.1042964],[-90.0499968,40.1042072],[-90.0502673,40.1041004],[-90.0505242,40.1039832],[-90.0507944,40.1038385],[-90.0510223,40.1036829],[-90.0512205,40.103521900000004],[-90.0514325,40.1032946],[-90.0516018,40.1030068],[-90.0517061,40.1027807],[-90.0517539,40.1025825],[-90.0518152,40.1022628],[-90.0518339,40.1020205],[-90.0518233,40.1016956],[-90.0517786,40.101497800000004],[-90.05176230000001,40.1013771],[-90.0516954,40.1010911],[-90.0516566,40.1008491],[-90.0515453,40.1005144],[-90.0513996,40.1002673],[-90.0512971,40.1000319],[-90.0511862,40.0997571],[-90.0510693,40.09951],[-90.051025,40.0993673],[-90.0509939,40.099186],[-90.0510142,40.0990155],[-90.0510114,40.0987837],[-90.0510519,40.0985579],[-90.0511208,40.0982934],[-90.0511548,40.0981669],[-90.0512747,40.0979898],[-90.0514162,40.097818000000004],[-90.0516714,40.097601600000004],[-90.0518493,40.0974959],[-90.0521341,40.0973786],[-90.0523053,40.097333],[-90.0525197,40.097293300000004],[-90.0527056,40.0972863],[-90.0529852,40.0973063],[-90.0531356,40.0973546],[-90.0533809,40.0974742],[-90.0535537,40.0976273],[-90.0536422,40.0977917],[-90.0537587,40.0979782],[-90.0538611,40.0982088],[-90.0539852,40.0984442],[-90.0540958,40.0986859],[-90.0542127,40.098922],[-90.0543003,40.099103],[-90.054395,40.0992509],[-90.0545182,40.0993821],[-90.0547569,40.099572800000004],[-90.0549726,40.099698000000004],[-90.0552459,40.0998278],[-90.0556554,40.0999246],[-90.0560001,40.0999988],[-90.056286,40.1000244],[-90.0564656,40.1000125],[-90.0566935,40.0999776],[-90.0569079,40.0999325],[-90.0571869,40.0998808],[-90.0574792,40.0998125],[-90.0577509,40.0997395],[-90.0579865,40.0996604],[-90.0582714,40.0995597],[-90.0585274,40.0994364],[-90.058784,40.0992806],[-90.0590111,40.0991526],[-90.059303,40.099024299999996],[-90.0595172,40.0989619],[-90.0599031,40.0989042],[-90.060132,40.0988858],[-90.0604044,40.0989114],[-90.0606124,40.0989657],[-90.0609788,40.0990619],[-90.0612812,40.0992357],[-90.0615342,40.0994104],[-90.0618228,40.0996616],[-90.0621053,40.0999348],[-90.0623518,40.1002027],[-90.0624681,40.1003616],[-90.0625846,40.100548],[-90.0627877,40.1007774],[-90.06293289999999,40.1009527],[-90.0630344,40.1010619],[-90.0631782,40.101182],[-90.0633589,40.101307399999996],[-90.0635593,40.1013168],[-90.0637306,40.1012773],[-90.0639376,40.1012046],[-90.0641726,40.1010434],[-90.0642931,40.1009545],[-90.0645478,40.1006773],[-90.06475209999999,40.1003893],[-90.0650624,40.0999856],[-90.0652878,40.0996375],[-90.0655328,40.0991568],[-90.0657705,40.0986762],[-90.0658888,40.0983065],[-90.065915,40.0980973],[-90.0659538,40.0977832],[-90.0660156,40.097540800000004],[-90.0661051,40.0971712],[-90.0662154,40.0968071],[-90.0662767,40.0965094],[-90.0662812,40.0962893],[-90.0662284,40.0960916],[-90.0661037,40.0957789],[-90.0659223,40.095565199999996],[-90.0657553,40.0953515],[-90.0655669,40.0951661],[-90.0653855,40.0949579],[-90.0652695,40.0948322],[-90.0650313,40.0945919],[-90.0649512,40.0944605],[-90.0648335,40.0942409],[-90.0648101,40.0940099],[-90.0648417,40.0936958],[-90.064967,40.093304],[-90.065107,40.0930667],[-90.0652983,40.092833999999996],[-90.0655392,40.0926341],[-90.0657519,40.0924951],[-90.0658808,40.092444900000004],[-90.0661521,40.0924429],[-90.0662674,40.0924803],[-90.0667981,40.0925647],[-90.0669991,40.0926513],[-90.0671796,40.0927546],[-90.0674386,40.0928962],[-90.0677046,40.0930212],[-90.0679501,40.0931621],[-90.0682521,40.093292500000004],[-90.0685037,40.0934058],[-90.0687554,40.0935419],[-90.0690008,40.093666999999996],[-90.06916580000001,40.0937372],[-90.0692883,40.093780100000004],[-90.0695394,40.0938389],[-90.0698118,40.0938645],[-90.0701059,40.0939066],[-90.0706222,40.0939855],[-90.0707723,40.0939903],[-90.07125740000001,40.0938872],[-90.0714359,40.0938422],[-90.0715861,40.0937642],[-90.0717209,40.0936532],[-90.0718253,40.0934595],[-90.0719087,40.0932279],[-90.0718933,40.0931018],[-90.0717258,40.0928328],[-90.0714797,40.092609100000004],[-90.0713275,40.0924615],[-90.0709667,40.0921721],[-90.0707926,40.0919756],[-90.0704959,40.091719],[-90.0703139,40.0914335],[-90.0701031,40.0911434],[-90.0699072,40.090919400000004],[-90.0697755,40.0906234],[-90.0697438,40.090370300000004],[-90.0698193,40.090056000000004],[-90.0699031,40.089867999999996],[-90.0700798,40.0897181],[-90.0702717,40.0895737],[-90.0705562,40.0894233],[-90.0708419,40.0893274],[-90.0709844,40.089282499999996],[-90.0713493,40.0893077],[-90.0715147,40.0893227],[-90.0718587,40.0894308],[-90.0722111,40.0895712],[-90.0723271,40.0896914],[-90.0725512,40.0898552],[-90.0728895,40.0900288],[-90.0731988,40.0901694],[-90.0734082,40.0902947],[-90.0736945,40.0903754],[-90.0738741,40.0903628],[-90.074074,40.0903177],[-90.0743951,40.0902547],[-90.0749518,40.0901188],[-90.0755056,40.0897346],[-90.0758109,40.0894958],[-90.076066,40.0892848],[-90.0763854,40.089019],[-90.0765413,40.088858200000004],[-90.0767748,40.0886363],[-90.0770159,40.0884585],[-90.0773284,40.0882362],[-90.0776198,40.088063],[-90.07790370000001,40.087851799999996],[-90.0781098,40.0876797],[-90.0783797,40.0875073],[-90.0786067,40.0873737],[-90.0787773,40.087257],[-90.0788617,40.0871462],[-90.0789399,40.0870409],[-90.0789455,40.0869533],[-90.0788656,40.0868543],[-90.0787365,40.0867728],[-90.0785632,40.086675],[-90.0783406,40.086583],[-90.078225,40.0865125],[-90.0780807,40.0864359],[-90.0778794,40.0863279],[-90.0777711,40.0862566],[-90.077648,40.086142],[-90.0775459,40.0859721],[-90.0774946,40.0858516],[-90.0774435,40.0857525],[-90.0774141,40.0856706],[-90.077398,40.0855658],[-90.0773967,40.0854119],[-90.0774812,40.0853177],[-90.0776309,40.0852728],[-90.0778528,40.0852821],[-90.0784284,40.0854814],[-90.0787591,40.085606],[-90.0789819,40.085713999999996],[-90.0793124,40.085811],[-90.0794629,40.0858758],[-90.0797213,40.0859511],[-90.079959,40.0860155],[-90.0802028,40.0860633],[-90.0804105,40.0860837],[-90.0806108,40.0860882],[-90.0808887,40.0860199],[-90.0811244,40.085947000000004],[-90.0813451,40.0858128],[-90.0814723,40.0856638],[-90.0815347,40.0854979],[-90.0815399,40.0853661],[-90.0814949,40.085135199999996],[-90.0813426,40.0849766],[-90.0810479,40.084851799999996],[-90.080875,40.0848091],[-90.08066,40.0847667],[-90.0804864,40.0846303],[-90.0802349,40.0845218],[-90.080019,40.084374499999996],[-90.0797945,40.084161800000004],[-90.0797143,40.0840193],[-90.0795251,40.0837346],[-90.0794231,40.0835647],[-90.0793406,40.0832567],[-90.0793452,40.0830642],[-90.0793585,40.0829317],[-90.07937749999999,40.0827336],[-90.0794114,40.0825961],[-90.0794387,40.0824249],[-90.0795573,40.0822042],[-90.0796339,40.0820217],[-90.0797247,40.0818177],[-90.0798299,40.081612899999996],[-90.0799493,40.081386800000004],[-90.0801818,40.0810544],[-90.0804156,40.080865599999996],[-90.08070000000001,40.0807152],[-90.0808495,40.0806648],[-90.0811643,40.0806074],[-90.081572,40.0805992],[-90.0818519,40.0806633],[-90.0821823,40.0807542],[-90.0825565,40.0809276],[-90.0827004,40.0810586],[-90.0828961,40.0812612],[-90.0832506,40.0815499],[-90.0835825,40.0818174],[-90.0838505,40.0820741],[-90.0841098,40.0822598],[-90.0850225,40.082594],[-90.085378,40.0829993],[-90.0860907,40.0833739],[-90.0869415,40.0839292],[-90.0872366,40.0840975],[-90.0874538,40.084283400000004],[-90.0876276,40.0844467],[-90.0878508,40.084599499999996],[-90.0879738,40.084703],[-90.0882754,40.0847892],[-90.088476,40.0848206],[-90.0887983,40.0848073],[-90.089155,40.084711],[-90.0893968,40.0846214],[-90.08956739999999,40.0845102],[-90.0896526,40.0843828],[-90.0897152,40.0842501],[-90.0897919,40.0840793],[-90.0897894,40.0838868],[-90.0893447,40.0831356],[-90.0890482,40.0829066],[-90.0889468,40.0828195],[-90.088687,40.0825738],[-90.0884767,40.082343699999996],[-90.0882665,40.082136399999996],[-90.0881073,40.0819944],[-90.0879332,40.0818027],[-90.0877949,40.0815999],[-90.087656,40.0813094],[-90.0875895,40.0810952],[-90.0875442,40.080936],[-90.0874852,40.0807659],[-90.087396,40.0805187],[-90.0873872,40.0803262],[-90.087385,40.0801724],[-90.0874397,40.079945800000004],[-90.0874603,40.0798305],[-90.0875011,40.0796647],[-90.087578,40.079516],[-90.0877197,40.0793883],[-90.0879192,40.079287300000004],[-90.0880542,40.0792148],[-90.0883319,40.0791252],[-90.0885822,40.0790956],[-90.08880429999999,40.0791214],[-90.0892076,40.0793443],[-90.0892802,40.0794261],[-90.0894323,40.0795681],[-90.089455,40.0797115],[-90.0894507,40.079942700000004],[-90.0894393,40.0801849],[-90.0894067,40.0804824],[-90.0894027,40.0807467],[-90.089512,40.0809221],[-90.0896152,40.0811299],[-90.0896956,40.081294400000004],[-90.0898334,40.081442100000004],[-90.0899844,40.0815621],[-90.090122,40.081682799999996],[-90.0904092,40.0817683],[-90.0905951,40.081761900000004],[-90.090845,40.0816772],[-90.0910645,40.0815049],[-90.0912419,40.081355],[-90.0915742,40.0810277],[-90.0918636,40.080624],[-90.0922015,40.0801152],[-90.0924261,40.0798057],[-90.0926512,40.0794569],[-90.0927559,40.0791921],[-90.0929738,40.0788384],[-90.0931568,40.0785947],[-90.0933972,40.0783561],[-90.09354569999999,40.078179399999996],[-90.0937573,40.0779245],[-90.0940196,40.0777134],[-90.0941973,40.0775911],[-90.09446,40.0774407],[-90.0947097,40.0773395],[-90.0950735,40.077237600000004],[-90.0953238,40.0772032],[-90.0957028,40.0771951],[-90.0959247,40.0772043],[-90.0963616,40.0772504],[-90.0965768,40.0773204],[-90.0968653,40.0774507],[-90.0971103,40.0776302],[-90.0972058,40.077883],[-90.0972662,40.0781193],[-90.0972615,40.0783008],[-90.0971212,40.0785989],[-90.0971217,40.0786541],[-90.0970028,40.078825800000004],[-90.0967043,40.0789984],[-90.0962912,40.0792102],[-90.0957788,40.0794729],[-90.0956079,40.079551],[-90.0951956,40.0797525],[-90.0949819,40.079864],[-90.0946479,40.0800919],[-90.0944213,40.0802697],[-90.0943152,40.0803641],[-90.0941808,40.0805083],[-90.0940757,40.080724000000004],[-90.0939722,40.0810109],[-90.0939401,40.0813574],[-90.0939429,40.081583],[-90.0940309,40.0817916],[-90.0940756,40.0819784],[-90.0942499,40.0821921],[-90.0943869,40.082251400000004],[-90.094696,40.082370600000004],[-90.0951902,40.082388800000004],[-90.0955115,40.0823534],[-90.0957901,40.0822692],[-90.0961811,40.0820954],[-90.0965224,40.0818784],[-90.0967333,40.0815414],[-90.0967883,40.0813645],[-90.0967796,40.081183100000004],[-90.0967914,40.0809905],[-90.0969033,40.080736],[-90.097057,40.0804324],[-90.0972061,40.0803323],[-90.0975327,40.0800822],[-90.0981208,40.0796377],[-90.0985122,40.0794032],[-90.0987744,40.0791811],[-90.0990435,40.0789321],[-90.099142,40.0787936],[-90.0993683,40.0785882],[-90.0996304,40.078355099999996],[-90.0997716,40.0781722],[-90.099899,40.0780446],[-90.1000909,40.0779056],[-90.100511,40.0777814],[-90.1007397,40.077736099999996],[-90.1012265,40.0777377],[-90.1015417,40.0777355],[-90.1017356,40.0778221],[-90.102038,40.078002],[-90.1022691,40.078143],[-90.1024776,40.0782571],[-90.1027233,40.078426300000004],[-90.1028819,40.078590399999996],[-90.1029851,40.0787817],[-90.1030951,40.079045300000004],[-90.1032559,40.0793522],[-90.103339,40.0797258],[-90.1033708,40.0799733],[-90.1034314,40.0802317],[-90.1034986,40.0805232],[-90.1034943,40.0807488],[-90.1035329,40.0809522],[-90.1036065,40.0811553],[-90.1037592,40.0813629],[-90.1039403,40.0815324],[-90.1041775,40.0816519],[-90.1043709,40.0816779],[-90.1046284,40.0816538],[-90.1048569,40.0815864],[-90.1050842,40.081491400000004],[-90.1053121,40.0813626],[-90.1054325,40.0812571],[-90.1055374,40.081036499999996],[-90.1055636,40.080838299999996],[-90.1055258,40.0806295],[-90.1053781,40.0802673],[-90.1052171,40.0799273],[-90.1050917,40.0796582],[-90.1049314,40.079400899999996],[-90.1048511,40.0792634],[-90.104778,40.0791154],[-90.1047328,40.0789728],[-90.1047246,40.0788625],[-90.104773,40.0787415],[-90.1049274,40.0784213],[-90.1050545,40.0782661],[-90.1051818,40.0781385],[-90.1052523,40.0780939],[-90.1054302,40.0779937],[-90.1058445,40.0779136],[-90.1062019,40.0779104],[-90.1066673,40.0779349],[-90.1069756,40.0779547],[-90.107456,40.0780447],[-90.1076003,40.078115],[-90.1078591,40.0782344],[-90.1079893,40.0783324],[-90.1082921,40.078555800000004],[-90.1084733,40.0787308],[-90.1087269,40.078970999999996],[-90.1088794,40.0791572],[-90.108945,40.079272],[-90.1091685,40.0794579],[-90.1095723,40.0797187],[-90.1098828,40.0798978],[-90.1100766,40.0799741],[-90.1102344,40.0800444],[-90.1104576,40.080103199999996],[-90.1105647,40.0801241],[-90.1108871,40.0801162],[-90.1110801,40.0801042],[-90.1114015,40.0800852],[-90.1116878,40.0800665],[-90.11196699999999,40.0800478],[-90.1121382,40.0800138],[-90.1123095,40.0799847],[-90.1125384,40.0799724],[-90.112732,40.0800204],[-90.1129835,40.080122599999996],[-90.1131782,40.0802044],[-90.1133866,40.0803068],[-90.1135313,40.0804268],[-90.1136912,40.080635],[-90.1139445,40.080831],[-90.1142114,40.0810552],[-90.1144426,40.0812017],[-90.11465079999999,40.0812827],[-90.1148025,40.0813702],[-90.1150243,40.0813684],[-90.1152317,40.0813611],[-90.1155602,40.0813256],[-90.11593859999999,40.0812567],[-90.1161242,40.0812171],[-90.116317,40.0811878],[-90.1166089,40.0810869],[-90.1167727,40.0810199],[-90.1170796,40.0808851],[-90.11720030000001,40.080818199999996],[-90.1173704,40.0806628],[-90.1175255,40.080524],[-90.1176253,40.0804352],[-90.1176954,40.080341000000004],[-90.1177018,40.0802478],[-90.117663,40.080022400000004],[-90.1175686,40.0799125],[-90.1174379,40.0797593],[-90.1173582,40.0796831],[-90.117104,40.0793823],[-90.1170097,40.0792731],[-90.11689319999999,40.0791033],[-90.1168202,40.0789719],[-90.1167686,40.0788286],[-90.11674550000001,40.0786528],[-90.1168281,40.078448800000004],[-90.1169481,40.078299200000004],[-90.1171182,40.0781437],[-90.1173603,40.077999],[-90.1175313,40.0779263],[-90.1176378,40.077892],[-90.1177518,40.077880300000004],[-90.1180671,40.077889],[-90.1183108,40.0779202],[-90.1185474,40.077967900000004],[-90.1188129,40.0780266],[-90.1190003,40.0780911],[-90.1191508,40.0781559],[-90.1193372,40.0782101],[-90.1195314,40.078225],[-90.1197592,40.0781955],[-90.1199314,40.0781615],[-90.1201515,40.0780658],[-90.1202794,40.0780044],[-90.12043560000001,40.0778932],[-90.1206771,40.0776822],[-90.1208894,40.077515500000004],[-90.1210311,40.0773988],[-90.1212012,40.0772379],[-90.121392,40.0770713],[-90.1215977,40.0768777],[-90.1216679,40.076789],[-90.121881,40.0766223],[-90.1220507,40.0765166],[-90.1222431,40.0764376],[-90.1224142,40.0763815],[-90.1225999,40.0763578],[-90.1229156,40.0764161],[-90.1230889,40.0765139],[-90.1232846,40.0766998],[-90.1233864,40.0768311],[-90.1234596,40.07699],[-90.1235115,40.0771602],[-90.1235558,40.0772979],[-90.1236226,40.0774404],[-90.1237808,40.0775548],[-90.123997,40.0776247],[-90.1241615,40.0776397],[-90.1243539,40.0775614],[-90.1245247,40.0774777],[-90.1246453,40.0773998],[-90.1247657,40.0773109],[-90.1248153,40.0772333],[-90.1248928,40.0771667],[-90.1250134,40.0770943],[-90.1250777,40.0770498],[-90.1251698,40.076999],[-90.125227,40.0769711],[-90.1252377,40.0769579],[-90.1252321,40.0769352],[-90.1253239,40.0768629],[-90.1253957,40.0768563],[-90.1255675,40.0768823],[-90.1257118,40.0769471],[-90.1258333,40.0769789],[-90.1259557,40.0770052],[-90.1261141,40.0770471],[-90.1262499,40.0770678],[-90.1264001,40.0770828],[-90.1265581,40.0770813],[-90.1266864,40.0770689],[-90.12682889999999,40.0770343],[-90.1269641,40.076983999999996],[-90.1270419,40.0769497],[-90.1271696,40.0768663],[-90.1272748,40.0767774],[-90.1273796,40.0766499],[-90.1274148,40.0765669],[-90.12744789999999,40.0764508],[-90.1274892,40.0763464],[-90.1275861,40.0761362],[-90.1276056,40.0760153],[-90.1275806,40.0758285],[-90.1275713,40.0756912],[-90.1275982,40.075586200000004],[-90.1276449,40.0753824],[-90.1276781,40.0752781],[-90.1277101,40.0750468],[-90.12772939999999,40.0748928],[-90.1277837,40.074737999999996],[-90.1278163,40.0745674],[-90.1278776,40.0744015],[-90.1279405,40.074297],[-90.1280449,40.0741253],[-90.1281152,40.0740532],[-90.1282633,40.0739468],[-90.1283914,40.073907500000004],[-90.1285196,40.0738785],[-90.1287843,40.0738592],[-90.1289919,40.073874],[-90.129315,40.073953],[-90.1294438,40.0739847],[-90.1295589,40.0740055],[-90.1297028,40.0740261],[-90.1298242,40.0740469],[-90.1300315,40.074023],[-90.1301311,40.0740162],[-90.1301955,40.073988299999996],[-90.1302586,40.0739162],[-90.1302785,40.073833300000004],[-90.13027,40.0737837],[-90.1302333,40.0737018],[-90.1301886,40.0736199],[-90.1300583,40.0735164],[-90.1299858,40.0734457],[-90.1299052,40.0733696],[-90.1297834,40.073310899999996],[-90.1296825,40.0732673],[-90.1295885,40.0732084],[-90.1295164,40.0731757],[-90.1294083,40.0731383],[-90.129343,40.0730676],[-90.1292986,40.0730299],[-90.129262,40.072952799999996],[-90.1292816,40.072832],[-90.1293304,40.072771],[-90.1294354,40.0726545],[-90.1295342,40.0725657],[-90.12968910000001,40.0724103],[-90.1298657,40.0722762],[-90.1300626,40.072098600000004],[-90.1302161,40.0718935],[-90.1303856,40.0717657],[-90.1305328,40.0715551],[-90.1306524,40.0714765],[-90.130822,40.0713597],[-90.1309983,40.0711987],[-90.1311388,40.0710379],[-90.1312434,40.0708883],[-90.1312691,40.0707502],[-90.1313104,40.0706513],[-90.1313228,40.0705353],[-90.1312933,40.0704534],[-90.1312595,40.07019],[-90.1312088,40.0701461],[-90.1310932,40.0700763],[-90.1309847,40.0699948],[-90.1308258,40.0698977],[-90.1306743,40.0698219],[-90.1306166,40.0698064],[-90.1305301,40.0697737],[-90.130494,40.069747],[-90.1303859,40.069709599999996],[-90.1302773,40.0696171],[-90.1302121,40.0695574],[-90.1301382,40.069437],[-90.1300872,40.069355200000004],[-90.1300714,40.0692953],[-90.1300624,40.0691904],[-90.1300471,40.0690918],[-90.1301234,40.0689921],[-90.1302005,40.0688758],[-90.1302911,40.0687594],[-90.13043329999999,40.0687027],[-90.1305611,40.0686248],[-90.1306963,40.0685847],[-90.130881,40.0685499],[-90.1311672,40.0685249],[-90.1313388,40.068534400000004],[-90.1315754,40.0685814],[-90.1317844,40.0686507],[-90.1318928,40.0687212],[-90.1320375,40.0688294],[-90.1323406,40.0689803],[-90.1325414,40.0690447],[-90.1328515,40.069168],[-90.1330378,40.069215299999996],[-90.1332885,40.0692346],[-90.1334035,40.0692388],[-90.1336038,40.0692371],[-90.133689,40.0692249],[-90.1339528,40.069206199999996],[-90.134089,40.0691772],[-90.1341651,40.0690498],[-90.1341633,40.0689512],[-90.1341394,40.0687864],[-90.1341074,40.0686327],[-90.1340201,40.0685125],[-90.1339175,40.0683874],[-90.1338091,40.0683114],[-90.133679,40.06823],[-90.1335204,40.0681715],[-90.1333182,40.0680526],[-90.1332458,40.0679929],[-90.1329657,40.0678965],[-90.1327277,40.067800500000004],[-90.1325326,40.0676704],[-90.1323375,40.0675514],[-90.1321992,40.067448],[-90.1320977,40.067345],[-90.1319735,40.0672194],[-90.1318649,40.0671275],[-90.1317778,40.0670238],[-90.1317402,40.0669419],[-90.1316808,40.066827],[-90.1316284,40.0666955],[-90.131648,40.066574700000004],[-90.1316965,40.066475],[-90.1317579,40.0663202],[-90.1318349,40.0661935],[-90.1319828,40.0660596],[-90.1321384,40.0659925],[-90.1324089,40.0659124],[-90.1327731,40.0658704],[-90.1330866,40.0657901],[-90.1333718,40.065743],[-90.13361330000001,40.0656362],[-90.1338047,40.0655517],[-90.1340306,40.0654125],[-90.1341653,40.0653117],[-90.1342842,40.065151],[-90.1343382,40.0649748],[-90.1343543,40.0646725],[-90.1343723,40.0644744],[-90.134376,40.0642929],[-90.13433069999999,40.0641503],[-90.1342855,40.0640188],[-90.1342343,40.0639094],[-90.1341662,40.0637345],[-90.1340994,40.063592],[-90.13407720000001,40.0635211],[-90.1340246,40.063373],[-90.1339938,40.0632414],[-90.1339833,40.063071],[-90.1339669,40.0629449],[-90.1340771,40.062718000000004],[-90.1340762,40.0626248],[-90.1341449,40.062469899999996],[-90.1342567,40.0623265],[-90.1343487,40.0622701],[-90.1345112,40.0621754],[-90.134711,40.0621184],[-90.1349183,40.0621104],[-90.1351186,40.062114199999996],[-90.1353466,40.0621116],[-90.1355698,40.0621587],[-90.1358141,40.0622719],[-90.1359814,40.0623966],[-90.1361406,40.0625268],[-90.136381,40.0627884],[-90.136505,40.062896699999996],[-90.1366499,40.0630326],[-90.1368159,40.0631193],[-90.1369672,40.0631723],[-90.1371463,40.0632148],[-90.1373551,40.063262],[-90.1375842,40.0632759],[-90.1378194,40.063274],[-90.1381059,40.0632766],[-90.1383986,40.0632736],[-90.1386278,40.063293099999996],[-90.1388713,40.063318],[-90.1390657,40.0633652],[-90.1392105,40.0634796],[-90.1393567,40.0636645],[-90.1394235,40.0638014],[-90.139476,40.0639439],[-90.1394641,40.0641144],[-90.1394317,40.0643071],[-90.1393273,40.0644677],[-90.13921500000001,40.0645622],[-90.1390731,40.0646568],[-90.1389319,40.06473],[-90.1387551,40.064842],[-90.1385789,40.0650196],[-90.1384312,40.0651694],[-90.1382272,40.0653526],[-90.1380736,40.065535600000004],[-90.1379474,40.0656853],[-90.1378558,40.0657852],[-90.1377726,40.0659181],[-90.1376754,40.0660842],[-90.1376562,40.0662437],[-90.1377085,40.066369699999996],[-90.1378399,40.0665001],[-90.1380059,40.066581299999996],[-90.138286,40.0666715],[-90.13856559999999,40.066701699999996],[-90.1387441,40.066683499999996],[-90.1390291,40.0666199],[-90.139228,40.0665685],[-90.13949099999999,40.066467],[-90.1397037,40.0663492],[-90.1398949,40.0662426],[-90.1400643,40.0661148],[-90.1402179,40.0659152],[-90.1403581,40.0657323],[-90.1404065,40.0656272],[-90.1404409,40.0655608],[-90.1405892,40.065477200000004],[-90.1406304,40.0653721],[-90.1407347,40.0651894],[-90.1408809,40.0649685],[-90.1409651,40.064852099999996],[-90.1411404,40.064680100000004],[-90.1412108,40.0646135],[-90.1412811,40.0645517],[-90.1414364,40.0644404],[-90.1415711,40.0643459],[-90.1418125,40.0642335],[-90.1420043,40.064197899999996],[-90.1421758,40.0641908],[-90.1426283,40.064284900000004],[-90.1427797,40.0643441],[-90.1428582,40.0643817],[-90.1429952,40.0644409],[-90.143053,40.0644731],[-90.1432928,40.0646739],[-90.14351,40.0648535],[-90.1436562,40.065027900000004],[-90.1437085,40.0651484],[-90.1436887,40.0652417],[-90.1438154,40.0655432],[-90.1439651,40.0659039],[-90.1441476,40.066127800000004],[-90.1442801,40.0663734],[-90.1443829,40.0665101],[-90.1445797,40.0667223],[-90.1448054,40.0669508],[-90.1449644,40.0670534],[-90.1450438,40.0670916],[-90.145167,40.0672055],[-90.1456831,40.0672772],[-90.1458631,40.067319],[-90.1461065,40.067328],[-90.1463918,40.067303],[-90.1467202,40.0672722],[-90.1471048,40.0671963],[-90.1474486,40.0671875],[-90.1476696,40.0671959],[-90.1479277,40.0672318],[-90.1481507,40.067267799999996],[-90.1483442,40.0673158],[-90.1485748,40.0673904],[-90.1489485,40.0675015],[-90.1491134,40.0675551],[-90.1492933,40.0675914],[-90.1494362,40.0676064],[-90.1496007,40.0676159],[-90.1498654,40.067602],[-90.149965,40.0675904],[-90.1501505,40.0675501],[-90.1502284,40.067521400000004],[-90.1502639,40.067477],[-90.1503758,40.0673384],[-90.1504169,40.0672285],[-90.150421,40.067085],[-90.1503826,40.0669154],[-90.1503301,40.066778400000004],[-90.150256,40.0666305],[-90.1501781,40.0662687],[-90.1501833,40.0661534],[-90.1501888,40.0660706],[-90.1501941,40.0659609],[-90.1502191,40.0657572],[-90.1502461,40.0656577],[-90.1503088,40.0655525],[-90.1504356,40.065469],[-90.1504927,40.0654301],[-90.1506569,40.0654174],[-90.1508573,40.065437],[-90.1510014,40.0654797],[-90.1512457,40.065581800000004],[-90.1514192,40.065695399999996],[-90.1515072,40.0657936],[-90.1515523,40.0659086],[-90.1516046,40.0660339],[-90.1516362,40.066242700000004],[-90.1517406,40.066456],[-90.1518223,40.0666474],[-90.1519249,40.0667676],[-90.1519758,40.0668384],[-90.1520989,40.0669357],[-90.1522291,40.0670281],[-90.1522879,40.067082299999996],[-90.1523962,40.0671362],[-90.1526041,40.0671888],[-90.1528188,40.067198],[-90.15305359999999,40.0671401],[-90.1532603,40.067066600000004],[-90.1534589,40.0669827],[-90.1537278,40.0668315],[-90.1538831,40.0667306],[-90.15416450000001,40.0664806],[-90.1543604,40.0662091],[-90.1546036,40.0658103],[-90.1546791,40.0656174],[-90.1549333,40.0654332],[-90.1551008,40.065201099999996],[-90.1552466,40.0649464],[-90.155419,40.0645653],[-90.1555184,40.0641577],[-90.1555919,40.0638488],[-90.15562919999999,40.0635244],[-90.1556686,40.0629356],[-90.1556846,40.0626333],[-90.1556751,40.0624795],[-90.1556586,40.0623533],[-90.1556404,40.0621334],[-90.1556152,40.061935500000004],[-90.15564,40.0617104],[-90.1557083,40.0615224],[-90.1557908,40.0613184],[-90.1558951,40.0611467],[-90.155993,40.0610523],[-90.1561421,40.0609632],[-90.1563479,40.0608785],[-90.15649020000001,40.0608274],[-90.1566543,40.0608037],[-90.1568832,40.0608011],[-90.157019,40.0608272],[-90.1572575,40.0609735],[-90.1574251,40.0611361],[-90.1576204,40.0612717],[-90.1577809,40.0614405],[-90.1579344,40.061631399999996],[-90.1580087,40.0617897],[-90.158083,40.0619652],[-90.15815190000001,40.0622174],[-90.1581921,40.0624862],[-90.1581881,40.0626346],[-90.1581851,40.0628823],[-90.1581547,40.0631847],[-90.1581008,40.063372],[-90.1580594,40.0634605],[-90.1579897,40.0635878],[-90.1579351,40.0637034],[-90.1579155,40.0638194],[-90.157961,40.0639785],[-90.1580563,40.0640815],[-90.15817200000001,40.0641629],[-90.1583655,40.0642046],[-90.158652,40.0642127],[-90.1589447,40.0642042],[-90.159208,40.0641358],[-90.1594278,40.064018000000004],[-90.1596693,40.0639221],[-90.1599308,40.0637488],[-90.1601347,40.063565499999996],[-90.1602753,40.0634268],[-90.1603796,40.0632551],[-90.1604987,40.0631219],[-90.1607148,40.0628116],[-90.1607667,40.0625036],[-90.16083330000001,40.0622335],[-90.1608576,40.061952500000004],[-90.1608484,40.0618374],[-90.160874,40.0616944],[-90.1609223,40.0615837],[-90.1610254,40.0613734],[-90.1611871,40.0611904],[-90.1614069,40.061073199999996],[-90.1616558,40.0609987],[-90.16197700000001,40.0609679],[-90.1623774,40.0609636],[-90.1627923,40.0609703],[-90.1631989,40.0609556],[-90.1638426,40.0609375],[-90.1641786,40.0609618],[-90.164415,40.0609812],[-90.16483,40.0609989],[-90.1651596,40.061006],[-90.1656811,40.0609844],[-90.1659305,40.060959499999996],[-90.1664513,40.0608718],[-90.1666859,40.060798],[-90.1668556,40.060708],[-90.1672824,40.060549699999996],[-90.1674941,40.0604264],[-90.1678763,40.0602083],[-90.1680957,40.0600573],[-90.1684,40.0598562],[-90.1685911,40.059750199999996],[-90.1690238,40.059553199999996],[-90.1691508,40.0594966],[-90.1692438,40.0594519],[-90.1693431,40.0594176],[-90.1695422,40.0593937],[-90.169693,40.059386599999996],[-90.1698288,40.0594072],[-90.1699874,40.059471200000004],[-90.1701176,40.059563600000004],[-90.1702784,40.0597545],[-90.1703531,40.0599624],[-90.1704,40.0601705],[-90.1704217,40.0605609],[-90.1704047,40.0608467],[-90.1704047,40.0612261],[-90.170438,40.0615116],[-90.1704779,40.0617363],[-90.1705536,40.0619553],[-90.1706011,40.0622241],[-90.1706972,40.062416],[-90.1708075,40.0625851],[-90.1709178,40.0627597],[-90.17105480000001,40.062813500000004],[-90.1711918,40.0628665],[-90.1713997,40.0629088],[-90.1716359,40.0629171],[-90.1717999,40.0628824],[-90.1720342,40.062781],[-90.1722314,40.0626522],[-90.1723933,40.0624913],[-90.1725462,40.0622427],[-90.1726484,40.0619392],[-90.1726915,40.0615705],[-90.1727285,40.0612178],[-90.1727809,40.0609753],[-90.1728835,40.060716],[-90.1730095,40.060560699999996],[-90.1731656,40.060455],[-90.1735052,40.0602861],[-90.1738183,40.0601622],[-90.1742014,40.0600372],[-90.174679,40.0599385],[-90.1750145,40.0599021],[-90.1753287,40.0598989],[-90.1756731,40.0599446],[-90.1760183,40.0600841],[-90.1763216,40.060245800000004],[-90.1766405,40.0604455],[-90.1769512,40.0606293],[-90.1771897,40.0607749],[-90.1775076,40.0609697],[-90.1778541,40.0611423],[-90.1780135,40.061278],[-90.1781596,40.0614414],[-90.178178,40.0616717],[-90.1781258,40.0619363],[-90.1780651,40.0621567],[-90.1779901,40.0623827],[-90.1779739,40.0626581],[-90.1779582,40.062982500000004],[-90.1781084,40.0633763],[-90.1783721,40.0637197],[-90.1785402,40.0639272],[-90.17881560000001,40.0641664],[-90.1789042,40.0643245],[-90.1790358,40.0644659],[-90.1792095,40.0646015],[-90.1795411,40.064713499999996],[-90.1798209,40.064776699999996],[-90.180207,40.0647669],[-90.1806128,40.0646638],[-90.1808459,40.0645349],[-90.1810998,40.0643285],[-90.1812675,40.0641185],[-90.1814127,40.0638196],[-90.181535,40.0634718],[-90.1816015,40.0631968],[-90.1816752,40.0629322],[-90.1817233,40.0627994],[-90.1817848,40.0626562],[-90.1818334,40.0625732],[-90.1819379,40.0624235],[-90.1820436,40.062307000000004],[-90.1821915,40.0621951],[-90.1824328,40.062071599999996],[-90.18264070000001,40.0620359],[-90.1829145,40.0620191],[-90.1831871,40.061981],[-90.18340069999999,40.061977],[-90.1836224,40.0619633],[-90.1837535,40.0619653],[-90.1839396,40.0619856],[-90.1840632,40.0620428],[-90.1841777,40.0620974],[-90.1842935,40.0621788],[-90.1843816,40.0622818],[-90.1844197,40.0624133],[-90.1844723,40.0625614],[-90.1844679,40.062748400000004],[-90.1844138,40.0629136],[-90.1843166,40.0630742],[-90.1841132,40.063296199999996],[-90.1838664,40.063497],[-90.183697,40.0636249],[-90.1834646,40.0638257],[-90.1832822,40.063997799999996],[-90.1831629,40.0641034],[-90.1830641,40.0641923],[-90.1829439,40.064293],[-90.1827399,40.0644598],[-90.1825504,40.064643000000004],[-90.1824172,40.0647928],[-90.1822424,40.0650146],[-90.1821098,40.0652251],[-90.1819856,40.065473499999996],[-90.1819333,40.065727100000004],[-90.1818725,40.065942],[-90.181853,40.066058],[-90.1818565,40.0662284],[-90.1818658,40.0663601],[-90.1819979,40.0665512],[-90.1821281,40.0666374],[-90.1823862,40.0666731],[-90.1826654,40.066670099999996],[-90.1829149,40.066657],[-90.1831292,40.0666212],[-90.1833424,40.0665641],[-90.1834687,40.0664475],[-90.1836001,40.066199],[-90.183695,40.065890100000004],[-90.1838186,40.0655865],[-90.183934,40.0652663],[-90.1839949,40.0650673],[-90.1841188,40.064791299999996],[-90.1841929,40.064559700000004],[-90.1843549,40.0644153],[-90.1844754,40.064336600000004],[-90.1846162,40.0642309],[-90.1848357,40.0640855],[-90.185005,40.0639575],[-90.1852666,40.063800799999996],[-90.1854653,40.0637327],[-90.1856292,40.0636869],[-90.1857144,40.0636754],[-90.1860153,40.0636826],[-90.1861521,40.0637142],[-90.1863459,40.0637945],[-90.186476,40.0638703],[-90.1865264,40.063886600000004],[-90.1866655,40.064061],[-90.1867827,40.064197],[-90.18702329999999,40.0644695],[-90.1871481,40.064644],[-90.1873157,40.0647962],[-90.1873889,40.064937900000004],[-90.1875347,40.0650626],[-90.1876144,40.0651277],[-90.187782,40.0652799],[-90.1878115,40.065357],[-90.18785629999999,40.065438900000004],[-90.1879781,40.0654927],[-90.1880731,40.0655632],[-90.1882164,40.0656162],[-90.1884384,40.0656363],[-90.1886602,40.0656336],[-90.1888672,40.0655931],[-90.1890439,40.0654865],[-90.189199,40.0653696],[-90.1893523,40.065159],[-90.189442,40.0649653],[-90.1894363,40.064657600000004],[-90.1893974,40.0644495],[-90.1893345,40.0641697],[-90.1892313,40.0640006],[-90.189121,40.0638363],[-90.1889974,40.0636784],[-90.1888927,40.0634485],[-90.1887986,40.0633732],[-90.1887406,40.0633238],[-90.1885528,40.0632159],[-90.1883288,40.0630868],[-90.1880366,40.0627711],[-90.1877892,40.0625428],[-90.1876728,40.0623952],[-90.18745440000001,40.0621888],[-90.1873082,40.062030899999996],[-90.1872196,40.0618727],[-90.1871741,40.0617247],[-90.1871143,40.0615767],[-90.1871551,40.0614391],[-90.1872326,40.0613725],[-90.1873882,40.0613101],[-90.1877379,40.0612515],[-90.1880317,40.0612705],[-90.1884022,40.061238700000004],[-90.1887299,40.0611416],[-90.1890909,40.0609677],[-90.1892816,40.0608113],[-90.1894637,40.0606171],[-90.1895179,40.0604629],[-90.1895296,40.0602924],[-90.1895708,40.0601873],[-90.18958860000001,40.059989200000004],[-90.1896692,40.0596969],[-90.1896944,40.0595208],[-90.1896997,40.0594166],[-90.1897264,40.0593005],[-90.189759,40.0591465],[-90.1898506,40.0590576],[-90.189971,40.0589796],[-90.1901627,40.058932999999996],[-90.1903415,40.0589478],[-90.1905432,40.0590004],[-90.1908236,40.0591133],[-90.1910114,40.059221199999996],[-90.1911788,40.0593514],[-90.1913523,40.0594649],[-90.1916051,40.0596048],[-90.1917928,40.0596962],[-90.1919578,40.0597608],[-90.1920942,40.059759299999996],[-90.1923002,40.059702200000004],[-90.1924565,40.0596233],[-90.1926043,40.0594955],[-90.1927146,40.0593017],[-90.1927124,40.0591644],[-90.1926377,40.0589675],[-90.1925997,40.0588525],[-90.1926377,40.058610099999996],[-90.19257,40.0583911],[-90.1923191,40.0579869],[-90.1921787,40.0573177],[-90.1921726,40.0569769],[-90.1921868,40.0565974],[-90.1924545,40.0563364],[-90.1925524,40.0562475],[-90.192786,40.0560854],[-90.1930752,40.0559119],[-90.1933451,40.0557882],[-90.1937,40.055635699999996],[-90.1939203,40.055573],[-90.1941273,40.055532400000004],[-90.1944616,40.0554739],[-90.1947333,40.0554378],[-90.1950027,40.0553527],[-90.1952872,40.0552448],[-90.1955211,40.055115799999996],[-90.1955902,40.055016],[-90.1955933,40.0547856],[-90.1955335,40.0546431],[-90.1954877,40.0544619],[-90.1954025,40.0541168],[-90.1953212,40.0539744],[-90.1952038,40.0538109],[-90.1951511,40.053658],[-90.1950769,40.0535156],[-90.1950023,40.0533243],[-90.1949567,40.0531596],[-90.1949679,40.0530278],[-90.1950234,40.0529171],[-90.1951566,40.0527673],[-90.195569,40.052619899999996],[-90.1960184,40.0525766],[-90.1964117,40.0525888],[-90.1971061,40.052619899999996],[-90.197363,40.0526391],[-90.1978153,40.0526999],[-90.1981241,40.052785],[-90.1985992,40.0529829],[-90.1988373,40.053090600000004],[-90.1990828,40.0532195],[-90.1993715,40.0533537],[-90.1996519,40.0534721],[-90.1998758,40.0535957],[-90.2002,40.0536917],[-90.200581,40.0538137],[-90.2008754,40.0538989],[-90.2011984,40.0539666],[-90.2016131,40.0539511],[-90.2020406,40.0538802],[-90.202389,40.053793999999996],[-90.2027582,40.053636499999996],[-90.20311889999999,40.0534288],[-90.2035294,40.0531773],[-90.2037551,40.0530373],[-90.20393849999999,40.0528871],[-90.204122,40.0527418],[-90.204284,40.0526029],[-90.2044813,40.0524906],[-90.2047157,40.0524057],[-90.2049011,40.0523653],[-90.2050616,40.0525175],[-90.2050873,40.0527485],[-90.2050556,40.0529957],[-90.2050039,40.0532989],[-90.2049391,40.0536401],[-90.204792,40.0538287],[-90.2046873,40.0539507],[-90.2046034,40.0540892],[-90.2045581,40.0543206],[-90.2045701,40.0546117],[-90.2046967,40.0548856],[-90.2048429,40.0550489],[-90.2052885,40.0551649],[-90.2056888,40.0551439],[-90.2057311,40.0551547],[-90.2061597,40.0551004],[-90.2064302,40.0550367],[-90.2067079,40.0549736],[-90.2069934,40.054970499999996],[-90.2071447,40.055017899999996],[-90.2072171,40.0550727],[-90.2073254,40.0551259],[-90.2074428,40.0552845],[-90.2075033,40.0554981],[-90.2075446,40.0557559],[-90.2075275,40.0560257],[-90.2073045,40.056346500000004],[-90.2069819,40.056669299999996],[-90.2068485,40.056797],[-90.2066306,40.057002600000004],[-90.2064125,40.0571922],[-90.2061449,40.0574588],[-90.2059361,40.0577581],[-90.2057756,40.057962599999996],[-90.2056877,40.0582335],[-90.2056288,40.0585416],[-90.2056199,40.058811399999996],[-90.2057168,40.0590682],[-90.20577109999999,40.059288],[-90.2059335,40.0595444],[-90.2060294,40.059708],[-90.2062399,40.0599199],[-90.2065499,40.0600326],[-90.2068517,40.0601336],[-90.2071674,40.0601794],[-90.2075601,40.0601204],[-90.2079089,40.0600728],[-90.20831390000001,40.059903399999996],[-90.2087523,40.0596621],[-90.209035,40.0594665],[-90.2092295,40.059168],[-90.2093264,40.0589797],[-90.2094209,40.0586549],[-90.2094712,40.058302],[-90.2095279,40.057867],[-90.209536,40.057515],[-90.2095301,40.0572018],[-90.2095877,40.0568662],[-90.2097385,40.0565017],[-90.2098548,40.0561981],[-90.2099649,40.055988400000004],[-90.2101376,40.0556672],[-90.210306,40.0554509],[-90.2105228,40.0552233],[-90.21074780000001,40.0550177],[-90.2109098,40.0548732],[-90.2112072,40.054721],[-90.2115567,40.054656800000004],[-90.2117932,40.054692700000004],[-90.2120331,40.054883000000004],[-90.2122002,40.0550732],[-90.2123336,40.0552918],[-90.21245880000001,40.0555104],[-90.2125349,40.055757],[-90.2125622,40.056053500000004],[-90.212496,40.0563402],[-90.2122968,40.0567926],[-90.2119607,40.0572031],[-90.2116456,40.0575638],[-90.2113018,40.0579253],[-90.2110659,40.0583069],[-90.2109011,40.0586936],[-90.2108144,40.0590025],[-90.2108964,40.0592049],[-90.211014,40.0593794],[-90.2113336,40.0596342],[-90.2115719,40.0597638],[-90.2117224,40.0598167],[-90.2120597,40.0598685],[-90.2124026,40.0598589],[-90.212994,40.0597428],[-90.2134341,40.0595787],[-90.2137884,40.059359900000004],[-90.2139902,40.0590779],[-90.2142187,40.0586791],[-90.2143568,40.058403],[-90.214535,40.057999699999996],[-90.2146372,40.0577238],[-90.2150324,40.0570321],[-90.215357,40.0568197],[-90.2156972,40.0566293],[-90.2159663,40.0565166],[-90.2162724,40.056419500000004],[-90.2166076,40.0563609],[-90.2170569,40.056312],[-90.2174004,40.0563582],[-90.2178189,40.0565461],[-90.2179216,40.0566655],[-90.2180381,40.056818],[-90.2182126,40.056931399999996],[-90.2184349,40.0569901],[-90.2186426,40.0570095],[-90.2189705,40.0569455],[-90.2192467,40.0568217],[-90.2194163,40.0567261],[-90.2195072,40.0565765],[-90.2194768,40.0565001],[-90.2194606,40.0564015],[-90.2193442,40.0562594],[-90.2191911,40.0561293],[-90.2191183,40.0560366],[-90.2189521,40.0559396],[-90.2189283,40.055808],[-90.2189813,40.055726899999996],[-90.21899020000001,40.0557138],[-90.2190387,40.0556307],[-90.2192081,40.0555137],[-90.2193289,40.0554792],[-90.2196064,40.055394],[-90.219773,40.0553544],[-90.2198984,40.0553246],[-90.2203957,40.0551436],[-90.2208445,40.0550394],[-90.2211853,40.0549145],[-90.2214484,40.054835],[-90.2217191,40.0547878],[-90.2220407,40.054801],[-90.2222349,40.0548315],[-90.222558,40.054905500000004],[-90.2227807,40.054991],[-90.2230546,40.055086700000004],[-90.2232856,40.0551943],[-90.2235011,40.0552799],[-90.2236959,40.0553711],[-90.2239755,40.0554012],[-90.22423380000001,40.0554638],[-90.2246558,40.0554598],[-90.2249479,40.0554014],[-90.2252328,40.0553431],[-90.2254745,40.0552747],[-90.2257447,40.055183299999996],[-90.2259717,40.055076400000004],[-90.2261754,40.0548985],[-90.2264144,40.0546542],[-90.2265334,40.054532],[-90.226575,40.054471],[-90.2266645,40.0542718],[-90.2267861,40.0538805],[-90.2267882,40.0536438],[-90.2267859,40.0535121],[-90.2268304,40.0532151],[-90.2268153,40.0531435],[-90.226645,40.0528264],[-90.2265672,40.0525088],[-90.2264768,40.0522789],[-90.226409,40.052059299999996],[-90.2263892,40.0518013],[-90.2263652,40.051653099999996],[-90.2263776,40.0515434],[-90.2264111,40.0514052],[-90.2264654,40.0512731],[-90.2265999,40.051166699999996],[-90.2267909,40.0510606],[-90.2270959,40.0509525],[-90.227388,40.0508941],[-90.2276608,40.0509628],[-90.2279427,40.0511412],[-90.2280668,40.051244600000004],[-90.2282192,40.0513968],[-90.2284466,40.0516742],[-90.2285089,40.051970499999996],[-90.2288904,40.0524718],[-90.2290325,40.052844199999996],[-90.2291178,40.0531838],[-90.2291666,40.053480199999996],[-90.2291853,40.0537167],[-90.229182,40.0539203],[-90.2291791,40.0541618],[-90.2291978,40.0543983],[-90.2292162,40.0546121],[-90.2292058,40.0548267],[-90.2291381,40.055041700000004],[-90.2290143,40.0553123],[-90.2288834,40.0555891],[-90.2288154,40.055782],[-90.2287342,40.0560081],[-90.2287026,40.056244899999996],[-90.2286868,40.0565417],[-90.2287069,40.0568279],[-90.2287184,40.0570693],[-90.2287645,40.0572781],[-90.2288834,40.0574795],[-90.2290938,40.057681099999996],[-90.2292396,40.0578002],[-90.2294418,40.057908],[-90.2295778,40.0579396],[-90.2298286,40.0579753],[-90.2301007,40.0579778],[-90.2304272,40.0578585],[-90.2308541,40.0577275],[-90.2311947,40.0575805],[-90.2318423,40.0574309],[-90.2321761,40.0573281],[-90.2324194,40.0573197],[-90.2327839,40.0573216],[-90.2331716,40.0573834],[-90.2335306,40.0574508],[-90.2338919,40.057661100000004],[-90.23410200000001,40.057828799999996],[-90.2344999,40.0580941],[-90.234747,40.058283599999996],[-90.2353396,40.0586291],[-90.2354556,40.058726300000004],[-90.2357229,40.058872300000004],[-90.235889,40.0589527],[-90.2362123,40.059048000000004],[-90.2365933,40.0591539],[-90.2369735,40.0591881],[-90.2373581,40.059134],[-90.2380144,40.059038799999996],[-90.2383361,40.0588995],[-90.2385605,40.0588022],[-90.2388363,40.0586452],[-90.2392686,40.0584314],[-90.2394529,40.058286100000004],[-90.2394939,40.0582534],[-90.2398685,40.0580178],[-90.2401801,40.0578496],[-90.2407912,40.0576505],[-90.2412617,40.0575627],[-90.2416104,40.0575039],[-90.2420769,40.057559],[-90.2425339,40.057553999999996],[-90.2430494,40.0575591],[-90.2432283,40.0575849],[-90.2435804,40.057674399999996],[-90.2437233,40.0576894],[-90.2440248,40.0577572],[-90.2443418,40.0578421],[-90.2445356,40.0579168],[-90.244947,40.0580991],[-90.2452727,40.0583317],[-90.2454553,40.0585278],[-90.2456447,40.0586902],[-90.245754,40.0588323],[-90.2458784,40.0589626],[-90.2460522,40.0590981],[-90.2462829,40.0591726],[-90.2464545,40.0591873],[-90.2467227,40.0589863],[-90.2469821,40.0587307],[-90.247135,40.0584979],[-90.2472675,40.0582984],[-90.2473509,40.058204],[-90.2475267,40.0580152],[-90.2477592,40.057842],[-90.248127,40.0576458],[-90.2483541,40.057555300000004],[-90.2485466,40.0575037],[-90.2487394,40.057485299999996],[-90.2489984,40.057603],[-90.2490503,40.0576682],[-90.2492967,40.0578688],[-90.2494698,40.0579388],[-90.2496212,40.0579916],[-90.2497801,40.058067199999996],[-90.2499317,40.0581366],[-90.2499822,40.0581639],[-90.2500462,40.0581849],[-90.2501038,40.0581956],[-90.2501831,40.0582275],[-90.2502779,40.0582724],[-90.2503282,40.0582728],[-90.2504061,40.0582564],[-90.2504563,40.0582458],[-90.2505208,40.058229499999996],[-90.250621,40.0581964],[-90.2507074,40.0581365],[-90.2508222,40.0580378],[-90.2510016,40.0579339],[-90.2511729,40.057835499999996],[-90.2513671,40.0576935],[-90.2515317,40.057551000000004],[-90.2517047,40.0573588],[-90.2519555,40.0571344],[-90.2523145,40.056872],[-90.2526224,40.0567024],[-90.2528518,40.056654],[-90.2531232,40.0565943],[-90.2533235,40.056606099999996],[-90.2535091,40.056661500000004],[-90.2538012,40.056767300000004],[-90.2539582,40.0568443],[-90.2542932,40.0570215],[-90.254486,40.0571652],[-90.2547205,40.0573417],[-90.25498400000001,40.0575463],[-90.2551268,40.0576289],[-90.2552683,40.0578494],[-90.2555113,40.057988],[-90.2556251,40.0580486],[-90.2559246,40.0581764],[-90.256274,40.0583474],[-90.2565029,40.058425299999996],[-90.25678740000001,40.0585856],[-90.2568108,40.0585861],[-90.2568305,40.058586],[-90.2570587,40.0586804],[-90.2574305,40.0587636],[-90.2576948,40.0587978],[-90.25808,40.0588761],[-90.2583996,40.0588719],[-90.2584588,40.0588716],[-90.2588233,40.0588623],[-90.2591169,40.058857700000004],[-90.2593168,40.058830900000004],[-90.2595599,40.0588148],[-90.2598168,40.0588159],[-90.26010289999999,40.0587893],[-90.2603463,40.058796],[-90.2606527,40.0589009],[-90.2608603,40.059001],[-90.2610025,40.0591057],[-90.2610307,40.0591441],[-90.2610375,40.0591938],[-90.2610791,40.059463300000004],[-90.261079,40.0595406],[-90.2610568,40.0597215],[-90.2610202,40.0598314],[-90.2609483,40.059985],[-90.2607044,40.0602647],[-90.26056,40.0604457],[-90.2604016,40.0606592],[-90.2603082,40.060818499999996],[-90.2601863,40.0610104],[-90.2601206,40.0611536],[-90.2600765,40.061483],[-90.2601401,40.0617138],[-90.2601825,40.061808],[-90.2603035,40.0619563],[-90.2605174,40.0620563],[-90.2607173,40.0621061],[-90.260853,40.0621176],[-90.2610102,40.0621235],[-90.2611529,40.0621136],[-90.2613601,40.0620923],[-90.2616322,40.062016],[-90.2619764,40.0618744],[-90.2622699,40.061787],[-90.2624982,40.061722],[-90.2627706,40.061673400000004],[-90.2630424,40.0616412],[-90.2633929,40.0615872],[-90.2636577,40.061500699999996],[-90.2638363,40.0614899],[-90.2640436,40.061479500000004],[-90.2644945,40.0614097],[-90.2648021,40.061378],[-90.2649876,40.0614224],[-90.2652158,40.061434],[-90.2654085,40.0614845],[-90.2655663,40.0615394],[-90.2657298,40.0616335],[-90.266036,40.0617999],[-90.26627189999999,40.0619377],[-90.2663784,40.0619819],[-90.26659240000001,40.0620985],[-90.266721,40.0621977],[-90.2668989,40.0622807],[-90.2671135,40.0623697],[-90.2673632,40.062375700000004],[-90.2675423,40.0623269],[-90.2677855,40.0623164],[-90.2679929,40.0623116],[-90.2682997,40.0622854],[-90.2686433,40.062176300000004],[-90.2688655,40.0621279],[-90.2692094,40.0620463],[-90.2694813,40.0619542],[-90.2699394,40.0617187],[-90.2700905,40.0615818],[-90.2702557,40.0613295],[-90.2704428,40.061039199999996],[-90.2704581,40.0608798],[-90.2704019,40.0605827],[-90.2704105,40.0603074],[-90.2703763,40.0599723],[-90.270263,40.0596308],[-90.2701716,40.0594106],[-90.2700797,40.0591304],[-90.2699954,40.0588219],[-90.2699818,40.058563899999996],[-90.270184,40.0580913],[-90.2704435,40.0576032],[-90.2707025,40.0572303],[-90.271004,40.0568903],[-90.2713062,40.0565282],[-90.2715726,40.0561828],[-90.2718742,40.0558428],[-90.2721967,40.0555364],[-90.272563,40.0552132],[-90.2728929,40.0549171],[-90.2732014,40.0546487],[-90.2735808,40.0544469],[-90.2739248,40.0543763],[-90.2743248,40.0544165],[-90.2744672,40.0544659],[-90.2746387,40.054549],[-90.2747527,40.0546262],[-90.2748516,40.0547256],[-90.2750513,40.054918799999996],[-90.2752076,40.0550841],[-90.2753643,40.055288],[-90.2754278,40.0555139],[-90.2755052,40.0557721],[-90.2755395,40.0560306],[-90.2755886,40.056168299999996],[-90.2757596,40.0564438],[-90.27583010000001,40.056564800000004],[-90.2758798,40.0567522],[-90.2760143,40.0569783],[-90.2761214,40.0570824],[-90.2763355,40.057199],[-90.2766133,40.0573152],[-90.2768986,40.0573768],[-90.2771846,40.0574218],[-90.2774416,40.0574332],[-90.2777209,40.0574397],[-90.2780283,40.0573859],[-90.2782217,40.057337000000004],[-90.2784149,40.0572716],[-90.2787439,40.0571459],[-90.2790093,40.057031699999996],[-90.2793592,40.056928],[-90.279746,40.0568357],[-90.2801895,40.0567438],[-90.2805328,40.0566898],[-90.2809692,40.0566145],[-90.2811982,40.056544],[-90.2816055,40.0564295],[-90.2818779,40.0563808],[-90.2822639,40.0562885],[-90.2826717,40.0561472],[-90.2832805,40.0559893],[-90.2838885,40.055843100000004],[-90.284411,40.0556796],[-90.2848256,40.0555768],[-90.285248,40.0554567],[-90.2859348,40.055212],[-90.2861783,40.055146199999996],[-90.2863932,40.0550979],[-90.2865791,40.055098],[-90.2866504,40.0551313],[-90.2867781,40.0552305],[-90.2868141,40.0553186],[-90.2868208,40.055434500000004],[-90.286863,40.055594299999996],[-90.286869,40.055726],[-90.2868473,40.055869],[-90.286818,40.0559844],[-90.2867316,40.0561216],[-90.2865812,40.0563241],[-90.2864657,40.0564338],[-90.286237,40.0566092],[-90.2860574,40.0567733],[-90.2859066,40.0569378],[-90.2858205,40.0570253],[-90.2857418,40.0570527],[-90.2856768,40.0570966],[-90.28555539999999,40.0572389],[-90.2854112,40.0574365],[-90.285332,40.0575791],[-90.2852667,40.0577548],[-90.2852021,40.0579195],[-90.2851871,40.058101],[-90.2852076,40.0582547],[-90.2853284,40.0583705],[-90.2855143,40.0584597],[-90.2857069,40.0584929],[-90.2859144,40.0585046],[-90.2860715,40.058499499999996],[-90.2863146,40.058484],[-90.286543,40.0584294],[-90.2868799,40.0583699],[-90.2871804,40.0583382],[-90.2874378,40.058311700000004],[-90.2877589,40.0582847],[-90.2880524,40.0582751],[-90.2883596,40.0582869],[-90.2886737,40.0583538],[-90.2888235,40.0584149],[-90.2889872,40.0585194],[-90.2891509,40.0587073],[-90.2892506,40.058866699999996],[-90.2892927,40.0590155],[-90.2892493,40.0591524],[-90.2891551,40.059394499999996],[-90.2891252,40.059690700000004],[-90.2890392,40.0598665],[-90.2889306,40.0601853],[-90.28885819999999,40.0604542],[-90.2888361,40.0606413],[-90.2887356,40.0607344],[-90.2886844,40.0608114],[-90.2885836,40.0610308],[-90.2884758,40.061179100000004],[-90.2883107,40.061431400000004],[-90.2880878,40.0616502],[-90.2878443,40.061792600000004],[-90.2873717,40.0620876],[-90.2871351,40.0622851],[-90.2869193,40.062499],[-90.2867831,40.0626911],[-90.2866961,40.0628552],[-90.2867096,40.063020699999996],[-90.2867379,40.063135700000004],[-90.2868092,40.0632518],[-90.2868948,40.0633561],[-90.2870015,40.0634224],[-90.2870439,40.0634393],[-90.287116,40.0634616],[-90.2872154,40.0635168],[-90.2873148,40.0635776],[-90.2874652,40.0636877],[-90.2875717,40.0637435],[-90.2879002,40.0638869],[-90.2881859,40.0639816],[-90.2883852,40.0640534],[-90.2886212,40.0641202],[-90.2888211,40.0641706],[-90.2889707,40.0642151],[-90.2891777,40.0642593],[-90.2893495,40.0642767],[-90.2896781,40.0642773],[-90.2900073,40.064245400000004],[-90.2903225,40.064164],[-90.29058,40.0640657],[-90.2908092,40.0639234],[-90.291045,40.063819699999996],[-90.2913321,40.063716400000004],[-90.2915397,40.0636508],[-90.2918471,40.0635204],[-90.2922054,40.0634387],[-90.2926058,40.0633518],[-90.2929233,40.0633207],[-90.2932249,40.0633104],[-90.2934206,40.0633049],[-90.2936692,40.0632916],[-90.2938848,40.0633018],[-90.2940816,40.063315],[-90.2941835,40.0633509],[-90.294267,40.0634262],[-90.2943318,40.0635997],[-90.2942621,40.0637857],[-90.294205,40.0638958],[-90.2941039,40.064011],[-90.2939245,40.0641095],[-90.2936385,40.0642294],[-90.293381,40.064327],[-90.2931012,40.064431],[-90.2928079,40.0645455],[-90.2924997,40.0646821],[-90.2922643,40.0647526],[-90.2920272,40.064906],[-90.2919772,40.0649333],[-90.2916618,40.0650754],[-90.2913612,40.0651734],[-90.2911749,40.065294],[-90.2910528,40.0654528],[-90.290945,40.065606],[-90.2908654,40.0657983],[-90.2909009,40.0660016],[-90.2909641,40.0661834],[-90.2910559,40.0663656],[-90.2911625,40.066574599999996],[-90.2912331,40.066783900000004],[-90.2912477,40.0668825],[-90.2912541,40.0670528],[-90.2911884,40.0672009],[-90.291081,40.0673879],[-90.2909086,40.0675519],[-90.2907505,40.0677055],[-90.2906424,40.0678373],[-90.2905352,40.067958000000004],[-90.2903777,40.0680895],[-90.2903124,40.0681879],[-90.2902046,40.06827],[-90.2901113,40.0683576],[-90.2899611,40.0684945],[-90.2898455,40.0686761],[-90.2897876,40.0688738],[-90.2897654,40.0691375],[-90.2897996,40.0693794],[-90.289914,40.0695663],[-90.2900066,40.0696547],[-90.2901276,40.069716],[-90.2902489,40.0697269],[-90.2904135,40.0697493],[-90.2906567,40.0697339],[-90.2909136,40.0697349],[-90.2911352,40.0697189],[-90.2913643,40.069725],[-90.2916858,40.0697263],[-90.2919071,40.0697545],[-90.292143,40.0698102],[-90.2923144,40.0698766],[-90.2924995,40.0699651],[-90.2926855,40.0700591],[-90.2928631,40.0701972],[-90.2929699,40.070345599999996],[-90.293034,40.070461],[-90.2931831,40.0706926],[-90.2932828,40.0708527],[-90.2933315,40.0710283],[-90.2933522,40.0711937],[-90.2933948,40.071309299999996],[-90.2935014,40.0715239],[-90.2935652,40.0716835],[-90.2936716,40.071953300000004],[-90.293827,40.0722006],[-90.2940334,40.072421399999996],[-90.2942192,40.0725706],[-90.2943684,40.0726586],[-90.2945974,40.0727364],[-90.2948331,40.07277],[-90.2951049,40.0728206],[-90.2952898,40.0728925],[-90.2955608,40.073030700000004],[-90.2958183,40.0731635],[-90.2960101,40.0732906],[-90.2961457,40.0733621],[-90.2963598,40.0734731],[-90.29656,40.0735504],[-90.2967169,40.073606],[-90.2968813,40.0736835],[-90.2969806,40.0737332],[-90.2972227,40.074014500000004],[-90.297194,40.074174],[-90.2972288,40.074388400000004],[-90.2972284,40.0745146],[-90.2972273,40.0747292],[-90.2972331,40.074998300000004],[-90.2973033,40.0753283],[-90.2973452,40.0756143],[-90.297451,40.0758399],[-90.2975579,40.076],[-90.2977072,40.0761708],[-90.2978637,40.0763525],[-90.2980496,40.0765072],[-90.2982277,40.0766068],[-90.2984061,40.0766566],[-90.2986134,40.076718],[-90.2987918,40.0767734],[-90.2989917,40.0768176],[-90.2991636,40.0768461],[-90.299363,40.0768468],[-90.299564,40.0768302],[-90.2997496,40.0768035],[-90.299964,40.076782],[-90.3003864,40.0767233],[-90.3006299,40.0766581],[-90.3009588,40.076515900000004],[-90.3011741,40.0764178],[-90.3013749,40.0763026],[-90.3015392,40.0762263],[-90.3017322,40.0761387],[-90.3019119,40.076062300000004],[-90.3021271,40.0759532],[-90.3023058,40.0759485],[-90.3024126,40.0759485],[-90.302498,40.075954100000004],[-90.3026341,40.0759988],[-90.3027842,40.0760819],[-90.3029192,40.076181],[-90.3030694,40.0762801],[-90.3032256,40.0763577],[-90.3034117,40.0764461],[-90.3035615,40.0765127],[-90.3037824,40.076585],[-90.304076,40.0766568],[-90.3043538,40.0767571],[-90.3044823,40.076917],[-90.3046459,40.0770104],[-90.304889,40.0771377],[-90.305039,40.0772154],[-90.3051809,40.0773752],[-90.3052235,40.0774797],[-90.3052234,40.0775563],[-90.3052447,40.0776059],[-90.305322,40.0778427],[-90.3053705,40.078161800000004],[-90.3053834,40.078497],[-90.3054115,40.0788273],[-90.3054171,40.0790853],[-90.3053661,40.0794093],[-90.3052705,40.079926],[-90.3051836,40.080409599999996],[-90.305167,40.0809154],[-90.305137,40.0812779],[-90.3051007,40.0814761],[-90.3049783,40.0816902],[-90.3047342,40.0818595],[-90.30444,40.0820567],[-90.3041684,40.0821821],[-90.3039036,40.082274999999996],[-90.3036815,40.0823289],[-90.3032662,40.0823773],[-90.3028729,40.082387499999996],[-90.3026368,40.0824029],[-90.3023871,40.0824025],[-90.3021295,40.0824181],[-90.3018647,40.082433699999996],[-90.3014357,40.0824656],[-90.3013496,40.0824758],[-90.3009063,40.0825906],[-90.3006912,40.0826334],[-90.3005552,40.0826716],[-90.3004192,40.082797400000004],[-90.3003398,40.0829242],[-90.3002819,40.0830447],[-90.3002317,40.0832092],[-90.3002309,40.0833796],[-90.3002521,40.083500900000004],[-90.3002878,40.0835614],[-90.3004162,40.083633],[-90.3006084,40.083711],[-90.3007581,40.0837659],[-90.3009297,40.0838489],[-90.3011507,40.0839267],[-90.3012578,40.0839488],[-90.3014508,40.0840103],[-90.3015365,40.084049],[-90.3017582,40.0841869],[-90.3019147,40.0842866],[-90.3020071,40.0843473],[-90.3021431,40.0844575],[-90.3022286,40.0845514],[-90.3022852,40.0846339],[-90.3023067,40.0847055],[-90.3023552,40.0849363],[-90.3023832,40.085112699999996],[-90.3023973,40.0852444],[-90.3023892,40.0853983],[-90.3023956,40.085646],[-90.3023878,40.0858213],[-90.3023793,40.0860249],[-90.3023713,40.0862671],[-90.3023562,40.086508699999996],[-90.3023272,40.086728300000004],[-90.3022754,40.0869867],[-90.3022453,40.0873381],[-90.3022298,40.087706600000004],[-90.3021852,40.088124300000004],[-90.3021128,40.0884705],[-90.3020109,40.0888272],[-90.3019595,40.0891187],[-90.3019377,40.0893327],[-90.3019579,40.089607900000004],[-90.3020424,40.090004],[-90.302141,40.0903725],[-90.3021825,40.0907027],[-90.3022594,40.0910603],[-90.3023156,40.0914173],[-90.3023995,40.0917644],[-90.3024844,40.0920392],[-90.3025693,40.092309],[-90.3026964,40.0925842],[-90.3028742,40.0928872],[-90.3030876,40.0932452],[-90.3032012,40.093361099999996],[-90.303444,40.0935374],[-90.30370070000001,40.0935985],[-90.3038012,40.0936592],[-90.3039149,40.0937095],[-90.3040941,40.0937428],[-90.3043153,40.0937599],[-90.3045657,40.0937444],[-90.3047448,40.0936949],[-90.3049165,40.093624],[-90.3050244,40.0935529],[-90.305132,40.0934597],[-90.3052608,40.093334],[-90.3053977,40.0932026],[-90.3055125,40.0931094],[-90.3056695,40.0930166],[-90.3058273,40.092912],[-90.3060137,40.0927976],[-90.306143,40.0927153],[-90.3063078,40.0926721],[-90.3064076,40.0926776],[-90.306486,40.0926943],[-90.306572,40.0927496],[-90.3066717,40.0928269],[-90.3067363,40.0928982],[-90.3067786,40.0929862],[-90.3068137,40.0930688],[-90.3068347,40.0932563],[-90.3068483,40.0934977],[-90.3068258,40.093728999999996],[-90.3067821,40.0939101],[-90.3067599,40.0941682],[-90.3067375,40.0944044],[-90.3067504,40.0945864],[-90.3067714,40.0947733],[-90.3067642,40.0949216],[-90.3067555,40.0951797],[-90.3067617,40.095405299999996],[-90.3067608,40.0957241],[-90.3067878,40.0959606],[-90.3068087,40.0962136],[-90.306808,40.0964606],[-90.3068285,40.0966806],[-90.3069203,40.0970056],[-90.30698340000001,40.0973302],[-90.3070823,40.097648899999996],[-90.3072094,40.097924],[-90.3074445,40.098205300000004],[-90.3076015,40.0983429],[-90.3077508,40.0984371],[-90.3080368,40.098619400000004],[-90.3082509,40.0987186],[-90.3085217,40.09883],[-90.3086073,40.0988521],[-90.308701,40.0988743],[-90.3088437,40.0989409],[-90.3089648,40.098996],[-90.3091647,40.0991119],[-90.3093567,40.0993272],[-90.30947019999999,40.0995031],[-90.3095627,40.0997343],[-90.3096335,40.0998773],[-90.3097468,40.1001139],[-90.3098891,40.1003785],[-90.3100239,40.1006149],[-90.3101801,40.1008353],[-90.3103231,40.1010779],[-90.3104296,40.1012759],[-90.3106284,40.1016064],[-90.3107986,40.1018709],[-90.3108623,40.1020194],[-90.3109767,40.1022015],[-90.3111471,40.1024763],[-90.3112392,40.1025978],[-90.3113388,40.1027358],[-90.3115098,40.102923000000004],[-90.3116315,40.1030277],[-90.3117449,40.1031215],[-90.3118377,40.1032209],[-90.3119235,40.1033417],[-90.3120442,40.103518199999996],[-90.3123153,40.103733],[-90.3124219,40.1038599],[-90.31252190000001,40.1039592],[-90.3126142,40.1040918],[-90.3126636,40.1042453],[-90.3127202,40.1043994],[-90.3127835,40.1045867],[-90.312805,40.1047404],[-90.3128256,40.104883799999996],[-90.3128394,40.1050651],[-90.3128096,40.1052081],[-90.3127877,40.1053346],[-90.312781,40.1053725],[-90.3127376,40.1054329],[-90.3126364,40.1056088],[-90.3125572,40.1057515],[-90.3124138,40.1059381],[-90.3123125,40.106118800000004],[-90.3122477,40.1062621],[-90.3122188,40.1063278],[-90.3121611,40.1064593],[-90.3121396,40.1066189],[-90.3121956,40.1068061],[-90.3122458,40.106943799999996],[-90.3123313,40.1070315],[-90.3124094,40.1071034],[-90.312488,40.1071422],[-90.3125874,40.107191900000004],[-90.3126732,40.1072306],[-90.3127669,40.1072472],[-90.3128667,40.1072534],[-90.3129671,40.107236900000004],[-90.3130309,40.1072371],[-90.3130812,40.107231999999996],[-90.313296,40.107238100000004],[-90.3134174,40.107248999999996],[-90.3136179,40.1072552],[-90.3137033,40.1072663],[-90.3138254,40.107250300000004],[-90.3139755,40.1072617],[-90.314039,40.1073061],[-90.3141174,40.1074049],[-90.3141531,40.107466099999996],[-90.3141676,40.1075481],[-90.3141596,40.107707500000004],[-90.3141586,40.107855900000004],[-90.3141937,40.108015699999996],[-90.3142147,40.108202500000004],[-90.3141993,40.1084227],[-90.3142131,40.1085986],[-90.3142271,40.108724699999996],[-90.314241,40.1089116],[-90.3142103,40.1092858],[-90.3142239,40.1095216],[-90.3142303,40.109763799999996],[-90.3143149,40.1100881],[-90.3143566,40.1104294],[-90.3143844,40.1105775],[-90.314391,40.1107534],[-90.3144118,40.1109244],[-90.3144463,40.1111829],[-90.3145245,40.1113369],[-90.3146025,40.1114799],[-90.3146883,40.1116669],[-90.3147662,40.1117996],[-90.3148726,40.1119092],[-90.3149445,40.1119867],[-90.3150088,40.112031099999996],[-90.3151442,40.1121578],[-90.3153005,40.1123064],[-90.3154143,40.1124278],[-90.3154431,40.1125104],[-90.31534189999999,40.1126201],[-90.3152632,40.112653],[-90.315135,40.1126746],[-90.3149921,40.1126742],[-90.3148628,40.1126848],[-90.3147343,40.1126843],[-90.3146121,40.1126837],[-90.3144837,40.1126943],[-90.3143187,40.1127216],[-90.3141756,40.1127758],[-90.3140901,40.1128419],[-90.3139818,40.1129627],[-90.3139103,40.1130667],[-90.3138311,40.1132093],[-90.313759,40.113352],[-90.3136794,40.1135388],[-90.3136147,40.1136869],[-90.3135857,40.1138189],[-90.3135845,40.114027899999996],[-90.3135698,40.1142309],[-90.3135975,40.1144453],[-90.3136114,40.1145666],[-90.3136532,40.114682200000004],[-90.3136889,40.1148144],[-90.3137452,40.1149355],[-90.313788,40.1151387],[-90.3139012,40.115369799999996],[-90.3140433,40.1155351],[-90.3142075,40.1157444],[-90.3143219,40.1158436],[-90.3143925,40.115888],[-90.3145073,40.1159438],[-90.314643,40.1160208],[-90.3147567,40.1160649],[-90.3149425,40.1161208],[-90.3151855,40.1161544],[-90.3154358,40.1161933],[-90.3156005,40.1162157],[-90.3159156,40.1162611],[-90.31609399999999,40.1162999],[-90.3161219,40.1163107],[-90.3163153,40.116404599999996],[-90.3165648,40.1165264],[-90.3167503,40.1166369],[-90.3168789,40.1167202],[-90.3170649,40.116792000000004],[-90.3172361,40.116913],[-90.3174216,40.1170952],[-90.3175426,40.117222],[-90.3177137,40.1173326],[-90.3178348,40.1173876],[-90.3180853,40.1174432],[-90.3181709,40.1174654],[-90.3182644,40.1174716],[-90.3183498,40.117471699999996],[-90.3184718,40.1174557],[-90.3186721,40.1174398],[-90.3188791,40.117396299999996],[-90.3190801,40.1173639],[-90.3192871,40.1173203],[-90.3194946,40.1173099],[-90.319781,40.1172886],[-90.3199958,40.1172837],[-90.3204603,40.1174281],[-90.3206458,40.117462],[-90.3208034,40.117495399999996],[-90.3209683,40.1175288],[-90.3211537,40.1175565],[-90.3213184,40.117573300000004],[-90.3215618,40.1175633],[-90.3217407,40.1175634],[-90.3219259,40.1175753],[-90.3220483,40.1175868],[-90.3222048,40.1175982],[-90.3223907,40.1175927],[-90.3226558,40.1175881],[-90.3228346,40.1175834],[-90.3229568,40.117584],[-90.3232139,40.1175898],[-90.3233428,40.1176234],[-90.3234638,40.1176784],[-90.3235277,40.1177559],[-90.3235634,40.1178164],[-90.3236565,40.1179372],[-90.3237483,40.1180973],[-90.3238128,40.118234799999996],[-90.3239116,40.1183832],[-90.324026,40.1184769],[-90.3241407,40.1185272],[-90.3243047,40.118566],[-90.3244694,40.1185828],[-90.3246768,40.1186497],[-90.3248552,40.118683000000004],[-90.3249698,40.118727],[-90.3251835,40.1187883],[-90.325334,40.1188217],[-90.3255338,40.1188445],[-90.3258844,40.1189331],[-90.3261062,40.1189944],[-90.3263561,40.1190775],[-90.3266351,40.1191114],[-90.3269919,40.1191834],[-90.3272643,40.1192671],[-90.3275642,40.1193995],[-90.327742,40.1194659],[-90.3279993,40.11956],[-90.328228,40.1196764],[-90.3283203,40.1198027],[-90.3284131,40.1199738],[-90.3284484,40.120067399999996],[-90.3285482,40.1202268],[-90.3286264,40.1203753],[-90.3287325,40.1205353],[-90.3288162,40.1206968],[-90.3288321,40.1208216],[-90.328903,40.1208929],[-90.328967,40.1209814],[-90.3289941,40.120993],[-90.32906,40.1210201],[-90.3291531,40.1210643],[-90.3292956,40.1211088],[-90.32946749999999,40.1211311],[-90.3296536,40.1211367],[-90.3299116,40.1211376],[-90.3301547,40.1211056],[-90.3303833,40.1210563],[-90.330634,40.1209746],[-90.3308347,40.12092],[-90.3309992,40.1208547],[-90.3310923,40.1208168],[-90.3311573,40.1207673],[-90.3313081,40.12068],[-90.3314724,40.1205864],[-90.3316515,40.120461],[-90.3317381,40.1204114],[-90.3318601,40.1203898],[-90.33192389999999,40.1203901],[-90.3320669,40.1204015],[-90.3321382,40.1204238],[-90.3322384,40.1204679],[-90.3323102,40.1205288],[-90.3324028,40.1206109],[-90.3325023,40.1207379],[-90.332581,40.1208539],[-90.3326802,40.120963599999996],[-90.3327803,40.1210685],[-90.3328586,40.1211514],[-90.3329723,40.1212672],[-90.3330872,40.1213278],[-90.3332299,40.1213889],[-90.3333082,40.1213946],[-90.3335443,40.1213729],[-90.3336521,40.121368000000004],[-90.3338952,40.121335200000004],[-90.3340671,40.1212809],[-90.3342673,40.1211829],[-90.334368,40.1211111],[-90.3344328,40.120968500000004],[-90.3344693,40.1208696],[-90.3345053,40.120792800000004],[-90.3345122,40.1207707],[-90.3344771,40.120693599999996],[-90.3344697,40.1206716],[-90.334463,40.1206392],[-90.3344561,40.1205896],[-90.3344492,40.12054],[-90.3344274,40.1204463],[-90.3344205,40.1203967],[-90.3343715,40.1202756],[-90.3343139,40.1201987],[-90.3341859,40.120094],[-90.3340571,40.1199894],[-90.3339143,40.119851],[-90.3337793,40.1196802],[-90.3336867,40.1196036],[-90.3336297,40.1195702],[-90.3334649,40.1194706],[-90.33332970000001,40.1193549],[-90.3332231,40.1192336],[-90.333173,40.119107],[-90.3331455,40.1189864],[-90.3332958,40.1188494],[-90.3333887,40.1188053],[-90.3335391,40.1187567],[-90.3337179,40.1187568],[-90.3337827,40.1187625],[-90.3338613,40.1188013],[-90.3340322,40.1188843],[-90.3341252,40.1189229],[-90.3342753,40.1190005],[-90.334411,40.1190776],[-90.3345396,40.1191601],[-90.3346684,40.1192544],[-90.3348325,40.119375399999996],[-90.3350247,40.1195189],[-90.3351034,40.119635],[-90.3352313,40.1197341],[-90.3353165,40.119866],[-90.3353872,40.1200697],[-90.3354231,40.120213],[-90.335415,40.1203614],[-90.3353576,40.120597000000004],[-90.3352993,40.1207623],[-90.3352201,40.1209706],[-90.3351766,40.1211682],[-90.3351323,40.1213721],[-90.335125,40.1215149],[-90.3351389,40.121624499999996],[-90.3351739,40.1217733],[-90.3352027,40.1218449],[-90.33528079999999,40.1219933],[-90.3353444,40.1221254],[-90.3354014,40.1222298],[-90.3354867,40.1223734],[-90.3355586,40.1224447],[-90.3357007,40.1225334],[-90.3358506,40.1225889],[-90.3359938,40.1226168],[-90.3361231,40.1226111],[-90.3362944,40.1225733],[-90.336531,40.1225192],[-90.3368168,40.1224482],[-90.3370038,40.1223772],[-90.3371537,40.1222899],[-90.3373118,40.122208],[-90.3374912,40.122104],[-90.3375986,40.1219942],[-90.3376632,40.121906100000004],[-90.3377492,40.1218075],[-90.3378785,40.1217204],[-90.3380294,40.1215668],[-90.3382228,40.1213585],[-90.3383737,40.1212049],[-90.3385175,40.1210514],[-90.3386259,40.1208754],[-90.3387551,40.1206337],[-90.3388488,40.1204309],[-90.3389277,40.1202661],[-90.3389789,40.1201126],[-90.3390509,40.1198982],[-90.3391084,40.119744600000004],[-90.3391666,40.1195793],[-90.3392813,40.1193984],[-90.3394038,40.1191954],[-90.3395479,40.1189978],[-90.3396765,40.1188609],[-90.3398492,40.1187183],[-90.3399853,40.118609],[-90.3402437,40.1184229],[-90.3404228,40.118291299999996],[-90.3406096,40.1181375],[-90.3406813,40.1181163],[-90.3409743,40.1180452],[-90.3411465,40.1180184],[-90.3414543,40.1179804],[-90.3414685,40.1179699],[-90.3416048,40.1179427],[-90.3417836,40.1178607],[-90.3419337,40.1177893],[-90.3420277,40.1176851],[-90.3420918,40.1175646],[-90.342121,40.117454699999996],[-90.3421355,40.117311799999996],[-90.3421361,40.1171414],[-90.3421299,40.1169213],[-90.3421231,40.1168061],[-90.3421168,40.1166572],[-90.3421814,40.116498],[-90.3422965,40.1164323],[-90.3423897,40.1164055],[-90.3424607,40.1164112],[-90.3425607,40.1164332],[-90.3426681,40.1164718],[-90.3427395,40.1164996],[-90.3428463,40.1165657],[-90.3429324,40.1166265],[-90.3430251,40.1167093],[-90.3430819,40.1167973],[-90.3431099,40.1168854],[-90.34318880000001,40.1170228],[-90.3432813,40.1171608],[-90.3433875,40.1173263],[-90.343444,40.1174687],[-90.3435159,40.1176124],[-90.3436004,40.1177664],[-90.3437219,40.1179263],[-90.3438503,40.118140600000004],[-90.3439707,40.1182895],[-90.3441637,40.118422],[-90.3442779,40.1184991],[-90.3444211,40.1185271],[-90.3445497,40.118533],[-90.3446789,40.1185169],[-90.3448502,40.118484],[-90.3450149,40.1184297],[-90.3451866,40.118358799999996],[-90.3453584,40.1182989],[-90.3455167,40.118238399999996],[-90.3463116,40.1179057],[-90.3470278,40.1176819],[-90.3472563,40.1176278],[-90.3474785,40.1175731],[-90.3477079,40.117519],[-90.3479011,40.117519],[-90.3481297,40.1175415],[-90.3483939,40.1176197],[-90.348473,40.1176198],[-90.3485947,40.1176472],[-90.3487013,40.117692],[-90.3488656,40.1177529],[-90.3489877,40.1178189],[-90.3490867,40.1179072],[-90.349223,40.1180284],[-90.3493506,40.1181772],[-90.3494717,40.1183039],[-90.3495929,40.1184418],[-90.3497139,40.1186396],[-90.34984180000001,40.1188822],[-90.3499635,40.119063499999996],[-90.3500844,40.1193227],[-90.3501192,40.1194488],[-90.3502472,40.1197735],[-90.3503242,40.12012],[-90.3503599,40.120252199999996],[-90.3504663,40.1204232],[-90.3505022,40.1205713],[-90.3505943,40.1206762],[-90.3507012,40.1208189],[-90.3508158,40.1209347],[-90.3509511,40.121051],[-90.3512653,40.1210957],[-90.3513372,40.1210959],[-90.3514521,40.1210799],[-90.3515952,40.121025],[-90.3517315,40.1209261],[-90.3518536,40.1208389],[-90.3519969,40.1207289],[-90.3521542,40.1205808],[-90.35234080000001,40.1204111],[-90.3525058,40.1202305],[-90.352678,40.1200603],[-90.35287890000001,40.1198794],[-90.3530732,40.1197476],[-90.3533381,40.1196498],[-90.3534952,40.119639],[-90.35363100000001,40.1196505],[-90.3537743,40.1196784],[-90.3539024,40.1197168],[-90.3540026,40.119756100000004],[-90.3541954,40.1198665],[-90.3543523,40.119982],[-90.3544528,40.1200426],[-90.3544309,40.1201691],[-90.3543728,40.120262600000004],[-90.3542939,40.120350099999996],[-90.3541933,40.120504],[-90.3540359,40.1207121],[-90.3539351,40.1208495],[-90.3538706,40.1209376],[-90.353798,40.1210305],[-90.3537408,40.1212007],[-90.3537188,40.1213161],[-90.3537107,40.1214589],[-90.3537821,40.1215695],[-90.353818,40.1216355],[-90.3539602,40.121729],[-90.354039,40.1217733],[-90.3542036,40.121856199999996],[-90.3543033,40.121928],[-90.354646,40.1222477],[-90.3548527,40.1224684],[-90.3551869,40.1228979],[-90.3553445,40.1230685],[-90.3554221,40.1232391],[-90.3554717,40.123475400000004],[-90.3555137,40.1238221],[-90.3555056,40.123965],[-90.3554157,40.1242561],[-90.3553761,40.1242502],[-90.3552115,40.1242445],[-90.3550974,40.1242446],[-90.3548755,40.1242545],[-90.3547396,40.1242382],[-90.3542814,40.1242477],[-90.3541025,40.1242469],[-90.353967,40.1242631],[-90.3536519,40.1242957],[-90.3534158,40.1243167],[-90.3531942,40.1243439],[-90.3530221,40.1243817],[-90.3527288,40.1244362],[-90.3523994,40.124539999999996],[-90.3521414,40.1246157],[-90.3519194,40.124687],[-90.3515971,40.1247852],[-90.3512608,40.1248504],[-90.350981,40.1248986],[-90.350745,40.1250025],[-90.3504273,40.125043399999996],[-90.350356,40.1250922],[-90.3500967,40.1252003],[-90.3495795,40.125388900000004],[-90.3493418,40.1254969],[-90.3489168,40.1257304],[-90.3484839,40.1259087],[-90.3481643,40.1260828],[-90.3474749,40.1264513],[-90.346942,40.1268263],[-90.3464269,40.1273392],[-90.3460494,40.127776600000004],[-90.3459326,40.1279292],[-90.3458662,40.1280883],[-90.3453987,40.1288216],[-90.3449845,40.1293559],[-90.3445845,40.129870600000004],[-90.3441996,40.130297],[-90.343736,40.1307653],[-90.3434311,40.131115199999996],[-90.3432499,40.1312959],[-90.3427801,40.1316884],[-90.3424035,40.1320636],[-90.3416939,40.1327021],[-90.3413174,40.1330897],[-90.3404488,40.133809299999996],[-90.3400016,40.1341409],[-90.3392706,40.1348001],[-90.3385106,40.1352843],[-90.3384589,40.135317799999996],[-90.3384178,40.1353443],[-90.3380921,40.1356171],[-90.3380048,40.1356784],[-90.3378105,40.1358178],[-90.337573,40.1359533],[-90.3374787,40.1360354],[-90.3363468,40.1366974],[-90.3354974,40.137076],[-90.3346054,40.13735],[-90.3333831,40.137825],[-90.3330965,40.1379112],[-90.3327864,40.1379906],[-90.3318453,40.1382208],[-90.3294693,40.138741100000004],[-90.3288079,40.1389072],[-90.3285495,40.1389545],[-90.327891,40.1390599],[-90.3272231,40.1391432],[-90.3266062,40.1392703],[-90.3257305,40.139413],[-90.3253144,40.1395029],[-90.3244114,40.1396113],[-90.3230998,40.1396894],[-90.3212147,40.1397646],[-90.320464,40.1396759],[-90.3193553,40.1395746],[-90.3186911,40.1395116],[-90.3174267,40.1393133],[-90.3166688,40.1392303],[-90.3160606,40.1391875],[-90.31536679999999,40.1390502],[-90.3148088,40.1389906],[-90.3142366,40.1389545],[-90.3130913,40.1389513],[-90.3114364,40.1390261],[-90.3109701,40.1391328],[-90.3101947,40.139243],[-90.3094308,40.1394152],[-90.3091601,40.1394764],[-90.3085566,40.1396861],[-90.3074001,40.1399575],[-90.3069328,40.1401249],[-90.3065886,40.1402101],[-90.3064223,40.1402912],[-90.3054934,40.1406522],[-90.3045946,40.1409812],[-90.3033995,40.1414943],[-90.302931,40.1417169],[-90.3019451,40.142132000000004],[-90.3009153,40.1426413],[-90.29990839999999,40.1431048],[-90.2989414,40.1436039],[-90.2987613,40.143733499999996],[-90.2984064,40.1439898],[-90.29762,40.1444021],[-90.2965972,40.1449003],[-90.2947097,40.1457271],[-90.2941915,40.1460079],[-90.2936496,40.1462627],[-90.291716,40.1468358],[-90.290738,40.1471639],[-90.2905317,40.147206600000004],[-90.290207,40.147275],[-90.2896466,40.1474858],[-90.2888354,40.1476223],[-90.288181,40.1477881],[-90.2879656,40.147824],[-90.287013,40.1480235],[-90.286018,40.1481184],[-90.285688,40.1481937],[-90.2850415,40.148267000000004],[-90.2819153,40.1488189],[-90.2810676,40.1490674],[-90.2805877,40.1492472],[-90.2793365,40.1497522],[-90.2790344,40.1499156],[-90.2780276,40.1504162],[-90.2774742,40.1507772],[-90.2769557,40.1510387],[-90.2767981,40.1510977],[-90.2766034,40.1512121],[-90.2762573,40.1514586],[-90.2760268,40.1515939],[-90.2746179,40.1523248],[-90.2737482,40.1527045],[-90.2731298,40.153042400000004],[-90.2717274,40.1535538],[-90.2714337,40.153662],[-90.2708742,40.1538022],[-90.26989760000001,40.1541163],[-90.2691589,40.154310100000004],[-90.2679029,40.1545625],[-90.2674791,40.1546205],[-90.2669051,40.1547553],[-90.2659243,40.1548444],[-90.2647048,40.1549861],[-90.2638743,40.1550108],[-90.2633154,40.1550517],[-90.2632934,40.155009],[-90.2626626,40.1550421],[-90.2605579,40.1549811],[-90.2602145,40.1549847],[-90.2593043,40.1549602],[-90.257845,40.1548784],[-90.2575891,40.1548345],[-90.256628,40.1547524],[-90.25648029999999,40.1547326],[-90.2555349,40.154611700000004],[-90.2550905,40.154587],[-90.2545412,40.1545159],[-90.2522584,40.1542779],[-90.2514299,40.1541563],[-90.2507152,40.1540794],[-90.2502937,40.154010299999996],[-90.2501295,40.153963],[-90.2491757,40.1538932],[-90.2481143,40.1536915],[-90.2469383,40.1535237],[-90.24635789999999,40.1534004],[-90.2461779,40.1533795],[-90.2456549,40.1532462],[-90.2449737,40.1531083],[-90.243846,40.152747],[-90.2434,40.1525801],[-90.2424025,40.1522841],[-90.2420846,40.1521536],[-90.2416677,40.1520141],[-90.2408149,40.1518001],[-90.2402682,40.1516269],[-90.2399745,40.1515735],[-90.2398411,40.1515385],[-90.2392426,40.1513973],[-90.2388482,40.1513404],[-90.2379957,40.1511581],[-90.2378135,40.151108199999996],[-90.2377216,40.1510839],[-90.2364604,40.1508558],[-90.2360087,40.150819999999996],[-90.2355206,40.150747100000004],[-90.2348826,40.150602],[-90.2333335,40.150349500000004],[-90.23214540000001,40.1502312],[-90.2306416,40.150179800000004],[-90.2300464,40.1501793],[-90.2297314,40.150148200000004],[-90.2290949,40.1501521],[-90.2287583,40.1501224],[-90.226138,40.1500847],[-90.2244574,40.150146],[-90.2236004,40.150223],[-90.2219247,40.1502346],[-90.221389,40.1502558],[-90.2204027,40.1503391],[-90.2200989,40.150345099999996],[-90.219132,40.1503978],[-90.2186845,40.1504226],[-90.217384,40.1505575],[-90.2165467,40.1506136],[-90.215391,40.150841299999996],[-90.2147759,40.1510051],[-90.2139497,40.1512806],[-90.2132942,40.1515384],[-90.2124877,40.151797099999996],[-90.21210980000001,40.1519471],[-90.2113189,40.1523271],[-90.2105663,40.1527677],[-90.2101109,40.1530781],[-90.20896450000001,40.1536976],[-90.2085895,40.1539579],[-90.2080906,40.1542313],[-90.2070816,40.1549259],[-90.207012,40.1549801],[-90.2065356,40.155343099999996],[-90.2064003,40.1554764],[-90.2061889,40.1557357],[-90.2057349,40.1561854],[-90.2050563,40.1570146],[-90.2040612,40.1583811],[-90.203584,40.1592104],[-90.2034999,40.1594317],[-90.2034009,40.159602],[-90.2031024,40.160314400000004],[-90.2026254,40.1613411],[-90.2023976,40.1621138],[-90.20216980000001,40.1630686],[-90.2021162,40.1632883],[-90.2020627,40.164400799999996],[-90.2021509,40.165297100000004],[-90.20228900000001,40.1661601],[-90.2024314,40.1667264],[-90.2025679,40.1674127],[-90.2027794,40.1691238],[-90.2028376,40.1693719],[-90.2029204,40.1697343],[-90.20298,40.170470800000004],[-90.2029916,40.1709053],[-90.2028305,40.1720571],[-90.2028187,40.1723166],[-90.2026466,40.173616],[-90.2025834,40.174310399999996],[-90.2025138,40.1745468],[-90.2024685,40.175047899999996],[-90.2023384,40.175522],[-90.2023007,40.1760617],[-90.2021577,40.1768725],[-90.2021515,40.1775059],[-90.2021417,40.1775984],[-90.2020727,40.1782487],[-90.2020316,40.1784587],[-90.2020346,40.1787609],[-90.2019764,40.179229],[-90.2017824,40.1799683],[-90.2015671,40.1805698],[-90.2015048,40.1808075],[-90.2013518,40.1811603],[-90.2010915,40.1815689],[-90.2005627,40.1826524],[-90.20041810000001,40.1829444],[-90.1997478,40.183917],[-90.1993329,40.1846963],[-90.1987962,40.1853604],[-90.1984644,40.1858191],[-90.1981331,40.1863288],[-90.19759930000001,40.1872785],[-90.1973456,40.1876429],[-90.1972471,40.1878643],[-90.1971335,40.188019499999996],[-90.1967703,40.1887653],[-90.1966571,40.1889523],[-90.1965939,40.189118199999996],[-90.1962016,40.1898256],[-90.1957851,40.1904559],[-90.19551680000001,40.1907927],[-90.1948993,40.191304099999996],[-90.1941017,40.1917876],[-90.1935181,40.192089100000004],[-90.1933537,40.192194900000004],[-90.1931604,40.1923009],[-90.192983,40.1923737],[-90.192576,40.1925126],[-90.1918289,40.1928371],[-90.190614,40.1931588],[-90.18964940000001,40.1933259],[-90.1884114,40.1934986],[-90.1870163,40.1936061],[-90.1857947,40.1938077],[-90.1847443,40.194029],[-90.1839664,40.194331500000004],[-90.1834452,40.1945719],[-90.1826699,40.1949668],[-90.1823424,40.1951398],[-90.1819971,40.1953488],[-90.1818361,40.1954463],[-90.1813951,40.1957951],[-90.1813202,40.1958577],[-90.1809481,40.1960847],[-90.180557,40.1963905],[-90.1802869,40.1965507],[-90.1800872,40.196734],[-90.1796476,40.197051099999996],[-90.1792998,40.1973608],[-90.1789228,40.197639],[-90.178568,40.1979721],[-90.1780909,40.1983157],[-90.17792850000001,40.1984546],[-90.1777218,40.198660000000004],[-90.1773247,40.1989092],[-90.1769063,40.1993642],[-90.17638170000001,40.1998294],[-90.175842,40.2003996],[-90.1755804,40.2006936],[-90.1752767,40.2011079],[-90.1747208,40.202048],[-90.1744356,40.202700899999996],[-90.1743702,40.2028309],[-90.1742861,40.2030577],[-90.1742048,40.203399],[-90.1739797,40.2039453],[-90.1737507,40.204635100000004],[-90.1733397,40.2056889],[-90.172989,40.2064511],[-90.1728968,40.2067787],[-90.17269830000001,40.2074711],[-90.1725162,40.207995],[-90.1722506,40.2086354],[-90.1721406,40.208978200000004],[-90.1719028,40.2095191],[-90.1716552,40.2099661],[-90.1713305,40.2104468],[-90.1712122,40.210684799999996],[-90.1708595,40.2112539],[-90.1704846,40.2117513],[-90.1699461,40.2122773],[-90.169229,40.2129423],[-90.1685539,40.2134925],[-90.1677426,40.2140973],[-90.1675081,40.2142311],[-90.1666123,40.2148473],[-90.1662488,40.215037],[-90.1662274,40.2150648],[-90.1661553,40.2150486],[-90.1659583,40.2151477],[-90.1653446,40.2155361],[-90.1646176,40.2159251],[-90.1640986,40.2162371],[-90.1629523,40.2168285],[-90.1626855,40.2169666],[-90.1623667,40.2171312],[-90.162252,40.2171898],[-90.1615326,40.217628500000004],[-90.1611116,40.217835],[-90.1608272,40.2180174],[-90.1604921,40.2181738],[-90.1600928,40.2183968],[-90.1586682,40.219257400000004],[-90.1583977,40.2193914],[-90.1580415,40.2196031],[-90.157549,40.2198638],[-90.1573482,40.2199477],[-90.1564712,40.220283699999996],[-90.1560279,40.2204241],[-90.1554855,40.2205541],[-90.1534819,40.2209059],[-90.1512496,40.2212604],[-90.150942,40.2212828],[-90.1497966,40.2214119],[-90.1475626,40.22158],[-90.1465393,40.2216739],[-90.1454587,40.2218012],[-90.1440481,40.2218696],[-90.1430877,40.2219562],[-90.1426866,40.2219928],[-90.140819,40.2222734],[-90.1398108,40.2224444],[-90.1395464,40.2224734],[-90.1390595,40.222569899999996],[-90.1379864,40.2227302],[-90.1362855,40.2231422],[-90.1356059,40.2234218],[-90.1352923,40.2235766],[-90.1341498,40.2240353],[-90.1326599,40.224687599999996],[-90.1324033,40.224780100000004],[-90.1319871,40.2249327],[-90.1307319,40.2254692],[-90.130153,40.225746900000004],[-90.129925,40.2258198],[-90.1290825,40.2262106],[-90.12814230000001,40.2267441],[-90.1276637,40.2269784],[-90.1272357,40.2272276],[-90.126674,40.2276211],[-90.1263544,40.2279042],[-90.12594849999999,40.2282086],[-90.1253866,40.2285868],[-90.1252865,40.2286646],[-90.1251288,40.22894],[-90.1247422,40.2291918],[-90.1246493,40.2292765],[-90.1244226,40.2294874],[-90.1239039,40.229864],[-90.1232383,40.230516],[-90.1228825,40.2307966],[-90.1228402,40.2307975],[-90.1219079,40.2317207],[-90.1212856,40.2323903],[-90.1210757,40.2326812],[-90.1204901,40.2332279],[-90.1198738,40.233973399999996],[-90.1191907,40.2348959],[-90.1190526,40.2351588],[-90.1186697,40.2362357],[-90.1183918,40.2367738],[-90.1180209,40.2373787],[-90.1177274,40.2379763],[-90.117567,40.238366299999996],[-90.1174422,40.2387077],[-90.1173957,40.238949399999996],[-90.1169006,40.240576000000004],[-90.1163342,40.242087],[-90.1155744,40.2443234],[-90.1154562,40.244604100000004],[-90.1149846,40.2454386],[-90.1146761,40.2459824],[-90.114489,40.246611200000004],[-90.1144401,40.2467784],[-90.1143232,40.2469984],[-90.1140144,40.2477133],[-90.1138758,40.2479265],[-90.1135909,40.2484978],[-90.113335,40.2490856],[-90.1131745,40.24947],[-90.113076,40.2499424],[-90.1130463,40.2500377],[-90.1134802,40.2500382],[-90.1134151,40.2506112],[-90.1133364,40.2506806],[-90.113034,40.250690399999996],[-90.1128234,40.2508985],[-90.1125312,40.2516671],[-90.1122208,40.2524055],[-90.1119246,40.2531273],[-90.1115173,40.2539131],[-90.1110322,40.2548594],[-90.1106178,40.2556618],[-90.110281,40.2562761],[-90.1098512,40.2569572],[-90.1095171,40.2574749],[-90.1091194,40.2581227],[-90.1087643,40.258704],[-90.1084614,40.2590836],[-90.1081055,40.2595711],[-90.1079326,40.2597789],[-90.1076956,40.2600644],[-90.10728950000001,40.2605825],[-90.1068692,40.2611228],[-90.1063797,40.2615833],[-90.1059943,40.2619937],[-90.1056765,40.262318199999996],[-90.1056371,40.2623488],[-90.105494,40.262459899999996],[-90.1050504,40.2628071],[-90.1047609,40.2630707],[-90.1043957,40.2633237],[-90.1038152,40.2636798],[-90.1032813,40.2640054],[-90.1028046,40.2642838],[-90.101957,40.2645696],[-90.1010446,40.2648695],[-90.1001071,40.2651805],[-90.0990802,40.2655582],[-90.0982864,40.265832599999996],[-90.0974506,40.2662397],[-90.0966215,40.2665999],[-90.0961091,40.266914299999996],[-90.0955827,40.2672812],[-90.0951785,40.2676144],[-90.0947315,40.2680002],[-90.09435,40.2684629],[-90.094038,40.2690495],[-90.0936316,40.2695482],[-90.0932147,40.270091199999996],[-90.0928513,40.2705704],[-90.0923514,40.2710917],[-90.091959,40.2715434],[-90.0914905,40.271954199999996],[-90.0909753,40.2723762],[-90.0905065,40.2727455],[-90.0900772,40.2731009],[-90.0895508,40.2734733],[-90.0891334,40.2739555],[-90.0887471,40.274283],[-90.0883067,40.2746108],[-90.0878589,40.2749138],[-90.0874804,40.2753186],[-90.0871225,40.275596300000004],[-90.0869974,40.2757128],[-90.0864468,40.276215],[-90.0860398,40.2766613],[-90.0858247,40.276781],[-90.0853178,40.2773464],[-90.0848001,40.2779009],[-90.0842728,40.2786127],[-90.0836133,40.279454799999996],[-90.0830789,40.2801694],[-90.0826122,40.2808064],[-90.0819836,40.2814607],[-90.08155909999999,40.2819705],[-90.0809984,40.2825748],[-90.0803907,40.2831518],[-90.0798847,40.2838358],[-90.0793574,40.2845503],[-90.0789725,40.28506],[-90.0785132,40.2857189],[-90.0780241,40.286267699999996],[-90.0776309,40.2866504],[-90.0771595,40.2871605],[-90.0766741,40.287725800000004],[-90.07616780000001,40.288373899999996],[-90.0757968,40.2888228],[-90.07527089999999,40.2892834],[-90.0746233,40.2898439],[-90.0739967,40.2903381],[-90.0733237,40.290874],[-90.07283029999999,40.2913537],[-90.0717092,40.292174599999996],[-90.0709214,40.293008900000004],[-90.0707968,40.2931917],[-90.0707327,40.2932851],[-90.0694381,40.2951657],[-90.0686882,40.2968912],[-90.0684442,40.297681600000004],[-90.0683116,40.298659],[-90.0682997,40.3009467],[-90.0682967,40.3013537],[-90.068293,40.3018918],[-90.0682923,40.3020229],[-90.0682397,40.3024302],[-90.0681505,40.3029825],[-90.0680793,40.3035292],[-90.0679464,40.304029299999996],[-90.0679708,40.304147900000004],[-90.0680028,40.304313300000004],[-90.0679952,40.3046996],[-90.0681177,40.3051378],[-90.0681397,40.3056261],[-90.0682402,40.306022999999996],[-90.0683671,40.3063314],[-90.0683763,40.3065701],[-90.068376,40.3067591],[-90.068447,40.3070706],[-90.0685187,40.3074566],[-90.0684591,40.3076638],[-90.0684372,40.3080723],[-90.0684508,40.3084172],[-90.0685803,40.3088167],[-90.0686952,40.3092107],[-90.068867,40.309505200000004],[-90.0689781,40.3098634],[-90.0690715,40.3102686],[-90.0691855,40.310977199999996],[-90.0692395,40.3114129],[-90.0691969,40.3119319],[-90.0691222,40.3124924],[-90.0689778,40.3133513],[-90.0687781,40.314053200000004],[-90.0684456,40.3148384],[-90.0681115,40.315414000000004],[-90.0677414,40.315998],[-90.0673538,40.3166621],[-90.066829,40.3172827],[-90.0662466,40.3179202],[-90.0655961,40.3186186],[-90.0647329,40.3193016],[-90.0641203,40.3197763],[-90.0635217,40.3201986],[-90.0630521,40.3205375],[-90.0623279,40.3210348],[-90.0615282,40.3215629],[-90.0605339,40.322097400000004],[-90.0596047,40.3226564],[-90.0588143,40.3230023],[-90.0581317,40.3233008],[-90.0574641,40.323665399999996],[-90.0567321,40.3241048],[-90.0563093,40.324429699999996],[-90.0559794,40.324652],[-90.0556821,40.3249017],[-90.055385,40.3251625],[-90.0549707,40.3256556],[-90.054349,40.3263594],[-90.0538749,40.3270459],[-90.0533758,40.3277546],[-90.0529843,40.3283939],[-90.0525466,40.3291272],[-90.0522699,40.3296859],[-90.0518492,40.3307474],[-90.0515686,40.3312868],[-90.0513773,40.3317126],[-90.0511882,40.3324227],[-90.0506654,40.3333274],[-90.0504395,40.3339438],[-90.0503184,40.3345901],[-90.0502592,40.3350829],[-90.0502456,40.3351837],[-90.0501878,40.335631],[-90.0497507,40.3368968],[-90.0497159,40.3370612],[-90.0496411,40.338541899999996],[-90.0499967,40.3399655],[-90.0505357,40.341322],[-90.051027,40.342567],[-90.0513131,40.34317],[-90.05163160000001,40.34377],[-90.0518628,40.344268400000004],[-90.0521197,40.344835599999996],[-90.0523517,40.3454389],[-90.0525305,40.3461555],[-90.0526825,40.3466763],[-90.052697,40.3471426],[-90.0526725,40.3476918],[-90.052673,40.3481995],[-90.0525604,40.3485505],[-90.0524353,40.3491499],[-90.0523613,40.3493765],[-90.0522169,40.3498076],[-90.0519582,40.35038],[-90.0518625,40.3510537],[-90.0517006,40.3515539],[-90.0516942,40.3521141],[-90.0514098,40.3526314],[-90.0511446,40.3533004],[-90.050907,40.3538175],[-90.0506588,40.3543595],[-90.0504434,40.3549427],[-90.050167,40.3555676],[-90.0498359,40.3561128],[-90.0495982,40.356610599999996],[-90.0492959,40.3571555],[-90.0490254,40.3576204],[-90.0487763,40.3580465],[-90.0485022,40.3585113],[-90.0482105,40.3590204],[-90.0478835,40.3596372],[-90.0475705,40.360201599999996],[-90.047308,40.3607629],[-90.047056,40.3612884],[-90.0468967,40.3616671],[-90.046677,40.3621786],[-90.0465467,40.3625738],[-90.0463784,40.3631899],[-90.0463309,40.3633405],[-90.0462446,40.3636127],[-90.0461363,40.364063],[-90.046017,40.3651797],[-90.0459481,40.3658133],[-90.0451401,40.3674381],[-90.0442746,40.368631300000004],[-90.0435422,40.369537],[-90.042506,40.3705985],[-90.0392976,40.3736939],[-90.03761,40.3754372],[-90.0360059,40.3765592],[-90.0359413,40.376605],[-90.0351904,40.3770223],[-90.0341824,40.3773179],[-90.0329592,40.3777677],[-90.0326586,40.3778594],[-90.0320413,40.378047699999996],[-90.0312418,40.378241700000004],[-90.0304493,40.3784218],[-90.0295575,40.3785796],[-90.0290732,40.3786984],[-90.0284353,40.3788005],[-90.0276748,40.3789115],[-90.0269393,40.378980999999996],[-90.0253135,40.3791703],[-90.02436900000001,40.3792876],[-90.0236379,40.3794564],[-90.0227842,40.379656],[-90.0220096,40.3798002],[-90.0214226,40.37996],[-90.0205006,40.3801793],[-90.0197304,40.3804393],[-90.01901409999999,40.3806742],[-90.0181654,40.3810587],[-90.0175575,40.3813069],[-90.0169607,40.3815992],[-90.0165097,40.3818454],[-90.0156842,40.3821911],[-90.0137881,40.383172],[-90.0134435,40.3833045],[-90.0125467,40.3836492],[-90.0083745,40.3847487],[-90.0066651,40.3851395],[-90.0055362,40.3854575],[-90.0040711,40.3859494],[-90.0024739,40.386628],[-90.0002777,40.3878238],[-90.0001049,40.3878797],[-89.9996129,40.3882184],[-89.9990759,40.3885669],[-89.9980493,40.3890666],[-89.9971189,40.3896596],[-89.9950503,40.3905553],[-89.9936357,40.3908178],[-89.9926659,40.3909557],[-89.98921849999999,40.3913051],[-89.9867683,40.3915842],[-89.9853317,40.3918095],[-89.9844912,40.3921054],[-89.9838819,40.3924514],[-89.983038,40.3930536],[-89.9825891,40.3933741],[-89.9815112,40.3943194],[-89.9811229,40.3947914],[-89.9804047,40.395836],[-89.9796657,40.3972586],[-89.9792051,40.3982428],[-89.9784724,40.3998089],[-89.9780572,40.4008315],[-89.9772298,40.4020172],[-89.9766553,40.4027217],[-89.9755127,40.4040011],[-89.9742219,40.4052617],[-89.9732215,40.406236899999996],[-89.9722082,40.4069073],[-89.9710661,40.4077576],[-89.9710282,40.4077577],[-89.9698873,40.4085266],[-89.9685004,40.4097351],[-89.9666836,40.4111798],[-89.9656551,40.4120364],[-89.9650095,40.412662600000004],[-89.9634201,40.4138608],[-89.9625945,40.4145524],[-89.9608704,40.4158642],[-89.9597196,40.4168],[-89.9596406,40.4168637],[-89.9581607,40.4179952],[-89.9557227,40.4197567],[-89.9536386,40.4212629],[-89.9536081,40.421281],[-89.9524519,40.421983499999996],[-89.9515267,40.4226685],[-89.9496641,40.4238317],[-89.9485927,40.4245297],[-89.9471693,40.425522900000004],[-89.9452795,40.4266916],[-89.9428567,40.4280968],[-89.9408617,40.4292217],[-89.9408222,40.429244],[-89.9384707,40.4305288],[-89.9365806,40.4314284],[-89.9358261,40.4317346],[-89.933611,40.432634],[-89.930836,40.4337864],[-89.9282559,40.4346579],[-89.9277879,40.4348942],[-89.9251879,40.4357588]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"DEWITT","CO_FIPS":39},"geometry":{"type":"Polygon","coordinates":[[[-89.1487939,40.2820954],[-89.1302368,40.282300899999996],[-89.1250678,40.2823591],[-89.1112568,40.2824],[-89.0924897,40.2824361],[-89.0732286,40.2825268],[-89.0541369,40.2831503],[-89.0346426,40.2827717],[-89.0346352,40.282545400000004],[-89.0346297,40.2822873],[-89.0160455,40.2826915],[-89.0159788,40.2826954],[-89.0000524,40.282503500000004],[-88.9967343,40.282442599999996],[-88.97743,40.2829785],[-88.9584382,40.2831291],[-88.9583932,40.2831289],[-88.9390681,40.2830417],[-88.9195601,40.2828609],[-88.9195358,40.282542],[-88.9195312,40.2822233],[-88.9194822,40.2822686],[-88.8999769,40.282643300000004],[-88.8999336,40.282643],[-88.8809269,40.282628],[-88.8808909,40.2826292],[-88.8750121,40.282648],[-88.8617019,40.2826516],[-88.8425581,40.2826559],[-88.8233279,40.2826456],[-88.8232612,40.2826466],[-88.804277,40.2827133],[-88.80422659999999,40.2827144],[-88.7840544,40.2824963],[-88.765032,40.2824212],[-88.7500883,40.2823607],[-88.7500892,40.2822766],[-88.7462644,40.282278500000004],[-88.7459059,40.2822776],[-88.7269115,40.2822753],[-88.7079361,40.2820258],[-88.6888471,40.2819463],[-88.67019930000001,40.282040800000004],[-88.669839,40.2820382],[-88.6507736,40.2817955],[-88.6317064,40.281707],[-88.6127906,40.2818898],[-88.5937771,40.281549999999996],[-88.57475170000001,40.2815686],[-88.5866457,40.267054099999996],[-88.5939337,40.2581909],[-88.5980786,40.2524383],[-88.610043,40.2381206],[-88.6128454,40.2346686],[-88.6218287,40.2235933],[-88.6251199,40.2195347],[-88.6293884,40.2142952],[-88.6301013,40.2134201],[-88.6410848,40.199930800000004],[-88.6492018,40.1899565],[-88.6528495,40.185471899999996],[-88.6645636,40.1710707],[-88.6682001,40.1665979],[-88.6763185,40.1566106],[-88.6879828,40.142255],[-88.6879296,40.1278375],[-88.6879276,40.1277022],[-88.6879364,40.1274083],[-88.6879966,40.1250146],[-88.6880305,40.1131518],[-88.6880299,40.1130483],[-88.6880305,40.112844100000004],[-88.6880569,40.0985401],[-88.7070156,40.0987103],[-88.7261743,40.098840100000004],[-88.7262174,40.0988418],[-88.7453204,40.0988095],[-88.7452857,40.0842525],[-88.7452481,40.069625099999996],[-88.7451686,40.0550566],[-88.7500597,40.0551071],[-88.76438,40.0551875],[-88.7833985,40.055217400000004],[-88.7834362,40.0552176],[-88.8033049,40.0553447],[-88.822446,40.0549482],[-88.8411555,40.0545986],[-88.8414267,40.0545932],[-88.8601144,40.054243299999996],[-88.8603174,40.0542402],[-88.8750627,40.0539617],[-88.8790855,40.0539084],[-88.8791951,40.0539076],[-88.8793837,40.0539031],[-88.8982342,40.0535701],[-88.9181981,40.0532161],[-88.9372356,40.0525741],[-88.956071,40.052023500000004],[-88.9562273,40.0520104],[-88.9750839,40.0514623],[-88.9940497,40.0509075],[-89.0000394,40.0507329],[-89.0128514,40.050392],[-89.0290638,40.0498302],[-89.0476304,40.0497389],[-89.0478243,40.04973],[-89.0480057,40.0497279],[-89.0666627,40.049518],[-89.067038,40.0495139],[-89.0853679,40.0493482],[-89.0856821,40.0493465],[-89.0862388,40.0493416],[-89.104906,40.0491892],[-89.1052849,40.0491863],[-89.123451,40.0490348],[-89.1242177,40.049029000000004],[-89.1251317,40.049022300000004],[-89.1446517,40.0488429],[-89.1449077,40.0634692],[-89.1449075,40.0634996],[-89.1448896,40.0638541],[-89.1451691,40.0780996],[-89.1451762,40.0784832],[-89.1453891,40.0924165],[-89.1453958,40.0928788],[-89.1454161,40.0941815],[-89.1454238,40.1071619],[-89.1454351,40.107751199999996],[-89.1456948,40.1217189],[-89.1456895,40.1224157],[-89.1456876,40.1224433],[-89.1456995,40.1250389],[-89.1458992,40.136336299999996],[-89.1461543,40.1508972],[-89.146157,40.1510627],[-89.1461646,40.1513318],[-89.1465349,40.1655466],[-89.1465498,40.1661482],[-89.1469091,40.180069],[-89.1469166,40.1803739],[-89.1469221,40.1806927],[-89.1471287,40.1945976],[-89.1471337,40.1950447],[-89.1471429,40.195351099999996],[-89.1474969,40.2093005],[-89.1475088,40.2097959],[-89.1475158,40.2101947],[-89.1477093,40.2238842],[-89.1479148,40.2384221],[-89.1479164,40.238453899999996],[-89.1481604,40.2500322],[-89.1482075,40.2524608],[-89.1482187,40.253081699999996],[-89.14849,40.2674126],[-89.1484926,40.2676224],[-89.1484972,40.2677645],[-89.1487939,40.2820954]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"SCHUYLER","CO_FIPS":169},"geometry":{"type":"Polygon","coordinates":[[[-90.4502087,40.2762835],[-90.4505439,40.261527900000004],[-90.4507488,40.247256300000004],[-90.4509806,40.2324517],[-90.4509825,40.2323288],[-90.4512039,40.2180858],[-90.4512034,40.2180513],[-90.4512046,40.2180071],[-90.4513948,40.203462099999996],[-90.4517706,40.188816],[-90.4326418,40.1886935],[-90.4133637,40.1884325],[-90.3946894,40.188230000000004],[-90.3755331,40.1880419],[-90.375096,40.1880451],[-90.356573,40.1878424],[-90.356528,40.1878427],[-90.3375515,40.187761699999996],[-90.3374453,40.187757],[-90.3176629,40.186919599999996],[-90.2984131,40.186354],[-90.2788336,40.1857157],[-90.2580866,40.1852114],[-90.2500102,40.1850048],[-90.24023389999999,40.1846495],[-90.2199213,40.1840074],[-90.2009946,40.1839166],[-90.1998361,40.1839262],[-90.1997478,40.183917],[-90.20041810000001,40.1829444],[-90.2005627,40.1826524],[-90.2010915,40.1815689],[-90.2013518,40.1811603],[-90.2015048,40.1808075],[-90.2015671,40.1805698],[-90.2017824,40.1799683],[-90.2019764,40.179229],[-90.2020346,40.1787609],[-90.2020316,40.1784587],[-90.2020727,40.1782487],[-90.2021417,40.1775984],[-90.2021515,40.1775059],[-90.2021577,40.1768725],[-90.2023007,40.1760617],[-90.2023384,40.175522],[-90.2024685,40.175047899999996],[-90.2025138,40.1745468],[-90.2025834,40.174310399999996],[-90.2026466,40.173616],[-90.2028187,40.1723166],[-90.2028305,40.1720571],[-90.2029916,40.1709053],[-90.20298,40.170470800000004],[-90.2029204,40.1697343],[-90.2028376,40.1693719],[-90.2027794,40.1691238],[-90.2025679,40.1674127],[-90.2024314,40.1667264],[-90.20228900000001,40.1661601],[-90.2021509,40.165297100000004],[-90.2020627,40.164400799999996],[-90.2021162,40.1632883],[-90.20216980000001,40.1630686],[-90.2023976,40.1621138],[-90.2026254,40.1613411],[-90.2031024,40.160314400000004],[-90.2034009,40.159602],[-90.2034999,40.1594317],[-90.203584,40.1592104],[-90.2040612,40.1583811],[-90.2050563,40.1570146],[-90.2057349,40.1561854],[-90.2061889,40.1557357],[-90.2064003,40.1554764],[-90.2065356,40.155343099999996],[-90.207012,40.1549801],[-90.2070816,40.1549259],[-90.2080906,40.1542313],[-90.2085895,40.1539579],[-90.20896450000001,40.1536976],[-90.2101109,40.1530781],[-90.2105663,40.1527677],[-90.2113189,40.1523271],[-90.21210980000001,40.1519471],[-90.2124877,40.151797099999996],[-90.2132942,40.1515384],[-90.2139497,40.1512806],[-90.2147759,40.1510051],[-90.215391,40.150841299999996],[-90.2165467,40.1506136],[-90.217384,40.1505575],[-90.2186845,40.1504226],[-90.219132,40.1503978],[-90.2200989,40.150345099999996],[-90.2204027,40.1503391],[-90.221389,40.1502558],[-90.2219247,40.1502346],[-90.2236004,40.150223],[-90.2244574,40.150146],[-90.226138,40.1500847],[-90.2287583,40.1501224],[-90.2290949,40.1501521],[-90.2297314,40.150148200000004],[-90.2300464,40.1501793],[-90.2306416,40.150179800000004],[-90.23214540000001,40.1502312],[-90.2333335,40.150349500000004],[-90.2348826,40.150602],[-90.2355206,40.150747100000004],[-90.2360087,40.150819999999996],[-90.2364604,40.1508558],[-90.2377216,40.1510839],[-90.2378135,40.151108199999996],[-90.2379957,40.1511581],[-90.2388482,40.1513404],[-90.2392426,40.1513973],[-90.2398411,40.1515385],[-90.2399745,40.1515735],[-90.2402682,40.1516269],[-90.2408149,40.1518001],[-90.2416677,40.1520141],[-90.2420846,40.1521536],[-90.2424025,40.1522841],[-90.2434,40.1525801],[-90.243846,40.152747],[-90.2449737,40.1531083],[-90.2456549,40.1532462],[-90.2461779,40.1533795],[-90.24635789999999,40.1534004],[-90.2469383,40.1535237],[-90.2481143,40.1536915],[-90.2491757,40.1538932],[-90.2501295,40.153963],[-90.2502937,40.154010299999996],[-90.2507152,40.1540794],[-90.2514299,40.1541563],[-90.2522584,40.1542779],[-90.2545412,40.1545159],[-90.2550905,40.154587],[-90.2555349,40.154611700000004],[-90.25648029999999,40.1547326],[-90.256628,40.1547524],[-90.2575891,40.1548345],[-90.257845,40.1548784],[-90.2593043,40.1549602],[-90.2602145,40.1549847],[-90.2605579,40.1549811],[-90.2626626,40.1550421],[-90.2632934,40.155009],[-90.2633154,40.1550517],[-90.2638743,40.1550108],[-90.2647048,40.1549861],[-90.2659243,40.1548444],[-90.2669051,40.1547553],[-90.2674791,40.1546205],[-90.2679029,40.1545625],[-90.2691589,40.154310100000004],[-90.26989760000001,40.1541163],[-90.2708742,40.1538022],[-90.2714337,40.153662],[-90.2717274,40.1535538],[-90.2731298,40.153042400000004],[-90.2737482,40.1527045],[-90.2746179,40.1523248],[-90.2760268,40.1515939],[-90.2762573,40.1514586],[-90.2766034,40.1512121],[-90.2767981,40.1510977],[-90.2769557,40.1510387],[-90.2774742,40.1507772],[-90.2780276,40.1504162],[-90.2790344,40.1499156],[-90.2793365,40.1497522],[-90.2805877,40.1492472],[-90.2810676,40.1490674],[-90.2819153,40.1488189],[-90.2850415,40.148267000000004],[-90.285688,40.1481937],[-90.286018,40.1481184],[-90.287013,40.1480235],[-90.2879656,40.147824],[-90.288181,40.1477881],[-90.2888354,40.1476223],[-90.2896466,40.1474858],[-90.290207,40.147275],[-90.2905317,40.147206600000004],[-90.290738,40.1471639],[-90.291716,40.1468358],[-90.2936496,40.1462627],[-90.2941915,40.1460079],[-90.2947097,40.1457271],[-90.2965972,40.1449003],[-90.29762,40.1444021],[-90.2984064,40.1439898],[-90.2987613,40.143733499999996],[-90.2989414,40.1436039],[-90.29990839999999,40.1431048],[-90.3009153,40.1426413],[-90.3019451,40.142132000000004],[-90.302931,40.1417169],[-90.3033995,40.1414943],[-90.3045946,40.1409812],[-90.3054934,40.1406522],[-90.3064223,40.1402912],[-90.3065886,40.1402101],[-90.3069328,40.1401249],[-90.3074001,40.1399575],[-90.3085566,40.1396861],[-90.3091601,40.1394764],[-90.3094308,40.1394152],[-90.3101947,40.139243],[-90.3109701,40.1391328],[-90.3114364,40.1390261],[-90.3130913,40.1389513],[-90.3142366,40.1389545],[-90.3148088,40.1389906],[-90.31536679999999,40.1390502],[-90.3160606,40.1391875],[-90.3166688,40.1392303],[-90.3174267,40.1393133],[-90.3186911,40.1395116],[-90.3193553,40.1395746],[-90.320464,40.1396759],[-90.3212147,40.1397646],[-90.3230998,40.1396894],[-90.3244114,40.1396113],[-90.3253144,40.1395029],[-90.3257305,40.139413],[-90.3266062,40.1392703],[-90.3272231,40.1391432],[-90.327891,40.1390599],[-90.3285495,40.1389545],[-90.3288079,40.1389072],[-90.3294693,40.138741100000004],[-90.3318453,40.1382208],[-90.3327864,40.1379906],[-90.3330965,40.1379112],[-90.3333831,40.137825],[-90.3346054,40.13735],[-90.3354974,40.137076],[-90.3363468,40.1366974],[-90.3374787,40.1360354],[-90.337573,40.1359533],[-90.3378105,40.1358178],[-90.3380048,40.1356784],[-90.3380921,40.1356171],[-90.3384178,40.1353443],[-90.3384589,40.135317799999996],[-90.3385106,40.1352843],[-90.3392706,40.1348001],[-90.3400016,40.1341409],[-90.3404488,40.133809299999996],[-90.3413174,40.1330897],[-90.3416939,40.1327021],[-90.3424035,40.1320636],[-90.3427801,40.1316884],[-90.3432499,40.1312959],[-90.3434311,40.131115199999996],[-90.343736,40.1307653],[-90.3441996,40.130297],[-90.3445845,40.129870600000004],[-90.3449845,40.1293559],[-90.3453987,40.1288216],[-90.3458662,40.1280883],[-90.3459326,40.1279292],[-90.3460494,40.127776600000004],[-90.3464269,40.1273392],[-90.346942,40.1268263],[-90.3474749,40.1264513],[-90.3481643,40.1260828],[-90.3484839,40.1259087],[-90.3489168,40.1257304],[-90.3493418,40.1254969],[-90.3495795,40.125388900000004],[-90.3500967,40.1252003],[-90.350356,40.1250922],[-90.3504273,40.125043399999996],[-90.350745,40.1250025],[-90.350981,40.1248986],[-90.3512608,40.1248504],[-90.3515971,40.1247852],[-90.3519194,40.124687],[-90.3521414,40.1246157],[-90.3523994,40.124539999999996],[-90.3527288,40.1244362],[-90.3530221,40.1243817],[-90.3531942,40.1243439],[-90.3534158,40.1243167],[-90.3536519,40.1242957],[-90.353967,40.1242631],[-90.3541025,40.1242469],[-90.3542814,40.1242477],[-90.3547396,40.1242382],[-90.3548755,40.1242545],[-90.3550974,40.1242446],[-90.3552115,40.1242445],[-90.3553761,40.1242502],[-90.3554157,40.1242561],[-90.3555336,40.1242732],[-90.3558191,40.1243173],[-90.3560624,40.1243673],[-90.35642730000001,40.1244399],[-90.356713,40.1245123],[-90.3569923,40.1245676],[-90.3571491,40.124600900000004],[-90.3573565,40.1246567],[-90.3575639,40.1247125],[-90.3578712,40.1247792],[-90.3579209,40.1247947],[-90.3580499,40.1248345],[-90.3582355,40.124873199999996],[-90.3584716,40.1249232],[-90.3586076,40.1249457],[-90.3587508,40.124973600000004],[-90.3588365,40.1249958],[-90.358915,40.1250235],[-90.3589438,40.1250288],[-90.3589719,40.1250459],[-90.3589937,40.125062299999996],[-90.3590363,40.1250895],[-90.3592714,40.125212],[-90.3594427,40.1252542],[-90.3597853,40.1253394],[-90.3601279,40.1254245],[-90.3604703,40.125422],[-90.36111700000001,40.1255339],[-90.36157299999999,40.1255596],[-90.3620101,40.1255854],[-90.3625795,40.1255523],[-90.3630348,40.12552],[-90.3634895,40.1254435],[-90.3638303,40.1253831],[-90.3642094,40.1252927],[-90.364569,40.125231400000004],[-90.3648906,40.1251421],[-90.3651536,40.1250498],[-90.3652254,40.125039],[-90.3652819,40.1250282],[-90.3653752,40.1250123],[-90.3655184,40.1249685],[-90.3655973,40.1249465],[-90.3656977,40.1249306],[-90.3657839,40.1249196],[-90.36588330000001,40.1248975],[-90.365998,40.124865],[-90.3661484,40.1248163],[-90.3663059,40.1247613],[-90.3664634,40.124707],[-90.3666066,40.1246577],[-90.3668006,40.124581],[-90.3668401,40.1245766],[-90.3669936,40.1245596],[-90.3673159,40.1244613],[-90.367545,40.1243796],[-90.3677528,40.1243195],[-90.3679964,40.1242487],[-90.3682249,40.124200099999996],[-90.3684405,40.1241178],[-90.3688056,40.1239923],[-90.3690777,40.1238999],[-90.3693851,40.123828700000004],[-90.3698003,40.123758699999996],[-90.37007990000001,40.1236932],[-90.3706384,40.1235794],[-90.3712613,40.1233664],[-90.3715832,40.123235],[-90.37186990000001,40.1230929],[-90.3722357,40.122879],[-90.372522,40.1226982],[-90.3729169,40.1224414],[-90.3731173,40.1222985],[-90.3734036,40.122123200000004],[-90.3736481,40.1219096],[-90.3736979,40.1218658],[-90.3740643,40.121415999999996],[-90.3743223,40.1212023],[-90.374523,40.1210103],[-90.3746738,40.120785],[-90.3748466,40.120587799999996],[-90.3750185,40.1203899],[-90.3751338,40.1201317],[-90.3752425,40.1200494],[-90.3755634,40.1197035],[-90.3759439,40.1190825],[-90.3770689,40.117781199999996],[-90.3771532,40.1176274],[-90.3773176,40.1174068],[-90.3775268,40.117183],[-90.3775619,40.117111],[-90.3782716,40.1162378],[-90.3785077,40.115858],[-90.3788307,40.115389199999996],[-90.3790883,40.1150119],[-90.3799549,40.1136063],[-90.3807135,40.1120565],[-90.380879,40.1116385],[-90.3810713,40.1113584],[-90.3811724,40.1111051],[-90.3813375,40.1108031],[-90.3814878,40.1106115],[-90.3815529,40.110358500000004],[-90.3816166,40.110275200000004],[-90.381853,40.1096442],[-90.3820034,40.1088911],[-90.3821178,40.108556300000004],[-90.3822042,40.1081375],[-90.382485,40.1071819],[-90.3826687,40.1066438],[-90.3827362,40.1064404],[-90.3830289,40.1054281],[-90.3837091,40.1040873],[-90.38440489999999,40.1029782],[-90.3852641,40.1017257],[-90.3855354,40.1012918],[-90.3857791,40.1009553],[-90.3859009,40.1007854],[-90.3860444,40.1006215],[-90.3864026,40.100109599999996],[-90.3876253,40.0986212],[-90.3878773,40.0983736],[-90.3882276,40.0979405],[-90.3884198,40.0977914],[-90.3886571,40.097521900000004],[-90.3889279,40.0971983],[-90.3892426,40.096935200000004],[-90.389278,40.0968935],[-90.3900239,40.0962035],[-90.3906737,40.0954562],[-90.3911119,40.095011299999996],[-90.3912036,40.0948795],[-90.3917615,40.0942433],[-90.3925358,40.0932536],[-90.3929938,40.0925409],[-90.3930502,40.0924521],[-90.3933235,40.0919078],[-90.3935018,40.0913793],[-90.393753,40.0902307],[-90.393739,40.0899838],[-90.3937024,40.0897909],[-90.3933467,40.0888124],[-90.393232,40.0885539],[-90.3930258,40.088158],[-90.3928396,40.0879276],[-90.3926468,40.0876089],[-90.392353,40.0872454],[-90.3921034,40.086981],[-90.3918177,40.0864091],[-90.3917878,40.0863183],[-90.3915396,40.0855957],[-90.3914261,40.0851508],[-90.3913625,40.0843923],[-90.3913343,40.083726],[-90.3914058,40.0835558],[-90.3914477,40.0833195],[-90.3914275,40.0831444],[-90.3914423,40.083039400000004],[-90.3915623,40.0827322],[-90.3919008,40.0816657],[-90.3920071,40.081406799999996],[-90.39223,40.0810008],[-90.3923015,40.0808306],[-90.3929812,40.0796153],[-90.3937029,40.0785997],[-90.3940607,40.0782037],[-90.394208,40.0780674],[-90.3948347,40.07749],[-90.3948558,40.0774512],[-90.3953713,40.077027799999996],[-90.3966222,40.0762483],[-90.3967896,40.0761325],[-90.3971154,40.075907799999996],[-90.39765919999999,40.0755891],[-90.3979305,40.075451799999996],[-90.3980943,40.0753429],[-90.3986604,40.0750847],[-90.3997976,40.0746787],[-90.3999042,40.074590900000004],[-90.4001761,40.0744978],[-90.4003613,40.0743763],[-90.4009543,40.0741179],[-90.4020991,40.0737449],[-90.4028781,40.073427],[-90.4034933,40.0732181],[-90.4042654,40.072916899999996],[-90.4051384,40.0725101],[-90.4063533,40.0720054],[-90.4064586,40.0719535],[-90.4072403,40.0715708],[-90.4075264,40.0714665],[-90.4082188,40.0711231],[-90.408333,40.0710656],[-90.4087053,40.070829599999996],[-90.4093991,40.0704516],[-90.4107501,40.0696492],[-90.4111869,40.0694016],[-90.4115297,40.069243],[-90.4117648,40.069089399999996],[-90.4119522,40.069001],[-90.4125381,40.068617],[-90.4131159,40.0682979],[-90.4133527,40.0681388],[-90.4135385,40.0680614],[-90.4136025,40.0680126],[-90.4139597,40.0678636],[-90.4141254,40.0677602],[-90.41444680000001,40.067617],[-90.414575,40.067529],[-90.415168,40.0672816],[-90.4156405,40.0670185],[-90.4158314,40.0669191],[-90.4167912,40.0664245],[-90.4170564,40.0662389],[-90.4176421,40.065986],[-90.4179128,40.065948],[-90.4190645,40.0655692],[-90.4192429,40.0654809],[-90.4199576,40.0652007],[-90.4206878,40.0648708],[-90.421259,40.0647339],[-90.4218171,40.064563899999996],[-90.422832,40.0641738],[-90.4232511,40.0639483],[-90.4233028,40.0639217],[-90.4242538,40.0635858],[-90.4250619,40.0631738],[-90.4252263,40.0631091],[-90.4256058,40.0628825],[-90.4262051,40.0624321],[-90.4265121,40.0622848],[-90.4272156,40.0618488],[-90.4272922,40.0618013],[-90.4277562,40.0614388],[-90.4283933,40.0607356],[-90.4288363,40.060147],[-90.4294429,40.059042399999996],[-90.4295587,40.058702],[-90.4296948,40.0579972],[-90.4297679,40.0572818],[-90.4297726,40.057228],[-90.4297449,40.0562277],[-90.4296877,40.0557107],[-90.4296226,40.055409],[-90.4294666,40.0548803],[-90.4293879,40.0543635],[-90.4293237,40.054128],[-90.4292597,40.0536386],[-90.429224,40.0535175],[-90.4291947,40.052940899999996],[-90.4291159,40.0521425],[-90.4289442,40.0515215],[-90.4289302,40.0510055],[-90.4288092,40.0505483],[-90.4287173,40.0499833],[-90.4287304,40.0496202],[-90.428726,40.0495637],[-90.4287014,40.0493279],[-90.4287173,40.048905500000004],[-90.4287026,40.0482074],[-90.4286089,40.0472339],[-90.4286388,40.0469204],[-90.4286094,40.0464638],[-90.4286313,40.0451403],[-90.4287383,40.0444081],[-90.4287393,40.0434076],[-90.42879,40.04276],[-90.4287968,40.0427296],[-90.4290976,40.041181699999996],[-90.4291179,40.0408241],[-90.4292476,40.0400434],[-90.4294258,40.039538300000004],[-90.4295181,40.0391871],[-90.4298545,40.0382958],[-90.430047,40.0376526],[-90.4304688,40.0365701],[-90.4309269,40.0355095],[-90.4310761,40.0352571],[-90.4311983,40.0350009],[-90.4312263,40.0349427],[-90.4315347,40.0345097],[-90.4316263,40.0342454],[-90.4317559,40.034002900000004],[-90.4318982,40.0334981],[-90.4323276,40.0324528],[-90.4325421,40.0315735],[-90.4326782,40.0308811],[-90.4327487,40.0306445],[-90.4327784,40.0304525],[-90.4327629,40.0302277],[-90.4327701,40.0299627],[-90.4328774,40.0295285],[-90.4329855,40.0283478],[-90.4329968,40.0282566],[-90.4331918,40.0265936],[-90.4331775,40.0260555],[-90.4332495,40.0258024],[-90.4334428,40.0246914],[-90.4338149,40.023521],[-90.4343723,40.0223837],[-90.4348494,40.0216858],[-90.435065,40.0214384],[-90.4360147,40.0206471],[-90.4362458,40.020485199999996],[-90.4364156,40.0202948],[-90.4365935,40.0201788],[-90.4369856,40.0199701],[-90.4375727,40.0195804],[-90.438043,40.0193173],[-90.4386583,40.019025299999996],[-90.4388859,40.0188662],[-90.4391499,40.018751],[-90.4403008,40.0181139],[-90.4406575,40.0179483],[-90.440921,40.0177888],[-90.4416366,40.0174823],[-90.4421639,40.0171911],[-90.442722,40.0169217],[-90.4439426,40.016400000000004],[-90.4442785,40.0162841],[-90.44461390000001,40.0161352],[-90.4458297,40.0155334],[-90.4458992,40.0154984],[-90.4461926,40.015294499999996],[-90.447278,40.0146028],[-90.448322,40.0140314],[-90.4485212,40.0139042],[-90.4487785,40.0136841],[-90.4496574,40.0132561],[-90.4510283,40.0124475],[-90.4534355,40.011170899999996],[-90.4534639,40.0111459],[-90.4540495,40.0109258],[-90.4542562,40.0108221],[-90.4555989,40.0103213],[-90.455927,40.0101613],[-90.4564473,40.0100247],[-90.4565758,40.0099698],[-90.4572619,40.0097503],[-90.4574617,40.009667300000004],[-90.4592263,40.0091783],[-90.4602122,40.0089702],[-90.4608179,40.0087776],[-90.4616962,40.008569],[-90.4618677,40.0085137],[-90.4621398,40.008464599999996],[-90.4626046,40.008338],[-90.4629324,40.0082939],[-90.46343279999999,40.0081394],[-90.4644756,40.0078922],[-90.4652426,40.007685800000004],[-90.4656467,40.007579],[-90.4663947,40.0074308],[-90.4669956,40.0072768],[-90.4672246,40.007232200000004],[-90.4674308,40.0072167],[-90.4676598,40.0071665],[-90.4683018,40.0070081],[-90.4687164,40.0068805],[-90.4695231,40.0066889],[-90.4698228,40.0065678],[-90.4700946,40.0064966],[-90.4714154,40.0059793],[-90.4718226,40.0058421],[-90.4726146,40.0055016],[-90.4726521,40.0054875],[-90.4739504,40.0050338],[-90.4746635,40.0048306],[-90.4757279,40.0045941],[-90.4766357,40.0044514],[-90.4777351,40.004280800000004],[-90.4781563,40.004247],[-90.47842729999999,40.0042475],[-90.4794697,40.004104999999996],[-90.4806769,40.0040715],[-90.4814629,40.0040774],[-90.4820044,40.0040495],[-90.482583,40.0039784],[-90.4836049,40.0037795],[-90.4840483,40.0036654],[-90.4842682,40.0036097],[-90.4849823,40.0033513],[-90.4854611,40.0032024],[-90.4864248,40.0028231],[-90.487489,40.002454],[-90.4882599,40.0021468],[-90.48873760000001,40.0019261],[-90.4894733,40.0016743],[-90.4907299,40.0012056],[-90.4914927,40.0009646],[-90.4916656,40.000883099999996],[-90.492572,40.0006451],[-90.4928288,40.000535299999996],[-90.4929346,40.0005302],[-90.4937067,40.0003154],[-90.4939485,40.0002816],[-90.4943555,40.0001333],[-90.4944926,40.0000617],[-90.4940709,40.0000598],[-90.4947487,39.999898099999996],[-90.4959813,39.9997704],[-90.5001096,39.9986039],[-90.5001083,39.9985184],[-90.5020092,39.9978164],[-90.50303339999999,39.9974199],[-90.5059044,39.9963108],[-90.5082774,39.9951369],[-90.5105522,39.9938809],[-90.510725,39.9937939],[-90.5108586,39.993727899999996],[-90.5110441,39.9935303],[-90.51138159999999,39.9932942],[-90.5116621,39.9929606],[-90.5120536,39.9924922],[-90.5125693,39.9920531],[-90.5131984,39.9912679],[-90.5134494,39.9905095],[-90.5135137,39.9902454],[-90.5135921,39.990086],[-90.5137302,39.9895852],[-90.5137366,39.989283],[-90.5137949,39.9889747],[-90.5137451,39.9885073],[-90.5137527,39.9882933],[-90.5136104,39.9880061],[-90.5135892,39.9879069],[-90.513648,39.9878761],[-90.5144949,39.9876397],[-90.514623,39.987561299999996],[-90.5147728,39.9875049],[-90.5150628,39.9873326],[-90.5152824,39.9871389],[-90.5154222,39.9868796],[-90.515475,39.9865659],[-90.5153932,39.9862478],[-90.5152534,39.9858861],[-90.5151902,39.9856065],[-90.5151635,39.9854963],[-90.5151525,39.9852383],[-90.515165,39.9851113],[-90.5152134,39.9849797],[-90.5153961,39.984714600000004],[-90.5155941,39.9845155],[-90.5158646,39.984365499999996],[-90.5161843,39.984268900000004],[-90.5163759,39.9842411],[-90.5167403,39.98426],[-90.5173069,39.9843614],[-90.51752139999999,39.9844313],[-90.5180306,39.9846588],[-90.51838359999999,39.9848765],[-90.5188645,39.9851305],[-90.5192019,39.9852669],[-90.5197817,39.9854165],[-90.5201846,39.9856062],[-90.520223,39.985657],[-90.5202998,39.9857598],[-90.5203447,39.985884999999996],[-90.5203755,39.9860283],[-90.5203616,39.9861816],[-90.520314,39.9863586],[-90.5200914,39.9868436],[-90.5199399,39.9872782],[-90.5199429,39.987608],[-90.5200472,39.987872100000004],[-90.5202061,39.9880625],[-90.520328,39.9881829],[-90.520444,39.9882592],[-90.5206298,39.9883349],[-90.52081,39.9883885],[-90.5209808,39.9884091],[-90.5212798,39.9883693],[-90.5215086,39.9883121],[-90.5219419,39.9881345],[-90.522469,39.9879878],[-90.5231653,39.9877568],[-90.5239345,39.9876038],[-90.5248991,39.9875637],[-90.5254272,39.9876102],[-90.5256847,39.9876742],[-90.5262792,39.987720100000004],[-90.5266215,39.987695099999996],[-90.5271055,39.9875446],[-90.5273105,39.98746],[-90.5275883,39.9873154],[-90.5277851,39.9871605],[-90.5278626,39.9870605],[-90.5278967,39.9869401],[-90.5279019,39.9866806],[-90.5278209,39.986544699999996],[-90.5276628,39.9864081],[-90.5273896,39.9862504],[-90.5272166,39.9861967],[-90.5260866,39.9859622],[-90.5256561,39.9858445],[-90.525376,39.985709],[-90.5251827,39.9856168],[-90.5249963,39.9855025],[-90.5248219,39.985355],[-90.5244975,39.9850114],[-90.5239603,39.984344],[-90.5238069,39.9840375],[-90.523771,39.9839109],[-90.5237827,39.98373],[-90.5238162,39.983569599999996],[-90.5238718,39.9834436],[-90.5239349,39.9833436],[-90.5240624,39.9832335],[-90.5244093,39.9830332],[-90.5248207,39.982826700000004],[-90.5255819,39.9825027],[-90.5260227,39.982345699999996],[-90.5268919,39.9821643],[-90.5272558,39.9821501],[-90.5274775,39.9822213],[-90.5279869,39.9824639],[-90.528139,39.9825564],[-90.5285641,39.9829225],[-90.5287817,39.9832008],[-90.5288389,39.983310700000004],[-90.528929,39.983579],[-90.5288756,39.9838541],[-90.5288253,39.9839705],[-90.5288134,39.9841362],[-90.5289106,39.984519],[-90.5289702,39.984673],[-90.5290709,39.9848102],[-90.52933110000001,39.9850604],[-90.5296589,39.9851501],[-90.529704,39.9851635],[-90.5300463,39.9851384],[-90.5302036,39.9851039],[-90.5305875,39.9849805],[-90.5307087,39.9849256],[-90.5315355,39.9843043],[-90.5321158,39.9837555],[-90.5330842,39.9830073],[-90.5332679,39.982808399999996],[-90.5337414,39.9824426],[-90.5339774,39.9823854],[-90.5341188,39.9823676],[-90.5343055,39.9823784],[-90.534699,39.9825405],[-90.535009,39.9827572],[-90.5351398,39.982872],[-90.5353715,39.983134899999996],[-90.535884,39.9835817],[-90.5364291,39.9839247],[-90.536882,39.984102899999996],[-90.5372329,39.9841771],[-90.5379686,39.984188599999996],[-90.5381959,39.9841549],[-90.5386447,39.9840529],[-90.5389643,39.9839508],[-90.5393138,39.9838055],[-90.5395183,39.9836892],[-90.5398022,39.9834783],[-90.5399927,39.9832627],[-90.5401123,39.9830974],[-90.54032839999999,39.9826719],[-90.5404538,39.9824182],[-90.5405434,39.9821759],[-90.5408153,39.9816408],[-90.5411443,39.9810887],[-90.5412716,39.980962],[-90.5414206,39.9808447],[-90.5417462,39.9806666],[-90.5421511,39.9805153],[-90.5425715,39.9804357],[-90.5426499,39.980401900000004],[-90.5431145,39.9803992],[-90.5434001,39.980424299999996],[-90.5443655,39.9805662],[-90.5454599,39.9807014],[-90.5464049,39.9809152],[-90.5467143,39.9810946],[-90.5474205,39.981650099999996],[-90.5479081,39.981866600000004],[-90.5482322,39.982067900000004],[-90.5486177,39.9824123],[-90.5486941,39.9824834],[-90.548939,39.9826675],[-90.5495784,39.9829544],[-90.5500148,39.9831106],[-90.5505521,39.983289400000004],[-90.5512902,39.9834594],[-90.5515251,39.9834574],[-90.5528554,39.9835256],[-90.5533897,39.9835001],[-90.554296,39.983412],[-90.555236,39.983289],[-90.5561435,39.9832726],[-90.5573932,39.9833512],[-90.558271,39.9832688],[-90.5587699,39.9831663],[-90.5595583,39.9828639],[-90.5603617,39.9826097],[-90.5606476,39.9825367],[-90.5613902,39.9825315],[-90.5616829,39.9825564],[-90.5621828,39.9826306],[-90.5627425,39.982752500000004],[-90.5632866,39.9829036],[-90.5642194,39.983254],[-90.5646275,39.9834325],[-90.5653226,39.9836029],[-90.5665234,39.9837659],[-90.5675323,39.9838134],[-90.5677349,39.9838088],[-90.5680883,39.9838042],[-90.5686596,39.9837397],[-90.5692069,39.9836368],[-90.5697338,39.9834843],[-90.5703887,39.9832548],[-90.5713394,39.9827853],[-90.57195,39.9825948],[-90.5726063,39.9824578],[-90.574601,39.9821029],[-90.5754408,39.9818882],[-90.5758182,39.9818144],[-90.5761174,39.9817896],[-90.5764377,39.9817384],[-90.5770954,39.981695099999996],[-90.5778575,39.9815571],[-90.5785541,39.9813658],[-90.5787687,39.9813252],[-90.5790522,39.9812081],[-90.5791234,39.9811743],[-90.579515,39.9810948],[-90.5797632,39.9810222],[-90.5802538,39.9808424],[-90.5811905,39.9804005],[-90.5822853,39.979969600000004],[-90.5826975,39.9798347],[-90.5830947,39.9796503],[-90.5837406,39.9793104],[-90.5841237,39.9791426],[-90.5843877,39.9790477],[-90.584521,39.9789706],[-90.5852466,39.9786838],[-90.5856316,39.9786375],[-90.5860614,39.978706700000004],[-90.5872927,39.9789893],[-90.587615,39.9790636],[-90.5884298,39.9792052],[-90.5889663,39.9792126],[-90.5892585,39.9792003],[-90.5896649,39.979152400000004],[-90.5906565,39.9791294],[-90.591949,39.9791906],[-90.5924789,39.9792368],[-90.5929375,39.979309799999996],[-90.5945902,39.9796934],[-90.5956438,39.979961],[-90.5959009,39.9799972],[-90.5965242,39.980164],[-90.5965964,39.9801909],[-90.5967905,39.9803326],[-90.5969506,39.9805892],[-90.5971673,39.9807914],[-90.5974069,39.9809755],[-90.5976005,39.981078600000004],[-90.5980163,39.98117],[-90.5982655,39.9811566],[-90.5988699,39.9810364],[-90.5996183,39.9809439],[-90.5999124,39.980941200000004],[-90.6004029,39.9808773],[-90.6007312,39.9808742],[-90.6012825,39.9809146],[-90.6019407,39.9810203],[-90.6024536,39.98101],[-90.6031122,39.9810273],[-90.6038628,39.981071299999996],[-90.6044487,39.9811445],[-90.6047126,39.9811586],[-90.6062427,39.981378899999996],[-90.6062912,39.9813812],[-90.6068443,39.9814174],[-90.6069865,39.9814492],[-90.607209,39.9815686],[-90.6076725,39.982061099999996],[-90.6077967,39.982202],[-90.607914,39.9824714],[-90.6079257,39.9828715],[-90.6077866,39.9831475],[-90.6071054,39.9839722],[-90.6066944,39.9847558],[-90.6064673,39.985252],[-90.6063666,39.9854682],[-90.6063059,39.9855999],[-90.6059627,39.9866961],[-90.6059229,39.9869049],[-90.605884,39.9872792],[-90.60589590000001,39.9881417],[-90.6059883,39.9893345],[-90.6061734,39.990372],[-90.6060882,39.9908834],[-90.6060205,39.9911421],[-90.6057719,39.9918703],[-90.6055496,39.9923389],[-90.6051025,39.9931118],[-90.6048012,39.99357],[-90.6043623,39.994409],[-90.603915,39.9951708],[-90.6034505,39.9962075],[-90.6032628,39.9967033],[-90.6031335,39.9971502],[-90.6030137,39.9978593],[-90.6030027,39.9980692],[-90.6028726,39.998581],[-90.6028566,39.9989331],[-90.6028037,39.999335200000004],[-90.6027032,39.999786],[-90.6025858,40.0000804],[-90.6026253,40.0000807],[-90.6024838,40.0003276],[-90.6024182,40.0004856],[-90.6022597,40.0011329],[-90.6022123,40.00143],[-90.6020733,40.0017142],[-90.6019996,40.0019343],[-90.6018914,40.0025867],[-90.6019587,40.0034403],[-90.6020342,40.003676999999996],[-90.6023606,40.004344599999996],[-90.6023531,40.0044372],[-90.6025506,40.004669899999996],[-90.6027051,40.0047968],[-90.6035341,40.0052486],[-90.60464400000001,40.0056467],[-90.6053419,40.005860999999996],[-90.6060296,40.0061181],[-90.6061107,40.0061395],[-90.606273,40.006186299999996],[-90.6068185,40.0064157],[-90.6078866,40.0067756],[-90.6081561,40.0069097],[-90.6082758,40.0069872],[-90.6083603,40.0071092],[-90.6086117,40.0075719],[-90.6088711,40.007975200000004],[-90.6094474,40.0086667],[-90.6096526,40.0088221],[-90.61009250000001,40.0090609],[-90.6113651,40.0095264],[-90.6119756,40.0097732],[-90.6121387,40.0098738],[-90.6123366,40.0100168],[-90.6125554,40.0102328],[-90.6131862,40.0106284],[-90.613697,40.0109231],[-90.6139013,40.0111282],[-90.6143965,40.011461600000004],[-90.6146856,40.011809400000004],[-90.6148625,40.0119871],[-90.6150243,40.0121139],[-90.6152143,40.0123247],[-90.6154895,40.0125857],[-90.6159776,40.0129233],[-90.6160987,40.0129746],[-90.6163927,40.0129539],[-90.6165502,40.0128185],[-90.6167247,40.0126154],[-90.6169991,40.012381],[-90.6171287,40.0122942],[-90.6172286,40.0122573],[-90.6173576,40.0122409],[-90.6176574,40.0122492],[-90.6179784,40.0123441],[-90.6182531,40.0125775],[-90.6184085,40.012754],[-90.6185209,40.0129365],[-90.6187361,40.0134879],[-90.6188236,40.0137961],[-90.6188872,40.0145173],[-90.61899149999999,40.0153139],[-90.6189941,40.0153677],[-90.6190126,40.0158478],[-90.6189647,40.0162209],[-90.618845,40.0167036],[-90.6185036,40.0176853],[-90.6183705,40.0180039],[-90.6181582,40.0184199],[-90.6179368,40.0190555],[-90.6175554,40.0197836],[-90.6173365,40.0201237],[-90.6170904,40.0204517],[-90.6167646,40.0207294],[-90.6165062,40.0208478],[-90.61617,40.0209227],[-90.6159837,40.0209438],[-90.6154983,40.020896],[-90.6151346,40.020827600000004],[-90.6143598,40.0205244],[-90.6139274,40.020313200000004],[-90.6134679,40.0199739],[-90.6132141,40.0197031],[-90.6129074,40.019151199999996],[-90.6123107,40.0183123],[-90.6119011,40.0178359],[-90.611781,40.017736299999996],[-90.611569,40.0176085],[-90.6113562,40.0175457],[-90.6112054,40.0175402],[-90.6109908,40.0175878],[-90.6107396,40.017706000000004],[-90.6101176,40.0182128],[-90.60978539999999,40.018540200000004],[-90.6090303,40.0194747],[-90.6088131,40.0196989],[-90.60833099999999,40.020085699999996],[-90.6080786,40.020244],[-90.6077895,40.0204606],[-90.60753629999999,40.0206796],[-90.607276,40.0210133],[-90.6069749,40.0216095],[-90.6068083,40.0223121],[-90.6066901,40.0226679],[-90.6065132,40.0230573],[-90.6060838,40.0237141],[-90.6058855,40.0241134],[-90.6058042,40.0243059],[-90.605709,40.0245304],[-90.60561799999999,40.024903800000004],[-90.6056279,40.0252984],[-90.6056601,40.0255189],[-90.6056449,40.0255798],[-90.605771,40.0261748],[-90.6058137,40.0263772],[-90.6059089,40.026724099999996],[-90.606297,40.0276561],[-90.6066105,40.0282907],[-90.6069811,40.0289096],[-90.60738190000001,40.0293958],[-90.6077921,40.0297949],[-90.6083635,40.0302822],[-90.6090474,40.0310679],[-90.6098791,40.0318922],[-90.6102104,40.0322962],[-90.6106407,40.0327117],[-90.6107476,40.032772800000004],[-90.6110023,40.0328739],[-90.6112169,40.0329353],[-90.6114163,40.0329431],[-90.6117387,40.0328959],[-90.6118832,40.0328408],[-90.6119968,40.0327597],[-90.61222240000001,40.0324981],[-90.6125144,40.0320054],[-90.6127718,40.0314842],[-90.613273,40.0308336],[-90.6133956,40.0306379],[-90.6135547,40.0304846],[-90.6137092,40.0302651],[-90.6140786,40.0299028],[-90.6146336,40.029359400000004],[-90.6148286,40.0292071],[-90.6151595,40.0290177],[-90.6152334,40.0289245],[-90.6153589,40.0285797],[-90.6154553,40.0282062],[-90.6156691,40.0277736],[-90.6158005,40.0275709],[-90.6159819,40.0273525],[-90.6161763,40.0271616],[-90.6164511,40.0269438],[-90.6167954,40.026808],[-90.6170816,40.0267446],[-90.6177395,40.0266942],[-90.6185047,40.0267215],[-90.6200861,40.026948000000004],[-90.6206361,40.0269897],[-90.6209303,40.0269814],[-90.6212453,40.0269177],[-90.622155,40.0266704],[-90.6226565,40.026493099999996],[-90.6229085,40.0264231],[-90.6232019,40.0263651],[-90.6236521,40.0263401],[-90.6242022,40.0262783],[-90.6244616,40.026226199999996],[-90.6249061,40.0260743],[-90.6249437,40.026067],[-90.6251084,40.026036500000004],[-90.6256674,40.02586],[-90.6259985,40.0256871],[-90.6262663,40.0254914],[-90.6265101,40.0253566],[-90.6269929,40.0251298],[-90.6275387,40.0249134],[-90.6285959,40.0243569],[-90.6290503,40.024042],[-90.6293815,40.0238747],[-90.6299976,40.0236825],[-90.6301765,40.0236449],[-90.6303126,40.0236243],[-90.630462,40.0236477],[-90.6306045,40.0236932],[-90.6308312,40.0238373],[-90.6309658,40.0239478],[-90.6312755,40.0243354],[-90.6316954,40.0249979],[-90.6319796,40.025587200000004],[-90.6323045,40.026474199999996],[-90.6324411,40.026925500000004],[-90.6324937,40.027179000000004],[-90.6326459,40.0276025],[-90.6327995,40.0284387],[-90.6329182,40.0286749],[-90.63311350000001,40.0289794],[-90.6333614,40.0291026],[-90.6344502,40.0294952],[-90.6349921,40.029593500000004],[-90.6357836,40.0296935],[-90.6362546,40.0297345],[-90.6379176,40.0297765],[-90.6383266,40.0297629],[-90.6390683,40.0297806],[-90.639453,40.0298155],[-90.6401263,40.0298214],[-90.6410033,40.0298834],[-90.641559,40.0299428],[-90.642358,40.0300648],[-90.6432284,40.0301544],[-90.6437057,40.030251899999996],[-90.6441112,40.0303543],[-90.6443042,40.0304048],[-90.6447323,40.0304628],[-90.6455031,40.0305022],[-90.6460175,40.0305607],[-90.6464372,40.0306464],[-90.6466733,40.0307034],[-90.6470073,40.030821599999996],[-90.6475825,40.0310838],[-90.649117,40.0317174],[-90.6498769,40.0320799],[-90.6507875,40.0323236],[-90.6522939,40.0329892],[-90.6525931,40.0330622],[-90.6528071,40.0330864],[-90.6532201,40.0331996],[-90.6535407,40.0332627],[-90.6538608,40.0334073],[-90.6541023,40.0335691],[-90.6542625,40.0338118],[-90.6543719,40.0341309],[-90.654375,40.034538],[-90.6542817,40.0350854],[-90.654163,40.0353984],[-90.6540912,40.0355068],[-90.6533043,40.0372146],[-90.6530631,40.0376075],[-90.6527515,40.0379845],[-90.6525184,40.0383276],[-90.6522838,40.0386887],[-90.6521081,40.0390327],[-90.6519734,40.039465899999996],[-90.6519286,40.0396844],[-90.6519314,40.039964499999996],[-90.6519983,40.040317200000004],[-90.6520888,40.0404708],[-90.6523219,40.0406714],[-90.6525007,40.0407387],[-90.6529781,40.0408361],[-90.6532778,40.0408263],[-90.6538228,40.0407768],[-90.6539718,40.0407781],[-90.6541718,40.0408176],[-90.6556856,40.0408345],[-90.6568205,40.0409545],[-90.6578054,40.0410167],[-90.6585344,40.0411268],[-90.6593515,40.0413534],[-90.6594869,40.0414031],[-90.6597646,40.041581199999996],[-90.6598283,40.0416316],[-90.6599109,40.0418516],[-90.6597565,40.042174700000004],[-90.6596591,40.042469600000004],[-90.6594264,40.0428417],[-90.6593007,40.0431645],[-90.6591731,40.0435866],[-90.6591577,40.0437399],[-90.6592017,40.044119],[-90.6593527,40.0446751],[-90.6595267,40.0449894],[-90.659576,40.0450344],[-90.6596544,40.0451109],[-90.6602913,40.0456208],[-90.6603957,40.0457426],[-90.6605651,40.0459976],[-90.6606896,40.0462448],[-90.6609078,40.0465214],[-90.6612536,40.0467982],[-90.6615453,40.0469554],[-90.66173069999999,40.0469839],[-90.6622028,40.0469765],[-90.6629549,40.0468504],[-90.6633746,40.0468256],[-90.6649976,40.0469214],[-90.6652247,40.046973],[-90.6655677,40.0469751],[-90.6657325,40.04695],[-90.666156,40.046827199999996],[-90.6667716,40.0467052],[-90.667417,40.0465346],[-90.6677973,40.046410800000004],[-90.6679633,40.046347],[-90.6680786,40.0462645],[-90.6681885,40.0460743],[-90.6682127,40.0459099],[-90.6681846,40.0453002],[-90.6682199,40.0451605],[-90.66823,40.045119],[-90.6682263,40.0447892],[-90.6683153,40.0445316],[-90.6684461,40.0444061],[-90.668777,40.0442221],[-90.6690499,40.0441145],[-90.6694218,40.0440184],[-90.66968729999999,40.0440047],[-90.6701081,40.0440461],[-90.6707418,40.0442551],[-90.6716039,40.0444812],[-90.6720157,40.044627500000004],[-90.6733473,40.0452298],[-90.6740688,40.0455276],[-90.6743895,40.0456997],[-90.6744961,40.0457386],[-90.6750055,40.046028899999996],[-90.6751688,40.046133499999996],[-90.6753256,40.0462727],[-90.6754377,40.0464275],[-90.6755121,40.046686199999996],[-90.6756455,40.047466],[-90.6760273,40.0483813],[-90.6763549,40.0489659],[-90.6765244,40.0492195],[-90.6771442,40.0498771],[-90.6773974,40.0501989],[-90.677697,40.050821],[-90.6779137,40.0512122],[-90.6781317,40.0519994],[-90.6781768,40.0524391],[-90.6781221,40.0528123],[-90.6780541,40.053042],[-90.6778856,40.0533763],[-90.6776354,40.0539832],[-90.6772189,40.0547326],[-90.6768712,40.055092099999996],[-90.6764442,40.055439899999996],[-90.6759741,40.0559911],[-90.67577610000001,40.0562856],[-90.675557,40.0567128],[-90.67544290000001,40.0571887],[-90.6754487,40.057321099999996],[-90.6755118,40.0574419],[-90.6756248,40.0575415],[-90.6759175,40.0576435],[-90.6764508,40.0577458],[-90.6765864,40.0578024],[-90.6769409,40.058057],[-90.677313,40.0586094],[-90.6773754,40.0586874],[-90.6775222,40.0589841],[-90.6776535,40.0593153],[-90.677694,40.0594805],[-90.6776851,40.0596945],[-90.6776559,40.0597762],[-90.6776028,40.0598237],[-90.6774595,40.0599507],[-90.6771434,40.0601622],[-90.6768265,40.060324],[-90.6759195,40.0608547],[-90.6757671,40.0609804],[-90.6754335,40.0614281],[-90.6749021,40.0620833],[-90.6747997,40.0622969],[-90.6747307,40.0626743],[-90.6747048,40.0629547],[-90.6747759,40.0631196],[-90.6750127,40.063534000000004],[-90.6752454,40.0638035],[-90.6754935,40.0639266],[-90.6760423,40.0640964],[-90.6763626,40.0642354],[-90.6765599,40.0644349],[-90.6766925,40.0646282],[-90.6768517,40.065019899999996],[-90.67693919999999,40.0655199],[-90.6769014,40.0661565],[-90.6768041,40.0665618],[-90.6766416,40.0670437],[-90.6764284,40.0675039],[-90.6761285,40.0679347],[-90.6756352,40.0685013],[-90.6750179,40.0692871],[-90.6747863,40.0696095],[-90.6747348,40.0696473],[-90.6746393,40.0698387],[-90.6743813,40.0705188],[-90.6742809,40.0710663],[-90.6742831,40.0714071],[-90.674173,40.072229300000004],[-90.6740918,40.0724261],[-90.6740074,40.0728547],[-90.6739264,40.073057],[-90.6733104,40.0743451],[-90.6732653,40.0744408],[-90.6729737,40.0749377],[-90.6725841,40.0756978],[-90.6722213,40.0762396],[-90.6718941,40.0766485],[-90.6715224,40.0771945],[-90.6713752,40.077523],[-90.6713224,40.0776933],[-90.6712973,40.078016500000004],[-90.6713908,40.0784516],[-90.6714928,40.0788522],[-90.67170780000001,40.079464099999996],[-90.6721463,40.080434],[-90.6723009,40.0806547],[-90.6724545,40.0808146],[-90.6727892,40.0809603],[-90.673347,40.081008600000004],[-90.6740912,40.0809322],[-90.6770514,40.0803784],[-90.67984129999999,40.0796372],[-90.6806869,40.0795004],[-90.681672,40.079432600000004],[-90.6818389,40.0794213],[-90.6835367,40.0792208],[-90.6849908,40.0789523],[-90.6859359,40.0788601],[-90.68674970000001,40.078861599999996],[-90.6871294,40.0788978],[-90.6877352,40.0790283],[-90.6887189,40.0791951],[-90.6894121,40.0792888],[-90.6913984,40.0793641],[-90.6924135,40.079371800000004],[-90.6932341,40.0794546],[-90.6949714,40.0795668],[-90.6953207,40.0796184],[-90.6957194,40.0797151],[-90.6974134,40.0803438],[-90.6986654,40.0808583],[-90.6996134,40.0811399],[-90.7004095,40.0814699],[-90.700656,40.0815944],[-90.7007231,40.0816309],[-90.7009999,40.0817427],[-90.7016527,40.0821003],[-90.702524,40.082720800000004],[-90.7031342,40.0831051],[-90.7040215,40.0837212],[-90.7042989,40.083866],[-90.7050087,40.08419],[-90.7053496,40.0843728],[-90.7056202,40.0845398],[-90.7059387,40.0847781],[-90.7060656,40.0849493],[-90.7060779,40.0850375],[-90.7060635,40.085137],[-90.7059969,40.0852342],[-90.7053537,40.0858563],[-90.7050643,40.0860565],[-90.7047475,40.086230900000004],[-90.70448880000001,40.0864364],[-90.7042918,40.0866826],[-90.7042668,40.0870058],[-90.7043333,40.0874191],[-90.7045198,40.0880244],[-90.7047076,40.0883937],[-90.7048827,40.0886472],[-90.7051377,40.0888516],[-90.7052588,40.0888918],[-90.7055665,40.0889218],[-90.7065826,40.0888742],[-90.70715440000001,40.088900100000004],[-90.7074954,40.0889794],[-90.7081072,40.0892422],[-90.7081874,40.089311800000004],[-90.708702,40.0897688],[-90.7090678,40.090243900000004],[-90.7092574,40.0906077],[-90.7093523,40.090904800000004],[-90.7094117,40.0913223],[-90.7094107,40.09147],[-90.7093096,40.0920686],[-90.7090159,40.092746399999996],[-90.7088692,40.092988],[-90.7083655,40.0933685],[-90.7082278,40.0934058],[-90.7079994,40.0933929],[-90.7076435,40.0932806],[-90.7071961,40.0930741],[-90.7064324,40.0928652],[-90.7060555,40.0927849],[-90.7056405,40.0927877],[-90.7053542,40.0928569],[-90.7044339,40.0931464],[-90.7042541,40.0932434],[-90.703731,40.093437800000004],[-90.7027994,40.09349],[-90.7015956,40.093700999999996],[-90.7011302,40.0938078],[-90.7006342,40.0940074],[-90.7005125,40.094039],[-90.7004145,40.0940842],[-90.7001881,40.09419],[-90.6998563,40.0944348],[-90.6995944,40.0947728],[-90.6994993,40.0949918],[-90.6993867,40.0954415],[-90.6993887,40.0957657],[-90.6994767,40.0962878],[-90.699465,40.096546000000004],[-90.6994712,40.0966991],[-90.6994994,40.0967706],[-90.6995073,40.0972328],[-90.6994811,40.0975891],[-90.6993468,40.0980334],[-90.699245,40.0981752],[-90.698595,40.0987297],[-90.6981821,40.0991658],[-90.6978163,40.099739400000004],[-90.697649,40.1000405],[-90.6975815,40.100193000000004],[-90.6974781,40.1005501],[-90.6974187,40.1006487],[-90.6972473,40.100718],[-90.696933,40.100726699999996],[-90.696702,40.1007746],[-90.6964362,40.1008877],[-90.6963722,40.1009256],[-90.6962131,40.101077599999996],[-90.6961242,40.1012427],[-90.69613,40.101368300000004],[-90.6962216,40.1014736],[-90.69650730000001,40.1015742],[-90.696821,40.1016373],[-90.6971125,40.1017599],[-90.6973017,40.1020036],[-90.6973642,40.1021851],[-90.6973556,40.1023163],[-90.6972733,40.1026511],[-90.6972441,40.1027273],[-90.6971558,40.1028206],[-90.697006,40.1028856],[-90.6962308,40.103054900000004],[-90.6960152,40.1031634],[-90.695893,40.1032667],[-90.6958263,40.1033599],[-90.6957589,40.1036227],[-90.6957733,40.1037261],[-90.7002428,40.1038492],[-90.7193949,40.1042109],[-90.7384881,40.1046805],[-90.7501095,40.1049654],[-90.7574808,40.1050433],[-90.7575222,40.1050442],[-90.7575726,40.1050506],[-90.7767565,40.1055269],[-90.7962212,40.1059115],[-90.8149504,40.1053102],[-90.8151229,40.1053055],[-90.8153672,40.1053014],[-90.8338355,40.1050698],[-90.8345452,40.1050618],[-90.8527493,40.1048303],[-90.8533296,40.1048237],[-90.8537106,40.1048221],[-90.8723599,40.1047522],[-90.8731343,40.104746],[-90.875154,40.1047336],[-90.8916045,40.1046185],[-90.8918651,40.104616899999996],[-90.8921168,40.1046222],[-90.9133565,40.104500099999996],[-90.9132011,40.1191011],[-90.9130709,40.1250077],[-90.9129362,40.1338013],[-90.9129371,40.1338413],[-90.9127642,40.1480296],[-90.91275830000001,40.1484492],[-90.9127567,40.148547199999996],[-90.912442,40.1628434],[-90.91243539999999,40.1631388],[-90.9124349,40.163290599999996],[-90.9122605,40.177586399999996],[-90.9122567,40.1778445],[-90.9122558,40.17789],[-90.9118967,40.1929345],[-90.9118921,40.1930615],[-90.91163159999999,40.207559599999996],[-90.9116253,40.2078729],[-90.9116246,40.2079253],[-90.9111831,40.222295700000004],[-90.9111738,40.2225442],[-90.9111733,40.2226091],[-90.9108429,40.237225],[-90.9108322,40.2376778],[-90.9108324,40.2377744],[-90.9106448,40.250113],[-90.9106389,40.2519567],[-90.9106382,40.2520988],[-90.9106339,40.2523307],[-90.9103275,40.2662713],[-90.9103218,40.2665198],[-90.9103079,40.266993299999996],[-90.9097344,40.2843839],[-90.9097351,40.2844157],[-90.8890547,40.2838992],[-90.8890151,40.283898199999996],[-90.8887789,40.2838913],[-90.8751184,40.2835509],[-90.8698618,40.2833191],[-90.8697752,40.2833146],[-90.8695319,40.2833091],[-90.8505389,40.2828023],[-90.8502973,40.2827968],[-90.84985209999999,40.282788],[-90.8315075,40.2824377],[-90.8312985,40.2824346],[-90.831019,40.2824253],[-90.8309487,40.2824233],[-90.8120509,40.2818637],[-90.7929171,40.2810954],[-90.79285229999999,40.2810947],[-90.7732119,40.281071],[-90.7726588,40.2810714],[-90.7722246,40.2810678],[-90.7541288,40.2809692],[-90.7536621,40.2809673],[-90.7529538,40.280949899999996],[-90.7500988,40.2808862],[-90.73501279999999,40.2806288],[-90.7346505,40.2806229],[-90.7343567,40.2806136],[-90.7159876,40.280112],[-90.7157173,40.2801051],[-90.7154414,40.28009],[-90.6967476,40.2791278],[-90.6965637,40.279118600000004],[-90.6961059,40.2791067],[-90.6778127,40.2786757],[-90.6600495,40.278689299999996],[-90.65961,40.2786908],[-90.6592875,40.2786898],[-90.6401869,40.278658300000004],[-90.6250626,40.2786329],[-90.6210139,40.278594],[-90.6019489,40.278413799999996],[-90.5829159,40.2781917],[-90.5828798,40.2781879],[-90.5640174,40.2783861],[-90.5457802,40.2782392],[-90.5456469,40.278239],[-90.5453639,40.2782346],[-90.5267267,40.2779489],[-90.5264384,40.277944500000004],[-90.5077274,40.2776565],[-90.5075833,40.2776549],[-90.5074355,40.2776507],[-90.4893664,40.2771321],[-90.4888509,40.277115699999996],[-90.4693218,40.276646299999996],[-90.4691688,40.27666],[-90.4502087,40.2762835]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"HANCOCK","CO_FIPS":67},"geometry":{"type":"Polygon","coordinates":[[[-91.18455230000001,40.6378587],[-91.1755914,40.6376496],[-91.15661539999999,40.6375228],[-91.1465357,40.6372485],[-91.1368538,40.6372506],[-91.1364787,40.637239199999996],[-91.1190504,40.6367555],[-91.1189525,40.6367513],[-91.101062,40.6361567],[-91.0996723,40.636128400000004],[-91.0988526,40.6360842],[-91.0801726,40.635715],[-91.0792582,40.6356416],[-91.0605786,40.6352749],[-91.0604498,40.6352683],[-91.0600638,40.635254],[-91.0414177,40.6349169],[-91.0412294,40.6349194],[-91.041059,40.6349119],[-91.0407726,40.6349018],[-91.0222014,40.6345015],[-91.0220205,40.6345093],[-91.0012365,40.6354404],[-91.0010394,40.6354505],[-90.9818412,40.636451199999996],[-90.9814303,40.6364632],[-90.9724394,40.63666],[-90.9628224,40.6372239],[-90.9627102,40.6372308],[-90.9619068,40.6372613],[-90.9432437,40.6375685],[-90.9425975,40.6375804],[-90.9343651,40.6374258],[-90.9298461,40.6374827],[-90.9291214,40.6375576],[-90.9237804,40.6376242],[-90.9232915,40.6376301],[-90.9137574,40.6377516],[-90.9042009,40.639182],[-90.9041084,40.6391775],[-90.9041076,40.639136199999996],[-90.9045327,40.6250205],[-90.9045483,40.6243637],[-90.9045618,40.6237799],[-90.9048676,40.609678],[-90.9048756,40.6092709],[-90.9048807,40.6091618],[-90.9053397,40.5949503],[-90.9053447,40.5947502],[-90.9053507,40.594511499999996],[-90.905664,40.5799911],[-90.9056671,40.5797855],[-90.9058904,40.5652979],[-90.9061102,40.5508142],[-90.9061124,40.550748],[-90.9063218,40.536027000000004],[-90.9063248,40.5358186],[-90.9065304,40.5212714],[-90.9065311,40.5212135],[-90.9065359,40.5210037],[-90.9067973,40.5067179],[-90.9068032,40.5064315],[-90.9068035,40.5064018],[-90.9069205,40.4999627],[-90.9069404,40.4919477],[-90.9071013,40.47726],[-90.9073536,40.4626249],[-90.9075049,40.4442586],[-90.9075049,40.4441717],[-90.9075058,40.4441248],[-90.9077423,40.429699299999996],[-90.9077437,40.4295903],[-90.9077461,40.4294861],[-90.9080087,40.4152416],[-90.9080089,40.4151643],[-90.9080111,40.4150056],[-90.9081366,40.4003674],[-90.90813610000001,40.400252800000004],[-90.9081379,40.4001631],[-90.9081978,40.3857628],[-90.9081994,40.3855738],[-90.9082404,40.3750481],[-90.9083924,40.3708917],[-90.9085197,40.358753300000004],[-90.9085217,40.3584028],[-90.9085248,40.3581143],[-90.9086341,40.3434868],[-90.9090844,40.3294995],[-90.9091017,40.3289294],[-90.9091058,40.3285058],[-90.9092389,40.3143538],[-90.9092404,40.3140681],[-90.9092458,40.3138031],[-90.9094626,40.2993326],[-90.909467,40.2990193],[-90.9094706,40.298839900000004],[-90.9097351,40.2844157],[-90.9097344,40.2843839],[-90.9103079,40.266993299999996],[-90.9103218,40.2665198],[-90.9103275,40.2662713],[-90.9106339,40.2523307],[-90.9106382,40.2520988],[-90.9106389,40.2519567],[-90.9106448,40.250113],[-90.9108324,40.2377744],[-90.9108322,40.2376778],[-90.9108429,40.237225],[-90.9111733,40.2226091],[-90.9111738,40.2225442],[-90.9111831,40.222295700000004],[-90.9116246,40.2079253],[-90.9116253,40.2078729],[-90.91163159999999,40.207559599999996],[-90.9118921,40.1930615],[-90.9118967,40.1929345],[-90.9308793,40.1931332],[-90.9312861,40.193138],[-90.9500924,40.193333],[-90.9503642,40.1933366],[-90.9506144,40.193339],[-90.9689062,40.1936174],[-90.9694498,40.1936259],[-90.969637,40.1936277],[-90.9880377,40.1939404],[-90.9883725,40.1939473],[-90.9887073,40.1939513],[-91.0001426,40.1941011],[-91.0071703,40.1942161],[-91.0074781,40.194217699999996],[-91.0078218,40.1942203],[-91.0272822,40.194403],[-91.0464149,40.194653],[-91.0655095,40.1947998],[-91.0846535,40.1949786],[-91.1035495,40.195163300000004],[-91.1036354,40.1951414],[-91.1224226,40.1953211],[-91.1227385,40.195324299999996],[-91.1251304,40.1953371],[-91.14518580000001,40.1955241],[-91.1639979,40.1958672],[-91.1642632,40.1958994],[-91.1832766,40.1962153],[-91.2023923,40.1966619],[-91.2025526,40.1966665],[-91.2213945,40.1968704],[-91.2220012,40.1968781],[-91.2224169,40.1968804],[-91.2402482,40.1970325],[-91.2404786,40.1970346],[-91.2405272,40.197035299999996],[-91.2501541,40.1971267],[-91.2587306,40.197310200000004],[-91.2778187,40.1976809],[-91.2778924,40.1976798],[-91.2974449,40.197974099999996],[-91.2976808,40.1979788],[-91.2980031,40.1979836],[-91.3161896,40.1983072],[-91.3164606,40.198312],[-91.3167471,40.1983228],[-91.3198933,40.1983339],[-91.33522669999999,40.1985224],[-91.3357343,40.198525599999996],[-91.3363302,40.1985302],[-91.3480009,40.1986385],[-91.3543062,40.198736],[-91.3554387,40.1987528],[-91.3617658,40.1988522],[-91.3751151,40.1991344],[-91.3770555,40.19921],[-91.3770972,40.199219],[-91.377099,40.1991555],[-91.377107,40.1991167],[-91.396035,40.199435],[-91.3962817,40.1994393],[-91.3965914,40.199441300000004],[-91.4156147,40.1996155],[-91.4347408,40.1997892],[-91.43534030000001,40.199794499999996],[-91.4358498,40.199799999999996],[-91.45384250000001,40.199889],[-91.4545238,40.1998923],[-91.4553179,40.199904000000004],[-91.4728817,40.1999358],[-91.47411460000001,40.1999388],[-91.474652,40.1999422],[-91.4917924,40.2000501],[-91.4918354,40.2000452],[-91.5053429,40.200279699999996],[-91.5065346,40.2040976],[-91.5069334,40.2059458],[-91.5071794,40.2077371],[-91.5073557,40.2097312],[-91.5073022,40.2114973],[-91.5072201,40.2128346],[-91.506724,40.2149229],[-91.5066348,40.2154502],[-91.506619,40.2160274],[-91.5063811,40.2167656],[-91.5060132,40.2179946],[-91.5056453,40.2192237],[-91.5054423,40.2201766],[-91.505259,40.2208118],[-91.5049066,40.2213312],[-91.504664,40.2219094],[-91.5044799,40.222516999999996],[-91.5043697,40.2231951],[-91.5042034,40.2236727],[-91.5041544,40.2242201],[-91.5041351,40.2248],[-91.5041948,40.2253759],[-91.5041977,40.2258506],[-91.5042766,40.226589000000004],[-91.5042966,40.2274112],[-91.50430180000001,40.2280902],[-91.5042102,40.2285361],[-91.5041195,40.2290152],[-91.5041054,40.2296502],[-91.5041071,40.2300836],[-91.5039747,40.2304888],[-91.5039987,40.2309494],[-91.5040553,40.2315391],[-91.5042088,40.2321189],[-91.5044744,40.2324622],[-91.5050183,40.2329664],[-91.5054708,40.2335439],[-91.5058278,40.2340623],[-91.5062618,40.2346263],[-91.506507,40.2352598],[-91.5066407,40.2357764],[-91.5066831,40.2363719],[-91.5065738,40.2370776],[-91.5061665,40.2381914],[-91.5057039,40.2392619],[-91.505278,40.2399812],[-91.5044043,40.2416604],[-91.5039067,40.2426432],[-91.5032192,40.2434111],[-91.502772,40.2440176],[-91.5021169,40.2444096],[-91.5015043,40.2449029],[-91.500886,40.2451949],[-91.5001213,40.2458496],[-91.5000685,40.245891900000004],[-91.4996548,40.2462218],[-91.499065,40.2466333],[-91.4987222,40.2469248],[-91.498498,40.2471453],[-91.4977308,40.2480898],[-91.4975013,40.2483144],[-91.4973497,40.2486165],[-91.4971913,40.2488082],[-91.4969255,40.2494627],[-91.4967896,40.2496886],[-91.4966164,40.249864],[-91.49652449999999,40.2499898],[-91.4963228,40.2499904],[-91.4961322,40.2502517],[-91.49573409999999,40.2508159],[-91.4951851,40.2516477],[-91.4945158,40.2525532],[-91.4938526,40.2535443],[-91.4932266,40.2544546],[-91.4926712,40.255314],[-91.4918799,40.2564286],[-91.4918505,40.2564705],[-91.4915046,40.2571001],[-91.4911906,40.2577099],[-91.4910414,40.2580339],[-91.4908954,40.2583469],[-91.4907032,40.2588083],[-91.4904338,40.259467],[-91.4902266,40.260030799999996],[-91.490136,40.2605153],[-91.4900218,40.2610582],[-91.489938,40.2615289],[-91.4899388,40.2621885],[-91.4899187,40.2627464],[-91.4899597,40.2632977],[-91.4900397,40.2637021],[-91.4901462,40.2641475],[-91.490329,40.2646192],[-91.4906878,40.265195500000004],[-91.4910886,40.2659202],[-91.4910896,40.2659534],[-91.4914522,40.2666014],[-91.4917701,40.2671315],[-91.4920786,40.2677143],[-91.4924513,40.2686492],[-91.4927522,40.2695936],[-91.4929085,40.2700216],[-91.4929812,40.270544799999996],[-91.4930476,40.271104],[-91.4929875,40.271646000000004],[-91.4929862,40.2723554],[-91.4929472,40.2727562],[-91.4929388,40.2728392],[-91.4929021,40.2730661],[-91.4929696,40.27341],[-91.492956,40.2739429],[-91.4929586,40.2746633],[-91.4929952,40.2753113],[-91.4929452,40.2760822],[-91.4929459,40.276736299999996],[-91.492921,40.2771259],[-91.492857,40.277657],[-91.4927292,40.2781035],[-91.492595,40.278575000000004],[-91.4923678,40.2790756],[-91.4912089,40.2822747],[-91.4909383,40.282958199999996],[-91.4905367,40.2839752],[-91.4899817,40.285110599999996],[-91.4896286,40.2859942],[-91.4892911,40.286794799999996],[-91.4889408,40.2874024],[-91.4885888,40.2882004],[-91.4882714,40.288824],[-91.4881314,40.2891603],[-91.4880272,40.2893608],[-91.4877462,40.2898706],[-91.4872904,40.2906952],[-91.4868803,40.2913535],[-91.4864967,40.2921852],[-91.4860253,40.2930956],[-91.4856363,40.2938639],[-91.4853126,40.2945179],[-91.4849774,40.2952798],[-91.4847486,40.2958495],[-91.4844163,40.2965837],[-91.484116,40.2971794],[-91.4837886,40.2978307],[-91.4834414,40.2985514],[-91.4831267,40.2991445],[-91.4828171,40.299663100000004],[-91.482577,40.3003488],[-91.4821039,40.3009501],[-91.4818826,40.3014065],[-91.4814803,40.3019625],[-91.4811688,40.302417500000004],[-91.4809218,40.3028578],[-91.4803314,40.3032678],[-91.4800079,40.3038087],[-91.4798462,40.304079099999996],[-91.4794082,40.3046495],[-91.478932,40.3052729],[-91.478505,40.3059756],[-91.478049,40.3066759],[-91.4777511,40.3071032],[-91.4771771,40.3078359],[-91.4766861,40.3085727],[-91.4760674,40.3095132],[-91.4753875,40.3105816],[-91.4749462,40.3115467],[-91.4744059,40.3124527],[-91.4740529,40.3132286],[-91.4734917,40.3140356],[-91.4729151,40.3154418],[-91.472433,40.3162419],[-91.4719513,40.317309800000004],[-91.4716177,40.3180081],[-91.47133,40.318609],[-91.4712637,40.3187481],[-91.4708122,40.319741],[-91.470607,40.3201322],[-91.4704359,40.320459299999996],[-91.4701757,40.3212006],[-91.4698137,40.3221698],[-91.4693974,40.3231317],[-91.46915,40.3240742],[-91.4689371,40.3250879],[-91.468785,40.3259571],[-91.4686019,40.3268765],[-91.4684528,40.3274696],[-91.46825,40.3279504],[-91.4682356,40.3287152],[-91.4680404,40.3295906],[-91.4678137,40.330499599999996],[-91.4676039,40.3312428],[-91.4674198,40.3318724],[-91.4671721,40.3325527],[-91.4670488,40.3331647],[-91.4670374,40.3332063],[-91.4668711,40.333766600000004],[-91.4667282,40.3343264],[-91.4664668,40.3350291],[-91.4662187,40.3355659],[-91.4660828,40.3359904],[-91.4657971,40.3364726],[-91.4655673,40.3368932],[-91.4652216,40.3374205],[-91.4649358,40.3379027],[-91.4646043,40.3384243],[-91.4644472,40.3387361],[-91.4641398,40.3392186],[-91.4638152,40.3397291],[-91.4632838,40.3404527],[-91.4629208,40.3410107],[-91.4625987,40.341609399999996],[-91.4622322,40.342173],[-91.4617876,40.342779300000004],[-91.4615248,40.3431783],[-91.4612259,40.343580700000004],[-91.46081530000001,40.3441119],[-91.4603869,40.344654399999996],[-91.460139,40.3449455],[-91.4597365,40.3455097],[-91.4592972,40.3460496],[-91.458842,40.3465374],[-91.4584796,40.346990399999996],[-91.4581878,40.347261599999996],[-91.4581562,40.3472911],[-91.4578174,40.3476858],[-91.4573585,40.3481709],[-91.4568909,40.3487334],[-91.4563396,40.3493938],[-91.4557693,40.3500242],[-91.4552564,40.3506426],[-91.4546444,40.3513289],[-91.4538227,40.352129],[-91.4532769,40.352731399999996],[-91.4526949,40.353331600000004],[-91.4521215,40.3538543],[-91.4515405,40.3544904],[-91.4510716,40.3551019],[-91.4510715,40.3551301],[-91.4507953,40.3554466],[-91.4503032,40.356037],[-91.4499716,40.356561299999996],[-91.44954129999999,40.3571701],[-91.4491598,40.3577173],[-91.4486877,40.3582522],[-91.4482718,40.358731],[-91.4479363,40.359246999999996],[-91.4476535,40.3597126],[-91.4472767,40.3602984],[-91.4469426,40.3607372],[-91.4465828,40.3612895],[-91.4461706,40.361771],[-91.4459934,40.362014],[-91.4456237,40.3623402],[-91.4452079,40.362697600000004],[-91.4444841,40.3632642],[-91.4440059,40.3635811],[-91.4434829,40.3639761],[-91.4428537,40.364312],[-91.4423496,40.3646073],[-91.4418976,40.3649597],[-91.4413246,40.365245099999996],[-91.4407253,40.3656192],[-91.4377885,40.3670526],[-91.43684999999999,40.3674295],[-91.4361432,40.3677032],[-91.4352025,40.368],[-91.4343629,40.368303499999996],[-91.4331005,40.3688402],[-91.4319783,40.369231],[-91.4313159,40.3695454],[-91.4306428,40.3698654],[-91.4299366,40.3701612],[-91.4293252,40.3704968],[-91.4286785,40.370857799999996],[-91.4281236,40.3711456],[-91.4269919,40.3718484],[-91.4262972,40.372301300000004],[-91.4256231,40.3727151],[-91.4250629,40.373074700000004],[-91.42438920000001,40.3736376],[-91.4238734,40.3740379],[-91.4229403,40.3749403],[-91.4228651,40.3750243],[-91.4225841,40.3753035],[-91.42228,40.3755278],[-91.4222092,40.37558],[-91.4219948,40.375785],[-91.4215774,40.3762223],[-91.4206891,40.3769846],[-91.41974450000001,40.377803],[-91.4188146,40.3786294],[-91.4179938,40.3793547],[-91.417464,40.3797718],[-91.4170093,40.380165500000004],[-91.4165403,40.380565000000004],[-91.4160795,40.3810002],[-91.4153511,40.381414899999996],[-91.4146046,40.3816974],[-91.4139372,40.3818379],[-91.4132058,40.3820125],[-91.4124504,40.3821047],[-91.4117845,40.3821706],[-91.4111746,40.3821694],[-91.4108466,40.3821843],[-91.4103311,40.3822078],[-91.40924509999999,40.3822197],[-91.4083186,40.3822567],[-91.4072091,40.382332500000004],[-91.4061958,40.382365300000004],[-91.4053188,40.382362799999996],[-91.4045084,40.3824255],[-91.4035283,40.3824798],[-91.4025583,40.3825119],[-91.4014202,40.3825991],[-91.4002019,40.3826545],[-91.39923,40.3827473],[-91.3980275,40.382854800000004],[-91.3971371,40.3828939],[-91.3963604,40.383000100000004],[-91.3956049,40.3830895],[-91.394763,40.3831857],[-91.3936488,40.3833553],[-91.3926832,40.383547300000004],[-91.3925033,40.3835667],[-91.39217909999999,40.3836547],[-91.3920018,40.3837044],[-91.3913449,40.3838363],[-91.3906302,40.3839664],[-91.3899512,40.384082],[-91.3893754,40.3844086],[-91.3889699,40.3846248],[-91.3883289,40.3848116],[-91.3878595,40.384935],[-91.3871067,40.385126299999996],[-91.3866969,40.3853205],[-91.3858727,40.3855378],[-91.3849945,40.385894],[-91.3843353,40.3862053],[-91.3836865,40.386505400000004],[-91.3830961,40.3868266],[-91.3823166,40.3872308],[-91.38185179999999,40.3875252],[-91.3811651,40.3880246],[-91.3808701,40.3881949],[-91.3804103,40.388409100000004],[-91.3794951,40.3891357],[-91.3788292,40.3897341],[-91.3788224,40.3898183],[-91.3787952,40.3900796],[-91.378116,40.3903222],[-91.3777552,40.390727999999996],[-91.3774399,40.390951],[-91.3772857,40.3911218],[-91.3770267,40.3914185],[-91.37637,40.3922292],[-91.3760422,40.3929216],[-91.3759272,40.3933429],[-91.375692,40.393722],[-91.3754067,40.3943861],[-91.375238,40.3946868],[-91.3750829,40.3948272],[-91.3749575,40.3951273],[-91.3748149,40.3954635],[-91.3745709,40.3959172],[-91.3743782,40.3964032],[-91.3741857,40.396892],[-91.3739577,40.397538600000004],[-91.3736802,40.3982247],[-91.3735442,40.3988064],[-91.3733747,40.3994797],[-91.3731764,40.4002915],[-91.37300690000001,40.401235299999996],[-91.3728347,40.4020797],[-91.3726975,40.4028795],[-91.3725843,40.4037699],[-91.3725086,40.4043769],[-91.372504,40.404406],[-91.3724262,40.4051358],[-91.3723451,40.4061444],[-91.3723106,40.4067411],[-91.3722903,40.4074617],[-91.3722897,40.4081075],[-91.3722419,40.4087458],[-91.3722504,40.409328],[-91.37225169999999,40.4099131],[-91.372267,40.4103461],[-91.3722553,40.4107134],[-91.3722926,40.4110274],[-91.3723214,40.4114271],[-91.3723298,40.4118713],[-91.3723749,40.412337],[-91.3724315,40.4126949],[-91.3725135,40.4130607],[-91.3726094,40.4136719],[-91.372704,40.414230599999996],[-91.3727952,40.4148032],[-91.3729113,40.4153589],[-91.3730636,40.4159195],[-91.3732405,40.4165873],[-91.3733961,40.4171341],[-91.3738184,40.4183307],[-91.3740846,40.4192317],[-91.3741128,40.4192713],[-91.3743366,40.4196031],[-91.3745973,40.4202972],[-91.3748419,40.4209309],[-91.3751017,40.4213242],[-91.375215,40.4215073],[-91.3753523,40.4217784],[-91.3755468,40.4222969],[-91.3758889,40.4227966],[-91.3761591,40.4234381],[-91.3764339,40.424121],[-91.3769043,40.4249553],[-91.3771452,40.4257187],[-91.3774323,40.4263213],[-91.3776302,40.4269612],[-91.3780761,40.4275586],[-91.378306,40.428178700000004],[-91.3786437,40.4289157],[-91.3789669,40.4296475],[-91.3793692,40.4306347],[-91.3796744,40.4313695],[-91.3799295,40.4321189],[-91.3803299,40.4330343],[-91.3804126,40.4334194],[-91.3805287,40.433975000000004],[-91.3807149,40.4343143],[-91.3808944,40.4349407],[-91.3810425,40.4356062],[-91.3811891,40.4360841],[-91.3813197,40.4366395],[-91.3813003,40.4373877],[-91.3814712,40.4380971],[-91.3816292,40.4388645],[-91.3816576,40.4395099],[-91.3816882,40.440240700000004],[-91.3817318,40.4409134],[-91.3817412,40.4416612],[-91.3816989,40.442233099999996],[-91.3816803,40.4428792],[-91.381651,40.4433958],[-91.3815771,40.4441366],[-91.3815387,40.4447195],[-91.3814762,40.4454767],[-91.3813306,40.4465028],[-91.3811599,40.4472672],[-91.3810469,40.4478955],[-91.380993,40.4481751],[-91.3808886,40.4487204],[-91.3807834,40.4491029],[-91.3805183,40.4502524],[-91.3803287,40.4508543],[-91.3800351,40.4517504],[-91.379788,40.4523669],[-91.3794651,40.453114400000004],[-91.3792005,40.4538831],[-91.3786996,40.4548652],[-91.3785022,40.4555803],[-91.3780102,40.4563581],[-91.3775439,40.4574169],[-91.3772154,40.4580927],[-91.3768793,40.4586251],[-91.37646,40.459418299999996],[-91.3761992,40.4599274],[-91.3757921,40.4605051],[-91.3755789,40.4609059],[-91.3752733,40.4614985],[-91.3750861,40.4617912],[-91.3750565,40.461764099999996],[-91.3749356,40.4621027],[-91.3747709,40.4624282],[-91.3745215,40.4629592],[-91.37424,40.4635046],[-91.3741823,40.4637125],[-91.3718981,40.4687767],[-91.3713052,40.4702404],[-91.3691937,40.4746906],[-91.3679885,40.4769697],[-91.3674602,40.4781551],[-91.3671278,40.4788971],[-91.3666089,40.480832899999996],[-91.3661444,40.4819717],[-91.3659985,40.482324500000004],[-91.3653784,40.484060400000004],[-91.3649066,40.485736],[-91.3645257,40.4873661],[-91.3642938,40.4888931],[-91.3640272,40.4922172],[-91.3639726,40.4935482],[-91.3639521,40.4943985],[-91.3639683,40.4950027],[-91.3640059,40.4955954],[-91.3640344,40.4961165],[-91.3640437,40.496596600000004],[-91.3640743,40.4970625],[-91.3641389,40.4977183],[-91.3641906,40.4984295],[-91.3640796,40.499008],[-91.3644529,40.4995817],[-91.3645607,40.4999608],[-91.3646804,40.499843],[-91.364979,40.5005945],[-91.3652001,40.5011512],[-91.3654468,40.501856599999996],[-91.3656622,40.5026066],[-91.3660066,40.5035836],[-91.3663941,40.504549],[-91.3667366,40.5055895],[-91.3671079,40.5066213],[-91.3673181,40.5073107],[-91.3674938,40.5077936],[-91.367426,40.5083659],[-91.3678162,40.5087572],[-91.36827339999999,40.5098925],[-91.3686216,40.5106045],[-91.3688875,40.5110805],[-91.3691263,40.511488],[-91.3694272,40.5119193],[-91.3698512,40.5124894],[-91.3701993,40.5129282],[-91.3705352,40.513452799999996],[-91.37089040000001,40.513886],[-91.3716578,40.5148536],[-91.3726454,40.516077100000004],[-91.3733118,40.5169194],[-91.3741874,40.5180094],[-91.37485530000001,40.5187716],[-91.3755119,40.519649799999996],[-91.3755362,40.5198813],[-91.3759404,40.520253],[-91.3768231,40.5213346],[-91.3774132,40.5221587],[-91.3779036,40.5227747],[-91.3779944,40.5230561],[-91.3780933,40.5233677],[-91.3785102,40.5239407],[-91.3791626,40.5247969],[-91.3798256,40.5256392],[-91.3804279,40.5263775],[-91.381042,40.5271543],[-91.3816413,40.5279148],[-91.3821615,40.5285578],[-91.383026,40.5294934],[-91.3836975,40.5301148],[-91.3843383,40.5306731],[-91.3849043,40.531136000000004],[-91.3855423,40.5315895],[-91.3861829,40.5320044],[-91.3867327,40.5324041],[-91.3874574,40.5327182],[-91.3878038,40.532952800000004],[-91.3886123,40.5332905],[-91.38951660000001,40.5335604],[-91.3903573,40.5337512],[-91.3910806,40.5338777],[-91.3914695,40.5339488],[-91.3926545,40.5341645],[-91.3937483,40.5343513],[-91.3948558,40.5345103],[-91.3955556,40.5347034],[-91.3964326,40.5348992],[-91.3971473,40.5351086],[-91.3979367,40.5354078],[-91.3988673,40.53584],[-91.3998038,40.536225200000004],[-91.400822,40.5366864],[-91.4015367,40.5370282],[-91.4024199,40.537577],[-91.4030995,40.538090499999996],[-91.4034369,40.5383901],[-91.40383,40.5387439],[-91.4041636,40.5391663],[-91.4043585,40.539414300000004],[-91.4047934,40.5399731],[-91.4051659,40.540626700000004],[-91.4055378,40.5412609],[-91.4058828,40.5419701],[-91.4061342,40.5425622],[-91.4063468,40.543188],[-91.4065465,40.5440044],[-91.4066623,40.5446648],[-91.4067781,40.5451901],[-91.4068655,40.5457378],[-91.4068931,40.5463472],[-91.4069371,40.5468929],[-91.4069211,40.5473651],[-91.4069017,40.5477103],[-91.40688,40.5482378],[-91.4068356,40.5487269],[-91.4067541,40.5494485],[-91.4067027,40.5500785],[-91.4066384,40.5506342],[-91.40653760000001,40.5511767],[-91.4063993,40.551675599999996],[-91.4062626,40.5522297],[-91.4060862,40.5526575],[-91.4061293,40.552908],[-91.4058717,40.553406100000004],[-91.4056177,40.5537744],[-91.4054216,40.5541418],[-91.405132,40.5546625],[-91.4048999,40.5550387],[-91.4046453,40.5555174],[-91.4043371,40.5558894],[-91.4041579,40.5560827],[-91.4036632,40.556775],[-91.4034022,40.5571517],[-91.402959,40.5576168],[-91.4024689,40.5582152],[-91.4019181,40.5588422],[-91.4013085,40.5594397],[-91.4005567,40.560127800000004],[-91.4004845,40.560134500000004],[-91.3995937,40.560902],[-91.3987609,40.5615417],[-91.3974489,40.5625175],[-91.39663,40.5631376],[-91.3955179,40.563886600000004],[-91.3945184,40.5645179],[-91.3934837,40.5651884],[-91.3926296,40.5657152],[-91.3921785,40.5660259],[-91.3914117,40.5665679],[-91.3907222,40.5669611],[-91.3906207,40.5670193],[-91.390059,40.5673869],[-91.3896581,40.567683],[-91.3889503,40.568133],[-91.3879154,40.5687979],[-91.386503,40.569689600000004],[-91.3856977,40.5701494],[-91.3850743,40.5705152],[-91.3848169,40.5706973],[-91.3846411,40.5708201],[-91.3841206,40.5711071],[-91.3835476,40.571463800000004],[-91.3827092,40.5720373],[-91.3819515,40.5725211],[-91.3813724,40.5729194],[-91.3807218,40.5734816],[-91.380613,40.5736075],[-91.3801681,40.5740146],[-91.379786,40.574470399999996],[-91.3795024,40.5748226],[-91.3792281,40.5751195],[-91.3789885,40.575493],[-91.3786909,40.575862],[-91.3782852,40.5765169],[-91.3779592,40.577038],[-91.3777042,40.5776464],[-91.3772349,40.578225],[-91.376979,40.5786623],[-91.376219,40.5797367],[-91.3757834,40.5803562],[-91.3754165,40.5808393],[-91.3751024,40.581272],[-91.3751551,40.5813457],[-91.3748751,40.5816978],[-91.3747167,40.5819321],[-91.374433,40.5823477],[-91.3736916,40.5833059],[-91.3731312,40.5841315],[-91.3725723,40.5848826],[-91.3717569,40.5859164],[-91.3712134,40.5867004],[-91.3706482,40.5874819],[-91.3700324,40.5882698],[-91.3693536,40.5891414],[-91.3687679,40.589970199999996],[-91.3681183,40.5908496],[-91.3674154,40.591765699999996],[-91.3668067,40.592550700000004],[-91.3662319,40.5933875],[-91.3656386,40.5942054],[-91.3651781,40.59485],[-91.3648537,40.595172399999996],[-91.3647512,40.5952651],[-91.3644242,40.5957559],[-91.3640728,40.596285699999996],[-91.3639502,40.596440799999996],[-91.3637016,40.5967523],[-91.3633757,40.5971548],[-91.3629241,40.5977276],[-91.3624491,40.5983724],[-91.3620028,40.5990058],[-91.3614854,40.59969],[-91.3607456,40.6005873],[-91.3602633,40.6012323],[-91.3596528,40.6019565],[-91.3591801,40.6024192],[-91.3586045,40.6029635],[-91.35784,40.6036157],[-91.3573664,40.6040452],[-91.3567991,40.6044928],[-91.3560667,40.6049954],[-91.3556906,40.6052828],[-91.3549486,40.6058296],[-91.3542288,40.6063983],[-91.3538774,40.6067983],[-91.353174,40.6071652],[-91.3526306,40.60756],[-91.352014,40.6079283],[-91.351362,40.6083248],[-91.3507621,40.6086377],[-91.3501981,40.6089389],[-91.3496765,40.6092036],[-91.3492014,40.6094456],[-91.3483372,40.6097625],[-91.3475647,40.6101222],[-91.34668070000001,40.6105084],[-91.3459922,40.6107619],[-91.34561,40.6109555],[-91.3452384,40.6111434],[-91.3446758,40.6113646],[-91.3436063,40.6118585],[-91.3424682,40.612359],[-91.3417637,40.6126927],[-91.34111970000001,40.6129842],[-91.3403668,40.6132662],[-91.3394749,40.6136332],[-91.3385313,40.6139623],[-91.337438,40.6143821],[-91.3360436,40.6149196],[-91.3343961,40.6156045],[-91.3332222,40.6159895],[-91.331775,40.616585799999996],[-91.3308032,40.6169484],[-91.3296335,40.6173554],[-91.3285401,40.6177751],[-91.3273355,40.6182351],[-91.3262138,40.61868],[-91.3254065,40.6191035],[-91.3246901,40.6192635],[-91.3239518,40.6195535],[-91.3232848,40.6198038],[-91.322493,40.6201277],[-91.3214288,40.6205606],[-91.3198537,40.6211173],[-91.3185277,40.621648],[-91.3174554,40.6220479],[-91.3162273,40.6224474],[-91.3152942,40.622908699999996],[-91.3143539,40.623232099999996],[-91.3135145,40.6235401],[-91.3127406,40.6238609],[-91.3119386,40.6242125],[-91.3111454,40.6244867],[-91.310562,40.6247495],[-91.3099979,40.6249208],[-91.309879,40.6249447],[-91.3093392,40.6252151],[-91.3092082,40.6252598],[-91.3082408,40.6255905],[-91.3079014,40.6257018],[-91.3073251,40.6258913],[-91.3060243,40.6261428],[-91.3056477,40.6262148],[-91.3051558,40.6263105],[-91.3036643,40.6264738],[-91.3030101,40.6266631],[-91.3015873,40.6268226],[-91.2999043,40.6271433],[-91.2986508,40.6274078],[-91.2970974,40.6276989],[-91.2957081,40.6278937],[-91.2940498,40.6281891],[-91.2926003,40.628439900000004],[-91.2912233,40.6286896],[-91.28967779999999,40.6290081],[-91.2885632,40.6291849],[-91.2871356,40.6294408],[-91.2865234,40.6295093],[-91.2864566,40.6295172],[-91.2857351,40.629627400000004],[-91.2848527,40.6298172],[-91.283721,40.6301763],[-91.2825816,40.6303727],[-91.2815961,40.6306413],[-91.2804588,40.6309205],[-91.2793341,40.6311277],[-91.2783016,40.6314025],[-91.2763114,40.631755],[-91.2746444,40.6321454],[-91.2732333,40.632343],[-91.2676109,40.6330074],[-91.2668383,40.6328933],[-91.2664368,40.6329862],[-91.2658494,40.6330997],[-91.2654296,40.633117],[-91.2650448,40.6332248],[-91.264603,40.6333693],[-91.2640716,40.633551],[-91.2634173,40.6337428],[-91.2629301,40.633957],[-91.2624032,40.6341745],[-91.2620062,40.6343708],[-91.2614993,40.6346652],[-91.260897,40.6349059],[-91.2599941,40.6352945],[-91.2592598,40.6356199],[-91.2587546,40.6358371],[-91.2580729,40.6360927],[-91.2573835,40.6363319],[-91.2568086,40.6365142],[-91.2555668,40.636825],[-91.2545982,40.6370518],[-91.2538632,40.6372061],[-91.2529869,40.6373597],[-91.2523952,40.6374512],[-91.2517415,40.637527],[-91.251119,40.63755],[-91.2505699,40.6376049],[-91.2503253,40.63789],[-91.2500738,40.6378992],[-91.2501469,40.637782200000004],[-91.2491336,40.6378164],[-91.2483433,40.6377921],[-91.2480168,40.6375568],[-91.2473547,40.6378038],[-91.2462104,40.6378178],[-91.2444933,40.6378098],[-91.243,40.637771],[-91.2416415,40.637766],[-91.2401707,40.6377598],[-91.2392865,40.637745100000004],[-91.2378372,40.6377276],[-91.2369277,40.6377133],[-91.2358477,40.6376931],[-91.2349523,40.637664799999996],[-91.2347224,40.6376667],[-91.2340253,40.6376755],[-91.2327544,40.6376967],[-91.2319112,40.6377255],[-91.230927,40.6377674],[-91.2296071,40.6378555],[-91.2284817,40.6378994],[-91.2271756,40.6379625],[-91.2257899,40.6380267],[-91.2228511,40.6379781],[-91.2194709,40.6379524],[-91.216409,40.6378364],[-91.2150386,40.6377127],[-91.2113169,40.637425300000004],[-91.20957369999999,40.6372406],[-91.2047556,40.636480399999996],[-91.1984668,40.6358595],[-91.1959109,40.6359111],[-91.1930147,40.6359715],[-91.188464,40.6365851],[-91.1870028,40.63697],[-91.1861068,40.6372876],[-91.18455230000001,40.6378587]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"BROWN","CO_FIPS":9},"geometry":{"type":"Polygon","coordinates":[[[-90.5135892,39.9879069],[-90.5135262,39.9876439],[-90.5127507,39.9856288],[-90.5126837,39.9855824],[-90.5125804,39.9855143],[-90.5123939,39.9850232],[-90.5123315,39.9847988],[-90.5122323,39.9841442],[-90.512233,39.9838198],[-90.5121549,39.9832575],[-90.5122441,39.9816186],[-90.5122016,39.981031],[-90.5121549,39.9796666],[-90.5120916,39.9788915],[-90.5119966,39.9783983],[-90.5119212,39.9780222],[-90.5118282,39.9777911],[-90.511645,39.9766624],[-90.5112052,39.975271],[-90.511064,39.974567],[-90.5110056,39.9744943],[-90.5108991,39.9741972],[-90.5108151,39.9740985],[-90.5106661,39.9733449],[-90.5105585,39.9730974],[-90.5104813,39.972470200000004],[-90.5104035,39.9720527],[-90.5104422,39.9711305],[-90.51087509999999,39.9681969],[-90.5109178,39.9680489],[-90.5110468,39.9677911],[-90.5111907,39.9673289],[-90.5114629,39.9668008],[-90.511856,39.9663282],[-90.51236420000001,39.965631099999996],[-90.5131499,39.9649012],[-90.5136798,39.9643405],[-90.5141713,39.964103],[-90.5148303,39.9637868],[-90.5156016,39.963177099999996],[-90.5171523,39.9622778],[-90.5176674,39.9619325],[-90.5180821,39.9615922],[-90.5191748,39.9607685],[-90.5199468,39.9600925],[-90.5202257,39.9599121],[-90.5205113,39.959571499999996],[-90.5206479,39.959350900000004],[-90.5207909,39.9591978],[-90.5210261,39.9589667],[-90.5213329,39.9587308],[-90.5217558,39.9580993],[-90.521971,39.9577303],[-90.5223075,39.957318900000004],[-90.522422,39.9569342],[-90.5225374,39.9567317],[-90.5227507,39.9563573],[-90.5231838,39.955318500000004],[-90.5231849,39.9552681],[-90.5233954,39.955076500000004],[-90.5237094,39.954472100000004],[-90.5239538,39.9541415],[-90.5243762,39.953476800000004],[-90.5246697,39.9529498],[-90.5249973,39.9526641],[-90.5255841,39.9520876],[-90.5262479,39.951257999999996],[-90.5275284,39.9501759],[-90.5276061,39.9500938],[-90.5278566,39.9499343],[-90.5281111,39.949680900000004],[-90.5281641,39.9496266],[-90.5286649,39.9491765],[-90.5289714,39.949051],[-90.529193,39.9488752],[-90.52945629999999,39.948616200000004],[-90.5297576,39.948374799999996],[-90.5300993,39.9481993],[-90.530471,39.9477545],[-90.5310791,39.9471613],[-90.5312287,39.946975],[-90.5314654,39.9466114],[-90.5316581,39.9464248],[-90.5319448,39.9459254],[-90.5321448,39.9457498],[-90.5323953,39.9451059],[-90.5324885,39.9443805],[-90.53258220000001,39.9440443],[-90.5328133,39.9426981],[-90.5329287,39.9417683],[-90.5330291,39.9415259],[-90.533091,39.941228699999996],[-90.5331144,39.9411139],[-90.533302,39.940581],[-90.5333157,39.9404166],[-90.5335083,39.9397456],[-90.5335174,39.9395081],[-90.5336816,39.9390968],[-90.5341026,39.9384694],[-90.5345546,39.9376346],[-90.5348121,39.937228],[-90.5348614,39.937046699999996],[-90.5350541,39.9367442],[-90.5352834,39.936491000000004],[-90.5360495,39.9343535],[-90.5361095,39.9341652],[-90.5362942,39.9335674],[-90.5365738,39.9324733],[-90.5367021,39.931698],[-90.536681,39.9313614],[-90.536746,39.931152499999996],[-90.5368106,39.9307903],[-90.5367904,39.9305145],[-90.5368053,39.929464100000004],[-90.5367277,39.9290687],[-90.5367355,39.9282654],[-90.5366865,39.927742800000004],[-90.5367104,39.9263294],[-90.5367098,39.926288],[-90.5367898,39.9255158],[-90.5369696,39.9244709],[-90.5369921,39.923811],[-90.5371348,39.923157],[-90.5370721,39.9225572],[-90.5371515,39.922232199999996],[-90.5372646,39.9219966],[-90.5373024,39.9216499],[-90.53731690000001,39.9209348],[-90.5373664,39.9206432],[-90.5375679,39.9200935],[-90.5376532,39.919803],[-90.5378406,39.9191472],[-90.5382413,39.9180037],[-90.5383761,39.91779],[-90.5385989,39.917345],[-90.5389768,39.9168449],[-90.5391708,39.9166306],[-90.5392916,39.9164432],[-90.5394058,39.916169],[-90.5404429,39.915042],[-90.5409773,39.9145818],[-90.5412643,39.9142412],[-90.5423915,39.9131561],[-90.5436565,39.9119388],[-90.5438596,39.9117382],[-90.5446278,39.9109779],[-90.5454485,39.910253],[-90.5462694,39.9094232],[-90.5472911,39.9085999],[-90.5476194,39.9081484],[-90.5489978,39.9066167],[-90.5493366,39.90627],[-90.5502185,39.9053306],[-90.5508182,39.9046932],[-90.5518265,39.9037044],[-90.5518979,39.9036885],[-90.553761,39.901869500000004],[-90.5540464,39.9016669],[-90.5543676,39.901342400000004],[-90.5555588,39.900601699999996],[-90.5558101,39.900397999999996],[-90.556973,39.8998052],[-90.557358,39.8995533],[-90.5577719,39.8994323],[-90.5592555,39.8987248],[-90.5601125,39.898290599999996],[-90.5614046,39.897711799999996],[-90.5616181,39.897616],[-90.5624447,39.8971821],[-90.5638298,39.8966011],[-90.5648432,39.896085400000004],[-90.5653138,39.8959307],[-90.5655553,39.8957837],[-90.5658492,39.8956733],[-90.5676672,39.895164199999996],[-90.567925,39.8951536],[-90.5682591,39.8950926],[-90.5685213,39.895017100000004],[-90.5689148,39.894972100000004],[-90.5703999,39.8947268],[-90.5705348,39.8946442],[-90.5706707,39.8946278],[-90.5708199,39.8945395],[-90.5711265,39.8944414],[-90.5725394,39.8936944],[-90.5728529,39.8934583],[-90.5736817,39.8929429],[-90.5744812,39.8922718],[-90.5746025,39.8922334],[-90.5748368,39.892096],[-90.5750218,39.8918929],[-90.5751655,39.8918005],[-90.5753223,39.8916293],[-90.5757997,39.8912178],[-90.5759454,39.8910219],[-90.5759718,39.890987100000004],[-90.5762649,39.8907112],[-90.5765138,39.890354200000004],[-90.5766711,39.890212],[-90.5768717,39.8899756],[-90.5770559,39.8897227],[-90.57751329999999,39.8889415],[-90.5780203,39.8877818],[-90.5783783,39.8870622],[-90.5789566,39.8857638],[-90.5791564,39.8850112],[-90.579649,39.88373],[-90.5798927,39.8828114],[-90.5799496,39.8826674],[-90.5800285,39.8825535],[-90.5802004,39.8822014],[-90.5801926,39.8819268],[-90.5804643,39.8813101],[-90.5807217,39.8805763],[-90.5808143,39.8803105],[-90.58094990000001,39.8800456],[-90.581135,39.879853499999996],[-90.5816917,39.8788975],[-90.5818344,39.878743],[-90.5820215,39.8784515],[-90.582306,39.8780831],[-90.5824055,39.8779138],[-90.5829478,39.8771884],[-90.5846973,39.8750773],[-90.584781,39.8749289],[-90.5850602,39.874571599999996],[-90.5854522,39.8738573],[-90.58572290000001,39.872954899999996],[-90.5858372,39.8723549],[-90.5859442,39.8719758],[-90.5859797,39.8713765],[-90.5860516,39.8710474],[-90.5862015,39.8698591],[-90.5861304,39.869661],[-90.58613629999999,39.8693532],[-90.5862166,39.8686375],[-90.586207,39.868364400000004],[-90.5861797,39.8676483],[-90.586138,39.8672636],[-90.5859322,39.86612],[-90.5851993,39.8634355],[-90.5850414,39.8629581],[-90.584836,39.8624121],[-90.5846512,39.8619293],[-90.5844298,39.8606975],[-90.5838825,39.859241],[-90.5832764,39.8574483],[-90.5829137,39.8565738],[-90.5828291,39.8563152],[-90.5825643,39.855749],[-90.5824793,39.855462700000004],[-90.5824224,39.855143],[-90.5823949,39.8545222],[-90.5823456,39.8539996],[-90.5823162,39.8537142],[-90.5821245,39.8529003],[-90.58195979999999,39.8523221],[-90.5818683,39.8520746],[-90.5815552,39.8513984],[-90.5808076,39.8500624],[-90.5805529,39.8497984],[-90.5802381,39.8494741],[-90.5792328,39.8481419],[-90.5791616,39.84805],[-90.5789908,39.8477756],[-90.5787641,39.8474671],[-90.5783655,39.8468124],[-90.5779163,39.8461306],[-90.5772821,39.845289],[-90.5755028,39.8432102],[-90.5746494,39.842314],[-90.5740224,39.8417042],[-90.5730672,39.8407081],[-90.5721782,39.8394713],[-90.5718907,39.8391675],[-90.5889311,39.8393496],[-90.6081203,39.8394427],[-90.6251504,39.8395272],[-90.6260041,39.839508],[-90.6264516,39.8395037],[-90.6268634,39.8395067],[-90.6455849,39.839668599999996],[-90.6457854,39.8396708],[-90.6459931,39.8396729],[-90.6642945,39.8398636],[-90.6831189,39.8400585],[-90.7021018,39.8402006],[-90.7215874,39.8402074],[-90.7216859,39.8402119],[-90.721908,39.8402178],[-90.7404472,39.8402589],[-90.7405296,39.8402595],[-90.7405743,39.8402604],[-90.7500794,39.840481600000004],[-90.7592206,39.8406727],[-90.7594177,39.8406775],[-90.7595752,39.8406772],[-90.7789078,39.8407092],[-90.7789454,39.8407088],[-90.7992966,39.8410231],[-90.7993467,39.8410225],[-90.8182044,39.8410146],[-90.8368543,39.8410061],[-90.8371283,39.8410071],[-90.8372571,39.8410001],[-90.8555749,39.8410352],[-90.8561586,39.841036700000004],[-90.8745212,39.8410642],[-90.8751496,39.8410624],[-90.8752086,39.8410617],[-90.8933963,39.8410247],[-90.8938596,39.8410924],[-90.8942691,39.8411579],[-90.9166874,39.8447441],[-90.9166883,39.844966299999996],[-90.9167857,39.8588982],[-90.9167876,39.8593468],[-90.9167887,39.8594006],[-90.9167726,39.8735615],[-90.9167713,39.8736774],[-90.9167862,39.8738788],[-90.9168681,39.8750068],[-90.9170005,39.8878311],[-90.9169993,39.8878615],[-90.917,39.887983],[-90.9170661,39.9023994],[-90.9164532,39.9159406],[-90.9164506,39.9159917],[-90.9164318,39.9163881],[-90.9163982,39.9166755],[-90.9147721,39.930037],[-90.914445,39.944626299999996],[-90.9144781,39.9592042],[-90.9145161,39.9738483],[-90.9145531,39.988444],[-90.9145592,39.988477],[-90.9146624,40.000048],[-90.9144993,40.003335899999996],[-90.9144999,40.0033677],[-90.9146681,40.0179696],[-90.9143203,40.0325321],[-90.9139691,40.047195200000004],[-90.9137639,40.0617185],[-90.9137513,40.0618098],[-90.9136181,40.0762521],[-90.9134845,40.0906819],[-90.9134814,40.0909703],[-90.9133565,40.104500099999996],[-90.8921168,40.1046222],[-90.8918651,40.104616899999996],[-90.8916045,40.1046185],[-90.875154,40.1047336],[-90.8731343,40.104746],[-90.8723599,40.1047522],[-90.8537106,40.1048221],[-90.8533296,40.1048237],[-90.8527493,40.1048303],[-90.8345452,40.1050618],[-90.8338355,40.1050698],[-90.8153672,40.1053014],[-90.8151229,40.1053055],[-90.8149504,40.1053102],[-90.7962212,40.1059115],[-90.7767565,40.1055269],[-90.7575726,40.1050506],[-90.7575222,40.1050442],[-90.7574808,40.1050433],[-90.7501095,40.1049654],[-90.7384881,40.1046805],[-90.7193949,40.1042109],[-90.7002428,40.1038492],[-90.6957733,40.1037261],[-90.6957589,40.1036227],[-90.6958263,40.1033599],[-90.695893,40.1032667],[-90.6960152,40.1031634],[-90.6962308,40.103054900000004],[-90.697006,40.1028856],[-90.6971558,40.1028206],[-90.6972441,40.1027273],[-90.6972733,40.1026511],[-90.6973556,40.1023163],[-90.6973642,40.1021851],[-90.6973017,40.1020036],[-90.6971125,40.1017599],[-90.696821,40.1016373],[-90.69650730000001,40.1015742],[-90.6962216,40.1014736],[-90.69613,40.101368300000004],[-90.6961242,40.1012427],[-90.6962131,40.101077599999996],[-90.6963722,40.1009256],[-90.6964362,40.1008877],[-90.696702,40.1007746],[-90.696933,40.100726699999996],[-90.6972473,40.100718],[-90.6974187,40.1006487],[-90.6974781,40.1005501],[-90.6975815,40.100193000000004],[-90.697649,40.1000405],[-90.6978163,40.099739400000004],[-90.6981821,40.0991658],[-90.698595,40.0987297],[-90.699245,40.0981752],[-90.6993468,40.0980334],[-90.6994811,40.0975891],[-90.6995073,40.0972328],[-90.6994994,40.0967706],[-90.6994712,40.0966991],[-90.699465,40.096546000000004],[-90.6994767,40.0962878],[-90.6993887,40.0957657],[-90.6993867,40.0954415],[-90.6994993,40.0949918],[-90.6995944,40.0947728],[-90.6998563,40.0944348],[-90.7001881,40.09419],[-90.7004145,40.0940842],[-90.7005125,40.094039],[-90.7006342,40.0940074],[-90.7011302,40.0938078],[-90.7015956,40.093700999999996],[-90.7027994,40.09349],[-90.703731,40.093437800000004],[-90.7042541,40.0932434],[-90.7044339,40.0931464],[-90.7053542,40.0928569],[-90.7056405,40.0927877],[-90.7060555,40.0927849],[-90.7064324,40.0928652],[-90.7071961,40.0930741],[-90.7076435,40.0932806],[-90.7079994,40.0933929],[-90.7082278,40.0934058],[-90.7083655,40.0933685],[-90.7088692,40.092988],[-90.7090159,40.092746399999996],[-90.7093096,40.0920686],[-90.7094107,40.09147],[-90.7094117,40.0913223],[-90.7093523,40.090904800000004],[-90.7092574,40.0906077],[-90.7090678,40.090243900000004],[-90.708702,40.0897688],[-90.7081874,40.089311800000004],[-90.7081072,40.0892422],[-90.7074954,40.0889794],[-90.70715440000001,40.088900100000004],[-90.7065826,40.0888742],[-90.7055665,40.0889218],[-90.7052588,40.0888918],[-90.7051377,40.0888516],[-90.7048827,40.0886472],[-90.7047076,40.0883937],[-90.7045198,40.0880244],[-90.7043333,40.0874191],[-90.7042668,40.0870058],[-90.7042918,40.0866826],[-90.70448880000001,40.0864364],[-90.7047475,40.086230900000004],[-90.7050643,40.0860565],[-90.7053537,40.0858563],[-90.7059969,40.0852342],[-90.7060635,40.085137],[-90.7060779,40.0850375],[-90.7060656,40.0849493],[-90.7059387,40.0847781],[-90.7056202,40.0845398],[-90.7053496,40.0843728],[-90.7050087,40.08419],[-90.7042989,40.083866],[-90.7040215,40.0837212],[-90.7031342,40.0831051],[-90.702524,40.082720800000004],[-90.7016527,40.0821003],[-90.7009999,40.0817427],[-90.7007231,40.0816309],[-90.700656,40.0815944],[-90.7004095,40.0814699],[-90.6996134,40.0811399],[-90.6986654,40.0808583],[-90.6974134,40.0803438],[-90.6957194,40.0797151],[-90.6953207,40.0796184],[-90.6949714,40.0795668],[-90.6932341,40.0794546],[-90.6924135,40.079371800000004],[-90.6913984,40.0793641],[-90.6894121,40.0792888],[-90.6887189,40.0791951],[-90.6877352,40.0790283],[-90.6871294,40.0788978],[-90.68674970000001,40.078861599999996],[-90.6859359,40.0788601],[-90.6849908,40.0789523],[-90.6835367,40.0792208],[-90.6818389,40.0794213],[-90.681672,40.079432600000004],[-90.6806869,40.0795004],[-90.67984129999999,40.0796372],[-90.6770514,40.0803784],[-90.6740912,40.0809322],[-90.673347,40.081008600000004],[-90.6727892,40.0809603],[-90.6724545,40.0808146],[-90.6723009,40.0806547],[-90.6721463,40.080434],[-90.67170780000001,40.079464099999996],[-90.6714928,40.0788522],[-90.6713908,40.0784516],[-90.6712973,40.078016500000004],[-90.6713224,40.0776933],[-90.6713752,40.077523],[-90.6715224,40.0771945],[-90.6718941,40.0766485],[-90.6722213,40.0762396],[-90.6725841,40.0756978],[-90.6729737,40.0749377],[-90.6732653,40.0744408],[-90.6733104,40.0743451],[-90.6739264,40.073057],[-90.6740074,40.0728547],[-90.6740918,40.0724261],[-90.674173,40.072229300000004],[-90.6742831,40.0714071],[-90.6742809,40.0710663],[-90.6743813,40.0705188],[-90.6746393,40.0698387],[-90.6747348,40.0696473],[-90.6747863,40.0696095],[-90.6750179,40.0692871],[-90.6756352,40.0685013],[-90.6761285,40.0679347],[-90.6764284,40.0675039],[-90.6766416,40.0670437],[-90.6768041,40.0665618],[-90.6769014,40.0661565],[-90.67693919999999,40.0655199],[-90.6768517,40.065019899999996],[-90.6766925,40.0646282],[-90.6765599,40.0644349],[-90.6763626,40.0642354],[-90.6760423,40.0640964],[-90.6754935,40.0639266],[-90.6752454,40.0638035],[-90.6750127,40.063534000000004],[-90.6747759,40.0631196],[-90.6747048,40.0629547],[-90.6747307,40.0626743],[-90.6747997,40.0622969],[-90.6749021,40.0620833],[-90.6754335,40.0614281],[-90.6757671,40.0609804],[-90.6759195,40.0608547],[-90.6768265,40.060324],[-90.6771434,40.0601622],[-90.6774595,40.0599507],[-90.6776028,40.0598237],[-90.6776559,40.0597762],[-90.6776851,40.0596945],[-90.677694,40.0594805],[-90.6776535,40.0593153],[-90.6775222,40.0589841],[-90.6773754,40.0586874],[-90.677313,40.0586094],[-90.6769409,40.058057],[-90.6765864,40.0578024],[-90.6764508,40.0577458],[-90.6759175,40.0576435],[-90.6756248,40.0575415],[-90.6755118,40.0574419],[-90.6754487,40.057321099999996],[-90.67544290000001,40.0571887],[-90.675557,40.0567128],[-90.67577610000001,40.0562856],[-90.6759741,40.0559911],[-90.6764442,40.055439899999996],[-90.6768712,40.055092099999996],[-90.6772189,40.0547326],[-90.6776354,40.0539832],[-90.6778856,40.0533763],[-90.6780541,40.053042],[-90.6781221,40.0528123],[-90.6781768,40.0524391],[-90.6781317,40.0519994],[-90.6779137,40.0512122],[-90.677697,40.050821],[-90.6773974,40.0501989],[-90.6771442,40.0498771],[-90.6765244,40.0492195],[-90.6763549,40.0489659],[-90.6760273,40.0483813],[-90.6756455,40.047466],[-90.6755121,40.046686199999996],[-90.6754377,40.0464275],[-90.6753256,40.0462727],[-90.6751688,40.046133499999996],[-90.6750055,40.046028899999996],[-90.6744961,40.0457386],[-90.6743895,40.0456997],[-90.6740688,40.0455276],[-90.6733473,40.0452298],[-90.6720157,40.044627500000004],[-90.6716039,40.0444812],[-90.6707418,40.0442551],[-90.6701081,40.0440461],[-90.66968729999999,40.0440047],[-90.6694218,40.0440184],[-90.6690499,40.0441145],[-90.668777,40.0442221],[-90.6684461,40.0444061],[-90.6683153,40.0445316],[-90.6682263,40.0447892],[-90.66823,40.045119],[-90.6682199,40.0451605],[-90.6681846,40.0453002],[-90.6682127,40.0459099],[-90.6681885,40.0460743],[-90.6680786,40.0462645],[-90.6679633,40.046347],[-90.6677973,40.046410800000004],[-90.667417,40.0465346],[-90.6667716,40.0467052],[-90.666156,40.046827199999996],[-90.6657325,40.04695],[-90.6655677,40.0469751],[-90.6652247,40.046973],[-90.6649976,40.0469214],[-90.6633746,40.0468256],[-90.6629549,40.0468504],[-90.6622028,40.0469765],[-90.66173069999999,40.0469839],[-90.6615453,40.0469554],[-90.6612536,40.0467982],[-90.6609078,40.0465214],[-90.6606896,40.0462448],[-90.6605651,40.0459976],[-90.6603957,40.0457426],[-90.6602913,40.0456208],[-90.6596544,40.0451109],[-90.659576,40.0450344],[-90.6595267,40.0449894],[-90.6593527,40.0446751],[-90.6592017,40.044119],[-90.6591577,40.0437399],[-90.6591731,40.0435866],[-90.6593007,40.0431645],[-90.6594264,40.0428417],[-90.6596591,40.042469600000004],[-90.6597565,40.042174700000004],[-90.6599109,40.0418516],[-90.6598283,40.0416316],[-90.6597646,40.041581199999996],[-90.6594869,40.0414031],[-90.6593515,40.0413534],[-90.6585344,40.0411268],[-90.6578054,40.0410167],[-90.6568205,40.0409545],[-90.6556856,40.0408345],[-90.6541718,40.0408176],[-90.6539718,40.0407781],[-90.6538228,40.0407768],[-90.6532778,40.0408263],[-90.6529781,40.0408361],[-90.6525007,40.0407387],[-90.6523219,40.0406714],[-90.6520888,40.0404708],[-90.6519983,40.040317200000004],[-90.6519314,40.039964499999996],[-90.6519286,40.0396844],[-90.6519734,40.039465899999996],[-90.6521081,40.0390327],[-90.6522838,40.0386887],[-90.6525184,40.0383276],[-90.6527515,40.0379845],[-90.6530631,40.0376075],[-90.6533043,40.0372146],[-90.6540912,40.0355068],[-90.654163,40.0353984],[-90.6542817,40.0350854],[-90.654375,40.034538],[-90.6543719,40.0341309],[-90.6542625,40.0338118],[-90.6541023,40.0335691],[-90.6538608,40.0334073],[-90.6535407,40.0332627],[-90.6532201,40.0331996],[-90.6528071,40.0330864],[-90.6525931,40.0330622],[-90.6522939,40.0329892],[-90.6507875,40.0323236],[-90.6498769,40.0320799],[-90.649117,40.0317174],[-90.6475825,40.0310838],[-90.6470073,40.030821599999996],[-90.6466733,40.0307034],[-90.6464372,40.0306464],[-90.6460175,40.0305607],[-90.6455031,40.0305022],[-90.6447323,40.0304628],[-90.6443042,40.0304048],[-90.6441112,40.0303543],[-90.6437057,40.030251899999996],[-90.6432284,40.0301544],[-90.642358,40.0300648],[-90.641559,40.0299428],[-90.6410033,40.0298834],[-90.6401263,40.0298214],[-90.639453,40.0298155],[-90.6390683,40.0297806],[-90.6383266,40.0297629],[-90.6379176,40.0297765],[-90.6362546,40.0297345],[-90.6357836,40.0296935],[-90.6349921,40.029593500000004],[-90.6344502,40.0294952],[-90.6333614,40.0291026],[-90.63311350000001,40.0289794],[-90.6329182,40.0286749],[-90.6327995,40.0284387],[-90.6326459,40.0276025],[-90.6324937,40.027179000000004],[-90.6324411,40.026925500000004],[-90.6323045,40.026474199999996],[-90.6319796,40.025587200000004],[-90.6316954,40.0249979],[-90.6312755,40.0243354],[-90.6309658,40.0239478],[-90.6308312,40.0238373],[-90.6306045,40.0236932],[-90.630462,40.0236477],[-90.6303126,40.0236243],[-90.6301765,40.0236449],[-90.6299976,40.0236825],[-90.6293815,40.0238747],[-90.6290503,40.024042],[-90.6285959,40.0243569],[-90.6275387,40.0249134],[-90.6269929,40.0251298],[-90.6265101,40.0253566],[-90.6262663,40.0254914],[-90.6259985,40.0256871],[-90.6256674,40.02586],[-90.6251084,40.026036500000004],[-90.6249437,40.026067],[-90.6249061,40.0260743],[-90.6244616,40.026226199999996],[-90.6242022,40.0262783],[-90.6236521,40.0263401],[-90.6232019,40.0263651],[-90.6229085,40.0264231],[-90.6226565,40.026493099999996],[-90.622155,40.0266704],[-90.6212453,40.0269177],[-90.6209303,40.0269814],[-90.6206361,40.0269897],[-90.6200861,40.026948000000004],[-90.6185047,40.0267215],[-90.6177395,40.0266942],[-90.6170816,40.0267446],[-90.6167954,40.026808],[-90.6164511,40.0269438],[-90.6161763,40.0271616],[-90.6159819,40.0273525],[-90.6158005,40.0275709],[-90.6156691,40.0277736],[-90.6154553,40.0282062],[-90.6153589,40.0285797],[-90.6152334,40.0289245],[-90.6151595,40.0290177],[-90.6148286,40.0292071],[-90.6146336,40.029359400000004],[-90.6140786,40.0299028],[-90.6137092,40.0302651],[-90.6135547,40.0304846],[-90.6133956,40.0306379],[-90.613273,40.0308336],[-90.6127718,40.0314842],[-90.6125144,40.0320054],[-90.61222240000001,40.0324981],[-90.6119968,40.0327597],[-90.6118832,40.0328408],[-90.6117387,40.0328959],[-90.6114163,40.0329431],[-90.6112169,40.0329353],[-90.6110023,40.0328739],[-90.6107476,40.032772800000004],[-90.6106407,40.0327117],[-90.6102104,40.0322962],[-90.6098791,40.0318922],[-90.6090474,40.0310679],[-90.6083635,40.0302822],[-90.6077921,40.0297949],[-90.60738190000001,40.0293958],[-90.6069811,40.0289096],[-90.6066105,40.0282907],[-90.606297,40.0276561],[-90.6059089,40.026724099999996],[-90.6058137,40.0263772],[-90.605771,40.0261748],[-90.6056449,40.0255798],[-90.6056601,40.0255189],[-90.6056279,40.0252984],[-90.60561799999999,40.024903800000004],[-90.605709,40.0245304],[-90.6058042,40.0243059],[-90.6058855,40.0241134],[-90.6060838,40.0237141],[-90.6065132,40.0230573],[-90.6066901,40.0226679],[-90.6068083,40.0223121],[-90.6069749,40.0216095],[-90.607276,40.0210133],[-90.60753629999999,40.0206796],[-90.6077895,40.0204606],[-90.6080786,40.020244],[-90.60833099999999,40.020085699999996],[-90.6088131,40.0196989],[-90.6090303,40.0194747],[-90.60978539999999,40.018540200000004],[-90.6101176,40.0182128],[-90.6107396,40.017706000000004],[-90.6109908,40.0175878],[-90.6112054,40.0175402],[-90.6113562,40.0175457],[-90.611569,40.0176085],[-90.611781,40.017736299999996],[-90.6119011,40.0178359],[-90.6123107,40.0183123],[-90.6129074,40.019151199999996],[-90.6132141,40.0197031],[-90.6134679,40.0199739],[-90.6139274,40.020313200000004],[-90.6143598,40.0205244],[-90.6151346,40.020827600000004],[-90.6154983,40.020896],[-90.6159837,40.0209438],[-90.61617,40.0209227],[-90.6165062,40.0208478],[-90.6167646,40.0207294],[-90.6170904,40.0204517],[-90.6173365,40.0201237],[-90.6175554,40.0197836],[-90.6179368,40.0190555],[-90.6181582,40.0184199],[-90.6183705,40.0180039],[-90.6185036,40.0176853],[-90.618845,40.0167036],[-90.6189647,40.0162209],[-90.6190126,40.0158478],[-90.6189941,40.0153677],[-90.61899149999999,40.0153139],[-90.6188872,40.0145173],[-90.6188236,40.0137961],[-90.6187361,40.0134879],[-90.6185209,40.0129365],[-90.6184085,40.012754],[-90.6182531,40.0125775],[-90.6179784,40.0123441],[-90.6176574,40.0122492],[-90.6173576,40.0122409],[-90.6172286,40.0122573],[-90.6171287,40.0122942],[-90.6169991,40.012381],[-90.6167247,40.0126154],[-90.6165502,40.0128185],[-90.6163927,40.0129539],[-90.6160987,40.0129746],[-90.6159776,40.0129233],[-90.6154895,40.0125857],[-90.6152143,40.0123247],[-90.6150243,40.0121139],[-90.6148625,40.0119871],[-90.6146856,40.011809400000004],[-90.6143965,40.011461600000004],[-90.6139013,40.0111282],[-90.613697,40.0109231],[-90.6131862,40.0106284],[-90.6125554,40.0102328],[-90.6123366,40.0100168],[-90.6121387,40.0098738],[-90.6119756,40.0097732],[-90.6113651,40.0095264],[-90.61009250000001,40.0090609],[-90.6096526,40.0088221],[-90.6094474,40.0086667],[-90.6088711,40.007975200000004],[-90.6086117,40.0075719],[-90.6083603,40.0071092],[-90.6082758,40.0069872],[-90.6081561,40.0069097],[-90.6078866,40.0067756],[-90.6068185,40.0064157],[-90.606273,40.006186299999996],[-90.6061107,40.0061395],[-90.6060296,40.0061181],[-90.6053419,40.005860999999996],[-90.60464400000001,40.0056467],[-90.6035341,40.0052486],[-90.6027051,40.0047968],[-90.6025506,40.004669899999996],[-90.6023531,40.0044372],[-90.6023606,40.004344599999996],[-90.6020342,40.003676999999996],[-90.6019587,40.0034403],[-90.6018914,40.0025867],[-90.6019996,40.0019343],[-90.6020733,40.0017142],[-90.6022123,40.00143],[-90.6022597,40.0011329],[-90.6024182,40.0004856],[-90.6024838,40.0003276],[-90.6026253,40.0000807],[-90.6025858,40.0000804],[-90.6027032,39.999786],[-90.6028037,39.999335200000004],[-90.6028566,39.9989331],[-90.6028726,39.998581],[-90.6030027,39.9980692],[-90.6030137,39.9978593],[-90.6031335,39.9971502],[-90.6032628,39.9967033],[-90.6034505,39.9962075],[-90.603915,39.9951708],[-90.6043623,39.994409],[-90.6048012,39.99357],[-90.6051025,39.9931118],[-90.6055496,39.9923389],[-90.6057719,39.9918703],[-90.6060205,39.9911421],[-90.6060882,39.9908834],[-90.6061734,39.990372],[-90.6059883,39.9893345],[-90.60589590000001,39.9881417],[-90.605884,39.9872792],[-90.6059229,39.9869049],[-90.6059627,39.9866961],[-90.6063059,39.9855999],[-90.6063666,39.9854682],[-90.6064673,39.985252],[-90.6066944,39.9847558],[-90.6071054,39.9839722],[-90.6077866,39.9831475],[-90.6079257,39.9828715],[-90.607914,39.9824714],[-90.6077967,39.982202],[-90.6076725,39.982061099999996],[-90.607209,39.9815686],[-90.6069865,39.9814492],[-90.6068443,39.9814174],[-90.6062912,39.9813812],[-90.6062427,39.981378899999996],[-90.6047126,39.9811586],[-90.6044487,39.9811445],[-90.6038628,39.981071299999996],[-90.6031122,39.9810273],[-90.6024536,39.98101],[-90.6019407,39.9810203],[-90.6012825,39.9809146],[-90.6007312,39.9808742],[-90.6004029,39.9808773],[-90.5999124,39.980941200000004],[-90.5996183,39.9809439],[-90.5988699,39.9810364],[-90.5982655,39.9811566],[-90.5980163,39.98117],[-90.5976005,39.981078600000004],[-90.5974069,39.9809755],[-90.5971673,39.9807914],[-90.5969506,39.9805892],[-90.5967905,39.9803326],[-90.5965964,39.9801909],[-90.5965242,39.980164],[-90.5959009,39.9799972],[-90.5956438,39.979961],[-90.5945902,39.9796934],[-90.5929375,39.979309799999996],[-90.5924789,39.9792368],[-90.591949,39.9791906],[-90.5906565,39.9791294],[-90.5896649,39.979152400000004],[-90.5892585,39.9792003],[-90.5889663,39.9792126],[-90.5884298,39.9792052],[-90.587615,39.9790636],[-90.5872927,39.9789893],[-90.5860614,39.978706700000004],[-90.5856316,39.9786375],[-90.5852466,39.9786838],[-90.584521,39.9789706],[-90.5843877,39.9790477],[-90.5841237,39.9791426],[-90.5837406,39.9793104],[-90.5830947,39.9796503],[-90.5826975,39.9798347],[-90.5822853,39.979969600000004],[-90.5811905,39.9804005],[-90.5802538,39.9808424],[-90.5797632,39.9810222],[-90.579515,39.9810948],[-90.5791234,39.9811743],[-90.5790522,39.9812081],[-90.5787687,39.9813252],[-90.5785541,39.9813658],[-90.5778575,39.9815571],[-90.5770954,39.981695099999996],[-90.5764377,39.9817384],[-90.5761174,39.9817896],[-90.5758182,39.9818144],[-90.5754408,39.9818882],[-90.574601,39.9821029],[-90.5726063,39.9824578],[-90.57195,39.9825948],[-90.5713394,39.9827853],[-90.5703887,39.9832548],[-90.5697338,39.9834843],[-90.5692069,39.9836368],[-90.5686596,39.9837397],[-90.5680883,39.9838042],[-90.5677349,39.9838088],[-90.5675323,39.9838134],[-90.5665234,39.9837659],[-90.5653226,39.9836029],[-90.5646275,39.9834325],[-90.5642194,39.983254],[-90.5632866,39.9829036],[-90.5627425,39.982752500000004],[-90.5621828,39.9826306],[-90.5616829,39.9825564],[-90.5613902,39.9825315],[-90.5606476,39.9825367],[-90.5603617,39.9826097],[-90.5595583,39.9828639],[-90.5587699,39.9831663],[-90.558271,39.9832688],[-90.5573932,39.9833512],[-90.5561435,39.9832726],[-90.555236,39.983289],[-90.554296,39.983412],[-90.5533897,39.9835001],[-90.5528554,39.9835256],[-90.5515251,39.9834574],[-90.5512902,39.9834594],[-90.5505521,39.983289400000004],[-90.5500148,39.9831106],[-90.5495784,39.9829544],[-90.548939,39.9826675],[-90.5486941,39.9824834],[-90.5486177,39.9824123],[-90.5482322,39.982067900000004],[-90.5479081,39.981866600000004],[-90.5474205,39.981650099999996],[-90.5467143,39.9810946],[-90.5464049,39.9809152],[-90.5454599,39.9807014],[-90.5443655,39.9805662],[-90.5434001,39.980424299999996],[-90.5431145,39.9803992],[-90.5426499,39.980401900000004],[-90.5425715,39.9804357],[-90.5421511,39.9805153],[-90.5417462,39.9806666],[-90.5414206,39.9808447],[-90.5412716,39.980962],[-90.5411443,39.9810887],[-90.5408153,39.9816408],[-90.5405434,39.9821759],[-90.5404538,39.9824182],[-90.54032839999999,39.9826719],[-90.5401123,39.9830974],[-90.5399927,39.9832627],[-90.5398022,39.9834783],[-90.5395183,39.9836892],[-90.5393138,39.9838055],[-90.5389643,39.9839508],[-90.5386447,39.9840529],[-90.5381959,39.9841549],[-90.5379686,39.984188599999996],[-90.5372329,39.9841771],[-90.536882,39.984102899999996],[-90.5364291,39.9839247],[-90.535884,39.9835817],[-90.5353715,39.983134899999996],[-90.5351398,39.982872],[-90.535009,39.9827572],[-90.534699,39.9825405],[-90.5343055,39.9823784],[-90.5341188,39.9823676],[-90.5339774,39.9823854],[-90.5337414,39.9824426],[-90.5332679,39.982808399999996],[-90.5330842,39.9830073],[-90.5321158,39.9837555],[-90.5315355,39.9843043],[-90.5307087,39.9849256],[-90.5305875,39.9849805],[-90.5302036,39.9851039],[-90.5300463,39.9851384],[-90.529704,39.9851635],[-90.5296589,39.9851501],[-90.52933110000001,39.9850604],[-90.5290709,39.9848102],[-90.5289702,39.984673],[-90.5289106,39.984519],[-90.5288134,39.9841362],[-90.5288253,39.9839705],[-90.5288756,39.9838541],[-90.528929,39.983579],[-90.5288389,39.983310700000004],[-90.5287817,39.9832008],[-90.5285641,39.9829225],[-90.528139,39.9825564],[-90.5279869,39.9824639],[-90.5274775,39.9822213],[-90.5272558,39.9821501],[-90.5268919,39.9821643],[-90.5260227,39.982345699999996],[-90.5255819,39.9825027],[-90.5248207,39.982826700000004],[-90.5244093,39.9830332],[-90.5240624,39.9832335],[-90.5239349,39.9833436],[-90.5238718,39.9834436],[-90.5238162,39.983569599999996],[-90.5237827,39.98373],[-90.523771,39.9839109],[-90.5238069,39.9840375],[-90.5239603,39.984344],[-90.5244975,39.9850114],[-90.5248219,39.985355],[-90.5249963,39.9855025],[-90.5251827,39.9856168],[-90.525376,39.985709],[-90.5256561,39.9858445],[-90.5260866,39.9859622],[-90.5272166,39.9861967],[-90.5273896,39.9862504],[-90.5276628,39.9864081],[-90.5278209,39.986544699999996],[-90.5279019,39.9866806],[-90.5278967,39.9869401],[-90.5278626,39.9870605],[-90.5277851,39.9871605],[-90.5275883,39.9873154],[-90.5273105,39.98746],[-90.5271055,39.9875446],[-90.5266215,39.987695099999996],[-90.5262792,39.987720100000004],[-90.5256847,39.9876742],[-90.5254272,39.9876102],[-90.5248991,39.9875637],[-90.5239345,39.9876038],[-90.5231653,39.9877568],[-90.522469,39.9879878],[-90.5219419,39.9881345],[-90.5215086,39.9883121],[-90.5212798,39.9883693],[-90.5209808,39.9884091],[-90.52081,39.9883885],[-90.5206298,39.9883349],[-90.520444,39.9882592],[-90.520328,39.9881829],[-90.5202061,39.9880625],[-90.5200472,39.987872100000004],[-90.5199429,39.987608],[-90.5199399,39.9872782],[-90.5200914,39.9868436],[-90.520314,39.9863586],[-90.5203616,39.9861816],[-90.5203755,39.9860283],[-90.5203447,39.985884999999996],[-90.5202998,39.9857598],[-90.520223,39.985657],[-90.5201846,39.9856062],[-90.5197817,39.9854165],[-90.5192019,39.9852669],[-90.5188645,39.9851305],[-90.51838359999999,39.9848765],[-90.5180306,39.9846588],[-90.51752139999999,39.9844313],[-90.5173069,39.9843614],[-90.5167403,39.98426],[-90.5163759,39.9842411],[-90.5161843,39.984268900000004],[-90.5158646,39.984365499999996],[-90.5155941,39.9845155],[-90.5153961,39.984714600000004],[-90.5152134,39.9849797],[-90.515165,39.9851113],[-90.5151525,39.9852383],[-90.5151635,39.9854963],[-90.5151902,39.9856065],[-90.5152534,39.9858861],[-90.5153932,39.9862478],[-90.515475,39.9865659],[-90.5154222,39.9868796],[-90.5152824,39.9871389],[-90.5150628,39.9873326],[-90.5147728,39.9875049],[-90.514623,39.987561299999996],[-90.5144949,39.9876397],[-90.513648,39.9878761],[-90.5135892,39.9879069]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"DOUGLAS","CO_FIPS":41},"geometry":{"type":"Polygon","coordinates":[[[-88.462017,39.8791718],[-88.443998,39.8790751],[-88.4249908,39.8791683],[-88.4060261,39.8792836],[-88.38705590000001,39.8790645],[-88.3683358,39.8792271],[-88.3680151,39.879231000000004],[-88.3491072,39.879368],[-88.3305849,39.8790891],[-88.33000559999999,39.8790806],[-88.3116902,39.879126400000004],[-88.3112999,39.8791114],[-88.2925204,39.8792683],[-88.2736824,39.8790738],[-88.2550318,39.8791198],[-88.25479,39.8791214],[-88.236538,39.879013],[-88.2171663,39.8792043],[-88.1983678,39.8795783],[-88.179514,39.879829900000004],[-88.1604931,39.8800104],[-88.1417882,39.8799568],[-88.1227859,39.8800845],[-88.1036348,39.8801273],[-88.0848544,39.8800776],[-88.0661696,39.8799074],[-88.0472592,39.8795658],[-88.0280326,39.8796064],[-88.0092536,39.8794895],[-87.9944201,39.8793426],[-87.9754088,39.879705799999996],[-87.9565087,39.8798879],[-87.9376075,39.879953799999996],[-87.9372863,39.865131500000004],[-87.9372038,39.8506933],[-87.937046,39.8360994],[-87.9369856,39.8214736],[-87.9370309,39.8069237],[-87.93676239999999,39.792485400000004],[-87.9495697,39.7924807],[-87.9558255,39.7924497],[-87.9688391,39.792166800000004],[-87.9682653,39.7737192],[-87.9676958,39.7591831],[-87.9674931,39.7444006],[-87.9674789,39.7296673],[-87.9669214,39.7149325],[-87.9667765,39.7001367],[-87.9663346,39.6858531],[-87.9852929,39.6855108],[-88.0035501,39.6855319],[-88.0175838,39.6850664],[-88.0257154,39.6847406],[-88.0257044,39.6815217],[-88.0439802,39.681114300000004],[-88.0626102,39.6810204],[-88.0628813,39.6665528],[-88.0634083,39.6523147],[-88.0818439,39.6520885],[-88.1008585,39.6518303],[-88.1199604,39.6518462],[-88.1397329,39.6517121],[-88.1580182,39.6516599],[-88.1768228,39.6517073],[-88.1952777,39.6515519],[-88.2139165,39.6516798],[-88.2323684,39.6516759],[-88.2472496,39.6520478],[-88.2657402,39.6522876],[-88.2844044,39.6524021],[-88.3029431,39.6521258],[-88.3217171,39.6520781],[-88.3408649,39.6520946],[-88.3586548,39.6521693],[-88.3776408,39.6520236],[-88.3963422,39.6520351],[-88.4153002,39.652070800000004],[-88.4340083,39.6521039],[-88.4527646,39.6520186],[-88.4724682,39.6516128],[-88.472473,39.6661933],[-88.4728111,39.6809479],[-88.4729631,39.6954881],[-88.4729667,39.6959768],[-88.4729661,39.7104439],[-88.4729185,39.7247048],[-88.4729157,39.7251396],[-88.4727482,39.7395333],[-88.47277270000001,39.7398095],[-88.4723393,39.7537951],[-88.4726379,39.7683335],[-88.4726748,39.7793736],[-88.4727165,39.791861499999996],[-88.4619691,39.7919563],[-88.4618224,39.7919578],[-88.4618794,39.8064828],[-88.4619139,39.8210793],[-88.4619271,39.8354272],[-88.46209640000001,39.8498647],[-88.4620373,39.8645043],[-88.462017,39.8791718]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"PIKE","CO_FIPS":149},"geometry":{"type":"Polygon","coordinates":[[[-90.5718907,39.8391675],[-90.5713175,39.8386787],[-90.5704837,39.8378871],[-90.5701287,39.8375025],[-90.5696856,39.8369738],[-90.5684911,39.8357646],[-90.5680423,39.8352139],[-90.56733,39.8344005],[-90.5667963,39.8337401],[-90.5665328,39.8333064],[-90.5663982,39.8330481],[-90.5659003,39.8319692],[-90.565787,39.8315852],[-90.5656877,39.8309415],[-90.5656655,39.8306602],[-90.5656604,39.8294954],[-90.5656877,39.8291763],[-90.5657957,39.828742],[-90.5660158,39.828032],[-90.5661586,39.8276525],[-90.5663668,39.8272187],[-90.5667799,39.8266077],[-90.5674216,39.8258497],[-90.5676067,39.8256631],[-90.5678342,39.8254374],[-90.5687668,39.824623],[-90.5694876,39.8241224],[-90.569516,39.8241055],[-90.570513,39.8235237],[-90.572585,39.8221979],[-90.5736407,39.8213575],[-90.5744386,39.8207526],[-90.5747521,39.8205386],[-90.5754278,39.8201363],[-90.575813,39.8198126],[-90.5763829,39.8192843],[-90.5766416,39.818999],[-90.5767754,39.8188501],[-90.5770034,39.8185472],[-90.5773947,39.8179267],[-90.5785203,39.8159414],[-90.5792045,39.814929],[-90.5796181,39.8142476],[-90.5801092,39.8132521],[-90.5804299,39.8126971],[-90.5806648,39.8123775],[-90.5809577,39.8121085],[-90.5813629,39.8115748],[-90.5822818,39.8105906],[-90.5830446,39.8094629],[-90.5834515,39.8089292],[-90.5836853,39.8085447],[-90.5838504,39.8083417],[-90.5845628,39.8073124],[-90.5852739,39.8065482],[-90.5862712,39.8053217],[-90.5870325,39.8044493],[-90.5887565,39.8027814],[-90.589134,39.8025474],[-90.58930409999999,39.8024409],[-90.5902869,39.8016645],[-90.5915974,39.8006807],[-90.5920599,39.8003894],[-90.5931935,39.799537],[-90.5936122,39.7991949],[-90.5948941,39.7977601],[-90.5960904,39.7965717],[-90.5963973,39.7961769],[-90.5968317,39.7954662],[-90.5972422,39.7946039],[-90.59744309999999,39.7941797],[-90.597985,39.7929146],[-90.5983331,39.7919521],[-90.5984115,39.7915843],[-90.5988116,39.7904019],[-90.5988962,39.7902092],[-90.598947,39.7901425],[-90.5990101,39.790060499999996],[-90.5993089,39.7893787],[-90.59947389999999,39.789059699999996],[-90.5997371,39.7881629],[-90.5998498,39.7879327],[-90.6005986,39.7866339],[-90.601033,39.7858155],[-90.6012039,39.785535100000004],[-90.6014659,39.7850179],[-90.6026631,39.7832304],[-90.6036161,39.7816081],[-90.603772,39.7812892],[-90.6043275,39.7804421],[-90.6044839,39.7801508],[-90.6046976,39.7798644],[-90.6047551,39.7797645],[-90.6052529,39.7788904],[-90.6054954,39.7785058],[-90.6055525,39.7783796],[-90.6056802,39.7781976],[-90.6057807,39.777993800000004],[-90.6062002,39.7773729],[-90.6066908,39.7764988],[-90.6068043,39.7762121],[-90.606947,39.7759595],[-90.6072394,39.7752225],[-90.6073461,39.7747274],[-90.6075379,39.773396500000004],[-90.6075526,39.773199],[-90.6075303,39.7729177],[-90.6074231,39.7724729],[-90.6072381,39.7720826],[-90.606933,39.7715652],[-90.6065906,39.7707182],[-90.6064562,39.7700211],[-90.6063924,39.7694931],[-90.6063986,39.7692059],[-90.6063286,39.7689644],[-90.606272,39.7687779],[-90.6062932,39.7681953],[-90.6064706,39.7670784],[-90.6067268,39.766089199999996],[-90.6069826,39.765411900000004],[-90.6070119,39.7653467],[-90.6076025,39.7640148],[-90.6081578,39.762942699999996],[-90.6085123,39.7624039],[-90.6086911,39.7621731],[-90.6093588,39.7611993],[-90.6102422,39.7598467],[-90.61066220000001,39.759263000000004],[-90.6108173,39.7590104],[-90.6116295,39.7579041],[-90.6122267,39.7572277],[-90.6123755,39.757024799999996],[-90.6128741,39.7562154],[-90.6135492,39.7549296],[-90.61381779999999,39.7543888],[-90.6143964,39.7532184],[-90.6151795,39.7518653],[-90.6155028,39.751168],[-90.6160324,39.7504025],[-90.6161037,39.750276299999996],[-90.6161824,39.7500561],[-90.6182729,39.7455949],[-90.6186137,39.7449885],[-90.6195505,39.74342],[-90.6203383,39.7421496],[-90.6205026,39.742028],[-90.6213903,39.7408602],[-90.6220172,39.7398191],[-90.6220782,39.7397164],[-90.6234922,39.7374808],[-90.625131,39.7348898],[-90.6258409,39.7337899],[-90.6267874,39.7322847],[-90.6277796,39.7306245],[-90.6278126,39.730569],[-90.6286812,39.7292274],[-90.6299495,39.7276239],[-90.6311946,39.7262511],[-90.6324338,39.725066],[-90.6341687,39.7234828],[-90.6354035,39.722473],[-90.6354528,39.7224298],[-90.6358617,39.722072499999996],[-90.6380837,39.7203382],[-90.638999,39.7195813],[-90.6395633,39.7190045],[-90.6401916,39.7184063],[-90.6407649,39.7176154],[-90.6413238,39.7169282],[-90.6416678,39.7162127],[-90.6423466,39.714106799999996],[-90.6431396,39.711883900000004],[-90.6435261,39.7106007],[-90.6437322,39.7100922],[-90.6439901,39.7094644],[-90.6442857,39.7085272],[-90.644453,39.708157],[-90.6444665,39.7081058],[-90.6446678,39.7077436],[-90.6448691,39.7071592],[-90.6451734,39.7064248],[-90.6454642,39.7056256],[-90.6457398,39.7047768],[-90.6459531,39.704054299999996],[-90.6461062,39.7030356],[-90.646108,39.7025953],[-90.6460827,39.7022491],[-90.6461299,39.7012038],[-90.6461043,39.7008411],[-90.6460362,39.7005008],[-90.645967,39.6998735],[-90.645832,39.6991544],[-90.6458067,39.6988082],[-90.6457155,39.6982584],[-90.6457196,39.6979616],[-90.6454808,39.6967907],[-90.6453489,39.6963738],[-90.6453031,39.6961921],[-90.6449678,39.694586],[-90.6447077,39.6936431],[-90.6445255,39.6930983],[-90.6436946,39.6912238],[-90.6423537,39.6887442],[-90.6419568,39.6880662],[-90.6415966,39.6875576],[-90.6406475,39.686537200000004],[-90.640295,39.686057500000004],[-90.6396945,39.6851593],[-90.6388189,39.6835985],[-90.6376192,39.6813272],[-90.6364244,39.6787992],[-90.6347896,39.6753465],[-90.6345123,39.6747626],[-90.6340676,39.6739912],[-90.6337365,39.6732863],[-90.6334247,39.6727786],[-90.6328882,39.672182],[-90.6322716,39.6716028],[-90.6316548,39.6711173],[-90.6307615,39.6705421],[-90.629674,39.670104],[-90.62927619999999,39.6699104],[-90.628936,39.6696349],[-90.6283347,39.6688953],[-90.6279404,39.6683608],[-90.6268231,39.6666228],[-90.6255795,39.6643491],[-90.6251085,39.6634909],[-90.6242918,39.6621089],[-90.6237006,39.6610973],[-90.6234002,39.6607358],[-90.6228799,39.6600272],[-90.6213773,39.658296899999996],[-90.6204092,39.6572696],[-90.6198252,39.6565933],[-90.6195621,39.6563308],[-90.6187281,39.6553091],[-90.6184288,39.654791599999996],[-90.6180231,39.6542103],[-90.6173529,39.6530448],[-90.6168981,39.6521769],[-90.6168831,39.652132800000004],[-90.6166322,39.6510656],[-90.616497,39.650643099999996],[-90.61626150000001,39.6502092],[-90.6154187,39.6490771],[-90.6125731,39.6452643],[-90.6117968,39.6444946],[-90.6107929,39.643214900000004],[-90.61033019999999,39.642516799999996],[-90.6098027,39.6417861],[-90.6089554,39.6403587],[-90.6083572,39.6392146],[-90.6079178,39.6376149],[-90.6078706,39.6374497],[-90.6075788,39.6367196],[-90.6074783,39.636230499999996],[-90.6074145,39.6347874],[-90.6074122,39.6347557],[-90.6075798,39.6323636],[-90.607565,39.6315383],[-90.6074487,39.6300488],[-90.6071196,39.6274046],[-90.606789,39.625678300000004],[-90.6065974,39.6250728],[-90.6065161,39.624896899999996],[-90.6064173,39.6244023],[-90.6062421,39.6240409],[-90.6061145,39.623646],[-90.605916,39.623163399999996],[-90.6058719,39.6229706],[-90.6056822,39.622147],[-90.6052758,39.6211598],[-90.6050354,39.6200538],[-90.6050181,39.619978],[-90.6048707,39.619682600000004],[-90.6046865,39.6192054],[-90.6044009,39.6186298],[-90.6040893,39.6182256],[-90.6035704,39.6172284],[-90.6031273,39.6165107],[-90.6023667,39.6144419],[-90.6019392,39.612894600000004],[-90.6014489,39.6114458],[-90.6013125,39.6108246],[-90.6007014,39.6092886],[-90.6005853,39.6090523],[-90.5999404,39.607754],[-90.5997139,39.6074152],[-90.5992681,39.6065222],[-90.5986443,39.6056516],[-90.5983279,39.6051618],[-90.5975619,39.603983299999996],[-90.5967658,39.602932100000004],[-90.5959052,39.6018608],[-90.5953496,39.6012435],[-90.5949749,39.6009005],[-90.5945973,39.600369900000004],[-90.5935498,39.5990905],[-90.5930774,39.5984282],[-90.5927369,39.597871],[-90.5925589,39.5974365],[-90.5919036,39.596254200000004],[-90.5915715,39.5954361],[-90.5912463,39.5947117],[-90.591008,39.5941867],[-90.59049,39.5927657],[-90.5901584,39.5919751],[-90.5896381,39.5905155],[-90.5896101,39.5904357],[-90.5895151,39.5901757],[-90.5890824,39.5891887],[-90.5887808,39.588371699999996],[-90.5885087,39.5877351],[-90.5879365,39.5860345],[-90.5873398,39.5844762],[-90.587136,39.5836361],[-90.5866498,39.5824177],[-90.586286,39.5817282],[-90.586109,39.5812398],[-90.5857378,39.5806484],[-90.5855587,39.580258],[-90.5854517,39.5800285],[-90.5851862,39.5793478],[-90.5843963,39.577748400000004],[-90.5840742,39.5769854],[-90.5836206,39.5760206],[-90.5831445,39.5751003],[-90.5828667,39.5744306],[-90.5826467,39.5738088],[-90.582518,39.5734483],[-90.5817018,39.5698893],[-90.581197,39.5683743],[-90.5806079,39.5668269],[-90.5801086,39.5657839],[-90.5800957,39.5657578],[-90.5800479,39.5656658],[-90.5793663,39.5643608],[-90.578605,39.5632056],[-90.5779092,39.562254100000004],[-90.5773866,39.561428],[-90.5771241,39.5609404],[-90.5769831,39.560462799999996],[-90.5766599,39.5597383],[-90.5766205,39.5596076],[-90.5764595,39.5591066],[-90.5761953,39.5579262],[-90.575924,39.5573227],[-90.5757734,39.556801],[-90.5755771,39.5558559],[-90.5752684,39.5536297],[-90.57517,39.5520902],[-90.5749609,39.5511245],[-90.574798,39.5503807],[-90.5747275,39.5499686],[-90.5745114,39.5471425],[-90.5744411,39.546741499999996],[-90.5744365,39.5463233],[-90.5742371,39.545752300000004],[-90.5741533,39.5454052],[-90.5740291,39.5450931],[-90.5737747,39.5446606],[-90.57370159999999,39.5445398],[-90.5732182,39.5440598],[-90.5727065,39.5434695],[-90.5725481,39.5432502],[-90.5724373,39.542998600000004],[-90.5723761,39.5426085],[-90.5723162,39.5419534],[-90.5721541,39.5410246],[-90.5721766,39.5405179],[-90.5721059,39.5400837],[-90.5721559,39.5396264],[-90.5722312,39.5393014],[-90.5726363,39.5383963],[-90.5727662,39.5380322],[-90.5731466,39.5372585],[-90.573657,39.5364809],[-90.5737093,39.5364003],[-90.5739307,39.535958],[-90.5742574,39.5354098],[-90.5745353,39.535049799999996],[-90.5749102,39.5343866],[-90.5752496,39.5338507],[-90.5755925,39.5334293],[-90.5760983,39.533050700000004],[-90.5764267,39.532612900000004],[-90.5777617,39.5311003],[-90.5787437,39.5299277],[-90.5788994,39.5297413],[-90.579117,39.5295143],[-90.5794093,39.5291652],[-90.5804159,39.5280945],[-90.580688,39.5277069],[-90.5809123,39.5274577],[-90.5811331,39.5270982],[-90.5816389,39.5261467],[-90.5817968,39.5257491],[-90.5819505,39.5250824],[-90.5819714,39.5244708],[-90.5819289,39.5240253],[-90.5817788,39.5234221],[-90.58138890000001,39.5225217],[-90.5810685,39.5218483],[-90.5810271,39.521709200000004],[-90.580956,39.5214863],[-90.5808879,39.5211115],[-90.58063920000001,39.5201186],[-90.5806216,39.5193251],[-90.5805372,39.5189298],[-90.5805027,39.518429],[-90.5805733,39.5179177],[-90.5805845,39.5172564],[-90.5807403,39.5158554],[-90.5810217,39.5143966],[-90.5811906,39.5137891],[-90.5814914,39.5124889],[-90.5817834,39.511550400000004],[-90.5818704,39.511181],[-90.5819729,39.5108944],[-90.5820469,39.5106066],[-90.5821573,39.510369600000004],[-90.5824235,39.5096024],[-90.58273439999999,39.508966],[-90.583254,39.5081096],[-90.5835572,39.5076651],[-90.5846305,39.5060886],[-90.5851102,39.505308400000004],[-90.5854017,39.5049151],[-90.5857216,39.5044014],[-90.585925,39.5041897],[-90.5860628,39.5039966],[-90.5866846,39.5022627],[-90.5868701,39.501815199999996],[-90.5870224,39.5012976],[-90.5873536,39.5003587],[-90.5875124,39.5000328],[-90.5876403,39.4997763],[-90.5876733,39.4994903],[-90.5878278,39.499229299999996],[-90.5880347,39.4984393],[-90.5881459,39.4979082],[-90.5883549,39.4973721],[-90.588554,39.496648300000004],[-90.5886649,39.4963367],[-90.5888947,39.4958722],[-90.5890763,39.4956386],[-90.5891955,39.4953932],[-90.5894419,39.4950831],[-90.5898581,39.4944664],[-90.5905193,39.4933367],[-90.5906007,39.4930723],[-90.59075490000001,39.4925588],[-90.5908175,39.4922311],[-90.5910165,39.4915128],[-90.5914295,39.489312999999996],[-90.5916554,39.4882604],[-90.5917699,39.4878273],[-90.591791,39.487471],[-90.5924897,39.485891],[-90.5929904,39.484985],[-90.5931598,39.4846521],[-90.5932997,39.4843734],[-90.5935903,39.4840463],[-90.5939921,39.483425600000004],[-90.5943777,39.482903],[-90.5947514,39.482308700000004],[-90.5951512,39.4817915],[-90.5956003,39.4813511],[-90.5963831,39.4804922],[-90.597321,39.4793005],[-90.5975332,39.4789797],[-90.597775,39.4786082],[-90.5977959,39.4785755],[-90.5987106,39.4771577],[-90.6003062,39.4744166],[-90.6003687,39.4743097],[-90.6030093,39.470072200000004],[-90.6040863,39.4683422],[-90.6045247,39.4676825],[-90.60695989999999,39.464569],[-90.6070974,39.4643662],[-90.6083032,39.4625742],[-90.6092626,39.4610799],[-90.6095102,39.4602977],[-90.6098871,39.4595819],[-90.6101054,39.4588593],[-90.6101539,39.4586628],[-90.6107158,39.4563592],[-90.6107901,39.455425500000004],[-90.6108759,39.4543162],[-90.6108838,39.453914499999996],[-90.6108441,39.452639500000004],[-90.6108783,39.4516495],[-90.6109908,39.4502004],[-90.6110941,39.4496404],[-90.6112055,39.4490265],[-90.6113876,39.4477093],[-90.6114168,39.4469664],[-90.6114911,39.4463736],[-90.6114898,39.4460658],[-90.6114442,39.4458785],[-90.6116189,39.4445448],[-90.6117697,39.4430458],[-90.6117955,39.4420848],[-90.6119169,39.4413162],[-90.6122339,39.4399784],[-90.612333,39.4396007],[-90.6123286,39.4394351],[-90.6127591,39.4380672],[-90.6129542,39.4375684],[-90.6130813,39.4371642],[-90.6139714,39.4354869],[-90.6142372,39.4349599],[-90.6145323,39.434373199999996],[-90.6148289,39.4336567],[-90.6150032,39.4330864],[-90.6155196,39.4320932],[-90.6159634,39.430779],[-90.6161178,39.430076299999996],[-90.616316,39.4293318],[-90.6164498,39.428679],[-90.6164635,39.4279708],[-90.6165619,39.4268835],[-90.6165903,39.425866],[-90.6166215,39.4255924],[-90.6166837,39.4250258],[-90.6166789,39.4241577],[-90.6166484,39.4235796],[-90.61669499999999,39.4230422],[-90.6166507,39.4227169],[-90.6166305,39.422343],[-90.6163241,39.4203582],[-90.6161527,39.419257],[-90.6157613,39.4160031],[-90.6153981,39.4139706],[-90.6152829,39.412990300000004],[-90.615205,39.4113277],[-90.6151872,39.4109925],[-90.6152425,39.409987],[-90.615311,39.4093721],[-90.6154618,39.4085549],[-90.6154294,39.4079672],[-90.6154564,39.4073182],[-90.6154056,39.4066906],[-90.6152996,39.4059532],[-90.6152637,39.405821],[-90.6151073,39.405269000000004],[-90.6148266,39.4040611],[-90.6146198,39.4033605],[-90.6144524,39.4025615],[-90.6141613,39.4014793],[-90.613975,39.4004983],[-90.6137585,39.398957100000004],[-90.6137314,39.398143],[-90.6136557,39.3969593],[-90.6135855,39.396568],[-90.6135923,39.3962104],[-90.6137075,39.3957345],[-90.6251139,39.3957056],[-90.6310436,39.3958389],[-90.6496551,39.3962637],[-90.6686137,39.3962487],[-90.6873877,39.396576100000004],[-90.7059452,39.3970243],[-90.7060644,39.3970272],[-90.7063188,39.3970274],[-90.7249541,39.3976346],[-90.7431476,39.3982905],[-90.7433469,39.3982897],[-90.743637,39.3982977],[-90.7501178,39.3984799],[-90.7616743,39.3989385],[-90.7621533,39.3989581],[-90.7626498,39.3989666],[-90.7805846,39.3993212],[-90.7809779,39.3993293],[-90.7815403,39.3993355],[-90.8010228,39.399576100000004],[-90.8010584,39.3995771],[-90.8199494,39.3997563],[-90.8387545,39.3998092],[-90.857693,39.399858800000004],[-90.8750642,39.3999087],[-90.876486,39.3999182],[-90.8861839,39.3998935],[-90.8951138,39.3999931],[-90.908664,39.4000696],[-90.9105204,39.399659400000004],[-90.9111568,39.399633800000004],[-90.916412,39.399609],[-90.9351484,39.3995036],[-90.9367583,39.399488],[-90.936915,39.3997594],[-90.9373249,39.4005785],[-90.9378411,39.4012858],[-90.9382186,39.4017353],[-90.9388414,39.4024372],[-90.9392969,39.4028747],[-90.9395397,39.4030884],[-90.9401668,39.4035597],[-90.9409426,39.4040844],[-90.9419383,39.4046574],[-90.943667,39.4055748],[-90.944492,39.4059788],[-90.9465098,39.4067586],[-90.9470852,39.406964099999996],[-90.9500178,39.4078389],[-90.9514812,39.4081355],[-90.9519356,39.4082499],[-90.9526518,39.4083791],[-90.9535527,39.408490799999996],[-90.9547666,39.4085944],[-90.9548431,39.4085948],[-90.9563893,39.4087592],[-90.9580569,39.409115299999996],[-90.958993,39.4093811],[-90.96022310000001,39.4099207],[-90.9609704,39.4101709],[-90.9612891,39.4102691],[-90.9620977,39.410474300000004],[-90.9641945,39.4110983],[-90.9648971,39.4112551],[-90.967496,39.412153],[-90.9680941,39.412331800000004],[-90.9684077,39.4124383],[-90.9686193,39.4125116],[-90.9693296,39.4128658],[-90.9706659,39.4133722],[-90.9710505,39.4135523],[-90.9727865,39.414452600000004],[-90.9731404,39.4146083],[-90.9733918,39.4147197],[-90.9736762,39.4148721],[-90.974245,39.4152652],[-90.9746162,39.4154842],[-90.9748894,39.4156975],[-90.9750142,39.4157967],[-90.9756079,39.4163552],[-90.9764715,39.4172305],[-90.9769283,39.4176251],[-90.9774201,39.4179971],[-90.9778614,39.4182483],[-90.9791209,39.4188149],[-90.98009569999999,39.419300899999996],[-90.9811544,39.4197141],[-90.982454,39.420160100000004],[-90.9837422,39.420649],[-90.9843019,39.420773],[-90.9846497,39.42081],[-90.985423,39.4209396],[-90.9862387,39.4210508],[-90.9873395,39.421261799999996],[-90.9878292,39.4213577],[-90.9883981,39.4214954],[-90.988475,39.4215152],[-90.9889158,39.4215731],[-90.9896679,39.4217029],[-90.9902846,39.4218317],[-90.9911295,39.4220598],[-90.9912832,39.4220923],[-90.9916766,39.4221784],[-90.9922459,39.4223355],[-90.9925506,39.4224379],[-90.9930832,39.422623],[-90.9937813,39.422894299999996],[-90.9943344,39.4231288],[-90.9951818,39.4235597],[-90.9963724,39.4243079],[-90.99744,39.4248809],[-90.99812969999999,39.42534],[-90.9993263,39.426034200000004],[-90.9999179,39.4263166],[-91.00008940000001,39.4264331],[-91.0017485,39.427028899999996],[-91.0030031,39.4276836],[-91.0058982,39.429389900000004],[-91.0074508,39.4303307],[-91.0082958,39.4308872],[-91.0110881,39.4325201],[-91.011271,39.4326655],[-91.0114014,39.4327715],[-91.01188690000001,39.4329157],[-91.0127058,39.4333344],[-91.0132681,39.4335728],[-91.0166155,39.4350991],[-91.0177117,39.4355763],[-91.0188268,39.4361085],[-91.0199181,39.4367721],[-91.02068,39.4371846],[-91.0217226,39.4378144],[-91.0223747,39.438170299999996],[-91.0235567,39.4389073],[-91.0242293,39.4392243],[-91.0248448,39.4396125],[-91.0253905,39.4399049],[-91.0269721,39.440839600000004],[-91.0298516,39.443006499999996],[-91.0299493,39.4430812],[-91.0305079,39.4434687],[-91.0316171,39.4442921],[-91.0321248,39.4447162],[-91.0330546,39.4453072],[-91.0354518,39.4468965],[-91.036078,39.4474432],[-91.0368631,39.4479298],[-91.0371266,39.4480962],[-91.0379078,39.448645],[-91.0385079,39.4491368],[-91.0391196,39.449674],[-91.039913,39.4502945],[-91.0425726,39.4525468],[-91.0450597,39.454802799999996],[-91.0488893,39.4586657],[-91.0491231,39.4589318],[-91.0493168,39.4591556],[-91.0498323,39.459603],[-91.0504819,39.4600679],[-91.0516291,39.4613806],[-91.052082,39.4618108],[-91.0524685,39.462217100000004],[-91.0527864,39.462504100000004],[-91.0529555,39.4626593],[-91.0538567,39.4636329],[-91.0548431,39.4645102],[-91.0557321,39.4654123],[-91.056119,39.4658364],[-91.0568045,39.4663132],[-91.0571642,39.4667129],[-91.0577552,39.467265499999996],[-91.0581223,39.4676775],[-91.0588003,39.4683794],[-91.0593099,39.4691125],[-91.060208,39.4701801],[-91.0604867,39.4707009],[-91.06114840000001,39.471628],[-91.0613915,39.4721493],[-91.0614169,39.4722484],[-91.0615735,39.4725638],[-91.0617186,39.4727634],[-91.0618326,39.4730076],[-91.0620525,39.4736866],[-91.0621095,39.4740061],[-91.0622248,39.4742282],[-91.06243309999999,39.4750274],[-91.062503,39.4754475],[-91.0625526,39.4767182],[-91.0626022,39.4773512],[-91.0625951,39.477429900000004],[-91.0625643,39.4777299],[-91.0625648,39.4783952],[-91.0626075,39.479033799999996],[-91.0625964,39.4801397],[-91.0627046,39.4822848],[-91.0628079,39.4830895],[-91.0628352,39.4837559],[-91.0633059,39.4874685],[-91.0633543,39.4881235],[-91.0635393,39.4893965],[-91.0636051,39.4902722],[-91.0637436,39.491054399999996],[-91.063832,39.4919077],[-91.06395499999999,39.493031099999996],[-91.0639461,39.4934329],[-91.0640409,39.493934100000004],[-91.0641033,39.4946553],[-91.0641939,39.4953663],[-91.0642362,39.4960656],[-91.064579,39.4988246],[-91.0649413,39.5000566],[-91.06616,39.5043017],[-91.0661698,39.5043402],[-91.0669165,39.507147599999996],[-91.067512,39.5093993],[-91.0677214,39.5146434],[-91.0684421,39.518514100000004],[-91.0695422,39.5217322],[-91.0710119,39.5254493],[-91.0713905,39.526122],[-91.0717817,39.5267186],[-91.0721023,39.5272651],[-91.0724839,39.5277514],[-91.073139,39.5283513],[-91.0740913,39.5289266],[-91.0744911,39.529109],[-91.0759478,39.529844499999996],[-91.0773613,39.5304771],[-91.0788126,39.5312071],[-91.0811283,39.5323202],[-91.0856704,39.5343765],[-91.0857063,39.5343884],[-91.0914334,39.5365706],[-91.0915286,39.536601],[-91.0930106,39.5370958],[-91.0993972,39.538624],[-91.104486,39.539596700000004],[-91.106248,39.5399315],[-91.114929,39.5411168],[-91.1232923,39.5418904],[-91.12338510000001,39.5418946],[-91.1250944,39.5421042],[-91.1274407,39.5424127],[-91.1309587,39.5431217],[-91.1355094,39.5440729],[-91.1381557,39.5444764],[-91.1414823,39.5448399],[-91.147898,39.5457079],[-91.1485677,39.5459042],[-91.1492103,39.546163],[-91.1527081,39.547739899999996],[-91.1535976,39.5483361],[-91.1549235,39.5494452],[-91.1560914,39.5505055],[-91.1571585,39.5515243],[-91.1576936,39.5521338],[-91.1581077,39.5526083],[-91.163505,39.5585505],[-91.1645802,39.5596009],[-91.1653747,39.5607699],[-91.1663338,39.5620359],[-91.1676993,39.563889700000004],[-91.1677196,39.5639184],[-91.1677186,39.5639523],[-91.1685176,39.5652323],[-91.1687545,39.5657465],[-91.1690811,39.566958],[-91.1697564,39.5694815],[-91.1708118,39.5782485],[-91.1714027,39.5813432],[-91.1723943,39.5847111],[-91.1732732,39.587908],[-91.1738256,39.5906526],[-91.1740694,39.591601600000004],[-91.1746174,39.5932627],[-91.1751286,39.5940491],[-91.176424,39.5959231],[-91.17644609999999,39.5959518],[-91.1776258,39.5976093],[-91.1803503,39.6010365],[-91.1811677,39.6019414],[-91.1825668,39.6031375],[-91.1831921,39.6035427],[-91.1838154,39.6038609],[-91.1853301,39.6047419],[-91.1862176,39.6051405],[-91.186302,39.6051614],[-91.1921963,39.6070934],[-91.1985206,39.6088601],[-91.2022721,39.6101254],[-91.2028895,39.6103401],[-91.2053734,39.611211],[-91.209319,39.6125948],[-91.2124711,39.6136352],[-91.2175885,39.6154089],[-91.223045,39.6174699],[-91.224284,39.6180633],[-91.2257335,39.6187998],[-91.226954,39.6195135],[-91.2295388,39.6209759],[-91.2351079,39.6250309],[-91.2353417,39.6252455],[-91.2355983,39.6254446],[-91.2360166,39.6256869],[-91.2366038,39.6262594],[-91.2373056,39.6267777],[-91.2392763,39.6283636],[-91.2396164,39.6286181],[-91.240402,39.6292732],[-91.2409048,39.6297516],[-91.2419321,39.631011900000004],[-91.2428687,39.632279],[-91.2430981,39.6327504],[-91.2433873,39.6331796],[-91.2435368,39.6334493],[-91.2436561,39.633725],[-91.2438546,39.6340271],[-91.2442629,39.634868600000004],[-91.2446037,39.635435],[-91.2448081,39.6359027],[-91.2450695,39.6363654],[-91.245252,39.6367395],[-91.2455641,39.6371573],[-91.2456842,39.6373943],[-91.2459873,39.6378067],[-91.2460383,39.637845999999996],[-91.2463699,39.6383297],[-91.2466106,39.638605],[-91.246766,39.6388249],[-91.247042,39.6390831],[-91.247368,39.6394854],[-91.2476099,39.6396613],[-91.2478082,39.639882],[-91.2481124,39.6402667],[-91.2482943,39.6404738],[-91.2486214,39.6408499],[-91.2493655,39.641478],[-91.2498768,39.641863799999996],[-91.2501584,39.6421274],[-91.2504044,39.642328],[-91.2509087,39.6427167],[-91.25173,39.6432193],[-91.2521879,39.6434651],[-91.2526505,39.6437605],[-91.253741,39.6443861],[-91.2546536,39.644966],[-91.2559642,39.6458948],[-91.2573107,39.6469017],[-91.2593529,39.648305300000004],[-91.2600946,39.6489057],[-91.2605976,39.649382700000004],[-91.2615118,39.6503753],[-91.2615966,39.6504817],[-91.2618809,39.6508515],[-91.2623854,39.6516749],[-91.2634327,39.653201100000004],[-91.2639165,39.6539807],[-91.2650314,39.6553526],[-91.265107,39.6554481],[-91.2660833,39.6564908],[-91.2661815,39.6565625],[-91.266378,39.6567072],[-91.267134,39.6573681],[-91.2678666,39.6580942],[-91.2682789,39.6585822],[-91.2687044,39.6590258],[-91.2698931,39.6601301],[-91.2715149,39.661694499999996],[-91.2728164,39.6628814],[-91.2740982,39.6639208],[-91.2750838,39.664896999999996],[-91.2757487,39.6654805],[-91.2761265,39.6657316],[-91.2765489,39.6659764],[-91.2787458,39.6670351],[-91.2796048,39.6675259],[-91.2799842,39.6677659],[-91.2803845,39.6680552],[-91.281379,39.6688173],[-91.2821806,39.6693628],[-91.2825314,39.6696018],[-91.2847104,39.670863600000004],[-91.2853256,39.6711717],[-91.2856404,39.6713326],[-91.2861119,39.6715407],[-91.2883701,39.6723954],[-91.2894977,39.6729055],[-91.2901051,39.6731199],[-91.2906903,39.6733719],[-91.2913028,39.6736469],[-91.2936125,39.6747657],[-91.2942053,39.6750341],[-91.2947251,39.6753146],[-91.2955272,39.6758049],[-91.297247,39.676974],[-91.2976206,39.6771919],[-91.298352,39.6775714],[-91.2991261,39.6780123],[-91.3012417,39.6788716],[-91.3015237,39.6789998],[-91.3018976,39.679228699999996],[-91.3022482,39.6794567],[-91.3025915,39.6797454],[-91.3029703,39.6800957],[-91.3031305,39.6802838],[-91.303664,39.6810914],[-91.3038556,39.6815978],[-91.3039495,39.681912499999996],[-91.3040144,39.6823532],[-91.3040813,39.6825951],[-91.3042609,39.6829761],[-91.3043496,39.6830935],[-91.3045663,39.6833911],[-91.3050544,39.6839606],[-91.3056367,39.6843727],[-91.3067537,39.685152],[-91.3097273,39.686985],[-91.3107682,39.6877199],[-91.3112383,39.6880757],[-91.3143281,39.6901745],[-91.314715,39.6904198],[-91.3154109,39.690936300000004],[-91.3167101,39.6918425],[-91.3180062,39.6929751],[-91.3187215,39.6934817],[-91.3194686,39.6939008],[-91.3200184,39.6941573],[-91.3205602,39.6944485],[-91.3217569,39.6951174],[-91.3225616,39.695487299999996],[-91.3228648,39.6956027],[-91.3231175,39.6957009],[-91.3233996,39.695829],[-91.3245983,39.6964385],[-91.3262937,39.697386800000004],[-91.3273297,39.6979187],[-91.3282159,39.698464],[-91.3290321,39.6989979],[-91.3308981,39.7000414],[-91.3310234,39.7001188],[-91.3319518,39.700704200000004],[-91.3324105,39.700956500000004],[-91.3336775,39.7017084],[-91.3342957,39.7021143],[-91.3352596,39.702688699999996],[-91.3358071,39.703057],[-91.3364619,39.703424999999996],[-91.3379448,39.7044371],[-91.3383821,39.7046884],[-91.3392604,39.705266800000004],[-91.3405661,39.706261],[-91.341423,39.706977800000004],[-91.3424072,39.707705000000004],[-91.3426787,39.7079065],[-91.3434029,39.708396199999996],[-91.3448974,39.7092272],[-91.3456073,39.7096509],[-91.3467429,39.710219699999996],[-91.3474384,39.7106381],[-91.3477971,39.7108892],[-91.348042,39.7110938],[-91.3487839,39.7118469],[-91.3496893,39.7130419],[-91.3500454,39.7134628],[-91.3504597,39.7138566],[-91.3509847,39.7143122],[-91.3513222,39.7145733],[-91.3516674,39.7147846],[-91.352602,39.7152502],[-91.3536271,39.7157628],[-91.3549136,39.7166245],[-91.3553916,39.7169911],[-91.3555586,39.7171569],[-91.3557395,39.7174397],[-91.356458,39.718385],[-91.3572186,39.7192979],[-91.35810910000001,39.7205262],[-91.3592552,39.7217545],[-91.3604061,39.722752299999996],[-91.3606933,39.7230031],[-91.3610449,39.7232488],[-91.3623504,39.7243476],[-91.3629398,39.7248021],[-91.36354180000001,39.7253903],[-91.3639494,39.7257289],[-91.3642446,39.726005799999996],[-91.3659846,39.7274428],[-91.3665093,39.727948],[-91.3670984,39.7284522],[-91.3680575,39.7294281],[-91.3682648,39.7296926],[-91.3683267,39.7296681],[-91.368434,39.7298707],[-91.3692202,39.730926600000004],[-91.3695822,39.7317671],[-91.3697673,39.7321355],[-91.3699168,39.7325803],[-91.3699655,39.7328004],[-91.3699723,39.7332558],[-91.3699082,39.7340699],[-91.3696956,39.7349484],[-91.3696254,39.7353996],[-91.3695121,39.7358445],[-91.3694755,39.7363503],[-91.3694046,39.7366413],[-91.3693475,39.737048],[-91.3693546,39.7375158],[-91.3694401,39.7381094],[-91.3697376,39.7392739],[-91.3698029,39.739845700000004],[-91.3697884,39.7401758],[-91.3698163,39.7406861],[-91.3698091,39.7412205],[-91.3697451,39.7429787],[-91.3697733,39.7433634],[-91.3697689,39.7439363],[-91.3698045,39.74447],[-91.3698631,39.7449218],[-91.3698148,39.7453229],[-91.3697611,39.7455253],[-91.3693207,39.746577200000004],[-91.3690211,39.7476145],[-91.3686376,39.7491942],[-91.3685062,39.7499017],[-91.3685742,39.750038599999996],[-91.3679759,39.7521463],[-91.3677073,39.7527399],[-91.3677382,39.753025199999996],[-91.3676737,39.753225],[-91.3675263,39.753531],[-91.3671286,39.7545119],[-91.3663464,39.7557638],[-91.3657825,39.7568867],[-91.3654423,39.7574098],[-91.3651407,39.7582414],[-91.365096,39.7584409],[-91.365121,39.7587759],[-91.3591983,39.7587357],[-91.35914819999999,39.7587365],[-91.3410968,39.7585854],[-91.3224551,39.758150799999996],[-91.3223997,39.7581503],[-91.3035102,39.7579457],[-91.284875,39.7577425],[-91.2658967,39.7573993],[-91.2501051,39.757112],[-91.2425084,39.7572013],[-91.2418084,39.7571716],[-91.2416797,39.7571708],[-91.2237288,39.7570609],[-91.2228107,39.7570343],[-91.2227177,39.7570329],[-91.2048081,39.756925100000004],[-91.204767,39.7569257],[-91.2037339,39.7568772],[-91.1854737,39.7568309],[-91.1667306,39.7567817],[-91.1664707,39.7567578],[-91.14816,39.7569907],[-91.1251571,39.7573203],[-91.1249227,39.757316599999996],[-91.1063081,39.757091700000004],[-91.1061597,39.757091],[-91.1060488,39.7570898],[-91.0873185,39.757038800000004],[-91.08689820000001,39.7570389],[-91.0681733,39.7569862],[-91.067889,39.756985900000004],[-91.0677387,39.7569851],[-91.0486351,39.7570268],[-91.0296719,39.7570277],[-91.0295521,39.7570279],[-91.0111108,39.7569265],[-91.010726,39.7569149],[-91.0105436,39.7569131],[-91.0000887,39.7568867],[-90.9920969,39.7568861],[-90.9916283,39.756881],[-90.9911955,39.7568796],[-90.9732029,39.7568356],[-90.972477,39.7568433],[-90.95401269999999,39.7570701],[-90.9539144,39.7570713],[-90.953782,39.7570715],[-90.935181,39.7571742],[-90.9350737,39.7571755],[-90.9159577,39.75728],[-90.9160304,39.7709794],[-90.9160327,39.7715342],[-90.9160403,39.772089],[-90.9161968,39.7859488],[-90.9162066,39.7868762],[-90.9163621,39.8007704],[-90.9163638,39.8010299],[-90.9163661,39.801583300000004],[-90.9164124,39.8161841],[-90.9164132,39.8166644],[-90.9164177,39.8170646],[-90.9165512,39.8305752],[-90.9165598,39.8315316],[-90.9166874,39.8447441],[-90.8942691,39.8411579],[-90.8938596,39.8410924],[-90.8933963,39.8410247],[-90.8752086,39.8410617],[-90.8751496,39.8410624],[-90.8745212,39.8410642],[-90.8561586,39.841036700000004],[-90.8555749,39.8410352],[-90.8372571,39.8410001],[-90.8371283,39.8410071],[-90.8368543,39.8410061],[-90.8182044,39.8410146],[-90.7993467,39.8410225],[-90.7992966,39.8410231],[-90.7789454,39.8407088],[-90.7789078,39.8407092],[-90.7595752,39.8406772],[-90.7594177,39.8406775],[-90.7592206,39.8406727],[-90.7500794,39.840481600000004],[-90.7405743,39.8402604],[-90.7405296,39.8402595],[-90.7404472,39.8402589],[-90.721908,39.8402178],[-90.7216859,39.8402119],[-90.7215874,39.8402074],[-90.7021018,39.8402006],[-90.6831189,39.8400585],[-90.6642945,39.8398636],[-90.6459931,39.8396729],[-90.6457854,39.8396708],[-90.6455849,39.839668599999996],[-90.6268634,39.8395067],[-90.6264516,39.8395037],[-90.6260041,39.839508],[-90.6251504,39.8395272],[-90.6081203,39.8394427],[-90.5889311,39.8393496],[-90.5718907,39.8391675]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"CASS","CO_FIPS":17},"geometry":{"type":"Polygon","coordinates":[[[-89.9950032,40.108700400000004],[-89.9948376,40.1046209],[-89.9946256,40.090184300000004],[-89.9946201,40.0899097],[-89.9943291,40.0757217],[-89.99432709999999,40.0754444],[-89.9942111,40.0610996],[-89.994223,40.0465583],[-89.9942002,40.0321771],[-89.9942657,40.0176078],[-89.9940959,40.0032463],[-89.9943138,40.0000578],[-89.9947319,40.0000588],[-89.9946852,39.9889172],[-89.9947695,39.974490700000004],[-89.9947546,39.959983199999996],[-89.9947398,39.945493400000004],[-89.9945695,39.9310733],[-89.9945675,39.9310415],[-89.9944807,39.9165009],[-89.9944803,39.9164415],[-89.9945161,39.9020051],[-89.9945501,39.887564499999996],[-89.9944099,39.8750911],[-89.994373,39.8728998],[-90.0130245,39.8726213],[-90.0320126,39.8725648],[-90.0502952,39.872536],[-90.0690209,39.8728059],[-90.0878756,39.873075],[-90.1068851,39.8729952],[-90.1258163,39.872968],[-90.1446703,39.8731121],[-90.1637695,39.8734256],[-90.1827606,39.8732757],[-90.2013948,39.8732657],[-90.2201227,39.8733101],[-90.2390144,39.8735962],[-90.2571016,39.874097],[-90.2581595,39.874126000000004],[-90.25851779999999,39.874132],[-90.276378,39.8744298],[-90.2950851,39.8746094],[-90.2952042,39.8746107],[-90.2955624,39.8746096],[-90.3140854,39.874572900000004],[-90.3144436,39.874570399999996],[-90.3331235,39.8750803],[-90.333655,39.8749675],[-90.3337345,39.8749503],[-90.352227,39.8750486],[-90.352827,39.8750525],[-90.3710788,39.8751558],[-90.3719663,39.875161],[-90.3914438,39.8755121],[-90.4100532,39.8757647],[-90.4285271,39.8760402],[-90.4473007,39.8762855],[-90.4474288,39.8762873],[-90.4492578,39.8763071],[-90.4661885,39.8764897],[-90.4666077,39.8764946],[-90.4782174,39.8765769],[-90.4852717,39.8766271],[-90.4860707,39.876632900000004],[-90.5053074,39.8763518],[-90.5240713,39.876454],[-90.5428472,39.8765104],[-90.5428955,39.8765114],[-90.5617083,39.8765147],[-90.5806378,39.8765389],[-90.5806509,39.880519],[-90.5807217,39.8805763],[-90.5804643,39.8813101],[-90.5801926,39.8819268],[-90.5802004,39.8822014],[-90.5800285,39.8825535],[-90.5799496,39.8826674],[-90.5798927,39.8828114],[-90.579649,39.88373],[-90.5791564,39.8850112],[-90.5789566,39.8857638],[-90.5783783,39.8870622],[-90.5780203,39.8877818],[-90.57751329999999,39.8889415],[-90.5770559,39.8897227],[-90.5768717,39.8899756],[-90.5766711,39.890212],[-90.5765138,39.890354200000004],[-90.5762649,39.8907112],[-90.5759718,39.890987100000004],[-90.5759454,39.8910219],[-90.5757997,39.8912178],[-90.5753223,39.8916293],[-90.5751655,39.8918005],[-90.5750218,39.8918929],[-90.5748368,39.892096],[-90.5746025,39.8922334],[-90.5744812,39.8922718],[-90.5736817,39.8929429],[-90.5728529,39.8934583],[-90.5725394,39.8936944],[-90.5711265,39.8944414],[-90.5708199,39.8945395],[-90.5706707,39.8946278],[-90.5705348,39.8946442],[-90.5703999,39.8947268],[-90.5689148,39.894972100000004],[-90.5685213,39.895017100000004],[-90.5682591,39.8950926],[-90.567925,39.8951536],[-90.5676672,39.895164199999996],[-90.5658492,39.8956733],[-90.5655553,39.8957837],[-90.5653138,39.8959307],[-90.5648432,39.896085400000004],[-90.5638298,39.8966011],[-90.5624447,39.8971821],[-90.5616181,39.897616],[-90.5614046,39.897711799999996],[-90.5601125,39.898290599999996],[-90.5592555,39.8987248],[-90.5577719,39.8994323],[-90.557358,39.8995533],[-90.556973,39.8998052],[-90.5558101,39.900397999999996],[-90.5555588,39.900601699999996],[-90.5543676,39.901342400000004],[-90.5540464,39.9016669],[-90.553761,39.901869500000004],[-90.5518979,39.9036885],[-90.5518265,39.9037044],[-90.5508182,39.9046932],[-90.5502185,39.9053306],[-90.5493366,39.90627],[-90.5489978,39.9066167],[-90.5476194,39.9081484],[-90.5472911,39.9085999],[-90.5462694,39.9094232],[-90.5454485,39.910253],[-90.5446278,39.9109779],[-90.5438596,39.9117382],[-90.5436565,39.9119388],[-90.5423915,39.9131561],[-90.5412643,39.9142412],[-90.5409773,39.9145818],[-90.5404429,39.915042],[-90.5394058,39.916169],[-90.5392916,39.9164432],[-90.5391708,39.9166306],[-90.5389768,39.9168449],[-90.5385989,39.917345],[-90.5383761,39.91779],[-90.5382413,39.9180037],[-90.5378406,39.9191472],[-90.5376532,39.919803],[-90.5375679,39.9200935],[-90.5373664,39.9206432],[-90.53731690000001,39.9209348],[-90.5373024,39.9216499],[-90.5372646,39.9219966],[-90.5371515,39.922232199999996],[-90.5370721,39.9225572],[-90.5371348,39.923157],[-90.5369921,39.923811],[-90.5369696,39.9244709],[-90.5367898,39.9255158],[-90.5367098,39.926288],[-90.5367104,39.9263294],[-90.5366865,39.927742800000004],[-90.5367355,39.9282654],[-90.5367277,39.9290687],[-90.5368053,39.929464100000004],[-90.5367904,39.9305145],[-90.5368106,39.9307903],[-90.536746,39.931152499999996],[-90.536681,39.9313614],[-90.5367021,39.931698],[-90.5365738,39.9324733],[-90.5362942,39.9335674],[-90.5361095,39.9341652],[-90.5360495,39.9343535],[-90.5352834,39.936491000000004],[-90.5350541,39.9367442],[-90.5348614,39.937046699999996],[-90.5348121,39.937228],[-90.5345546,39.9376346],[-90.5341026,39.9384694],[-90.5336816,39.9390968],[-90.5335174,39.9395081],[-90.5335083,39.9397456],[-90.5333157,39.9404166],[-90.533302,39.940581],[-90.5331144,39.9411139],[-90.533091,39.941228699999996],[-90.5330291,39.9415259],[-90.5329287,39.9417683],[-90.5328133,39.9426981],[-90.53258220000001,39.9440443],[-90.5324885,39.9443805],[-90.5323953,39.9451059],[-90.5321448,39.9457498],[-90.5319448,39.9459254],[-90.5316581,39.9464248],[-90.5314654,39.9466114],[-90.5312287,39.946975],[-90.5310791,39.9471613],[-90.530471,39.9477545],[-90.5300993,39.9481993],[-90.5297576,39.948374799999996],[-90.52945629999999,39.948616200000004],[-90.529193,39.9488752],[-90.5289714,39.949051],[-90.5286649,39.9491765],[-90.5281641,39.9496266],[-90.5281111,39.949680900000004],[-90.5278566,39.9499343],[-90.5276061,39.9500938],[-90.5275284,39.9501759],[-90.5262479,39.951257999999996],[-90.5255841,39.9520876],[-90.5249973,39.9526641],[-90.5246697,39.9529498],[-90.5243762,39.953476800000004],[-90.5239538,39.9541415],[-90.5237094,39.954472100000004],[-90.5233954,39.955076500000004],[-90.5231849,39.9552681],[-90.5231838,39.955318500000004],[-90.5227507,39.9563573],[-90.5225374,39.9567317],[-90.522422,39.9569342],[-90.5223075,39.957318900000004],[-90.521971,39.9577303],[-90.5217558,39.9580993],[-90.5213329,39.9587308],[-90.5210261,39.9589667],[-90.5207909,39.9591978],[-90.5206479,39.959350900000004],[-90.5205113,39.959571499999996],[-90.5202257,39.9599121],[-90.5199468,39.9600925],[-90.5191748,39.9607685],[-90.5180821,39.9615922],[-90.5176674,39.9619325],[-90.5171523,39.9622778],[-90.5156016,39.963177099999996],[-90.5148303,39.9637868],[-90.5141713,39.964103],[-90.5136798,39.9643405],[-90.5131499,39.9649012],[-90.51236420000001,39.965631099999996],[-90.511856,39.9663282],[-90.5114629,39.9668008],[-90.5111907,39.9673289],[-90.5110468,39.9677911],[-90.5109178,39.9680489],[-90.51087509999999,39.9681969],[-90.5104422,39.9711305],[-90.5104035,39.9720527],[-90.5104813,39.972470200000004],[-90.5105585,39.9730974],[-90.5106661,39.9733449],[-90.5108151,39.9740985],[-90.5108991,39.9741972],[-90.5110056,39.9744943],[-90.511064,39.974567],[-90.5112052,39.975271],[-90.511645,39.9766624],[-90.5118282,39.9777911],[-90.5119212,39.9780222],[-90.5119966,39.9783983],[-90.5120916,39.9788915],[-90.5121549,39.9796666],[-90.5122016,39.981031],[-90.5122441,39.9816186],[-90.5121549,39.9832575],[-90.512233,39.9838198],[-90.5122323,39.9841442],[-90.5123315,39.9847988],[-90.5123939,39.9850232],[-90.5125804,39.9855143],[-90.5126837,39.9855824],[-90.5127507,39.9856288],[-90.5135262,39.9876439],[-90.5135892,39.9879069],[-90.5136104,39.9880061],[-90.5137527,39.9882933],[-90.5137451,39.9885073],[-90.5137949,39.9889747],[-90.5137366,39.989283],[-90.5137302,39.9895852],[-90.5135921,39.990086],[-90.5135137,39.9902454],[-90.5134494,39.9905095],[-90.5131984,39.9912679],[-90.5125693,39.9920531],[-90.5120536,39.9924922],[-90.5116621,39.9929606],[-90.51138159999999,39.9932942],[-90.5110441,39.9935303],[-90.5108586,39.993727899999996],[-90.510725,39.9937939],[-90.5105522,39.9938809],[-90.5082774,39.9951369],[-90.5059044,39.9963108],[-90.50303339999999,39.9974199],[-90.5020092,39.9978164],[-90.5001083,39.9985184],[-90.5001096,39.9986039],[-90.4959813,39.9997704],[-90.4947487,39.999898099999996],[-90.4940709,40.0000598],[-90.4944926,40.0000617],[-90.4943555,40.0001333],[-90.4939485,40.0002816],[-90.4937067,40.0003154],[-90.4929346,40.0005302],[-90.4928288,40.000535299999996],[-90.492572,40.0006451],[-90.4916656,40.000883099999996],[-90.4914927,40.0009646],[-90.4907299,40.0012056],[-90.4894733,40.0016743],[-90.48873760000001,40.0019261],[-90.4882599,40.0021468],[-90.487489,40.002454],[-90.4864248,40.0028231],[-90.4854611,40.0032024],[-90.4849823,40.0033513],[-90.4842682,40.0036097],[-90.4840483,40.0036654],[-90.4836049,40.0037795],[-90.482583,40.0039784],[-90.4820044,40.0040495],[-90.4814629,40.0040774],[-90.4806769,40.0040715],[-90.4794697,40.004104999999996],[-90.47842729999999,40.0042475],[-90.4781563,40.004247],[-90.4777351,40.004280800000004],[-90.4766357,40.0044514],[-90.4757279,40.0045941],[-90.4746635,40.0048306],[-90.4739504,40.0050338],[-90.4726521,40.0054875],[-90.4726146,40.0055016],[-90.4718226,40.0058421],[-90.4714154,40.0059793],[-90.4700946,40.0064966],[-90.4698228,40.0065678],[-90.4695231,40.0066889],[-90.4687164,40.0068805],[-90.4683018,40.0070081],[-90.4676598,40.0071665],[-90.4674308,40.0072167],[-90.4672246,40.007232200000004],[-90.4669956,40.0072768],[-90.4663947,40.0074308],[-90.4656467,40.007579],[-90.4652426,40.007685800000004],[-90.4644756,40.0078922],[-90.46343279999999,40.0081394],[-90.4629324,40.0082939],[-90.4626046,40.008338],[-90.4621398,40.008464599999996],[-90.4618677,40.0085137],[-90.4616962,40.008569],[-90.4608179,40.0087776],[-90.4602122,40.0089702],[-90.4592263,40.0091783],[-90.4574617,40.009667300000004],[-90.4572619,40.0097503],[-90.4565758,40.0099698],[-90.4564473,40.0100247],[-90.455927,40.0101613],[-90.4555989,40.0103213],[-90.4542562,40.0108221],[-90.4540495,40.0109258],[-90.4534639,40.0111459],[-90.4534355,40.011170899999996],[-90.4510283,40.0124475],[-90.4496574,40.0132561],[-90.4487785,40.0136841],[-90.4485212,40.0139042],[-90.448322,40.0140314],[-90.447278,40.0146028],[-90.4461926,40.015294499999996],[-90.4458992,40.0154984],[-90.4458297,40.0155334],[-90.44461390000001,40.0161352],[-90.4442785,40.0162841],[-90.4439426,40.016400000000004],[-90.442722,40.0169217],[-90.4421639,40.0171911],[-90.4416366,40.0174823],[-90.440921,40.0177888],[-90.4406575,40.0179483],[-90.4403008,40.0181139],[-90.4391499,40.018751],[-90.4388859,40.0188662],[-90.4386583,40.019025299999996],[-90.438043,40.0193173],[-90.4375727,40.0195804],[-90.4369856,40.0199701],[-90.4365935,40.0201788],[-90.4364156,40.0202948],[-90.4362458,40.020485199999996],[-90.4360147,40.0206471],[-90.435065,40.0214384],[-90.4348494,40.0216858],[-90.4343723,40.0223837],[-90.4338149,40.023521],[-90.4334428,40.0246914],[-90.4332495,40.0258024],[-90.4331775,40.0260555],[-90.4331918,40.0265936],[-90.4329968,40.0282566],[-90.4329855,40.0283478],[-90.4328774,40.0295285],[-90.4327701,40.0299627],[-90.4327629,40.0302277],[-90.4327784,40.0304525],[-90.4327487,40.0306445],[-90.4326782,40.0308811],[-90.4325421,40.0315735],[-90.4323276,40.0324528],[-90.4318982,40.0334981],[-90.4317559,40.034002900000004],[-90.4316263,40.0342454],[-90.4315347,40.0345097],[-90.4312263,40.0349427],[-90.4311983,40.0350009],[-90.4310761,40.0352571],[-90.4309269,40.0355095],[-90.4304688,40.0365701],[-90.430047,40.0376526],[-90.4298545,40.0382958],[-90.4295181,40.0391871],[-90.4294258,40.039538300000004],[-90.4292476,40.0400434],[-90.4291179,40.0408241],[-90.4290976,40.041181699999996],[-90.4287968,40.0427296],[-90.42879,40.04276],[-90.4287393,40.0434076],[-90.4287383,40.0444081],[-90.4286313,40.0451403],[-90.4286094,40.0464638],[-90.4286388,40.0469204],[-90.4286089,40.0472339],[-90.4287026,40.0482074],[-90.4287173,40.048905500000004],[-90.4287014,40.0493279],[-90.428726,40.0495637],[-90.4287304,40.0496202],[-90.4287173,40.0499833],[-90.4288092,40.0505483],[-90.4289302,40.0510055],[-90.4289442,40.0515215],[-90.4291159,40.0521425],[-90.4291947,40.052940899999996],[-90.429224,40.0535175],[-90.4292597,40.0536386],[-90.4293237,40.054128],[-90.4293879,40.0543635],[-90.4294666,40.0548803],[-90.4296226,40.055409],[-90.4296877,40.0557107],[-90.4297449,40.0562277],[-90.4297726,40.057228],[-90.4297679,40.0572818],[-90.4296948,40.0579972],[-90.4295587,40.058702],[-90.4294429,40.059042399999996],[-90.4288363,40.060147],[-90.4283933,40.0607356],[-90.4277562,40.0614388],[-90.4272922,40.0618013],[-90.4272156,40.0618488],[-90.4265121,40.0622848],[-90.4262051,40.0624321],[-90.4256058,40.0628825],[-90.4252263,40.0631091],[-90.4250619,40.0631738],[-90.4242538,40.0635858],[-90.4233028,40.0639217],[-90.4232511,40.0639483],[-90.422832,40.0641738],[-90.4218171,40.064563899999996],[-90.421259,40.0647339],[-90.4206878,40.0648708],[-90.4199576,40.0652007],[-90.4192429,40.0654809],[-90.4190645,40.0655692],[-90.4179128,40.065948],[-90.4176421,40.065986],[-90.4170564,40.0662389],[-90.4167912,40.0664245],[-90.4158314,40.0669191],[-90.4156405,40.0670185],[-90.415168,40.0672816],[-90.414575,40.067529],[-90.41444680000001,40.067617],[-90.4141254,40.0677602],[-90.4139597,40.0678636],[-90.4136025,40.0680126],[-90.4135385,40.0680614],[-90.4133527,40.0681388],[-90.4131159,40.0682979],[-90.4125381,40.068617],[-90.4119522,40.069001],[-90.4117648,40.069089399999996],[-90.4115297,40.069243],[-90.4111869,40.0694016],[-90.4107501,40.0696492],[-90.4093991,40.0704516],[-90.4087053,40.070829599999996],[-90.408333,40.0710656],[-90.4082188,40.0711231],[-90.4075264,40.0714665],[-90.4072403,40.0715708],[-90.4064586,40.0719535],[-90.4063533,40.0720054],[-90.4051384,40.0725101],[-90.4042654,40.072916899999996],[-90.4034933,40.0732181],[-90.4028781,40.073427],[-90.4020991,40.0737449],[-90.4009543,40.0741179],[-90.4003613,40.0743763],[-90.4001761,40.0744978],[-90.3999042,40.074590900000004],[-90.3997976,40.0746787],[-90.3986604,40.0750847],[-90.3980943,40.0753429],[-90.3979305,40.075451799999996],[-90.39765919999999,40.0755891],[-90.3971154,40.075907799999996],[-90.3967896,40.0761325],[-90.3966222,40.0762483],[-90.3953713,40.077027799999996],[-90.3948558,40.0774512],[-90.3948347,40.07749],[-90.394208,40.0780674],[-90.3940607,40.0782037],[-90.3937029,40.0785997],[-90.3929812,40.0796153],[-90.3923015,40.0808306],[-90.39223,40.0810008],[-90.3920071,40.081406799999996],[-90.3919008,40.0816657],[-90.3915623,40.0827322],[-90.3914423,40.083039400000004],[-90.3914275,40.0831444],[-90.3914477,40.0833195],[-90.3914058,40.0835558],[-90.3913343,40.083726],[-90.3913625,40.0843923],[-90.3914261,40.0851508],[-90.3915396,40.0855957],[-90.3917878,40.0863183],[-90.3918177,40.0864091],[-90.3921034,40.086981],[-90.392353,40.0872454],[-90.3926468,40.0876089],[-90.3928396,40.0879276],[-90.3930258,40.088158],[-90.393232,40.0885539],[-90.3933467,40.0888124],[-90.3937024,40.0897909],[-90.393739,40.0899838],[-90.393753,40.0902307],[-90.3935018,40.0913793],[-90.3933235,40.0919078],[-90.3930502,40.0924521],[-90.3929938,40.0925409],[-90.3925358,40.0932536],[-90.3917615,40.0942433],[-90.3912036,40.0948795],[-90.3911119,40.095011299999996],[-90.3906737,40.0954562],[-90.3900239,40.0962035],[-90.389278,40.0968935],[-90.3892426,40.096935200000004],[-90.3889279,40.0971983],[-90.3886571,40.097521900000004],[-90.3884198,40.0977914],[-90.3882276,40.0979405],[-90.3878773,40.0983736],[-90.3876253,40.0986212],[-90.3864026,40.100109599999996],[-90.3860444,40.1006215],[-90.3859009,40.1007854],[-90.3857791,40.1009553],[-90.3855354,40.1012918],[-90.3852641,40.1017257],[-90.38440489999999,40.1029782],[-90.3837091,40.1040873],[-90.3830289,40.1054281],[-90.3827362,40.1064404],[-90.3826687,40.1066438],[-90.382485,40.1071819],[-90.3822042,40.1081375],[-90.3821178,40.108556300000004],[-90.3820034,40.1088911],[-90.381853,40.1096442],[-90.3816166,40.110275200000004],[-90.3815529,40.110358500000004],[-90.3814878,40.1106115],[-90.3813375,40.1108031],[-90.3811724,40.1111051],[-90.3810713,40.1113584],[-90.380879,40.1116385],[-90.3807135,40.1120565],[-90.3799549,40.1136063],[-90.3790883,40.1150119],[-90.3788307,40.115389199999996],[-90.3785077,40.115858],[-90.3782716,40.1162378],[-90.3775619,40.117111],[-90.3775268,40.117183],[-90.3773176,40.1174068],[-90.3771532,40.1176274],[-90.3770689,40.117781199999996],[-90.3759439,40.1190825],[-90.3755634,40.1197035],[-90.3752425,40.1200494],[-90.3751338,40.1201317],[-90.3750185,40.1203899],[-90.3748466,40.120587799999996],[-90.3746738,40.120785],[-90.374523,40.1210103],[-90.3743223,40.1212023],[-90.3740643,40.121415999999996],[-90.3736979,40.1218658],[-90.3736481,40.1219096],[-90.3734036,40.122123200000004],[-90.3731173,40.1222985],[-90.3729169,40.1224414],[-90.372522,40.1226982],[-90.3722357,40.122879],[-90.37186990000001,40.1230929],[-90.3715832,40.123235],[-90.3712613,40.1233664],[-90.3706384,40.1235794],[-90.37007990000001,40.1236932],[-90.3698003,40.123758699999996],[-90.3693851,40.123828700000004],[-90.3690777,40.1238999],[-90.3688056,40.1239923],[-90.3684405,40.1241178],[-90.3682249,40.124200099999996],[-90.3679964,40.1242487],[-90.3677528,40.1243195],[-90.367545,40.1243796],[-90.3673159,40.1244613],[-90.3669936,40.1245596],[-90.3668401,40.1245766],[-90.3668006,40.124581],[-90.3666066,40.1246577],[-90.3664634,40.124707],[-90.3663059,40.1247613],[-90.3661484,40.1248163],[-90.365998,40.124865],[-90.36588330000001,40.1248975],[-90.3657839,40.1249196],[-90.3656977,40.1249306],[-90.3655973,40.1249465],[-90.3655184,40.1249685],[-90.3653752,40.1250123],[-90.3652819,40.1250282],[-90.3652254,40.125039],[-90.3651536,40.1250498],[-90.3648906,40.1251421],[-90.364569,40.125231400000004],[-90.3642094,40.1252927],[-90.3638303,40.1253831],[-90.3634895,40.1254435],[-90.3630348,40.12552],[-90.3625795,40.1255523],[-90.3620101,40.1255854],[-90.36157299999999,40.1255596],[-90.36111700000001,40.1255339],[-90.3604703,40.125422],[-90.3601279,40.1254245],[-90.3597853,40.1253394],[-90.3594427,40.1252542],[-90.3592714,40.125212],[-90.3590363,40.1250895],[-90.3589937,40.125062299999996],[-90.3589719,40.1250459],[-90.3589438,40.1250288],[-90.358915,40.1250235],[-90.3588365,40.1249958],[-90.3587508,40.124973600000004],[-90.3586076,40.1249457],[-90.3584716,40.1249232],[-90.3582355,40.124873199999996],[-90.3580499,40.1248345],[-90.3579209,40.1247947],[-90.3578712,40.1247792],[-90.3575639,40.1247125],[-90.3573565,40.1246567],[-90.3571491,40.124600900000004],[-90.3569923,40.1245676],[-90.356713,40.1245123],[-90.35642730000001,40.1244399],[-90.3560624,40.1243673],[-90.3558191,40.1243173],[-90.3555336,40.1242732],[-90.3554157,40.1242561],[-90.3555056,40.123965],[-90.3555137,40.1238221],[-90.3554717,40.123475400000004],[-90.3554221,40.1232391],[-90.3553445,40.1230685],[-90.3551869,40.1228979],[-90.3548527,40.1224684],[-90.354646,40.1222477],[-90.3543033,40.121928],[-90.3542036,40.121856199999996],[-90.354039,40.1217733],[-90.3539602,40.121729],[-90.353818,40.1216355],[-90.3537821,40.1215695],[-90.3537107,40.1214589],[-90.3537188,40.1213161],[-90.3537408,40.1212007],[-90.353798,40.1210305],[-90.3538706,40.1209376],[-90.3539351,40.1208495],[-90.3540359,40.1207121],[-90.3541933,40.120504],[-90.3542939,40.120350099999996],[-90.3543728,40.120262600000004],[-90.3544309,40.1201691],[-90.3544528,40.1200426],[-90.3543523,40.119982],[-90.3541954,40.1198665],[-90.3540026,40.119756100000004],[-90.3539024,40.1197168],[-90.3537743,40.1196784],[-90.35363100000001,40.1196505],[-90.3534952,40.119639],[-90.3533381,40.1196498],[-90.3530732,40.1197476],[-90.35287890000001,40.1198794],[-90.352678,40.1200603],[-90.3525058,40.1202305],[-90.35234080000001,40.1204111],[-90.3521542,40.1205808],[-90.3519969,40.1207289],[-90.3518536,40.1208389],[-90.3517315,40.1209261],[-90.3515952,40.121025],[-90.3514521,40.1210799],[-90.3513372,40.1210959],[-90.3512653,40.1210957],[-90.3509511,40.121051],[-90.3508158,40.1209347],[-90.3507012,40.1208189],[-90.3505943,40.1206762],[-90.3505022,40.1205713],[-90.3504663,40.1204232],[-90.3503599,40.120252199999996],[-90.3503242,40.12012],[-90.3502472,40.1197735],[-90.3501192,40.1194488],[-90.3500844,40.1193227],[-90.3499635,40.119063499999996],[-90.34984180000001,40.1188822],[-90.3497139,40.1186396],[-90.3495929,40.1184418],[-90.3494717,40.1183039],[-90.3493506,40.1181772],[-90.349223,40.1180284],[-90.3490867,40.1179072],[-90.3489877,40.1178189],[-90.3488656,40.1177529],[-90.3487013,40.117692],[-90.3485947,40.1176472],[-90.348473,40.1176198],[-90.3483939,40.1176197],[-90.3481297,40.1175415],[-90.3479011,40.117519],[-90.3477079,40.117519],[-90.3474785,40.1175731],[-90.3472563,40.1176278],[-90.3470278,40.1176819],[-90.3463116,40.1179057],[-90.3455167,40.118238399999996],[-90.3453584,40.1182989],[-90.3451866,40.118358799999996],[-90.3450149,40.1184297],[-90.3448502,40.118484],[-90.3446789,40.1185169],[-90.3445497,40.118533],[-90.3444211,40.1185271],[-90.3442779,40.1184991],[-90.3441637,40.118422],[-90.3439707,40.1182895],[-90.3438503,40.118140600000004],[-90.3437219,40.1179263],[-90.3436004,40.1177664],[-90.3435159,40.1176124],[-90.343444,40.1174687],[-90.3433875,40.1173263],[-90.3432813,40.1171608],[-90.34318880000001,40.1170228],[-90.3431099,40.1168854],[-90.3430819,40.1167973],[-90.3430251,40.1167093],[-90.3429324,40.1166265],[-90.3428463,40.1165657],[-90.3427395,40.1164996],[-90.3426681,40.1164718],[-90.3425607,40.1164332],[-90.3424607,40.1164112],[-90.3423897,40.1164055],[-90.3422965,40.1164323],[-90.3421814,40.116498],[-90.3421168,40.1166572],[-90.3421231,40.1168061],[-90.3421299,40.1169213],[-90.3421361,40.1171414],[-90.3421355,40.117311799999996],[-90.342121,40.117454699999996],[-90.3420918,40.1175646],[-90.3420277,40.1176851],[-90.3419337,40.1177893],[-90.3417836,40.1178607],[-90.3416048,40.1179427],[-90.3414685,40.1179699],[-90.3414543,40.1179804],[-90.3411465,40.1180184],[-90.3409743,40.1180452],[-90.3406813,40.1181163],[-90.3406096,40.1181375],[-90.3404228,40.118291299999996],[-90.3402437,40.1184229],[-90.3399853,40.118609],[-90.3398492,40.1187183],[-90.3396765,40.1188609],[-90.3395479,40.1189978],[-90.3394038,40.1191954],[-90.3392813,40.1193984],[-90.3391666,40.1195793],[-90.3391084,40.119744600000004],[-90.3390509,40.1198982],[-90.3389789,40.1201126],[-90.3389277,40.1202661],[-90.3388488,40.1204309],[-90.3387551,40.1206337],[-90.3386259,40.1208754],[-90.3385175,40.1210514],[-90.3383737,40.1212049],[-90.3382228,40.1213585],[-90.3380294,40.1215668],[-90.3378785,40.1217204],[-90.3377492,40.1218075],[-90.3376632,40.121906100000004],[-90.3375986,40.1219942],[-90.3374912,40.122104],[-90.3373118,40.122208],[-90.3371537,40.1222899],[-90.3370038,40.1223772],[-90.3368168,40.1224482],[-90.336531,40.1225192],[-90.3362944,40.1225733],[-90.3361231,40.1226111],[-90.3359938,40.1226168],[-90.3358506,40.1225889],[-90.3357007,40.1225334],[-90.3355586,40.1224447],[-90.3354867,40.1223734],[-90.3354014,40.1222298],[-90.3353444,40.1221254],[-90.33528079999999,40.1219933],[-90.3352027,40.1218449],[-90.3351739,40.1217733],[-90.3351389,40.121624499999996],[-90.335125,40.1215149],[-90.3351323,40.1213721],[-90.3351766,40.1211682],[-90.3352201,40.1209706],[-90.3352993,40.1207623],[-90.3353576,40.120597000000004],[-90.335415,40.1203614],[-90.3354231,40.120213],[-90.3353872,40.1200697],[-90.3353165,40.119866],[-90.3352313,40.1197341],[-90.3351034,40.119635],[-90.3350247,40.1195189],[-90.3348325,40.119375399999996],[-90.3346684,40.1192544],[-90.3345396,40.1191601],[-90.334411,40.1190776],[-90.3342753,40.1190005],[-90.3341252,40.1189229],[-90.3340322,40.1188843],[-90.3338613,40.1188013],[-90.3337827,40.1187625],[-90.3337179,40.1187568],[-90.3335391,40.1187567],[-90.3333887,40.1188053],[-90.3332958,40.1188494],[-90.3331455,40.1189864],[-90.333173,40.119107],[-90.3332231,40.1192336],[-90.33332970000001,40.1193549],[-90.3334649,40.1194706],[-90.3336297,40.1195702],[-90.3336867,40.1196036],[-90.3337793,40.1196802],[-90.3339143,40.119851],[-90.3340571,40.1199894],[-90.3341859,40.120094],[-90.3343139,40.1201987],[-90.3343715,40.1202756],[-90.3344205,40.1203967],[-90.3344274,40.1204463],[-90.3344492,40.12054],[-90.3344561,40.1205896],[-90.334463,40.1206392],[-90.3344697,40.1206716],[-90.3344771,40.120693599999996],[-90.3345122,40.1207707],[-90.3345053,40.120792800000004],[-90.3344693,40.1208696],[-90.3344328,40.120968500000004],[-90.334368,40.1211111],[-90.3342673,40.1211829],[-90.3340671,40.1212809],[-90.3338952,40.121335200000004],[-90.3336521,40.121368000000004],[-90.3335443,40.1213729],[-90.3333082,40.1213946],[-90.3332299,40.1213889],[-90.3330872,40.1213278],[-90.3329723,40.1212672],[-90.3328586,40.1211514],[-90.3327803,40.1210685],[-90.3326802,40.120963599999996],[-90.332581,40.1208539],[-90.3325023,40.1207379],[-90.3324028,40.1206109],[-90.3323102,40.1205288],[-90.3322384,40.1204679],[-90.3321382,40.1204238],[-90.3320669,40.1204015],[-90.33192389999999,40.1203901],[-90.3318601,40.1203898],[-90.3317381,40.1204114],[-90.3316515,40.120461],[-90.3314724,40.1205864],[-90.3313081,40.12068],[-90.3311573,40.1207673],[-90.3310923,40.1208168],[-90.3309992,40.1208547],[-90.3308347,40.12092],[-90.330634,40.1209746],[-90.3303833,40.1210563],[-90.3301547,40.1211056],[-90.3299116,40.1211376],[-90.3296536,40.1211367],[-90.32946749999999,40.1211311],[-90.3292956,40.1211088],[-90.3291531,40.1210643],[-90.32906,40.1210201],[-90.3289941,40.120993],[-90.328967,40.1209814],[-90.328903,40.1208929],[-90.3288321,40.1208216],[-90.3288162,40.1206968],[-90.3287325,40.1205353],[-90.3286264,40.1203753],[-90.3285482,40.1202268],[-90.3284484,40.120067399999996],[-90.3284131,40.1199738],[-90.3283203,40.1198027],[-90.328228,40.1196764],[-90.3279993,40.11956],[-90.327742,40.1194659],[-90.3275642,40.1193995],[-90.3272643,40.1192671],[-90.3269919,40.1191834],[-90.3266351,40.1191114],[-90.3263561,40.1190775],[-90.3261062,40.1189944],[-90.3258844,40.1189331],[-90.3255338,40.1188445],[-90.325334,40.1188217],[-90.3251835,40.1187883],[-90.3249698,40.118727],[-90.3248552,40.118683000000004],[-90.3246768,40.1186497],[-90.3244694,40.1185828],[-90.3243047,40.118566],[-90.3241407,40.1185272],[-90.324026,40.1184769],[-90.3239116,40.1183832],[-90.3238128,40.118234799999996],[-90.3237483,40.1180973],[-90.3236565,40.1179372],[-90.3235634,40.1178164],[-90.3235277,40.1177559],[-90.3234638,40.1176784],[-90.3233428,40.1176234],[-90.3232139,40.1175898],[-90.3229568,40.117584],[-90.3228346,40.1175834],[-90.3226558,40.1175881],[-90.3223907,40.1175927],[-90.3222048,40.1175982],[-90.3220483,40.1175868],[-90.3219259,40.1175753],[-90.3217407,40.1175634],[-90.3215618,40.1175633],[-90.3213184,40.117573300000004],[-90.3211537,40.1175565],[-90.3209683,40.1175288],[-90.3208034,40.117495399999996],[-90.3206458,40.117462],[-90.3204603,40.1174281],[-90.3199958,40.1172837],[-90.319781,40.1172886],[-90.3194946,40.1173099],[-90.3192871,40.1173203],[-90.3190801,40.1173639],[-90.3188791,40.117396299999996],[-90.3186721,40.1174398],[-90.3184718,40.1174557],[-90.3183498,40.117471699999996],[-90.3182644,40.1174716],[-90.3181709,40.1174654],[-90.3180853,40.1174432],[-90.3178348,40.1173876],[-90.3177137,40.1173326],[-90.3175426,40.117222],[-90.3174216,40.1170952],[-90.3172361,40.116913],[-90.3170649,40.116792000000004],[-90.3168789,40.1167202],[-90.3167503,40.1166369],[-90.3165648,40.1165264],[-90.3163153,40.116404599999996],[-90.3161219,40.1163107],[-90.31609399999999,40.1162999],[-90.3159156,40.1162611],[-90.3156005,40.1162157],[-90.3154358,40.1161933],[-90.3151855,40.1161544],[-90.3149425,40.1161208],[-90.3147567,40.1160649],[-90.314643,40.1160208],[-90.3145073,40.1159438],[-90.3143925,40.115888],[-90.3143219,40.1158436],[-90.3142075,40.1157444],[-90.3140433,40.1155351],[-90.3139012,40.115369799999996],[-90.313788,40.1151387],[-90.3137452,40.1149355],[-90.3136889,40.1148144],[-90.3136532,40.114682200000004],[-90.3136114,40.1145666],[-90.3135975,40.1144453],[-90.3135698,40.1142309],[-90.3135845,40.114027899999996],[-90.3135857,40.1138189],[-90.3136147,40.1136869],[-90.3136794,40.1135388],[-90.313759,40.113352],[-90.3138311,40.1132093],[-90.3139103,40.1130667],[-90.3139818,40.1129627],[-90.3140901,40.1128419],[-90.3141756,40.1127758],[-90.3143187,40.1127216],[-90.3144837,40.1126943],[-90.3146121,40.1126837],[-90.3147343,40.1126843],[-90.3148628,40.1126848],[-90.3149921,40.1126742],[-90.315135,40.1126746],[-90.3152632,40.112653],[-90.31534189999999,40.1126201],[-90.3154431,40.1125104],[-90.3154143,40.1124278],[-90.3153005,40.1123064],[-90.3151442,40.1121578],[-90.3150088,40.112031099999996],[-90.3149445,40.1119867],[-90.3148726,40.1119092],[-90.3147662,40.1117996],[-90.3146883,40.1116669],[-90.3146025,40.1114799],[-90.3145245,40.1113369],[-90.3144463,40.1111829],[-90.3144118,40.1109244],[-90.314391,40.1107534],[-90.3143844,40.1105775],[-90.3143566,40.1104294],[-90.3143149,40.1100881],[-90.3142303,40.109763799999996],[-90.3142239,40.1095216],[-90.3142103,40.1092858],[-90.314241,40.1089116],[-90.3142271,40.108724699999996],[-90.3142131,40.1085986],[-90.3141993,40.1084227],[-90.3142147,40.108202500000004],[-90.3141937,40.108015699999996],[-90.3141586,40.107855900000004],[-90.3141596,40.107707500000004],[-90.3141676,40.1075481],[-90.3141531,40.107466099999996],[-90.3141174,40.1074049],[-90.314039,40.1073061],[-90.3139755,40.1072617],[-90.3138254,40.107250300000004],[-90.3137033,40.1072663],[-90.3136179,40.1072552],[-90.3134174,40.107248999999996],[-90.313296,40.107238100000004],[-90.3130812,40.107231999999996],[-90.3130309,40.1072371],[-90.3129671,40.107236900000004],[-90.3128667,40.1072534],[-90.3127669,40.1072472],[-90.3126732,40.1072306],[-90.3125874,40.107191900000004],[-90.312488,40.1071422],[-90.3124094,40.1071034],[-90.3123313,40.1070315],[-90.3122458,40.106943799999996],[-90.3121956,40.1068061],[-90.3121396,40.1066189],[-90.3121611,40.1064593],[-90.3122188,40.1063278],[-90.3122477,40.1062621],[-90.3123125,40.106118800000004],[-90.3124138,40.1059381],[-90.3125572,40.1057515],[-90.3126364,40.1056088],[-90.3127376,40.1054329],[-90.312781,40.1053725],[-90.3127877,40.1053346],[-90.3128096,40.1052081],[-90.3128394,40.1050651],[-90.3128256,40.104883799999996],[-90.312805,40.1047404],[-90.3127835,40.1045867],[-90.3127202,40.1043994],[-90.3126636,40.1042453],[-90.3126142,40.1040918],[-90.31252190000001,40.1039592],[-90.3124219,40.1038599],[-90.3123153,40.103733],[-90.3120442,40.103518199999996],[-90.3119235,40.1033417],[-90.3118377,40.1032209],[-90.3117449,40.1031215],[-90.3116315,40.1030277],[-90.3115098,40.102923000000004],[-90.3113388,40.1027358],[-90.3112392,40.1025978],[-90.3111471,40.1024763],[-90.3109767,40.1022015],[-90.3108623,40.1020194],[-90.3107986,40.1018709],[-90.3106284,40.1016064],[-90.3104296,40.1012759],[-90.3103231,40.1010779],[-90.3101801,40.1008353],[-90.3100239,40.1006149],[-90.3098891,40.1003785],[-90.3097468,40.1001139],[-90.3096335,40.0998773],[-90.3095627,40.0997343],[-90.30947019999999,40.0995031],[-90.3093567,40.0993272],[-90.3091647,40.0991119],[-90.3089648,40.098996],[-90.3088437,40.0989409],[-90.308701,40.0988743],[-90.3086073,40.0988521],[-90.3085217,40.09883],[-90.3082509,40.0987186],[-90.3080368,40.098619400000004],[-90.3077508,40.0984371],[-90.3076015,40.0983429],[-90.3074445,40.098205300000004],[-90.3072094,40.097924],[-90.3070823,40.097648899999996],[-90.30698340000001,40.0973302],[-90.3069203,40.0970056],[-90.3068285,40.0966806],[-90.306808,40.0964606],[-90.3068087,40.0962136],[-90.3067878,40.0959606],[-90.3067608,40.0957241],[-90.3067617,40.095405299999996],[-90.3067555,40.0951797],[-90.3067642,40.0949216],[-90.3067714,40.0947733],[-90.3067504,40.0945864],[-90.3067375,40.0944044],[-90.3067599,40.0941682],[-90.3067821,40.0939101],[-90.3068258,40.093728999999996],[-90.3068483,40.0934977],[-90.3068347,40.0932563],[-90.3068137,40.0930688],[-90.3067786,40.0929862],[-90.3067363,40.0928982],[-90.3066717,40.0928269],[-90.306572,40.0927496],[-90.306486,40.0926943],[-90.3064076,40.0926776],[-90.3063078,40.0926721],[-90.306143,40.0927153],[-90.3060137,40.0927976],[-90.3058273,40.092912],[-90.3056695,40.0930166],[-90.3055125,40.0931094],[-90.3053977,40.0932026],[-90.3052608,40.093334],[-90.305132,40.0934597],[-90.3050244,40.0935529],[-90.3049165,40.093624],[-90.3047448,40.0936949],[-90.3045657,40.0937444],[-90.3043153,40.0937599],[-90.3040941,40.0937428],[-90.3039149,40.0937095],[-90.3038012,40.0936592],[-90.30370070000001,40.0935985],[-90.303444,40.0935374],[-90.3032012,40.093361099999996],[-90.3030876,40.0932452],[-90.3028742,40.0928872],[-90.3026964,40.0925842],[-90.3025693,40.092309],[-90.3024844,40.0920392],[-90.3023995,40.0917644],[-90.3023156,40.0914173],[-90.3022594,40.0910603],[-90.3021825,40.0907027],[-90.302141,40.0903725],[-90.3020424,40.090004],[-90.3019579,40.089607900000004],[-90.3019377,40.0893327],[-90.3019595,40.0891187],[-90.3020109,40.0888272],[-90.3021128,40.0884705],[-90.3021852,40.088124300000004],[-90.3022298,40.087706600000004],[-90.3022453,40.0873381],[-90.3022754,40.0869867],[-90.3023272,40.086728300000004],[-90.3023562,40.086508699999996],[-90.3023713,40.0862671],[-90.3023793,40.0860249],[-90.3023878,40.0858213],[-90.3023956,40.085646],[-90.3023892,40.0853983],[-90.3023973,40.0852444],[-90.3023832,40.085112699999996],[-90.3023552,40.0849363],[-90.3023067,40.0847055],[-90.3022852,40.0846339],[-90.3022286,40.0845514],[-90.3021431,40.0844575],[-90.3020071,40.0843473],[-90.3019147,40.0842866],[-90.3017582,40.0841869],[-90.3015365,40.084049],[-90.3014508,40.0840103],[-90.3012578,40.0839488],[-90.3011507,40.0839267],[-90.3009297,40.0838489],[-90.3007581,40.0837659],[-90.3006084,40.083711],[-90.3004162,40.083633],[-90.3002878,40.0835614],[-90.3002521,40.083500900000004],[-90.3002309,40.0833796],[-90.3002317,40.0832092],[-90.3002819,40.0830447],[-90.3003398,40.0829242],[-90.3004192,40.082797400000004],[-90.3005552,40.0826716],[-90.3006912,40.0826334],[-90.3009063,40.0825906],[-90.3013496,40.0824758],[-90.3014357,40.0824656],[-90.3018647,40.082433699999996],[-90.3021295,40.0824181],[-90.3023871,40.0824025],[-90.3026368,40.0824029],[-90.3028729,40.082387499999996],[-90.3032662,40.0823773],[-90.3036815,40.0823289],[-90.3039036,40.082274999999996],[-90.3041684,40.0821821],[-90.30444,40.0820567],[-90.3047342,40.0818595],[-90.3049783,40.0816902],[-90.3051007,40.0814761],[-90.305137,40.0812779],[-90.305167,40.0809154],[-90.3051836,40.080409599999996],[-90.3052705,40.079926],[-90.3053661,40.0794093],[-90.3054171,40.0790853],[-90.3054115,40.0788273],[-90.3053834,40.078497],[-90.3053705,40.078161800000004],[-90.305322,40.0778427],[-90.3052447,40.0776059],[-90.3052234,40.0775563],[-90.3052235,40.0774797],[-90.3051809,40.0773752],[-90.305039,40.0772154],[-90.304889,40.0771377],[-90.3046459,40.0770104],[-90.3044823,40.076917],[-90.3043538,40.0767571],[-90.304076,40.0766568],[-90.3037824,40.076585],[-90.3035615,40.0765127],[-90.3034117,40.0764461],[-90.3032256,40.0763577],[-90.3030694,40.0762801],[-90.3029192,40.076181],[-90.3027842,40.0760819],[-90.3026341,40.0759988],[-90.302498,40.075954100000004],[-90.3024126,40.0759485],[-90.3023058,40.0759485],[-90.3021271,40.0759532],[-90.3019119,40.076062300000004],[-90.3017322,40.0761387],[-90.3015392,40.0762263],[-90.3013749,40.0763026],[-90.3011741,40.0764178],[-90.3009588,40.076515900000004],[-90.3006299,40.0766581],[-90.3003864,40.0767233],[-90.299964,40.076782],[-90.2997496,40.0768035],[-90.299564,40.0768302],[-90.299363,40.0768468],[-90.2991636,40.0768461],[-90.2989917,40.0768176],[-90.2987918,40.0767734],[-90.2986134,40.076718],[-90.2984061,40.0766566],[-90.2982277,40.0766068],[-90.2980496,40.0765072],[-90.2978637,40.0763525],[-90.2977072,40.0761708],[-90.2975579,40.076],[-90.297451,40.0758399],[-90.2973452,40.0756143],[-90.2973033,40.0753283],[-90.2972331,40.074998300000004],[-90.2972273,40.0747292],[-90.2972284,40.0745146],[-90.2972288,40.074388400000004],[-90.297194,40.074174],[-90.2972227,40.074014500000004],[-90.2969806,40.0737332],[-90.2968813,40.0736835],[-90.2967169,40.073606],[-90.29656,40.0735504],[-90.2963598,40.0734731],[-90.2961457,40.0733621],[-90.2960101,40.0732906],[-90.2958183,40.0731635],[-90.2955608,40.073030700000004],[-90.2952898,40.0728925],[-90.2951049,40.0728206],[-90.2948331,40.07277],[-90.2945974,40.0727364],[-90.2943684,40.0726586],[-90.2942192,40.0725706],[-90.2940334,40.072421399999996],[-90.293827,40.0722006],[-90.2936716,40.071953300000004],[-90.2935652,40.0716835],[-90.2935014,40.0715239],[-90.2933948,40.071309299999996],[-90.2933522,40.0711937],[-90.2933315,40.0710283],[-90.2932828,40.0708527],[-90.2931831,40.0706926],[-90.293034,40.070461],[-90.2929699,40.070345599999996],[-90.2928631,40.0701972],[-90.2926855,40.0700591],[-90.2924995,40.0699651],[-90.2923144,40.0698766],[-90.292143,40.0698102],[-90.2919071,40.0697545],[-90.2916858,40.0697263],[-90.2913643,40.069725],[-90.2911352,40.0697189],[-90.2909136,40.0697349],[-90.2906567,40.0697339],[-90.2904135,40.0697493],[-90.2902489,40.0697269],[-90.2901276,40.069716],[-90.2900066,40.0696547],[-90.289914,40.0695663],[-90.2897996,40.0693794],[-90.2897654,40.0691375],[-90.2897876,40.0688738],[-90.2898455,40.0686761],[-90.2899611,40.0684945],[-90.2901113,40.0683576],[-90.2902046,40.06827],[-90.2903124,40.0681879],[-90.2903777,40.0680895],[-90.2905352,40.067958000000004],[-90.2906424,40.0678373],[-90.2907505,40.0677055],[-90.2909086,40.0675519],[-90.291081,40.0673879],[-90.2911884,40.0672009],[-90.2912541,40.0670528],[-90.2912477,40.0668825],[-90.2912331,40.066783900000004],[-90.2911625,40.066574599999996],[-90.2910559,40.0663656],[-90.2909641,40.0661834],[-90.2909009,40.0660016],[-90.2908654,40.0657983],[-90.290945,40.065606],[-90.2910528,40.0654528],[-90.2911749,40.065294],[-90.2913612,40.0651734],[-90.2916618,40.0650754],[-90.2919772,40.0649333],[-90.2920272,40.064906],[-90.2922643,40.0647526],[-90.2924997,40.0646821],[-90.2928079,40.0645455],[-90.2931012,40.064431],[-90.293381,40.064327],[-90.2936385,40.0642294],[-90.2939245,40.0641095],[-90.2941039,40.064011],[-90.294205,40.0638958],[-90.2942621,40.0637857],[-90.2943318,40.0635997],[-90.294267,40.0634262],[-90.2941835,40.0633509],[-90.2940816,40.063315],[-90.2938848,40.0633018],[-90.2936692,40.0632916],[-90.2934206,40.0633049],[-90.2932249,40.0633104],[-90.2929233,40.0633207],[-90.2926058,40.0633518],[-90.2922054,40.0634387],[-90.2918471,40.0635204],[-90.2915397,40.0636508],[-90.2913321,40.063716400000004],[-90.291045,40.063819699999996],[-90.2908092,40.0639234],[-90.29058,40.0640657],[-90.2903225,40.064164],[-90.2900073,40.064245400000004],[-90.2896781,40.0642773],[-90.2893495,40.0642767],[-90.2891777,40.0642593],[-90.2889707,40.0642151],[-90.2888211,40.0641706],[-90.2886212,40.0641202],[-90.2883852,40.0640534],[-90.2881859,40.0639816],[-90.2879002,40.0638869],[-90.2875717,40.0637435],[-90.2874652,40.0636877],[-90.2873148,40.0635776],[-90.2872154,40.0635168],[-90.287116,40.0634616],[-90.2870439,40.0634393],[-90.2870015,40.0634224],[-90.2868948,40.0633561],[-90.2868092,40.0632518],[-90.2867379,40.063135700000004],[-90.2867096,40.063020699999996],[-90.2866961,40.0628552],[-90.2867831,40.0626911],[-90.2869193,40.062499],[-90.2871351,40.0622851],[-90.2873717,40.0620876],[-90.2878443,40.061792600000004],[-90.2880878,40.0616502],[-90.2883107,40.061431400000004],[-90.2884758,40.061179100000004],[-90.2885836,40.0610308],[-90.2886844,40.0608114],[-90.2887356,40.0607344],[-90.2888361,40.0606413],[-90.28885819999999,40.0604542],[-90.2889306,40.0601853],[-90.2890392,40.0598665],[-90.2891252,40.059690700000004],[-90.2891551,40.059394499999996],[-90.2892493,40.0591524],[-90.2892927,40.0590155],[-90.2892506,40.058866699999996],[-90.2891509,40.0587073],[-90.2889872,40.0585194],[-90.2888235,40.0584149],[-90.2886737,40.0583538],[-90.2883596,40.0582869],[-90.2880524,40.0582751],[-90.2877589,40.0582847],[-90.2874378,40.058311700000004],[-90.2871804,40.0583382],[-90.2868799,40.0583699],[-90.286543,40.0584294],[-90.2863146,40.058484],[-90.2860715,40.058499499999996],[-90.2859144,40.0585046],[-90.2857069,40.0584929],[-90.2855143,40.0584597],[-90.2853284,40.0583705],[-90.2852076,40.0582547],[-90.2851871,40.058101],[-90.2852021,40.0579195],[-90.2852667,40.0577548],[-90.285332,40.0575791],[-90.2854112,40.0574365],[-90.28555539999999,40.0572389],[-90.2856768,40.0570966],[-90.2857418,40.0570527],[-90.2858205,40.0570253],[-90.2859066,40.0569378],[-90.2860574,40.0567733],[-90.286237,40.0566092],[-90.2864657,40.0564338],[-90.2865812,40.0563241],[-90.2867316,40.0561216],[-90.286818,40.0559844],[-90.2868473,40.055869],[-90.286869,40.055726],[-90.286863,40.055594299999996],[-90.2868208,40.055434500000004],[-90.2868141,40.0553186],[-90.2867781,40.0552305],[-90.2866504,40.0551313],[-90.2865791,40.055098],[-90.2863932,40.0550979],[-90.2861783,40.055146199999996],[-90.2859348,40.055212],[-90.285248,40.0554567],[-90.2848256,40.0555768],[-90.284411,40.0556796],[-90.2838885,40.055843100000004],[-90.2832805,40.0559893],[-90.2826717,40.0561472],[-90.2822639,40.0562885],[-90.2818779,40.0563808],[-90.2816055,40.0564295],[-90.2811982,40.056544],[-90.2809692,40.0566145],[-90.2805328,40.0566898],[-90.2801895,40.0567438],[-90.279746,40.0568357],[-90.2793592,40.056928],[-90.2790093,40.057031699999996],[-90.2787439,40.0571459],[-90.2784149,40.0572716],[-90.2782217,40.057337000000004],[-90.2780283,40.0573859],[-90.2777209,40.0574397],[-90.2774416,40.0574332],[-90.2771846,40.0574218],[-90.2768986,40.0573768],[-90.2766133,40.0573152],[-90.2763355,40.057199],[-90.2761214,40.0570824],[-90.2760143,40.0569783],[-90.2758798,40.0567522],[-90.27583010000001,40.056564800000004],[-90.2757596,40.0564438],[-90.2755886,40.056168299999996],[-90.2755395,40.0560306],[-90.2755052,40.0557721],[-90.2754278,40.0555139],[-90.2753643,40.055288],[-90.2752076,40.0550841],[-90.2750513,40.054918799999996],[-90.2748516,40.0547256],[-90.2747527,40.0546262],[-90.2746387,40.054549],[-90.2744672,40.0544659],[-90.2743248,40.0544165],[-90.2739248,40.0543763],[-90.2735808,40.0544469],[-90.2732014,40.0546487],[-90.2728929,40.0549171],[-90.272563,40.0552132],[-90.2721967,40.0555364],[-90.2718742,40.0558428],[-90.2715726,40.0561828],[-90.2713062,40.0565282],[-90.271004,40.0568903],[-90.2707025,40.0572303],[-90.2704435,40.0576032],[-90.270184,40.0580913],[-90.2699818,40.058563899999996],[-90.2699954,40.0588219],[-90.2700797,40.0591304],[-90.2701716,40.0594106],[-90.270263,40.0596308],[-90.2703763,40.0599723],[-90.2704105,40.0603074],[-90.2704019,40.0605827],[-90.2704581,40.0608798],[-90.2704428,40.061039199999996],[-90.2702557,40.0613295],[-90.2700905,40.0615818],[-90.2699394,40.0617187],[-90.2694813,40.0619542],[-90.2692094,40.0620463],[-90.2688655,40.0621279],[-90.2686433,40.062176300000004],[-90.2682997,40.0622854],[-90.2679929,40.0623116],[-90.2677855,40.0623164],[-90.2675423,40.0623269],[-90.2673632,40.062375700000004],[-90.2671135,40.0623697],[-90.2668989,40.0622807],[-90.266721,40.0621977],[-90.26659240000001,40.0620985],[-90.2663784,40.0619819],[-90.26627189999999,40.0619377],[-90.266036,40.0617999],[-90.2657298,40.0616335],[-90.2655663,40.0615394],[-90.2654085,40.0614845],[-90.2652158,40.061434],[-90.2649876,40.0614224],[-90.2648021,40.061378],[-90.2644945,40.0614097],[-90.2640436,40.061479500000004],[-90.2638363,40.0614899],[-90.2636577,40.061500699999996],[-90.2633929,40.0615872],[-90.2630424,40.0616412],[-90.2627706,40.061673400000004],[-90.2624982,40.061722],[-90.2622699,40.061787],[-90.2619764,40.0618744],[-90.2616322,40.062016],[-90.2613601,40.0620923],[-90.2611529,40.0621136],[-90.2610102,40.0621235],[-90.260853,40.0621176],[-90.2607173,40.0621061],[-90.2605174,40.0620563],[-90.2603035,40.0619563],[-90.2601825,40.061808],[-90.2601401,40.0617138],[-90.2600765,40.061483],[-90.2601206,40.0611536],[-90.2601863,40.0610104],[-90.2603082,40.060818499999996],[-90.2604016,40.0606592],[-90.26056,40.0604457],[-90.2607044,40.0602647],[-90.2609483,40.059985],[-90.2610202,40.0598314],[-90.2610568,40.0597215],[-90.261079,40.0595406],[-90.2610791,40.059463300000004],[-90.2610375,40.0591938],[-90.2610307,40.0591441],[-90.2610025,40.0591057],[-90.2608603,40.059001],[-90.2606527,40.0589009],[-90.2603463,40.058796],[-90.26010289999999,40.0587893],[-90.2598168,40.0588159],[-90.2595599,40.0588148],[-90.2593168,40.058830900000004],[-90.2591169,40.058857700000004],[-90.2588233,40.0588623],[-90.2584588,40.0588716],[-90.2583996,40.0588719],[-90.25808,40.0588761],[-90.2576948,40.0587978],[-90.2574305,40.0587636],[-90.2570587,40.0586804],[-90.2568305,40.058586],[-90.2568108,40.0585861],[-90.25678740000001,40.0585856],[-90.2565029,40.058425299999996],[-90.256274,40.0583474],[-90.2559246,40.0581764],[-90.2556251,40.0580486],[-90.2555113,40.057988],[-90.2552683,40.0578494],[-90.2551268,40.0576289],[-90.25498400000001,40.0575463],[-90.2547205,40.0573417],[-90.254486,40.0571652],[-90.2542932,40.0570215],[-90.2539582,40.0568443],[-90.2538012,40.056767300000004],[-90.2535091,40.056661500000004],[-90.2533235,40.056606099999996],[-90.2531232,40.0565943],[-90.2528518,40.056654],[-90.2526224,40.0567024],[-90.2523145,40.056872],[-90.2519555,40.0571344],[-90.2517047,40.0573588],[-90.2515317,40.057551000000004],[-90.2513671,40.0576935],[-90.2511729,40.057835499999996],[-90.2510016,40.0579339],[-90.2508222,40.0580378],[-90.2507074,40.0581365],[-90.250621,40.0581964],[-90.2505208,40.058229499999996],[-90.2504563,40.0582458],[-90.2504061,40.0582564],[-90.2503282,40.0582728],[-90.2502779,40.0582724],[-90.2501831,40.0582275],[-90.2501038,40.0581956],[-90.2500462,40.0581849],[-90.2499822,40.0581639],[-90.2499317,40.0581366],[-90.2497801,40.058067199999996],[-90.2496212,40.0579916],[-90.2494698,40.0579388],[-90.2492967,40.0578688],[-90.2490503,40.0576682],[-90.2489984,40.057603],[-90.2487394,40.057485299999996],[-90.2485466,40.0575037],[-90.2483541,40.057555300000004],[-90.248127,40.0576458],[-90.2477592,40.057842],[-90.2475267,40.0580152],[-90.2473509,40.058204],[-90.2472675,40.0582984],[-90.247135,40.0584979],[-90.2469821,40.0587307],[-90.2467227,40.0589863],[-90.2464545,40.0591873],[-90.2462829,40.0591726],[-90.2460522,40.0590981],[-90.2458784,40.0589626],[-90.245754,40.0588323],[-90.2456447,40.0586902],[-90.2454553,40.0585278],[-90.2452727,40.0583317],[-90.244947,40.0580991],[-90.2445356,40.0579168],[-90.2443418,40.0578421],[-90.2440248,40.0577572],[-90.2437233,40.0576894],[-90.2435804,40.057674399999996],[-90.2432283,40.0575849],[-90.2430494,40.0575591],[-90.2425339,40.057553999999996],[-90.2420769,40.057559],[-90.2416104,40.0575039],[-90.2412617,40.0575627],[-90.2407912,40.0576505],[-90.2401801,40.0578496],[-90.2398685,40.0580178],[-90.2394939,40.0582534],[-90.2394529,40.058286100000004],[-90.2392686,40.0584314],[-90.2388363,40.0586452],[-90.2385605,40.0588022],[-90.2383361,40.0588995],[-90.2380144,40.059038799999996],[-90.2373581,40.059134],[-90.2369735,40.0591881],[-90.2365933,40.0591539],[-90.2362123,40.059048000000004],[-90.235889,40.0589527],[-90.2357229,40.058872300000004],[-90.2354556,40.058726300000004],[-90.2353396,40.0586291],[-90.234747,40.058283599999996],[-90.2344999,40.0580941],[-90.23410200000001,40.057828799999996],[-90.2338919,40.057661100000004],[-90.2335306,40.0574508],[-90.2331716,40.0573834],[-90.2327839,40.0573216],[-90.2324194,40.0573197],[-90.2321761,40.0573281],[-90.2318423,40.0574309],[-90.2311947,40.0575805],[-90.2308541,40.0577275],[-90.2304272,40.0578585],[-90.2301007,40.0579778],[-90.2298286,40.0579753],[-90.2295778,40.0579396],[-90.2294418,40.057908],[-90.2292396,40.0578002],[-90.2290938,40.057681099999996],[-90.2288834,40.0574795],[-90.2287645,40.0572781],[-90.2287184,40.0570693],[-90.2287069,40.0568279],[-90.2286868,40.0565417],[-90.2287026,40.056244899999996],[-90.2287342,40.0560081],[-90.2288154,40.055782],[-90.2288834,40.0555891],[-90.2290143,40.0553123],[-90.2291381,40.055041700000004],[-90.2292058,40.0548267],[-90.2292162,40.0546121],[-90.2291978,40.0543983],[-90.2291791,40.0541618],[-90.229182,40.0539203],[-90.2291853,40.0537167],[-90.2291666,40.053480199999996],[-90.2291178,40.0531838],[-90.2290325,40.052844199999996],[-90.2288904,40.0524718],[-90.2285089,40.051970499999996],[-90.2284466,40.0516742],[-90.2282192,40.0513968],[-90.2280668,40.051244600000004],[-90.2279427,40.0511412],[-90.2276608,40.0509628],[-90.227388,40.0508941],[-90.2270959,40.0509525],[-90.2267909,40.0510606],[-90.2265999,40.051166699999996],[-90.2264654,40.0512731],[-90.2264111,40.0514052],[-90.2263776,40.0515434],[-90.2263652,40.051653099999996],[-90.2263892,40.0518013],[-90.226409,40.052059299999996],[-90.2264768,40.0522789],[-90.2265672,40.0525088],[-90.226645,40.0528264],[-90.2268153,40.0531435],[-90.2268304,40.0532151],[-90.2267859,40.0535121],[-90.2267882,40.0536438],[-90.2267861,40.0538805],[-90.2266645,40.0542718],[-90.226575,40.054471],[-90.2265334,40.054532],[-90.2264144,40.0546542],[-90.2261754,40.0548985],[-90.2259717,40.055076400000004],[-90.2257447,40.055183299999996],[-90.2254745,40.0552747],[-90.2252328,40.0553431],[-90.2249479,40.0554014],[-90.2246558,40.0554598],[-90.22423380000001,40.0554638],[-90.2239755,40.0554012],[-90.2236959,40.0553711],[-90.2235011,40.0552799],[-90.2232856,40.0551943],[-90.2230546,40.055086700000004],[-90.2227807,40.054991],[-90.222558,40.054905500000004],[-90.2222349,40.0548315],[-90.2220407,40.054801],[-90.2217191,40.0547878],[-90.2214484,40.054835],[-90.2211853,40.0549145],[-90.2208445,40.0550394],[-90.2203957,40.0551436],[-90.2198984,40.0553246],[-90.219773,40.0553544],[-90.2196064,40.055394],[-90.2193289,40.0554792],[-90.2192081,40.0555137],[-90.2190387,40.0556307],[-90.21899020000001,40.0557138],[-90.2189813,40.055726899999996],[-90.2189283,40.055808],[-90.2189521,40.0559396],[-90.2191183,40.0560366],[-90.2191911,40.0561293],[-90.2193442,40.0562594],[-90.2194606,40.0564015],[-90.2194768,40.0565001],[-90.2195072,40.0565765],[-90.2194163,40.0567261],[-90.2192467,40.0568217],[-90.2189705,40.0569455],[-90.2186426,40.0570095],[-90.2184349,40.0569901],[-90.2182126,40.056931399999996],[-90.2180381,40.056818],[-90.2179216,40.0566655],[-90.2178189,40.0565461],[-90.2174004,40.0563582],[-90.2170569,40.056312],[-90.2166076,40.0563609],[-90.2162724,40.056419500000004],[-90.2159663,40.0565166],[-90.2156972,40.0566293],[-90.215357,40.0568197],[-90.2150324,40.0570321],[-90.2146372,40.0577238],[-90.214535,40.057999699999996],[-90.2143568,40.058403],[-90.2142187,40.0586791],[-90.2139902,40.0590779],[-90.2137884,40.059359900000004],[-90.2134341,40.0595787],[-90.212994,40.0597428],[-90.2124026,40.0598589],[-90.2120597,40.0598685],[-90.2117224,40.0598167],[-90.2115719,40.0597638],[-90.2113336,40.0596342],[-90.211014,40.0593794],[-90.2108964,40.0592049],[-90.2108144,40.0590025],[-90.2109011,40.0586936],[-90.2110659,40.0583069],[-90.2113018,40.0579253],[-90.2116456,40.0575638],[-90.2119607,40.0572031],[-90.2122968,40.0567926],[-90.212496,40.0563402],[-90.2125622,40.056053500000004],[-90.2125349,40.055757],[-90.21245880000001,40.0555104],[-90.2123336,40.0552918],[-90.2122002,40.0550732],[-90.2120331,40.054883000000004],[-90.2117932,40.054692700000004],[-90.2115567,40.054656800000004],[-90.2112072,40.054721],[-90.2109098,40.0548732],[-90.21074780000001,40.0550177],[-90.2105228,40.0552233],[-90.210306,40.0554509],[-90.2101376,40.0556672],[-90.2099649,40.055988400000004],[-90.2098548,40.0561981],[-90.2097385,40.0565017],[-90.2095877,40.0568662],[-90.2095301,40.0572018],[-90.209536,40.057515],[-90.2095279,40.057867],[-90.2094712,40.058302],[-90.2094209,40.0586549],[-90.2093264,40.0589797],[-90.2092295,40.059168],[-90.209035,40.0594665],[-90.2087523,40.0596621],[-90.20831390000001,40.059903399999996],[-90.2079089,40.0600728],[-90.2075601,40.0601204],[-90.2071674,40.0601794],[-90.2068517,40.0601336],[-90.2065499,40.0600326],[-90.2062399,40.0599199],[-90.2060294,40.059708],[-90.2059335,40.0595444],[-90.20577109999999,40.059288],[-90.2057168,40.0590682],[-90.2056199,40.058811399999996],[-90.2056288,40.0585416],[-90.2056877,40.0582335],[-90.2057756,40.057962599999996],[-90.2059361,40.0577581],[-90.2061449,40.0574588],[-90.2064125,40.0571922],[-90.2066306,40.057002600000004],[-90.2068485,40.056797],[-90.2069819,40.056669299999996],[-90.2073045,40.056346500000004],[-90.2075275,40.0560257],[-90.2075446,40.0557559],[-90.2075033,40.0554981],[-90.2074428,40.0552845],[-90.2073254,40.0551259],[-90.2072171,40.0550727],[-90.2071447,40.055017899999996],[-90.2069934,40.054970499999996],[-90.2067079,40.0549736],[-90.2064302,40.0550367],[-90.2061597,40.0551004],[-90.2057311,40.0551547],[-90.2056888,40.0551439],[-90.2052885,40.0551649],[-90.2048429,40.0550489],[-90.2046967,40.0548856],[-90.2045701,40.0546117],[-90.2045581,40.0543206],[-90.2046034,40.0540892],[-90.2046873,40.0539507],[-90.204792,40.0538287],[-90.2049391,40.0536401],[-90.2050039,40.0532989],[-90.2050556,40.0529957],[-90.2050873,40.0527485],[-90.2050616,40.0525175],[-90.2049011,40.0523653],[-90.2047157,40.0524057],[-90.2044813,40.0524906],[-90.204284,40.0526029],[-90.204122,40.0527418],[-90.20393849999999,40.0528871],[-90.2037551,40.0530373],[-90.2035294,40.0531773],[-90.20311889999999,40.0534288],[-90.2027582,40.053636499999996],[-90.202389,40.053793999999996],[-90.2020406,40.0538802],[-90.2016131,40.0539511],[-90.2011984,40.0539666],[-90.2008754,40.0538989],[-90.200581,40.0538137],[-90.2002,40.0536917],[-90.1998758,40.0535957],[-90.1996519,40.0534721],[-90.1993715,40.0533537],[-90.1990828,40.0532195],[-90.1988373,40.053090600000004],[-90.1985992,40.0529829],[-90.1981241,40.052785],[-90.1978153,40.0526999],[-90.197363,40.0526391],[-90.1971061,40.052619899999996],[-90.1964117,40.0525888],[-90.1960184,40.0525766],[-90.195569,40.052619899999996],[-90.1951566,40.0527673],[-90.1950234,40.0529171],[-90.1949679,40.0530278],[-90.1949567,40.0531596],[-90.1950023,40.0533243],[-90.1950769,40.0535156],[-90.1951511,40.053658],[-90.1952038,40.0538109],[-90.1953212,40.0539744],[-90.1954025,40.0541168],[-90.1954877,40.0544619],[-90.1955335,40.0546431],[-90.1955933,40.0547856],[-90.1955902,40.055016],[-90.1955211,40.055115799999996],[-90.1952872,40.0552448],[-90.1950027,40.0553527],[-90.1947333,40.0554378],[-90.1944616,40.0554739],[-90.1941273,40.055532400000004],[-90.1939203,40.055573],[-90.1937,40.055635699999996],[-90.1933451,40.0557882],[-90.1930752,40.0559119],[-90.192786,40.0560854],[-90.1925524,40.0562475],[-90.1924545,40.0563364],[-90.1921868,40.0565974],[-90.1921726,40.0569769],[-90.1921787,40.0573177],[-90.1923191,40.0579869],[-90.19257,40.0583911],[-90.1926377,40.058610099999996],[-90.1925997,40.0588525],[-90.1926377,40.0589675],[-90.1927124,40.0591644],[-90.1927146,40.0593017],[-90.1926043,40.0594955],[-90.1924565,40.0596233],[-90.1923002,40.059702200000004],[-90.1920942,40.059759299999996],[-90.1919578,40.0597608],[-90.1917928,40.0596962],[-90.1916051,40.0596048],[-90.1913523,40.0594649],[-90.1911788,40.0593514],[-90.1910114,40.059221199999996],[-90.1908236,40.0591133],[-90.1905432,40.0590004],[-90.1903415,40.0589478],[-90.1901627,40.058932999999996],[-90.189971,40.0589796],[-90.1898506,40.0590576],[-90.189759,40.0591465],[-90.1897264,40.0593005],[-90.1896997,40.0594166],[-90.1896944,40.0595208],[-90.1896692,40.0596969],[-90.18958860000001,40.059989200000004],[-90.1895708,40.0601873],[-90.1895296,40.0602924],[-90.1895179,40.0604629],[-90.1894637,40.0606171],[-90.1892816,40.0608113],[-90.1890909,40.0609677],[-90.1887299,40.0611416],[-90.1884022,40.061238700000004],[-90.1880317,40.0612705],[-90.1877379,40.0612515],[-90.1873882,40.0613101],[-90.1872326,40.0613725],[-90.1871551,40.0614391],[-90.1871143,40.0615767],[-90.1871741,40.0617247],[-90.1872196,40.0618727],[-90.1873082,40.062030899999996],[-90.18745440000001,40.0621888],[-90.1876728,40.0623952],[-90.1877892,40.0625428],[-90.1880366,40.0627711],[-90.1883288,40.0630868],[-90.1885528,40.0632159],[-90.1887406,40.0633238],[-90.1887986,40.0633732],[-90.1888927,40.0634485],[-90.1889974,40.0636784],[-90.189121,40.0638363],[-90.1892313,40.0640006],[-90.1893345,40.0641697],[-90.1893974,40.0644495],[-90.1894363,40.064657600000004],[-90.189442,40.0649653],[-90.1893523,40.065159],[-90.189199,40.0653696],[-90.1890439,40.0654865],[-90.1888672,40.0655931],[-90.1886602,40.0656336],[-90.1884384,40.0656363],[-90.1882164,40.0656162],[-90.1880731,40.0655632],[-90.1879781,40.0654927],[-90.18785629999999,40.065438900000004],[-90.1878115,40.065357],[-90.187782,40.0652799],[-90.1876144,40.0651277],[-90.1875347,40.0650626],[-90.1873889,40.064937900000004],[-90.1873157,40.0647962],[-90.1871481,40.064644],[-90.18702329999999,40.0644695],[-90.1867827,40.064197],[-90.1866655,40.064061],[-90.1865264,40.063886600000004],[-90.186476,40.0638703],[-90.1863459,40.0637945],[-90.1861521,40.0637142],[-90.1860153,40.0636826],[-90.1857144,40.0636754],[-90.1856292,40.0636869],[-90.1854653,40.0637327],[-90.1852666,40.063800799999996],[-90.185005,40.0639575],[-90.1848357,40.0640855],[-90.1846162,40.0642309],[-90.1844754,40.064336600000004],[-90.1843549,40.0644153],[-90.1841929,40.064559700000004],[-90.1841188,40.064791299999996],[-90.1839949,40.0650673],[-90.183934,40.0652663],[-90.1838186,40.0655865],[-90.183695,40.065890100000004],[-90.1836001,40.066199],[-90.1834687,40.0664475],[-90.1833424,40.0665641],[-90.1831292,40.0666212],[-90.1829149,40.066657],[-90.1826654,40.066670099999996],[-90.1823862,40.0666731],[-90.1821281,40.0666374],[-90.1819979,40.0665512],[-90.1818658,40.0663601],[-90.1818565,40.0662284],[-90.181853,40.066058],[-90.1818725,40.065942],[-90.1819333,40.065727100000004],[-90.1819856,40.065473499999996],[-90.1821098,40.0652251],[-90.1822424,40.0650146],[-90.1824172,40.0647928],[-90.1825504,40.064643000000004],[-90.1827399,40.0644598],[-90.1829439,40.064293],[-90.1830641,40.0641923],[-90.1831629,40.0641034],[-90.1832822,40.063997799999996],[-90.1834646,40.0638257],[-90.183697,40.0636249],[-90.1838664,40.063497],[-90.1841132,40.063296199999996],[-90.1843166,40.0630742],[-90.1844138,40.0629136],[-90.1844679,40.062748400000004],[-90.1844723,40.0625614],[-90.1844197,40.0624133],[-90.1843816,40.0622818],[-90.1842935,40.0621788],[-90.1841777,40.0620974],[-90.1840632,40.0620428],[-90.1839396,40.0619856],[-90.1837535,40.0619653],[-90.1836224,40.0619633],[-90.18340069999999,40.061977],[-90.1831871,40.061981],[-90.1829145,40.0620191],[-90.18264070000001,40.0620359],[-90.1824328,40.062071599999996],[-90.1821915,40.0621951],[-90.1820436,40.062307000000004],[-90.1819379,40.0624235],[-90.1818334,40.0625732],[-90.1817848,40.0626562],[-90.1817233,40.0627994],[-90.1816752,40.0629322],[-90.1816015,40.0631968],[-90.181535,40.0634718],[-90.1814127,40.0638196],[-90.1812675,40.0641185],[-90.1810998,40.0643285],[-90.1808459,40.0645349],[-90.1806128,40.0646638],[-90.180207,40.0647669],[-90.1798209,40.064776699999996],[-90.1795411,40.064713499999996],[-90.1792095,40.0646015],[-90.1790358,40.0644659],[-90.1789042,40.0643245],[-90.17881560000001,40.0641664],[-90.1785402,40.0639272],[-90.1783721,40.0637197],[-90.1781084,40.0633763],[-90.1779582,40.062982500000004],[-90.1779739,40.0626581],[-90.1779901,40.0623827],[-90.1780651,40.0621567],[-90.1781258,40.0619363],[-90.178178,40.0616717],[-90.1781596,40.0614414],[-90.1780135,40.061278],[-90.1778541,40.0611423],[-90.1775076,40.0609697],[-90.1771897,40.0607749],[-90.1769512,40.0606293],[-90.1766405,40.0604455],[-90.1763216,40.060245800000004],[-90.1760183,40.0600841],[-90.1756731,40.0599446],[-90.1753287,40.0598989],[-90.1750145,40.0599021],[-90.174679,40.0599385],[-90.1742014,40.0600372],[-90.1738183,40.0601622],[-90.1735052,40.0602861],[-90.1731656,40.060455],[-90.1730095,40.060560699999996],[-90.1728835,40.060716],[-90.1727809,40.0609753],[-90.1727285,40.0612178],[-90.1726915,40.0615705],[-90.1726484,40.0619392],[-90.1725462,40.0622427],[-90.1723933,40.0624913],[-90.1722314,40.0626522],[-90.1720342,40.062781],[-90.1717999,40.0628824],[-90.1716359,40.0629171],[-90.1713997,40.0629088],[-90.1711918,40.0628665],[-90.17105480000001,40.062813500000004],[-90.1709178,40.0627597],[-90.1708075,40.0625851],[-90.1706972,40.062416],[-90.1706011,40.0622241],[-90.1705536,40.0619553],[-90.1704779,40.0617363],[-90.170438,40.0615116],[-90.1704047,40.0612261],[-90.1704047,40.0608467],[-90.1704217,40.0605609],[-90.1704,40.0601705],[-90.1703531,40.0599624],[-90.1702784,40.0597545],[-90.1701176,40.059563600000004],[-90.1699874,40.059471200000004],[-90.1698288,40.0594072],[-90.169693,40.059386599999996],[-90.1695422,40.0593937],[-90.1693431,40.0594176],[-90.1692438,40.0594519],[-90.1691508,40.0594966],[-90.1690238,40.059553199999996],[-90.1685911,40.059750199999996],[-90.1684,40.0598562],[-90.1680957,40.0600573],[-90.1678763,40.0602083],[-90.1674941,40.0604264],[-90.1672824,40.060549699999996],[-90.1668556,40.060708],[-90.1666859,40.060798],[-90.1664513,40.0608718],[-90.1659305,40.060959499999996],[-90.1656811,40.0609844],[-90.1651596,40.061006],[-90.16483,40.0609989],[-90.164415,40.0609812],[-90.1641786,40.0609618],[-90.1638426,40.0609375],[-90.1631989,40.0609556],[-90.1627923,40.0609703],[-90.1623774,40.0609636],[-90.16197700000001,40.0609679],[-90.1616558,40.0609987],[-90.1614069,40.061073199999996],[-90.1611871,40.0611904],[-90.1610254,40.0613734],[-90.1609223,40.0615837],[-90.160874,40.0616944],[-90.1608484,40.0618374],[-90.1608576,40.061952500000004],[-90.16083330000001,40.0622335],[-90.1607667,40.0625036],[-90.1607148,40.0628116],[-90.1604987,40.0631219],[-90.1603796,40.0632551],[-90.1602753,40.0634268],[-90.1601347,40.063565499999996],[-90.1599308,40.0637488],[-90.1596693,40.0639221],[-90.1594278,40.064018000000004],[-90.159208,40.0641358],[-90.1589447,40.0642042],[-90.158652,40.0642127],[-90.1583655,40.0642046],[-90.15817200000001,40.0641629],[-90.1580563,40.0640815],[-90.157961,40.0639785],[-90.1579155,40.0638194],[-90.1579351,40.0637034],[-90.1579897,40.0635878],[-90.1580594,40.0634605],[-90.1581008,40.063372],[-90.1581547,40.0631847],[-90.1581851,40.0628823],[-90.1581881,40.0626346],[-90.1581921,40.0624862],[-90.15815190000001,40.0622174],[-90.158083,40.0619652],[-90.1580087,40.0617897],[-90.1579344,40.061631399999996],[-90.1577809,40.0614405],[-90.1576204,40.0612717],[-90.1574251,40.0611361],[-90.1572575,40.0609735],[-90.157019,40.0608272],[-90.1568832,40.0608011],[-90.1566543,40.0608037],[-90.15649020000001,40.0608274],[-90.1563479,40.0608785],[-90.1561421,40.0609632],[-90.155993,40.0610523],[-90.1558951,40.0611467],[-90.1557908,40.0613184],[-90.1557083,40.0615224],[-90.15564,40.0617104],[-90.1556152,40.061935500000004],[-90.1556404,40.0621334],[-90.1556586,40.0623533],[-90.1556751,40.0624795],[-90.1556846,40.0626333],[-90.1556686,40.0629356],[-90.15562919999999,40.0635244],[-90.1555919,40.0638488],[-90.1555184,40.0641577],[-90.155419,40.0645653],[-90.1552466,40.0649464],[-90.1551008,40.065201099999996],[-90.1549333,40.0654332],[-90.1546791,40.0656174],[-90.1546036,40.0658103],[-90.1543604,40.0662091],[-90.15416450000001,40.0664806],[-90.1538831,40.0667306],[-90.1537278,40.0668315],[-90.1534589,40.0669827],[-90.1532603,40.067066600000004],[-90.15305359999999,40.0671401],[-90.1528188,40.067198],[-90.1526041,40.0671888],[-90.1523962,40.0671362],[-90.1522879,40.067082299999996],[-90.1522291,40.0670281],[-90.1520989,40.0669357],[-90.1519758,40.0668384],[-90.1519249,40.0667676],[-90.1518223,40.0666474],[-90.1517406,40.066456],[-90.1516362,40.066242700000004],[-90.1516046,40.0660339],[-90.1515523,40.0659086],[-90.1515072,40.0657936],[-90.1514192,40.065695399999996],[-90.1512457,40.065581800000004],[-90.1510014,40.0654797],[-90.1508573,40.065437],[-90.1506569,40.0654174],[-90.1504927,40.0654301],[-90.1504356,40.065469],[-90.1503088,40.0655525],[-90.1502461,40.0656577],[-90.1502191,40.0657572],[-90.1501941,40.0659609],[-90.1501888,40.0660706],[-90.1501833,40.0661534],[-90.1501781,40.0662687],[-90.150256,40.0666305],[-90.1503301,40.066778400000004],[-90.1503826,40.0669154],[-90.150421,40.067085],[-90.1504169,40.0672285],[-90.1503758,40.0673384],[-90.1502639,40.067477],[-90.1502284,40.067521400000004],[-90.1501505,40.0675501],[-90.149965,40.0675904],[-90.1498654,40.067602],[-90.1496007,40.0676159],[-90.1494362,40.0676064],[-90.1492933,40.0675914],[-90.1491134,40.0675551],[-90.1489485,40.0675015],[-90.1485748,40.0673904],[-90.1483442,40.0673158],[-90.1481507,40.067267799999996],[-90.1479277,40.0672318],[-90.1476696,40.0671959],[-90.1474486,40.0671875],[-90.1471048,40.0671963],[-90.1467202,40.0672722],[-90.1463918,40.067303],[-90.1461065,40.067328],[-90.1458631,40.067319],[-90.1456831,40.0672772],[-90.145167,40.0672055],[-90.1450438,40.0670916],[-90.1449644,40.0670534],[-90.1448054,40.0669508],[-90.1445797,40.0667223],[-90.1443829,40.0665101],[-90.1442801,40.0663734],[-90.1441476,40.066127800000004],[-90.1439651,40.0659039],[-90.1438154,40.0655432],[-90.1436887,40.0652417],[-90.1437085,40.0651484],[-90.1436562,40.065027900000004],[-90.14351,40.0648535],[-90.1432928,40.0646739],[-90.143053,40.0644731],[-90.1429952,40.0644409],[-90.1428582,40.0643817],[-90.1427797,40.0643441],[-90.1426283,40.064284900000004],[-90.1421758,40.0641908],[-90.1420043,40.064197899999996],[-90.1418125,40.0642335],[-90.1415711,40.0643459],[-90.1414364,40.0644404],[-90.1412811,40.0645517],[-90.1412108,40.0646135],[-90.1411404,40.064680100000004],[-90.1409651,40.064852099999996],[-90.1408809,40.0649685],[-90.1407347,40.0651894],[-90.1406304,40.0653721],[-90.1405892,40.065477200000004],[-90.1404409,40.0655608],[-90.1404065,40.0656272],[-90.1403581,40.0657323],[-90.1402179,40.0659152],[-90.1400643,40.0661148],[-90.1398949,40.0662426],[-90.1397037,40.0663492],[-90.13949099999999,40.066467],[-90.139228,40.0665685],[-90.1390291,40.0666199],[-90.1387441,40.066683499999996],[-90.13856559999999,40.066701699999996],[-90.138286,40.0666715],[-90.1380059,40.066581299999996],[-90.1378399,40.0665001],[-90.1377085,40.066369699999996],[-90.1376562,40.0662437],[-90.1376754,40.0660842],[-90.1377726,40.0659181],[-90.1378558,40.0657852],[-90.1379474,40.0656853],[-90.1380736,40.065535600000004],[-90.1382272,40.0653526],[-90.1384312,40.0651694],[-90.1385789,40.0650196],[-90.1387551,40.064842],[-90.1389319,40.06473],[-90.1390731,40.0646568],[-90.13921500000001,40.0645622],[-90.1393273,40.0644677],[-90.1394317,40.0643071],[-90.1394641,40.0641144],[-90.139476,40.0639439],[-90.1394235,40.0638014],[-90.1393567,40.0636645],[-90.1392105,40.0634796],[-90.1390657,40.0633652],[-90.1388713,40.063318],[-90.1386278,40.063293099999996],[-90.1383986,40.0632736],[-90.1381059,40.0632766],[-90.1378194,40.063274],[-90.1375842,40.0632759],[-90.1373551,40.063262],[-90.1371463,40.0632148],[-90.1369672,40.0631723],[-90.1368159,40.0631193],[-90.1366499,40.0630326],[-90.136505,40.062896699999996],[-90.136381,40.0627884],[-90.1361406,40.0625268],[-90.1359814,40.0623966],[-90.1358141,40.0622719],[-90.1355698,40.0621587],[-90.1353466,40.0621116],[-90.1351186,40.062114199999996],[-90.1349183,40.0621104],[-90.134711,40.0621184],[-90.1345112,40.0621754],[-90.1343487,40.0622701],[-90.1342567,40.0623265],[-90.1341449,40.062469899999996],[-90.1340762,40.0626248],[-90.1340771,40.062718000000004],[-90.1339669,40.0629449],[-90.1339833,40.063071],[-90.1339938,40.0632414],[-90.1340246,40.063373],[-90.13407720000001,40.0635211],[-90.1340994,40.063592],[-90.1341662,40.0637345],[-90.1342343,40.0639094],[-90.1342855,40.0640188],[-90.13433069999999,40.0641503],[-90.134376,40.0642929],[-90.1343723,40.0644744],[-90.1343543,40.0646725],[-90.1343382,40.0649748],[-90.1342842,40.065151],[-90.1341653,40.0653117],[-90.1340306,40.0654125],[-90.1338047,40.0655517],[-90.13361330000001,40.0656362],[-90.1333718,40.065743],[-90.1330866,40.0657901],[-90.1327731,40.0658704],[-90.1324089,40.0659124],[-90.1321384,40.0659925],[-90.1319828,40.0660596],[-90.1318349,40.0661935],[-90.1317579,40.0663202],[-90.1316965,40.066475],[-90.131648,40.066574700000004],[-90.1316284,40.0666955],[-90.1316808,40.066827],[-90.1317402,40.0669419],[-90.1317778,40.0670238],[-90.1318649,40.0671275],[-90.1319735,40.0672194],[-90.1320977,40.067345],[-90.1321992,40.067448],[-90.1323375,40.0675514],[-90.1325326,40.0676704],[-90.1327277,40.067800500000004],[-90.1329657,40.0678965],[-90.1332458,40.0679929],[-90.1333182,40.0680526],[-90.1335204,40.0681715],[-90.133679,40.06823],[-90.1338091,40.0683114],[-90.1339175,40.0683874],[-90.1340201,40.0685125],[-90.1341074,40.0686327],[-90.1341394,40.0687864],[-90.1341633,40.0689512],[-90.1341651,40.0690498],[-90.134089,40.0691772],[-90.1339528,40.069206199999996],[-90.133689,40.0692249],[-90.1336038,40.0692371],[-90.1334035,40.0692388],[-90.1332885,40.0692346],[-90.1330378,40.069215299999996],[-90.1328515,40.069168],[-90.1325414,40.0690447],[-90.1323406,40.0689803],[-90.1320375,40.0688294],[-90.1318928,40.0687212],[-90.1317844,40.0686507],[-90.1315754,40.0685814],[-90.1313388,40.068534400000004],[-90.1311672,40.0685249],[-90.130881,40.0685499],[-90.1306963,40.0685847],[-90.1305611,40.0686248],[-90.13043329999999,40.0687027],[-90.1302911,40.0687594],[-90.1302005,40.0688758],[-90.1301234,40.0689921],[-90.1300471,40.0690918],[-90.1300624,40.0691904],[-90.1300714,40.0692953],[-90.1300872,40.069355200000004],[-90.1301382,40.069437],[-90.1302121,40.0695574],[-90.1302773,40.0696171],[-90.1303859,40.069709599999996],[-90.130494,40.069747],[-90.1305301,40.0697737],[-90.1306166,40.0698064],[-90.1306743,40.0698219],[-90.1308258,40.0698977],[-90.1309847,40.0699948],[-90.1310932,40.0700763],[-90.1312088,40.0701461],[-90.1312595,40.07019],[-90.1312933,40.0704534],[-90.1313228,40.0705353],[-90.1313104,40.0706513],[-90.1312691,40.0707502],[-90.1312434,40.0708883],[-90.1311388,40.0710379],[-90.1309983,40.0711987],[-90.130822,40.0713597],[-90.1306524,40.0714765],[-90.1305328,40.0715551],[-90.1303856,40.0717657],[-90.1302161,40.0718935],[-90.1300626,40.072098600000004],[-90.1298657,40.0722762],[-90.12968910000001,40.0724103],[-90.1295342,40.0725657],[-90.1294354,40.0726545],[-90.1293304,40.072771],[-90.1292816,40.072832],[-90.129262,40.072952799999996],[-90.1292986,40.0730299],[-90.129343,40.0730676],[-90.1294083,40.0731383],[-90.1295164,40.0731757],[-90.1295885,40.0732084],[-90.1296825,40.0732673],[-90.1297834,40.073310899999996],[-90.1299052,40.0733696],[-90.1299858,40.0734457],[-90.1300583,40.0735164],[-90.1301886,40.0736199],[-90.1302333,40.0737018],[-90.13027,40.0737837],[-90.1302785,40.073833300000004],[-90.1302586,40.0739162],[-90.1301955,40.073988299999996],[-90.1301311,40.0740162],[-90.1300315,40.074023],[-90.1298242,40.0740469],[-90.1297028,40.0740261],[-90.1295589,40.0740055],[-90.1294438,40.0739847],[-90.129315,40.073953],[-90.1289919,40.073874],[-90.1287843,40.0738592],[-90.1285196,40.0738785],[-90.1283914,40.073907500000004],[-90.1282633,40.0739468],[-90.1281152,40.0740532],[-90.1280449,40.0741253],[-90.1279405,40.074297],[-90.1278776,40.0744015],[-90.1278163,40.0745674],[-90.1277837,40.074737999999996],[-90.12772939999999,40.0748928],[-90.1277101,40.0750468],[-90.1276781,40.0752781],[-90.1276449,40.0753824],[-90.1275982,40.075586200000004],[-90.1275713,40.0756912],[-90.1275806,40.0758285],[-90.1276056,40.0760153],[-90.1275861,40.0761362],[-90.1274892,40.0763464],[-90.12744789999999,40.0764508],[-90.1274148,40.0765669],[-90.1273796,40.0766499],[-90.1272748,40.0767774],[-90.1271696,40.0768663],[-90.1270419,40.0769497],[-90.1269641,40.076983999999996],[-90.12682889999999,40.0770343],[-90.1266864,40.0770689],[-90.1265581,40.0770813],[-90.1264001,40.0770828],[-90.1262499,40.0770678],[-90.1261141,40.0770471],[-90.1259557,40.0770052],[-90.1258333,40.0769789],[-90.1257118,40.0769471],[-90.1255675,40.0768823],[-90.1253957,40.0768563],[-90.1253239,40.0768629],[-90.1252321,40.0769352],[-90.1252377,40.0769579],[-90.125227,40.0769711],[-90.1251698,40.076999],[-90.1250777,40.0770498],[-90.1250134,40.0770943],[-90.1248928,40.0771667],[-90.1248153,40.0772333],[-90.1247657,40.0773109],[-90.1246453,40.0773998],[-90.1245247,40.0774777],[-90.1243539,40.0775614],[-90.1241615,40.0776397],[-90.123997,40.0776247],[-90.1237808,40.0775548],[-90.1236226,40.0774404],[-90.1235558,40.0772979],[-90.1235115,40.0771602],[-90.1234596,40.07699],[-90.1233864,40.0768311],[-90.1232846,40.0766998],[-90.1230889,40.0765139],[-90.1229156,40.0764161],[-90.1225999,40.0763578],[-90.1224142,40.0763815],[-90.1222431,40.0764376],[-90.1220507,40.0765166],[-90.121881,40.0766223],[-90.1216679,40.076789],[-90.1215977,40.0768777],[-90.121392,40.0770713],[-90.1212012,40.0772379],[-90.1210311,40.0773988],[-90.1208894,40.077515500000004],[-90.1206771,40.0776822],[-90.12043560000001,40.0778932],[-90.1202794,40.0780044],[-90.1201515,40.0780658],[-90.1199314,40.0781615],[-90.1197592,40.0781955],[-90.1195314,40.078225],[-90.1193372,40.0782101],[-90.1191508,40.0781559],[-90.1190003,40.0780911],[-90.1188129,40.0780266],[-90.1185474,40.077967900000004],[-90.1183108,40.0779202],[-90.1180671,40.077889],[-90.1177518,40.077880300000004],[-90.1176378,40.077892],[-90.1175313,40.0779263],[-90.1173603,40.077999],[-90.1171182,40.0781437],[-90.1169481,40.078299200000004],[-90.1168281,40.078448800000004],[-90.11674550000001,40.0786528],[-90.1167686,40.0788286],[-90.1168202,40.0789719],[-90.11689319999999,40.0791033],[-90.1170097,40.0792731],[-90.117104,40.0793823],[-90.1173582,40.0796831],[-90.1174379,40.0797593],[-90.1175686,40.0799125],[-90.117663,40.080022400000004],[-90.1177018,40.0802478],[-90.1176954,40.080341000000004],[-90.1176253,40.0804352],[-90.1175255,40.080524],[-90.1173704,40.0806628],[-90.11720030000001,40.080818199999996],[-90.1170796,40.0808851],[-90.1167727,40.0810199],[-90.1166089,40.0810869],[-90.116317,40.0811878],[-90.1161242,40.0812171],[-90.11593859999999,40.0812567],[-90.1155602,40.0813256],[-90.1152317,40.0813611],[-90.1150243,40.0813684],[-90.1148025,40.0813702],[-90.11465079999999,40.0812827],[-90.1144426,40.0812017],[-90.1142114,40.0810552],[-90.1139445,40.080831],[-90.1136912,40.080635],[-90.1135313,40.0804268],[-90.1133866,40.0803068],[-90.1131782,40.0802044],[-90.1129835,40.080122599999996],[-90.112732,40.0800204],[-90.1125384,40.0799724],[-90.1123095,40.0799847],[-90.1121382,40.0800138],[-90.11196699999999,40.0800478],[-90.1116878,40.0800665],[-90.1114015,40.0800852],[-90.1110801,40.0801042],[-90.1108871,40.0801162],[-90.1105647,40.0801241],[-90.1104576,40.080103199999996],[-90.1102344,40.0800444],[-90.1100766,40.0799741],[-90.1098828,40.0798978],[-90.1095723,40.0797187],[-90.1091685,40.0794579],[-90.108945,40.079272],[-90.1088794,40.0791572],[-90.1087269,40.078970999999996],[-90.1084733,40.0787308],[-90.1082921,40.078555800000004],[-90.1079893,40.0783324],[-90.1078591,40.0782344],[-90.1076003,40.078115],[-90.107456,40.0780447],[-90.1069756,40.0779547],[-90.1066673,40.0779349],[-90.1062019,40.0779104],[-90.1058445,40.0779136],[-90.1054302,40.0779937],[-90.1052523,40.0780939],[-90.1051818,40.0781385],[-90.1050545,40.0782661],[-90.1049274,40.0784213],[-90.104773,40.0787415],[-90.1047246,40.0788625],[-90.1047328,40.0789728],[-90.104778,40.0791154],[-90.1048511,40.0792634],[-90.1049314,40.079400899999996],[-90.1050917,40.0796582],[-90.1052171,40.0799273],[-90.1053781,40.0802673],[-90.1055258,40.0806295],[-90.1055636,40.080838299999996],[-90.1055374,40.081036499999996],[-90.1054325,40.0812571],[-90.1053121,40.0813626],[-90.1050842,40.081491400000004],[-90.1048569,40.0815864],[-90.1046284,40.0816538],[-90.1043709,40.0816779],[-90.1041775,40.0816519],[-90.1039403,40.0815324],[-90.1037592,40.0813629],[-90.1036065,40.0811553],[-90.1035329,40.0809522],[-90.1034943,40.0807488],[-90.1034986,40.0805232],[-90.1034314,40.0802317],[-90.1033708,40.0799733],[-90.103339,40.0797258],[-90.1032559,40.0793522],[-90.1030951,40.079045300000004],[-90.1029851,40.0787817],[-90.1028819,40.078590399999996],[-90.1027233,40.078426300000004],[-90.1024776,40.0782571],[-90.1022691,40.078143],[-90.102038,40.078002],[-90.1017356,40.0778221],[-90.1015417,40.0777355],[-90.1012265,40.0777377],[-90.1007397,40.077736099999996],[-90.100511,40.0777814],[-90.1000909,40.0779056],[-90.099899,40.0780446],[-90.0997716,40.0781722],[-90.0996304,40.078355099999996],[-90.0993683,40.0785882],[-90.099142,40.0787936],[-90.0990435,40.0789321],[-90.0987744,40.0791811],[-90.0985122,40.0794032],[-90.0981208,40.0796377],[-90.0975327,40.0800822],[-90.0972061,40.0803323],[-90.097057,40.0804324],[-90.0969033,40.080736],[-90.0967914,40.0809905],[-90.0967796,40.081183100000004],[-90.0967883,40.0813645],[-90.0967333,40.0815414],[-90.0965224,40.0818784],[-90.0961811,40.0820954],[-90.0957901,40.0822692],[-90.0955115,40.0823534],[-90.0951902,40.082388800000004],[-90.094696,40.082370600000004],[-90.0943869,40.082251400000004],[-90.0942499,40.0821921],[-90.0940756,40.0819784],[-90.0940309,40.0817916],[-90.0939429,40.081583],[-90.0939401,40.0813574],[-90.0939722,40.0810109],[-90.0940757,40.080724000000004],[-90.0941808,40.0805083],[-90.0943152,40.0803641],[-90.0944213,40.0802697],[-90.0946479,40.0800919],[-90.0949819,40.079864],[-90.0951956,40.0797525],[-90.0956079,40.079551],[-90.0957788,40.0794729],[-90.0962912,40.0792102],[-90.0967043,40.0789984],[-90.0970028,40.078825800000004],[-90.0971217,40.0786541],[-90.0971212,40.0785989],[-90.0972615,40.0783008],[-90.0972662,40.0781193],[-90.0972058,40.077883],[-90.0971103,40.0776302],[-90.0968653,40.0774507],[-90.0965768,40.0773204],[-90.0963616,40.0772504],[-90.0959247,40.0772043],[-90.0957028,40.0771951],[-90.0953238,40.0772032],[-90.0950735,40.077237600000004],[-90.0947097,40.0773395],[-90.09446,40.0774407],[-90.0941973,40.0775911],[-90.0940196,40.0777134],[-90.0937573,40.0779245],[-90.09354569999999,40.078179399999996],[-90.0933972,40.0783561],[-90.0931568,40.0785947],[-90.0929738,40.0788384],[-90.0927559,40.0791921],[-90.0926512,40.0794569],[-90.0924261,40.0798057],[-90.0922015,40.0801152],[-90.0918636,40.080624],[-90.0915742,40.0810277],[-90.0912419,40.081355],[-90.0910645,40.0815049],[-90.090845,40.0816772],[-90.0905951,40.081761900000004],[-90.0904092,40.0817683],[-90.090122,40.081682799999996],[-90.0899844,40.0815621],[-90.0898334,40.081442100000004],[-90.0896956,40.081294400000004],[-90.0896152,40.0811299],[-90.089512,40.0809221],[-90.0894027,40.0807467],[-90.0894067,40.0804824],[-90.0894393,40.0801849],[-90.0894507,40.079942700000004],[-90.089455,40.0797115],[-90.0894323,40.0795681],[-90.0892802,40.0794261],[-90.0892076,40.0793443],[-90.08880429999999,40.0791214],[-90.0885822,40.0790956],[-90.0883319,40.0791252],[-90.0880542,40.0792148],[-90.0879192,40.079287300000004],[-90.0877197,40.0793883],[-90.087578,40.079516],[-90.0875011,40.0796647],[-90.0874603,40.0798305],[-90.0874397,40.079945800000004],[-90.087385,40.0801724],[-90.0873872,40.0803262],[-90.087396,40.0805187],[-90.0874852,40.0807659],[-90.0875442,40.080936],[-90.0875895,40.0810952],[-90.087656,40.0813094],[-90.0877949,40.0815999],[-90.0879332,40.0818027],[-90.0881073,40.0819944],[-90.0882665,40.082136399999996],[-90.0884767,40.082343699999996],[-90.088687,40.0825738],[-90.0889468,40.0828195],[-90.0890482,40.0829066],[-90.0893447,40.0831356],[-90.0897894,40.0838868],[-90.0897919,40.0840793],[-90.0897152,40.0842501],[-90.0896526,40.0843828],[-90.08956739999999,40.0845102],[-90.0893968,40.0846214],[-90.089155,40.084711],[-90.0887983,40.0848073],[-90.088476,40.0848206],[-90.0882754,40.0847892],[-90.0879738,40.084703],[-90.0878508,40.084599499999996],[-90.0876276,40.0844467],[-90.0874538,40.084283400000004],[-90.0872366,40.0840975],[-90.0869415,40.0839292],[-90.0860907,40.0833739],[-90.085378,40.0829993],[-90.0850225,40.082594],[-90.0841098,40.0822598],[-90.0838505,40.0820741],[-90.0835825,40.0818174],[-90.0832506,40.0815499],[-90.0828961,40.0812612],[-90.0827004,40.0810586],[-90.0825565,40.0809276],[-90.0821823,40.0807542],[-90.0818519,40.0806633],[-90.081572,40.0805992],[-90.0811643,40.0806074],[-90.0808495,40.0806648],[-90.08070000000001,40.0807152],[-90.0804156,40.080865599999996],[-90.0801818,40.0810544],[-90.0799493,40.081386800000004],[-90.0798299,40.081612899999996],[-90.0797247,40.0818177],[-90.0796339,40.0820217],[-90.0795573,40.0822042],[-90.0794387,40.0824249],[-90.0794114,40.0825961],[-90.07937749999999,40.0827336],[-90.0793585,40.0829317],[-90.0793452,40.0830642],[-90.0793406,40.0832567],[-90.0794231,40.0835647],[-90.0795251,40.0837346],[-90.0797143,40.0840193],[-90.0797945,40.084161800000004],[-90.080019,40.084374499999996],[-90.0802349,40.0845218],[-90.0804864,40.0846303],[-90.08066,40.0847667],[-90.080875,40.0848091],[-90.0810479,40.084851799999996],[-90.0813426,40.0849766],[-90.0814949,40.085135199999996],[-90.0815399,40.0853661],[-90.0815347,40.0854979],[-90.0814723,40.0856638],[-90.0813451,40.0858128],[-90.0811244,40.085947000000004],[-90.0808887,40.0860199],[-90.0806108,40.0860882],[-90.0804105,40.0860837],[-90.0802028,40.0860633],[-90.079959,40.0860155],[-90.0797213,40.0859511],[-90.0794629,40.0858758],[-90.0793124,40.085811],[-90.0789819,40.085713999999996],[-90.0787591,40.085606],[-90.0784284,40.0854814],[-90.0778528,40.0852821],[-90.0776309,40.0852728],[-90.0774812,40.0853177],[-90.0773967,40.0854119],[-90.077398,40.0855658],[-90.0774141,40.0856706],[-90.0774435,40.0857525],[-90.0774946,40.0858516],[-90.0775459,40.0859721],[-90.077648,40.086142],[-90.0777711,40.0862566],[-90.0778794,40.0863279],[-90.0780807,40.0864359],[-90.078225,40.0865125],[-90.0783406,40.086583],[-90.0785632,40.086675],[-90.0787365,40.0867728],[-90.0788656,40.0868543],[-90.0789455,40.0869533],[-90.0789399,40.0870409],[-90.0788617,40.0871462],[-90.0787773,40.087257],[-90.0786067,40.0873737],[-90.0783797,40.0875073],[-90.0781098,40.0876797],[-90.07790370000001,40.087851799999996],[-90.0776198,40.088063],[-90.0773284,40.0882362],[-90.0770159,40.0884585],[-90.0767748,40.0886363],[-90.0765413,40.088858200000004],[-90.0763854,40.089019],[-90.076066,40.0892848],[-90.0758109,40.0894958],[-90.0755056,40.0897346],[-90.0749518,40.0901188],[-90.0743951,40.0902547],[-90.074074,40.0903177],[-90.0738741,40.0903628],[-90.0736945,40.0903754],[-90.0734082,40.0902947],[-90.0731988,40.0901694],[-90.0728895,40.0900288],[-90.0725512,40.0898552],[-90.0723271,40.0896914],[-90.0722111,40.0895712],[-90.0718587,40.0894308],[-90.0715147,40.0893227],[-90.0713493,40.0893077],[-90.0709844,40.089282499999996],[-90.0708419,40.0893274],[-90.0705562,40.0894233],[-90.0702717,40.0895737],[-90.0700798,40.0897181],[-90.0699031,40.089867999999996],[-90.0698193,40.090056000000004],[-90.0697438,40.090370300000004],[-90.0697755,40.0906234],[-90.0699072,40.090919400000004],[-90.0701031,40.0911434],[-90.0703139,40.0914335],[-90.0704959,40.091719],[-90.0707926,40.0919756],[-90.0709667,40.0921721],[-90.0713275,40.0924615],[-90.0714797,40.092609100000004],[-90.0717258,40.0928328],[-90.0718933,40.0931018],[-90.0719087,40.0932279],[-90.0718253,40.0934595],[-90.0717209,40.0936532],[-90.0715861,40.0937642],[-90.0714359,40.0938422],[-90.07125740000001,40.0938872],[-90.0707723,40.0939903],[-90.0706222,40.0939855],[-90.0701059,40.0939066],[-90.0698118,40.0938645],[-90.0695394,40.0938389],[-90.0692883,40.093780100000004],[-90.06916580000001,40.0937372],[-90.0690008,40.093666999999996],[-90.0687554,40.0935419],[-90.0685037,40.0934058],[-90.0682521,40.093292500000004],[-90.0679501,40.0931621],[-90.0677046,40.0930212],[-90.0674386,40.0928962],[-90.0671796,40.0927546],[-90.0669991,40.0926513],[-90.0667981,40.0925647],[-90.0662674,40.0924803],[-90.0661521,40.0924429],[-90.0658808,40.092444900000004],[-90.0657519,40.0924951],[-90.0655392,40.0926341],[-90.0652983,40.092833999999996],[-90.065107,40.0930667],[-90.064967,40.093304],[-90.0648417,40.0936958],[-90.0648101,40.0940099],[-90.0648335,40.0942409],[-90.0649512,40.0944605],[-90.0650313,40.0945919],[-90.0652695,40.0948322],[-90.0653855,40.0949579],[-90.0655669,40.0951661],[-90.0657553,40.0953515],[-90.0659223,40.095565199999996],[-90.0661037,40.0957789],[-90.0662284,40.0960916],[-90.0662812,40.0962893],[-90.0662767,40.0965094],[-90.0662154,40.0968071],[-90.0661051,40.0971712],[-90.0660156,40.097540800000004],[-90.0659538,40.0977832],[-90.065915,40.0980973],[-90.0658888,40.0983065],[-90.0657705,40.0986762],[-90.0655328,40.0991568],[-90.0652878,40.0996375],[-90.0650624,40.0999856],[-90.06475209999999,40.1003893],[-90.0645478,40.1006773],[-90.0642931,40.1009545],[-90.0641726,40.1010434],[-90.0639376,40.1012046],[-90.0637306,40.1012773],[-90.0635593,40.1013168],[-90.0633589,40.101307399999996],[-90.0631782,40.101182],[-90.0630344,40.1010619],[-90.06293289999999,40.1009527],[-90.0627877,40.1007774],[-90.0625846,40.100548],[-90.0624681,40.1003616],[-90.0623518,40.1002027],[-90.0621053,40.0999348],[-90.0618228,40.0996616],[-90.0615342,40.0994104],[-90.0612812,40.0992357],[-90.0609788,40.0990619],[-90.0606124,40.0989657],[-90.0604044,40.0989114],[-90.060132,40.0988858],[-90.0599031,40.0989042],[-90.0595172,40.0989619],[-90.059303,40.099024299999996],[-90.0590111,40.0991526],[-90.058784,40.0992806],[-90.0585274,40.0994364],[-90.0582714,40.0995597],[-90.0579865,40.0996604],[-90.0577509,40.0997395],[-90.0574792,40.0998125],[-90.0571869,40.0998808],[-90.0569079,40.0999325],[-90.0566935,40.0999776],[-90.0564656,40.1000125],[-90.056286,40.1000244],[-90.0560001,40.0999988],[-90.0556554,40.0999246],[-90.0552459,40.0998278],[-90.0549726,40.099698000000004],[-90.0547569,40.099572800000004],[-90.0545182,40.0993821],[-90.054395,40.0992509],[-90.0543003,40.099103],[-90.0542127,40.098922],[-90.0540958,40.0986859],[-90.0539852,40.0984442],[-90.0538611,40.0982088],[-90.0537587,40.0979782],[-90.0536422,40.0977917],[-90.0535537,40.0976273],[-90.0533809,40.0974742],[-90.0531356,40.0973546],[-90.0529852,40.0973063],[-90.0527056,40.0972863],[-90.0525197,40.097293300000004],[-90.0523053,40.097333],[-90.0521341,40.0973786],[-90.0518493,40.0974959],[-90.0516714,40.097601600000004],[-90.0514162,40.097818000000004],[-90.0512747,40.0979898],[-90.0511548,40.0981669],[-90.0511208,40.0982934],[-90.0510519,40.0985579],[-90.0510114,40.0987837],[-90.0510142,40.0990155],[-90.0509939,40.099186],[-90.051025,40.0993673],[-90.0510693,40.09951],[-90.0511862,40.0997571],[-90.0512971,40.1000319],[-90.0513996,40.1002673],[-90.0515453,40.1005144],[-90.0516566,40.1008491],[-90.0516954,40.1010911],[-90.05176230000001,40.1013771],[-90.0517786,40.101497800000004],[-90.0518233,40.1016956],[-90.0518339,40.1020205],[-90.0518152,40.1022628],[-90.0517539,40.1025825],[-90.0517061,40.1027807],[-90.0516018,40.1030068],[-90.0514325,40.1032946],[-90.0512205,40.103521900000004],[-90.0510223,40.1036829],[-90.0507944,40.1038385],[-90.0505242,40.1039832],[-90.0502673,40.1041004],[-90.0499968,40.1042072],[-90.0497971,40.1042964],[-90.0496116,40.104358],[-90.0491195,40.1044996],[-90.0489771,40.104566500000004],[-90.048706,40.1047113],[-90.0485147,40.1048281],[-90.0483657,40.1049612],[-90.0481668,40.1051498],[-90.0480466,40.1052939],[-90.0479122,40.1054546],[-90.0478281,40.1056198],[-90.0477442,40.1058024],[-90.0476183,40.1060175],[-90.047463,40.1062666],[-90.0472508,40.1064663],[-90.0470515,40.1066107],[-90.0468675,40.106744],[-90.0467674,40.1068163],[-90.0465191,40.1069995],[-90.046278,40.1071994],[-90.046037,40.1073937],[-90.0458594,40.1075601],[-90.0457033,40.1077043],[-90.045455,40.1078876],[-90.0450993,40.1081376],[-90.04474450000001,40.1083765],[-90.0445022,40.1085377],[-90.0441616,40.1087601],[-90.0438128,40.1089666],[-90.0434924,40.1091281],[-90.0430641,40.1092908],[-90.0426654,40.1094368],[-90.0424223,40.1094876],[-90.0421506,40.109561299999996],[-90.0419649,40.1095898],[-90.0417288,40.1096247],[-90.0414779,40.1095934],[-90.0412843,40.1095453],[-90.0411264,40.1094577],[-90.0409601,40.1093322],[-90.0408007,40.1091687],[-90.0405472,40.1089222],[-90.0403524,40.1087202],[-90.0400922,40.1085296],[-90.0398601,40.1082664],[-90.0396353,40.1080094],[-90.0394117,40.1077966],[-90.0391803,40.1076162],[-90.0388979,40.1073484],[-90.0387956,40.1071398],[-90.0387155,40.1070084],[-90.0386063,40.1068219],[-90.0385099,40.1065588],[-90.0384282,40.1062232],[-90.0383308,40.1058276],[-90.0382339,40.1054872],[-90.0381722,40.1050694],[-90.0381689,40.104755499999996],[-90.03822339999999,40.104485499999996],[-90.0383494,40.1042697],[-90.0385122,40.104059899999996],[-90.0386668,40.1038439],[-90.038844,40.1036334],[-90.0389854,40.1034457],[-90.0392117,40.1031963],[-90.03929600000001,40.1030635],[-90.0393515,40.1029149],[-90.0393647,40.1027658],[-90.0393627,40.1026285],[-90.0392828,40.1025137],[-90.0391525,40.102392800000004],[-90.0390159,40.1022727],[-90.0388208,40.1021425],[-90.0385983,40.1020614],[-90.0384614,40.1020289],[-90.0382683,40.102036],[-90.0381257,40.1020643],[-90.0379043,40.1021322],[-90.0376829,40.102205],[-90.037476,40.1022777],[-90.0373121,40.1023564],[-90.0371629,40.1024619],[-90.0370567,40.1025507],[-90.0369219,40.1026672],[-90.0368229,40.1027663],[-90.0367242,40.102899199999996],[-90.0366046,40.103115],[-90.0364919,40.1032915],[-90.0363937,40.1034906],[-90.0363241,40.1036724],[-90.0362415,40.1039156],[-90.0361868,40.1041636],[-90.0361534,40.1043838],[-90.0360772,40.1046373],[-90.0360227,40.1049018],[-90.0360112,40.1051661],[-90.0359358,40.105530099999996],[-90.0358544,40.1059216],[-90.0358068,40.1061585],[-90.0357302,40.1063679],[-90.03566789999999,40.1065558],[-90.03555539999999,40.1067654],[-90.0354366,40.1069757],[-90.0352455,40.1072518],[-90.0350892,40.1073684],[-90.0347559,40.1076135],[-90.0347201,40.1076357],[-90.0344146,40.1078689],[-90.0342021,40.108041],[-90.0339756,40.1082621],[-90.033791,40.1084506],[-90.0336279,40.1086224],[-90.033558,40.1087607],[-90.0334814,40.1089646],[-90.0333692,40.109218999999996],[-90.0332865,40.109456],[-90.0332608,40.1097314],[-90.0332208,40.1100179],[-90.0331589,40.1102769],[-90.0330678,40.110465],[-90.0329411,40.1107022],[-90.0328148,40.1108683],[-90.0326658,40.111007],[-90.0324163,40.1111571],[-90.0322101,40.111229800000004],[-90.0319239,40.111281500000004],[-90.0317306,40.1112665],[-90.0316011,40.111256],[-90.0313858,40.1111804],[-90.03121229999999,40.1110494],[-90.0310466,40.1108908],[-90.0309233,40.110743],[-90.03082739999999,40.1105399],[-90.0307245,40.110238100000004],[-90.0306785,40.1099796],[-90.0306613,40.1097375],[-90.0306236,40.1095011],[-90.0305851,40.109281100000004],[-90.0305692,40.1090832],[-90.0305521,40.1088411],[-90.0305994,40.1085656],[-90.0306049,40.108461399999996],[-90.0306669,40.1082238],[-90.0307289,40.1079924],[-90.0308555,40.1077442],[-90.0308898,40.1076391],[-90.0309608,40.1075229],[-90.0311446,40.1073565],[-90.0314071,40.1071401],[-90.0316493,40.1069734],[-90.0318689,40.1067847],[-90.0320883,40.106563],[-90.0322011,40.1063921],[-90.0323067,40.1062205],[-90.0323403,40.1060389],[-90.03230980000001,40.1058024],[-90.0322716,40.1056211],[-90.0322345,40.1054778],[-90.0321975,40.1053351],[-90.0321018,40.1051541],[-90.0319291,40.105012],[-90.031655,40.1048877],[-90.03146100000001,40.1047789],[-90.0312879,40.1046976],[-90.0311519,40.1046595],[-90.0309585,40.104628],[-90.0307643,40.1046075],[-90.0305361,40.1046195],[-90.0303288,40.1046432],[-90.0301565,40.1046716],[-90.0299069,40.1046955],[-90.0297211,40.1047246],[-90.0295418,40.1047751],[-90.0292281,40.104871],[-90.0290352,40.104916],[-90.0287429,40.104989700000004],[-90.0284521,40.1050373],[-90.02826,40.1050623],[-90.0280706,40.1050804],[-90.027881,40.1050791],[-90.027678,40.1050801],[-90.0274165,40.105075],[-90.0272474,40.1050544],[-90.0270456,40.104989700000004],[-90.0268012,40.1048652],[-90.0265858,40.1047786],[-90.0263838,40.1046808],[-90.0262043,40.104583],[-90.0260169,40.1045176],[-90.0258666,40.1044913],[-90.0255146,40.1043894],[-90.0252,40.1043804],[-90.0249565,40.1043767],[-90.0246699,40.1043724],[-90.0244191,40.1043577],[-90.024219,40.1043924],[-90.0240335,40.104453899999996],[-90.0236407,40.1045557],[-90.0234551,40.1046062],[-90.0231844,40.1046909],[-90.0229415,40.1047747],[-90.0226423,40.1048871],[-90.0224639,40.1049486],[-90.0223,40.1050163],[-90.0219791,40.1051226],[-90.0217795,40.1052117],[-90.0214373,40.1053519],[-90.0211672,40.1055187],[-90.0210312,40.1055966],[-90.020932,40.1056632],[-90.0208256,40.1057355],[-90.0205683,40.1058201],[-90.0203823,40.105810500000004],[-90.0202956,40.1057557],[-90.0201799,40.1056631],[-90.0200795,40.1055704],[-90.0200284,40.1054713],[-90.0200046,40.1052844],[-90.0200098,40.1051464],[-90.0200303,40.104998],[-90.0200154,40.1049263],[-90.0199354,40.1048059],[-90.0198341,40.1047187],[-90.0197472,40.1046308],[-90.019653,40.104521500000004],[-90.019508,40.104362800000004],[-90.01937,40.1041709],[-90.0192752,40.103985],[-90.0191657,40.1037544],[-90.0190842,40.1035512],[-90.0189817,40.103304],[-90.0189,40.1030677],[-90.018776,40.1028212],[-90.0186811,40.1026291],[-90.0185789,40.102415],[-90.0182748,40.1021197],[-90.018108,40.1019121],[-90.0179199,40.101759],[-90.017719,40.1016833],[-90.0175114,40.1016684],[-90.017254,40.1017357],[-90.0171189,40.1018025],[-90.0169771,40.1019522],[-90.016907,40.1020739],[-90.0167799,40.102256600000004],[-90.0166527,40.1024276],[-90.0165471,40.1025991],[-90.0164703,40.1027871],[-90.0163935,40.1029744],[-90.0163096,40.103172799999996],[-90.0161697,40.1034549],[-90.0160427,40.103648],[-90.0158939,40.1038197],[-90.0157592,40.1039417],[-90.0154601,40.1040817],[-90.0153319,40.1041154],[-90.0151674,40.1041161],[-90.0150233,40.1040677],[-90.0149016,40.1040082],[-90.0148076,40.1039259],[-90.0146915,40.103778],[-90.0146174,40.1036024],[-90.0145445,40.103471],[-90.0144499,40.1033065],[-90.0143547,40.1030647],[-90.014345,40.1028557],[-90.0142919,40.1025972],[-90.0142541,40.1023442],[-90.01426359999999,40.1019316],[-90.0142837,40.101728],[-90.0142879,40.1014471],[-90.0142999,40.101238],[-90.0142539,40.1009795],[-90.0141158,40.1007655],[-90.0140284,40.1006065],[-90.0138979,40.1004533],[-90.0137603,40.1003166],[-90.0135868,40.10018],[-90.0134864,40.1000928],[-90.0132415,40.100011800000004],[-90.0130841,40.0999911],[-90.0127902,40.0999765],[-90.0125898,40.0999774],[-90.0123609,40.1000011],[-90.0121538,40.100063399999996],[-90.0119683,40.1001194],[-90.0117623,40.1002086],[-90.0116477,40.1002588],[-90.011449,40.1003707],[-90.0113286,40.100492],[-90.0113078,40.1005914],[-90.0113244,40.1007783],[-90.0114047,40.1009429],[-90.0114994,40.101118400000004],[-90.0116297,40.1012386],[-90.0117455,40.1013485],[-90.0118547,40.101534900000004],[-90.0119852,40.1016931],[-90.0120728,40.1018741],[-90.0121538,40.102132499999996],[-90.0121851,40.102358],[-90.012144,40.1025182],[-90.0120671,40.1026945],[-90.0119827,40.1028163],[-90.0118687,40.1029492],[-90.0117625,40.1030546],[-90.0116073,40.1032043],[-90.0114641,40.103287699999996],[-90.0111377,40.103487799999996],[-90.0110375,40.1035545],[-90.0108099,40.1036327],[-90.0106171,40.1036894],[-90.0102374,40.103735900000004],[-90.0100874,40.1037365],[-90.0099371,40.1037048],[-90.0097856,40.1036233],[-90.0096204,40.1035254],[-90.0094327,40.103411],[-90.0092882,40.1033019],[-90.0089851,40.1030231],[-90.008783,40.1029087],[-90.0086023,40.1027612],[-90.0084518,40.1026963],[-90.0082715,40.1026205],[-90.00820039999999,40.1026042],[-90.007964,40.1025838],[-90.0077924,40.1025853],[-90.007585,40.1026137],[-90.0074631,40.1026419],[-90.0073278,40.1027038],[-90.0071856,40.1027817],[-90.0070433,40.1028596],[-90.0069084,40.1029651],[-90.0068095,40.1030814],[-90.006689,40.1031923],[-90.0065404,40.1033965],[-90.0064564,40.103578999999996],[-90.0064369,40.1037439],[-90.0064233,40.1038489],[-90.0064544,40.1040467],[-90.0064927,40.1043764],[-90.0064947,40.1045199],[-90.0064978,40.1048227],[-90.0065078,40.1050869],[-90.0065165,40.1052904],[-90.0065496,40.1056477],[-90.0065876,40.1059338],[-90.0065777,40.1062968],[-90.006557,40.1064183],[-90.0064721,40.1064794],[-90.0064319,40.1067658],[-90.006377,40.1069972],[-90.0062859,40.1072018],[-90.0061881,40.107461],[-90.0061272,40.107742],[-90.0058579,40.1080136],[-90.0055532,40.108384],[-90.00537,40.1086387],[-90.0051724,40.1088983],[-90.0048532,40.1092418],[-90.0046262,40.1094139],[-90.0043204,40.1096139],[-90.00400690000001,40.1097484],[-90.0037075,40.109849],[-90.0034784,40.109861699999996],[-90.0031698,40.1097975],[-90.0029546,40.1097384],[-90.0027456,40.1096737],[-90.0026803,40.1095864],[-90.0026002,40.1094439],[-90.0025993,40.1093225],[-90.0026335,40.1092009],[-90.0027109,40.1090909],[-90.0027888,40.108925],[-90.0028371,40.108776399999996],[-90.0029214,40.1086215],[-90.0029983,40.1084556],[-90.0031109,40.1082351],[-90.0031932,40.1079373],[-90.0032911,40.1076886],[-90.0033461,40.1074627],[-90.0034219,40.1071374],[-90.0034406,40.1068621],[-90.0034866,40.10651],[-90.0034976,40.106173999999996],[-90.00351,40.1060249],[-90.0033646,40.1057896],[-90.0033132,40.105647],[-90.0033053,40.1055421],[-90.003216,40.1052458],[-90.0032147,40.1050692],[-90.0032758,40.1048213],[-90.0033179,40.1046728],[-90.0033015,40.1045183],[-90.0032645,40.1043812],[-90.0032409,40.104210800000004],[-90.0031894,40.1040565],[-90.0031241,40.1039637],[-90.0030514,40.1038543],[-90.0029644,40.1037442],[-90.0028776,40.1036735],[-90.0027328,40.1035258],[-90.0025239,40.103346],[-90.0022782,40.10316],[-90.0020406,40.1029748],[-90.0017374,40.1027891],[-90.0015001,40.102659],[-90.0011908,40.1024954],[-90.0009248,40.102371],[-90.0007086,40.1022843],[-90.0005223,40.1022416],[-90.0003219,40.1022314],[-90.0001146,40.102264],[-89.999963,40.1024316],[-89.9998202,40.1025647],[-89.9996335,40.102713800000004],[-89.9995427,40.1028211],[-89.9994963,40.1028751],[-89.9993392,40.1030131],[-89.9992092,40.1031854],[-89.9991454,40.1033106],[-89.9990825,40.103424000000004],[-89.99905150000001,40.1036214],[-89.99904599999999,40.1037312],[-89.9990461,40.1038691],[-89.9990383,40.1040285],[-89.9990624,40.1042547],[-89.9990832,40.1044044],[-89.9991559,40.1045165],[-89.9991807,40.1045999],[-89.9992542,40.1046955],[-89.9993134,40.1048022],[-89.9993182,40.1048463],[-89.9993613,40.1049793],[-89.9994014,40.1050467],[-89.999474,40.1051589],[-89.9995196,40.1052539],[-89.9995724,40.1053378],[-89.9996538,40.105423099999996],[-89.9997153,40.1054801],[-89.9997561,40.1055254],[-89.999804,40.1055652],[-89.9998727,40.1056277],[-89.9998927,40.1056504],[-89.999947,40.1057068],[-89.9999822,40.1057301],[-90.0000165,40.1057479],[-90.0002434,40.105826199999996],[-90.0002869,40.1058702],[-90.0003013,40.1058805],[-90.0003522,40.105952],[-90.0004029,40.106007],[-90.0004391,40.1060503],[-90.0004755,40.106105400000004],[-90.0005189,40.1061549],[-90.0005481,40.1062092],[-90.0006062,40.1062973],[-90.0006437,40.1063903],[-90.0006516,40.1064841],[-90.0006594,40.106566799999996],[-90.0006818,40.1066875],[-90.0006835,40.1067924],[-90.0006987,40.1069075],[-90.0006923,40.1070234],[-90.00067250000001,40.1071443],[-90.0006517,40.1072437],[-90.0006389,40.1073376],[-90.0005546,40.1074863],[-90.0004905,40.1075749],[-90.000363,40.1077189],[-90.0001139,40.1078103],[-89.9998529,40.108006],[-89.9993806,40.108295],[-89.999217,40.108416399999996],[-89.9990455,40.1085544],[-89.9988732,40.108703500000004],[-89.998716,40.108842100000004],[-89.998582,40.1089483],[-89.9984623,40.109044],[-89.9982556,40.1091704],[-89.998108,40.1092594],[-89.9979899,40.1093385],[-89.9978783,40.1094287],[-89.9978631,40.1094446],[-89.9977363,40.1096776],[-89.9976821,40.1097593],[-89.9975903,40.109872100000004],[-89.9975441,40.109947500000004],[-89.9975043,40.1100291],[-89.9974469,40.1101708],[-89.9974262,40.110301899999996],[-89.9974414,40.1104178],[-89.99740800000001,40.110521399999996],[-89.9974823,40.1106011],[-89.997512,40.1107286],[-89.9977149,40.1109603],[-89.9978946,40.111081],[-89.9981038,40.1113188],[-89.9982205,40.1114266],[-89.9983563,40.1115627],[-89.998449,40.1117196],[-89.99858090000001,40.1119384],[-89.99864170000001,40.1120168],[-89.9987287,40.1121296],[-89.9988158,40.1122369],[-89.9988678,40.1123539],[-89.9989773,40.1125832],[-89.9989798,40.1126819],[-89.999011,40.1129032],[-89.9990072,40.1129915],[-89.9990129,40.1131619],[-89.9989563,40.1132925],[-89.9988933,40.1134066],[-89.9988375,40.1135145],[-89.9987602,40.1136335],[-89.9986995,40.1136979],[-89.9985958,40.1137722],[-89.998492,40.1138292],[-89.9983467,40.1138746],[-89.998188,40.1139139],[-89.9980435,40.113942800000004],[-89.9978359,40.1139423],[-89.9976586,40.113904399999996],[-89.9974406,40.1138315],[-89.9972729,40.1137495],[-89.9970932,40.1136233],[-89.9969423,40.1135032],[-89.9967042,40.1132592],[-89.9965205,40.1130723],[-89.9962489,40.1127892],[-89.99605389999999,40.1125355],[-89.9960185,40.1122376],[-89.9959193,40.1119372],[-89.9958322,40.111686399999996],[-89.9958391,40.1114008],[-89.995779,40.1110298],[-89.9957429,40.1107644],[-89.9957037,40.1105541],[-89.9956956,40.1104217],[-89.9956515,40.1101673],[-89.9956307,40.1100128],[-89.9955947,40.1098791],[-89.9955466,40.109685400000004],[-89.9954578,40.109462300000004],[-89.9953604,40.1092778],[-89.9952692,40.1090877],[-89.9951718,40.1089088],[-89.9950647,40.1087567],[-89.9950032,40.108700400000004]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"CUMBERLAND","CO_FIPS":35},"geometry":{"type":"Polygon","coordinates":[[[-88.4706659,39.374263],[-88.4532595,39.3740686],[-88.4342942,39.3738258],[-88.4157678,39.3739566],[-88.397021,39.3738505],[-88.3789425,39.3738735],[-88.3606435,39.3738997],[-88.3424724,39.3738181],[-88.3234794,39.3741782],[-88.3044758,39.3741017],[-88.2860426,39.3741577],[-88.2671848,39.3740766],[-88.2485506,39.3746271],[-88.2338772,39.374864099999996],[-88.2144179,39.3747873],[-88.1968175,39.3749848],[-88.1776255,39.3752637],[-88.1590265,39.375576699999996],[-88.1401956,39.375735],[-88.1401837,39.3763533],[-88.1212419,39.376347100000004],[-88.1018811,39.3764736],[-88.0835374,39.3766148],[-88.0642202,39.3770338],[-88.0455465,39.3772865],[-88.0265937,39.3774388],[-88.0266016,39.3784231],[-88.0121513,39.3789458],[-88.0122198,39.364565400000004],[-88.0119354,39.349888],[-88.011455,39.3355751],[-88.0111299,39.3206513],[-88.0107831,39.3059176],[-88.0104215,39.291051100000004],[-88.0101089,39.2767347],[-88.0096935,39.2620745],[-88.0093728,39.2473106],[-88.009145,39.2325287],[-88.0085634,39.2177008],[-88.0083918,39.202958100000004],[-88.0082205,39.1883755],[-88.0082152,39.188209799999996],[-88.00773530000001,39.17388],[-88.0226295,39.1735339],[-88.0260128,39.1733945],[-88.0409414,39.1730879],[-88.0414941,39.1730775],[-88.0597547,39.172739],[-88.0600962,39.172735700000004],[-88.0786249,39.1725452],[-88.0969746,39.1724802],[-88.0976773,39.172461],[-88.1157745,39.171922699999996],[-88.1158943,39.1719193],[-88.1163942,39.171928],[-88.1346787,39.1717299],[-88.1348366,39.1717283],[-88.135484,39.1717221],[-88.150862,39.171599900000004],[-88.1541485,39.1715868],[-88.1552002,39.1715837],[-88.1720019,39.1715677],[-88.1730908,39.1715677],[-88.1907057,39.1714961],[-88.1915571,39.1714891],[-88.2092418,39.171283],[-88.2103509,39.1712932],[-88.2277601,39.171456],[-88.2290729,39.1714316],[-88.247021,39.1713607],[-88.2471417,39.1713551],[-88.2474256,39.171343],[-88.2616851,39.1714137],[-88.2657751,39.1714335],[-88.2794491,39.1713675],[-88.2844118,39.171377899999996],[-88.2879043,39.1713852],[-88.2980294,39.1712332],[-88.3029393,39.171160799999996],[-88.3170007,39.1712489],[-88.321835,39.1712426],[-88.3355087,39.1711838],[-88.3404154,39.1710919],[-88.3537762,39.171072],[-88.3585719,39.1710389],[-88.3603284,39.1710395],[-88.3716859,39.1710408],[-88.3777105,39.1711155],[-88.3792371,39.1711343],[-88.3962501,39.1711694],[-88.3976543,39.171191],[-88.4151463,39.1712693],[-88.4163264,39.1712747],[-88.4333568,39.1715697],[-88.4349417,39.1715979],[-88.4521046,39.1714565],[-88.4536351,39.171444],[-88.4547099,39.1714343],[-88.4670836,39.1714824],[-88.4707188,39.1714965],[-88.4708725,39.1860469],[-88.470675,39.2005942],[-88.4706828,39.2149279],[-88.470803,39.229348099999996],[-88.4709766,39.2440006],[-88.4711729,39.2585677],[-88.4710985,39.2729529],[-88.4710912,39.287369],[-88.4710153,39.3018563],[-88.4708459,39.3164144],[-88.4707542,39.3307578],[-88.4707689,39.3453617],[-88.4708588,39.359933],[-88.4706665,39.3742229],[-88.4706659,39.374263]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"CALHOUN","CO_FIPS":13},"geometry":{"type":"Polygon","coordinates":[[[-90.9367583,39.399488],[-90.9351484,39.3995036],[-90.916412,39.399609],[-90.9111568,39.399633800000004],[-90.9105204,39.399659400000004],[-90.908664,39.4000696],[-90.8951138,39.3999931],[-90.8861839,39.3998935],[-90.876486,39.3999182],[-90.8750642,39.3999087],[-90.857693,39.399858800000004],[-90.8387545,39.3998092],[-90.8199494,39.3997563],[-90.8010584,39.3995771],[-90.8010228,39.399576100000004],[-90.7815403,39.3993355],[-90.7809779,39.3993293],[-90.7805846,39.3993212],[-90.7626498,39.3989666],[-90.7621533,39.3989581],[-90.7616743,39.3989385],[-90.7501178,39.3984799],[-90.743637,39.3982977],[-90.7433469,39.3982897],[-90.7431476,39.3982905],[-90.7249541,39.3976346],[-90.7063188,39.3970274],[-90.7060644,39.3970272],[-90.7059452,39.3970243],[-90.6873877,39.396576100000004],[-90.6686137,39.3962487],[-90.6496551,39.3962637],[-90.6310436,39.3958389],[-90.6251139,39.3957056],[-90.6137075,39.3957345],[-90.6139278,39.3945881],[-90.6144352,39.3929282],[-90.6149253,39.3915212],[-90.6160397,39.3883192],[-90.6162789,39.3876958],[-90.6165137,39.3869122],[-90.6166459,39.3866114],[-90.6169169,39.386203],[-90.6174915,39.3854246],[-90.6179264,39.384918],[-90.6183115,39.384417400000004],[-90.6186353,39.3840858],[-90.6197891,39.3827041],[-90.6201383,39.3821803],[-90.6203579,39.381787599999996],[-90.6205269,39.3814547],[-90.620689,39.3810211],[-90.6207299,39.3809075],[-90.6208196,39.3806223],[-90.6208698,39.3801994],[-90.6209421,39.379821899999996],[-90.6209612,39.3795746],[-90.6209446,39.3793098],[-90.6205261,39.3774903],[-90.6204813,39.3772423],[-90.6202834,39.3762062],[-90.6202472,39.375496999999996],[-90.6203686,39.3750749],[-90.6204405,39.3747884],[-90.6205445,39.3745086],[-90.621108,39.3722533],[-90.6213737,39.3716296],[-90.6215057,39.3706455],[-90.6216491,39.3700478],[-90.6218723,39.3694342],[-90.6221131,39.3682544],[-90.622318,39.366382099999996],[-90.6223319,39.366248],[-90.6222835,39.3649924],[-90.6221523,39.3643476],[-90.6221047,39.363484],[-90.6220226,39.362905],[-90.6218817,39.3624302],[-90.6218304,39.3620014],[-90.6218081,39.3618304],[-90.6217158,39.3613937],[-90.6215688,39.3608706],[-90.6215061,39.3603908],[-90.6212973,39.3594528],[-90.6212033,39.358682099999996],[-90.6208717,39.3570606],[-90.620566,39.3558419],[-90.6201927,39.3529329],[-90.619997,39.3516925],[-90.6198035,39.3504852],[-90.6197869,39.3498849],[-90.6196864,39.3491528],[-90.6194711,39.348473],[-90.6193068,39.3477513],[-90.61925,39.3475358],[-90.6190878,39.3469459],[-90.6187933,39.3455283],[-90.618587,39.3447393],[-90.6183659,39.344026400000004],[-90.6180887,39.3429123],[-90.6170257,39.3382017],[-90.616874,39.3379367],[-90.6167059,39.3374234],[-90.6166247,39.3371219],[-90.6165057,39.3366841],[-90.616201,39.3359595],[-90.6159924,39.3353569],[-90.6158043,39.3347058],[-90.6154338,39.3336409],[-90.6146861,39.3318826],[-90.6144235,39.3311259],[-90.6140644,39.3302196],[-90.6138369,39.3295454],[-90.613617,39.3287842],[-90.6135079,39.3280674],[-90.6132501,39.326711599999996],[-90.6130218,39.3259822],[-90.6128875,39.325134500000004],[-90.6127287,39.3237405],[-90.61257,39.3230339],[-90.6125076,39.3225652],[-90.6124338,39.322394700000004],[-90.6122434,39.3211431],[-90.6121566,39.318452199999996],[-90.6121815,39.3177756],[-90.6121173,39.316636],[-90.6119945,39.3156116],[-90.6118108,39.3147782],[-90.6118337,39.3146524],[-90.6115919,39.3135159],[-90.6113204,39.3120774],[-90.6111737,39.3111125],[-90.6110097,39.3103963],[-90.6103848,39.308177],[-90.6102855,39.3078495],[-90.6101507,39.3074159],[-90.6100451,39.3071381],[-90.6099544,39.306907],[-90.6094009,39.3057183],[-90.6090933,39.3051373],[-90.6087864,39.3044901],[-90.6085193,39.304002600000004],[-90.6068443,39.3010851],[-90.6058417,39.2994561],[-90.6054491,39.2987807],[-90.6050699,39.2982763],[-90.6047458,39.2977714],[-90.6041301,39.2970221],[-90.603827,39.2965018],[-90.6032626,39.2952855],[-90.6028057,39.2938984],[-90.6026039,39.2932639],[-90.6025924,39.2932088],[-90.6024281,39.2924691],[-90.6023784,39.2921328],[-90.6023328,39.2918254],[-90.6022716,39.291323500000004],[-90.6022545,39.2906846],[-90.6021922,39.2902172],[-90.6021782,39.2894347],[-90.6022095,39.2888242],[-90.602184,39.2878734],[-90.6022904,39.2874058],[-90.6026803,39.2865574],[-90.6029506,39.2861255],[-90.6032214,39.2856067],[-90.6036663,39.2848682],[-90.6046077,39.2831628],[-90.6053639,39.2820044],[-90.6057374,39.2812431],[-90.6059903,39.2806084],[-90.6061856,39.2799219],[-90.6063879,39.2788958],[-90.606455,39.278412],[-90.6065507,39.2777209],[-90.6065978,39.2774416],[-90.6066743,39.2769964],[-90.6067244,39.276343],[-90.606842,39.2754585],[-90.6068686,39.2745513],[-90.6069429,39.273743100000004],[-90.6070847,39.2725905],[-90.607144,39.2718432],[-90.607257,39.2713493],[-90.6072772,39.2708273],[-90.6073725,39.2699968],[-90.6074867,39.269464299999996],[-90.607714,39.2687844],[-90.6079819,39.267753400000004],[-90.60842,39.2665912],[-90.6086139,39.2659323],[-90.608978,39.265034299999996],[-90.609077,39.264551600000004],[-90.609201,39.2641943],[-90.6093035,39.2639366],[-90.6093382,39.2638879],[-90.6094719,39.2634118],[-90.6095583,39.2630907],[-90.609587,39.262655699999996],[-90.6096877,39.262172899999996],[-90.6097525,39.2612102],[-90.609741,39.260705099999996],[-90.6097766,39.2602589],[-90.6097645,39.2597193],[-90.6096138,39.2587116],[-90.6093431,39.2579826],[-90.6087723,39.2566836],[-90.6076266,39.2542774],[-90.606572,39.2523507],[-90.6061749,39.2517084],[-90.6058974,39.2513369],[-90.6048046,39.2500262],[-90.6044168,39.249637899999996],[-90.60419,39.2494385],[-90.6039633,39.2492419],[-90.6037221,39.2489184],[-90.6029906,39.2481164],[-90.6022099,39.2475785],[-90.6016571,39.247073],[-90.6010696,39.2466285],[-90.6004381,39.2460906],[-90.5998913,39.2455132],[-90.5993089,39.2449375],[-90.598869,39.2443881],[-90.5984858,39.2438327],[-90.597865,39.2424968],[-90.5974782,39.2411338],[-90.5973786,39.2406655],[-90.5974051,39.2402042],[-90.5973106,39.2394886],[-90.5973652,39.2387745],[-90.5973393,39.2374537],[-90.5972872,39.2368427],[-90.5972851,39.2362491],[-90.5972117,39.235407800000004],[-90.5971624,39.2350894],[-90.5970008,39.2340542],[-90.5969741,39.2339344],[-90.5969589,39.2338696],[-90.5969227,39.233714],[-90.5967514,39.2331966],[-90.5967273,39.2324431],[-90.5962146,39.231432],[-90.5959418,39.230206],[-90.5957906,39.2293806],[-90.5954753,39.228166],[-90.5951478,39.2273022],[-90.5948181,39.2259498],[-90.594553,39.224992900000004],[-90.5941586,39.2237059],[-90.5936754,39.2226448],[-90.593262,39.221501599999996],[-90.5929433,39.2205176],[-90.592718,39.2198309],[-90.5925397,39.2192017],[-90.5924966,39.2190558],[-90.5920681,39.2178506],[-90.591995,39.2171417],[-90.5918883,39.214946499999996],[-90.5920277,39.2139734],[-90.5924194,39.2129165],[-90.592762,39.211891800000004],[-90.5929358,39.2108522],[-90.5929679,39.209945],[-90.5929023,39.2071945],[-90.5928152,39.2066114],[-90.5926804,39.2063807],[-90.592587,39.2061939],[-90.5924083,39.2057704],[-90.5923213,39.2049623],[-90.5921832,39.2045205],[-90.5921348,39.2043732],[-90.59196299999999,39.2035866],[-90.5917061,39.2028063],[-90.5914063,39.2016579],[-90.5911836,39.2005626],[-90.5911518,39.1998865],[-90.5911792,39.199242999999996],[-90.5910716,39.198940300000004],[-90.5910483,39.1985775],[-90.5911429,39.197356299999996],[-90.5912412,39.1969427],[-90.5913877,39.1965465],[-90.5917182,39.1958974],[-90.5927784,39.1941358],[-90.5930675,39.1937824],[-90.5939446,39.1925747],[-90.5961278,39.1895712],[-90.596232,39.1894266],[-90.5964499,39.1891844],[-90.5966336,39.1889038],[-90.5968797,39.1886448],[-90.5972725,39.188011599999996],[-90.5977389,39.1867456],[-90.5977916,39.1866015],[-90.5978192,39.186321],[-90.5978942,39.1860139],[-90.5979341,39.1852708],[-90.5980103,39.1845827],[-90.5982714,39.1827774],[-90.598489,39.1819416],[-90.5986568,39.1814404],[-90.5988388,39.1810549],[-90.5990493,39.1806761],[-90.599548,39.1801303],[-90.5999858,39.1797658],[-90.6012543,39.1788842],[-90.6027478,39.1779853],[-90.6029831,39.1778354],[-90.6039613,39.1772133],[-90.6045029,39.176805099999996],[-90.6051717,39.1762535],[-90.605679,39.1758014],[-90.606115,39.1753335],[-90.6066147,39.1748539],[-90.6066513,39.1748108],[-90.6072691,39.1740609],[-90.6077419,39.1735594],[-90.6080077,39.173206300000004],[-90.6089161,39.1721044],[-90.6095415,39.171273],[-90.6100973,39.1706451],[-90.6104618,39.1700288],[-90.6110104,39.1692795],[-90.6113102,39.1684981],[-90.6115993,39.1679363],[-90.6118802,39.1675333],[-90.6121181,39.166983],[-90.612523,39.1658997],[-90.6126564,39.1653601],[-90.612859,39.164825300000004],[-90.6131916,39.1635356],[-90.6133954,39.1627399],[-90.6135043,39.1619976],[-90.6135941,39.1611713],[-90.6137328,39.160633000000004],[-90.6137562,39.1602076],[-90.6137659,39.1600322],[-90.613905,39.1592951],[-90.6139946,39.1586786],[-90.6140839,39.1582719],[-90.6142072,39.1570946],[-90.6143789,39.155950000000004],[-90.6144123,39.155487199999996],[-90.6145449,39.1546729],[-90.6146055,39.1539035],[-90.6146938,39.1532097],[-90.6147692,39.1523683],[-90.6149647,39.1499258],[-90.6150514,39.1491851],[-90.6150678,39.1490455],[-90.615076,39.1475381],[-90.6150153,39.1466138],[-90.6149796,39.1452489],[-90.6149755,39.1451012],[-90.6148865,39.144061199999996],[-90.6148058,39.143445],[-90.6145909,39.1425166],[-90.6143269,39.141626],[-90.6140901,39.1405474],[-90.6136316,39.1391175],[-90.6134035,39.1384806],[-90.6132184,39.1380903],[-90.6123783,39.1360677],[-90.6122641,39.1356823],[-90.6118644,39.1347198],[-90.6118514,39.1346868],[-90.6117162,39.1344286],[-90.6114731,39.133731],[-90.6112381,39.1332142],[-90.6111032,39.1329781],[-90.6108038,39.1323073],[-90.6104621,39.1316535],[-90.610129,39.131097600000004],[-90.6100301,39.1308942],[-90.6099537,39.1307693],[-90.6098592,39.1306198],[-90.6097528,39.1303889],[-90.6095748,39.1301145],[-90.6093048,39.1296201],[-90.6090925,39.129306],[-90.608151,39.127695700000004],[-90.6080186,39.1275037],[-90.6077563,39.1270479],[-90.60713989999999,39.126168899999996],[-90.6068546,39.1257133],[-90.6063371,39.1250363],[-90.6061762,39.124719],[-90.6059511,39.1242628],[-90.6056782,39.1238057],[-90.6055657,39.1235293],[-90.6054675,39.1233701],[-90.6052161,39.1227044],[-90.6049077,39.1220212],[-90.6048089,39.1217074],[-90.6045635,39.1211962],[-90.6043205,39.1202764],[-90.6041381,39.1198309],[-90.6039424,39.1190997],[-90.6038174,39.118806899999996],[-90.6037615,39.1185162],[-90.6036151,39.117993],[-90.6035667,39.1177312],[-90.6033851,39.1167666],[-90.6033449,39.1164633],[-90.60328319999999,39.115804],[-90.6032907,39.1154851],[-90.6031815,39.1146206],[-90.6032182,39.1140211],[-90.6031418,39.1133248],[-90.6031295,39.113213099999996],[-90.6031371,39.1129052],[-90.6031954,39.1124435],[-90.6030637,39.1118388],[-90.603087,39.1109413],[-90.6029899,39.1106233],[-90.6029893,39.1104743],[-90.6028844,39.1102213],[-90.602725,39.1096595],[-90.601871,39.1073858],[-90.6013669,39.106411800000004],[-90.6007707,39.1048755],[-90.6006028,39.1045569],[-90.5997266,39.1026739],[-90.5995513,39.102331899999996],[-90.5991314,39.101649800000004],[-90.5988852,39.1011979],[-90.5986887,39.1008616],[-90.5981908,39.1000573],[-90.5978195,39.0993085],[-90.5975906,39.0989393],[-90.5973563,39.0985647],[-90.5971452,39.0980918],[-90.596949,39.097888],[-90.5967808,39.0974423],[-90.5964023,39.0965665],[-90.5962771,39.0961425],[-90.5959604,39.0957079],[-90.5958059,39.095454000000004],[-90.5954635,39.094738],[-90.5950424,39.0939675],[-90.5948321,39.0936589],[-90.5945587,39.0929326],[-90.5943633,39.0925521],[-90.59416,39.0922323],[-90.5939489,39.0916435],[-90.5938229,39.0913962],[-90.5936835,39.090972300000004],[-90.5930681,39.0895466],[-90.5928375,39.0888365],[-90.5926908,39.0885121],[-90.5925996,39.088231300000004],[-90.592425,39.0878174],[-90.5922524,39.08685],[-90.5922138,39.0867551],[-90.5920557,39.0863866],[-90.5918049,39.0853965],[-90.5916032,39.0847192],[-90.5915685,39.0844255],[-90.5913385,39.0830638],[-90.5911495,39.082063399999996],[-90.5909118,39.0812291],[-90.5906589,39.0802182],[-90.5900898,39.078340600000004],[-90.5898423,39.0773352],[-90.5895421,39.076473899999996],[-90.5884197,39.074195599999996],[-90.5878079,39.073565],[-90.5872903,39.0730728],[-90.5864039,39.0719685],[-90.5863352,39.071876599999996],[-90.5860128,39.0715235],[-90.5854844,39.0710162],[-90.5850769,39.0705424],[-90.5842907,39.0697325],[-90.584073,39.0695109],[-90.5837484,39.069130200000004],[-90.5834332,39.0688984],[-90.58318,39.068667500000004],[-90.582674,39.0681159],[-90.5824909,39.0678401],[-90.582176,39.0672784],[-90.5815387,39.0657811],[-90.5813379,39.0649229],[-90.5812349,39.0642074],[-90.5813084,39.0633385],[-90.5815438,39.0625205],[-90.5817156,39.0620647],[-90.5818781,39.0618064],[-90.5823536,39.060828799999996],[-90.582665,39.060467],[-90.5827998,39.0602477],[-90.5831125,39.0598527],[-90.5832336,39.0596708],[-90.5837073,39.0592716],[-90.5842512,39.0587116],[-90.5852921,39.0578902],[-90.5854963,39.0576978],[-90.5856591,39.0575776],[-90.586041,39.0574291],[-90.5862889,39.057315],[-90.5867683,39.057057900000004],[-90.5872488,39.0567566],[-90.5878648,39.056291200000004],[-90.588345,39.0558519],[-90.5886925,39.0554248],[-90.5888188,39.0552332],[-90.5890678,39.0548484],[-90.5893023,39.0543258],[-90.5896793,39.0536293],[-90.5898713,39.053217599999996],[-90.5898443,39.0529583],[-90.5899085,39.0526457],[-90.5899513,39.052205],[-90.5900945,39.0518433],[-90.5901525,39.0514742],[-90.590125,39.050952699999996],[-90.5901501,39.0500552],[-90.5900878,39.0497976],[-90.5901022,39.0494675],[-90.5899351,39.0491972],[-90.5898999,39.0489821],[-90.5893121,39.0478212],[-90.5890181,39.0471268],[-90.5886521,39.0468072],[-90.588434,39.0465539],[-90.5880347,39.0459143],[-90.5876415,39.0454348],[-90.5873609,39.045263500000004],[-90.5870643,39.0449667],[-90.5867628,39.0447017],[-90.5858409,39.0441485],[-90.5847922,39.0434031],[-90.58426299999999,39.0430602],[-90.5839984,39.0428901],[-90.5832308,39.0424707],[-90.5819377,39.0414874],[-90.5815562,39.041310100000004],[-90.5811147,39.0409083],[-90.5806421,39.0404489],[-90.5799828,39.0398103],[-90.5797593,39.0396633],[-90.5796592,39.0396008],[-90.5794335,39.039423400000004],[-90.5790052,39.0389663],[-90.5779597,39.0377267],[-90.5777566,39.0375215],[-90.5773216,39.036970600000004],[-90.5770472,39.0364969],[-90.5764094,39.0355282],[-90.5759622,39.034635],[-90.5754612,39.0333434],[-90.5749143,39.0319432],[-90.5747329,39.0311842],[-90.5745307,39.0305732],[-90.5743373,39.02961],[-90.5742266,39.0288463],[-90.5741647,39.028615],[-90.5741394,39.0284647],[-90.5740274,39.0278446],[-90.5738885,39.0268547],[-90.5738343,39.02643],[-90.5738355,39.0260449],[-90.5738135,39.025875299999996],[-90.5737817,39.0256437],[-90.573844,39.0238016],[-90.5739895,39.0226586],[-90.5741699,39.0216037],[-90.5742698,39.0211914],[-90.5746899,39.0201854],[-90.5749103,39.019317799999996],[-90.5751875,39.0189232],[-90.5755565,39.0182862],[-90.5758039,39.0179126],[-90.5760183,39.017121],[-90.5761501,39.0158953],[-90.5761585,39.0155156],[-90.576225,39.0147682],[-90.5762975,39.0144169],[-90.5762629,39.0140031],[-90.57625,39.01385],[-90.5762302,39.0132455],[-90.5762978,39.0123379],[-90.5763353,39.0114251],[-90.5763006,39.0113537],[-90.5762979,39.0112985],[-90.5762674,39.0108032],[-90.5761382,39.0097525],[-90.5760628,39.0088614],[-90.5759042,39.0080912],[-90.575765,39.0075472],[-90.5749998,39.0050364],[-90.5748451,39.0046347],[-90.574581,39.0035563],[-90.5743587,39.0030117],[-90.5742184,39.0025105],[-90.5738633,39.0014922],[-90.5734583,39.0006774],[-90.5733737,39.0004683],[-90.5733396,39.0003195],[-90.5731848,39.000022799999996],[-90.5727442,38.9987348],[-90.5725915,38.9983428],[-90.5719556,38.9969986],[-90.5712709,38.9952379],[-90.5706768,38.994081],[-90.5696192,38.9924536],[-90.5681936,38.9905782],[-90.5658409,38.9879825],[-90.5644185,38.986540500000004],[-90.5622773,38.9845833],[-90.5617222,38.984008599999996],[-90.5613539,38.9836309],[-90.5609091,38.9833354],[-90.5596677,38.9825143],[-90.5592957,38.9822402],[-90.558398,38.9815816],[-90.5566726,38.9799656],[-90.5557845,38.9789963],[-90.55560439999999,38.9787812],[-90.5551076,38.9781963],[-90.5540985,38.9771701],[-90.552653,38.9758166],[-90.5512973,38.9745505],[-90.5501515,38.9736056],[-90.5496172,38.9731107],[-90.5490388,38.9722656],[-90.5475081,38.9703964],[-90.5465626,38.969351700000004],[-90.5463864,38.9691586],[-90.5458454,38.9684401],[-90.545177,38.96772],[-90.5447042,38.9673157],[-90.5436699,38.9662427],[-90.5427512,38.9650913],[-90.5413468,38.9636131],[-90.5398731,38.962229199999996],[-90.5390036,38.9612872],[-90.5382153,38.9608222],[-90.5377715,38.9605832],[-90.53739,38.9603698],[-90.5370424,38.9601755],[-90.5312479,38.957335],[-90.5296873,38.9565233],[-90.5289302,38.956131],[-90.5279266,38.9556844],[-90.526715,38.9551539],[-90.5257178,38.9546602],[-90.5246378,38.9543053],[-90.5241777,38.9542721],[-90.5237034,38.954239],[-90.5214424,38.9541291],[-90.5192275,38.9540297],[-90.5181219,38.9541043],[-90.5180618,38.954109],[-90.5163723,38.9543998],[-90.5147495,38.9548999],[-90.5129635,38.9556194],[-90.5128756,38.9556575],[-90.510978,38.9564842],[-90.5090641,38.9574119],[-90.5075139,38.9583033],[-90.50605709999999,38.959307],[-90.5054928,38.9596625],[-90.50384389999999,38.9608363],[-90.5020116,38.9619233],[-90.5001349,38.9628767],[-90.5000138,38.9629385],[-90.4981454,38.9639829],[-90.4962404,38.9649407],[-90.493286,38.9662193],[-90.4912343,38.9669325],[-90.4893459,38.9674483],[-90.4877874,38.967779],[-90.4860132,38.9681115],[-90.4839902,38.9683606],[-90.4823518,38.9685373],[-90.4813254,38.9686067],[-90.4812883,38.968609799999996],[-90.4805355,38.9686492],[-90.4788552,38.9687379],[-90.4781623,38.9687589],[-90.4773547,38.9687919],[-90.4756903,38.9688887],[-90.4742907,38.9689556],[-90.4729376,38.969052500000004],[-90.4705736,38.9691937],[-90.4695022,38.9693393],[-90.4694263,38.9693496],[-90.4687085,38.969352799999996],[-90.4678562,38.969357099999996],[-90.4667379,38.9694313],[-90.4650607,38.9696233],[-90.4634925,38.9696432],[-90.45977859999999,38.9694723],[-90.4590461,38.9694397],[-90.45683149999999,38.9692591],[-90.4546468,38.9689278],[-90.4541188,38.9688493],[-90.4528263,38.9685948],[-90.4511094,38.9680664],[-90.4513174,38.9680205],[-90.4523805,38.9677896],[-90.4542034,38.9672528],[-90.4604105,38.9653355],[-90.4621042,38.964668599999996],[-90.4666504,38.9626128],[-90.4681389,38.961816400000004],[-90.4697246,38.9606367],[-90.470884,38.9598264],[-90.471993,38.958953],[-90.4726509,38.9579371],[-90.4733752,38.956859800000004],[-90.4741067,38.9558018],[-90.4749142,38.9546079],[-90.4751165,38.954276300000004],[-90.4755401,38.9535812],[-90.4762934,38.952567099999996],[-90.4770671,38.9514977],[-90.4781271,38.9504176],[-90.4792723,38.9491104],[-90.480449,38.9475268],[-90.4815754,38.946148],[-90.4823186,38.9449269],[-90.4829843,38.9434691],[-90.4833213,38.9425303],[-90.4833783,38.9417982],[-90.4834015,38.9409146],[-90.4834269,38.9401965],[-90.4834173,38.9395064],[-90.4830816,38.9382393],[-90.4827832,38.9371098],[-90.4827349,38.9361716],[-90.4827245,38.9354262],[-90.4828906,38.9346518],[-90.4832652,38.9336271],[-90.4839898,38.932351],[-90.4846111,38.931269],[-90.4849538,38.9304931],[-90.4856134,38.9296316],[-90.4862385,38.928825700000004],[-90.4866476,38.9277455],[-90.4867794,38.9270542],[-90.4869131,38.9265009],[-90.4872195,38.9259157],[-90.4878119,38.9249237],[-90.4880156,38.9245796],[-90.4894816,38.9228775],[-90.4903076,38.9221693],[-90.4924501,38.919442599999996],[-90.4936795,38.9181442],[-90.4949623,38.916629900000004],[-90.4961871,38.915014],[-90.4975613,38.9133416],[-90.4984942,38.9119573],[-90.4992997,38.911062799999996],[-90.5002478,38.9102623],[-90.5006793,38.9096636],[-90.5016866,38.908426399999996],[-90.5029658,38.907175699999996],[-90.5040168,38.906286],[-90.5047357,38.9056558],[-90.505266,38.9051708],[-90.5053376,38.9051136],[-90.5057935,38.9047494],[-90.5062877,38.9044635],[-90.5067013,38.9037311],[-90.5070908,38.903043],[-90.5074738,38.9026421],[-90.508258,38.9021301],[-90.509879,38.9015804],[-90.51167530000001,38.900932600000004],[-90.513799,38.9002101],[-90.5150904,38.8998427],[-90.5165267,38.8989798],[-90.5176926,38.8979923],[-90.5192038,38.896695199999996],[-90.5205908,38.8956119],[-90.5211223,38.8952248],[-90.5220173,38.8945723],[-90.5234595,38.8934001],[-90.5236702,38.8931884],[-90.5247653,38.8920854],[-90.5262504,38.8907085],[-90.5278811,38.8891425],[-90.5297202,38.8875884],[-90.5317525,38.8859553],[-90.5333708,38.8845301],[-90.5348188,38.8830568],[-90.5362905,38.8817599],[-90.5378826,38.880241],[-90.5382553,38.879881499999996],[-90.5394602,38.8789431],[-90.5413688,38.877587],[-90.5423149,38.8769518],[-90.5443662,38.8755751],[-90.5452338,38.8750041],[-90.545333,38.875025300000004],[-90.5456887,38.8747211],[-90.5471908,38.8738296],[-90.5487866,38.873069799999996],[-90.5511829,38.8722337],[-90.5532946,38.8714996],[-90.5549859,38.8709956],[-90.5568028,38.8706257],[-90.558434,38.8701222],[-90.5605322,38.8696779],[-90.5610851,38.8695707],[-90.5618704,38.86942],[-90.5629993,38.8693351],[-90.564435,38.8692226],[-90.5659746,38.8689738],[-90.5684585,38.8688213],[-90.5697626,38.8686492],[-90.571189,38.868625],[-90.5724273,38.868539],[-90.5736351,38.8685362],[-90.5745956,38.8685328],[-90.5761402,38.8686152],[-90.5774049,38.8686394],[-90.5785348,38.8686289],[-90.5792175,38.8686971],[-90.5792741,38.8687049],[-90.5799962,38.8688141],[-90.5815888,38.8690395],[-90.5834292,38.8692985],[-90.5845402,38.8694345],[-90.5852368,38.8697179],[-90.5861333,38.8708415],[-90.5864441,38.8710732],[-90.5881055,38.8718584],[-90.5896288,38.8723935],[-90.5916022,38.8730294],[-90.5951186,38.874547899999996],[-90.5960792,38.875],[-90.596587,38.8749482],[-90.5981358,38.875753599999996],[-90.5982408,38.875806499999996],[-90.5990686,38.8762335],[-90.6004112,38.8769442],[-90.6014934,38.8774916],[-90.6033636,38.8782856],[-90.6045963,38.8789669],[-90.6059034,38.879664],[-90.6063607,38.879996500000004],[-90.6070796,38.8803458],[-90.6077363,38.8807786],[-90.6087011,38.8812608],[-90.6095587,38.8816695],[-90.6107722,38.882246],[-90.6121876,38.8828509],[-90.6136756,38.883364],[-90.6153266,38.8839004],[-90.6167556,38.8844748],[-90.61746600000001,38.8847233],[-90.6178887,38.8848725],[-90.6189627,38.885326],[-90.6205337,38.8859432],[-90.6219281,38.8865509],[-90.6233594,38.887266],[-90.6241849,38.8878627],[-90.6251877,38.8885018],[-90.6251129,38.8886902],[-90.6264351,38.8896438],[-90.6277066,38.8907358],[-90.6289817,38.892059700000004],[-90.6299115,38.8934339],[-90.6305444,38.894580500000004],[-90.6306136,38.8947082],[-90.6312807,38.8957784],[-90.6322669,38.8973619],[-90.6331483,38.8987945],[-90.6340801,38.900508200000004],[-90.6352068,38.9024741],[-90.6359645,38.9038996],[-90.6363482,38.9042492],[-90.6377073,38.9054949],[-90.6394052,38.9069306],[-90.6406783,38.907876099999996],[-90.6423435,38.9090304],[-90.6429618,38.9094675],[-90.6433443,38.9097412],[-90.6446926,38.9105176],[-90.6466464,38.9115889],[-90.6479832,38.912531],[-90.6491184,38.913458500000004],[-90.6501318,38.9144949],[-90.65275510000001,38.9171829],[-90.6540277,38.9182912],[-90.6549088,38.919226699999996],[-90.655644,38.919882],[-90.6567593,38.9210968],[-90.6575953,38.921864299999996],[-90.6583749,38.9226379],[-90.6590815,38.923271400000004],[-90.6603982,38.924255],[-90.6607094,38.9244852],[-90.6614537,38.9250396],[-90.6631028,38.9266797],[-90.6635001,38.927631],[-90.6635315,38.928464500000004],[-90.6634924,38.929318],[-90.6633345,38.9300346],[-90.6630113,38.931448700000004],[-90.6629309,38.9321535],[-90.6629259,38.933142000000004],[-90.6629514,38.9340556],[-90.6630755,38.9349378],[-90.6634044,38.9358098],[-90.6637885,38.936601100000004],[-90.6646474,38.937672],[-90.66544880000001,38.9386828],[-90.6662367,38.9399504],[-90.6672276,38.9417351],[-90.6679259,38.943136100000004],[-90.6683875,38.9441171],[-90.6685103,38.9449193],[-90.6686176,38.945857000000004],[-90.6686765,38.947071199999996],[-90.6690753,38.9483179],[-90.6704879,38.9505731],[-90.6712838,38.9516723],[-90.6720331,38.9531529],[-90.67212549999999,38.9532872],[-90.6727509,38.9542224],[-90.6734412,38.9555545],[-90.6742673,38.9571834],[-90.6749924,38.9589071],[-90.6754574,38.9600841],[-90.6759228,38.9617056],[-90.6763729,38.9632637],[-90.676588,38.9647166],[-90.6765813,38.9660225],[-90.676551,38.9671769],[-90.6764914,38.9676386],[-90.6763524,38.9690674],[-90.6763437,38.9704617],[-90.6762556,38.9719783],[-90.6762436,38.9736019],[-90.6763844,38.9742023],[-90.6764087,38.9750248],[-90.6764956,38.9760013],[-90.6764675,38.9770811],[-90.6763872,38.9779985],[-90.6761658,38.9793646],[-90.6759538,38.9802337],[-90.6758642,38.9810187],[-90.6759632,38.9818681],[-90.676238,38.9832927],[-90.6765605,38.984611900000004],[-90.676889,38.985862],[-90.6773315,38.9871579],[-90.6776827,38.9885017],[-90.6779498,38.9894598],[-90.6783083,38.9910244],[-90.6786582,38.992705],[-90.6793186,38.9941229],[-90.6800209,38.9952947],[-90.6805372,38.9961329],[-90.6807081,38.9964114],[-90.6813035,38.9973248],[-90.6819894,38.9981433],[-90.6831931,38.9994619],[-90.683714,39.0000364],[-90.6839503,39.0003114],[-90.6846541,39.0011381],[-90.6848609,39.0014452],[-90.6854611,39.0022121],[-90.687039,39.0043178],[-90.6877036,39.005231800000004],[-90.6881707,39.006181],[-90.688401,39.0067239],[-90.688855,39.0078443],[-90.6890893,39.0086302],[-90.6892753,39.0090631],[-90.6893366,39.009449000000004],[-90.6896559,39.0107627],[-90.6896883,39.0108991],[-90.6896979,39.0109473],[-90.6898064,39.0115039],[-90.6899294,39.011878100000004],[-90.6903411,39.0127891],[-90.6907066,39.0134853],[-90.6910887,39.0143193],[-90.6914387,39.0149287],[-90.6916046,39.0152196],[-90.6918394,39.0156079],[-90.6919833,39.0158508],[-90.692779,39.0170836],[-90.69315040000001,39.0176983],[-90.6936297,39.0183173],[-90.6938627,39.018700100000004],[-90.694316,39.0194519],[-90.6950749,39.0205927],[-90.6958383,39.0215788],[-90.6968327,39.022932499999996],[-90.6976042,39.024078599999996],[-90.6983499,39.0253782],[-90.6988482,39.0261683],[-90.6989955,39.0264042],[-90.6999982,39.0281319],[-90.7005075,39.028948],[-90.7010682,39.0299693],[-90.7014199,39.030671],[-90.7018576,39.0314341],[-90.7022656,39.0321132],[-90.7028248,39.0329467],[-90.70378529999999,39.0345754],[-90.7052984,39.0372696],[-90.7059094,39.038438],[-90.7071561,39.0410659],[-90.7077881,39.0422134],[-90.7079518,39.0424699],[-90.7083306,39.042887],[-90.7086164,39.043243000000004],[-90.7091655,39.0439882],[-90.7097057,39.0446301],[-90.7105225,39.0456031],[-90.7106653,39.0458832],[-90.7111017,39.0464529],[-90.7113605,39.0468865],[-90.7117774,39.0476649],[-90.7122821,39.0488123],[-90.7126654,39.0497953],[-90.7127758,39.0502456],[-90.712934,39.0506953],[-90.7131254,39.0514319],[-90.7131433,39.0518555],[-90.7133504,39.0536107],[-90.7132599,39.0551522],[-90.7131526,39.0557082],[-90.7131239,39.05579],[-90.7130007,39.0561433],[-90.7127316,39.0566624],[-90.7119364,39.0576853],[-90.7113344,39.0582009],[-90.7105424,39.058788899999996],[-90.7098248,39.059275400000004],[-90.7097092,39.0593539],[-90.7082575,39.0603973],[-90.7065628,39.0617387],[-90.7040399,39.0636298],[-90.7030682,39.0645937],[-90.7026281,39.0650579],[-90.7021826,39.0657265],[-90.7018176,39.0665434],[-90.7017165,39.0670607],[-90.7016227,39.0683165],[-90.7013688,39.0692136],[-90.7013034,39.0696381],[-90.70116,39.0701614],[-90.7010988,39.0703111],[-90.7008079,39.0710167],[-90.700323,39.0720819],[-90.699984,39.072661],[-90.6996141,39.0731977],[-90.6988116,39.0741267],[-90.6984416,39.0745529],[-90.6979457,39.0750729],[-90.6967206,39.0762464],[-90.6961836,39.0768538],[-90.6956453,39.0773853],[-90.6945949,39.078322299999996],[-90.694021,39.0789466],[-90.6926026,39.080325],[-90.6917599,39.0808747],[-90.691241,39.081295499999996],[-90.6907512,39.0816622],[-90.6900704,39.082144],[-90.689412,39.0826988],[-90.6887881,39.0830986],[-90.6875343,39.084161800000004],[-90.6870917,39.084494899999996],[-90.686907,39.084676200000004],[-90.686792,39.0847878],[-90.6857534,39.0855963],[-90.6849433,39.0863996],[-90.6836608,39.0875626],[-90.6827865,39.0884535],[-90.6825298,39.088779099999996],[-90.6821676,39.089364],[-90.6819677,39.0899099],[-90.6815436,39.0914589],[-90.6814594,39.092252099999996],[-90.6814154,39.0942832],[-90.6814425,39.0949538],[-90.6813389,39.0959612],[-90.6812941,39.0972054],[-90.6813582,39.0981793],[-90.681211,39.0988075],[-90.6809859,39.0997609],[-90.6810037,39.1001901],[-90.6815896,39.1033453],[-90.6821203,39.1056315],[-90.6825195,39.1068284],[-90.6826685,39.107691],[-90.6829832,39.108812900000004],[-90.6832796,39.109692],[-90.6839365,39.1118885],[-90.6842082,39.1129873],[-90.68437109999999,39.1134025],[-90.68446,39.113630799999996],[-90.6851436,39.115729],[-90.6857,39.117101],[-90.6861864,39.1177918],[-90.686434,39.1185002],[-90.6868423,39.119070300000004],[-90.687579,39.1202058],[-90.6880578,39.1207531],[-90.68863640000001,39.1213325],[-90.6890282,39.1217661],[-90.689748,39.1224159],[-90.6902756,39.123019299999996],[-90.6903313,39.123065600000004],[-90.6911803,39.1238065],[-90.6915022,39.124189799999996],[-90.691909,39.1247764],[-90.6921601,39.125061],[-90.6932445,39.1270433],[-90.6933209,39.1271626],[-90.6952202,39.1301704],[-90.695914,39.13116],[-90.6961406,39.1313578],[-90.6962891,39.131544],[-90.69648,39.131725700000004],[-90.6966503,39.1319448],[-90.6976128,39.1328902],[-90.6980222,39.1332035],[-90.6982625,39.1334716],[-90.6986307,39.133757700000004],[-90.6995798,39.134648],[-90.6997471,39.1347898],[-90.7002723,39.135241300000004],[-90.7012638,39.1363286],[-90.7015244,39.136642],[-90.7017661,39.1368894],[-90.7021689,39.1375382],[-90.7025226,39.138016300000004],[-90.7031194,39.1391311],[-90.7040116,39.140620999999996],[-90.7045931,39.1417746],[-90.7048695,39.1423901],[-90.706141,39.1457494],[-90.7063891,39.146470199999996],[-90.7069499,39.1482727],[-90.7071284,39.1487595],[-90.7075972,39.1500537],[-90.707832,39.1506144],[-90.7082289,39.151851300000004],[-90.7089126,39.154512600000004],[-90.708948,39.1546116],[-90.708991,39.1547437],[-90.7091125,39.1555252],[-90.7091707,39.1561292],[-90.7093732,39.1629974],[-90.7093907,39.1636033],[-90.7094779,39.1649676],[-90.7095703,39.1653959],[-90.7096364,39.1665672],[-90.7097152,39.1669198],[-90.7098621,39.1698061],[-90.709915,39.171451],[-90.7098895,39.173067700000004],[-90.709919,39.173447100000004],[-90.7100976,39.1745578],[-90.7101403,39.1749812],[-90.7102973,39.1754489],[-90.7103265,39.1758061],[-90.7105539,39.1767631],[-90.7107706,39.1775049],[-90.71101,39.1783348],[-90.7112516,39.1789784],[-90.7117057,39.1798088],[-90.71216,39.1805509],[-90.7123572,39.1809851],[-90.7132164,39.1823745],[-90.7134011,39.1827978],[-90.7135991,39.1831781],[-90.713748,39.1836887],[-90.713876,39.1839137],[-90.7149087,39.1875487],[-90.7159822,39.191595899999996],[-90.7162972,39.1927881],[-90.7169021,39.1946453],[-90.7173021,39.196339],[-90.7174729,39.1972967],[-90.717659,39.1980111],[-90.7178106,39.199391399999996],[-90.71789150000001,39.2005901],[-90.7178706,39.201541399999996],[-90.7177744,39.2025473],[-90.7175445,39.2042366],[-90.7173702,39.205138399999996],[-90.7171243,39.2060079],[-90.7170274,39.2064575],[-90.7169911,39.2066194],[-90.7166326,39.2076419],[-90.7165583,39.2092039],[-90.7166044,39.2105411],[-90.7166972,39.2112938],[-90.7167553,39.2120911],[-90.716841,39.212635399999996],[-90.7169558,39.2131201],[-90.7171051,39.2135479],[-90.7176541,39.2155438],[-90.7178957,39.216076799999996],[-90.7180595,39.2164175],[-90.71828550000001,39.2167644],[-90.7185053,39.2172645],[-90.7194215,39.2190454],[-90.7197903,39.2196434],[-90.7202903,39.220648600000004],[-90.7203732,39.2208203],[-90.7212178,39.2220455],[-90.7217579,39.223315400000004],[-90.7219351,39.223816],[-90.7220702,39.2244427],[-90.72210749999999,39.2247501],[-90.7220096,39.2255587],[-90.721877,39.2258941],[-90.7217795,39.2265163],[-90.721575,39.2270057],[-90.721245,39.2283482],[-90.7211897,39.2291508],[-90.7211773,39.2299764],[-90.7212657,39.2309831],[-90.7214307,39.2320057],[-90.7217297,39.2331814],[-90.722241,39.2345233],[-90.7224099,39.2351552],[-90.7226415,39.2360293],[-90.7229124,39.2369086],[-90.7232094,39.237459],[-90.7234085,39.2380905],[-90.72356,39.238739100000004],[-90.7237734,39.2392725],[-90.7241365,39.2405593],[-90.72455,39.241889799999996],[-90.7247778,39.2428413],[-90.7250841,39.2439231],[-90.726012,39.2476791],[-90.726262,39.2485806],[-90.7264677,39.249178900000004],[-90.7265966,39.2497518],[-90.7266187,39.2497999],[-90.726754,39.250125600000004],[-90.7267937,39.2502702],[-90.7268948,39.2504693],[-90.7269407,39.2506579],[-90.7271925,39.2513551],[-90.7273221,39.2515594],[-90.7273805,39.2517535],[-90.7275891,39.2522082],[-90.7277862,39.2528273],[-90.7279346,39.253088],[-90.7284293,39.2537661],[-90.7285016,39.2539435],[-90.7287217,39.2542448],[-90.7291333,39.2547402],[-90.7293069,39.2549192],[-90.7295467,39.25523],[-90.7298382,39.2557571],[-90.7300932,39.2560249],[-90.7303779,39.2562663],[-90.7305834,39.2565443],[-90.7308539,39.2567858],[-90.7311741,39.2570213],[-90.7318314,39.2576521],[-90.7323435,39.2581064],[-90.7336854,39.2588901],[-90.7342365,39.259234899999996],[-90.7360616,39.2604442],[-90.7369844,39.2609203],[-90.7373328,39.2611458],[-90.7384513,39.2617455],[-90.7400314,39.2623361],[-90.7405099,39.2624856],[-90.74251,39.2629282],[-90.7436673,39.263104999999996],[-90.7445582,39.2631784],[-90.7448815,39.2632881],[-90.7453904,39.2633448],[-90.7459959,39.263447400000004],[-90.7462492,39.263511],[-90.7471182,39.2636508],[-90.747393,39.263726500000004],[-90.7479345,39.2638215],[-90.7483431,39.2639331],[-90.7486888,39.264004],[-90.7493777,39.2642009],[-90.7500953,39.2645135],[-90.7502006,39.2645414],[-90.7506214,39.2648419],[-90.7509955,39.265005],[-90.7513102,39.2652266],[-90.7515411,39.2654326],[-90.7517876,39.2656149],[-90.7520031,39.2658486],[-90.7522207,39.2660037],[-90.7530371,39.2668798],[-90.7533252,39.2671017],[-90.7536397,39.2674117],[-90.7547173,39.268394],[-90.7551876,39.2687768],[-90.755444,39.269115],[-90.756572,39.2701299],[-90.7569623,39.2705067],[-90.7573603,39.271016],[-90.757717,39.2713986],[-90.7587576,39.272391],[-90.7596488,39.273068800000004],[-90.7599428,39.2733238],[-90.7602577,39.2736503],[-90.76072740000001,39.2739959],[-90.7611909,39.2742904],[-90.7619388,39.2750002],[-90.7625132,39.2754398],[-90.7631876,39.276004],[-90.7637249,39.2764551],[-90.7646166,39.277155],[-90.765491,39.2778827],[-90.7657495,39.2781353],[-90.7662396,39.278620000000004],[-90.7665132,39.278825499999996],[-90.7669389,39.2792902],[-90.7672948,39.2797226],[-90.767464,39.2798436],[-90.7677852,39.2801272],[-90.7684199,39.2808519],[-90.7690474,39.28177],[-90.7693036,39.282191],[-90.7696967,39.2830122],[-90.7698926,39.2833331],[-90.770036,39.2837029],[-90.7711872,39.2856864],[-90.7715735,39.2865257],[-90.7718514,39.287061],[-90.7721563,39.2875201],[-90.772469,39.2881158],[-90.7727673,39.288597100000004],[-90.7730601,39.288979],[-90.77328059999999,39.289480499999996],[-90.7736134,39.2900055],[-90.7738147,39.2904313],[-90.7742386,39.2910837],[-90.7743276,39.2912926],[-90.7744944,39.2915751],[-90.7749065,39.292067599999996],[-90.7751994,39.2923501],[-90.7754649,39.2926882],[-90.7757793,39.292981499999996],[-90.7758841,39.2930812],[-90.77622099999999,39.2933425],[-90.7769298,39.2938317],[-90.7773528,39.2940383],[-90.7777174,39.2942552],[-90.7785058,39.2946303],[-90.7790195,39.2949367],[-90.7796313,39.2952709],[-90.7802433,39.2955127],[-90.7810916,39.2959534],[-90.7814331,39.2960712],[-90.7824382,39.2965405],[-90.7825998,39.2966354],[-90.7830092,39.2967758],[-90.7834454,39.2970209],[-90.7842398,39.2974235],[-90.7845907,39.297673700000004],[-90.7849569,39.2978795],[-90.7852009,39.2981073],[-90.7858974,39.298596599999996],[-90.7865891,39.2993109],[-90.7868544,39.2995385],[-90.7872131,39.2997279],[-90.7877381,39.3003584],[-90.7878706,39.300415],[-90.7881101,39.3005876],[-90.7884037,39.3009088],[-90.7890698,39.301386],[-90.7901051,39.302427800000004],[-90.7908042,39.3032469],[-90.791013,39.3035897],[-90.7913363,39.304362],[-90.7914076,39.3048636],[-90.7914839,39.3051499],[-90.79142949999999,39.3055729],[-90.7914758,39.3058706],[-90.7915165,39.3066404],[-90.7916246,39.307010500000004],[-90.7918477,39.3073587],[-90.7918856,39.3075833],[-90.7919777,39.3077603],[-90.79208009999999,39.3080146],[-90.7922969,39.3083076],[-90.7927657,39.3087786],[-90.7931157,39.3090674],[-90.7934864,39.3094167],[-90.794083,39.3098781],[-90.7949626,39.3103625],[-90.7956239,39.310763800000004],[-90.7971403,39.3117698],[-90.7981593,39.3123935],[-90.79862370000001,39.312715499999996],[-90.8008258,39.3137995],[-90.8019462,39.3142357],[-90.8020791,39.314307299999996],[-90.8025296,39.314553599999996],[-90.8029526,39.314749],[-90.8033532,39.3149833],[-90.8039101,39.3152132],[-90.8044875,39.3154925],[-90.8051565,39.315728],[-90.8057421,39.315974],[-90.8064669,39.3162489],[-90.8069605,39.3164174],[-90.8075669,39.3167253],[-90.8085026,39.3171607],[-90.8092711,39.3173964],[-90.8098281,39.3176262],[-90.8104488,39.3178457],[-90.8110977,39.3180537],[-90.8121552,39.3184408],[-90.812677,39.3185937],[-90.8137342,39.318964199999996],[-90.8146359,39.3193834],[-90.8148539,39.31945],[-90.8150514,39.3195568],[-90.815467,39.3197357],[-90.8168102,39.320477],[-90.8173657,39.3208159],[-90.8180138,39.3211675],[-90.8182445,39.3213388],[-90.8185407,39.3215011],[-90.818885,39.3217568],[-90.8191779,39.3220226],[-90.819867,39.3225725],[-90.8201876,39.322893300000004],[-90.8207725,39.3232815],[-90.8208481,39.3233331],[-90.8211373,39.3234996],[-90.8214876,39.323793800000004],[-90.8219161,39.324088599999996],[-90.8223728,39.3243664],[-90.8227641,39.3248589],[-90.8232608,39.3253737],[-90.8239659,39.3260145],[-90.8241865,39.3262163],[-90.824663,39.326698199999996],[-90.8249646,39.3269529],[-90.8257576,39.3275361],[-90.8260232,39.3278575],[-90.8266263,39.3283628],[-90.8274877,39.329182599999996],[-90.8288382,39.3300121],[-90.8292811,39.3304046],[-90.8297703,39.3308988],[-90.8307164,39.3317742],[-90.831236,39.3321797],[-90.831706,39.3326009],[-90.8321135,39.3329054],[-90.8323011,39.3331435],[-90.8325618,39.3333931],[-90.8329681,39.3337309],[-90.83323970000001,39.3340908],[-90.833514,39.3343072],[-90.8337605,39.3344631],[-90.8339989,39.3346619],[-90.8343693,39.3350773],[-90.8346007,39.3353715],[-90.8351387,39.3359078],[-90.8355174,39.3363784],[-90.83605610000001,39.3368554],[-90.8365759,39.337364300000004],[-90.8369749,39.3376869],[-90.8372473,39.3379916],[-90.8379211,39.3385568],[-90.8384819,39.339072200000004],[-90.8389044,39.3394166],[-90.8401324,39.3404254],[-90.840321,39.3406192],[-90.8405288,39.3407949],[-90.8405884,39.3408467],[-90.8415856,39.3414979],[-90.8419378,39.3417865],[-90.8429996,39.34247],[-90.8435957,39.3429629],[-90.8447004,39.3436528],[-90.8461274,39.344466],[-90.8465636,39.3447771],[-90.847155,39.3451168],[-90.8483374,39.3457796],[-90.8488517,39.3459917],[-90.8491555,39.3461649],[-90.8494998,39.3463211],[-90.85088640000001,39.347056],[-90.8516253,39.3474851],[-90.852126,39.3477305],[-90.8540338,39.3488487],[-90.8547173,39.349074],[-90.8557797,39.3496801],[-90.8565691,39.3500492],[-90.8571252,39.3503989],[-90.85767799999999,39.3506713],[-90.8588575,39.3512581],[-90.8595905,39.3516541],[-90.8601395,39.351910000000004],[-90.8613306,39.3524579],[-90.8618749,39.3526531],[-90.862939,39.3531556],[-90.864017,39.353553],[-90.8650615,39.3539619],[-90.8656881,39.3542748],[-90.868944,39.3557538],[-90.8695087,39.3560827],[-90.87010240000001,39.3563518],[-90.8701563,39.3563774],[-90.8707614,39.3566795],[-90.8719739,39.357314099999996],[-90.8729737,39.3578877],[-90.8739466,39.3583566],[-90.8743822,39.358629],[-90.8748827,39.3588522],[-90.8751169,39.3590068],[-90.8752571,39.359085300000004],[-90.876001,39.359394],[-90.8761772,39.359492700000004],[-90.8765381,39.3596707],[-90.8771257,39.3598915],[-90.8784574,39.3605205],[-90.8790169,39.3607638],[-90.8797873,39.361057],[-90.881444,39.3617525],[-90.8831583,39.3623934],[-90.8843966,39.3629682],[-90.8848635,39.3631118],[-90.8861094,39.3636202],[-90.8869598,39.3639069],[-90.8877598,39.3642605],[-90.8887366,39.3646464],[-90.88982060000001,39.3651498],[-90.8905915,39.3654637],[-90.8912991,39.3659053],[-90.8918511,39.3662149],[-90.8921982,39.3664081],[-90.8929129,39.3667613],[-90.8943015,39.3676434],[-90.8946625,39.3678254],[-90.8949556,39.3680746],[-90.89528490000001,39.3683591],[-90.8956312,39.368607600000004],[-90.8961126,39.3688504],[-90.8965379,39.3692194],[-90.8970755,39.3697872],[-90.8974061,39.3700469],[-90.8975417,39.3701571],[-90.8979525,39.3704269],[-90.8982719,39.3707461],[-90.89938240000001,39.3716784],[-90.89973499999999,39.372063499999996],[-90.9006124,39.3729005],[-90.9009521,39.3732595],[-90.902057,39.3745314],[-90.902408,39.3750076],[-90.9024666,39.3750953],[-90.9025379,39.3752821],[-90.9026263,39.3758816],[-90.902613,39.3768218],[-90.9026629,39.3770973],[-90.902829,39.3774873],[-90.9032941,39.378068400000004],[-90.9035641,39.3783205],[-90.9042058,39.3788346],[-90.9049666,39.3793445],[-90.9056059,39.3797427],[-90.906048,39.3799679],[-90.906622,39.3802122],[-90.9076669,39.3806055],[-90.9091791,39.3810677],[-90.910256,39.3812839],[-90.9112059,39.3813732],[-90.9121847,39.3814912],[-90.9132036,39.38165],[-90.9137942,39.3817437],[-90.9162256,39.3823534],[-90.9172714,39.3826168],[-90.9191091,39.3831591],[-90.9197985,39.3833827],[-90.9204444,39.3835722],[-90.9209269,39.383680999999996],[-90.9219274,39.3839849],[-90.9228642,39.3843946],[-90.9242157,39.3850821],[-90.9254539,39.3857932],[-90.9258191,39.385993],[-90.9276792,39.387016700000004],[-90.9281349,39.3872955],[-90.9292027,39.3881107],[-90.930919,39.389495],[-90.9322809,39.3905965],[-90.9330936,39.3912809],[-90.9335075,39.3916927],[-90.9338656,39.3922404],[-90.9340948,39.3926642],[-90.9342106,39.392933299999996],[-90.9346006,39.3941806],[-90.9348753,39.3949157],[-90.935241,39.3957464],[-90.9353436,39.3959812],[-90.9354312,39.3963501],[-90.9355567,39.3970967],[-90.9357822,39.3977731],[-90.9359187,39.3981027],[-90.936227,39.3986511],[-90.936585,39.3991947],[-90.9367583,39.399488]]]}},
{"type":"Feature","properties":{"COUNTY_NAM":"CLAY","CO_FIPS":25},"geometry":{"type":"Polygon","coordinates":[[[-88.6935355,38.9145156],[-88.6737817,38.9148297],[-88.6549276,38.9149538],[-88.6360796,38.915143799999996],[-88.6171716,38.9153193],[-88.5984162,38.9154322],[-88.5797158,38.9153851],[-88.5792407,38.9153745],[-88.5652011,38.9150789],[-88.5633976,38.915042299999996],[-88.56284289999999,38.9150309],[-88.5446771,38.9146553],[-88.5440148,38.914636099999996],[-88.5338856,38.9143439],[-88.5261295,38.9141081],[-88.5255739,38.9140986],[-88.5068918,38.913772800000004],[-88.4888497,38.9131798],[-88.4885565,38.913170300000004],[-88.4836251,38.9130473],[-88.47021050000001,38.9127153],[-88.4565978,38.9125229],[-88.455605,38.9125091],[-88.4552517,38.9125046],[-88.4377835,38.9122097],[-88.4368756,38.9121917],[-88.4185194,38.9118499],[-88.418054,38.9118422],[-88.399573,38.9115287],[-88.3808259,38.911349799999996],[-88.380568,38.911343099999996],[-88.3618032,38.9109498],[-88.3616595,38.8961113],[-88.3616699,38.895683500000004],[-88.3619802,38.8816197],[-88.361937,38.8812272],[-88.3619738,38.8795959],[-88.361928,38.8670278],[-88.3619347,38.8664977],[-88.3620975,38.8524794],[-88.3620226,38.8520866],[-88.3514356,38.851538],[-88.3325748,38.8506405],[-88.3142674,38.8498284],[-88.2959482,38.8489001],[-88.277548,38.8481945],[-88.2588184,38.8475625],[-88.2586621,38.832867],[-88.2585721,38.8182191],[-88.258637,38.8036964],[-88.25863820000001,38.8033217],[-88.258783,38.7894769],[-88.2587744,38.7892077],[-88.2583329,38.7747479],[-88.258384,38.760407900000004],[-88.2583799,38.7602408],[-88.257968,38.7454589],[-88.25780639999999,38.730888],[-88.276251,38.7315471],[-88.2765222,38.7315569],[-88.283513,38.7318071],[-88.2834519,38.7317747],[-88.2831292,38.7316809],[-88.2824006,38.731515200000004],[-88.2823446,38.7314932],[-88.2822612,38.7314212],[-88.2822394,38.731361],[-88.282239,38.7312788],[-88.2822883,38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment