Skip to content

Instantly share code, notes, and snippets.

@unamandita
Created November 18, 2015 15:57
Show Gist options
  • Save unamandita/15c6bedb94c0848d8376 to your computer and use it in GitHub Desktop.
Save unamandita/15c6bedb94c0848d8376 to your computer and use it in GitHub Desktop.
NY counties: Module #4 exercise (in progress)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>New York State</title>
<script type="text/javascript" src="http://d3js.org/d3.v3.js"></script>
<style type="text/css">
body {
background-color: white;
}
#container {
width: 550px;
margin-left: auto;
margin-right: auto;
margin-top: 20px;
padding: 30px;
background-color: white;
box-shadow: 2px 2px 4px 4px #ccc;
}
svg {
background-color: white;
}
h1 {
font-family: Helvetica, Arial, sans-serif;
font-size: 24px;
font-weight: lighter;
/*padding-left: 20px;*/
text-align: center;
}
.path:hover{
opacity: 0.6;
}
</style>
</head>
<body>
<div id="container">
<h1>New York Counties: Population</h1>
</div>
<script type="text/javascript">
//Width and height
var w = 550;
var h = 450;
//Define map projection
var projection = d3.geo.mercator()
.center([ -76, 42.8 ])
.translate([ w/2, h/2 ])
.scale([ w*6 ]);
//Define path generator
var path = d3.geo.path()
.projection(projection);
//Define quantize scale to sort data values into buckets of color
//Colors by Cynthia Brewer (colorbrewer2.org), YlOrRd
var color = d3.scale.quantize()
.range([ "#bfd3e6", "#9ebcda", "#8c96c6", "#8c6bb1", "#88419d", "#810f7c", "#4d004b" ]);
//Create SVG
var svg = d3.select("#container")
.append("svg")
.attr("width", w)
.attr("height", h);
//Load in CO2 data
d3.csv("NYcounties_population_2013.csv", function(data) {
//Set input domain for color scale
color.domain([
d3.min(data, function(d) { return d.population; }),
d3.max(data, function(d) { return d.population; })
]);
//Load in GeoJSON data
d3.json("ny_counties.json", function(json) {
//Merge the CO2 data and GeoJSON into a single array
//
//Loop through once for each CO2 data value
for (var i = 0; i < data.length; i++) {
//Grab country name
var dataCounty = data[i].countyName;
//Grab data value, and convert from string to float
var dataValue = (data[i].population);
//Find the corresponding country inside the GeoJSON
for (var j = 0; j < json.features.length; j++) {
//We'll check the official ISO country code
var jsonCounty = json.features[j].properties.NAME;
if (dataCounty == jsonCounty) {
//Copy the data value into the GeoJSON
json.features[j].properties.population = dataValue;
//Stop looking through the JSON
break;
}
}
}
//Bind data and create one path per GeoJSON feature
var paths = svg.selectAll("path")
.data(json.features)
.enter()
.append("path")
.attr("d", path)
.attr("class", "path")
.style("fill", function(d) {
//Get data value
var value = d.properties.population;
if (value) {
//If value exists…
return color(value);
} else {
//If value is undefined…
return "#ccc";
}
});
paths.append("title")
.text(function(d) {
return d.properties.NAME + " County, Population: " + d.properties.population;
});
}); //End d3.json()
}); //End d3.csv()
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"GEO_ID":"0500000US36001","STATE":"36","COUNTY":"001","NAME":"Albany","LSAD":"County","CENSUSAREA":522.804},"geometry":{"type":"Polygon","coordinates":[[[-73.80936899999999,42.778869],[-73.799464,42.778878],[-73.79796499999999,42.779477],[-73.793565,42.782576999999996],[-73.787065,42.789677],[-73.78246399999999,42.791776999999996],[-73.77996399999999,42.792176999999995],[-73.77736399999999,42.791776999999996],[-73.76876399999999,42.785877],[-73.76666399999999,42.786077],[-73.763465,42.788576],[-73.76137,42.791771],[-73.758466,42.795276],[-73.750165,42.801376],[-73.74836499999999,42.805276],[-73.737663,42.818877],[-73.736963,42.819477],[-73.731669,42.821304999999995],[-73.726663,42.822576999999995],[-73.722663,42.820676999999996],[-73.721363,42.813077],[-73.717421,42.809429],[-73.717091,42.807283999999996],[-73.71776299999999,42.806277],[-73.71866299999999,42.805676999999996],[-73.720563,42.803076999999995],[-73.719863,42.801277],[-73.713663,42.796977],[-73.71093499999999,42.794503999999996],[-73.710663,42.794077],[-73.709963,42.793377],[-73.708963,42.787676999999995],[-73.703163,42.782477],[-73.697668,42.778735],[-73.69676299999999,42.778332],[-73.69376199999999,42.776976999999995],[-73.688362,42.775476999999995],[-73.68726199999999,42.777077],[-73.68395199999999,42.778735999999995],[-73.680262,42.783377],[-73.676762,42.783277],[-73.678462,42.778877],[-73.68180699999999,42.771695],[-73.683269,42.767949],[-73.684362,42.763877],[-73.684362,42.760777999999995],[-73.684362,42.757878],[-73.68482999999999,42.75701],[-73.686433,42.754022],[-73.68726199999999,42.752477999999996],[-73.687063,42.751678999999996],[-73.687416,42.749103],[-73.688007,42.744901999999996],[-73.68866799999999,42.740162],[-73.688962,42.738278],[-73.690026,42.735625999999996],[-73.69049,42.735045],[-73.693698,42.732763999999996],[-73.694662,42.732078],[-73.697257,42.728786],[-73.697484,42.727675],[-73.697563,42.727278],[-73.698612,42.723794],[-73.69936299999999,42.721478],[-73.70069099999999,42.717982],[-73.703563,42.709478],[-73.703463,42.705577999999996],[-73.702963,42.704378],[-73.702375,42.70101],[-73.70236299999999,42.70088],[-73.702463,42.699978],[-73.702921,42.6993],[-73.706463,42.694078],[-73.716363,42.682378],[-73.723263,42.672878999999995],[-73.724964,42.670179],[-73.7291,42.665081],[-73.730864,42.663278999999996],[-73.739429,42.656803],[-73.740364,42.656079],[-73.741798,42.654317999999996],[-73.74656399999999,42.646179],[-73.747644,42.643232999999995],[-73.748396,42.641548],[-73.748964,42.640279],[-73.75067,42.637024],[-73.751165,42.63608],[-73.752965,42.628679],[-73.759565,42.614179],[-73.759739,42.61379],[-73.761265,42.610378999999995],[-73.76156499999999,42.603578999999996],[-73.761265,42.600778999999996],[-73.758265,42.58988],[-73.75726499999999,42.58718],[-73.75436499999999,42.58258],[-73.752365,42.576679999999996],[-73.75218,42.567391],[-73.752168,42.56672],[-73.754065,42.556779999999996],[-73.75646499999999,42.54868],[-73.756789,42.542972],[-73.75695999999999,42.54199],[-73.758313,42.534214999999996],[-73.76113,42.526322],[-73.763091,42.522026],[-73.76377,42.521135],[-73.76607899999999,42.518781999999995],[-73.773161,42.509377],[-73.77588,42.505817],[-73.779397,42.500081],[-73.784594,42.489947],[-73.78554799999999,42.487209],[-73.786047,42.483835],[-73.786078,42.475249],[-73.783721,42.464231],[-73.80008099999999,42.462492999999995],[-73.807895,42.461663],[-73.808021,42.46165],[-73.809251,42.461518999999996],[-73.80941399999999,42.461501],[-73.81244199999999,42.461179],[-73.839491,42.458186999999995],[-73.854061,42.456097],[-73.86559,42.454372],[-73.876035,42.452881],[-73.892771,42.45055],[-73.903599,42.448999],[-73.93069899999999,42.445192],[-73.93325999999999,42.444814],[-73.948003,42.443204],[-73.963792,42.441621999999995],[-73.995803,42.438289999999995],[-74.01755299999999,42.435795],[-74.028744,42.434501999999995],[-74.084058,42.427642999999996],[-74.090671,42.426834],[-74.117311,42.423608],[-74.126442,42.422984],[-74.130067,42.422515],[-74.149656,42.419995],[-74.157859,42.418932999999996],[-74.17542399999999,42.416955],[-74.194807,42.414823999999996],[-74.19818599999999,42.414452999999995],[-74.20147,42.414093],[-74.225652,42.411408],[-74.232356,42.410663],[-74.240915,42.409712],[-74.254303,42.408207],[-74.263469,42.407126999999996],[-74.264755,42.418876],[-74.26486299999999,42.419863],[-74.264731,42.420127],[-74.256018,42.437915],[-74.25243499999999,42.445336999999995],[-74.244484,42.470182],[-74.241629,42.472035999999996],[-74.236447,42.485459],[-74.234037,42.487739999999995],[-74.228501,42.494381],[-74.227294,42.497231],[-74.226447,42.499233],[-74.226568,42.502632999999996],[-74.22498499999999,42.50855],[-74.225186,42.511179999999996],[-74.22560299999999,42.518166],[-74.225639,42.526402999999995],[-74.229186,42.529284],[-74.234419,42.537839999999996],[-74.24157199999999,42.550802],[-74.236959,42.56012],[-74.23762099999999,42.563123999999995],[-74.237081,42.564629],[-74.23701799999999,42.564811],[-74.236954,42.564971],[-74.233995,42.575688],[-74.220274,42.585412],[-74.220012,42.588021],[-74.21961399999999,42.591406],[-74.215166,42.597435],[-74.210509,42.600989999999996],[-74.205223,42.607431],[-74.20131599999999,42.611239999999995],[-74.193495,42.618998999999995],[-74.192731,42.625658],[-74.19256899999999,42.627069],[-74.192024,42.627849],[-74.18596,42.636717],[-74.184235,42.639621999999996],[-74.182059,42.641788],[-74.179324,42.646384],[-74.174775,42.65587],[-74.173428,42.657318],[-74.173546,42.659247],[-74.171166,42.664544],[-74.169725,42.667426],[-74.168525,42.67431],[-74.168756,42.679452],[-74.16886699999999,42.681187],[-74.169525,42.691365],[-74.166241,42.709536],[-74.165066,42.715303999999996],[-74.16476899999999,42.71676],[-74.166155,42.718416],[-74.17155799999999,42.722842],[-74.172928,42.723963999999995],[-74.180274,42.729979],[-74.168808,42.731449999999995],[-74.135511,42.735676],[-74.113732,42.738333],[-74.112599,42.738502],[-74.106499,42.739235],[-74.0544,42.745470999999995],[-74.051304,42.745742],[-74.04428899999999,42.74668],[-74.038517,42.747358],[-73.99402599999999,42.752992],[-73.985361,42.754166],[-73.976255,42.7554],[-73.967018,42.756654],[-73.960228,42.757571999999996],[-73.94447,42.759451],[-73.943545,42.759541],[-73.942965,42.759575999999996],[-73.942683,42.759648],[-73.938082,42.759988],[-73.933672,42.760709999999996],[-73.929994,42.761134999999996],[-73.911688,42.763104],[-73.906785,42.763431999999995],[-73.899621,42.764249],[-73.89820499999999,42.764466999999996],[-73.891498,42.765260999999995],[-73.889825,42.765460999999995],[-73.887723,42.765858],[-73.879877,42.766616],[-73.87929,42.766687],[-73.872614,42.767544],[-73.87129399999999,42.767494],[-73.868295,42.767973],[-73.859157,42.769089],[-73.852189,42.76992],[-73.840189,42.771355],[-73.832618,42.772262999999995],[-73.825127,42.773163],[-73.824516,42.773236999999995],[-73.813281,42.774575999999996],[-73.809603,42.775016],[-73.80936899999999,42.778869]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36003","STATE":"36","COUNTY":"003","NAME":"Allegany","LSAD":"County","CENSUSAREA":1029.308},"geometry":{"type":"Polygon","coordinates":[[[-78.271204,41.998968],[-78.28402317930949,41.999123188309795],[-78.308128,41.999415],[-78.30824299999999,42.000412999999995],[-78.308292,42.057],[-78.308611,42.086675],[-78.308677,42.120413],[-78.308785,42.130229],[-78.308836,42.140474999999995],[-78.308865,42.159133999999995],[-78.30900199999999,42.173387999999996],[-78.309011,42.174275],[-78.308977,42.198001],[-78.309103,42.217676],[-78.30910399999999,42.218014],[-78.309159,42.224579999999996],[-78.309145,42.238851],[-78.309061,42.242416999999996],[-78.309084,42.243111999999996],[-78.309193,42.261126],[-78.309067,42.342497],[-78.309241,42.344014],[-78.309028,42.348817],[-78.30902499999999,42.348935],[-78.308869,42.359016],[-78.309043,42.361506],[-78.308561,42.388157],[-78.308351,42.436479],[-78.308253,42.4366],[-78.30847399999999,42.458777],[-78.30851799999999,42.469451],[-78.308618,42.491157],[-78.309175,42.495976999999996],[-78.308683,42.500018999999995],[-78.308736,42.507182],[-78.30883899999999,42.521217],[-78.27873699999999,42.521471999999996],[-78.276152,42.521495],[-78.24875899999999,42.521710999999996],[-78.24043499999999,42.52171],[-78.235131,42.521535],[-78.224693,42.521609999999995],[-78.204679,42.521764],[-78.190337,42.52144],[-78.163035,42.521409],[-78.145346,42.521387999999995],[-78.13345,42.521374],[-78.117993,42.521321],[-78.10699199999999,42.521249999999995],[-78.088914,42.521135],[-78.040241,42.520967999999996],[-78.03826099999999,42.521522],[-78.04219499999999,42.518933],[-78.043418,42.518464],[-78.02190999999999,42.518485999999996],[-77.954956,42.518369],[-77.936486,42.518311],[-77.905205,42.518097999999995],[-77.901607,42.518313],[-77.896193,42.51808],[-77.87472199999999,42.518114999999995],[-77.840694,42.517770999999996],[-77.84067,42.499893],[-77.840231,42.474576],[-77.777281,42.472522],[-77.730276,42.471354999999996],[-77.72296399999999,42.471216],[-77.723134,42.464400000000005],[-77.723677,42.458262999999995],[-77.72478,42.428469],[-77.726111,42.404043],[-77.729473,42.404039],[-77.73105799999999,42.404122],[-77.732125,42.379951999999996],[-77.733682,42.344034],[-77.734206,42.333262],[-77.734507,42.327214999999995],[-77.735092,42.315422],[-77.73549899999999,42.307488],[-77.736813,42.28153],[-77.737493,42.266875999999996],[-77.73929799999999,42.236353],[-77.740922,42.204702],[-77.741531,42.192209999999996],[-77.74301899999999,42.162453],[-77.743135,42.160092999999996],[-77.743888,42.144515],[-77.744888,42.124975],[-77.745085,42.11446],[-77.745466,42.102266],[-77.746871,42.069534999999995],[-77.747287,42.059863],[-77.74851,42.031893],[-77.74993099999999,41.998782],[-77.822799,41.998546999999995],[-77.83203,41.998523999999996],[-77.8402108247012,41.998535568383595],[-77.8632385981808,41.9985681316186],[-77.88091542468621,41.9985931281583],[-77.9571540665524,41.9987009360977],[-77.997508,41.998757999999995],[-78.030963,41.999392],[-78.031177,41.999415],[-78.05523172451589,41.9996816376206],[-78.0725742930209,41.999873873503404],[-78.07435121806809,41.9998935700527],[-78.12146456053131,42.0004158038253],[-78.12473,42.000451999999996],[-78.191259,41.999777962041],[-78.2688108707826,41.9989922459669],[-78.271204,41.998968]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36005","STATE":"36","COUNTY":"005","NAME":"Bronx","LSAD":"County","CENSUSAREA":42.096},"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.7655428263918,40.8552910766588],[-73.76512788928989,40.8542278003982],[-73.7660319565459,40.8449611139451],[-73.76964822264951,40.8446597584364],[-73.7730384741292,40.8481253471508],[-73.77371652384109,40.8548305114155],[-73.77336125592029,40.8594490081549],[-73.7724053475868,40.859748900894196],[-73.7705522899054,40.8603302521856],[-73.7663825260357,40.8573518475663],[-73.7663333113245,40.8573166941792],[-73.7663214911555,40.857286404998],[-73.7655428263918,40.8552910766588]]],[[[-73.91840499999999,40.917477],[-73.91790499999999,40.917577],[-73.910516,40.915282],[-73.910006,40.915076],[-73.905947,40.913948],[-73.90245399999999,40.912979],[-73.902106,40.912879],[-73.900697,40.912380999999996],[-73.89950499999999,40.911978],[-73.89725299999999,40.911654999999996],[-73.89663399999999,40.911324],[-73.892799,40.910058],[-73.891928,40.909808999999996],[-73.89180499999999,40.909777999999996],[-73.887984,40.908592999999996],[-73.886237,40.908052],[-73.88601,40.907979],[-73.885401,40.907976999999995],[-73.884832,40.907723],[-73.884106,40.907500999999996],[-73.882993,40.907423],[-73.88182499999999,40.907134],[-73.880929,40.90683],[-73.880111,40.906591],[-73.879239,40.906365],[-73.87835,40.905983],[-73.87818899999999,40.905983],[-73.878012,40.905964999999995],[-73.877855,40.905922],[-73.874087,40.904807],[-73.872913,40.904467],[-73.867876,40.902983],[-73.866952,40.902474999999995],[-73.865635,40.902086],[-73.86466899999999,40.901793],[-73.86286,40.901525],[-73.86264299999999,40.901474],[-73.86204099999999,40.901202999999995],[-73.860006,40.900565],[-73.858221,40.902335],[-73.856324,40.906166],[-73.85610799999999,40.90606],[-73.85410399999999,40.906679],[-73.85488099999999,40.908217],[-73.852678,40.909898999999996],[-73.851123,40.910008999999995],[-73.85279,40.907073],[-73.85260099999999,40.906977],[-73.852204,40.906878],[-73.851506,40.906645],[-73.848683,40.906743],[-73.847071,40.906172999999995],[-73.846104,40.905777],[-73.84532,40.905581999999995],[-73.844847,40.90531],[-73.844702,40.904177],[-73.84438899999999,40.904095999999996],[-73.843305,40.90408],[-73.842308,40.903988],[-73.841318,40.903987],[-73.840999,40.902812],[-73.840036,40.900566999999995],[-73.839649,40.897891],[-73.838985,40.895602],[-73.838407,40.894061],[-73.83733699999999,40.893814],[-73.836282,40.893530999999996],[-73.835174,40.89317],[-73.833595,40.892706],[-73.83271599999999,40.892443],[-73.83170299999999,40.892178],[-73.830972,40.891935],[-73.827224,40.890785],[-73.825002,40.890178],[-73.82400899999999,40.889978],[-73.824047,40.889866],[-73.823557,40.889865],[-73.823617,40.890412999999995],[-73.82312,40.890648],[-73.823244,40.891199],[-73.822959,40.891056],[-73.81971899999999,40.890206],[-73.804191,40.886348],[-73.792942,40.883410999999995],[-73.78370199999999,40.881077999999995],[-73.7835452253621,40.881039556340504],[-73.784803,40.878527999999996],[-73.7852691886789,40.872226116127095],[-73.7854885283003,40.8692611088561],[-73.785502,40.869079],[-73.7880700315579,40.8607946062087],[-73.7887858359499,40.85848544242789],[-73.7880601281871,40.8541311989762],[-73.78475413101789,40.8517928126782],[-73.78455053547229,40.8514428825723],[-73.7844005612909,40.8511851142549],[-73.7837998193434,40.850152588259505],[-73.7833954675713,40.8494576081309],[-73.7821738416115,40.8473579369404],[-73.782159957891,40.8468858985136],[-73.78213211568539,40.8459392797125],[-73.7821239246403,40.845660788940194],[-73.7820932062002,40.844616379836694],[-73.78222759455879,40.8427349363055],[-73.7822544738975,40.8423586242622],[-73.7818127247268,40.8408974514969],[-73.7812062323028,40.8388913578331],[-73.7825770124172,40.8376012131299],[-73.78355644946429,40.836989065272],[-73.7838671571204,40.8367948730811],[-73.7853992049321,40.8380043839356],[-73.7855489990818,40.8382183756491],[-73.7867264904413,40.8399005067215],[-73.78701800098351,40.8403169504916],[-73.788221397447,40.8420360888677],[-73.7910435915244,40.8465515968915],[-73.79102021285111,40.8466254242696],[-73.79065337829459,40.8477838490078],[-73.79025283512209,40.8490487219907],[-73.7899592182326,40.84997593307901],[-73.78972305118559,40.8507217236396],[-73.78952964883361,40.851332467815496],[-73.78951154371279,40.851389641872494],[-73.7922531008165,40.8558245176103],[-73.7924708583828,40.8557901347198],[-73.7937851486281,40.8555826145018],[-73.7941164222735,40.855259045019594],[-73.7972524150572,40.852195983483895],[-73.7995434641273,40.848026676127894],[-73.800111001194,40.8481401837612],[-73.80040679745089,40.8481993431272],[-73.8069137431192,40.8495007347828],[-73.80932353008559,40.8483711461846],[-73.81280996702681,40.8467368774828],[-73.813733550732,40.842857825205],[-73.81530485060101,40.8362583645372],[-73.8155738207561,40.8351286896774],[-73.81524461582279,40.831507422652],[-73.81520530787769,40.831075033732496],[-73.8144319246009,40.8297430968383],[-73.8131231816368,40.8274891522662],[-73.8120886301671,40.8257074260344],[-73.8118886812602,40.825363069834694],[-73.81118580672789,40.8247129104241],[-73.8101315720765,40.8237377426693],[-73.8079908691095,40.8217575909988],[-73.8045184058389,40.8185455601604],[-73.80367727922919,40.8182004829413],[-73.80351056451221,40.8181320872322],[-73.802487427676,40.8177123392298],[-73.7990675271052,40.8163093045796],[-73.7976999035959,40.8157482288605],[-73.7973323797156,40.8155974499919],[-73.79095045414759,40.807325549761195],[-73.79090028252779,40.8072605200725],[-73.78596360542639,40.800861871260395],[-73.787302,40.799979],[-73.793668,40.79996],[-73.799967,40.801871999999996],[-73.8047,40.803242],[-73.811234,40.805098],[-73.817083,40.805479999999996],[-73.82321,40.804292],[-73.82709299999999,40.803084],[-73.830548,40.803162],[-73.831706,40.802893999999995],[-73.834903,40.80188],[-73.844044,40.800959999999996],[-73.851809,40.799991999999996],[-73.853466,40.799580999999996],[-73.862704,40.797276],[-73.86670699999999,40.793653],[-73.87000499999999,40.790681],[-73.871021,40.788833],[-73.871254,40.787593],[-73.870992,40.786978999999995],[-73.873688,40.786159999999995],[-73.878964,40.785743],[-73.884867,40.786621],[-73.889918,40.787397999999996],[-73.890586,40.790144999999995],[-73.892866,40.790566999999996],[-73.89980899999999,40.792524],[-73.912506,40.79618],[-73.913624,40.796786],[-73.918633,40.799105],[-73.92230599999999,40.802178999999995],[-73.925139,40.802174],[-73.927204,40.80217],[-73.928322,40.804015],[-73.930993,40.807266999999996],[-73.931681,40.807955],[-73.932503,40.811555999999996],[-73.93210599999999,40.813579],[-73.932267,40.813901],[-73.932406,40.814178999999996],[-73.932101,40.81498],[-73.93210599999999,40.819347],[-73.932941,40.828213],[-73.93340599999999,40.833179],[-73.933144,40.834815],[-73.93300599999999,40.835679],[-73.93065399999999,40.839599],[-73.93040599999999,40.840278999999995],[-73.930157,40.841664],[-73.929695,40.842195],[-73.92963499999999,40.842256],[-73.929006,40.844079],[-73.928242,40.845352999999996],[-73.927196,40.846683],[-73.923904,40.850488],[-73.922978,40.852022],[-73.921536,40.854127],[-73.921215,40.854693],[-73.920958,40.855112],[-73.920273,40.856234],[-73.920005,40.856679],[-73.91929,40.857475],[-73.918206,40.858678999999995],[-73.916975,40.859908999999995],[-73.91434,40.862521],[-73.910851,40.866527999999995],[-73.908605,40.871677999999996],[-73.907,40.873455],[-73.907105,40.876276999999995],[-73.907245,40.876446],[-73.908005,40.877477999999996],[-73.908682,40.877763],[-73.909189,40.878167999999995],[-73.909505,40.878878],[-73.910184,40.879021],[-73.91490499999999,40.876577999999995],[-73.9152,40.875581],[-73.918932,40.876388],[-73.919808,40.876577],[-73.921478,40.878214],[-73.92497399999999,40.879144],[-73.9334079229381,40.882074964842694],[-73.93340599999999,40.882078],[-73.9290088898939,40.8895730740445],[-73.929006,40.889578],[-73.919705,40.913478],[-73.91925644253189,40.9148578317808],[-73.91840499999999,40.917477]]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36009","STATE":"36","COUNTY":"009","NAME":"Cattaraugus","LSAD":"County","CENSUSAREA":1308.35},"geometry":{"type":"Polygon","coordinates":[[[-78.59665,41.999877],[-78.6972505992235,41.9987152938432],[-78.749754,41.998109],[-78.8274137813755,41.9977673106295],[-78.874759,41.997558999999995],[-78.9056799837033,41.9979558401321],[-78.9445211211111,41.9984543275751],[-78.9775660458638,41.9988784263822],[-78.983065,41.998948999999996],[-79.04206011548449,41.999182868104896],[-79.06126499999999,41.999258999999995],[-79.060422,42.038264999999996],[-79.059974,42.057119],[-79.059209,42.075381],[-79.05930599999999,42.086371],[-79.05930599999999,42.086731],[-79.059299,42.092278],[-79.059264,42.124879],[-79.05953,42.129433999999996],[-79.059609,42.140631],[-79.059686,42.152083],[-79.059562,42.154666],[-79.059737,42.166523999999995],[-79.059711,42.173403],[-79.059877,42.211818],[-79.05986,42.213755],[-79.060001,42.229476],[-79.059997,42.231170999999996],[-79.060126,42.240801999999995],[-79.06030899999999,42.250909],[-79.06039899999999,42.260256],[-79.06070799999999,42.347916999999995],[-79.06074799999999,42.355391999999995],[-79.060701,42.355629],[-79.06082099999999,42.36633],[-79.060791,42.370203],[-79.060988,42.394622999999996],[-79.061043,42.40607],[-79.061182,42.434702],[-79.061195,42.435814],[-79.061208,42.439521],[-79.061233,42.446692999999996],[-79.061081,42.457820999999996],[-79.061032,42.475282],[-79.06101799999999,42.490618999999995],[-79.061025,42.501374999999996],[-79.06101699999999,42.51303],[-79.06093899999999,42.522884999999995],[-79.060777,42.537853],[-79.053421,42.536234],[-79.051221,42.539125],[-79.047237,42.538993],[-79.043751,42.537690999999995],[-79.03982599999999,42.537679],[-79.033098,42.543279999999996],[-79.03105599999999,42.540689],[-79.029737,42.540234999999996],[-79.027188,42.540636],[-79.024727,42.539895],[-79.02367699999999,42.538816999999995],[-79.01343299999999,42.534679],[-79.009914,42.534406999999995],[-79.008119,42.535793],[-79.004852,42.534751],[-79.003393,42.532796],[-79.00025099999999,42.531825],[-78.99532599999999,42.531796],[-78.99170199999999,42.529249],[-78.991434,42.526624],[-78.98987199999999,42.523426],[-78.988305,42.521684],[-78.986404,42.519115],[-78.986611,42.517624999999995],[-78.98812699999999,42.515491],[-78.98748599999999,42.513131],[-78.984567,42.512561999999996],[-78.98277499999999,42.511559],[-78.982646,42.510523],[-78.983556,42.508278],[-78.986235,42.505283999999996],[-78.985348,42.504757],[-78.98277399999999,42.506060999999995],[-78.980228,42.506155],[-78.97931799999999,42.503685],[-78.978144,42.502796],[-78.97508499999999,42.502547],[-78.969816,42.498061],[-78.966565,42.493699],[-78.965794,42.493336],[-78.96117699999999,42.494018],[-78.963436,42.486587],[-78.961906,42.482336],[-78.95703,42.472362],[-78.952148,42.47112],[-78.951193,42.468568],[-78.950685,42.468323999999996],[-78.94882,42.468115],[-78.943902,42.468326],[-78.940837,42.468365999999996],[-78.93773999999999,42.467181],[-78.934801,42.463384],[-78.931919,42.461175999999995],[-78.929959,42.460041],[-78.92927399999999,42.459753],[-78.929034,42.459697],[-78.925691,42.458642],[-78.91925499999999,42.454048],[-78.91817999999999,42.452183],[-78.918463,42.44939],[-78.92120299999999,42.448406999999996],[-78.92200299999999,42.444399],[-78.920446,42.442555999999996],[-78.91834999999999,42.442541999999996],[-78.914973,42.444174],[-78.913365,42.445892],[-78.91237699999999,42.447970999999995],[-78.90550999999999,42.446221],[-78.900455,42.449115],[-78.899349,42.448845],[-78.898668,42.44804],[-78.897582,42.443771],[-78.895999,42.440807],[-78.893757,42.439119],[-78.887937,42.442311],[-78.884208,42.438046],[-78.88298999999999,42.438286],[-78.881075,42.440245],[-78.87771099999999,42.441728999999995],[-78.875429,42.441271],[-78.871608,42.43954],[-78.869484,42.439957],[-78.868053,42.441994],[-78.86657799999999,42.442288999999995],[-78.86412899999999,42.441660999999996],[-78.85848899999999,42.44208],[-78.85612499999999,42.443279],[-78.85415499999999,42.443507],[-78.850745,42.442723],[-78.849014,42.443064],[-78.84665,42.444809],[-78.84365199999999,42.444821999999995],[-78.840276,42.442696999999995],[-78.8381,42.442811],[-78.836455,42.443695999999996],[-78.83551299999999,42.446301],[-78.83205699999999,42.448934],[-78.82951899999999,42.448688],[-78.82759,42.448249],[-78.827163,42.451245],[-78.824614,42.451909],[-78.821805,42.450727],[-78.812924,42.456159],[-78.809681,42.458867999999995],[-78.80592999999999,42.458497],[-78.80410599999999,42.458991999999995],[-78.802534,42.460491],[-78.79981,42.461974999999995],[-78.796122,42.462764],[-78.792203,42.461197999999996],[-78.787174,42.458898999999995],[-78.786818,42.457538],[-78.783209,42.455706],[-78.780825,42.455155],[-78.777418,42.456157999999995],[-78.771588,42.457085],[-78.77015,42.458135],[-78.770663,42.459801],[-78.777603,42.461881999999996],[-78.776685,42.463797],[-78.774132,42.464853],[-78.77241599999999,42.465134],[-78.768641,42.464315],[-78.765573,42.461662],[-78.762288,42.461675],[-78.759249,42.463015],[-78.758091,42.464551],[-78.759573,42.467051],[-78.76442999999999,42.468804999999996],[-78.76450299999999,42.470385],[-78.763624,42.470546999999996],[-78.758099,42.469117],[-78.753101,42.468892],[-78.75165,42.468264],[-78.75069599999999,42.469238],[-78.750608,42.472701],[-78.74980099999999,42.473729],[-78.74772,42.474106],[-78.74477499999999,42.473816],[-78.739443,42.472798],[-78.738858,42.472895],[-78.737961,42.473555999999995],[-78.737374,42.476413],[-78.73924699999999,42.478386],[-78.738306,42.480456],[-78.734483,42.478837],[-78.731472,42.478666],[-78.73055599999999,42.479227],[-78.730383,42.481406],[-78.728828,42.48254],[-78.723906,42.48273],[-78.71777,42.483979999999995],[-78.717094,42.486278999999996],[-78.714698,42.486883],[-78.71412099999999,42.484625],[-78.712368,42.483571],[-78.710461,42.484955],[-78.706143,42.484564999999996],[-78.702905,42.486737],[-78.70070199999999,42.48535],[-78.700544,42.482703],[-78.699548,42.47956],[-78.700504,42.475784999999995],[-78.699378,42.473794999999996],[-78.69758499999999,42.472781],[-78.693738,42.471723],[-78.692253,42.472445],[-78.692644,42.474514],[-78.691439,42.476597],[-78.686064,42.475572],[-78.682593,42.478134999999995],[-78.68341099999999,42.480418],[-78.682059,42.48066],[-78.68227,42.483125],[-78.680307,42.484555],[-78.677274,42.484209],[-78.674526,42.484514999999995],[-78.674066,42.486941],[-78.672386,42.486753],[-78.671257,42.488468],[-78.669495,42.488664],[-78.668264,42.487293],[-78.666816,42.487418],[-78.666068,42.488699],[-78.663679,42.489376],[-78.662086,42.492473],[-78.659769,42.491636],[-78.655329,42.492062999999995],[-78.653953,42.490302],[-78.651347,42.4908],[-78.65142,42.492027],[-78.64961,42.492615],[-78.645652,42.490853],[-78.644132,42.491262],[-78.643529,42.493522],[-78.64067299999999,42.495868],[-78.638678,42.498058],[-78.634117,42.496598999999996],[-78.63127,42.498129],[-78.62753099999999,42.497319999999995],[-78.626271,42.500057],[-78.622874,42.504028999999996],[-78.617756,42.503997],[-78.61479299999999,42.504377],[-78.612708,42.502797],[-78.610039,42.503696],[-78.608052,42.506426999999995],[-78.605226,42.507186],[-78.606426,42.508261],[-78.60551,42.509412],[-78.603388,42.509468],[-78.600838,42.511145],[-78.59661,42.512712],[-78.592919,42.511551999999995],[-78.59147999999999,42.510177999999996],[-78.587828,42.508975],[-78.586316,42.509282999999996],[-78.585616,42.512955],[-78.582431,42.514268],[-78.57893,42.513255],[-78.57869,42.512048],[-78.57303499999999,42.510636],[-78.571524,42.51215],[-78.568564,42.512707],[-78.56761999999999,42.510048],[-78.563664,42.508784],[-78.55982999999999,42.513278],[-78.557543,42.513317],[-78.55743,42.511404999999996],[-78.55601999999999,42.511025],[-78.55425699999999,42.511767],[-78.552581,42.514421999999996],[-78.549634,42.514700999999995],[-78.547153,42.515564],[-78.548929,42.516659],[-78.54848799999999,42.517689],[-78.546977,42.517790999999995],[-78.541574,42.514691],[-78.538842,42.51419],[-78.53790000000001,42.517705],[-78.536346,42.516912],[-78.532911,42.517308],[-78.532427,42.520492999999995],[-78.52762299999999,42.521985],[-78.524576,42.520342],[-78.519078,42.51916],[-78.518053,42.521066999999995],[-78.515068,42.522172999999995],[-78.512768,42.523837],[-78.511455,42.526188999999995],[-78.51132,42.527834999999996],[-78.50827199999999,42.527636],[-78.507779,42.526598],[-78.50436499999999,42.527612999999995],[-78.499038,42.527781],[-78.497221,42.529922],[-78.491165,42.530089],[-78.490764,42.531645],[-78.48847599999999,42.534845],[-78.487321,42.534067],[-78.484802,42.535146],[-78.483307,42.532956],[-78.478527,42.533755],[-78.477724,42.532869999999996],[-78.475577,42.534351],[-78.468634,42.533356],[-78.46394,42.536332],[-78.46405399999999,42.530664],[-78.464556,42.519166],[-78.461565,42.519193],[-78.446849,42.519214999999996],[-78.446626,42.519214999999996],[-78.432746,42.51922],[-78.424533,42.519225999999996],[-78.41279,42.519270999999996],[-78.40802,42.519290999999996],[-78.404198,42.51943],[-78.403752,42.519625],[-78.34128,42.520745999999995],[-78.30883899999999,42.521217],[-78.308736,42.507182],[-78.308683,42.500018999999995],[-78.309175,42.495976999999996],[-78.308618,42.491157],[-78.30851799999999,42.469451],[-78.30847399999999,42.458777],[-78.308253,42.4366],[-78.308351,42.436479],[-78.308561,42.388157],[-78.309043,42.361506],[-78.308869,42.359016],[-78.30902499999999,42.348935],[-78.309028,42.348817],[-78.309241,42.344014],[-78.309067,42.342497],[-78.309193,42.261126],[-78.309084,42.243111999999996],[-78.309061,42.242416999999996],[-78.309145,42.238851],[-78.309159,42.224579999999996],[-78.30910399999999,42.218014],[-78.309103,42.217676],[-78.308977,42.198001],[-78.309011,42.174275],[-78.30900199999999,42.173387999999996],[-78.308865,42.159133999999995],[-78.308836,42.140474999999995],[-78.308785,42.130229],[-78.308677,42.120413],[-78.308611,42.086675],[-78.308292,42.057],[-78.30824299999999,42.000412999999995],[-78.308128,41.999415],[-78.34876917761659,41.9994800772699],[-78.38590210642501,41.9995395369059],[-78.44416516840259,41.999632831471395],[-78.4633181849452,41.9996635005145],[-78.51980522905889,41.999753951205896],[-78.5796821059558,41.999849829915696],[-78.59665,41.999877]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36011","STATE":"36","COUNTY":"011","NAME":"Cayuga","LSAD":"County","CENSUSAREA":691.582},"geometry":{"type":"Polygon","coordinates":[[[-76.6171093082771,43.419136705277595],[-76.61704399999999,43.418479999999995],[-76.61694299999999,43.418189],[-76.616173,43.411077],[-76.615971,43.407506],[-76.61596899999999,43.407472],[-76.61546,43.40266],[-76.613933,43.379563],[-76.61266499999999,43.367520999999996],[-76.60965,43.324887],[-76.609083,43.317115],[-76.60794,43.300292999999996],[-76.60771199999999,43.296745],[-76.606764,43.280629],[-76.60571999999999,43.264841],[-76.605012,43.253569999999996],[-76.60076099999999,43.253741999999995],[-76.552408,43.255306999999995],[-76.48114799999999,43.256640999999995],[-76.481121,43.256622],[-76.481019,43.255365],[-76.480536,43.247237],[-76.479224,43.227519],[-76.477204,43.199207],[-76.47724699999999,43.198867],[-76.476714,43.192678],[-76.47606999999999,43.184556],[-76.47594,43.182953],[-76.47563,43.178868],[-76.47431399999999,43.161546],[-76.473512,43.150422999999996],[-76.473066,43.146017],[-76.476997,43.145953999999996],[-76.48122699999999,43.145886],[-76.484574,43.144614],[-76.48630299999999,43.143223],[-76.483019,43.137121],[-76.47864,43.131231],[-76.475689,43.123861999999995],[-76.47206,43.110929],[-76.471873,43.107059],[-76.47247,43.104319],[-76.47359399999999,43.104029],[-76.479216,43.104835],[-76.48319,43.106100999999995],[-76.488261,43.106711],[-76.491232,43.106294999999996],[-76.497829,43.102657],[-76.499312,43.097949],[-76.499324,43.097722999999995],[-76.499274,43.097201],[-76.49725,43.074978],[-76.495149,43.049869],[-76.494688,43.043949999999995],[-76.49413,43.036151],[-76.493304,43.024898],[-76.492667,43.015312],[-76.491941,43.004964],[-76.462999,43.006316],[-76.462306,42.995118],[-76.4623,42.995017],[-76.46157699999999,42.986309999999996],[-76.460234,42.969241],[-76.45948,42.95842],[-76.458429,42.94337],[-76.457428,42.929524],[-76.457357,42.928430999999996],[-76.45172099999999,42.858199],[-76.450738,42.84576],[-76.45039799999999,42.845727],[-76.44776999999999,42.84579],[-76.444929,42.846064],[-76.439461,42.846284999999995],[-76.405434,42.847576],[-76.404958,42.847594],[-76.37300499999999,42.848859],[-76.357018,42.849447999999995],[-76.354665,42.847964],[-76.329796,42.829468999999996],[-76.315559,42.819992],[-76.305762,42.813337999999995],[-76.29876999999999,42.80746],[-76.292076,42.800881],[-76.286198,42.794443],[-76.279067,42.785866],[-76.275348,42.78047],[-76.275143,42.777665999999996],[-76.27467299999999,42.771257],[-76.273337,42.752300000000005],[-76.272532,42.739702],[-76.272246,42.735135],[-76.270062,42.699162],[-76.270012,42.698333999999996],[-76.266993,42.647473],[-76.26667599999999,42.642441999999996],[-76.265813,42.628665],[-76.26561099999999,42.625447],[-76.265619,42.62507],[-76.26558399999999,42.623588],[-76.27286099999999,42.623413],[-76.32515,42.622049],[-76.364918,42.621109],[-76.384976,42.620571999999996],[-76.38534299999999,42.620560999999995],[-76.385593,42.620546999999995],[-76.385654,42.620551],[-76.38656999999999,42.62052],[-76.40023,42.620096],[-76.40145199999999,42.620062],[-76.402293,42.620059],[-76.41722899999999,42.619644],[-76.448955,42.618829999999996],[-76.4584,42.618615],[-76.45866099999999,42.625749],[-76.45872299999999,42.627129],[-76.45885799999999,42.627416],[-76.46397499999999,42.627269],[-76.473022,42.627009],[-76.477035,42.626892999999995],[-76.478729,42.626793],[-76.492173,42.626366999999995],[-76.53610599999999,42.624908],[-76.540106,42.624753999999996],[-76.54063599999999,42.624787999999995],[-76.540949,42.624694],[-76.543318,42.624604999999995],[-76.55381299999999,42.624210999999995],[-76.555807,42.624055999999996],[-76.566874,42.623728],[-76.574893,42.623408],[-76.605012,42.622398],[-76.614291,42.622102999999996],[-76.614479,42.625234],[-76.66654299999999,42.623456999999995],[-76.671717,42.635691],[-76.685311,42.670280999999996],[-76.687899,42.674783999999995],[-76.690294,42.677310999999996],[-76.69542899999999,42.68273],[-76.697831,42.684557],[-76.703182,42.688628],[-76.710494,42.693397],[-76.719695,42.700415],[-76.7234,42.704122],[-76.728951,42.712897999999996],[-76.731636,42.72074],[-76.733454,42.727895],[-76.734241,42.733236999999995],[-76.736057,42.745566],[-76.73751899999999,42.753910999999995],[-76.737368,42.754185],[-76.73947299999999,42.770106],[-76.740003,42.776446],[-76.740201,42.782885],[-76.74006,42.789418999999995],[-76.738312,42.794686999999996],[-76.730449,42.806142],[-76.729073,42.808136999999995],[-76.727415,42.810551],[-76.72327299999999,42.817923],[-76.71951399999999,42.825446],[-76.717575,42.83256],[-76.717185,42.83883],[-76.71885,42.846627],[-76.720381,42.850736],[-76.721025,42.854254999999995],[-76.720833,42.862643],[-76.721246,42.869578999999995],[-76.72173599999999,42.871089999999995],[-76.723719,42.876774],[-76.727713,42.884743],[-76.733468,42.894245999999995],[-76.735524,42.897507999999995],[-76.736504,42.899836],[-76.73746,42.902105999999996],[-76.73883099999999,42.911387999999995],[-76.73917999999999,42.916835],[-76.738357,42.924775],[-76.738308,42.925272],[-76.737956,42.927037],[-76.73473899999999,42.942675],[-76.734285,42.94481],[-76.734327,42.944879],[-76.73686599999999,42.949132999999996],[-76.737207,42.950041],[-76.739361,42.954473],[-76.738109,42.956586],[-76.73797499999999,42.961286],[-76.736708,42.962543],[-76.736668,42.963035999999995],[-76.73674,42.970286],[-76.728658,42.976071999999995],[-76.727623,42.978144],[-76.72827099999999,42.981004],[-76.728156,42.98571],[-76.728814,42.987764],[-76.721437,42.993668],[-76.720654,42.995425999999995],[-76.720766,43.001742],[-76.721914,43.006791],[-76.721657,43.007858999999996],[-76.718699,43.011337],[-76.712409,43.015766],[-76.711202,43.018042],[-76.711732,43.020451],[-76.71380599999999,43.024035],[-76.717497,43.030257],[-76.718614,43.033116],[-76.719111,43.040303],[-76.716875,43.056321],[-76.71746499999999,43.058563],[-76.717789,43.062633999999996],[-76.71571399999999,43.064513999999996],[-76.71174599999999,43.06869],[-76.705885,43.070783999999996],[-76.70232399999999,43.080158999999995],[-76.703283,43.093430999999995],[-76.705203,43.123090999999995],[-76.705345,43.125462999999996],[-76.705502,43.127736],[-76.70573399999999,43.131429],[-76.70678099999999,43.148419],[-76.707169,43.155065],[-76.70756,43.161738],[-76.710134,43.205177],[-76.711216,43.220996],[-76.712825,43.241842],[-76.71336,43.249288],[-76.713571,43.250056],[-76.71392,43.256543],[-76.714488,43.263656999999995],[-76.71572499999999,43.278062],[-76.71697999999999,43.278088],[-76.717379,43.281974],[-76.719308,43.304758],[-76.7225013043099,43.3436861782835],[-76.7222244433338,43.3436947775029],[-76.7214913661439,43.3437175466619],[-76.71626039143689,43.3438800191772],[-76.7152134479685,43.343912536929295],[-76.7029687209123,43.34429285450209],[-76.70209234826139,43.344320074375396],[-76.69836,43.344435999999995],[-76.684856,43.352691],[-76.6808611878118,43.356319428743596],[-76.6753087390872,43.3613626356834],[-76.6726166285814,43.3638078397831],[-76.669624,43.366526],[-76.668483,43.3679956428836],[-76.66848070605221,43.3679985975585],[-76.6684110184836,43.3680883572774],[-76.6683830048234,43.36812443972819],[-76.6683587546634,43.368155674675805],[-76.6683451041457,43.3681732569598],[-76.6683223067011,43.368202620765494],[-76.6637141248389,43.374138099889294],[-76.65733919757669,43.3823492011029],[-76.6573371098802,43.3823518901198],[-76.6573153507088,43.3823799165978],[-76.6563527594723,43.3836197635396],[-76.64370799999999,43.3999066003265],[-76.6430247651094,43.400786627754094],[-76.64267199999999,43.401241],[-76.6421051064922,43.4018182327153],[-76.6385607899334,43.405427191793294],[-76.63156185574769,43.4125537750561],[-76.63100408081519,43.4131217228882],[-76.630774,43.413356],[-76.6282231437844,43.4144351131104],[-76.6198226213638,43.4179888664827],[-76.6173119174316,43.4190509935885],[-76.6171093082771,43.419136705277595]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36013","STATE":"36","COUNTY":"013","NAME":"Chautauqua","LSAD":"County","CENSUSAREA":1060.226},"geometry":{"type":"Polygon","coordinates":[[[-79.761951,42.26986],[-79.71782499999999,42.284711],[-79.6701916431421,42.305035056384895],[-79.6688923426828,42.3055894379683],[-79.6663942570043,42.3066553135969],[-79.66586858803531,42.30687960443989],[-79.6599337652721,42.3094118566353],[-79.6584509243906,42.310044550689895],[-79.6567957845719,42.310750760733],[-79.65628892493669,42.3109670260664],[-79.6559417876999,42.3111151415309],[-79.6554843267616,42.311310329578],[-79.6547706072398,42.3116148572612],[-79.6496925219803,42.3137815592942],[-79.64759715046048,42.3146756060657],[-79.64585879516359,42.3154173222369],[-79.645554493474,42.3155471607599],[-79.645358,42.315630999999996],[-79.64535610598759,42.315631959063595],[-79.6447351472445,42.315946391507396],[-79.64339170170969,42.3166266667549],[-79.6433224466234,42.3166617351814],[-79.64270401218589,42.316974889402395],[-79.6425673188352,42.317044106278395],[-79.642156244757,42.3172522602475],[-79.6404061935748,42.3181384268021],[-79.640123674185,42.3182814850378],[-79.638531582674,42.319087666173196],[-79.63188285234929,42.3224543576762],[-79.6316018556045,42.322596644896],[-79.63122859096379,42.3227856534484],[-79.63020295640139,42.323305],[-79.6257591303098,42.3255552027926],[-79.62053033275801,42.328202888505295],[-79.61791096738459,42.3295292462782],[-79.6159640047888,42.330515122093296],[-79.6123099221651,42.33236542558279],[-79.60126187191901,42.337959783463496],[-79.593992,42.341640999999996],[-79.59312372526979,42.3420371355651],[-79.5620892274258,42.3561960969113],[-79.5613549660896,42.3565310911467],[-79.5609313370683,42.3567243646763],[-79.546262,42.363417],[-79.5462251764822,42.363436794872904],[-79.5437506835963,42.364766984792794],[-79.5331195195745,42.3704818798725],[-79.5282325759317,42.373108908307195],[-79.5281395205345,42.3731589312239],[-79.5280449794158,42.3732097528059],[-79.52739736983739,42.373557882209795],[-79.5260175688192,42.374299608895],[-79.525772,42.374431617020704],[-79.5247622936778,42.374974395373194],[-79.5227328225962,42.376065359097794],[-79.520415322724,42.3773111557566],[-79.51794791344389,42.378637537809],[-79.5135986125168,42.3809755506943],[-79.5131140330982,42.381236041505],[-79.5118579145657,42.381911281357],[-79.510999,42.382373],[-79.4938989537134,42.392725128559896],[-79.490227941355,42.39494750803429],[-79.4787410152821,42.40190153222059],[-79.47833461117509,42.4021475635759],[-79.4779124907006,42.4024031093999],[-79.4770696377292,42.402913360785895],[-79.47653627035939,42.4032362539225],[-79.47582638979439,42.4036660056756],[-79.474794,42.404291],[-79.453533,42.411156999999996],[-79.44827741451569,42.4148645837141],[-79.44653064822,42.4160968502788],[-79.4454487785331,42.4168600616173],[-79.4403125149392,42.420483469001496],[-79.4358628857906,42.4236224860748],[-79.4357249774653,42.4237197743146],[-79.43177455572749,42.4265066225815],[-79.43164498412659,42.42659802963001],[-79.4315666123397,42.42665331746839],[-79.429119,42.42838],[-79.42533032839181,42.4323672241966],[-79.41650649278,42.4416534898054],[-79.41162569160201,42.4467900787126],[-79.40570286031509,42.4530233073114],[-79.405458,42.453281],[-79.4043593005015,42.4538982154104],[-79.39872343253339,42.4570642717939],[-79.38194299999999,42.466491],[-79.37504324181529,42.4712633356465],[-79.3725608280445,42.4729803395487],[-79.3652809278426,42.4780156069169],[-79.36344203740089,42.4792875069125],[-79.362650992672,42.479834646516096],[-79.36213,42.480194999999995],[-79.3519891453114,42.4889202766866],[-79.3442838999019,42.489512983233396],[-79.3423164045491,42.4896643278453],[-79.3363336881264,42.4885461565352],[-79.3358574359296,42.4884571448714],[-79.335129,42.488321],[-79.33148299999999,42.489076],[-79.32965202264829,42.4903219970817],[-79.3275678855213,42.4917402717401],[-79.3248160890254,42.493612894795795],[-79.32307899999999,42.494794999999996],[-79.32282423126729,42.495037867232796],[-79.3218602498285,42.4959568163598],[-79.317740135626,42.4998844597741],[-79.3090664746329,42.502746620415195],[-79.29867408413979,42.506175932566],[-79.2979952242184,42.5063999447968],[-79.2940241106261,42.5077103447576],[-79.28336399999999,42.511227999999996],[-79.2833366175517,42.5112454332973],[-79.2720816599672,42.5184110095481],[-79.26976627725588,42.519885120067194],[-79.2690820228875,42.5203207571467],[-79.2666780762256,42.5218512527509],[-79.2662958557459,42.52209459707019],[-79.2661628042067,42.5221793056035],[-79.2657662377005,42.5224317834576],[-79.2657359343923,42.5224510763482],[-79.2654858354434,42.5226103042329],[-79.264624,42.523159],[-79.262003799758,42.5241955070936],[-79.25243222754109,42.527981859885],[-79.24305293398379,42.5316921504765],[-79.24288899999999,42.531757],[-79.2362373469717,42.533219458495594],[-79.2276096563328,42.535116376362296],[-79.22319499999999,42.536086999999995],[-79.2226822184889,42.5362546127931],[-79.205034507457,42.5420231166761],[-79.2041955521842,42.5422973458234],[-79.2036948813559,42.542460999999996],[-79.203611472,42.542488264],[-79.193232,42.545881],[-79.1932247580266,42.5458822676586],[-79.1855692547765,42.5472223118254],[-79.1782021341198,42.5485118765659],[-79.17590012669599,42.548914827426195],[-79.1666609602989,42.550532081136595],[-79.16065938355389,42.5515826166333],[-79.1556256599738,42.552463735966796],[-79.1487427402087,42.55366854460969],[-79.14872299999999,42.553672],[-79.1487029624256,42.5536932926361],[-79.1404406703111,42.5624730968429],[-79.13856899999999,42.564462],[-79.1367251245073,42.5696933795434],[-79.13225,42.567277],[-79.127145,42.565200999999995],[-79.123969,42.565256999999995],[-79.119892,42.566742],[-79.115886,42.569711999999996],[-79.107778,42.569964999999996],[-79.104213,42.568189],[-79.106152,42.564104],[-79.101337,42.562394999999995],[-79.097886,42.564181999999995],[-79.095841,42.564487],[-79.093716,42.563145],[-79.094577,42.560992999999996],[-79.09223899999999,42.558864],[-79.092266,42.55677],[-79.089715,42.555966],[-79.087616,42.556526],[-79.08332399999999,42.556649],[-79.080877,42.555437],[-79.081198,42.553900999999996],[-79.091042,42.55159],[-79.089624,42.549969999999995],[-79.087259,42.549853999999996],[-79.08306999999999,42.546369],[-79.081274,42.545727],[-79.077491,42.545732],[-79.07366499999999,42.544122],[-79.07204399999999,42.542656],[-79.065899,42.540397],[-79.064171,42.539037],[-79.060777,42.537853],[-79.06093899999999,42.522884999999995],[-79.06101699999999,42.51303],[-79.061025,42.501374999999996],[-79.06101799999999,42.490618999999995],[-79.061032,42.475282],[-79.061081,42.457820999999996],[-79.061233,42.446692999999996],[-79.061208,42.439521],[-79.061195,42.435814],[-79.061182,42.434702],[-79.061043,42.40607],[-79.060988,42.394622999999996],[-79.060791,42.370203],[-79.06082099999999,42.36633],[-79.060701,42.355629],[-79.06074799999999,42.355391999999995],[-79.06070799999999,42.347916999999995],[-79.06039899999999,42.260256],[-79.06030899999999,42.250909],[-79.060126,42.240801999999995],[-79.059997,42.231170999999996],[-79.060001,42.229476],[-79.05986,42.213755],[-79.059877,42.211818],[-79.059711,42.173403],[-79.059737,42.166523999999995],[-79.059562,42.154666],[-79.059686,42.152083],[-79.059609,42.140631],[-79.05953,42.129433999999996],[-79.059264,42.124879],[-79.059299,42.092278],[-79.05930599999999,42.086731],[-79.05930599999999,42.086371],[-79.059209,42.075381],[-79.059974,42.057119],[-79.060422,42.038264999999996],[-79.06126499999999,41.999258999999995],[-79.1449956209558,41.9994010433363],[-79.17857,41.999458],[-79.23439699250319,41.9989475737182],[-79.249772,41.998807],[-79.29558998867809,41.99869343228669],[-79.38039448500619,41.9984832298531],[-79.3817154843262,41.9984799555306],[-79.411174489236,41.9984069363536],[-79.46432095093171,41.9982752037678],[-79.472472,41.998255],[-79.5279932931024,41.9984839086706],[-79.538445,41.998526999999996],[-79.551385,41.998666],[-79.625301,41.999068],[-79.625287,41.999002999999995],[-79.6309099535456,41.9990446320015],[-79.64528380873809,41.9991510551393],[-79.67012799999999,41.999334999999995],[-79.76137399999999,41.999067],[-79.761798,42.019042],[-79.7617380983599,42.0863122149363],[-79.761709,42.11899],[-79.76212199999999,42.131246],[-79.761861,42.150712],[-79.761759,42.162675],[-79.76175930015769,42.162694721474494],[-79.7619209542138,42.1733159916777],[-79.761921,42.173319],[-79.761929,42.179693],[-79.761833,42.183627],[-79.7620878290939,42.2310995033323],[-79.762152,42.243054],[-79.76196399999999,42.251354],[-79.7619526584532,42.2674991280444],[-79.761951384955,42.2693120016754],[-79.761951,42.26986]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36017","STATE":"36","COUNTY":"017","NAME":"Chenango","LSAD":"County","CENSUSAREA":893.548},"geometry":{"type":"Polygon","coordinates":[[[-75.29587699999999,42.744105999999995],[-75.296195,42.742281],[-75.293958,42.739184],[-75.292825,42.737750999999996],[-75.29545999999999,42.733877],[-75.29534799999999,42.73282],[-75.297268,42.732302999999995],[-75.300333,42.729091],[-75.29596,42.728378],[-75.295644,42.727236999999995],[-75.297176,42.725932],[-75.296093,42.724933],[-75.296962,42.722350999999996],[-75.29606299999999,42.720489],[-75.29651299999999,42.718652999999996],[-75.29950699999999,42.717835],[-75.29929299999999,42.716822],[-75.300725,42.715233999999995],[-75.299906,42.713695],[-75.301214,42.713597],[-75.30305299999999,42.71205],[-75.302543,42.710203],[-75.306654,42.705988999999995],[-75.30957,42.698592],[-75.31101199999999,42.697486999999995],[-75.31315,42.692001],[-75.313283,42.689744999999995],[-75.31550299999999,42.687211],[-75.320032,42.684629],[-75.319842,42.683268],[-75.321776,42.68211],[-75.326422,42.680816],[-75.32764999999999,42.679665],[-75.32697499999999,42.676738],[-75.328204,42.676362],[-75.327119,42.674428999999996],[-75.330394,42.674195],[-75.329596,42.672675999999996],[-75.327497,42.672427],[-75.330896,42.671416],[-75.330507,42.668676],[-75.33117299999999,42.667877999999995],[-75.33012,42.665289],[-75.327969,42.664047],[-75.33001999999999,42.662639],[-75.331103,42.661072],[-75.328238,42.657193],[-75.328801,42.654747],[-75.327142,42.652892],[-75.32834,42.651120999999996],[-75.328054,42.648588],[-75.32495999999999,42.647397999999995],[-75.325379,42.646453],[-75.325267,42.645897999999995],[-75.32472899999999,42.645193],[-75.323003,42.644006],[-75.324131,42.641110999999995],[-75.322983,42.638556],[-75.323762,42.633949],[-75.32667099999999,42.633516],[-75.330057,42.630846],[-75.326807,42.628133999999996],[-75.327428,42.625834999999995],[-75.32377199999999,42.624618],[-75.322983,42.623183999999995],[-75.324726,42.620286],[-75.326951,42.618732],[-75.330162,42.617849],[-75.331306,42.616174],[-75.336922,42.613561],[-75.338518,42.611224],[-75.338803,42.606103999999995],[-75.337028,42.602968999999995],[-75.337046,42.600749],[-75.338049,42.599576],[-75.337037,42.599084999999995],[-75.337397,42.597266],[-75.336319,42.594318],[-75.333496,42.592369],[-75.331299,42.593464999999995],[-75.32932799999999,42.591666],[-75.328959,42.59032],[-75.327196,42.590467],[-75.325407,42.588820999999996],[-75.326628,42.587371999999995],[-75.326505,42.585451],[-75.328631,42.583915999999995],[-75.33027,42.581185999999995],[-75.33005899999999,42.580515],[-75.327426,42.580987],[-75.327089,42.5798],[-75.328869,42.579681],[-75.328057,42.578182999999996],[-75.326639,42.577850999999995],[-75.327811,42.576527],[-75.329822,42.576448],[-75.330122,42.574301999999996],[-75.33237199999999,42.573001],[-75.33077999999999,42.571677],[-75.331859,42.568529],[-75.33025599999999,42.567432],[-75.33756799999999,42.564555999999996],[-75.33718999999999,42.562338],[-75.34042099999999,42.560635999999995],[-75.348122,42.560396999999995],[-75.349356,42.557921],[-75.353556,42.55555],[-75.35488699999999,42.554196999999995],[-75.356051,42.556253],[-75.361598,42.552451999999995],[-75.364728,42.554611],[-75.366006,42.553453],[-75.365781,42.552062],[-75.36737,42.552503],[-75.36739299999999,42.550684],[-75.36848499999999,42.547661],[-75.368606,42.545344],[-75.371315,42.543862999999995],[-75.370407,42.540892],[-75.37315,42.536321],[-75.377538,42.535835],[-75.37754799999999,42.53349],[-75.381884,42.531965],[-75.382296,42.528794],[-75.383388,42.526514],[-75.386965,42.523331],[-75.384042,42.520908],[-75.384843,42.517801999999996],[-75.387883,42.515296],[-75.388903,42.513662],[-75.389161,42.511230999999995],[-75.390058,42.510517],[-75.394509,42.511283],[-75.402205,42.510995],[-75.403459,42.508699],[-75.400193,42.508759],[-75.399327,42.506031],[-75.397543,42.507414],[-75.39616199999999,42.507019],[-75.395986,42.505483],[-75.39811,42.503416],[-75.39577,42.502998],[-75.395708,42.50201],[-75.398811,42.499455999999995],[-75.398596,42.497130999999996],[-75.39654999999999,42.494707999999996],[-75.39620699999999,42.490271],[-75.39522099999999,42.488434],[-75.396119,42.48576],[-75.39990399999999,42.482665999999995],[-75.40316899999999,42.482797],[-75.40186299999999,42.480585],[-75.40446399999999,42.479116999999995],[-75.40071499999999,42.473226],[-75.40163199999999,42.471776999999996],[-75.400943,42.469077999999996],[-75.399805,42.465585],[-75.399784,42.462030999999996],[-75.3983,42.460665999999996],[-75.395453,42.460186],[-75.39151199999999,42.453706],[-75.390349,42.450624],[-75.386515,42.445873999999996],[-75.38576499999999,42.441552],[-75.385566,42.432925],[-75.381018,42.426635],[-75.377879,42.425346999999995],[-75.37662399999999,42.424167],[-75.37824499999999,42.422184],[-75.37906699999999,42.419371999999996],[-75.37699099999999,42.418462],[-75.37910099999999,42.417683],[-75.37913499999999,42.416543999999995],[-75.376914,42.41506],[-75.374617,42.415997999999995],[-75.37545,42.412349999999996],[-75.374905,42.410784],[-75.380304,42.407644],[-75.37937099999999,42.405674999999995],[-75.380685,42.403850999999996],[-75.38187099999999,42.403214999999996],[-75.386104,42.402403],[-75.387737,42.401607999999996],[-75.39258199999999,42.400912999999996],[-75.394404,42.399263999999995],[-75.394182,42.396491],[-75.39609399999999,42.394552999999995],[-75.401596,42.390115],[-75.402641,42.387602],[-75.404166,42.385684999999995],[-75.40669,42.380781],[-75.406582,42.378972],[-75.402709,42.375913999999995],[-75.402288,42.373172],[-75.40477,42.370993],[-75.403345,42.365732],[-75.39974099999999,42.362362],[-75.399441,42.360285999999995],[-75.395613,42.359941],[-75.393053,42.359283],[-75.39284599999999,42.357915999999996],[-75.393755,42.355818],[-75.394201,42.353533],[-75.39862099999999,42.350321],[-75.402453,42.348535999999996],[-75.401849,42.345797],[-75.398479,42.341131999999995],[-75.397774,42.337817],[-75.398331,42.336065],[-75.400798,42.334247],[-75.40482899999999,42.332958],[-75.406407,42.330771999999996],[-75.406745,42.327920999999996],[-75.40984,42.325882],[-75.410336,42.324495999999996],[-75.407118,42.321588],[-75.40792499999999,42.319396],[-75.410308,42.319753],[-75.413029,42.320921],[-75.414489,42.320178999999996],[-75.416932,42.314094],[-75.415319,42.314150999999995],[-75.41533199999999,42.313911999999995],[-75.415442,42.299642],[-75.41566,42.293749999999996],[-75.415689,42.29298],[-75.41595099999999,42.285924],[-75.41610899999999,42.281661],[-75.41728599999999,42.250081],[-75.417227,42.247428],[-75.417277,42.244582],[-75.418421,42.195032],[-75.44019399999999,42.195111999999995],[-75.452872,42.195085],[-75.532776,42.195240999999996],[-75.57777999999999,42.195389999999996],[-75.5965,42.195453],[-75.60008599999999,42.195465999999996],[-75.600668,42.195468999999996],[-75.600946,42.195468999999996],[-75.61533,42.195479],[-75.63710999999999,42.195628],[-75.637058,42.212011],[-75.637525,42.233019],[-75.637373,42.236191],[-75.638299,42.248686],[-75.639055,42.248675],[-75.67956,42.248062999999995],[-75.69739899999999,42.247901],[-75.703153,42.247862999999995],[-75.710419,42.247814],[-75.714122,42.247789],[-75.722056,42.247735],[-75.722286,42.249341],[-75.730257,42.249328999999996],[-75.737617,42.249286999999995],[-75.747187,42.249204],[-75.77566,42.249235],[-75.778436,42.249227999999995],[-75.77916499999999,42.249305],[-75.78204699999999,42.249196999999995],[-75.795333,42.249148],[-75.81979799999999,42.248987],[-75.821046,42.248107],[-75.82710999999999,42.247067],[-75.82843,42.246075],[-75.83352599999999,42.245211],[-75.83631,42.244091],[-75.836502,42.244282999999996],[-75.837004,42.245298999999996],[-75.843792,42.259707],[-75.84787,42.302302],[-75.848269,42.306188],[-75.850388,42.327731],[-75.85085099999999,42.332550999999995],[-75.852063,42.345331],[-75.854243,42.356016],[-75.859275,42.380942],[-75.861874,42.393737],[-75.86402,42.415701999999996],[-75.86515899999999,42.426165999999995],[-75.865552,42.432168999999995],[-75.866224,42.442391],[-75.866573,42.447703],[-75.86968,42.490218],[-75.874224,42.542716],[-75.876329,42.5659],[-75.87715899999999,42.575737],[-75.879245,42.601869],[-75.882325,42.637695],[-75.883242,42.648534999999995],[-75.883843,42.655634],[-75.889832,42.723844],[-75.830958,42.726445999999996],[-75.821089,42.727152],[-75.803349,42.728421],[-75.77978499999999,42.729672],[-75.765922,42.730306999999996],[-75.762196,42.730457],[-75.70750199999999,42.733049],[-75.68409299999999,42.73415],[-75.67182,42.734727],[-75.666541,42.734975],[-75.660692,42.735251],[-75.653733,42.735592],[-75.653593,42.735619],[-75.646069,42.735976],[-75.61841199999999,42.737001],[-75.598529,42.737818999999995],[-75.55251,42.739402],[-75.545114,42.739712999999995],[-75.5346,42.740226],[-75.533479,42.740257],[-75.49271499999999,42.742221],[-75.48934899999999,42.742244],[-75.428668,42.745421],[-75.427988,42.738110999999996],[-75.39863199999999,42.739246],[-75.391003,42.739456],[-75.374616,42.740021],[-75.371439,42.740275],[-75.37108099999999,42.740303],[-75.358774,42.740943],[-75.319193,42.742967],[-75.31841899999999,42.743007],[-75.312387,42.743314999999996],[-75.29587699999999,42.744105999999995]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36025","STATE":"36","COUNTY":"025","NAME":"Delaware","LSAD":"County","CENSUSAREA":1442.44},"geometry":{"type":"Polygon","coordinates":[[[-75.29858,41.954521],[-75.300409,41.953871],[-75.301593,41.952811],[-75.30154394193059,41.9522780385848],[-75.301233,41.9489],[-75.301664,41.94838],[-75.303966,41.948215999999995],[-75.310358,41.949011999999996],[-75.312817,41.950182],[-75.318168,41.954236],[-75.32003999999999,41.960867],[-75.322384,41.961693],[-75.329318,41.968232],[-75.335771,41.970315],[-75.339488,41.970786],[-75.342204,41.972871999999995],[-75.34246,41.974303],[-75.337791,41.984386],[-75.33760199999999,41.9867],[-75.34112499999999,41.992771999999995],[-75.34212547407209,41.9932410813581],[-75.34656799999999,41.995324],[-75.353504,41.99711],[-75.359579,41.999445],[-75.362848,42.001739],[-75.362105,42.004901],[-75.36388099999999,42.007832],[-75.366249,42.008221],[-75.366959,42.008008],[-75.374618,42.003371],[-75.37922,42.002192],[-75.384699,42.003068],[-75.38729599999999,42.004447],[-75.390344,42.006816],[-75.39437099999999,42.006353],[-75.39656099999999,42.006605],[-75.400094,42.009434],[-75.402239,42.010698999999995],[-75.40317399999999,42.012108],[-75.402791,42.014658999999995],[-75.405807,42.017922],[-75.408463,42.026309999999995],[-75.410033,42.029827],[-75.412232,42.031510999999995],[-75.413201,42.033864],[-75.416226,42.036947],[-75.41902999999999,42.038261],[-75.42176599999999,42.041602999999995],[-75.420549,42.045369],[-75.42303799999999,42.054021999999996],[-75.422637,42.055913],[-75.42262199999999,42.055969999999995],[-75.422406,42.05679],[-75.422377,42.057604],[-75.422347,42.058507999999996],[-75.42219399999999,42.070240999999996],[-75.421613,42.087997],[-75.421009,42.113983],[-75.419664,42.150436],[-75.419203,42.168053],[-75.418438,42.186797],[-75.418689,42.188022],[-75.418544,42.189504],[-75.418421,42.195032],[-75.417277,42.244582],[-75.417227,42.247428],[-75.41728599999999,42.250081],[-75.41610899999999,42.281661],[-75.41595099999999,42.285924],[-75.415689,42.29298],[-75.41566,42.293749999999996],[-75.415442,42.299642],[-75.41533199999999,42.313911999999995],[-75.415319,42.314150999999995],[-75.408801,42.316441999999995],[-75.40791399999999,42.316466999999996],[-75.406809,42.316387],[-75.40606199999999,42.316041],[-75.40505499999999,42.315751],[-75.4037,42.31546],[-75.402991,42.315362],[-75.40223999999999,42.315383],[-75.401125,42.315366999999995],[-75.40087799999999,42.315326999999996],[-75.398212,42.31503],[-75.395679,42.315819999999995],[-75.394198,42.317547999999995],[-75.393092,42.318923],[-75.391404,42.319648],[-75.390202,42.319907],[-75.388988,42.319851],[-75.384663,42.315146999999996],[-75.383837,42.315145],[-75.383239,42.315278],[-75.379341,42.319426],[-75.376679,42.321501],[-75.371922,42.316013999999996],[-75.36842299999999,42.315906999999996],[-75.364008,42.317495],[-75.353524,42.319221],[-75.351288,42.318484],[-75.347893,42.316105],[-75.341368,42.314797],[-75.336736,42.316199],[-75.33579499999999,42.317212],[-75.33541699999999,42.31763],[-75.33444399999999,42.318095],[-75.33388099999999,42.31821],[-75.333466,42.318194],[-75.332186,42.318106],[-75.331633,42.318304],[-75.331578,42.318328],[-75.331561,42.318335999999995],[-75.323278,42.321070999999996],[-75.316383,42.321180999999996],[-75.31153599999999,42.321816],[-75.308405,42.321151],[-75.305489,42.322404],[-75.30612599999999,42.323532],[-75.30480399999999,42.327473],[-75.298451,42.331025],[-75.29827399999999,42.331252],[-75.298256,42.331285],[-75.29817899999999,42.331376],[-75.298093,42.331503999999995],[-75.298013,42.331593999999996],[-75.297958,42.331666999999996],[-75.293044,42.339172999999995],[-75.283452,42.341888],[-75.28090999999999,42.343199],[-75.279316,42.346751],[-75.277885,42.347618999999995],[-75.273821,42.348374],[-75.26946099999999,42.351026999999995],[-75.27021599999999,42.353781999999995],[-75.272471,42.355576],[-75.272922,42.356654999999996],[-75.270552,42.357827],[-75.267997,42.359829999999995],[-75.26711399999999,42.362614],[-75.261569,42.366673],[-75.258944,42.366768],[-75.25588499999999,42.364404],[-75.252416,42.364833999999995],[-75.249104,42.367028999999995],[-75.246922,42.367263],[-75.24422899999999,42.365818],[-75.241317,42.365072999999995],[-75.23607299999999,42.364303],[-75.230685,42.365297],[-75.226849,42.367453],[-75.222478,42.367731],[-75.21673799999999,42.367556],[-75.21376099999999,42.368973],[-75.212927,42.369935],[-75.212139,42.373234],[-75.209792,42.376363999999995],[-75.207954,42.376888],[-75.197322,42.377438999999995],[-75.194762,42.37724],[-75.191069,42.37974],[-75.19095999999999,42.379852],[-75.193998,42.369403],[-75.194346,42.368213],[-75.197237,42.358329],[-75.197116,42.358395],[-75.18871899999999,42.362992999999996],[-75.167672,42.374359999999996],[-75.166775,42.37508],[-75.158639,42.379446],[-75.147133,42.385661999999996],[-75.143069,42.381401],[-75.131277,42.388507],[-75.126921,42.391132999999996],[-75.12412499999999,42.392927],[-75.122202,42.39407],[-75.124254,42.396052],[-75.126762,42.398576],[-75.114818,42.406392],[-75.093408,42.420634],[-75.079813,42.424597999999996],[-75.059068,42.43064],[-75.047034,42.43016],[-75.04035,42.42988],[-75.02735,42.429351],[-75.02234299999999,42.429148],[-75.019818,42.429044999999995],[-75.01980999999999,42.429159],[-75.017958,42.454243],[-75.01577999999999,42.450582],[-75.012586,42.450503999999995],[-75.007448,42.448445],[-75.004199,42.449317],[-75.001577,42.44724],[-75.002175,42.445595999999995],[-75.001537,42.44302],[-75,42.441995],[-74.994788,42.439867],[-74.992362,42.440357],[-74.99202799999999,42.441378],[-74.989436,42.443086],[-74.99172,42.445386],[-74.990995,42.446511],[-74.988196,42.446709],[-74.986638,42.444739],[-74.983987,42.444086],[-74.982214,42.446906],[-74.97494,42.467487999999996],[-74.968706,42.468435],[-74.959851,42.469268],[-74.959246,42.470385],[-74.957926,42.462756],[-74.934772,42.472494],[-74.935042,42.473701999999996],[-74.895499,42.490536],[-74.88699,42.494161999999996],[-74.857547,42.506811],[-74.847776,42.511016999999995],[-74.844121,42.512591],[-74.794504,42.507926999999995],[-74.777776,42.506327],[-74.77557999999999,42.504920999999996],[-74.772888,42.505168999999995],[-74.771737,42.504442],[-74.76700199999999,42.506049],[-74.76095099999999,42.51051],[-74.757213,42.510821],[-74.756877,42.511019],[-74.756748,42.511655],[-74.751865,42.514392],[-74.749601,42.514002],[-74.742783,42.515992999999995],[-74.74152099999999,42.515370999999995],[-74.740267,42.515659],[-74.73966,42.51565],[-74.73464,42.513943],[-74.72881,42.517404],[-74.726613,42.517679],[-74.721863,42.516237],[-74.72014899999999,42.517264],[-74.718924,42.516132999999996],[-74.715852,42.515893],[-74.711801,42.516843],[-74.71158,42.517799],[-74.703761,42.509962],[-74.699859,42.506049999999995],[-74.695644,42.501822999999995],[-74.67161899999999,42.477652],[-74.664092,42.470043],[-74.657011,42.462885],[-74.645847,42.4516],[-74.618895,42.424389],[-74.617778,42.423946],[-74.588861,42.412583],[-74.56752399999999,42.404193],[-74.55258599999999,42.398299],[-74.543474,42.394704],[-74.526693,42.388085],[-74.517562,42.384484],[-74.498953,42.377145999999996],[-74.476274,42.368178],[-74.467889,42.364810999999996],[-74.45622399999999,42.360126],[-74.443506,42.355017],[-74.438418,42.352973999999996],[-74.436812,42.352477],[-74.428196,42.349075],[-74.438647,42.334967999999996],[-74.46951299999999,42.293321],[-74.476207,42.284262],[-74.47870999999999,42.280868],[-74.479683,42.279548],[-74.485406,42.271788],[-74.48606,42.270902],[-74.511284,42.236697],[-74.53730999999999,42.201423999999996],[-74.499596,42.186914],[-74.495635,42.185722999999996],[-74.45561599999999,42.170691],[-74.451713,42.169225],[-74.503984,42.14492],[-74.50914,42.1452],[-74.530985,42.146474999999995],[-74.546925,42.128566],[-74.548265,42.127406],[-74.553598,42.121483999999995],[-74.566002,42.115764],[-74.66968899999999,42.067819],[-74.70276799999999,42.052589999999995],[-74.749602,42.030977],[-74.749602,42.030755],[-74.780693,42.016375],[-74.800636,42.007132999999996],[-74.84392799999999,41.987344],[-74.846375,41.986278],[-74.847109,41.985837],[-74.850723,41.984384],[-74.85292,41.983337],[-74.89062799999999,41.966729],[-74.908632,41.958760999999996],[-74.913218,41.956779],[-74.931569,41.948485999999995],[-74.985156,41.924006999999996],[-74.997252,41.918485],[-75.003295,41.915655],[-75.027113,41.90497],[-75.02932799999999,41.903971999999996],[-75.06459,41.888023],[-75.146446,41.850899],[-75.152898,41.848563999999996],[-75.15651199999999,41.848327],[-75.161541,41.849835999999996],[-75.164168,41.851586],[-75.166217,41.853862],[-75.168733,41.859258],[-75.168053,41.867042999999995],[-75.169142,41.87029],[-75.1693083664794,41.8704440906675],[-75.170565,41.871607999999995],[-75.17457399999999,41.872659999999996],[-75.176633,41.872371],[-75.17913399999999,41.869935],[-75.180497,41.86568],[-75.182271,41.862198],[-75.183937,41.860515],[-75.185254,41.85993],[-75.186993,41.860109],[-75.18888799999999,41.861264],[-75.190203,41.862454],[-75.191441,41.865063],[-75.19438199999999,41.867287],[-75.197836,41.868807],[-75.204002,41.869867],[-75.209741,41.86925],[-75.21380942028689,41.867848733039494],[-75.21497,41.867449],[-75.220125,41.860534],[-75.223734,41.857456],[-75.22572,41.857481],[-75.231612,41.859459],[-75.234565,41.861568999999996],[-75.238743,41.865699],[-75.241134,41.867118],[-75.24334499999999,41.866875],[-75.24804499999999,41.8633],[-75.25119699999999,41.86204],[-75.257825,41.862154],[-75.260527,41.863800000000005],[-75.262802,41.866212999999995],[-75.263673,41.868105],[-75.263815,41.870757],[-75.261488,41.873277],[-75.258439,41.875087],[-75.257564,41.877108],[-75.260623,41.883783],[-75.26300499999999,41.885109],[-75.267789,41.885982],[-75.271292,41.88736],[-75.272581,41.893167999999996],[-75.272778,41.897112],[-75.26777299999999,41.901970999999996],[-75.267562,41.907053999999995],[-75.269736,41.911363],[-75.275368,41.919564],[-75.276552,41.922208],[-75.276501,41.926679],[-75.27712816121169,41.932527151515],[-75.277243,41.933597999999996],[-75.279094,41.938917],[-75.289383,41.942890999999996],[-75.290966,41.945039],[-75.29176199999999,41.947092],[-75.29142999999999,41.952476999999995],[-75.293713,41.954592999999996],[-75.296692075794,41.9545489290205],[-75.29858,41.954521]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36031","STATE":"36","COUNTY":"031","NAME":"Essex","LSAD":"County","CENSUSAREA":1794.228},"geometry":{"type":"Polygon","coordinates":[[[-73.29893899999999,44.471303999999996],[-73.29872499999999,44.463957],[-73.300114,44.454710999999996],[-73.295216,44.445884],[-73.293613,44.440559],[-73.293855,44.437556],[-73.296031,44.428339],[-73.310491,44.402601],[-73.312418,44.394709999999996],[-73.315016,44.388512999999996],[-73.31702899999999,44.385978],[-73.320954,44.382669],[-73.33036899999999,44.375986999999995],[-73.333575,44.372288],[-73.33493899999999,44.364441],[-73.334637,44.356877],[-73.32733499999999,44.344369],[-73.325127,44.338533999999996],[-73.32399699999999,44.333842],[-73.323835,44.325418],[-73.3238455099031,44.3253266526595],[-73.324545,44.319247],[-73.324229,44.310023],[-73.322267,44.301522999999996],[-73.31683799999999,44.287683],[-73.312299,44.280024999999995],[-73.311025,44.27424],[-73.31285199999999,44.265346],[-73.31661799999999,44.257768999999996],[-73.3166377049938,44.257718116061895],[-73.319802,44.249547],[-73.323596,44.243897],[-73.324681,44.243614],[-73.32932199999999,44.244504],[-73.3305,44.244254],[-73.334042,44.240970999999995],[-73.336778,44.239557],[-73.34322999999999,44.238049],[-73.34231199999999,44.234531],[-73.3455355109189,44.232754814427004],[-73.34988899999999,44.230356],[-73.35080599999999,44.225943],[-73.354747,44.223599],[-73.355252,44.22287],[-73.355276,44.219553999999995],[-73.357908,44.216193],[-73.361476,44.210373999999995],[-73.36201299999999,44.208545],[-73.370678,44.204546],[-73.372405,44.202165],[-73.375289,44.199867999999995],[-73.377693,44.199453],[-73.382252,44.197178],[-73.38398699999999,44.193158],[-73.38532599999999,44.192597],[-73.388502,44.192318],[-73.39058299999999,44.190886],[-73.390805,44.189071999999996],[-73.3903779438358,44.18615930569089],[-73.389658,44.181249],[-73.390383,44.179486],[-73.395862,44.175785],[-73.396892,44.173846],[-73.397385,44.171596],[-73.396664,44.168831],[-73.395399,44.166903],[-73.395532,44.166122],[-73.39872799999999,44.162248],[-73.39963399999999,44.155325999999995],[-73.40238099999999,44.145855999999995],[-73.403268,44.144295],[-73.408118,44.139373],[-73.41172,44.137825],[-73.415761,44.132826],[-73.41578,44.131523],[-73.41375099999999,44.126068],[-73.411722,44.11754],[-73.411316,44.112686],[-73.4117592677759,44.111510804361394],[-73.416319,44.099422],[-73.4205590906893,44.0928557666786],[-73.429239,44.079414],[-73.430207,44.071715999999995],[-73.431991,44.063449999999996],[-73.43773999999999,44.045006],[-73.43688,44.042578],[-73.43077199999999,44.038745999999996],[-73.427987,44.037707999999995],[-73.4274431933012,44.0371550311584],[-73.42312,44.032759],[-73.42016,44.032004],[-73.41436399999999,44.029526],[-73.410776,44.026944],[-73.40773899999999,44.021311999999995],[-73.405999,44.016228999999996],[-73.405977,44.011485],[-73.41122399999999,43.986202],[-73.412581,43.98272],[-73.412613,43.97998],[-73.411248,43.975595999999996],[-73.406823,43.967317],[-73.405525,43.948813],[-73.40858899999999,43.932933],[-73.407742,43.929887],[-73.404537867979,43.9238515171629],[-73.400926,43.917048],[-73.397256,43.905668],[-73.395878,43.903044],[-73.38349099999999,43.890951],[-73.376312,43.880292],[-73.374051,43.875563],[-73.37415,43.874162999999996],[-73.379334,43.864647999999995],[-73.381501,43.859235],[-73.382046,43.855008],[-73.3818552426673,43.8545801920065],[-73.38098699999999,43.852633],[-73.373742,43.847693],[-73.372462,43.846266],[-73.372247,43.845337],[-73.373688,43.84261],[-73.376598,43.839357],[-73.38186499999999,43.837315],[-73.388389,43.832404],[-73.390194,43.829364],[-73.39275099999999,43.822196],[-73.39249199999999,43.820778999999995],[-73.39030199999999,43.817371],[-73.383259,43.81331],[-73.380804,43.810950999999996],[-73.3793298267232,43.808476322237],[-73.38795999999999,43.807686],[-73.402963,43.806523999999996],[-73.404524,43.806394999999995],[-73.42164199999999,43.805020999999996],[-73.43323699999999,43.804083],[-73.435909,43.803836],[-73.43812,43.803687],[-73.447704,43.803017],[-73.486746,43.799960999999996],[-73.495503,43.799319],[-73.49900000000001,43.798787999999995],[-73.61820399999999,43.786777],[-73.638151,43.784852],[-73.751824,43.773804999999996],[-73.75786599999999,43.773298],[-73.785375,43.770641],[-73.86869,43.762803],[-73.870935,43.76258],[-73.87457599999999,43.762104],[-73.882117,43.761388],[-73.883899,43.761223],[-73.90837499999999,43.758919999999996],[-73.966203,43.753474],[-74.057005,43.744513],[-74.05842799999999,43.745238],[-74.058876,43.746908],[-74.05747099999999,43.750063999999995],[-74.05750499999999,43.752137],[-74.05568099999999,43.756038],[-74.055193,43.760971],[-74.055415,43.765449],[-74.05410599999999,43.770331999999996],[-74.049179,43.776056],[-74.046139,43.781206999999995],[-74.04781899999999,43.784532],[-74.04996,43.786418],[-74.050991,43.788615],[-74.048264,43.790977999999996],[-74.047073,43.794093],[-74.047062,43.796343],[-74.053973,43.798114],[-74.057298,43.798445],[-74.062859,43.799496999999995],[-74.069569,43.801652999999995],[-74.077528,43.804679],[-74.083424,43.808206],[-74.085652,43.808862999999995],[-74.087908,43.807517999999995],[-74.089418,43.804677],[-74.09168,43.804328999999996],[-74.096818,43.806052],[-74.103066,43.805118],[-74.109364,43.808211],[-74.11657,43.809031],[-74.12001599999999,43.810294],[-74.12236899999999,43.812622999999995],[-74.12458699999999,43.813615],[-74.12994499999999,43.815000999999995],[-74.133091,43.817538],[-74.138677,43.817719],[-74.13792,43.822365],[-74.13946399999999,43.826435],[-74.141266,43.827525],[-74.145122,43.828911],[-74.149076,43.829612999999995],[-74.15348,43.82957],[-74.158703,43.828477],[-74.16293,43.825900999999995],[-74.16596799999999,43.825922999999996],[-74.16903099999999,43.826631],[-74.172433,43.824757],[-74.175343,43.823755],[-74.17812099999999,43.823664],[-74.18969,43.824214],[-74.192486,43.823505999999995],[-74.195872,43.821723999999996],[-74.201218,43.821238],[-74.202829,43.820315],[-74.206328,43.816469],[-74.207531,43.815673],[-74.21117799999999,43.811844],[-74.213734,43.810874999999996],[-74.235542,43.830984],[-74.255073,43.849131],[-74.336826,43.925222999999995],[-74.25599799999999,43.969797],[-74.260761,43.997856],[-74.261376,44.000063],[-74.28187,44.120551999999996],[-74.227688,44.125059],[-74.22004,44.126014999999995],[-74.09349,44.137615],[-74.113175,44.243027],[-74.115775,44.261278999999995],[-74.12111999999999,44.299675],[-74.122265,44.306948],[-74.12404099999999,44.314777],[-74.126718,44.326346],[-74.12756,44.330211],[-74.127657,44.3307],[-74.128002,44.332425],[-74.128346,44.33414],[-74.128889,44.336856999999995],[-74.13091399999999,44.347705999999995],[-74.141424,44.407267999999995],[-73.90968699999999,44.429699],[-73.839552,44.435503],[-73.749585,44.442464],[-73.748205,44.442813],[-73.72205199999999,44.444317],[-73.701105,44.445544],[-73.700375,44.440819],[-73.697113,44.442011],[-73.694948,44.442426999999995],[-73.68945699999999,44.440979999999996],[-73.685532,44.440846],[-73.68118799999999,44.442231],[-73.675889,44.441113],[-73.670425,44.441289999999995],[-73.658335,44.443887],[-73.65503199999999,44.448024],[-73.652481,44.449267],[-73.64627899999999,44.450582999999995],[-73.638955,44.452552999999995],[-73.63462,44.454555],[-73.631432,44.457229999999996],[-73.629049,44.458391],[-73.62546499999999,44.457643999999995],[-73.620746,44.455943999999995],[-73.614453,44.454386],[-73.60667,44.45653],[-73.60234899999999,44.458127999999995],[-73.598914,44.460657999999995],[-73.596836,44.463108999999996],[-73.595715,44.463074999999996],[-73.591414,44.461109],[-73.58975,44.461329],[-73.586199,44.463136999999996],[-73.580957,44.464489],[-73.575041,44.464293],[-73.573099,44.464563999999996],[-73.564257,44.469139999999996],[-73.56088299999999,44.472491],[-73.558723,44.479631],[-73.55497,44.482549],[-73.55118,44.48308],[-73.547562,44.482692],[-73.54363099999999,44.485304],[-73.54085599999999,44.486332999999995],[-73.535877,44.486543],[-73.526907,44.488028],[-73.524062,44.489798],[-73.52345199999999,44.491482],[-73.524413,44.493241],[-73.522536,44.492684],[-73.517984,44.488651999999995],[-73.516455,44.488065999999996],[-73.513041,44.487973],[-73.506721,44.487213],[-73.500563,44.488476999999996],[-73.49660399999999,44.486081],[-73.495372,44.487446999999996],[-73.49425099999999,44.490791],[-73.491309,44.49375],[-73.490585,44.497536],[-73.48832,44.49961],[-73.48518,44.500468],[-73.48316,44.501258],[-73.482232,44.503916],[-73.480584,44.505182999999995],[-73.47963,44.506692],[-73.479283,44.506857],[-73.475984,44.508094],[-73.47124699999999,44.507709999999996],[-73.47014,44.508661],[-73.471458,44.514035],[-73.468425,44.515668],[-73.46719499999999,44.51819],[-73.465891,44.518986999999996],[-73.463309,44.519058],[-73.462484,44.520123],[-73.45965,44.520046],[-73.459203,44.522714],[-73.463166,44.524736],[-73.460977,44.529613999999995],[-73.462879,44.533182],[-73.46497099999999,44.534068999999995],[-73.464134,44.535595],[-73.464946,44.536287],[-73.463838,44.537681],[-73.452562,44.538516],[-73.400553,44.542359999999995],[-73.33863044507319,44.5468424276295],[-73.33930000000001,44.544477],[-73.338995,44.543302],[-73.331595,44.535924],[-73.330893,44.534268999999995],[-73.33058799999999,44.531034],[-73.329458,44.529202999999995],[-73.328512,44.528478],[-73.32393499999999,44.52712],[-73.322026,44.525289],[-73.321111,44.519856999999995],[-73.321416,44.516453999999996],[-73.320836,44.513631],[-73.319265,44.511959999999995],[-73.312871,44.507245999999995],[-73.306707,44.500333999999995],[-73.304921,44.492208999999995],[-73.304418,44.485738999999995],[-73.299885,44.476652],[-73.2993423188855,44.4735840733609],[-73.29893899999999,44.471303999999996]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36041","STATE":"36","COUNTY":"041","NAME":"Hamilton","LSAD":"County","CENSUSAREA":1717.373},"geometry":{"type":"Polygon","coordinates":[[[-74.057005,43.744513],[-74.058753,43.744347999999995],[-74.214625,43.728702999999996],[-74.20378,43.658798],[-74.203537,43.657166],[-74.182555,43.52088],[-74.172445,43.453823],[-74.1601,43.371531999999995],[-74.158147,43.359905999999995],[-74.15808299999999,43.359527],[-74.15006199999999,43.312022999999996],[-74.14347,43.273979],[-74.141065,43.259505],[-74.140147,43.253979],[-74.160139,43.252629],[-74.19615499999999,43.250195],[-74.200664,43.249894],[-74.2068,43.249545999999995],[-74.20975899999999,43.249261999999995],[-74.224215,43.248165],[-74.220902,43.221402999999995],[-74.29270199999999,43.216609],[-74.322375,43.214684],[-74.322704,43.216923],[-74.32637799999999,43.241634999999995],[-74.33917,43.240812],[-74.345961,43.240759],[-74.357019,43.239604],[-74.457719,43.232884999999996],[-74.516689,43.229538999999995],[-74.528213,43.228854999999996],[-74.534657,43.228114999999995],[-74.70534599999999,43.286394],[-74.713005,43.289003],[-74.712615,43.286142999999996],[-74.71417,43.286764],[-74.723084,43.289767999999995],[-74.74800499999999,43.298252999999995],[-74.85155999999999,43.334218],[-74.867712,43.339825999999995],[-74.834896,43.392505],[-74.775617,43.486677],[-74.77717799999999,43.500067],[-74.777625,43.501657],[-74.797795,43.653397999999996],[-74.808669,43.734781],[-74.809242,43.739070999999996],[-74.810617,43.749351999999995],[-74.813155,43.766887],[-74.813288,43.767835],[-74.813305,43.768170999999995],[-74.813383,43.768707],[-74.82010799999999,43.818507],[-74.82843,43.881569999999996],[-74.854171,44.070088999999996],[-74.768108,44.077604],[-74.749623,44.079156999999995],[-74.738554,44.07982],[-74.649076,44.088342999999995],[-74.535156,44.09925],[-74.38486499999999,44.111567],[-74.374607,44.112252],[-74.28187,44.120551999999996],[-74.261376,44.000063],[-74.260761,43.997856],[-74.25599799999999,43.969797],[-74.336826,43.925222999999995],[-74.255073,43.849131],[-74.235542,43.830984],[-74.213734,43.810874999999996],[-74.21117799999999,43.811844],[-74.207531,43.815673],[-74.206328,43.816469],[-74.202829,43.820315],[-74.201218,43.821238],[-74.195872,43.821723999999996],[-74.192486,43.823505999999995],[-74.18969,43.824214],[-74.17812099999999,43.823664],[-74.175343,43.823755],[-74.172433,43.824757],[-74.16903099999999,43.826631],[-74.16596799999999,43.825922999999996],[-74.16293,43.825900999999995],[-74.158703,43.828477],[-74.15348,43.82957],[-74.149076,43.829612999999995],[-74.145122,43.828911],[-74.141266,43.827525],[-74.13946399999999,43.826435],[-74.13792,43.822365],[-74.138677,43.817719],[-74.133091,43.817538],[-74.12994499999999,43.815000999999995],[-74.12458699999999,43.813615],[-74.12236899999999,43.812622999999995],[-74.12001599999999,43.810294],[-74.11657,43.809031],[-74.109364,43.808211],[-74.103066,43.805118],[-74.096818,43.806052],[-74.09168,43.804328999999996],[-74.089418,43.804677],[-74.087908,43.807517999999995],[-74.085652,43.808862999999995],[-74.083424,43.808206],[-74.077528,43.804679],[-74.069569,43.801652999999995],[-74.062859,43.799496999999995],[-74.057298,43.798445],[-74.053973,43.798114],[-74.047062,43.796343],[-74.047073,43.794093],[-74.048264,43.790977999999996],[-74.050991,43.788615],[-74.04996,43.786418],[-74.04781899999999,43.784532],[-74.046139,43.781206999999995],[-74.049179,43.776056],[-74.05410599999999,43.770331999999996],[-74.055415,43.765449],[-74.055193,43.760971],[-74.05568099999999,43.756038],[-74.05750499999999,43.752137],[-74.05747099999999,43.750063999999995],[-74.058876,43.746908],[-74.05842799999999,43.745238],[-74.057005,43.744513]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36045","STATE":"36","COUNTY":"045","NAME":"Jefferson","LSAD":"County","CENSUSAREA":1268.59},"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.3213820895224,44.037286925651095],[-76.32129669189449,44.037158966064496],[-76.32129669189449,44.034643894114794],[-76.32129669189449,44.0344960851356],[-76.32129669189449,44.0312080383301],[-76.3279684620929,44.033774103791],[-76.3288218153609,44.0341023165864],[-76.3290328979492,44.0341835021973],[-76.3292019249176,44.0341411776274],[-76.3293703231958,44.0340990104823],[-76.3330066463282,44.0331884705005],[-76.3337860107422,44.0329933166504],[-76.3340070883174,44.0330817476805],[-76.33676147460939,44.0341835021973],[-76.3358155121126,44.0356014352989],[-76.3338431554875,44.0385578630179],[-76.3331909179688,44.0395355224609],[-76.3296279907227,44.044296264648395],[-76.31790658840089,44.051325349181695],[-76.31772613525389,44.05143356323239],[-76.3176725430494,44.051299582721],[-76.316535949707,44.0484580993652],[-76.3167272932019,44.048338663001005],[-76.32129669189449,44.0454864501953],[-76.32367706298831,44.0407257080078],[-76.3213820895224,44.037286925651095]]],[[[-76.3873632978456,43.90964632309289],[-76.3886032104492,43.908126831054695],[-76.4067158772903,43.8997101265641],[-76.4086174187283,43.8988265066918],[-76.4226303100586,43.8923149108887],[-76.4312801254062,43.8904232325756],[-76.4339705398755,43.8898348502229],[-76.4446258544922,43.8875045776367],[-76.4459991455078,43.8902549743652],[-76.40647125244139,43.9211883544922],[-76.3779449462891,43.9211883544922],[-76.38093646245969,43.917522301747596],[-76.3873632978456,43.90964632309289]]],[[[-76.3153214524322,43.9134085308013],[-76.3013000488281,43.917751312255895],[-76.3019924421924,43.916366525527295],[-76.30442084471879,43.9115097204745],[-76.307487487793,43.9053764343262],[-76.312118154145,43.899399361555005],[-76.31969632245949,43.8896177750522],[-76.3263092634154,43.881082064137196],[-76.32639312744139,43.880973815918004],[-76.3264875169459,43.880945070851695],[-76.3280945832813,43.880455660206195],[-76.3302486180108,43.879799677622],[-76.3342971801758,43.8785667419434],[-76.3405759834843,43.8785667419434],[-76.3534898604263,43.8785667419434],[-76.3559494018555,43.8785667419434],[-76.3538566342435,43.88181317372101],[-76.3537372663765,43.881998344608796],[-76.3459777832031,43.8940353393555],[-76.3315760339886,43.9031999237131],[-76.31573486328129,43.9132804870605],[-76.3153214524322,43.9134085308013]]],[[[-76.3804041738068,44.0344133449627],[-76.3813781738281,44.034778594970696],[-76.3818636190459,44.0367203758416],[-76.3819732666016,44.037158966064496],[-76.3795928955078,44.0454864501953],[-76.37007904052729,44.0520286560059],[-76.3622899486485,44.0531413834172],[-76.3575820922852,44.0538139343262],[-76.35452764175518,44.0538139343262],[-76.3421173095703,44.0538139343262],[-76.3421173095703,44.0484580993652],[-76.343327827836,44.046038032800396],[-76.343992,44.04471022066159],[-76.34656448653121,44.0395673088865],[-76.34687805175778,44.0389404296875],[-76.34900640773171,44.0380891965004],[-76.36174774169919,44.0329933166504],[-76.36496243425,44.0329933166504],[-76.36660513744859,44.0329933166504],[-76.3766174316406,44.0329933166504],[-76.3804041738068,44.0344133449627]]],[[[-75.8600599283155,44.4032818662487],[-75.839732,44.393851999999995],[-75.82342899999999,44.386274],[-75.814189,44.381951],[-75.784311,44.368106999999995],[-75.76556599999999,44.359660999999996],[-75.751221,44.353234],[-75.735137,44.346353],[-75.70424899999999,44.331644],[-75.68433999999999,44.322783],[-75.67060000000001,44.317014],[-75.662729,44.31375],[-75.66094,44.313007999999996],[-75.645151,44.306269],[-75.629537,44.299541],[-75.619061,44.295049],[-75.606582,44.289730999999996],[-75.59294299999999,44.283847],[-75.587525,44.281445],[-75.57472899999999,44.275773],[-75.536484,44.258914],[-75.535433,44.258094],[-75.533592,44.257563999999995],[-75.531188,44.256476],[-75.50975199999999,44.246897],[-75.49737,44.241302],[-75.493708,44.237988],[-75.4897,44.237372],[-75.48518,44.234493],[-75.480822,44.232665],[-75.478022,44.231065],[-75.474141,44.230174999999996],[-75.47105499999999,44.228781],[-75.466092,44.225445],[-75.463865,44.225148],[-75.457886,44.222085],[-75.455805,44.221809],[-75.453879,44.221165],[-75.446124,44.217655],[-75.447164,44.216767],[-75.53381999999999,44.117157],[-75.545886,44.102978],[-75.507724,44.085206],[-75.50751199999999,44.085105999999996],[-75.484528,44.074172],[-75.498451,44.056647],[-75.502741,44.051252999999996],[-75.493342,44.046835],[-75.502014,44.036243999999996],[-75.50200199999999,44.034462999999995],[-75.50183,44.009555999999996],[-75.549993,44.008162999999996],[-75.549232,44.003966],[-75.548547,44.000076],[-75.547489,43.996159999999996],[-75.543757,43.972728],[-75.542898,43.967794999999995],[-75.55227,43.967105],[-75.553522,43.966834],[-75.575496,43.96553],[-75.577181,43.965275999999996],[-75.58010999999999,43.968334],[-75.588625,43.967048999999996],[-75.592516,43.966397],[-75.598835,43.967234999999995],[-75.60367,43.971363],[-75.621045,43.96095],[-75.651889,43.942102],[-75.666904,43.932978999999996],[-75.673763,43.928821],[-75.691457,43.918093],[-75.692579,43.91746],[-75.704038,43.910472],[-75.706319,43.909701999999996],[-75.711323,43.906391],[-75.726197,43.897679],[-75.72740499999999,43.897354],[-75.743661,43.887598],[-75.746915,43.885858],[-75.758157,43.878785],[-75.824349,43.882957],[-75.84056,43.883976],[-75.840594,43.880956999999995],[-75.841437,43.871894999999995],[-75.84176599999999,43.868992],[-75.84749,43.818622],[-75.850534,43.791886],[-75.819737,43.790341],[-75.786759,43.78832],[-75.774553,43.688883999999995],[-75.87136,43.695872],[-75.87463799999999,43.695581999999995],[-75.904202,43.698282999999996],[-75.904245,43.698285],[-75.936762,43.700136],[-75.955052,43.701454999999996],[-75.999642,43.704609999999995],[-76.025087,43.707018],[-76.022003,43.668143],[-76.066391,43.671327999999995],[-76.070409,43.671659],[-76.07629299999999,43.672143],[-76.101959,43.674279999999996],[-76.10801599999999,43.674735999999996],[-76.122171,43.675863],[-76.139399,43.676891999999995],[-76.157755,43.677879],[-76.17158599999999,43.678650999999995],[-76.173309,43.678754],[-76.199907,43.680202],[-76.2005002287568,43.68023076718659],[-76.2010870082546,43.684810169625],[-76.2011924559441,43.685633114884695],[-76.2013290496813,43.686699133203],[-76.2013905322316,43.687178961386394],[-76.2018828982966,43.6910215331991],[-76.2021059412282,43.6927622268477],[-76.20221007407919,43.6935749107153],[-76.20226248489278,43.69398394035709],[-76.20543599999999,43.718751],[-76.2124352548822,43.7500688141606],[-76.213205,43.753513],[-76.2240561850703,43.7877101419181],[-76.22693645578569,43.79678721744269],[-76.22914920877419,43.803760633478596],[-76.22926799999999,43.804134999999995],[-76.2296252202504,43.8044151850025],[-76.23257273251919,43.806727060467196],[-76.2379002744235,43.8109057075068],[-76.2384122645526,43.8113072859599],[-76.2422999756406,43.814356604523795],[-76.2438678063957,43.8155863295004],[-76.2468216251237,43.817903151424005],[-76.2500677732771,43.819083568934296],[-76.26418626791839,43.824217566985695],[-76.26950632254969,43.8261521323062],[-76.2716475444618,43.82890928575701],[-76.2755873418015,43.8339823824638],[-76.2903542032656,43.8372722982823],[-76.299065170711,43.839213018703006],[-76.2987273074967,43.8406996168459],[-76.29785499673001,43.8445377842194],[-76.2964353020383,43.8507844408626],[-76.2962229261535,43.8517188947554],[-76.29562809534329,43.8543361503204],[-76.28710554038929,43.8665112288261],[-76.28600428431409,43.868084451790594],[-76.28448368804449,43.8688230271216],[-76.2619447567412,43.8797705080404],[-76.2555974738667,43.8810658718923],[-76.2533379461392,43.881527],[-76.24557829732129,43.883110601799594],[-76.24116662460179,43.8840109431709],[-76.2401937486209,43.884209489289496],[-76.2396886489557,43.8843125708538],[-76.2282614181389,43.886644658775595],[-76.2270832010961,43.887720422162495],[-76.2257212656006,43.8889639284845],[-76.21927778995129,43.894847101903295],[-76.2157663129685,43.898053233061596],[-76.2130883416486,43.9004983373101],[-76.21302956086139,43.900552006724595],[-76.2129637085845,43.900612132716496],[-76.212450871448,43.9010803753194],[-76.2122833532716,43.9008709775989],[-76.21179040546009,43.900254792834495],[-76.2097012111539,43.897643299951696],[-76.20996564117969,43.89730752009],[-76.2128012290979,43.893706819617094],[-76.22244425882289,43.881461859244595],[-76.227485,43.875060999999995],[-76.22701554139819,43.874587552451096],[-76.2193134154452,43.8668199822337],[-76.20251586535619,43.864927169939996],[-76.202257,43.864898],[-76.1969452123718,43.8672944678993],[-76.1966891669037,43.8674099854592],[-76.19277699999999,43.869175],[-76.180604,43.877528999999996],[-76.1712578512846,43.881715221744],[-76.16802944066539,43.883161255093604],[-76.158249,43.887541999999996],[-76.145506,43.888681],[-76.133267,43.892975],[-76.1327746423071,43.8933794543134],[-76.127285,43.897889],[-76.126405316931,43.90367733014959],[-76.125023,43.912773],[-76.1267888156866,43.9193859357881],[-76.1286131761146,43.9262181201753],[-76.13014105251969,43.9319399792774],[-76.13040347006101,43.9329227264371],[-76.13044599999999,43.933082],[-76.1304948420325,43.9330938610863],[-76.1345652660235,43.934082346777004],[-76.13594630148859,43.934417725548],[-76.136589613735,43.9345739512758],[-76.1366633595928,43.9345918601534],[-76.13668979932649,43.9346598480399],[-76.1369673356202,43.9353735127953],[-76.13864660618849,43.9396916371134],[-76.13906445759109,43.940766112148594],[-76.13906931235019,43.9407785958149],[-76.13875424924149,43.9411052906204],[-76.1372158865005,43.9427004475986],[-76.13716032736049,43.9427580579057],[-76.13435798853949,43.9456638552229],[-76.13313639723329,43.946328],[-76.1329137233697,43.9464490615062],[-76.1326395818144,43.946598104546396],[-76.1324340868025,43.9467098263949],[-76.1316604161752,43.9471304493183],[-76.1287267767826,43.948725386406096],[-76.1272946350469,43.9495040015199],[-76.12617945214129,43.950110295047494],[-76.124271753041,43.9511474573024],[-76.1239072634925,43.9513456200011],[-76.1125096284748,43.95466993021459],[-76.1124858506645,43.9546768654093],[-76.11232293578,43.9548533565341],[-76.1010644378365,43.9670500626397],[-76.0999593777295,43.967660753751495],[-76.08298053419219,43.977043798864194],[-76.08129973337981,43.977043798864194],[-76.07928822766559,43.977043798864194],[-76.07479264927841,43.977043798864194],[-76.0734626901689,43.977043798864194],[-76.06489663054789,43.981326828674696],[-76.0644207383467,43.9851339662839],[-76.06632430715139,43.988941103893396],[-76.0720866649992,43.9912460470323],[-76.0734626901689,43.9917964571002],[-76.0815528575887,43.9965553791119],[-76.0839804443481,43.9949267449569],[-76.0846042308618,43.9945082552704],[-76.1191483414808,43.9713330924501],[-76.1219119336879,43.9702583621474],[-76.12590435226639,43.9687057549224],[-76.13309843418409,43.9659080563989],[-76.1362804607228,43.9646706016339],[-76.1363513129476,43.964670853669006],[-76.14607168770569,43.964705430931296],[-76.15900434948209,43.958995095263],[-76.1625392389588,43.9600450360572],[-76.1692209195665,43.9620296438052],[-76.1698011999999,43.962202],[-76.16980199999999,43.962202],[-76.173727462606,43.964526753133],[-76.1747518967056,43.96513344758449],[-76.184874,43.971128],[-76.184892192952,43.971124217693],[-76.1862196189291,43.9708482463938],[-76.18901510623,43.9702670657663],[-76.18923636311969,43.9702210665526],[-76.1902612027905,43.9700080028185],[-76.200249253893,43.9679314912189],[-76.20048732542979,43.9682204149636],[-76.2005352435197,43.9682785683831],[-76.2015491108287,43.969508998292696],[-76.20512231817591,43.9738454446443],[-76.2063517517193,43.9753374858515],[-76.20800874384419,43.9773484123823],[-76.2076899713018,43.9822077348801],[-76.2076403452308,43.982964227523595],[-76.207026,43.9837427642395],[-76.20254844973519,43.9894169960944],[-76.19095872951489,43.997747107502796],[-76.1896891350361,43.9986596285344],[-76.1873198992979,44.000362516721296],[-76.18697591895359,44.0004380246018],[-76.1759976987091,44.0028478778261],[-76.16139888754068,44.0060524949118],[-76.1482967388023,44.0089285763422],[-76.1390985324167,44.0140885457781],[-76.12878515855449,44.019874096969204],[-76.1258783625011,44.023977809044595],[-76.12485223984109,44.0254264527999],[-76.1206949911347,44.0312955097971],[-76.121056217157,44.033462865931],[-76.12117088333589,44.03415086300409],[-76.124502128744,44.0360544318088],[-76.12462773595179,44.0360708153576],[-76.1246511148984,44.03607386478549],[-76.12959513278601,44.0367187366838],[-76.13111749289631,44.03691730539379],[-76.1354476493709,44.0374821084122],[-76.14020657138249,44.0360544318088],[-76.14972441540579,44.0308196175959],[-76.1503920878619,44.030756029742896],[-76.1597181516303,44.0298678331935],[-76.1634286268267,44.031104658259004],[-76.16380103974109,44.0312287958971],[-76.1677830490713,44.0325561323405],[-76.1682842112513,44.032723186400496],[-76.16810799622169,44.032864158424196],[-76.1675731784806,44.033292012617096],[-76.1544337511492,44.043803554482295],[-76.1523542121207,44.04546718570509],[-76.15162798421049,44.0460481680333],[-76.15078777747489,44.0475605401574],[-76.1501617792335,44.048687336991904],[-76.14967396058009,44.049565410568],[-76.148986,44.05080373961209],[-76.14890138949539,44.0509560385203],[-76.1476496739698,44.05320912646639],[-76.1470777942735,44.0542385099197],[-76.14686906219879,44.0546142276542],[-76.1469715082238,44.0547550909386],[-76.1495944324699,44.058361611777],[-76.1501855980559,44.0591744644578],[-76.15067619980809,44.059849041867096],[-76.1544833374175,44.0622285028729],[-76.1625735048373,44.0622285028729],[-76.1632291815109,44.0623159264294],[-76.1658984002453,44.0626718222606],[-76.16971188785479,44.063180287275095],[-76.17685027087231,44.0608008262693],[-76.18351276168859,44.0584213652635],[-76.183684852083,44.0583826449248],[-76.1852562211338,44.0580290868883],[-76.20254844973519,44.054138335453004],[-76.2040152064025,44.054251162889],[-76.20579732822789,44.0543882491832],[-76.20873504835039,44.0546142276542],[-76.2120662937585,44.0565177964588],[-76.21310950739381,44.0580826169117],[-76.21396986256329,44.0593731496659],[-76.2134939703621,44.0612767184705],[-76.2058796951434,44.068890993689195],[-76.2058796951434,44.0707945624938],[-76.2061157048114,44.0709125673278],[-76.20778326394809,44.0717463468962],[-76.2144457547644,44.0698427780916],[-76.2189566689394,44.067066830906896],[-76.22022691642219,44.0662851401483],[-76.2206323533796,44.0660356404822],[-76.2407039094357,44.0619586056583],[-76.24376510993109,44.061336799307696],[-76.2510894542541,44.059849041867096],[-76.25917962167401,44.0527106588496],[-76.2767876331172,44.0312955097971],[-76.27955490449828,44.0226862210557],[-76.27981382778549,44.0218806819397],[-76.2809184188044,44.018444176547696],[-76.2810706629276,44.0179705281643],[-76.2804020574865,44.017435643811396],[-76.27869120192179,44.0160669593597],[-76.2744925615331,44.01653347495849],[-76.2744081721113,44.0165428515609],[-76.2639365497101,44.019583],[-76.25322922616489,44.02269157780349],[-76.24834203105539,44.0241104408998],[-76.2400036040183,44.0265312745557],[-76.2338984520628,44.0283037380267],[-76.2336938161439,44.0283631484548],[-76.23015019740289,44.0293919409925],[-76.22163193141431,44.0299243326167],[-76.2173683487159,44.030190806535295],[-76.21492164696559,44.030343725394694],[-76.2115061253552,44.0302172245943],[-76.2020725575341,44.0298678331935],[-76.20016898872939,44.028440156590094],[-76.19969309652829,44.025584803383],[-76.1998676777954,44.0253709413308],[-76.21116134907369,44.0115361940148],[-76.21872878457489,44.002266085525896],[-76.21872878457489,43.994175918106],[-76.2336298767752,43.9808025475307],[-76.236864,43.977900000000005],[-76.2545550447009,43.966212953535],[-76.25532194452559,43.966021228578796],[-76.26801458491629,43.9628480684812],[-76.2793605560758,43.960011575691304],[-76.2806768174944,43.9596825103367],[-76.2808638830364,43.960075347974794],[-76.2841138928619,43.96690036860849],[-76.2791976092216,43.973400687338696],[-76.2729935263384,43.9816037364547],[-76.26870199999999,43.987277999999996],[-76.2672306709257,43.9934801489675],[-76.2670143157512,43.994392159098595],[-76.266733,43.995577999999995],[-76.2671559988447,43.9963796684468],[-76.2685122108029,43.9989499646724],[-76.269672,44.001148],[-76.281928,44.009177],[-76.287821,44.01142],[-76.2964873641853,44.0084889805563],[-76.3009555621631,44.009863810703294],[-76.302789435333,44.0144967534482],[-76.30648106627459,44.023822978984896],[-76.3074860053616,44.0263617724677],[-76.306499192306,44.02815622668469],[-76.30139370178819,44.037440223220095],[-76.2988021155426,44.042152851251004],[-76.29733464024869,44.0448213579297],[-76.2969863510173,44.0454546988411],[-76.29816317858901,44.049348929851],[-76.29847104690019,44.0503676944969],[-76.298503269921,44.0504743234456],[-76.2988823887788,44.0517288627241],[-76.30053218589529,44.05718819359419],[-76.30344682971801,44.0589778886298],[-76.3042069624042,44.0594446371513],[-76.3355736484976,44.0658535944663],[-76.3556232670785,44.06995020669],[-76.360306,44.070907],[-76.3604754252447,44.0766705575622],[-76.3607764302946,44.086910235449395],[-76.360798,44.087644],[-76.3616528880888,44.0894116959494],[-76.36634258525702,44.0991088233245],[-76.36697159103339,44.100409450831],[-76.363835,44.111695999999995],[-76.3630281675254,44.1133519937749],[-76.35816322728348,44.1233371034591],[-76.355679,44.133258],[-76.35240004577,44.1372257997947],[-76.312647,44.199044],[-76.286547,44.203773],[-76.2652690495166,44.20400258912029],[-76.249661,44.204170999999995],[-76.245487,44.203669],[-76.206777,44.214543],[-76.201807410824,44.2166985580988],[-76.191328,44.221244],[-76.164265,44.239602999999995],[-76.161833,44.280777],[-76.130884,44.296634999999995],[-76.1265651011154,44.294580566320796],[-76.11813599999999,44.29485],[-76.111931,44.298030999999995],[-76.097351,44.299547],[-76.0710166613692,44.315803930992494],[-76.045228,44.331724],[-76.008361,44.343855999999995],[-76.000998,44.347533999999996],[-75.983333765376,44.347410580108495],[-75.98239199999999,44.347404],[-75.980316859834,44.3471394966074],[-75.978281,44.34688],[-75.974839,44.346171999999996],[-75.9744379256881,44.3456020522936],[-75.973053,44.343633999999994],[-75.970185,44.342835],[-75.94954,44.349129],[-75.939664,44.355395],[-75.929465,44.359603],[-75.9222471352419,44.365680216009196],[-75.91298499999999,44.368083999999996],[-75.871496,44.394839],[-75.8600599283155,44.4032818662487]]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36051","STATE":"36","COUNTY":"051","NAME":"Livingston","LSAD":"County","CENSUSAREA":631.763},"geometry":{"type":"Polygon","coordinates":[[[-77.95496399999999,42.862753999999995],[-77.955275,42.890161],[-77.95535,42.894738],[-77.95553,42.905861],[-77.94060999999999,42.90542],[-77.93522999999999,42.905260999999996],[-77.934877,42.919433999999995],[-77.934739,42.925014999999995],[-77.934234,42.94558],[-77.911413,42.945063999999995],[-77.910305,42.969193999999995],[-77.910044,42.978474999999996],[-77.909832,42.987762],[-77.900154,42.987862],[-77.86582899999999,42.987862],[-77.86480499999999,42.985833],[-77.86007599999999,42.987963],[-77.85852899999999,42.987884],[-77.854286,42.987915],[-77.82458299999999,42.988057999999995],[-77.811695,42.988135],[-77.80691399999999,42.988161999999996],[-77.771622,42.98833],[-77.73095699999999,42.988372],[-77.73155299999999,42.987032],[-77.731875,42.984553],[-77.73231899999999,42.983325],[-77.732941,42.981912],[-77.73147399999999,42.980751999999995],[-77.724942,42.979423],[-77.720748,42.979192999999995],[-77.719352,42.977269],[-77.717828,42.973365],[-77.718837,42.971441],[-77.722449,42.972096],[-77.724328,42.971748],[-77.725094,42.968041],[-77.726199,42.965968],[-77.725554,42.963589],[-77.725032,42.959223],[-77.725352,42.958222],[-77.725747,42.957307],[-77.72840699999999,42.953033],[-77.729125,42.953174999999995],[-77.730302,42.955092],[-77.732568,42.955931],[-77.733891,42.955611999999995],[-77.73446899999999,42.954771],[-77.732903,42.950703999999995],[-77.730907,42.948417],[-77.73167099999999,42.946078],[-77.73375,42.94528],[-77.735226,42.94678],[-77.737554,42.947869],[-77.73849299999999,42.947739999999996],[-77.74123999999999,42.945231],[-77.744637,42.944804999999995],[-77.746371,42.944072],[-77.75019,42.944364],[-77.75318399999999,42.945648],[-77.755466,42.944416],[-77.759418,42.944491],[-77.76039,42.943784],[-77.760615,42.942572999999996],[-77.758727,42.940461],[-77.718698,42.940292],[-77.700317,42.940262],[-77.67081499999999,42.940166999999995],[-77.67042,42.940165],[-77.63752199999999,42.939963999999996],[-77.63502199999999,42.944463999999996],[-77.61196199999999,42.944157],[-77.607321,42.944064],[-77.581232,42.943964],[-77.580377,42.943963],[-77.57788099999999,42.941949],[-77.578001,42.939367],[-77.574882,42.938246],[-77.572898,42.935368],[-77.56725999999999,42.936310999999996],[-77.56630299999999,42.934971999999995],[-77.56821699999999,42.932480999999996],[-77.567615,42.931345],[-77.567077,42.928698999999995],[-77.564824,42.926232999999996],[-77.562247,42.925498999999995],[-77.561645,42.922941],[-77.560566,42.921431999999996],[-77.563285,42.920294],[-77.563008,42.917429999999996],[-77.560347,42.918492],[-77.55971699999999,42.917563],[-77.561835,42.915454],[-77.560566,42.913959],[-77.558993,42.910455],[-77.558303,42.907274],[-77.560408,42.903734],[-77.55881699999999,42.904018],[-77.55899099999999,42.902252999999995],[-77.560487,42.900056],[-77.556304,42.899028],[-77.55424599999999,42.897487],[-77.557265,42.895512],[-77.556294,42.894389],[-77.553891,42.894411],[-77.552515,42.893556],[-77.55279,42.891867],[-77.555343,42.891476999999995],[-77.555988,42.889824],[-77.55328399999999,42.890039],[-77.55282799999999,42.888732999999995],[-77.554346,42.886278999999995],[-77.553787,42.885041],[-77.550313,42.880815],[-77.54936599999999,42.879072],[-77.551735,42.878639],[-77.553017,42.877103999999996],[-77.55400399999999,42.874381],[-77.55175,42.873487],[-77.550673,42.874568],[-77.548118,42.874666],[-77.547872,42.872864],[-77.55203999999999,42.870763],[-77.55234399999999,42.869288],[-77.550692,42.868570999999996],[-77.548836,42.869938],[-77.54683299999999,42.869096],[-77.546309,42.86569],[-77.54734499999999,42.864506],[-77.549649,42.864432],[-77.549914,42.867062],[-77.551081,42.867188],[-77.550805,42.864171],[-77.552269,42.864737],[-77.55493,42.862966],[-77.551926,42.854064],[-77.581649,42.854009],[-77.587997,42.854011],[-77.588022,42.849519],[-77.588071,42.830658],[-77.588151,42.792572],[-77.588157,42.789522],[-77.588217,42.762964],[-77.596204,42.763031999999995],[-77.599724,42.763062999999995],[-77.606172,42.763118999999996],[-77.61166999999999,42.763169],[-77.611019,42.757058],[-77.610912,42.755005999999995],[-77.609787,42.751954999999995],[-77.609195,42.749379],[-77.609217,42.747901999999996],[-77.608716,42.745703],[-77.609355,42.743756999999995],[-77.608631,42.742827999999996],[-77.608661,42.738617999999995],[-77.60791499999999,42.737404999999995],[-77.608302,42.735552],[-77.607483,42.732523],[-77.60757,42.727847],[-77.606713,42.726521],[-77.605216,42.719963],[-77.602088,42.696508],[-77.6002,42.68235],[-77.599964,42.680578],[-77.599447,42.676697],[-77.598815,42.671965],[-77.59091099999999,42.671837],[-77.576927,42.671617999999995],[-77.57309,42.671549],[-77.516204,42.670578],[-77.504103,42.670423],[-77.49403,42.670344],[-77.486875,42.670279],[-77.487348,42.663388999999995],[-77.488928,42.64642],[-77.48998,42.641962],[-77.490129,42.632940999999995],[-77.490554,42.601375999999995],[-77.490612,42.597300999999995],[-77.490657,42.593961],[-77.490708,42.589842],[-77.490889,42.577287999999996],[-77.539675,42.578399],[-77.574741,42.579193],[-77.58370000000001,42.579439],[-77.58897499999999,42.579572],[-77.620457,42.580163999999996],[-77.621292,42.579899],[-77.622424,42.580123],[-77.650847,42.580369],[-77.654259,42.580394],[-77.659917,42.580408999999996],[-77.660879,42.549067],[-77.66122,42.538128],[-77.661315,42.535067],[-77.668651,42.535067],[-77.69711,42.535067],[-77.704049,42.535320999999996],[-77.70400000000001,42.534586999999995],[-77.72061699999999,42.535066],[-77.722673,42.47971],[-77.72296399999999,42.471216],[-77.730276,42.471354999999996],[-77.777281,42.472522],[-77.840231,42.474576],[-77.84067,42.499893],[-77.840694,42.517770999999996],[-77.87472199999999,42.518114999999995],[-77.896193,42.51808],[-77.901607,42.518313],[-77.905205,42.518097999999995],[-77.936486,42.518311],[-77.954956,42.518369],[-78.02190999999999,42.518485999999996],[-78.043418,42.518464],[-78.04219499999999,42.518933],[-78.03826099999999,42.521522],[-78.040571,42.523983],[-78.039456,42.525994999999995],[-78.04065899999999,42.527953],[-78.04185199999999,42.529461999999995],[-78.04364,42.528611999999995],[-78.045445,42.526446],[-78.047658,42.526505],[-78.047834,42.528555],[-78.043722,42.532111],[-78.04256099999999,42.53515],[-78.04636099999999,42.53666],[-78.049129,42.538756],[-78.050297,42.538502],[-78.057307,42.532706],[-78.06060000000001,42.53279],[-78.060752,42.536708999999995],[-78.059285,42.538733],[-78.05494399999999,42.540979],[-78.05386299999999,42.542023],[-78.05018799999999,42.543174],[-78.04910799999999,42.544405999999995],[-78.051445,42.546738999999995],[-78.051895,42.548383],[-78.050517,42.553765],[-78.04796499999999,42.557929],[-78.035523,42.567322],[-78.028005,42.567439],[-78.03053299999999,42.569998999999996],[-78.030638,42.570988],[-78.033324,42.573586999999996],[-78.036892,42.5735],[-78.039157,42.571396],[-78.045237,42.570018],[-78.04699099999999,42.570589999999996],[-78.050359,42.573585],[-78.050827,42.576007999999995],[-78.048247,42.579305999999995],[-78.045682,42.580495],[-78.04095099999999,42.583774999999996],[-78.03627399999999,42.587785],[-78.032528,42.586264],[-78.027197,42.586503],[-78.024616,42.585141],[-78.022851,42.584894],[-78.01518999999999,42.586786],[-78.01168899999999,42.587029],[-78.004693,42.592779],[-78.00352699999999,42.595743999999996],[-78.00393199999999,42.597167],[-78.006162,42.598800999999995],[-78.008239,42.598687999999996],[-78.012058,42.599554999999995],[-78.015102,42.599624999999996],[-78.017118,42.598558],[-78.01812699999999,42.597063],[-78.019956,42.596038],[-78.021879,42.596081999999996],[-78.026173,42.597643],[-78.02808499999999,42.599788],[-78.029369,42.602837],[-78.027579,42.604786],[-78.02409899999999,42.605553],[-78.020404,42.605714],[-78.015997,42.607406],[-78.015452,42.609286999999995],[-78.01538099999999,42.609449],[-78.013733,42.612051],[-78.010545,42.612206],[-78.006596,42.610110999999996],[-78.003259,42.610707999999995],[-77.999152,42.612963],[-77.997545,42.615524],[-77.994389,42.6158],[-77.99206699999999,42.61459],[-77.99040000000001,42.61486],[-77.988019,42.617539],[-77.987374,42.621013],[-77.989131,42.625625],[-77.98754,42.628493],[-77.985536,42.629963],[-77.982661,42.630367],[-77.98110799999999,42.632449],[-77.98352299999999,42.634620999999996],[-77.983145,42.636021],[-77.980034,42.637491999999995],[-77.976439,42.638013],[-77.97638599999999,42.641135999999996],[-77.97755699999999,42.643620999999996],[-77.976743,42.645914],[-77.971758,42.647351],[-77.971012,42.649293],[-77.97446699999999,42.652401999999995],[-77.974689,42.653179],[-77.974733,42.654077],[-77.968424,42.663031],[-77.965758,42.66361],[-77.962626,42.661985],[-77.95868999999999,42.666382],[-77.956334,42.667322],[-77.955907,42.700537999999995],[-77.955306,42.710623999999996],[-77.955382,42.713708],[-77.955141,42.736225],[-77.955257,42.737263],[-77.95503,42.752016],[-77.955123,42.757388999999996],[-77.95512699999999,42.758263],[-77.955382,42.770964],[-77.95537499999999,42.78977],[-77.955615,42.793839999999996],[-77.955567,42.800477],[-77.95550999999999,42.803694],[-77.95543099999999,42.806481],[-77.955355,42.810524],[-77.95508099999999,42.814825],[-77.95533999999999,42.822964999999996],[-77.955332,42.825415],[-77.955299,42.832878],[-77.955035,42.847777],[-77.955004,42.851037],[-77.954893,42.861307],[-77.95496399999999,42.862753999999995]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36053","STATE":"36","COUNTY":"053","NAME":"Madison","LSAD":"County","CENSUSAREA":654.842},"geometry":{"type":"Polygon","coordinates":[[[-75.993394,43.183375999999996],[-75.992226,43.184852],[-75.989936,43.184892999999995],[-75.986195,43.183375999999996],[-75.98601699999999,43.181576],[-75.98454699999999,43.17966],[-75.98222899999999,43.178121999999995],[-75.979489,43.177400999999996],[-75.973438,43.179898],[-75.970652,43.179572],[-75.965807,43.180448],[-75.964869,43.179998],[-75.959603,43.180423],[-75.959274,43.17624],[-75.957728,43.173967],[-75.95559899999999,43.172182],[-75.952692,43.171096999999996],[-75.949486,43.171302],[-75.94608,43.173714],[-75.938172,43.174318],[-75.935864,43.175747],[-75.932895,43.176688],[-75.930655,43.173891999999995],[-75.93003399999999,43.171116999999995],[-75.92815999999999,43.169339],[-75.928113,43.163903999999995],[-75.92755799999999,43.162805999999996],[-75.92560399999999,43.162213],[-75.923538,43.161215999999996],[-75.919307,43.160247],[-75.884275,43.155561999999996],[-75.879235,43.153704],[-75.875332,43.152536],[-75.871912,43.148405],[-75.868099,43.146699],[-75.86451,43.146995],[-75.85996999999999,43.148205],[-75.856627,43.150351],[-75.856527,43.151666999999996],[-75.85473999999999,43.152665999999996],[-75.853422,43.156143],[-75.846423,43.157517],[-75.844154,43.15826],[-75.840277,43.160455999999996],[-75.83729699999999,43.160405],[-75.83278399999999,43.159172999999996],[-75.828425,43.158961],[-75.82376699999999,43.159711],[-75.818855,43.161361],[-75.812865,43.161369],[-75.81218199999999,43.161221],[-75.811938,43.161255],[-75.79704199999999,43.159105],[-75.795686,43.16072],[-75.79388999999999,43.159960999999996],[-75.793244,43.161052999999995],[-75.787809,43.164062],[-75.786489,43.166703999999996],[-75.7825,43.167369],[-75.777886,43.168591],[-75.776375,43.173342],[-75.775576,43.171614],[-75.773399,43.170718],[-75.768787,43.169895],[-75.76755899999999,43.168296999999995],[-75.764414,43.166582999999996],[-75.762002,43.166069],[-75.76016299999999,43.164685],[-75.758117,43.161715],[-75.75356599999999,43.160318],[-75.752527,43.158722],[-75.75054999999999,43.159523],[-75.749094,43.1578],[-75.744976,43.159245999999996],[-75.737774,43.164673],[-75.736685,43.164131],[-75.73515499999999,43.162825999999995],[-75.73306,43.162943],[-75.731691,43.160736],[-75.72842399999999,43.162375],[-75.727018,43.161679],[-75.728216,43.161066],[-75.725723,43.157202],[-75.724639,43.157481],[-75.724071,43.15988],[-75.724285,43.162763999999996],[-75.721991,43.161258],[-75.719899,43.161052999999995],[-75.71887799999999,43.158521],[-75.720321,43.158367999999996],[-75.72252499999999,43.15618],[-75.72027899999999,43.154421],[-75.71749799999999,43.151983],[-75.71608499999999,43.153312],[-75.714136,43.151646],[-75.709565,43.151437],[-75.707166,43.151444999999995],[-75.70657899999999,43.150729],[-75.70835799999999,43.14812],[-75.708513,43.145539],[-75.70641499999999,43.144461],[-75.70725399999999,43.143055],[-75.706497,43.140784],[-75.707752,43.140163],[-75.70687199999999,43.13716],[-75.70526799999999,43.137735],[-75.701374,43.136719],[-75.699514,43.138436999999996],[-75.697141,43.13964],[-75.695236,43.139734],[-75.694557,43.138798],[-75.696123,43.137654999999995],[-75.696297,43.136457],[-75.69375,43.135287],[-75.693805,43.133643],[-75.690753,43.132867],[-75.687101,43.13352],[-75.686401,43.131896999999995],[-75.68684999999999,43.129838],[-75.68365299999999,43.128153],[-75.68097,43.128487],[-75.67818799999999,43.127098],[-75.68026499999999,43.125901],[-75.68249,43.126476],[-75.685265,43.124083],[-75.680302,43.123081],[-75.681665,43.122499],[-75.681249,43.121021999999996],[-75.677129,43.121457],[-75.674551,43.122339],[-75.672699,43.121742],[-75.672433,43.120638],[-75.67360099999999,43.118038],[-75.670311,43.116546],[-75.669701,43.115182999999995],[-75.666742,43.1152],[-75.664256,43.114767],[-75.6614,43.115856],[-75.65973199999999,43.113639],[-75.65297,43.113952999999995],[-75.652836,43.113794],[-75.655874,43.109791],[-75.6532,43.107949999999995],[-75.65149799999999,43.106438],[-75.64826699999999,43.105899],[-75.646025,43.105857],[-75.646303,43.102874],[-75.64309399999999,43.099393],[-75.639729,43.097711],[-75.639276,43.09709],[-75.639556,43.096436999999995],[-75.639392,43.095622],[-75.641504,43.095380999999996],[-75.64108999999999,43.089872],[-75.641257,43.088839],[-75.640408,43.088563],[-75.640543,43.088212],[-75.640401,43.084658999999995],[-75.638778,43.081966],[-75.640507,43.081019999999995],[-75.640203,43.078888],[-75.638305,43.078309999999995],[-75.637316,43.076468],[-75.634748,43.076132],[-75.631067,43.076851],[-75.628327,43.074149],[-75.62518299999999,43.073439],[-75.622213,43.073845999999996],[-75.62201999999999,43.072122],[-75.61823,43.071131],[-75.619438,43.069041],[-75.617133,43.069669999999995],[-75.617704,43.0674],[-75.614565,43.065788],[-75.60695299999999,43.064844],[-75.60528599999999,43.065045],[-75.60226399999999,43.064077],[-75.599496,43.0614],[-75.604282,43.056098999999996],[-75.60363,43.054915],[-75.60723899999999,43.054207999999996],[-75.606794,43.050940999999995],[-75.60539899999999,43.051297],[-75.602232,43.048486],[-75.60207199999999,43.046596],[-75.60045699999999,43.046171],[-75.597926,43.042873],[-75.59911,43.041827999999995],[-75.598709,43.038066],[-75.596879,43.035399],[-75.569583,43.036784],[-75.559697,43.037110999999996],[-75.55604,43.037344],[-75.552774,43.037554],[-75.551737,43.029075999999996],[-75.551486,43.027122999999996],[-75.55107199999999,43.022182],[-75.550924,43.020410999999996],[-75.550777,43.018547],[-75.549826,43.009434999999996],[-75.54950199999999,43.005635],[-75.549071,43.000951],[-75.547294,42.982811999999996],[-75.544967,42.956309],[-75.544065,42.944098],[-75.54421099999999,42.93177],[-75.502331,42.932189],[-75.484082,42.93253],[-75.467389,42.932761],[-75.456499,42.932882],[-75.44417299999999,42.933088999999995],[-75.44293499999999,42.919191999999995],[-75.442664,42.91629],[-75.440332,42.893691],[-75.439724,42.886795],[-75.438124,42.872529],[-75.437167,42.863319],[-75.411417,42.864559],[-75.35391,42.867338],[-75.323819,42.868742999999995],[-75.307983,42.869372],[-75.29131799999999,42.869983],[-75.28316199999999,42.870334],[-75.258507,42.871308],[-75.250389,42.871612],[-75.249608,42.871669],[-75.247963,42.871604],[-75.24720099999999,42.86933],[-75.244957,42.869004],[-75.246138,42.864943],[-75.247494,42.864774999999995],[-75.247192,42.863935999999995],[-75.244573,42.8646],[-75.244134,42.861974],[-75.24506199999999,42.856054],[-75.246894,42.855356],[-75.244877,42.853863],[-75.245925,42.85237],[-75.24466,42.850594],[-75.247445,42.849858999999995],[-75.245764,42.847412],[-75.247717,42.846475],[-75.246614,42.844521],[-75.244401,42.844221],[-75.244197,42.842912999999996],[-75.242587,42.84343],[-75.243102,42.838552],[-75.24134699999999,42.837996],[-75.241655,42.836891],[-75.239547,42.834233],[-75.241894,42.833225],[-75.242232,42.831897999999995],[-75.244675,42.830845],[-75.247956,42.826882],[-75.24951899999999,42.825652999999996],[-75.250225,42.823837],[-75.248085,42.822147],[-75.24598499999999,42.817285],[-75.242342,42.817706],[-75.24252899999999,42.816444999999995],[-75.245311,42.814487],[-75.24778599999999,42.814671],[-75.249133,42.811718],[-75.248711,42.808766],[-75.247843,42.807812999999996],[-75.249509,42.804172],[-75.250554,42.803335],[-75.251055,42.801209],[-75.249697,42.800340999999996],[-75.25173699999999,42.800075],[-75.251997,42.798064],[-75.25067,42.796771],[-75.253242,42.795702999999996],[-75.251672,42.794821],[-75.249962,42.792154],[-75.252022,42.791334],[-75.251983,42.788736],[-75.25294199999999,42.787555],[-75.252118,42.785289],[-75.251037,42.785115],[-75.251944,42.783950999999995],[-75.257057,42.783034],[-75.257222,42.781915999999995],[-75.255723,42.780705999999995],[-75.25835099999999,42.779669],[-75.258825,42.776993],[-75.261082,42.775926999999996],[-75.263285,42.775666],[-75.263427,42.777532],[-75.26584299999999,42.774767999999995],[-75.267866,42.775475],[-75.27187599999999,42.773483],[-75.273724,42.771482],[-75.27422299999999,42.767973999999995],[-75.27520799999999,42.767764],[-75.27534399999999,42.766559],[-75.27373399999999,42.765817],[-75.275092,42.764520999999995],[-75.276647,42.765701],[-75.279721,42.763959],[-75.278757,42.762591],[-75.278205,42.760008],[-75.279563,42.759021999999995],[-75.28040899999999,42.756071],[-75.280061,42.754546],[-75.28232899999999,42.753096],[-75.28349899999999,42.75139],[-75.286185,42.750735],[-75.28737,42.752133],[-75.290898,42.751427],[-75.290807,42.748536],[-75.29339399999999,42.747656],[-75.29587699999999,42.744105999999995],[-75.312387,42.743314999999996],[-75.31841899999999,42.743007],[-75.319193,42.742967],[-75.358774,42.740943],[-75.37108099999999,42.740303],[-75.371439,42.740275],[-75.374616,42.740021],[-75.391003,42.739456],[-75.39863199999999,42.739246],[-75.427988,42.738110999999996],[-75.428668,42.745421],[-75.48934899999999,42.742244],[-75.49271499999999,42.742221],[-75.533479,42.740257],[-75.5346,42.740226],[-75.545114,42.739712999999995],[-75.55251,42.739402],[-75.598529,42.737818999999995],[-75.61841199999999,42.737001],[-75.646069,42.735976],[-75.653593,42.735619],[-75.653733,42.735592],[-75.660692,42.735251],[-75.666541,42.734975],[-75.67182,42.734727],[-75.68409299999999,42.73415],[-75.70750199999999,42.733049],[-75.762196,42.730457],[-75.765922,42.730306999999996],[-75.77978499999999,42.729672],[-75.803349,42.728421],[-75.821089,42.727152],[-75.830958,42.726445999999996],[-75.889832,42.723844],[-75.892327,42.754079],[-75.892539,42.755716],[-75.893147,42.762226999999996],[-75.896079,42.790963999999995],[-75.897778,42.814059],[-75.898657,42.825779],[-75.90049599999999,42.848625],[-75.901551,42.860437],[-75.901681,42.861943],[-75.90234099999999,42.870447999999996],[-75.903179,42.880741],[-75.90472,42.903298],[-75.905543,42.914356],[-75.906616,42.931143],[-75.908585,42.958495],[-75.90940499999999,42.974761],[-75.910263,42.985519],[-75.910512,42.988282999999996],[-75.910613,42.98941],[-75.911541,43.00669],[-75.91190399999999,43.011978],[-75.91198399999999,43.013146],[-75.912087,43.014638999999995],[-75.91223099999999,43.016734],[-75.913564,43.036066999999996],[-75.913738,43.038466],[-75.914648,43.050695999999995],[-75.91518599999999,43.059163],[-75.916356,43.0749],[-75.916798,43.081981999999996],[-75.917219,43.085926],[-75.918655,43.085952],[-75.918544,43.087894999999996],[-75.919772,43.089765],[-75.924281,43.089468],[-75.926514,43.090513],[-75.928944,43.088836],[-75.92823,43.087317],[-75.93003,43.087582999999995],[-75.930966,43.090194],[-75.93325899999999,43.088876],[-75.932422,43.088069],[-75.93445,43.087102],[-75.93818399999999,43.089023],[-75.938439,43.08703],[-75.94143199999999,43.086763],[-75.941818,43.088257],[-75.94393699999999,43.087336],[-75.944997,43.088513],[-75.94728099999999,43.088856],[-75.948331,43.086932],[-75.950349,43.089589],[-75.95136099999999,43.087295],[-75.952895,43.087410999999996],[-75.953701,43.088741999999996],[-75.95463099999999,43.087416999999995],[-75.958418,43.086811999999995],[-75.96182499999999,43.085505],[-75.960528,43.088606999999996],[-75.96199299999999,43.088781999999995],[-75.963973,43.087847],[-75.963568,43.086771],[-75.966507,43.087451],[-75.965328,43.089025],[-75.96873699999999,43.089771],[-75.96734599999999,43.088150999999996],[-75.968147,43.087699],[-75.969151,43.089279999999995],[-75.97157399999999,43.08963],[-75.970688,43.090908],[-75.975588,43.091277999999996],[-75.975892,43.093559],[-75.974724,43.096919],[-75.976286,43.098489],[-75.975641,43.100336],[-75.976387,43.102627999999996],[-75.971699,43.104759],[-75.972988,43.106379],[-75.97202999999999,43.107521999999996],[-75.970349,43.107566999999996],[-75.97172499999999,43.109186],[-75.969201,43.110504],[-75.96543,43.116721],[-75.965594,43.119552],[-75.963383,43.119043],[-75.963517,43.117563],[-75.960961,43.115767],[-75.956023,43.115148],[-75.954501,43.117311],[-75.957416,43.118193999999995],[-75.95595,43.119515],[-75.95712999999999,43.120241],[-75.959414,43.119808],[-75.95701,43.121973],[-75.958339,43.123728],[-75.960567,43.12327],[-75.95862799999999,43.125395999999995],[-75.958833,43.128093],[-75.956763,43.126804],[-75.95459199999999,43.127986],[-75.952421,43.130705],[-75.95034199999999,43.131765],[-75.953166,43.1329],[-75.950057,43.134853],[-75.953405,43.135459],[-75.954803,43.134008],[-75.957129,43.136297],[-75.958196,43.135082],[-75.957184,43.133947],[-75.959603,43.132914],[-75.961672,43.133941],[-75.963961,43.133798999999996],[-75.96440299999999,43.135127999999995],[-75.966729,43.134678],[-75.972191,43.140468999999996],[-75.975318,43.138939],[-75.973837,43.137342],[-75.975602,43.136168999999995],[-75.977009,43.136013999999996],[-75.97677999999999,43.137904999999996],[-75.977515,43.139790999999995],[-75.976964,43.140754],[-75.97264799999999,43.142995],[-75.971783,43.143847],[-75.97275599999999,43.145907],[-75.973342,43.149225],[-75.971718,43.153141999999995],[-75.971276,43.153985],[-75.97151099999999,43.154925999999996],[-75.977068,43.157646],[-75.97675199999999,43.160269],[-75.97438,43.163174999999995],[-75.97788,43.164591],[-75.979131,43.166261999999996],[-75.978319,43.167705999999995],[-75.981008,43.167704],[-75.979478,43.170698],[-75.98266799999999,43.173631],[-75.986514,43.171572],[-75.988447,43.172616],[-75.990028,43.171527],[-75.991933,43.172953],[-75.99263499999999,43.173849],[-75.989672,43.179590999999995],[-75.99143699999999,43.18325],[-75.993394,43.183375999999996]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36059","STATE":"36","COUNTY":"059","NAME":"Nassau","LSAD":"County","CENSUSAREA":284.716},"geometry":{"type":"Polygon","coordinates":[[[-73.42380607732,40.6098686058614],[-73.450369,40.603501],[-73.4763964071835,40.5989002076966],[-73.48491476050602,40.5973944420962],[-73.4849167719418,40.5973939156384],[-73.4936397687438,40.5951108252328],[-73.5115165370785,40.59043189674139],[-73.528252416453,40.586051575792595],[-73.5491946093077,40.5805703265541],[-73.5719115030519,40.5746245806908],[-73.574425136877,40.573966681416096],[-73.5753570346326,40.573722773631495],[-73.57528040849989,40.5746655549863],[-73.5744180380671,40.5852758616336],[-73.5744117958193,40.5853526640847],[-73.5744087293209,40.585390393217494],[-73.5744107171227,40.5853906718513],[-73.5760003748416,40.585613497053096],[-73.5779554283552,40.5858875404452],[-73.5796968972482,40.586131645294294],[-73.5831667309773,40.586618018173006],[-73.583773,40.586703],[-73.59570770602869,40.587143395056394],[-73.610873,40.587703],[-73.6280385235253,40.5853540739993],[-73.63743534834809,40.58406821481079],[-73.6408037108224,40.5836072889216],[-73.6466075241177,40.582813096543305],[-73.64667399999999,40.582803999999996],[-73.6495031673469,40.5828458740426],[-73.65239131809659,40.5828886210889],[-73.6553721007505,40.5829327391649],[-73.65816236149549,40.5829740373572],[-73.6623011334059,40.58303529464259],[-73.6778410944751,40.583265299061594],[-73.6783117197581,40.5832722647094],[-73.6811804723647,40.583314724646904],[-73.6869172020938,40.5833996330443],[-73.6903105270752,40.5834498570916],[-73.69255278465829,40.583483044379],[-73.69367300173958,40.58349962452849],[-73.69706690836479,40.5835498571847],[-73.7011380022546,40.5836101127787],[-73.70614309841349,40.583684192387395],[-73.717839221561,40.5838573047908],[-73.73939933734489,40.584176412534],[-73.75477599999999,40.584404],[-73.7543232607157,40.5863570925258],[-73.752371,40.587965],[-73.747749,40.591502999999996],[-73.74338,40.592847],[-73.743237,40.592839],[-73.737185,40.592965],[-73.73814999999999,40.594229],[-73.73814999999999,40.594539],[-73.738295,40.597991],[-73.738151,40.602709999999995],[-73.740571,40.60488],[-73.741148,40.60546],[-73.744567,40.610116999999995],[-73.745368,40.611204],[-73.745633,40.611756],[-73.745663,40.611812],[-73.745761,40.611992],[-73.746855,40.611574],[-73.74694199999999,40.611775],[-73.747216,40.612179],[-73.747451,40.612072],[-73.747993,40.61231],[-73.74911999999999,40.612035999999996],[-73.750652,40.611453],[-73.753458,40.61052],[-73.755173,40.609984],[-73.755197,40.610594],[-73.759631,40.611297],[-73.760021,40.611349],[-73.763454,40.61369],[-73.763476,40.613706],[-73.765969,40.614927],[-73.766755,40.620435],[-73.766814,40.621082],[-73.766954,40.623172],[-73.766487,40.625687],[-73.746702,40.633387],[-73.74529,40.634128],[-73.744016,40.637698],[-73.741944,40.637906],[-73.741282,40.637152],[-73.74251,40.635435],[-73.742149,40.63484],[-73.739846,40.635812],[-73.740284,40.637175],[-73.741534,40.63923],[-73.741895,40.642092999999996],[-73.740966,40.647861],[-73.735834,40.649302],[-73.734785,40.649696],[-73.734419,40.649746],[-73.7322,40.650048],[-73.728548,40.651081],[-73.725055,40.653509],[-73.726444,40.659161999999995],[-73.72764699999999,40.661058],[-73.727577,40.663855],[-73.727732,40.664549],[-73.72814,40.665002],[-73.72830499999999,40.665917],[-73.728383,40.666427],[-73.728264,40.666606],[-73.728222,40.667314],[-73.728264,40.668073],[-73.728128,40.668707999999995],[-73.727992,40.669427],[-73.727926,40.670097],[-73.727541,40.674206999999996],[-73.727441,40.674428999999996],[-73.72654299999999,40.676487],[-73.726255,40.677349],[-73.726011,40.678078],[-73.72591899999999,40.678692999999996],[-73.72588,40.678954],[-73.725687,40.68025],[-73.725861,40.683223],[-73.725792,40.683574],[-73.725726,40.683907999999995],[-73.725843,40.685248],[-73.725956,40.685682],[-73.725938,40.686892],[-73.726377,40.689442],[-73.726385,40.689571],[-73.726231,40.689659999999996],[-73.726372,40.689713999999995],[-73.726259,40.690269],[-73.726258,40.690611],[-73.726405,40.696863],[-73.725465,40.700403],[-73.72554199999999,40.701125],[-73.72556,40.701395999999995],[-73.72575499999999,40.701992],[-73.72586,40.702604],[-73.725867,40.702740999999996],[-73.725843,40.702841],[-73.72584599999999,40.703015],[-73.725867,40.703205],[-73.72587399999999,40.703610999999995],[-73.725938,40.706029],[-73.726905,40.710017],[-73.726979,40.710812],[-73.728522,40.716784],[-73.729176,40.719167],[-73.729661,40.720483],[-73.73032599999999,40.722156999999996],[-73.728162,40.723084],[-73.725672,40.724038],[-73.72473099999999,40.724309999999996],[-73.724122,40.724475],[-73.722912,40.724793999999996],[-73.721786,40.725089],[-73.721193,40.725266999999995],[-73.720902,40.725342],[-73.71588,40.726541999999995],[-73.71407599999999,40.72676],[-73.712407,40.726977999999995],[-73.711882,40.727047],[-73.71050000000001,40.727227],[-73.709774,40.727381],[-73.707662,40.727830999999995],[-73.70648,40.729710999999995],[-73.705269,40.731513],[-73.704869,40.731997],[-73.704599,40.732502],[-73.703315,40.734563],[-73.70259,40.73551],[-73.70218899999999,40.73611],[-73.702004,40.736522],[-73.701239,40.737427],[-73.700655,40.738319],[-73.700356,40.739171999999996],[-73.700272,40.739242],[-73.700277,40.73972],[-73.70029199999999,40.74105],[-73.700582,40.743184],[-73.700768,40.745014],[-73.70087199999999,40.746866],[-73.700901,40.747129],[-73.701168,40.748864999999995],[-73.701342,40.750766999999996],[-73.70174399999999,40.75253],[-73.70273499999999,40.753251],[-73.70542,40.754605999999995],[-73.707825,40.756215999999995],[-73.713034,40.759566],[-73.713432,40.759761],[-73.714438,40.76045],[-73.720653,40.764477],[-73.720942,40.764793999999995],[-73.727888,40.768898],[-73.72871099999999,40.769467999999996],[-73.72959,40.769985],[-73.733049,40.77196],[-73.73376,40.772469],[-73.737853,40.774879],[-73.73875199999999,40.775497],[-73.73896599999999,40.775518],[-73.739361,40.775867999999996],[-73.73945599999999,40.775952],[-73.74421,40.778704999999995],[-73.74676,40.780381999999996],[-73.746831,40.778994999999995],[-73.749575,40.781898],[-73.750304,40.782531999999996],[-73.750655,40.782711],[-73.750817,40.782886999999995],[-73.756187,40.788703],[-73.764765,40.796844],[-73.7684308591267,40.800704169692494],[-73.7683012933897,40.8007967166603],[-73.7640666877274,40.8067747720663],[-73.7579212908086,40.8154503197328],[-73.75573266946269,40.8185400288372],[-73.7540319915311,40.8209409010113],[-73.75413521537239,40.8225925194789],[-73.7542556702917,40.824519841373196],[-73.7544004972682,40.826837124918896],[-73.7537435701847,40.827492477364004],[-73.7483402267264,40.832882869138295],[-73.7478020742466,40.8334197316796],[-73.7466366086548,40.834582403678496],[-73.7438493356083,40.8373629956987],[-73.7370240288481,40.8441719423631],[-73.728275,40.852900000000005],[-73.726675,40.8568],[-73.728856682243,40.861490616822394],[-73.73067499999999,40.8654],[-73.729575,40.8665],[-73.713674,40.870098999999996],[-73.675573,40.856998999999995],[-73.6749583095511,40.8572142867417],[-73.6727584469369,40.857984757887195],[-73.6706921399942,40.8587084530247],[-73.6697257819249,40.8590469064372],[-73.6561453338519,40.8638032686372],[-73.655872,40.863898999999996],[-73.6558698097119,40.8639198807468],[-73.6557297139477,40.8652554603652],[-73.655072329611,40.8715225243746],[-73.654372,40.878198999999995],[-73.6541478668063,40.8784416705255],[-73.6489458212157,40.8840739604882],[-73.641072,40.892599],[-73.6374201786221,40.895399513339896],[-73.633771,40.898198],[-73.626972,40.899397],[-73.62101786155979,40.8984476059439],[-73.617571,40.897898],[-73.60186999999999,40.902798],[-73.6011321134738,40.903293595428],[-73.59880299746989,40.9048579270725],[-73.59782924573109,40.9055119394343],[-73.59631956655309,40.90652590306129],[-73.59517,40.907298],[-73.5908380871031,40.9086903453222],[-73.5882798048382,40.9095126177061],[-73.5734145774261,40.9142905369171],[-73.569969,40.915397999999996],[-73.56632474974569,40.915781605289894],[-73.566169,40.915797999999995],[-73.5661261522867,40.915781193262],[-73.56498005440159,40.915331643790495],[-73.5578979632616,40.912553739415394],[-73.5486824064779,40.9089389969611],[-73.548068,40.908698],[-73.538588737762,40.9105411258822],[-73.5316842818528,40.91188361236149],[-73.5304337880419,40.912126755493404],[-73.5283452350051,40.912532848927896],[-73.5262908425868,40.912932300250496],[-73.5196030785119,40.9142326536694],[-73.519267,40.914297999999995],[-73.514999,40.912821],[-73.49994099999999,40.918166],[-73.4970614703723,40.92280082944009],[-73.490973,40.919471],[-73.488463,40.915172999999996],[-73.487861,40.915768],[-73.48586499999999,40.910215],[-73.483563,40.905569],[-73.48002799999999,40.900974],[-73.477307,40.899249999999995],[-73.476079,40.877111],[-73.473466,40.874497999999996],[-73.467366,40.868097999999996],[-73.463855,40.867312],[-73.46253,40.867295],[-73.462259,40.86671],[-73.464067,40.859553999999996],[-73.46404,40.859499],[-73.463297,40.857965],[-73.457494,40.848712],[-73.455261,40.840872],[-73.45467099999999,40.835907999999996],[-73.454625,40.835001],[-73.454172,40.834097],[-73.45388799999999,40.832316999999996],[-73.45216599999999,40.822398],[-73.45190099999999,40.819685],[-73.449766,40.810398],[-73.448763,40.804998999999995],[-73.448747,40.804901],[-73.448666,40.804418999999996],[-73.44482599999999,40.785810999999995],[-73.44480399999999,40.78548],[-73.444096,40.781606],[-73.440967,40.764399],[-73.4385,40.751311],[-73.437251,40.745694],[-73.436668,40.742304999999995],[-73.436663,40.742281],[-73.436486,40.741779],[-73.43638299999999,40.741275],[-73.43600599999999,40.739458],[-73.435662,40.738096],[-73.435509,40.737134],[-73.435082,40.734791],[-73.43407599999999,40.729476],[-73.433194,40.724883999999996],[-73.433073,40.724292999999996],[-73.432934,40.723538999999995],[-73.432175,40.71974],[-73.431821,40.717969],[-73.431159,40.713875],[-73.431139,40.712731],[-73.431028,40.711366999999996],[-73.429962,40.706699],[-73.429859,40.706347],[-73.429547,40.705214999999995],[-73.42870599999999,40.700860999999996],[-73.42859299999999,40.700328999999996],[-73.42837,40.699214999999995],[-73.428103,40.697513],[-73.42755,40.694676],[-73.427387,40.693267999999996],[-73.427381,40.693213],[-73.426091,40.686344999999996],[-73.42573999999999,40.68441],[-73.42502,40.680506],[-73.424979,40.680203],[-73.424917,40.679983],[-73.424774,40.679089999999995],[-73.424758,40.679052],[-73.424753,40.67904],[-73.424741,40.678888],[-73.42338,40.671493],[-73.423358,40.668743],[-73.424623,40.666182],[-73.424515,40.657824],[-73.423563,40.655943],[-73.425586,40.656290999999996],[-73.425549,40.654610999999996],[-73.42534599999999,40.651818],[-73.42380607732,40.6098686058614]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36063","STATE":"36","COUNTY":"063","NAME":"Niagara","LSAD":"County","CENSUSAREA":522.359},"geometry":{"type":"Polygon","coordinates":[[[-78.4655021200225,43.3712323915095],[-78.465623,43.359493],[-78.465768,43.346398],[-78.465908,43.339428],[-78.466021,43.332401999999995],[-78.46612999999999,43.325455999999996],[-78.46642899999999,43.302775],[-78.464062,43.271299],[-78.46399199999999,43.270433999999995],[-78.46185799999999,43.241960999999996],[-78.46124499999999,43.231901],[-78.460416,43.216221999999995],[-78.462147,43.193683],[-78.462981,43.183065],[-78.465262,43.149848],[-78.465566,43.143594],[-78.465808,43.138259999999995],[-78.46578,43.136277],[-78.465678,43.130975],[-78.465505,43.128619],[-78.464962,43.117340999999996],[-78.464306,43.091514],[-78.464449,43.088702999999995],[-78.46800999999999,43.087723],[-78.46515699999999,43.085968],[-78.469736,43.082797],[-78.472537,43.081649999999996],[-78.472038,43.084232],[-78.47464,43.082788],[-78.47415199999999,43.084648],[-78.475838,43.086338],[-78.47693,43.084728999999996],[-78.48162099999999,43.083777999999995],[-78.481659,43.085159],[-78.484668,43.086163],[-78.48666399999999,43.085014],[-78.488945,43.08271],[-78.491646,43.083954999999996],[-78.492736,43.083997],[-78.49243899999999,43.081966],[-78.493752,43.082592],[-78.496498,43.081751],[-78.49793199999999,43.082409],[-78.499603,43.083476999999995],[-78.496887,43.086445],[-78.498215,43.087055],[-78.500725,43.086020999999995],[-78.50280000000001,43.086574999999996],[-78.50072399999999,43.089062],[-78.50312799999999,43.088715],[-78.506203,43.090095999999996],[-78.505173,43.091601999999995],[-78.506119,43.093070999999995],[-78.504745,43.092903],[-78.503479,43.091415],[-78.50405099999999,43.093593999999996],[-78.507469,43.094184999999996],[-78.50928499999999,43.094009],[-78.508461,43.096278999999996],[-78.510384,43.097958],[-78.511612,43.095591999999996],[-78.513245,43.094654],[-78.514839,43.094874999999995],[-78.515785,43.091507],[-78.51402999999999,43.09137],[-78.514099,43.090362999999996],[-78.515823,43.090542],[-78.518551,43.089641],[-78.52078999999999,43.088798999999995],[-78.52237699999999,43.089560999999996],[-78.522263,43.08815],[-78.52622199999999,43.087612],[-78.528069,43.088299],[-78.52667199999999,43.088966],[-78.528,43.090571999999995],[-78.528976,43.090115],[-78.528244,43.08857],[-78.531395,43.087348999999996],[-78.53195199999999,43.088592999999996],[-78.534431,43.086182],[-78.53627,43.085491],[-78.538292,43.087421],[-78.53846,43.085739],[-78.54025399999999,43.085892],[-78.540146,43.087165999999996],[-78.542114,43.088089],[-78.540482,43.088299],[-78.540443,43.090092],[-78.542282,43.091099],[-78.542625,43.088802],[-78.545403,43.09045],[-78.54688999999999,43.090256],[-78.547462,43.091750999999995],[-78.54639399999999,43.093284999999995],[-78.543488,43.092762],[-78.541084,43.093838],[-78.54190799999999,43.096478],[-78.544373,43.096644999999995],[-78.545296,43.098591],[-78.546303,43.098557],[-78.54757699999999,43.097446],[-78.55017099999999,43.096588],[-78.549156,43.095054999999995],[-78.551097,43.092752],[-78.555145,43.092419],[-78.55542799999999,43.091446],[-78.56015,43.089935],[-78.560898,43.09021],[-78.557388,43.093844999999995],[-78.55481,43.09507],[-78.557632,43.095081],[-78.558258,43.096942999999996],[-78.560265,43.097279],[-78.564064,43.094635],[-78.563011,43.093643],[-78.564484,43.088893999999996],[-78.56790199999999,43.087962999999995],[-78.57624799999999,43.088791],[-78.57614099999999,43.08828],[-78.574333,43.08712],[-78.57531,43.085739],[-78.574165,43.082409],[-78.572372,43.082049999999995],[-78.57431,43.080208],[-78.576065,43.079758],[-78.57663699999999,43.081707],[-78.578178,43.082664],[-78.577271,43.084140999999995],[-78.579208,43.085228],[-78.57820099999999,43.087498],[-78.580231,43.087547],[-78.581757,43.088927999999996],[-78.58455699999999,43.086655],[-78.585089,43.084573999999996],[-78.582123,43.0825],[-78.580193,43.080169999999995],[-78.58212999999999,43.077498999999996],[-78.584114,43.076859],[-78.582656,43.07515],[-78.586136,43.073108999999995],[-78.588005,43.074588999999996],[-78.591064,43.076122],[-78.591949,43.071365],[-78.59403999999999,43.069500000000005],[-78.595306,43.069641],[-78.59466599999999,43.071521999999995],[-78.595627,43.072468],[-78.599274,43.072047999999995],[-78.600929,43.072497999999996],[-78.60131799999999,43.073935999999996],[-78.60230299999999,43.072452999999996],[-78.603989,43.072025],[-78.606544,43.072674],[-78.606689,43.073467],[-78.604222,43.073983],[-78.601479,43.075863],[-78.60183099999999,43.076636],[-78.605904,43.075584],[-78.609669,43.076505],[-78.611916,43.077881],[-78.612053,43.076248],[-78.61417399999999,43.074290999999995],[-78.616295,43.074486],[-78.61548599999999,43.076698],[-78.61721,43.077892],[-78.616158,43.080177],[-78.61436499999999,43.080825999999995],[-78.612434,43.083397],[-78.615242,43.084522],[-78.617572,43.086552999999995],[-78.626671,43.08511],[-78.628992,43.086669],[-78.629556,43.088561999999996],[-78.632576,43.091164],[-78.63089,43.091591],[-78.630077,43.093545999999996],[-78.631027,43.094128],[-78.636071,43.093272999999996],[-78.63834399999999,43.09568],[-78.641802,43.097362],[-78.64211999999999,43.094584999999995],[-78.640762,43.090668],[-78.641753,43.088583],[-78.643616,43.088268],[-78.646721,43.089771],[-78.649014,43.087078],[-78.646608,43.085602],[-78.64598099999999,43.081562],[-78.64656099999999,43.080791],[-78.648392,43.080588999999996],[-78.65057399999999,43.082111],[-78.65486899999999,43.082867],[-78.658485,43.085175],[-78.664711,43.086399],[-78.666733,43.085364],[-78.67451799999999,43.083940999999996],[-78.679253,43.084838999999995],[-78.68025999999999,43.081447999999995],[-78.68180799999999,43.080269],[-78.684212,43.081047],[-78.687309,43.084488],[-78.68740799999999,43.086464],[-78.690872,43.088642],[-78.696906,43.086337],[-78.699478,43.086884],[-78.703079,43.086642999999995],[-78.705805,43.087032],[-78.70776599999999,43.086714],[-78.708193,43.084208],[-78.709625,43.082519999999995],[-78.71174599999999,43.082352],[-78.71418,43.083199],[-78.715942,43.08289],[-78.719048,43.081055],[-78.72056599999999,43.081509],[-78.72174799999999,43.083641],[-78.724014,43.085460999999995],[-78.72764699999999,43.08622],[-78.733606,43.084219],[-78.73615699999999,43.081796999999995],[-78.737663,43.078255999999996],[-78.741249,43.074853999999995],[-78.743185,43.070949999999996],[-78.74535399999999,43.069786],[-78.75374,43.069458999999995],[-78.755487,43.070077],[-78.75765299999999,43.070859999999996],[-78.759141,43.070927999999995],[-78.769027,43.070026999999996],[-78.77078399999999,43.069539],[-78.77237,43.068545],[-78.774272,43.066818],[-78.77857999999999,43.065415],[-78.782387,43.065871],[-78.783669,43.066184],[-78.786851,43.066556999999996],[-78.79670999999999,43.066111],[-78.800759,43.066272],[-78.80614299999999,43.063181],[-78.80712199999999,43.061139],[-78.80462399999999,43.055187],[-78.806821,43.053626],[-78.813845,43.051665],[-78.822357,43.051556999999995],[-78.829144,43.051356999999996],[-78.83126,43.050246],[-78.832332,43.048007],[-78.831385,43.045358],[-78.826748,43.039547999999996],[-78.82598,43.036027999999995],[-78.825366,43.033656],[-78.828805,43.030139],[-78.83018899999999,43.029661999999995],[-78.83334599999999,43.024164999999996],[-78.83935,43.019453],[-78.841745,43.018862999999996],[-78.849188,43.019338],[-78.851249,43.019254],[-78.856557,43.022054999999995],[-78.861257,43.022875],[-78.86875599999999,43.023261999999995],[-78.870859,43.022718999999995],[-78.872101,43.022403999999995],[-78.872168,43.022389],[-78.875556,43.021654999999996],[-78.87625,43.021558],[-78.878022,43.021702999999995],[-78.879859,43.021856],[-78.881974,43.024155],[-78.885038,43.022456],[-78.890159,43.021955999999996],[-78.88995899999999,43.024556],[-78.890101,43.025200000000005],[-78.892059,43.034056],[-78.893011,43.037779],[-78.89626,43.044156],[-78.90585999999999,43.051556],[-78.91152,43.054739999999995],[-78.945262,43.066956],[-78.949962,43.067856],[-78.985764,43.068556],[-78.99060899999999,43.068765],[-78.999664,43.069354999999995],[-79.009664,43.069558],[-79.019228,43.067958],[-79.0195783861988,43.0662944001067],[-79.0271322979082,43.0678853994935],[-79.0399497142808,43.070584994402004],[-79.04572710755401,43.0718018247687],[-79.074467,43.077855],[-79.0746784058012,43.083141185368],[-79.069667,43.088355],[-79.0676890924363,43.0903076909368],[-79.0647542866558,43.0932050804579],[-79.0637321312728,43.0959201788758],[-79.0602814401801,43.1050860709521],[-79.0608466093787,43.1081238649776],[-79.06096785939779,43.1087755858862],[-79.061399647736,43.111096455525896],[-79.061967,43.115355],[-79.0625178661266,43.12018191629559],[-79.0612678702787,43.1226780078406],[-79.0612617321591,43.122690264928096],[-79.0602056433313,43.12479914744829],[-79.056767,43.126855],[-79.05210115348869,43.132096087861896],[-79.04946699999999,43.135055],[-79.044066,43.138055],[-79.042366,43.143654999999995],[-79.042867,43.149155],[-79.0444124577562,43.1528822804709],[-79.044567,43.153255],[-79.046567,43.162355],[-79.04837609887639,43.1645449617977],[-79.048467,43.164654999999996],[-79.0526159334377,43.1727724784652],[-79.053067,43.173655],[-79.0527599066339,43.1797968673219],[-79.052567,43.183654999999995],[-79.05133170446479,43.1929805439153],[-79.05074400914401,43.1974171976281],[-79.0531094108151,43.2097173138206],[-79.0529387253422,43.218439761126895],[-79.05286799999999,43.222054],[-79.055538048,43.236739264],[-79.05586799999999,43.238554],[-79.061376365239,43.2513207373953],[-79.0613883487506,43.2513485115787],[-79.070469,43.262454],[-79.019848,43.273686],[-79.0178884645547,43.2739950693229],[-79.0009233089437,43.2766709122987],[-78.97186599999999,43.281254],[-78.95856742908241,43.2851366054939],[-78.95276346438389,43.2868311112694],[-78.930764,43.293254],[-78.9008152052445,43.3006784925348],[-78.85936199999999,43.310955],[-78.8530482605272,43.3130048266762],[-78.836261,43.318455],[-78.83597997474429,43.3183400351227],[-78.83406099999999,43.317555],[-78.8260585757699,43.3189052722849],[-78.8203672082414,43.3198655932597],[-78.8155083312534,43.320685445687396],[-78.80201005476259,43.3229630490881],[-78.777759,43.327055],[-78.75435499999999,43.332791087056],[-78.747158,43.334554999999995],[-78.7468696265009,43.3345934100522],[-78.7185899086354,43.3383601411901],[-78.696856,43.341255],[-78.69538306933309,43.3416407047206],[-78.6767027328108,43.34653237690959],[-78.6682048084852,43.3487576612367],[-78.6562639356503,43.3518845232977],[-78.63465746155919,43.3575424400214],[-78.634346,43.357624],[-78.624751,43.3589390350772],[-78.5650060690431,43.367127328969296],[-78.5593086680008,43.367908181728],[-78.55893053405201,43.367960006575],[-78.5553635329707,43.3684488790651],[-78.547395,43.369541],[-78.5365462972589,43.3705087803429],[-78.53612060430329,43.370546755139],[-78.5170684938837,43.3722463369596],[-78.4913773831368,43.3745381641542],[-78.4905071337703,43.3746157964989],[-78.488857,43.374763],[-78.48849988705479,43.374743934421794],[-78.4827540742135,43.3744371764467],[-78.482526,43.374424999999995],[-78.47309899999999,43.370812],[-78.4674763617002,43.371123142128006],[-78.4655021200225,43.3712323915095]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36065","STATE":"36","COUNTY":"065","NAME":"Oneida","LSAD":"County","CENSUSAREA":1212.429},"geometry":{"type":"Polygon","coordinates":[[[-75.11016,43.615229],[-75.104249,43.564108],[-75.10265,43.549859],[-75.09872899999999,43.508064],[-75.098714,43.507872],[-75.09848199999999,43.506251],[-75.09772699999999,43.500980999999996],[-75.097516,43.496764999999996],[-75.09034299999999,43.443593],[-75.089558,43.440205999999996],[-75.08914,43.4343],[-75.086851,43.41701],[-75.086788,43.416539],[-75.084532,43.398888],[-75.084323,43.39705],[-75.078465,43.346529],[-75.077992,43.342566999999995],[-75.07658099999999,43.330704999999995],[-75.084518,43.329625],[-75.08815799999999,43.329544999999996],[-75.09174999999999,43.328613],[-75.09263899999999,43.327546999999996],[-75.091892,43.323915],[-75.092922,43.323147],[-75.099839,43.325175],[-75.099817,43.323989999999995],[-75.103098,43.318568],[-75.10546099999999,43.316182],[-75.106495,43.313539],[-75.106562,43.313452],[-75.106816,43.312894],[-75.107557,43.311654],[-75.111775,43.310852],[-75.117916,43.310977],[-75.11920599999999,43.310508],[-75.119987,43.30916],[-75.119068,43.307466],[-75.120295,43.304165],[-75.122457,43.30448],[-75.123725,43.306456999999995],[-75.130077,43.307257],[-75.133304,43.306855999999996],[-75.141064,43.304666],[-75.145989,43.305284],[-75.14818,43.304828],[-75.146866,43.303056],[-75.145647,43.298283],[-75.146906,43.296541],[-75.148198,43.289057],[-75.152098,43.286786],[-75.152615,43.285717999999996],[-75.153183,43.280574],[-75.154977,43.277252999999995],[-75.156227,43.274995],[-75.156921,43.274494],[-75.158509,43.273053999999995],[-75.15912999999999,43.269135999999996],[-75.158096,43.26681],[-75.158661,43.264196],[-75.162432,43.261282],[-75.161886,43.257349],[-75.16035,43.255804999999995],[-75.157978,43.255507],[-75.155362,43.256688],[-75.153453,43.258717999999995],[-75.152504,43.257811],[-75.15298299999999,43.25497],[-75.151296,43.251866],[-75.15181299999999,43.24807],[-75.15097399999999,43.246902999999996],[-75.14934099999999,43.246727],[-75.147907,43.248469],[-75.14871699999999,43.250068999999996],[-75.147288,43.251991],[-75.14551999999999,43.252219],[-75.144744,43.254583],[-75.142703,43.255001],[-75.14194599999999,43.252700000000004],[-75.13739699999999,43.249646999999996],[-75.136398,43.2487],[-75.135043,43.248349999999995],[-75.127571,43.247572],[-75.124997,43.246997],[-75.12392299999999,43.246500000000005],[-75.12268399999999,43.241048],[-75.117704,43.239222],[-75.114188,43.239197],[-75.109574,43.237158],[-75.105415,43.236152],[-75.099952,43.233073999999995],[-75.094075,43.231046],[-75.090899,43.230492],[-75.083933,43.230537999999996],[-75.07943399999999,43.232047],[-75.075285,43.234331999999995],[-75.073002,43.234817],[-75.07065399999999,43.234037],[-75.07059699999999,43.232234],[-75.073529,43.231072],[-75.073494,43.228657],[-75.07282599999999,43.227894],[-75.072161,43.227622],[-75.07065999999999,43.22739],[-75.069165,43.227333],[-75.100218,43.189111],[-75.115866,43.169881],[-75.117389,43.168009999999995],[-75.135154,43.145666999999996],[-75.13730199999999,43.14299],[-75.150699,43.126993],[-75.158706,43.117469],[-75.15990099999999,43.11609],[-75.160006,43.115969],[-75.160906,43.114768999999995],[-75.16410599999999,43.111568999999996],[-75.17001599999999,43.105159],[-75.173296,43.101879],[-75.17964599999999,43.094736],[-75.180598,43.093776999999996],[-75.18210599999999,43.092268999999995],[-75.182784,43.091412],[-75.183206,43.090869],[-75.185406,43.088569],[-75.18170099999999,43.087700999999996],[-75.184078,43.083329],[-75.18206099999999,43.082209999999996],[-75.18084,43.083897],[-75.17790000000001,43.082543],[-75.18117699999999,43.078582999999995],[-75.182334,43.075303],[-75.19176,43.077298],[-75.195728,43.077650999999996],[-75.198307,43.074569],[-75.201371,43.071504999999995],[-75.205107,43.067569],[-75.207807,43.064468999999995],[-75.209411,43.062765],[-75.219106,43.052468999999995],[-75.217984,43.043495],[-75.21721099999999,43.035404],[-75.217056,43.033778999999996],[-75.216006,43.022769],[-75.209811,42.965212],[-75.20935899999999,42.960705999999995],[-75.20908299999999,42.957954],[-75.207362,42.940574],[-75.202005,42.885231999999995],[-75.201867,42.884125999999995],[-75.201444,42.880663999999996],[-75.212158,42.879973],[-75.242745,42.877869],[-75.244523,42.874508],[-75.247963,42.871604],[-75.249608,42.871669],[-75.250389,42.871612],[-75.258507,42.871308],[-75.28316199999999,42.870334],[-75.29131799999999,42.869983],[-75.307983,42.869372],[-75.323819,42.868742999999995],[-75.35391,42.867338],[-75.411417,42.864559],[-75.437167,42.863319],[-75.438124,42.872529],[-75.439724,42.886795],[-75.440332,42.893691],[-75.442664,42.91629],[-75.44293499999999,42.919191999999995],[-75.44417299999999,42.933088999999995],[-75.456499,42.932882],[-75.467389,42.932761],[-75.484082,42.93253],[-75.502331,42.932189],[-75.54421099999999,42.93177],[-75.544065,42.944098],[-75.544967,42.956309],[-75.547294,42.982811999999996],[-75.549071,43.000951],[-75.54950199999999,43.005635],[-75.549826,43.009434999999996],[-75.550777,43.018547],[-75.550924,43.020410999999996],[-75.55107199999999,43.022182],[-75.551486,43.027122999999996],[-75.551737,43.029075999999996],[-75.552774,43.037554],[-75.55604,43.037344],[-75.559697,43.037110999999996],[-75.569583,43.036784],[-75.596879,43.035399],[-75.598709,43.038066],[-75.59911,43.041827999999995],[-75.597926,43.042873],[-75.60045699999999,43.046171],[-75.60207199999999,43.046596],[-75.602232,43.048486],[-75.60539899999999,43.051297],[-75.606794,43.050940999999995],[-75.60723899999999,43.054207999999996],[-75.60363,43.054915],[-75.604282,43.056098999999996],[-75.599496,43.0614],[-75.60226399999999,43.064077],[-75.60528599999999,43.065045],[-75.60695299999999,43.064844],[-75.614565,43.065788],[-75.617704,43.0674],[-75.617133,43.069669999999995],[-75.619438,43.069041],[-75.61823,43.071131],[-75.62201999999999,43.072122],[-75.622213,43.073845999999996],[-75.62518299999999,43.073439],[-75.628327,43.074149],[-75.631067,43.076851],[-75.634748,43.076132],[-75.637316,43.076468],[-75.638305,43.078309999999995],[-75.640203,43.078888],[-75.640507,43.081019999999995],[-75.638778,43.081966],[-75.640401,43.084658999999995],[-75.640543,43.088212],[-75.640408,43.088563],[-75.641257,43.088839],[-75.64108999999999,43.089872],[-75.641504,43.095380999999996],[-75.639392,43.095622],[-75.639556,43.096436999999995],[-75.639276,43.09709],[-75.639729,43.097711],[-75.64309399999999,43.099393],[-75.646303,43.102874],[-75.646025,43.105857],[-75.64826699999999,43.105899],[-75.65149799999999,43.106438],[-75.6532,43.107949999999995],[-75.655874,43.109791],[-75.652836,43.113794],[-75.65297,43.113952999999995],[-75.65973199999999,43.113639],[-75.6614,43.115856],[-75.664256,43.114767],[-75.666742,43.1152],[-75.669701,43.115182999999995],[-75.670311,43.116546],[-75.67360099999999,43.118038],[-75.672433,43.120638],[-75.672699,43.121742],[-75.674551,43.122339],[-75.677129,43.121457],[-75.681249,43.121021999999996],[-75.681665,43.122499],[-75.680302,43.123081],[-75.685265,43.124083],[-75.68249,43.126476],[-75.68026499999999,43.125901],[-75.67818799999999,43.127098],[-75.68097,43.128487],[-75.68365299999999,43.128153],[-75.68684999999999,43.129838],[-75.686401,43.131896999999995],[-75.687101,43.13352],[-75.690753,43.132867],[-75.693805,43.133643],[-75.69375,43.135287],[-75.696297,43.136457],[-75.696123,43.137654999999995],[-75.694557,43.138798],[-75.695236,43.139734],[-75.697141,43.13964],[-75.699514,43.138436999999996],[-75.701374,43.136719],[-75.70526799999999,43.137735],[-75.70687199999999,43.13716],[-75.707752,43.140163],[-75.706497,43.140784],[-75.70725399999999,43.143055],[-75.70641499999999,43.144461],[-75.708513,43.145539],[-75.70835799999999,43.14812],[-75.70657899999999,43.150729],[-75.707166,43.151444999999995],[-75.709565,43.151437],[-75.714136,43.151646],[-75.71608499999999,43.153312],[-75.71749799999999,43.151983],[-75.72027899999999,43.154421],[-75.72252499999999,43.15618],[-75.720321,43.158367999999996],[-75.71887799999999,43.158521],[-75.719899,43.161052999999995],[-75.721991,43.161258],[-75.724285,43.162763999999996],[-75.724071,43.15988],[-75.724639,43.157481],[-75.725723,43.157202],[-75.728216,43.161066],[-75.727018,43.161679],[-75.72842399999999,43.162375],[-75.731691,43.160736],[-75.73306,43.162943],[-75.73515499999999,43.162825999999995],[-75.736685,43.164131],[-75.737774,43.164673],[-75.744976,43.159245999999996],[-75.749094,43.1578],[-75.75054999999999,43.159523],[-75.752527,43.158722],[-75.75356599999999,43.160318],[-75.758117,43.161715],[-75.76016299999999,43.164685],[-75.762002,43.166069],[-75.764414,43.166582999999996],[-75.76755899999999,43.168296999999995],[-75.768787,43.169895],[-75.773399,43.170718],[-75.775576,43.171614],[-75.776375,43.173342],[-75.777886,43.168591],[-75.7825,43.167369],[-75.786489,43.166703999999996],[-75.787809,43.164062],[-75.793244,43.161052999999995],[-75.79388999999999,43.159960999999996],[-75.795686,43.16072],[-75.79704199999999,43.159105],[-75.811938,43.161255],[-75.81218199999999,43.161221],[-75.812865,43.161369],[-75.818855,43.161361],[-75.82376699999999,43.159711],[-75.828425,43.158961],[-75.83278399999999,43.159172999999996],[-75.83729699999999,43.160405],[-75.840277,43.160455999999996],[-75.844154,43.15826],[-75.846423,43.157517],[-75.853422,43.156143],[-75.85473999999999,43.152665999999996],[-75.856527,43.151666999999996],[-75.856627,43.150351],[-75.85996999999999,43.148205],[-75.86451,43.146995],[-75.868099,43.146699],[-75.871912,43.148405],[-75.875332,43.152536],[-75.879235,43.153704],[-75.884275,43.155561999999996],[-75.875059,43.23019],[-75.874912,43.231474],[-75.874792,43.232527],[-75.872979,43.246285],[-75.872361,43.249947999999996],[-75.870738,43.261700999999995],[-75.87091199999999,43.263152],[-75.86977999999999,43.272802999999996],[-75.868428,43.279536],[-75.862934,43.319221999999996],[-75.862927,43.319274],[-75.865461,43.319883],[-75.87798599999999,43.322887],[-75.88675599999999,43.325021],[-75.850555,43.403729],[-75.84891499999999,43.40737],[-75.814627,43.483578],[-75.756213,43.470388],[-75.750104,43.468962999999995],[-75.68886499999999,43.455157],[-75.6395,43.444148999999996],[-75.63214599999999,43.442479999999996],[-75.60989,43.437368],[-75.607581,43.436834999999995],[-75.589145,43.432576999999995],[-75.56242,43.425992],[-75.55792,43.42487],[-75.54026499999999,43.421116999999995],[-75.5335,43.419756],[-75.52515799999999,43.423579],[-75.424301,43.470803],[-75.39239599999999,43.485727],[-75.357661,43.50185],[-75.340159,43.509820999999995],[-75.32746999999999,43.515598999999995],[-75.32296,43.517637],[-75.31613999999999,43.520709],[-75.311452,43.522870999999995],[-75.27104299999999,43.541241],[-75.232807,43.558672],[-75.225253,43.562204],[-75.18256,43.581806],[-75.12942699999999,43.606406],[-75.11016,43.615229]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36067","STATE":"36","COUNTY":"067","NAME":"Onondaga","LSAD":"County","CENSUSAREA":778.39},"geometry":{"type":"Polygon","coordinates":[[[-75.896079,42.790963999999995],[-75.926878,42.789125],[-75.939741,42.78839],[-76.005195,42.784870999999995],[-76.01229099999999,42.784574],[-76.05088099999999,42.782827999999995],[-76.051401,42.782782],[-76.053749,42.782685],[-76.08017,42.781599],[-76.080178,42.780432],[-76.080213,42.780014],[-76.12700000000001,42.777919],[-76.154941,42.77664],[-76.171026,42.775889],[-76.177769,42.775574999999996],[-76.191065,42.774957],[-76.195944,42.77473],[-76.267704,42.771445],[-76.27467299999999,42.771257],[-76.275143,42.777665999999996],[-76.275348,42.78047],[-76.279067,42.785866],[-76.286198,42.794443],[-76.292076,42.800881],[-76.29876999999999,42.80746],[-76.305762,42.813337999999995],[-76.315559,42.819992],[-76.329796,42.829468999999996],[-76.354665,42.847964],[-76.357018,42.849447999999995],[-76.37300499999999,42.848859],[-76.404958,42.847594],[-76.405434,42.847576],[-76.439461,42.846284999999995],[-76.444929,42.846064],[-76.44776999999999,42.84579],[-76.45039799999999,42.845727],[-76.450738,42.84576],[-76.45172099999999,42.858199],[-76.457357,42.928430999999996],[-76.457428,42.929524],[-76.458429,42.94337],[-76.45948,42.95842],[-76.460234,42.969241],[-76.46157699999999,42.986309999999996],[-76.4623,42.995017],[-76.462306,42.995118],[-76.462999,43.006316],[-76.491941,43.004964],[-76.492667,43.015312],[-76.493304,43.024898],[-76.49413,43.036151],[-76.494688,43.043949999999995],[-76.495149,43.049869],[-76.49725,43.074978],[-76.499274,43.097201],[-76.499324,43.097722999999995],[-76.499312,43.097949],[-76.497829,43.102657],[-76.491232,43.106294999999996],[-76.488261,43.106711],[-76.48319,43.106100999999995],[-76.479216,43.104835],[-76.47359399999999,43.104029],[-76.47247,43.104319],[-76.471873,43.107059],[-76.47206,43.110929],[-76.475689,43.123861999999995],[-76.47864,43.131231],[-76.483019,43.137121],[-76.48630299999999,43.143223],[-76.484574,43.144614],[-76.48122699999999,43.145886],[-76.476997,43.145953999999996],[-76.473066,43.146017],[-76.473512,43.150422999999996],[-76.47431399999999,43.161546],[-76.47563,43.178868],[-76.47594,43.182953],[-76.47606999999999,43.184556],[-76.476714,43.192678],[-76.47724699999999,43.198867],[-76.477204,43.199207],[-76.479224,43.227519],[-76.450873,43.228508999999995],[-76.430465,43.229222],[-76.415279,43.229752],[-76.403001,43.230211999999995],[-76.38335,43.230866999999996],[-76.381264,43.23095],[-76.36600399999999,43.23167],[-76.34463199999999,43.23267],[-76.344582,43.231525],[-76.324213,43.232307999999996],[-76.322437,43.230916],[-76.317349,43.22954],[-76.31226099999999,43.230388],[-76.306437,43.230450999999995],[-76.303516,43.228791],[-76.303473,43.228770999999995],[-76.301476,43.227588],[-76.30083599999999,43.227076],[-76.297876,43.22378],[-76.289524,43.219028],[-76.287684,43.21618],[-76.287876,43.212675999999995],[-76.287076,43.210691999999995],[-76.282915,43.206756],[-76.281027,43.201091],[-76.276151,43.201768],[-76.271351,43.203967999999996],[-76.269751,43.205568],[-76.268151,43.209468],[-76.266534,43.211113],[-76.264451,43.213468],[-76.26435099999999,43.214968],[-76.262051,43.218468],[-76.262951,43.220867999999996],[-76.262151,43.223568],[-76.26355099999999,43.226168],[-76.266851,43.227467999999995],[-76.267451,43.231767999999995],[-76.268351,43.233368],[-76.272151,43.234868],[-76.273551,43.236267999999995],[-76.275551,43.238768],[-76.274051,43.240168],[-76.270051,43.239368],[-76.267551,43.239667999999995],[-76.26565099999999,43.238468],[-76.263751,43.236368],[-76.26265099999999,43.236267999999995],[-76.258051,43.237368],[-76.25795099999999,43.234868],[-76.25654999999999,43.232068],[-76.25285,43.227768],[-76.250001,43.225190999999995],[-76.247826,43.220196],[-76.24465,43.214568],[-76.24015,43.214168],[-76.23384899999999,43.212368],[-76.230049,43.207868],[-76.22444899999999,43.204968],[-76.22211999999999,43.204899],[-76.217873,43.204772],[-76.217646,43.204820999999995],[-76.214913,43.205411999999995],[-76.212349,43.207268],[-76.210149,43.206967999999996],[-76.208336,43.208036],[-76.210649,43.210567999999995],[-76.209729,43.21306],[-76.206176,43.216612],[-76.198748,43.212568],[-76.194248,43.217068],[-76.202548,43.222268],[-76.20302699999999,43.223445999999996],[-76.20472,43.22898],[-76.204832,43.232068],[-76.203936,43.234756],[-76.20500799999999,43.237412],[-76.212017,43.238963999999996],[-76.213393,43.24002],[-76.212177,43.241684],[-76.21060899999999,43.244004],[-76.21235,43.254872],[-76.212757,43.257408999999996],[-76.2093,43.262144],[-76.209598,43.265271],[-76.211621,43.266771999999996],[-76.211711,43.267668],[-76.21083,43.268473],[-76.203334,43.271493],[-76.201599,43.271201],[-76.196801,43.267624999999995],[-76.194068,43.266065999999995],[-76.18943,43.261672],[-76.185278,43.258674],[-76.182104,43.257621],[-76.179626,43.253592999999995],[-76.177314,43.252238],[-76.174275,43.251373],[-76.172618,43.25034],[-76.169839,43.24722],[-76.16134699999999,43.243567999999996],[-76.157647,43.243268],[-76.156145,43.24267],[-76.14852599999999,43.239636],[-76.140676,43.240415999999996],[-76.138142,43.239636999999995],[-76.134497,43.236436999999995],[-76.12974799999999,43.234943],[-76.126504,43.233805],[-76.121496,43.234548],[-76.118121,43.233863],[-76.11589599999999,43.233489999999996],[-76.113824,43.231612999999996],[-76.109911,43.229600000000005],[-76.10665399999999,43.226866],[-76.106601,43.224422],[-76.102653,43.223686],[-76.099378,43.224931],[-76.09575,43.223659999999995],[-76.090645,43.220483],[-76.08751699999999,43.219197],[-76.084682,43.216892],[-76.080462,43.215762999999995],[-76.07929399999999,43.218309999999995],[-76.079268,43.215821],[-76.072015,43.214732],[-76.069414,43.214698999999996],[-76.068056,43.212613999999995],[-76.07302399999999,43.213777],[-76.083643,43.214189999999995],[-76.085306,43.211605],[-76.083167,43.210578999999996],[-76.078559,43.209382999999995],[-76.076897,43.208448999999995],[-76.078541,43.209196999999996],[-76.079514,43.208887],[-76.078921,43.20881],[-76.078243,43.208329],[-76.08076,43.208616],[-76.08245699999999,43.206849999999996],[-76.08268699999999,43.204536999999995],[-76.081865,43.202256999999996],[-76.078902,43.19948],[-76.074154,43.199222999999996],[-76.07169499999999,43.199847999999996],[-76.065844,43.200562999999995],[-76.060389,43.200492],[-76.055562,43.199197],[-76.055297,43.200024],[-76.05348,43.200478],[-76.05261899999999,43.202856999999995],[-76.050417,43.202940999999996],[-76.046131,43.202161],[-76.04075399999999,43.198861],[-76.03514,43.195617999999996],[-76.03252499999999,43.19119],[-76.031007,43.190591],[-76.025719,43.190481999999996],[-76.016251,43.187399],[-76.011647,43.185477],[-76.008512,43.182601999999996],[-76.008653,43.181345],[-76.00521499999999,43.179352],[-76.002787,43.179469],[-76.00274,43.179415999999996],[-76.0027,43.179337],[-76.002703,43.179305],[-76.002696,43.179283],[-76.00269399999999,43.179276],[-76.002693,43.179271],[-76.002691,43.179266],[-76.002682,43.179237],[-76.00262599999999,43.179165],[-76.00256,43.179063],[-76.00254699999999,43.178954999999995],[-76.002573,43.178838],[-76.002681,43.178765],[-76.002882,43.178701],[-76.003076,43.178618],[-76.00357199999999,43.178472],[-76.003666,43.178436999999995],[-76.003847,43.17834],[-76.004249,43.178159],[-76.00434299999999,43.178095],[-76.004323,43.178036999999996],[-76.004303,43.177997999999995],[-76.004249,43.177977999999996],[-76.00396099999999,43.178031999999995],[-76.003525,43.178218],[-76.00318299999999,43.178315],[-76.002895,43.178422999999995],[-76.002667,43.178486],[-76.002607,43.178506],[-76.00255,43.178315999999995],[-76.002927,43.177793],[-76.003633,43.177295],[-76.004075,43.177324],[-76.00574399999999,43.177774],[-76.004464,43.176967],[-76.003023,43.176863999999995],[-76.002285,43.178138999999994],[-76.002541,43.179621],[-75.99909,43.180554],[-75.995379,43.182586],[-75.99421699999999,43.182179999999995],[-75.993394,43.183375999999996],[-75.99143699999999,43.18325],[-75.989672,43.179590999999995],[-75.99263499999999,43.173849],[-75.991933,43.172953],[-75.990028,43.171527],[-75.988447,43.172616],[-75.986514,43.171572],[-75.98266799999999,43.173631],[-75.979478,43.170698],[-75.981008,43.167704],[-75.978319,43.167705999999995],[-75.979131,43.166261999999996],[-75.97788,43.164591],[-75.97438,43.163174999999995],[-75.97675199999999,43.160269],[-75.977068,43.157646],[-75.97151099999999,43.154925999999996],[-75.971276,43.153985],[-75.971718,43.153141999999995],[-75.973342,43.149225],[-75.97275599999999,43.145907],[-75.971783,43.143847],[-75.97264799999999,43.142995],[-75.976964,43.140754],[-75.977515,43.139790999999995],[-75.97677999999999,43.137904999999996],[-75.977009,43.136013999999996],[-75.975602,43.136168999999995],[-75.973837,43.137342],[-75.975318,43.138939],[-75.972191,43.140468999999996],[-75.966729,43.134678],[-75.96440299999999,43.135127999999995],[-75.963961,43.133798999999996],[-75.961672,43.133941],[-75.959603,43.132914],[-75.957184,43.133947],[-75.958196,43.135082],[-75.957129,43.136297],[-75.954803,43.134008],[-75.953405,43.135459],[-75.950057,43.134853],[-75.953166,43.1329],[-75.95034199999999,43.131765],[-75.952421,43.130705],[-75.95459199999999,43.127986],[-75.956763,43.126804],[-75.958833,43.128093],[-75.95862799999999,43.125395999999995],[-75.960567,43.12327],[-75.958339,43.123728],[-75.95701,43.121973],[-75.959414,43.119808],[-75.95712999999999,43.120241],[-75.95595,43.119515],[-75.957416,43.118193999999995],[-75.954501,43.117311],[-75.956023,43.115148],[-75.960961,43.115767],[-75.963517,43.117563],[-75.963383,43.119043],[-75.965594,43.119552],[-75.96543,43.116721],[-75.969201,43.110504],[-75.97172499999999,43.109186],[-75.970349,43.107566999999996],[-75.97202999999999,43.107521999999996],[-75.972988,43.106379],[-75.971699,43.104759],[-75.976387,43.102627999999996],[-75.975641,43.100336],[-75.976286,43.098489],[-75.974724,43.096919],[-75.975892,43.093559],[-75.975588,43.091277999999996],[-75.970688,43.090908],[-75.97157399999999,43.08963],[-75.969151,43.089279999999995],[-75.968147,43.087699],[-75.96734599999999,43.088150999999996],[-75.96873699999999,43.089771],[-75.965328,43.089025],[-75.966507,43.087451],[-75.963568,43.086771],[-75.963973,43.087847],[-75.96199299999999,43.088781999999995],[-75.960528,43.088606999999996],[-75.96182499999999,43.085505],[-75.958418,43.086811999999995],[-75.95463099999999,43.087416999999995],[-75.953701,43.088741999999996],[-75.952895,43.087410999999996],[-75.95136099999999,43.087295],[-75.950349,43.089589],[-75.948331,43.086932],[-75.94728099999999,43.088856],[-75.944997,43.088513],[-75.94393699999999,43.087336],[-75.941818,43.088257],[-75.94143199999999,43.086763],[-75.938439,43.08703],[-75.93818399999999,43.089023],[-75.93445,43.087102],[-75.932422,43.088069],[-75.93325899999999,43.088876],[-75.930966,43.090194],[-75.93003,43.087582999999995],[-75.92823,43.087317],[-75.928944,43.088836],[-75.926514,43.090513],[-75.924281,43.089468],[-75.919772,43.089765],[-75.918544,43.087894999999996],[-75.918655,43.085952],[-75.917219,43.085926],[-75.916798,43.081981999999996],[-75.916356,43.0749],[-75.91518599999999,43.059163],[-75.914648,43.050695999999995],[-75.913738,43.038466],[-75.913564,43.036066999999996],[-75.91223099999999,43.016734],[-75.912087,43.014638999999995],[-75.91198399999999,43.013146],[-75.91190399999999,43.011978],[-75.911541,43.00669],[-75.910613,42.98941],[-75.910512,42.988282999999996],[-75.910263,42.985519],[-75.90940499999999,42.974761],[-75.908585,42.958495],[-75.906616,42.931143],[-75.905543,42.914356],[-75.90472,42.903298],[-75.903179,42.880741],[-75.90234099999999,42.870447999999996],[-75.901681,42.861943],[-75.901551,42.860437],[-75.90049599999999,42.848625],[-75.898657,42.825779],[-75.897778,42.814059],[-75.896079,42.790963999999995]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36071","STATE":"36","COUNTY":"071","NAME":"Orange","LSAD":"County","CENSUSAREA":811.686},"geometry":{"type":"Polygon","coordinates":[[[-74.607348,41.317774],[-74.6074601949831,41.3178235585805],[-74.641544,41.332879],[-74.64159926814601,41.3329044169267],[-74.6739266798343,41.3477712708235],[-74.69380232927801,41.3569117606108],[-74.694708491051,41.35732848975749],[-74.694914,41.357423],[-74.696398,41.357338999999996],[-74.691076,41.36034],[-74.689767,41.361557999999995],[-74.689516,41.363842999999996],[-74.691129,41.367323999999996],[-74.694968,41.370430999999996],[-74.697189701772,41.3716767990932],[-74.703282,41.375093],[-74.708458,41.378901],[-74.710391,41.382101999999996],[-74.7125522609777,41.38762108763579],[-74.713411,41.389814],[-74.71597899999999,41.392584],[-74.720891,41.39469],[-74.730384,41.39566],[-74.73364,41.396975],[-74.736103,41.398398],[-74.738554,41.401191],[-74.740963,41.40512],[-74.741717,41.40788],[-74.741086,41.411412999999996],[-74.73868399999999,41.413463],[-74.734731,41.422699],[-74.734893,41.425818],[-74.735519,41.427465],[-74.736688,41.429227999999995],[-74.7368903497227,41.4293898110686],[-74.738455,41.430641],[-74.740932,41.43116],[-74.743821,41.430634999999995],[-74.75068,41.427983999999995],[-74.754359,41.425146999999996],[-74.7547086478626,41.4249931814039],[-74.754994,41.425301999999995],[-74.756421,41.428008999999996],[-74.751868,41.432477],[-74.752575,41.433240999999995],[-74.755087,41.433181999999995],[-74.756107,41.433946999999996],[-74.75657799999999,41.436827],[-74.75889699999999,41.440743],[-74.759483,41.442588],[-74.762309,41.444351999999995],[-74.76262299999999,41.445527999999996],[-74.762466,41.449525],[-74.7613,41.450012],[-74.76001699999999,41.452264],[-74.758575,41.454476],[-74.759897,41.460692],[-74.756627,41.461407],[-74.752003,41.462956],[-74.750412,41.46433],[-74.75085299999999,41.465697999999996],[-74.752956,41.468087],[-74.752344,41.472643],[-74.75434299999999,41.476293999999996],[-74.75449499999999,41.478849],[-74.759648,41.481856],[-74.75974099999999,41.485045],[-74.762042,41.488065],[-74.761715,41.489754999999995],[-74.760911,41.49067],[-74.753587,41.491963999999996],[-74.752399,41.493742999999995],[-74.74023799999999,41.494139],[-74.721097,41.494834999999995],[-74.62047199999999,41.498421],[-74.592761,41.499359],[-74.56079299999999,41.500606],[-74.557366,41.50125],[-74.54932,41.501545],[-74.52975099999999,41.502393999999995],[-74.51952899999999,41.502781],[-74.504485,41.503465],[-74.501171,41.503457999999995],[-74.496341,41.503668999999995],[-74.49380099999999,41.504447],[-74.488518,41.503779],[-74.483963,41.504256],[-74.47699,41.503972999999995],[-74.475591,41.504334],[-74.475458,41.504951999999996],[-74.475811,41.505621999999995],[-74.473948,41.506899],[-74.47405499999999,41.508734],[-74.476092,41.510399],[-74.473336,41.511368999999995],[-74.472685,41.512443],[-74.46889,41.514041999999996],[-74.468195,41.515885999999995],[-74.465616,41.516881999999995],[-74.46484,41.519375],[-74.46574799999999,41.522861999999996],[-74.462356,41.523562999999996],[-74.46024,41.524656],[-74.458792,41.526962999999995],[-74.456989,41.527784],[-74.45746199999999,41.529361],[-74.45545,41.530111999999995],[-74.45604,41.531884],[-74.45454,41.533369],[-74.452347,41.532543],[-74.450465,41.532955],[-74.44793899999999,41.534352999999996],[-74.447921,41.535379],[-74.444602,41.537233],[-74.44381299999999,41.53862],[-74.443787,41.540923],[-74.445942,41.540918999999995],[-74.445176,41.544094],[-74.439199,41.543023],[-74.43822899999999,41.547441],[-74.434787,41.546687999999996],[-74.436184,41.551030999999995],[-74.434393,41.552976],[-74.43417099999999,41.553540999999996],[-74.43028799999999,41.553841999999996],[-74.43015799999999,41.556033],[-74.426531,41.555943],[-74.429172,41.557018],[-74.428974,41.55882],[-74.42608299999999,41.559267999999996],[-74.425823,41.559301999999995],[-74.423028,41.560078],[-74.42344,41.562643],[-74.419733,41.562425999999995],[-74.419321,41.565625999999995],[-74.416934,41.569821],[-74.41414,41.567803],[-74.413026,41.568742],[-74.409894,41.568217],[-74.407625,41.568885],[-74.408092,41.570394],[-74.41022199999999,41.570467],[-74.409801,41.573291],[-74.408278,41.575175],[-74.408163,41.573805],[-74.406773,41.572254],[-74.40446399999999,41.573101],[-74.40187399999999,41.575331999999996],[-74.39761399999999,41.575094],[-74.395788,41.577113],[-74.396067,41.579139],[-74.395429,41.580693],[-74.393546,41.581958],[-74.391305,41.582059],[-74.391458,41.583704],[-74.390613,41.586220999999995],[-74.38900699999999,41.585294999999995],[-74.388452,41.583642],[-74.386149,41.583132],[-74.383515,41.583878999999996],[-74.38075599999999,41.586158],[-74.37995099999999,41.587416],[-74.377974,41.586385],[-74.370089,41.588589999999996],[-74.367055,41.590976999999995],[-74.363472,41.591964999999995],[-74.35980099999999,41.592028],[-74.35775699999999,41.591359],[-74.35340000000001,41.591865999999996],[-74.35394099999999,41.592974999999996],[-74.352048,41.592908],[-74.35195499999999,41.594791],[-74.353189,41.595369999999996],[-74.351342,41.598205],[-74.34935399999999,41.598621],[-74.34666299999999,41.597783],[-74.344713,41.597853],[-74.342539,41.596829],[-74.34067999999999,41.594376],[-74.336624,41.595374],[-74.3344,41.597511],[-74.332033,41.596739],[-74.329751,41.598622],[-74.330384,41.600254],[-74.329746,41.601503],[-74.32650199999999,41.602067],[-74.323752,41.602956999999996],[-74.320161,41.603006],[-74.316324,41.60543],[-74.314792,41.607448999999995],[-74.313835,41.610267],[-74.31143999999999,41.611449],[-74.30633499999999,41.608889],[-74.305443,41.610754],[-74.304501,41.611892999999995],[-74.304711,41.615251],[-74.304121,41.615787999999995],[-74.300286,41.616431999999996],[-74.295744,41.619655],[-74.294927,41.619569999999996],[-74.29230299999999,41.618294999999996],[-74.289704,41.619608],[-74.289058,41.621342],[-74.285966,41.621491999999996],[-74.280844,41.625215999999995],[-74.279112,41.625822],[-74.275786,41.625639],[-74.272346,41.628150999999995],[-74.27103799999999,41.629275],[-74.267322,41.629200999999995],[-74.264676,41.63225],[-74.263359,41.632597],[-74.250186,41.629324],[-74.250222,41.625875],[-74.250513,41.622755],[-74.251601,41.605374],[-74.244911,41.603758],[-74.240179,41.602661999999995],[-74.236555,41.601845999999995],[-74.202248,41.59429],[-74.197147,41.592991],[-74.187505,41.590793],[-74.185361,41.594128],[-74.18453099999999,41.593961],[-74.18437999999999,41.593931],[-74.160738,41.589408],[-74.153992,41.587897999999996],[-74.126393,41.582544],[-74.127274,41.587095999999995],[-74.12775599999999,41.588269],[-74.130471,41.599198],[-74.134511,41.615694999999995],[-74.098653,41.607259],[-74.094419,41.605452],[-74.089896,41.598602],[-74.085189,41.600252999999995],[-74.085116,41.600277999999996],[-74.084578,41.600437],[-74.08076,41.601589],[-74.074432,41.603649],[-74.068083,41.606001],[-74.053804,41.586065],[-74.05386899999999,41.582588],[-74.05394199999999,41.580724],[-74.053685,41.58061],[-74.050724,41.580870999999995],[-74.041328,41.581655],[-74.037125,41.582043999999996],[-74.026844,41.582978999999995],[-74.004434,41.585170999999995],[-73.999584,41.585805],[-73.98635,41.586816999999996],[-73.982658,41.587112999999995],[-73.953307,41.589977],[-73.954146,41.583270999999996],[-73.954725,41.58179],[-73.956831,41.576656],[-73.959467,41.571442999999995],[-73.964781,41.565311],[-73.96917599999999,41.562925],[-73.972707,41.560356],[-73.974532,41.558651999999995],[-73.97788899999999,41.555234],[-73.979933,41.55235],[-73.982805,41.549195],[-73.984618,41.547216],[-73.987866,41.542789],[-73.992949,41.529821],[-73.994547,41.527138],[-73.994964,41.526379999999996],[-73.99568599999999,41.524649],[-73.997182,41.51938],[-73.997484,41.516493],[-73.99718399999999,41.513393],[-73.99725,41.509769],[-73.997884,41.505685],[-73.997075,41.50172],[-73.99554599999999,41.499437],[-73.994784,41.498293],[-73.995029,41.497332],[-73.997609,41.487212],[-73.998584,41.483393],[-73.997584,41.475093],[-73.998898,41.462984],[-74.000108,41.456548999999995],[-73.997784,41.452193],[-73.994832,41.450268],[-73.986583,41.444893],[-73.98148599999999,41.438905],[-73.974501,41.427976],[-73.972792,41.424589],[-73.968398,41.420156],[-73.965156,41.413869999999996],[-73.962828,41.409589],[-73.962355,41.403698999999996],[-73.959136,41.400442],[-73.951415,41.398962999999995],[-73.94863699999999,41.39758],[-73.947355,41.395254],[-73.94752299999999,41.393316],[-73.95503099999999,41.376554],[-73.95825099999999,41.367277],[-73.95938,41.361036],[-73.95973099999999,41.353719],[-73.960143,41.351217],[-73.961257,41.348538999999995],[-73.965087,41.343472],[-73.980018,41.32627],[-73.98138399999999,41.324692999999996],[-73.984951,41.322204],[-73.988372,41.319981999999996],[-73.991484,41.317493],[-73.998733,41.312658],[-74.024113,41.294502],[-74.026885,41.292693],[-74.06950499999999,41.261793999999995],[-74.07489,41.257891],[-74.09884,41.2408],[-74.104399,41.236844999999995],[-74.107986,41.234291999999996],[-74.108544,41.233895],[-74.11417,41.230086],[-74.116588,41.228094],[-74.143328,41.208915999999995],[-74.151001,41.203461999999995],[-74.161789,41.195794],[-74.17729,41.184794],[-74.182566,41.181394],[-74.18572,41.178695],[-74.185873,41.178587],[-74.186359,41.178207],[-74.186544,41.178064],[-74.193985,41.172481999999995],[-74.211349,41.159628],[-74.216376,41.156188],[-74.234473,41.142883],[-74.243189773693,41.146718607636004],[-74.2802374078622,41.163020532352796],[-74.301994,41.172594],[-74.320995,41.182393999999995],[-74.32178462800009,41.1827567464],[-74.33296412051749,41.187892482043495],[-74.3417562867814,41.191931506318895],[-74.36589537516069,41.2030207374622],[-74.37889799999999,41.208994],[-74.38325505221279,41.2111663243698],[-74.4290881576177,41.2340176391925],[-74.4398054447606,41.2393610280025],[-74.457584,41.248225],[-74.47697107640909,41.257046283559006],[-74.499603,41.267344],[-74.5254868447246,41.279458922172296],[-74.536762565656,41.284736518409495],[-74.5561811083992,41.2938253588247],[-74.5611057739729,41.296130346386796],[-74.56230590471449,41.2966920670541],[-74.5641596114279,41.2975596936684],[-74.569298493675,41.29996494525059],[-74.5737262926986,41.3020373746418],[-74.607348,41.317774]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36075","STATE":"36","COUNTY":"075","NAME":"Oswego","LSAD":"County","CENSUSAREA":951.65},"geometry":{"type":"Polygon","coordinates":[[[-76.2005002287568,43.68023076718659],[-76.199907,43.680202],[-76.173309,43.678754],[-76.17158599999999,43.678650999999995],[-76.157755,43.677879],[-76.139399,43.676891999999995],[-76.122171,43.675863],[-76.10801599999999,43.674735999999996],[-76.101959,43.674279999999996],[-76.07629299999999,43.672143],[-76.070409,43.671659],[-76.066391,43.671327999999995],[-76.022003,43.668143],[-76.025087,43.707018],[-75.999642,43.704609999999995],[-75.955052,43.701454999999996],[-75.936762,43.700136],[-75.904245,43.698285],[-75.904202,43.698282999999996],[-75.87463799999999,43.695581999999995],[-75.87136,43.695872],[-75.774553,43.688883999999995],[-75.770727,43.656309],[-75.76950699999999,43.644568],[-75.768772,43.636919],[-75.766776,43.625068999999996],[-75.76513299999999,43.598572],[-75.76540399999999,43.593556],[-75.76503699999999,43.589014999999996],[-75.763973,43.583467999999996],[-75.763027,43.575900999999995],[-75.75901999999999,43.513157],[-75.75806899999999,43.499086999999996],[-75.75756899999999,43.492522],[-75.756213,43.470388],[-75.814627,43.483578],[-75.84891499999999,43.40737],[-75.850555,43.403729],[-75.88675599999999,43.325021],[-75.87798599999999,43.322887],[-75.865461,43.319883],[-75.862927,43.319274],[-75.862934,43.319221999999996],[-75.868428,43.279536],[-75.86977999999999,43.272802999999996],[-75.87091199999999,43.263152],[-75.870738,43.261700999999995],[-75.872361,43.249947999999996],[-75.872979,43.246285],[-75.874792,43.232527],[-75.874912,43.231474],[-75.875059,43.23019],[-75.884275,43.155561999999996],[-75.919307,43.160247],[-75.923538,43.161215999999996],[-75.92560399999999,43.162213],[-75.92755799999999,43.162805999999996],[-75.928113,43.163903999999995],[-75.92815999999999,43.169339],[-75.93003399999999,43.171116999999995],[-75.930655,43.173891999999995],[-75.932895,43.176688],[-75.935864,43.175747],[-75.938172,43.174318],[-75.94608,43.173714],[-75.949486,43.171302],[-75.952692,43.171096999999996],[-75.95559899999999,43.172182],[-75.957728,43.173967],[-75.959274,43.17624],[-75.959603,43.180423],[-75.964869,43.179998],[-75.965807,43.180448],[-75.970652,43.179572],[-75.973438,43.179898],[-75.979489,43.177400999999996],[-75.98222899999999,43.178121999999995],[-75.98454699999999,43.17966],[-75.98601699999999,43.181576],[-75.986195,43.183375999999996],[-75.989936,43.184892999999995],[-75.992226,43.184852],[-75.993394,43.183375999999996],[-75.99421699999999,43.182179999999995],[-75.995379,43.182586],[-75.99909,43.180554],[-76.002541,43.179621],[-76.002285,43.178138999999994],[-76.003023,43.176863999999995],[-76.004464,43.176967],[-76.00574399999999,43.177774],[-76.004075,43.177324],[-76.003633,43.177295],[-76.002927,43.177793],[-76.00255,43.178315999999995],[-76.002607,43.178506],[-76.002667,43.178486],[-76.002895,43.178422999999995],[-76.00318299999999,43.178315],[-76.003525,43.178218],[-76.00396099999999,43.178031999999995],[-76.004249,43.177977999999996],[-76.004303,43.177997999999995],[-76.004323,43.178036999999996],[-76.00434299999999,43.178095],[-76.004249,43.178159],[-76.003847,43.17834],[-76.003666,43.178436999999995],[-76.00357199999999,43.178472],[-76.003076,43.178618],[-76.002882,43.178701],[-76.002681,43.178765],[-76.002573,43.178838],[-76.00254699999999,43.178954999999995],[-76.00256,43.179063],[-76.00262599999999,43.179165],[-76.002682,43.179237],[-76.002691,43.179266],[-76.002693,43.179271],[-76.00269399999999,43.179276],[-76.002696,43.179283],[-76.002703,43.179305],[-76.0027,43.179337],[-76.00274,43.179415999999996],[-76.002787,43.179469],[-76.00521499999999,43.179352],[-76.008653,43.181345],[-76.008512,43.182601999999996],[-76.011647,43.185477],[-76.016251,43.187399],[-76.025719,43.190481999999996],[-76.031007,43.190591],[-76.03252499999999,43.19119],[-76.03514,43.195617999999996],[-76.04075399999999,43.198861],[-76.046131,43.202161],[-76.050417,43.202940999999996],[-76.05261899999999,43.202856999999995],[-76.05348,43.200478],[-76.055297,43.200024],[-76.055562,43.199197],[-76.060389,43.200492],[-76.065844,43.200562999999995],[-76.07169499999999,43.199847999999996],[-76.074154,43.199222999999996],[-76.078902,43.19948],[-76.081865,43.202256999999996],[-76.08268699999999,43.204536999999995],[-76.08245699999999,43.206849999999996],[-76.08076,43.208616],[-76.078243,43.208329],[-76.078921,43.20881],[-76.079514,43.208887],[-76.078541,43.209196999999996],[-76.076897,43.208448999999995],[-76.078559,43.209382999999995],[-76.083167,43.210578999999996],[-76.085306,43.211605],[-76.083643,43.214189999999995],[-76.07302399999999,43.213777],[-76.068056,43.212613999999995],[-76.069414,43.214698999999996],[-76.072015,43.214732],[-76.079268,43.215821],[-76.07929399999999,43.218309999999995],[-76.080462,43.215762999999995],[-76.084682,43.216892],[-76.08751699999999,43.219197],[-76.090645,43.220483],[-76.09575,43.223659999999995],[-76.099378,43.224931],[-76.102653,43.223686],[-76.106601,43.224422],[-76.10665399999999,43.226866],[-76.109911,43.229600000000005],[-76.113824,43.231612999999996],[-76.11589599999999,43.233489999999996],[-76.118121,43.233863],[-76.121496,43.234548],[-76.126504,43.233805],[-76.12974799999999,43.234943],[-76.134497,43.236436999999995],[-76.138142,43.239636999999995],[-76.140676,43.240415999999996],[-76.14852599999999,43.239636],[-76.156145,43.24267],[-76.157647,43.243268],[-76.16134699999999,43.243567999999996],[-76.169839,43.24722],[-76.172618,43.25034],[-76.174275,43.251373],[-76.177314,43.252238],[-76.179626,43.253592999999995],[-76.182104,43.257621],[-76.185278,43.258674],[-76.18943,43.261672],[-76.194068,43.266065999999995],[-76.196801,43.267624999999995],[-76.201599,43.271201],[-76.203334,43.271493],[-76.21083,43.268473],[-76.211711,43.267668],[-76.211621,43.266771999999996],[-76.209598,43.265271],[-76.2093,43.262144],[-76.212757,43.257408999999996],[-76.21235,43.254872],[-76.21060899999999,43.244004],[-76.212177,43.241684],[-76.213393,43.24002],[-76.212017,43.238963999999996],[-76.20500799999999,43.237412],[-76.203936,43.234756],[-76.204832,43.232068],[-76.20472,43.22898],[-76.20302699999999,43.223445999999996],[-76.202548,43.222268],[-76.194248,43.217068],[-76.198748,43.212568],[-76.206176,43.216612],[-76.209729,43.21306],[-76.210649,43.210567999999995],[-76.208336,43.208036],[-76.210149,43.206967999999996],[-76.212349,43.207268],[-76.214913,43.205411999999995],[-76.217646,43.204820999999995],[-76.217873,43.204772],[-76.22211999999999,43.204899],[-76.22444899999999,43.204968],[-76.230049,43.207868],[-76.23384899999999,43.212368],[-76.24015,43.214168],[-76.24465,43.214568],[-76.247826,43.220196],[-76.250001,43.225190999999995],[-76.25285,43.227768],[-76.25654999999999,43.232068],[-76.25795099999999,43.234868],[-76.258051,43.237368],[-76.26265099999999,43.236267999999995],[-76.263751,43.236368],[-76.26565099999999,43.238468],[-76.267551,43.239667999999995],[-76.270051,43.239368],[-76.274051,43.240168],[-76.275551,43.238768],[-76.273551,43.236267999999995],[-76.272151,43.234868],[-76.268351,43.233368],[-76.267451,43.231767999999995],[-76.266851,43.227467999999995],[-76.26355099999999,43.226168],[-76.262151,43.223568],[-76.262951,43.220867999999996],[-76.262051,43.218468],[-76.26435099999999,43.214968],[-76.264451,43.213468],[-76.266534,43.211113],[-76.268151,43.209468],[-76.269751,43.205568],[-76.271351,43.203967999999996],[-76.276151,43.201768],[-76.281027,43.201091],[-76.282915,43.206756],[-76.287076,43.210691999999995],[-76.287876,43.212675999999995],[-76.287684,43.21618],[-76.289524,43.219028],[-76.297876,43.22378],[-76.30083599999999,43.227076],[-76.301476,43.227588],[-76.303473,43.228770999999995],[-76.303516,43.228791],[-76.306437,43.230450999999995],[-76.31226099999999,43.230388],[-76.317349,43.22954],[-76.322437,43.230916],[-76.324213,43.232307999999996],[-76.344582,43.231525],[-76.34463199999999,43.23267],[-76.36600399999999,43.23167],[-76.381264,43.23095],[-76.38335,43.230866999999996],[-76.403001,43.230211999999995],[-76.415279,43.229752],[-76.430465,43.229222],[-76.450873,43.228508999999995],[-76.479224,43.227519],[-76.480536,43.247237],[-76.481019,43.255365],[-76.481121,43.256622],[-76.48114799999999,43.256640999999995],[-76.552408,43.255306999999995],[-76.60076099999999,43.253741999999995],[-76.605012,43.253569999999996],[-76.60571999999999,43.264841],[-76.606764,43.280629],[-76.60771199999999,43.296745],[-76.60794,43.300292999999996],[-76.609083,43.317115],[-76.60965,43.324887],[-76.61266499999999,43.367520999999996],[-76.613933,43.379563],[-76.61546,43.40266],[-76.61596899999999,43.407472],[-76.615971,43.407506],[-76.616173,43.411077],[-76.61694299999999,43.418189],[-76.61704399999999,43.418479999999995],[-76.6171093082771,43.419136705277595],[-76.60709299999999,43.423373999999995],[-76.5645855721445,43.4475367941159],[-76.56309273095519,43.44838538026009],[-76.562826,43.448536999999995],[-76.55089752150401,43.4530605608741],[-76.5471277644482,43.4544901418158],[-76.54621819270909,43.4548350729093],[-76.53734343497149,43.458200590723],[-76.53181,43.460299],[-76.5277821324025,43.463714113918094],[-76.52220931315058,43.4684391482269],[-76.5219993885017,43.46861713734219],[-76.5158822326074,43.4711359703417],[-76.5158049859465,43.471118773727],[-76.506858,43.469127],[-76.48696199999999,43.47535],[-76.4814560515797,43.48198538349789],[-76.472498,43.492781],[-76.437473,43.509212999999995],[-76.417581,43.521285],[-76.4169776823821,43.521447795855394],[-76.4167821174031,43.5215005660168],[-76.410636,43.523159],[-76.4064530450138,43.523425571161596],[-76.4011292353425,43.5237648466576],[-76.3709178164322,43.5256901585623],[-76.368849,43.525822],[-76.345492,43.513436999999996],[-76.330911,43.511978],[-76.29710299999999,43.51287],[-76.2706707520336,43.521285454326396],[-76.259858,43.524727999999996],[-76.240112573377,43.5284495822406],[-76.235834,43.529256],[-76.228701,43.532987],[-76.2194420108821,43.543475005080104],[-76.21856366703581,43.5444699381776],[-76.217958,43.545156],[-76.2178048286353,43.54543909772269],[-76.2138158155225,43.5528117586025],[-76.21379320255079,43.5528535528425],[-76.2132066719792,43.553937603177296],[-76.2131711801244,43.554003200707804],[-76.2120521212557,43.556071492114796],[-76.2119908428658,43.55618474939789],[-76.2108910801953,43.5582173767644],[-76.21087887774989,43.5582399298342],[-76.21077161874119,43.558438170420295],[-76.2107290116993,43.5585169185373],[-76.21043524041089,43.5590598789197],[-76.2101535527396,43.5595805058558],[-76.2098800170406,43.5600860659755],[-76.209853,43.560136],[-76.2095073833165,43.5609400192502],[-76.20942152820089,43.5611397467777],[-76.2093273225709,43.5613589003766],[-76.20822849180709,43.563915145862005],[-76.20779538471629,43.5649226968715],[-76.2069949205341,43.5667848425444],[-76.203473,43.574978],[-76.2034500111532,43.5751131012365],[-76.19913799999999,43.600454],[-76.19842840863049,43.614217895222296],[-76.19673175407301,43.647127787538004],[-76.196596,43.649761],[-76.1968321347848,43.651603866380704],[-76.2005002287568,43.68023076718659]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36077","STATE":"36","COUNTY":"077","NAME":"Otsego","LSAD":"County","CENSUSAREA":1001.7},"geometry":{"type":"Polygon","coordinates":[[[-74.71158,42.517799],[-74.711801,42.516843],[-74.715852,42.515893],[-74.718924,42.516132999999996],[-74.72014899999999,42.517264],[-74.721863,42.516237],[-74.726613,42.517679],[-74.72881,42.517404],[-74.73464,42.513943],[-74.73966,42.51565],[-74.740267,42.515659],[-74.74152099999999,42.515370999999995],[-74.742783,42.515992999999995],[-74.749601,42.514002],[-74.751865,42.514392],[-74.756748,42.511655],[-74.756877,42.511019],[-74.757213,42.510821],[-74.76095099999999,42.51051],[-74.76700199999999,42.506049],[-74.771737,42.504442],[-74.772888,42.505168999999995],[-74.77557999999999,42.504920999999996],[-74.777776,42.506327],[-74.794504,42.507926999999995],[-74.844121,42.512591],[-74.847776,42.511016999999995],[-74.857547,42.506811],[-74.88699,42.494161999999996],[-74.895499,42.490536],[-74.935042,42.473701999999996],[-74.934772,42.472494],[-74.957926,42.462756],[-74.959246,42.470385],[-74.959851,42.469268],[-74.968706,42.468435],[-74.97494,42.467487999999996],[-74.982214,42.446906],[-74.983987,42.444086],[-74.986638,42.444739],[-74.988196,42.446709],[-74.990995,42.446511],[-74.99172,42.445386],[-74.989436,42.443086],[-74.99202799999999,42.441378],[-74.992362,42.440357],[-74.994788,42.439867],[-75,42.441995],[-75.001537,42.44302],[-75.002175,42.445595999999995],[-75.001577,42.44724],[-75.004199,42.449317],[-75.007448,42.448445],[-75.012586,42.450503999999995],[-75.01577999999999,42.450582],[-75.017958,42.454243],[-75.01980999999999,42.429159],[-75.019818,42.429044999999995],[-75.02234299999999,42.429148],[-75.02735,42.429351],[-75.04035,42.42988],[-75.047034,42.43016],[-75.059068,42.43064],[-75.079813,42.424597999999996],[-75.093408,42.420634],[-75.114818,42.406392],[-75.126762,42.398576],[-75.124254,42.396052],[-75.122202,42.39407],[-75.12412499999999,42.392927],[-75.126921,42.391132999999996],[-75.131277,42.388507],[-75.143069,42.381401],[-75.147133,42.385661999999996],[-75.158639,42.379446],[-75.166775,42.37508],[-75.167672,42.374359999999996],[-75.18871899999999,42.362992999999996],[-75.197116,42.358395],[-75.197237,42.358329],[-75.194346,42.368213],[-75.193998,42.369403],[-75.19095999999999,42.379852],[-75.191069,42.37974],[-75.194762,42.37724],[-75.197322,42.377438999999995],[-75.207954,42.376888],[-75.209792,42.376363999999995],[-75.212139,42.373234],[-75.212927,42.369935],[-75.21376099999999,42.368973],[-75.21673799999999,42.367556],[-75.222478,42.367731],[-75.226849,42.367453],[-75.230685,42.365297],[-75.23607299999999,42.364303],[-75.241317,42.365072999999995],[-75.24422899999999,42.365818],[-75.246922,42.367263],[-75.249104,42.367028999999995],[-75.252416,42.364833999999995],[-75.25588499999999,42.364404],[-75.258944,42.366768],[-75.261569,42.366673],[-75.26711399999999,42.362614],[-75.267997,42.359829999999995],[-75.270552,42.357827],[-75.272922,42.356654999999996],[-75.272471,42.355576],[-75.27021599999999,42.353781999999995],[-75.26946099999999,42.351026999999995],[-75.273821,42.348374],[-75.277885,42.347618999999995],[-75.279316,42.346751],[-75.28090999999999,42.343199],[-75.283452,42.341888],[-75.293044,42.339172999999995],[-75.297958,42.331666999999996],[-75.298013,42.331593999999996],[-75.298093,42.331503999999995],[-75.29817899999999,42.331376],[-75.298256,42.331285],[-75.29827399999999,42.331252],[-75.298451,42.331025],[-75.30480399999999,42.327473],[-75.30612599999999,42.323532],[-75.305489,42.322404],[-75.308405,42.321151],[-75.31153599999999,42.321816],[-75.316383,42.321180999999996],[-75.323278,42.321070999999996],[-75.331561,42.318335999999995],[-75.331578,42.318328],[-75.331633,42.318304],[-75.332186,42.318106],[-75.333466,42.318194],[-75.33388099999999,42.31821],[-75.33444399999999,42.318095],[-75.33541699999999,42.31763],[-75.33579499999999,42.317212],[-75.336736,42.316199],[-75.341368,42.314797],[-75.347893,42.316105],[-75.351288,42.318484],[-75.353524,42.319221],[-75.364008,42.317495],[-75.36842299999999,42.315906999999996],[-75.371922,42.316013999999996],[-75.376679,42.321501],[-75.379341,42.319426],[-75.383239,42.315278],[-75.383837,42.315145],[-75.384663,42.315146999999996],[-75.388988,42.319851],[-75.390202,42.319907],[-75.391404,42.319648],[-75.393092,42.318923],[-75.394198,42.317547999999995],[-75.395679,42.315819999999995],[-75.398212,42.31503],[-75.40087799999999,42.315326999999996],[-75.401125,42.315366999999995],[-75.40223999999999,42.315383],[-75.402991,42.315362],[-75.4037,42.31546],[-75.40505499999999,42.315751],[-75.40606199999999,42.316041],[-75.406809,42.316387],[-75.40791399999999,42.316466999999996],[-75.408801,42.316441999999995],[-75.415319,42.314150999999995],[-75.416932,42.314094],[-75.414489,42.320178999999996],[-75.413029,42.320921],[-75.410308,42.319753],[-75.40792499999999,42.319396],[-75.407118,42.321588],[-75.410336,42.324495999999996],[-75.40984,42.325882],[-75.406745,42.327920999999996],[-75.406407,42.330771999999996],[-75.40482899999999,42.332958],[-75.400798,42.334247],[-75.398331,42.336065],[-75.397774,42.337817],[-75.398479,42.341131999999995],[-75.401849,42.345797],[-75.402453,42.348535999999996],[-75.39862099999999,42.350321],[-75.394201,42.353533],[-75.393755,42.355818],[-75.39284599999999,42.357915999999996],[-75.393053,42.359283],[-75.395613,42.359941],[-75.399441,42.360285999999995],[-75.39974099999999,42.362362],[-75.403345,42.365732],[-75.40477,42.370993],[-75.402288,42.373172],[-75.402709,42.375913999999995],[-75.406582,42.378972],[-75.40669,42.380781],[-75.404166,42.385684999999995],[-75.402641,42.387602],[-75.401596,42.390115],[-75.39609399999999,42.394552999999995],[-75.394182,42.396491],[-75.394404,42.399263999999995],[-75.39258199999999,42.400912999999996],[-75.387737,42.401607999999996],[-75.386104,42.402403],[-75.38187099999999,42.403214999999996],[-75.380685,42.403850999999996],[-75.37937099999999,42.405674999999995],[-75.380304,42.407644],[-75.374905,42.410784],[-75.37545,42.412349999999996],[-75.374617,42.415997999999995],[-75.376914,42.41506],[-75.37913499999999,42.416543999999995],[-75.37910099999999,42.417683],[-75.37699099999999,42.418462],[-75.37906699999999,42.419371999999996],[-75.37824499999999,42.422184],[-75.37662399999999,42.424167],[-75.377879,42.425346999999995],[-75.381018,42.426635],[-75.385566,42.432925],[-75.38576499999999,42.441552],[-75.386515,42.445873999999996],[-75.390349,42.450624],[-75.39151199999999,42.453706],[-75.395453,42.460186],[-75.3983,42.460665999999996],[-75.399784,42.462030999999996],[-75.399805,42.465585],[-75.400943,42.469077999999996],[-75.40163199999999,42.471776999999996],[-75.40071499999999,42.473226],[-75.40446399999999,42.479116999999995],[-75.40186299999999,42.480585],[-75.40316899999999,42.482797],[-75.39990399999999,42.482665999999995],[-75.396119,42.48576],[-75.39522099999999,42.488434],[-75.39620699999999,42.490271],[-75.39654999999999,42.494707999999996],[-75.398596,42.497130999999996],[-75.398811,42.499455999999995],[-75.395708,42.50201],[-75.39577,42.502998],[-75.39811,42.503416],[-75.395986,42.505483],[-75.39616199999999,42.507019],[-75.397543,42.507414],[-75.399327,42.506031],[-75.400193,42.508759],[-75.403459,42.508699],[-75.402205,42.510995],[-75.394509,42.511283],[-75.390058,42.510517],[-75.389161,42.511230999999995],[-75.388903,42.513662],[-75.387883,42.515296],[-75.384843,42.517801999999996],[-75.384042,42.520908],[-75.386965,42.523331],[-75.383388,42.526514],[-75.382296,42.528794],[-75.381884,42.531965],[-75.37754799999999,42.53349],[-75.377538,42.535835],[-75.37315,42.536321],[-75.370407,42.540892],[-75.371315,42.543862999999995],[-75.368606,42.545344],[-75.36848499999999,42.547661],[-75.36739299999999,42.550684],[-75.36737,42.552503],[-75.365781,42.552062],[-75.366006,42.553453],[-75.364728,42.554611],[-75.361598,42.552451999999995],[-75.356051,42.556253],[-75.35488699999999,42.554196999999995],[-75.353556,42.55555],[-75.349356,42.557921],[-75.348122,42.560396999999995],[-75.34042099999999,42.560635999999995],[-75.33718999999999,42.562338],[-75.33756799999999,42.564555999999996],[-75.33025599999999,42.567432],[-75.331859,42.568529],[-75.33077999999999,42.571677],[-75.33237199999999,42.573001],[-75.330122,42.574301999999996],[-75.329822,42.576448],[-75.327811,42.576527],[-75.326639,42.577850999999995],[-75.328057,42.578182999999996],[-75.328869,42.579681],[-75.327089,42.5798],[-75.327426,42.580987],[-75.33005899999999,42.580515],[-75.33027,42.581185999999995],[-75.328631,42.583915999999995],[-75.326505,42.585451],[-75.326628,42.587371999999995],[-75.325407,42.588820999999996],[-75.327196,42.590467],[-75.328959,42.59032],[-75.32932799999999,42.591666],[-75.331299,42.593464999999995],[-75.333496,42.592369],[-75.336319,42.594318],[-75.337397,42.597266],[-75.337037,42.599084999999995],[-75.338049,42.599576],[-75.337046,42.600749],[-75.337028,42.602968999999995],[-75.338803,42.606103999999995],[-75.338518,42.611224],[-75.336922,42.613561],[-75.331306,42.616174],[-75.330162,42.617849],[-75.326951,42.618732],[-75.324726,42.620286],[-75.322983,42.623183999999995],[-75.32377199999999,42.624618],[-75.327428,42.625834999999995],[-75.326807,42.628133999999996],[-75.330057,42.630846],[-75.32667099999999,42.633516],[-75.323762,42.633949],[-75.322983,42.638556],[-75.324131,42.641110999999995],[-75.323003,42.644006],[-75.32472899999999,42.645193],[-75.325267,42.645897999999995],[-75.325379,42.646453],[-75.32495999999999,42.647397999999995],[-75.328054,42.648588],[-75.32834,42.651120999999996],[-75.327142,42.652892],[-75.328801,42.654747],[-75.328238,42.657193],[-75.331103,42.661072],[-75.33001999999999,42.662639],[-75.327969,42.664047],[-75.33012,42.665289],[-75.33117299999999,42.667877999999995],[-75.330507,42.668676],[-75.330896,42.671416],[-75.327497,42.672427],[-75.329596,42.672675999999996],[-75.330394,42.674195],[-75.327119,42.674428999999996],[-75.328204,42.676362],[-75.32697499999999,42.676738],[-75.32764999999999,42.679665],[-75.326422,42.680816],[-75.321776,42.68211],[-75.319842,42.683268],[-75.320032,42.684629],[-75.31550299999999,42.687211],[-75.313283,42.689744999999995],[-75.31315,42.692001],[-75.31101199999999,42.697486999999995],[-75.30957,42.698592],[-75.306654,42.705988999999995],[-75.302543,42.710203],[-75.30305299999999,42.71205],[-75.301214,42.713597],[-75.299906,42.713695],[-75.300725,42.715233999999995],[-75.29929299999999,42.716822],[-75.29950699999999,42.717835],[-75.29651299999999,42.718652999999996],[-75.29606299999999,42.720489],[-75.296962,42.722350999999996],[-75.296093,42.724933],[-75.297176,42.725932],[-75.295644,42.727236999999995],[-75.29596,42.728378],[-75.300333,42.729091],[-75.297268,42.732302999999995],[-75.29534799999999,42.73282],[-75.29545999999999,42.733877],[-75.292825,42.737750999999996],[-75.293958,42.739184],[-75.296195,42.742281],[-75.29587699999999,42.744105999999995],[-75.29339399999999,42.747656],[-75.290807,42.748536],[-75.290898,42.751427],[-75.28737,42.752133],[-75.286185,42.750735],[-75.28349899999999,42.75139],[-75.28232899999999,42.753096],[-75.280061,42.754546],[-75.28040899999999,42.756071],[-75.279563,42.759021999999995],[-75.278205,42.760008],[-75.278757,42.762591],[-75.279721,42.763959],[-75.276647,42.765701],[-75.275092,42.764520999999995],[-75.27373399999999,42.765817],[-75.27534399999999,42.766559],[-75.27520799999999,42.767764],[-75.27422299999999,42.767973999999995],[-75.273724,42.771482],[-75.27187599999999,42.773483],[-75.267866,42.775475],[-75.26584299999999,42.774767999999995],[-75.263427,42.777532],[-75.263285,42.775666],[-75.261082,42.775926999999996],[-75.258825,42.776993],[-75.25835099999999,42.779669],[-75.255723,42.780705999999995],[-75.257222,42.781915999999995],[-75.257057,42.783034],[-75.251944,42.783950999999995],[-75.251037,42.785115],[-75.252118,42.785289],[-75.25294199999999,42.787555],[-75.251983,42.788736],[-75.252022,42.791334],[-75.249962,42.792154],[-75.251672,42.794821],[-75.253242,42.795702999999996],[-75.25067,42.796771],[-75.251997,42.798064],[-75.25173699999999,42.800075],[-75.249697,42.800340999999996],[-75.251055,42.801209],[-75.250554,42.803335],[-75.249509,42.804172],[-75.247843,42.807812999999996],[-75.248711,42.808766],[-75.249133,42.811718],[-75.24778599999999,42.814671],[-75.245311,42.814487],[-75.24252899999999,42.816444999999995],[-75.242342,42.817706],[-75.24598499999999,42.817285],[-75.248085,42.822147],[-75.250225,42.823837],[-75.24951899999999,42.825652999999996],[-75.247956,42.826882],[-75.244675,42.830845],[-75.242232,42.831897999999995],[-75.241894,42.833225],[-75.239547,42.834233],[-75.241655,42.836891],[-75.24134699999999,42.837996],[-75.243102,42.838552],[-75.242587,42.84343],[-75.244197,42.842912999999996],[-75.244401,42.844221],[-75.246614,42.844521],[-75.247717,42.846475],[-75.245764,42.847412],[-75.247445,42.849858999999995],[-75.24466,42.850594],[-75.245925,42.85237],[-75.244877,42.853863],[-75.246894,42.855356],[-75.24506199999999,42.856054],[-75.244134,42.861974],[-75.244573,42.8646],[-75.247192,42.863935999999995],[-75.247494,42.864774999999995],[-75.246138,42.864943],[-75.244957,42.869004],[-75.24720099999999,42.86933],[-75.247963,42.871604],[-75.244523,42.874508],[-75.242745,42.877869],[-75.212158,42.879973],[-75.21064199999999,42.856549],[-75.13987,42.85976],[-75.137565,42.862463],[-75.128157,42.875071],[-75.120745,42.883458999999995],[-75.117363,42.887989],[-75.100999,42.908363],[-75.07712,42.898401],[-75.06544199999999,42.89353],[-75.05006,42.887113],[-75.024164,42.876325],[-75.000373,42.866282],[-74.9996,42.86596],[-74.999439,42.865907],[-74.997794,42.865297999999996],[-74.992987,42.863357],[-74.985495,42.86032],[-74.97124699999999,42.853446999999996],[-74.961749,42.849378],[-74.954822,42.846422],[-74.919164,42.830588],[-74.90673799999999,42.824943],[-74.894671,42.832051],[-74.890873,42.841356],[-74.889252,42.847668999999996],[-74.88780899999999,42.851957999999996],[-74.88565899999999,42.863523],[-74.884176,42.871719999999996],[-74.878822,42.898274],[-74.83252999999999,42.884496999999996],[-74.800358,42.874763],[-74.794829,42.873042999999996],[-74.763303,42.863237],[-74.751246,42.859657999999996],[-74.709837,42.847611],[-74.70205399999999,42.845304999999996],[-74.668043,42.835235999999995],[-74.667931,42.835203],[-74.649715,42.829845999999996],[-74.649648,42.829834],[-74.648298,42.829558],[-74.665217,42.792237],[-74.668031,42.764592],[-74.667512,42.75071],[-74.664889,42.743266],[-74.664666,42.742678],[-74.664154,42.741434999999996],[-74.660305,42.730275],[-74.659509,42.728038],[-74.65930399999999,42.727463],[-74.649074,42.694348],[-74.639515,42.663654],[-74.63884399999999,42.661558],[-74.635763,42.651981],[-74.635302,42.649733],[-74.634637,42.647808999999995],[-74.634011,42.644379],[-74.631126,42.628931],[-74.630652,42.62677],[-74.63297399999999,42.62343],[-74.639594,42.613816],[-74.64045399999999,42.612334999999995],[-74.655641,42.589144999999995],[-74.657468,42.586721],[-74.668931,42.569237],[-74.670576,42.566948],[-74.672018,42.564836],[-74.672428,42.564454999999995],[-74.681471,42.553706],[-74.681579,42.553577999999995],[-74.686092,42.548214],[-74.698442,42.533559],[-74.71158,42.517799]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36081","STATE":"36","COUNTY":"081","NAME":"Queens","LSAD":"County","CENSUSAREA":108.532},"geometry":{"type":"Polygon","coordinates":[[[-73.7543232607157,40.5863570925258],[-73.753349,40.590559999999996],[-73.7635534059662,40.5906541043045],[-73.7651219959449,40.5906685697295],[-73.7673316676262,40.5906889471643],[-73.7700467636287,40.5907139855861],[-73.7748905104515,40.590758654274104],[-73.774928,40.590759],[-73.7751333940839,40.5907194739022],[-73.7779658295507,40.5901743991901],[-73.7838658143717,40.5890390043803],[-73.78726552865629,40.588384762366005],[-73.7887551018945,40.58809810845509],[-73.7956884573104,40.5867638515049],[-73.7960643629067,40.5866915121216],[-73.8014296239689,40.5856590197089],[-73.806834,40.584618999999996],[-73.8213429791295,40.580715772061296],[-73.834408,40.577200999999995],[-73.8359358679945,40.5766408824533],[-73.84379783826749,40.5737586782854],[-73.8567263814124,40.5690190647224],[-73.85846274944291,40.568382510907],[-73.85900333493701,40.568184331861495],[-73.86277910109871,40.5668001331695],[-73.86314859257959,40.56666467731689],[-73.8782736532086,40.5611198188055],[-73.878906,40.560888],[-73.8998218891387,40.5547872758323],[-73.9210752680213,40.548588113017296],[-73.9405910702874,40.542895764690805],[-73.94042262952449,40.54862275062779],[-73.9402473627505,40.5545818209404],[-73.937566940325,40.5566084546682],[-73.9348911501981,40.558631585973195],[-73.9336738276627,40.5595519882518],[-73.9327288162641,40.5602664995002],[-73.9344946944307,40.5630414505557],[-73.93568610080189,40.564913660332095],[-73.9385976888393,40.566161483009],[-73.92806999999999,40.567786],[-73.903871,40.571619],[-73.890518,40.572705],[-73.886292,40.573505],[-73.885069,40.573749],[-73.879222,40.574656],[-73.87141799999999,40.578534999999995],[-73.869232,40.579342],[-73.86751,40.580228999999996],[-73.866005,40.581001],[-73.859492,40.583937999999996],[-73.85493699999999,40.585974],[-73.849852,40.588668999999996],[-73.84667999999999,40.593209],[-73.844437,40.595855],[-73.835876,40.605637],[-73.834463,40.607192999999995],[-73.834283,40.609186],[-73.834054,40.613454999999995],[-73.833422,40.626782],[-73.833365,40.628461],[-73.836238,40.631111],[-73.83765199999999,40.63284],[-73.848338,40.643521],[-73.85493799999999,40.642649999999996],[-73.855021,40.643097999999995],[-73.85614799999999,40.649198],[-73.856652,40.650129],[-73.858386,40.652671],[-73.86049,40.654655],[-73.86059399999999,40.654779999999995],[-73.860676,40.654868],[-73.86219299999999,40.656828999999995],[-73.863171,40.658277],[-73.85748199999999,40.659977],[-73.857879,40.661564],[-73.858359,40.663236999999995],[-73.85566,40.663802],[-73.85606299999999,40.665510999999995],[-73.856115,40.665729],[-73.856425,40.667032999999996],[-73.856847,40.668603],[-73.857267,40.670255],[-73.85763299999999,40.671656],[-73.860389,40.671268999999995],[-73.861024,40.674005],[-73.861064,40.674343],[-73.861318,40.675021],[-73.861712,40.676611],[-73.862028,40.677886],[-73.863349,40.679352],[-73.863787,40.681114],[-73.86410099999999,40.682373],[-73.866027,40.681917999999996],[-73.866295,40.683189],[-73.86650399999999,40.684474],[-73.866598,40.685269999999996],[-73.867018,40.68683],[-73.867277,40.687745],[-73.86746099999999,40.688415],[-73.868059,40.691184],[-73.868724,40.694756],[-73.868917,40.69515],[-73.874021,40.694191],[-73.87945599999999,40.691230999999995],[-73.883777,40.687863],[-73.887625,40.686001999999995],[-73.889575,40.68418],[-73.89008199999999,40.684712],[-73.892523,40.683423999999995],[-73.894033,40.685139],[-73.896497,40.682446999999996],[-73.900988,40.687616],[-73.901731,40.690822],[-73.901241,40.691438],[-73.90170499999999,40.69166],[-73.90212799999999,40.691843],[-73.903641,40.692794],[-73.904293,40.693159],[-73.905113,40.693629],[-73.905851,40.694069],[-73.904425,40.695671],[-73.904782,40.695983],[-73.905059,40.69602],[-73.90555599999999,40.696428],[-73.905772,40.696509999999996],[-73.906195,40.696802999999996],[-73.90645099999999,40.69687],[-73.90691,40.697191],[-73.90719899999999,40.697342],[-73.907517,40.697545],[-73.908008,40.697764],[-73.908757,40.698201999999995],[-73.91098199999999,40.699535999999995],[-73.911655,40.699905],[-73.910578,40.700998],[-73.911362,40.701495],[-73.912063,40.701910999999996],[-73.912725,40.702363],[-73.912058,40.703446],[-73.912701,40.703835],[-73.91340000000001,40.704325],[-73.914095,40.704727],[-73.914807,40.705194999999996],[-73.915532,40.70558],[-73.91627299999999,40.706105],[-73.917087,40.706481],[-73.917852,40.706852],[-73.918632,40.707299],[-73.919392,40.707687],[-73.92008899999999,40.708251],[-73.92147299999999,40.709004],[-73.92167599999999,40.709471],[-73.920726,40.710460999999995],[-73.92392,40.714074],[-73.92436099999999,40.71557],[-73.923734,40.716245],[-73.92304299999999,40.716989999999996],[-73.924036,40.718764],[-73.92386499999999,40.720056],[-73.92792899999999,40.726577999999996],[-73.929223,40.727849],[-73.929428,40.727878],[-73.9319,40.72844],[-73.937339,40.72992],[-73.94073399999999,40.733425],[-73.94236099999999,40.735564],[-73.947064,40.737516],[-73.95262699999999,40.739255],[-73.954084,40.739446],[-73.955164,40.739145],[-73.96118799999999,40.737091],[-73.962795,40.737674],[-73.96270299999999,40.738302999999995],[-73.962503,40.739322],[-73.961544,40.743081],[-73.959941,40.744389999999996],[-73.95830000000001,40.745731],[-73.957236,40.74756],[-73.95492,40.751509],[-73.951011,40.755724],[-73.945111,40.763086],[-73.943951,40.764434],[-73.940844,40.767399],[-73.935741,40.770548],[-73.93518999999999,40.771744999999996],[-73.938076,40.772551],[-73.938447,40.773551],[-73.93839899999999,40.774606],[-73.935739,40.777156999999995],[-73.934972,40.778439],[-73.93508,40.779218],[-73.934114,40.777575999999996],[-73.931857,40.778262999999995],[-73.929555,40.776868],[-73.92797,40.776762],[-73.926006,40.77888],[-73.924605,40.779433999999995],[-73.920425,40.782874],[-73.917817,40.784976],[-73.916316,40.786601],[-73.915358,40.788095999999996],[-73.910551,40.790988],[-73.912506,40.79618],[-73.89980899999999,40.792524],[-73.892866,40.790566999999996],[-73.890586,40.790144999999995],[-73.889918,40.787397999999996],[-73.884867,40.786621],[-73.878964,40.785743],[-73.873688,40.786159999999995],[-73.870992,40.786978999999995],[-73.871254,40.787593],[-73.871021,40.788833],[-73.87000499999999,40.790681],[-73.86670699999999,40.793653],[-73.862704,40.797276],[-73.853466,40.799580999999996],[-73.851809,40.799991999999996],[-73.844044,40.800959999999996],[-73.834903,40.80188],[-73.831706,40.802893999999995],[-73.830548,40.803162],[-73.82709299999999,40.803084],[-73.82321,40.804292],[-73.817083,40.805479999999996],[-73.811234,40.805098],[-73.8047,40.803242],[-73.799967,40.801871999999996],[-73.793668,40.79996],[-73.787302,40.799979],[-73.78596360542639,40.800861871260395],[-73.78203586904519,40.7957709558099],[-73.78136925704669,40.7949069300726],[-73.7760316362797,40.7952750424031],[-73.7755139240089,40.7956448369334],[-73.7684308591267,40.800704169692494],[-73.764765,40.796844],[-73.756187,40.788703],[-73.750817,40.782886999999995],[-73.750655,40.782711],[-73.750304,40.782531999999996],[-73.749575,40.781898],[-73.746831,40.778994999999995],[-73.74676,40.780381999999996],[-73.74421,40.778704999999995],[-73.73945599999999,40.775952],[-73.739361,40.775867999999996],[-73.73896599999999,40.775518],[-73.73875199999999,40.775497],[-73.737853,40.774879],[-73.73376,40.772469],[-73.733049,40.77196],[-73.72959,40.769985],[-73.72871099999999,40.769467999999996],[-73.727888,40.768898],[-73.720942,40.764793999999995],[-73.720653,40.764477],[-73.714438,40.76045],[-73.713432,40.759761],[-73.713034,40.759566],[-73.707825,40.756215999999995],[-73.70542,40.754605999999995],[-73.70273499999999,40.753251],[-73.70174399999999,40.75253],[-73.701342,40.750766999999996],[-73.701168,40.748864999999995],[-73.700901,40.747129],[-73.70087199999999,40.746866],[-73.700768,40.745014],[-73.700582,40.743184],[-73.70029199999999,40.74105],[-73.700277,40.73972],[-73.700272,40.739242],[-73.700356,40.739171999999996],[-73.700655,40.738319],[-73.701239,40.737427],[-73.702004,40.736522],[-73.70218899999999,40.73611],[-73.70259,40.73551],[-73.703315,40.734563],[-73.704599,40.732502],[-73.704869,40.731997],[-73.705269,40.731513],[-73.70648,40.729710999999995],[-73.707662,40.727830999999995],[-73.709774,40.727381],[-73.71050000000001,40.727227],[-73.711882,40.727047],[-73.712407,40.726977999999995],[-73.71407599999999,40.72676],[-73.71588,40.726541999999995],[-73.720902,40.725342],[-73.721193,40.725266999999995],[-73.721786,40.725089],[-73.722912,40.724793999999996],[-73.724122,40.724475],[-73.72473099999999,40.724309999999996],[-73.725672,40.724038],[-73.728162,40.723084],[-73.73032599999999,40.722156999999996],[-73.729661,40.720483],[-73.729176,40.719167],[-73.728522,40.716784],[-73.726979,40.710812],[-73.726905,40.710017],[-73.725938,40.706029],[-73.72587399999999,40.703610999999995],[-73.725867,40.703205],[-73.72584599999999,40.703015],[-73.725843,40.702841],[-73.725867,40.702740999999996],[-73.72586,40.702604],[-73.72575499999999,40.701992],[-73.72556,40.701395999999995],[-73.72554199999999,40.701125],[-73.725465,40.700403],[-73.726405,40.696863],[-73.726258,40.690611],[-73.726259,40.690269],[-73.726372,40.689713999999995],[-73.726231,40.689659999999996],[-73.726385,40.689571],[-73.726377,40.689442],[-73.725938,40.686892],[-73.725956,40.685682],[-73.725843,40.685248],[-73.725726,40.683907999999995],[-73.725792,40.683574],[-73.725861,40.683223],[-73.725687,40.68025],[-73.72588,40.678954],[-73.72591899999999,40.678692999999996],[-73.726011,40.678078],[-73.726255,40.677349],[-73.72654299999999,40.676487],[-73.727441,40.674428999999996],[-73.727541,40.674206999999996],[-73.727926,40.670097],[-73.727992,40.669427],[-73.728128,40.668707999999995],[-73.728264,40.668073],[-73.728222,40.667314],[-73.728264,40.666606],[-73.728383,40.666427],[-73.72830499999999,40.665917],[-73.72814,40.665002],[-73.727732,40.664549],[-73.727577,40.663855],[-73.72764699999999,40.661058],[-73.726444,40.659161999999995],[-73.725055,40.653509],[-73.728548,40.651081],[-73.7322,40.650048],[-73.734419,40.649746],[-73.734785,40.649696],[-73.735834,40.649302],[-73.740966,40.647861],[-73.741895,40.642092999999996],[-73.741534,40.63923],[-73.740284,40.637175],[-73.739846,40.635812],[-73.742149,40.63484],[-73.74251,40.635435],[-73.741282,40.637152],[-73.741944,40.637906],[-73.744016,40.637698],[-73.74529,40.634128],[-73.746702,40.633387],[-73.766487,40.625687],[-73.766954,40.623172],[-73.766814,40.621082],[-73.766755,40.620435],[-73.765969,40.614927],[-73.763476,40.613706],[-73.763454,40.61369],[-73.760021,40.611349],[-73.759631,40.611297],[-73.755197,40.610594],[-73.755173,40.609984],[-73.753458,40.61052],[-73.750652,40.611453],[-73.74911999999999,40.612035999999996],[-73.747993,40.61231],[-73.747451,40.612072],[-73.747216,40.612179],[-73.74694199999999,40.611775],[-73.746855,40.611574],[-73.745761,40.611992],[-73.745663,40.611812],[-73.745633,40.611756],[-73.745368,40.611204],[-73.744567,40.610116999999995],[-73.741148,40.60546],[-73.740571,40.60488],[-73.738151,40.602709999999995],[-73.738295,40.597991],[-73.73814999999999,40.594539],[-73.73814999999999,40.594229],[-73.737185,40.592965],[-73.743237,40.592839],[-73.74338,40.592847],[-73.747749,40.591502999999996],[-73.752371,40.587965],[-73.7543232607157,40.5863570925258]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36091","STATE":"36","COUNTY":"091","NAME":"Saratoga","LSAD":"County","CENSUSAREA":809.984},"geometry":{"type":"Polygon","coordinates":[[[-73.676762,42.783277],[-73.680262,42.783377],[-73.68395199999999,42.778735999999995],[-73.68726199999999,42.777077],[-73.688362,42.775476999999995],[-73.69376199999999,42.776976999999995],[-73.69676299999999,42.778332],[-73.697668,42.778735],[-73.703163,42.782477],[-73.708963,42.787676999999995],[-73.709963,42.793377],[-73.710663,42.794077],[-73.71093499999999,42.794503999999996],[-73.713663,42.796977],[-73.719863,42.801277],[-73.720563,42.803076999999995],[-73.71866299999999,42.805676999999996],[-73.71776299999999,42.806277],[-73.717091,42.807283999999996],[-73.717421,42.809429],[-73.721363,42.813077],[-73.722663,42.820676999999996],[-73.726663,42.822576999999995],[-73.731669,42.821304999999995],[-73.736963,42.819477],[-73.737663,42.818877],[-73.74836499999999,42.805276],[-73.750165,42.801376],[-73.758466,42.795276],[-73.76137,42.791771],[-73.763465,42.788576],[-73.76666399999999,42.786077],[-73.76876399999999,42.785877],[-73.77736399999999,42.791776999999996],[-73.77996399999999,42.792176999999995],[-73.78246399999999,42.791776999999996],[-73.787065,42.789677],[-73.793565,42.782576999999996],[-73.79796499999999,42.779477],[-73.799464,42.778878],[-73.80936899999999,42.778869],[-73.822166,42.780277999999996],[-73.82766699999999,42.783775999999996],[-73.828468,42.784879],[-73.829064,42.790177],[-73.831302,42.792266],[-73.83216999999999,42.793076],[-73.84156899999999,42.797875],[-73.845803,42.80428],[-73.84586399999999,42.804375],[-73.84626899999999,42.804808],[-73.85274199999999,42.811493],[-73.856286,42.816404999999996],[-73.858468,42.819977],[-73.86676899999999,42.828376999999996],[-73.87586399999999,42.834274],[-73.876722,42.837505],[-73.879663,42.848575],[-73.88176899999999,42.850876],[-73.887982,42.850182],[-73.89056599999999,42.850277],[-73.895938,42.851076],[-73.898029,42.866727999999995],[-73.898074,42.867340999999996],[-73.899124,42.875642],[-73.89950999999999,42.878524],[-73.900466,42.885667999999995],[-73.900903,42.888628999999995],[-73.902153,42.897084],[-73.902627,42.900284],[-73.903272,42.904294],[-73.90415999999999,42.909771],[-73.904386,42.911162999999995],[-73.918483,42.910356],[-73.921269,42.909531],[-73.927871,42.907545999999996],[-73.934493,42.905527],[-73.936926,42.904453],[-73.945666,42.900652],[-73.955458,42.897306],[-73.959256,42.899225],[-73.964788,42.90206],[-73.97684199999999,42.915898999999996],[-73.991661,42.9255],[-73.993861,42.926894999999995],[-73.995167,42.927707999999996],[-73.995375,42.927813],[-73.996214,42.928276],[-74.006531,42.934073],[-74.009581,42.935137999999995],[-74.011951,42.936088],[-74.018992,42.938829],[-74.019938,42.939147],[-74.020063,42.939034],[-74.020656,42.939389],[-74.022832,42.940121],[-74.03197,42.94283],[-74.032911,42.943135],[-74.036928,42.944981999999996],[-74.04226899999999,42.94835],[-74.04499799999999,42.949369],[-74.046109,42.949784],[-74.055605,42.953289],[-74.079909,42.954823999999995],[-74.08805199999999,42.955332999999996],[-74.09298,42.955867999999995],[-74.093814,42.959378],[-74.095078,42.968061999999996],[-74.096047,42.974092999999996],[-74.096132,42.974621],[-74.096897,42.979378],[-74.097467,42.982934],[-74.101148,43.006356],[-74.101751,43.010323],[-74.101862,43.010918],[-74.10206,43.011558],[-74.10316,43.019346999999996],[-74.10347399999999,43.020886999999995],[-74.106543,43.040986],[-74.109152,43.057553],[-74.109915,43.062356],[-74.11031799999999,43.064868],[-74.11062,43.066753],[-74.114277,43.089709],[-74.11522,43.095813],[-74.12272899999999,43.143729],[-74.12343,43.148218],[-74.124335,43.1539],[-74.126081,43.164674999999995],[-74.127061,43.171025],[-74.12740099999999,43.173227],[-74.12838599999999,43.179759],[-74.129465,43.187650999999995],[-74.131214,43.197779999999995],[-74.132605,43.206631],[-74.13391299999999,43.215472999999996],[-74.134902,43.221568],[-74.136026,43.228831],[-74.140147,43.253979],[-74.141065,43.259505],[-74.14347,43.273979],[-74.15006199999999,43.312022999999996],[-74.15808299999999,43.359527],[-74.158147,43.359905999999995],[-74.1601,43.371531999999995],[-74.02546199999999,43.384434999999996],[-74.000391,43.386846],[-73.904873,43.395942999999995],[-73.883299,43.397988],[-73.883157,43.397014999999996],[-73.880737,43.392995],[-73.878667,43.390929],[-73.877392,43.386646],[-73.874567,43.384495],[-73.873147,43.380426],[-73.872796,43.376618],[-73.870977,43.372523],[-73.872175,43.369216],[-73.874567,43.366831999999995],[-73.875372,43.365122],[-73.87513899999999,43.361920999999995],[-73.873355,43.359744],[-73.87071499999999,43.357893999999995],[-73.865692,43.355216],[-73.86475399999999,43.354178],[-73.86432099999999,43.351836999999996],[-73.864623,43.346678],[-73.864038,43.345496],[-73.85916999999999,43.342962],[-73.854203,43.339245999999996],[-73.853286,43.33775],[-73.854309,43.33482],[-73.856877,43.333563999999996],[-73.858991,43.33032],[-73.85864699999999,43.328115],[-73.856833,43.326640999999995],[-73.85400899999999,43.324976],[-73.84960099999999,43.324126],[-73.848354,43.323032999999995],[-73.84318999999999,43.318852],[-73.842423,43.316927],[-73.842426,43.314738999999996],[-73.840364,43.313153],[-73.836918,43.306611],[-73.83294099999999,43.304873],[-73.82721699999999,43.305476999999996],[-73.824615,43.304269999999995],[-73.824789,43.299104],[-73.82694099999999,43.290817],[-73.827072,43.289932],[-73.827186,43.289165],[-73.827389,43.286415],[-73.827503,43.284569999999995],[-73.825226,43.278918999999995],[-73.825152,43.277544999999996],[-73.826077,43.276088],[-73.832651,43.270855999999995],[-73.835567,43.265834999999996],[-73.83581099999999,43.253755999999996],[-73.834034,43.250012999999996],[-73.83345899999999,43.249303],[-73.83208599999999,43.248854],[-73.829179,43.247974],[-73.826645,43.245694],[-73.82138499999999,43.247623],[-73.819532,43.250643],[-73.813402,43.250882999999995],[-73.81006,43.250538],[-73.808375,43.250948],[-73.803298,43.250319999999995],[-73.792889,43.246243],[-73.789731,43.244420999999996],[-73.784246,43.23908],[-73.77949,43.234904],[-73.778454,43.233522],[-73.775795,43.227968],[-73.771061,43.223397999999996],[-73.767498,43.222122999999996],[-73.765269,43.222775999999996],[-73.763515,43.22539],[-73.761732,43.229805999999996],[-73.76021899999999,43.231857999999995],[-73.753412,43.235726],[-73.743957,43.242717],[-73.741785,43.246047],[-73.740354,43.250071999999996],[-73.737574,43.255226],[-73.74,43.262127],[-73.73997,43.264708999999996],[-73.73852,43.266577999999996],[-73.73469,43.268896999999996],[-73.73047799999999,43.270773999999996],[-73.723291,43.272445],[-73.71268599999999,43.273520999999995],[-73.709848,43.274291],[-73.707849,43.275732999999995],[-73.706171,43.278282],[-73.704584,43.279357],[-73.698235,43.278282],[-73.695244,43.278915],[-73.69296299999999,43.282733],[-73.690162,43.284071999999995],[-73.684962,43.280871999999995],[-73.68075999999999,43.267371],[-73.67639,43.263475],[-73.669561,43.263870999999995],[-73.661061,43.272872],[-73.675162,43.285072],[-73.675862,43.287472],[-73.671273,43.293154],[-73.66586199999999,43.290866],[-73.660461,43.290572],[-73.653061,43.291272],[-73.651377,43.290079],[-73.650661,43.289572],[-73.64186099999999,43.293273],[-73.642761,43.304172],[-73.640976,43.305797],[-73.639698,43.306131],[-73.639161,43.306272],[-73.63860799999999,43.306444],[-73.63306399999999,43.306309999999996],[-73.628149,43.303863],[-73.621456,43.304748],[-73.619736,43.304939999999995],[-73.616953,43.305251],[-73.609831,43.306542],[-73.599463,43.306742],[-73.59496,43.306118],[-73.588822,43.300543],[-73.589111,43.297703],[-73.59272899999999,43.295083999999996],[-73.59496899999999,43.291343999999995],[-73.59713599999999,43.284113999999995],[-73.600244,43.278807],[-73.600443,43.272051999999995],[-73.600656,43.268501],[-73.596,43.269117],[-73.592356,43.267148999999996],[-73.590263,43.264616],[-73.590206,43.264548999999995],[-73.589096,43.263714],[-73.58722,43.259712],[-73.58706099999999,43.258756999999996],[-73.586947,43.255899],[-73.590274,43.250052],[-73.59082,43.250073],[-73.59204199999999,43.249361],[-73.592552,43.24884],[-73.593045,43.248394],[-73.597082,43.244440999999995],[-73.59764,43.243187999999996],[-73.597481,43.24095],[-73.59467099999999,43.234136],[-73.593124,43.232164999999995],[-73.589297,43.230836],[-73.587723,43.229572999999995],[-73.585957,43.227432],[-73.584279,43.222353999999996],[-73.581546,43.218897],[-73.581357,43.215804],[-73.579219,43.209669999999996],[-73.580907,43.205751],[-73.583197,43.202268],[-73.583546,43.199830999999996],[-73.585809,43.192372],[-73.585532,43.191139],[-73.582183,43.189036],[-73.580906,43.183737],[-73.582212,43.180315],[-73.58983599999999,43.170472],[-73.587743,43.166793],[-73.583304,43.165572999999995],[-73.583983,43.162824],[-73.58036299999999,43.156431999999995],[-73.580254,43.155539],[-73.580214,43.152882],[-73.582574,43.149865999999996],[-73.58489399999999,43.147921],[-73.589497,43.141574999999996],[-73.590752,43.139488],[-73.590938,43.13511],[-73.589832,43.131499],[-73.588595,43.129627],[-73.58655399999999,43.128144999999996],[-73.585841,43.126548],[-73.585599,43.123664999999995],[-73.582588,43.121423],[-73.579047,43.120194],[-73.577229,43.118975999999996],[-73.575484,43.114851],[-73.575824,43.108612],[-73.575671,43.107614999999996],[-73.575647,43.107558],[-73.573342,43.100545],[-73.573672,43.098405],[-73.576349,43.09459],[-73.578228,43.090632],[-73.577469,43.086619],[-73.575858,43.084931999999995],[-73.57529699999999,43.082502],[-73.5767,43.079339999999995],[-73.577322,43.078162],[-73.578024,43.077388],[-73.581116,43.073012999999996],[-73.581763,43.070191],[-73.580817,43.065138],[-73.577891,43.058665999999995],[-73.578155,43.055786999999995],[-73.580865,43.052591],[-73.585833,43.049727999999995],[-73.586306,43.048716],[-73.58699899999999,43.042652],[-73.589878,43.037526],[-73.591578,43.031962],[-73.590875,43.023241],[-73.59129899999999,43.021133999999996],[-73.59363499999999,43.01433],[-73.596243,43.008883999999995],[-73.597445,43.007372],[-73.601826,43.004269],[-73.605124,43.001377999999995],[-73.60669899999999,42.999241],[-73.60759,42.994794999999996],[-73.608572,42.983852],[-73.609282,42.982240999999995],[-73.610334,42.981342999999995],[-73.630141,42.971635],[-73.631467,42.969739],[-73.629786,42.962607],[-73.628708,42.959151],[-73.628879,42.955456999999996],[-73.62888199999999,42.955405],[-73.62931999999999,42.951502999999995],[-73.631242,42.946321999999995],[-73.634006,42.942336999999995],[-73.635463,42.941289999999995],[-73.639952,42.939417999999996],[-73.647144,42.938994],[-73.650897,42.938137999999995],[-73.65780000000001,42.934284],[-73.660433,42.932534],[-73.663281,42.929156],[-73.663369,42.928613999999996],[-73.66337899999999,42.926811],[-73.666116,42.923826999999996],[-73.671365,42.919573],[-73.671421,42.919522],[-73.671695,42.919261999999996],[-73.678913,42.912212],[-73.67937599999999,42.909455],[-73.682367,42.905414],[-73.68307399999999,42.903776],[-73.68365399999999,42.901314],[-73.68444699999999,42.891586],[-73.683229,42.8906],[-73.67977499999999,42.882267],[-73.67618999999999,42.879307],[-73.674536,42.877533],[-73.673202,42.875077],[-73.673814,42.866762],[-73.675904,42.858574999999995],[-73.673757,42.855464999999995],[-73.670823,42.840312],[-73.665759,42.833372999999995],[-73.663021,42.82544],[-73.66117,42.821940999999995],[-73.659663,42.818978],[-73.660162,42.816776999999995],[-73.659562,42.812877],[-73.658462,42.809076999999995],[-73.661362,42.802977],[-73.663562,42.800877],[-73.667362,42.800177],[-73.672355,42.795791],[-73.672562,42.795376999999995],[-73.67407299999999,42.78875],[-73.675262,42.786077],[-73.676662,42.783677],[-73.676762,42.783277]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36103","STATE":"36","COUNTY":"103","NAME":"Suffolk","LSAD":"County","CENSUSAREA":912.051},"geometry":{"type":"MultiPolygon","coordinates":[[[[-72.13222499999999,41.104386999999996],[-72.12835199999999,41.108131],[-72.126704,41.115139],[-72.08420699999999,41.101524],[-72.081167,41.093939999999996],[-72.086975,41.058292],[-72.095711,41.05402],[-72.0972,41.054884],[-72.09713599999999,41.075844],[-72.103152,41.086484],[-72.10640000000001,41.088882999999996],[-72.12056,41.093171],[-72.13923299999999,41.092451],[-72.141921,41.094370999999995],[-72.142929,41.097811],[-72.140737,41.100835],[-72.13222499999999,41.104386999999996]]],[[[-72.198600769043,41.1649513244629],[-72.21147918701169,41.17296981811519],[-72.2130355834961,41.1780128479004],[-72.1889801025391,41.189010620117195],[-72.1776885986328,41.1872444152832],[-72.1700744628906,41.1886711120605],[-72.1621704101563,41.1924476623535],[-72.16103363037111,41.1886711120605],[-72.1795959472656,41.1829605102539],[-72.1867294311523,41.179630279541],[-72.198600769043,41.1649513244629]]],[[[-71.95431598301289,41.2848414915065],[-71.95286417206859,41.285098102460495],[-71.943563,41.286674999999995],[-71.94356130863551,41.2866753478531],[-71.92680238074969,41.290122059153795],[-71.92719369016581,41.289680477382795],[-71.9285581516114,41.2881407206664],[-71.9350621797299,41.2808011061897],[-71.935259,41.280578999999996],[-71.9462702387966,41.2763061752049],[-71.9625980950072,41.270968215894094],[-71.9789259755571,41.26500226351789],[-71.994717,41.256451],[-71.995425452353,41.256123121225],[-72.0002036907552,41.2539117051051],[-72.002461,41.252866999999995],[-72.0026786169697,41.252847551492],[-72.0030718366502,41.2528124093056],[-72.036846,41.249794],[-72.0368298202051,41.2498425393847],[-72.0352591170865,41.2545546487406],[-72.03501747630919,41.2552795710725],[-72.034958,41.255458],[-72.0337378262375,41.2571450228543],[-72.029438,41.26309],[-72.023422,41.270993999999995],[-72.0233959000577,41.2710121120596],[-72.018926,41.274114],[-72.0188615661894,41.2741106121072],[-72.0068717460723,41.2734801942408],[-71.991117,41.281331],[-71.9902463110594,41.281249097277694],[-71.988377370226,41.2810732924236],[-71.9879166811668,41.28102995698389],[-71.9802909628159,41.280312631813395],[-71.98006099999999,41.280291],[-71.9698389888018,41.2820977642045],[-71.96279945534609,41.2833420180815],[-71.9578668649574,41.2842138648812],[-71.95736138034579,41.2843032104595],[-71.95549219576819,41.284633593172],[-71.95431598301289,41.2848414915065]]],[[[-73.42380607732,40.6098686058614],[-73.42534599999999,40.651818],[-73.425549,40.654610999999996],[-73.425586,40.656290999999996],[-73.423563,40.655943],[-73.424515,40.657824],[-73.424623,40.666182],[-73.423358,40.668743],[-73.42338,40.671493],[-73.424741,40.678888],[-73.424753,40.67904],[-73.424758,40.679052],[-73.424774,40.679089999999995],[-73.424917,40.679983],[-73.424979,40.680203],[-73.42502,40.680506],[-73.42573999999999,40.68441],[-73.426091,40.686344999999996],[-73.427381,40.693213],[-73.427387,40.693267999999996],[-73.42755,40.694676],[-73.428103,40.697513],[-73.42837,40.699214999999995],[-73.42859299999999,40.700328999999996],[-73.42870599999999,40.700860999999996],[-73.429547,40.705214999999995],[-73.429859,40.706347],[-73.429962,40.706699],[-73.431028,40.711366999999996],[-73.431139,40.712731],[-73.431159,40.713875],[-73.431821,40.717969],[-73.432175,40.71974],[-73.432934,40.723538999999995],[-73.433073,40.724292999999996],[-73.433194,40.724883999999996],[-73.43407599999999,40.729476],[-73.435082,40.734791],[-73.435509,40.737134],[-73.435662,40.738096],[-73.43600599999999,40.739458],[-73.43638299999999,40.741275],[-73.436486,40.741779],[-73.436663,40.742281],[-73.436668,40.742304999999995],[-73.437251,40.745694],[-73.4385,40.751311],[-73.440967,40.764399],[-73.444096,40.781606],[-73.44480399999999,40.78548],[-73.44482599999999,40.785810999999995],[-73.448666,40.804418999999996],[-73.448747,40.804901],[-73.448763,40.804998999999995],[-73.449766,40.810398],[-73.45190099999999,40.819685],[-73.45216599999999,40.822398],[-73.45388799999999,40.832316999999996],[-73.454172,40.834097],[-73.454625,40.835001],[-73.45467099999999,40.835907999999996],[-73.455261,40.840872],[-73.457494,40.848712],[-73.463297,40.857965],[-73.46404,40.859499],[-73.464067,40.859553999999996],[-73.462259,40.86671],[-73.46253,40.867295],[-73.463855,40.867312],[-73.467366,40.868097999999996],[-73.473466,40.874497999999996],[-73.476079,40.877111],[-73.477307,40.899249999999995],[-73.48002799999999,40.900974],[-73.483563,40.905569],[-73.48586499999999,40.910215],[-73.487861,40.915768],[-73.488463,40.915172999999996],[-73.490973,40.919471],[-73.4970614703723,40.92280082944009],[-73.496642,40.923476],[-73.491765,40.942097],[-73.485365,40.946397],[-73.48479776766601,40.9460647639186],[-73.4801103344059,40.943319267294896],[-73.478365,40.942296999999996],[-73.4744102828026,40.941055838841],[-73.463708,40.937697],[-73.4606026277113,40.937375485342095],[-73.4565227209305,40.936953072275],[-73.44502567033501,40.9357627253712],[-73.4375094155852,40.9349845300857],[-73.436664,40.934897],[-73.429863,40.929797],[-73.4296654998471,40.9282025756887],[-73.4293168342383,40.9253877883836],[-73.42883599999999,40.921506],[-73.42548791750319,40.921319047497896],[-73.4060758525229,40.9202351034424],[-73.40607399999999,40.920235],[-73.4048604077404,40.922131652383904],[-73.402963,40.925097],[-73.40310075058359,40.9298175109826],[-73.40325986842119,40.935270246496394],[-73.4034619146684,40.9421940758103],[-73.40346199999999,40.942197],[-73.4034591294344,40.942210027951496],[-73.4026417692798,40.9459195855762],[-73.402267315317,40.9476190304844],[-73.4018486016437,40.949519346386296],[-73.4010880380623,40.9529711349481],[-73.400862,40.953997],[-73.399762,40.955197],[-73.39840609075479,40.9552166508586],[-73.39537439455329,40.9552605884847],[-73.39427108146981,40.9552765785294],[-73.39286396903209,40.9552969714633],[-73.392862,40.955297],[-73.3928164515123,40.9552531843352],[-73.374462,40.937597],[-73.3717047961584,40.9356834012863],[-73.365961,40.931697],[-73.3659153545647,40.9316797100624],[-73.352761,40.926697],[-73.3492432455455,40.9260129921894],[-73.3486076105678,40.9258893964993],[-73.3456857671234,40.925321260274],[-73.3455620015031,40.9252971947367],[-73.345561,40.925297],[-73.344161,40.927296999999996],[-73.3441582532401,40.927297493519895],[-73.3441559974711,40.9272978988217],[-73.3313694374521,40.929595304340296],[-73.33136,40.929597],[-73.3272756010737,40.9290231746364],[-73.32271763799649,40.9283828172993],[-73.319852882753,40.927980342112896],[-73.3121927211481,40.9269041507081],[-73.3113859653322,40.9267908079721],[-73.3010018009256,40.9253319159726],[-73.2950639773906,40.92449769928349],[-73.2950614460617,40.92449734365209],[-73.295059,40.924496999999995],[-73.2950548269849,40.9244957706945],[-73.2805105448626,40.920211250817296],[-73.256960552761,40.9132737884924],[-73.2487061301865,40.91084216365879],[-73.2467862160827,40.91027658674889],[-73.2401178365952,40.90831218560329],[-73.2383495289659,40.907791269608694],[-73.2378946318958,40.907657263989],[-73.2369377995271,40.907375396017194],[-73.23182719901419,40.9058698923906],[-73.22980674654569,40.9052746984381],[-73.22961144345079,40.9052171651763],[-73.22928499999999,40.905121],[-73.1743543569518,40.921387902887695],[-73.17192302604819,40.9221079058133],[-73.14912658330249,40.9288587374029],[-73.148994,40.928898],[-73.14848903048039,40.9300312455499],[-73.14624655602638,40.9350637754292],[-73.146242,40.935074],[-73.1462378803985,40.9351285289252],[-73.14550781274869,40.9447920374981],[-73.144673,40.955842],[-73.15354689965669,40.9611234210279],[-73.1542652529261,40.961550958661796],[-73.15444580597979,40.9616584172461],[-73.154587513203,40.961845954540195],[-73.158839661983,40.9674733068985],[-73.1595758162967,40.9684475436732],[-73.1378207732941,40.96682480454329],[-73.1375007359893,40.9668009325125],[-73.1374965937343,40.966800623535896],[-73.1183309118857,40.9780713547024],[-73.1107157069786,40.972205817886596],[-73.110368,40.971938],[-73.1101901423189,40.9719449200515],[-73.09514812823929,40.9725301717631],[-73.081582,40.973057999999995],[-73.0814395851521,40.9730171226039],[-73.0761973925776,40.9715124537762],[-73.0750583002871,40.971185499617796],[-73.0728456297677,40.9705503958307],[-73.0659633496521,40.968574971958695],[-73.0586276068922,40.966469390505495],[-73.05833222185039,40.9663846060077],[-73.0500788553012,40.9640156385969],[-73.04475014660889,40.962486137010096],[-73.04453101429579,40.9624232393664],[-73.0441385894928,40.962310601503496],[-73.043701,40.962185],[-73.0436677373334,40.9622086291609],[-73.04315814448029,40.9625706341576],[-73.0425032345526,40.9630358696191],[-73.04044499999999,40.964498],[-73.03905243802801,40.964560567370796],[-73.03552394070199,40.96471910164429],[-73.0275774476642,40.965076135073694],[-73.0208597030299,40.9653779612243],[-73.0081399768402,40.96594945451589],[-73.0059681810821,40.96604703261529],[-72.9985420195431,40.9663806877143],[-72.995931,40.966498],[-72.9950945589922,40.9664907779819],[-72.9840495357432,40.966395412789005],[-72.98017967491369,40.9663619995479],[-72.9741779201302,40.9663101790592],[-72.9590948858007,40.966179948778496],[-72.9561779519491,40.9661547633214],[-72.955163,40.966145999999995],[-72.9548590657225,40.9661189372077],[-72.9427072894481,40.965036923689595],[-72.9377925404836,40.9645993066123],[-72.9248979499642,40.963451151730496],[-72.9140126427238,40.962481906632696],[-72.9138369550072,40.9624662631186],[-72.913834,40.962466],[-72.9031546484732,40.962673041837],[-72.9029075866861,40.9626778316527],[-72.9014206780882,40.962706658523594],[-72.8986749169095,40.9627598909167],[-72.8895473759617,40.9629368476205],[-72.88825,40.962962],[-72.8869838157802,40.963101092351096],[-72.88649079612729,40.9631552513443],[-72.88317526043119,40.9635194682156],[-72.86918927844619,40.9650558505886],[-72.8669567948547,40.965301092463],[-72.8657863519151,40.9654296674821],[-72.86532929923341,40.9654798754464],[-72.86379897774441,40.9656479836967],[-72.8592281115636,40.966150100619004],[-72.84267648085479,40.9679683235863],[-72.8393376971099,40.9683350942927],[-72.83000911505019,40.9693598538739],[-72.82622407416619,40.969775646637004],[-72.82605699999999,40.969794],[-72.8107570379235,40.9684746569379],[-72.7898872773646,40.96667502020279],[-72.7869570909519,40.9664223449938],[-72.7867210145256,40.9664019877019],[-72.7828953342692,40.9660720924591],[-72.7793812038223,40.9657690627129],[-72.7741224145436,40.965315587919],[-72.774104,40.965314],[-72.77410031577269,40.965316623232404],[-72.76003088605401,40.975334296163894],[-72.75530689131689,40.976397195323],[-72.71475251434379,40.985521933089096],[-72.7144248021246,40.985595668362194],[-72.71365385623639,40.985724159305796],[-72.7131458298083,40.9858088303523],[-72.6893414552269,40.989776224951],[-72.6708805028639,40.9880455103176],[-72.6650182075186,40.9874959200181],[-72.6643796027699,40.9875614178719],[-72.6353742360252,40.9905363241404],[-72.59261577287239,40.99656015458319],[-72.5856508010095,40.9975413827763],[-72.58532699999999,40.997586999999996],[-72.5845590843955,40.9980465312445],[-72.58347561026319,40.998694897046],[-72.5825616146843,40.999241844553396],[-72.5661666855071,41.0090527953451],[-72.565406,41.009508],[-72.5652418181845,41.0097278969442],[-72.560974,41.015443999999995],[-72.5498597254385,41.0198413390946],[-72.549853,41.019844],[-72.5498353331192,41.0198551150614],[-72.54169904320149,41.024974035777],[-72.5247820322691,41.03561731896669],[-72.521548,41.037652],[-72.5213888132058,41.037704388222096],[-72.5208361982544,41.0378862532755],[-72.5185680334958,41.0386327041341],[-72.51714975712791,41.039099457534],[-72.5166258082556,41.0392718886081],[-72.51392273352059,41.040161467925],[-72.5040512119863,41.0434101762461],[-72.4946834080703,41.0464931115794],[-72.48181732149749,41.050727328398295],[-72.4778757488802,41.052024496187],[-72.477306,41.052212],[-72.4770036930677,41.0524827007864],[-72.4747347903279,41.054514390074196],[-72.4611688910361,41.066661976565],[-72.46077799999999,41.067012],[-72.4605404481425,41.0673041080513],[-72.4508708569167,41.0791944189923],[-72.445242,41.086116],[-72.4451945327295,41.086119197871895],[-72.43944475054259,41.0865065609317],[-72.41839545831719,41.087924652604904],[-72.417945,41.087955],[-72.41712669974109,41.0882813043095],[-72.4155767505583,41.088899359958795],[-72.4129875192375,41.0899318383542],[-72.40667529423739,41.092448892696495],[-72.4056838326686,41.0928442465768],[-72.3993478839043,41.0953707609755],[-72.397,41.096306999999996],[-72.39513172903979,41.0980115637915],[-72.3876561978385,41.10483205186819],[-72.38217488371501,41.109833066059394],[-72.381474344301,41.110472220735],[-72.3808002648037,41.1110872340432],[-72.37237271406809,41.118776320980295],[-72.37188834844801,41.1192182440822],[-72.3578276644521,41.132046861201395],[-72.3570599813251,41.132747276124896],[-72.356087,41.133635],[-72.3551708288564,41.1338116176162],[-72.33351009213219,41.13798733054119],[-72.333351,41.138017999999995],[-72.3223813527722,41.140663595979596],[-72.3202805289199,41.1416854052372],[-72.3163425739743,41.1436007675437],[-72.30917719525769,41.147085900435194],[-72.30304716210989,41.1500674567484],[-72.29342827706049,41.1547459383737],[-72.29112497401489,41.155866230478395],[-72.29110899999999,41.155874],[-72.2845561329662,41.157388818613],[-72.2803093639282,41.1583705392478],[-72.279053935682,41.158660755128096],[-72.278789,41.158722],[-72.27869304853019,41.158660506240395],[-72.27652595066809,41.157271647942004],[-72.2733140507286,41.1552131927322],[-72.272997,41.15501],[-72.272656948146,41.1549500031036],[-72.2684566836134,41.1542089313135],[-72.2681,41.154146],[-72.2678710039994,41.154217168720095],[-72.2607671141406,41.1564249572746],[-72.2455861640335,41.161142981984895],[-72.24534799999999,41.161217],[-72.2382170743411,41.159491469859496],[-72.23821099999999,41.15949],[-72.23775013172109,41.1565558052913],[-72.237731,41.156434],[-72.25357199999999,41.137138],[-72.253653776549,41.1370767242202],[-72.2651229421918,41.1284827926236],[-72.265124,41.128482],[-72.28164085197679,41.120887528032895],[-72.2840793051018,41.1197663238273],[-72.2904439471541,41.1168398523837],[-72.29994644625849,41.112470589816795],[-72.30037399999999,41.112274],[-72.300044,41.132059],[-72.3002542290636,41.1322507719413],[-72.3042148944513,41.1358637095499],[-72.30456888851191,41.136186624598096],[-72.30539547724989,41.136940642735496],[-72.3063814920449,41.137840090072494],[-72.31273438261559,41.1385459688291],[-72.3181460984712,41.1371342158756],[-72.326432097036,41.132277986289594],[-72.32663,41.132162],[-72.3270951449005,41.1315220691382],[-72.3272800031199,41.1312677473569],[-72.33527099999999,41.120273999999995],[-72.3352694942014,41.1200600324217],[-72.3352138798347,41.1121574675718],[-72.335177,41.106916999999996],[-72.33517637943969,41.1069163684046],[-72.3202885215012,41.0917637673542],[-72.3174026933875,41.0888266220452],[-72.317238,41.088659],[-72.316545627915,41.08838882591329],[-72.3163983586407,41.0883313592093],[-72.3026055470338,41.082949194967],[-72.2979338271058,41.0811262190095],[-72.297718,41.081042],[-72.291071012739,41.0807967378583],[-72.2812516525859,41.08043442073539],[-72.2804804879532,41.0804059661165],[-72.280373,41.080402],[-72.28016868521401,41.0801967930096],[-72.2768145044428,41.0768279651609],[-72.276709,41.076722],[-72.2768217950205,41.076565670059395],[-72.27973419006769,41.0725291927131],[-72.2823830240057,41.0688580018167],[-72.283093,41.067873999999996],[-72.28190745273001,41.065820902507596],[-72.2795145597535,41.061676957601996],[-72.2788658350987,41.0605535144497],[-72.27365982136169,41.05153788595501],[-72.273657,41.051533],[-72.265291305714,41.0455060335185],[-72.26527797299559,41.0454964281177],[-72.260515,41.042065],[-72.2604866287648,41.0420689840207],[-72.2601481640328,41.0421165128117],[-72.241252,41.04477],[-72.24123900262019,41.0447695462725],[-72.22936399999999,41.044354999999996],[-72.22114160227031,41.0417654427069],[-72.2194521929157,41.0412333810798],[-72.21747599999999,41.040611],[-72.2169526051208,41.040331623697696],[-72.2167108321722,41.0402025707874],[-72.2021421745738,41.032426152157704],[-72.201859,41.032275],[-72.2013321279847,41.032289179275196],[-72.190563,41.032579],[-72.1876019084419,41.033812619067696],[-72.18759507814521,41.0338154646346],[-72.187570546793,41.0338256846306],[-72.18718349347539,41.0339869347451],[-72.183266,41.035619],[-72.1828913757434,41.0358983808016],[-72.17952857692309,41.0384062307692],[-72.17949,41.038435],[-72.1794217905611,41.03854915607489],[-72.1777410646018,41.041362037715],[-72.1762108997071,41.043922938684595],[-72.1751168566543,41.045753941293796],[-72.174882,41.046147],[-72.17471763553151,41.046243555896],[-72.1747045436549,41.0462512467181],[-72.1670648479109,41.0507391854729],[-72.1668201527011,41.050882931657505],[-72.162898,41.053187],[-72.16049239560608,41.0537960137706],[-72.16037,41.053827],[-72.1584106035425,41.053234939163495],[-72.15780061714719,41.0530506226847],[-72.153857,41.051859],[-72.1536954433374,41.051740222683094],[-72.1531738556521,41.0513567486452],[-72.1422246097561,41.0433068048781],[-72.1375283443566,41.039854085600396],[-72.137297,41.039684],[-72.1371303035184,41.039035735905],[-72.1357749545806,41.033764934480196],[-72.135137,41.031284],[-72.13519777897679,41.0310866823357],[-72.1361308198896,41.0280575847246],[-72.1367246032627,41.0261298795484],[-72.1374085506329,41.02390945886079],[-72.13740899999999,41.023908],[-72.137406578675,41.023905225275],[-72.1350909341345,41.0212516051448],[-72.1332234113531,41.019111511551095],[-72.1325163025539,41.0183011980029],[-72.1229632204026,41.007353813523494],[-72.1227272942113,41.00708345316401],[-72.1180826962967,41.0017609616038],[-72.11663995354701,41.0001076460209],[-72.116368,40.999795999999996],[-72.1090426463778,40.9941108886019],[-72.109008,40.994084],[-72.1090073371973,40.994083750771495],[-72.10251613352989,40.9916429141121],[-72.10216,40.991509],[-72.1016805013114,40.991497556117196],[-72.0957174535088,40.991355239940496],[-72.095456,40.991349],[-72.0950488449996,40.9915163608055],[-72.0921951598993,40.9926893662619],[-72.08305268557929,40.996447374551295],[-72.083039,40.996452999999995],[-72.0830252455457,40.996484072238694],[-72.0828230951737,40.996940743545494],[-72.0819585915147,40.998893715542],[-72.08189455075708,40.9990383879269],[-72.08130387822129,41.0003727569716],[-72.079951,41.003429],[-72.07995042884289,41.0034313116361],[-72.0792077328549,41.006437214591095],[-72.07620952770529,41.0090627638465],[-72.07617499999999,41.009093],[-72.0585680814875,41.020262970084396],[-72.0554242587238,41.0222574364186],[-72.0514775797883,41.0224098027971],[-72.0474676347837,41.022564611639694],[-72.04615037226179,41.0223608989088],[-72.0357922404078,41.0207590289004],[-72.0150131166786,41.0283479229739],[-72.00841999634831,41.033086110637],[-71.99925999999999,41.039668999999996],[-71.99922673938059,41.0397077194505],[-71.99456548699919,41.0451339903496],[-71.99280969290929,41.0471779505549],[-71.99140873000289,41.0488088436342],[-71.9810975039,41.0488088436342],[-71.9800327892841,41.0445042447996],[-71.9670404637308,41.0477718785435],[-71.9617627710083,41.0535293632039],[-71.961077760244,41.0542766478935],[-71.96035501042829,41.0598779764725],[-71.961416976483,41.06352018535679],[-71.9615333843832,41.0639194277681],[-71.961563,41.064021],[-71.9599838239577,41.069811312155004],[-71.959595,41.071236999999996],[-71.95287589327349,41.0731811182077],[-71.94436977382679,41.0756422938321],[-71.942078143971,41.0763053580621],[-71.9399457164097,41.076922358419004],[-71.93825,41.077413],[-71.9368576533046,41.077642093249004],[-71.9321460198912,41.078417333647394],[-71.930016691106,41.0787676880894],[-71.91938499999999,41.080517],[-71.899256,41.080836999999995],[-71.8984385285414,41.0800856219785],[-71.89612118304939,41.0779556363348],[-71.895496,41.077380999999995],[-71.8952527838397,41.0773123618093],[-71.8902932227517,41.075912720850496],[-71.889543,41.075700999999995],[-71.8887012363804,41.07567341155009],[-71.8869717431112,41.075616728133],[-71.869558,41.075046],[-71.86937554315838,41.0751131303474],[-71.8670478476246,41.0759695466287],[-71.8644732038237,41.0769168212347],[-71.86447,41.076918],[-71.86033005057268,41.0749239876612],[-71.85901781220879,41.07429194624739],[-71.857494,41.073558],[-71.8574163427529,41.073378417616006],[-71.8562147672476,41.0705997742601],[-71.856214,41.070598],[-71.8593415397372,41.0673601763118],[-71.8625250598781,41.064064398227494],[-71.8738948093464,41.0522937263096],[-71.87391,41.052278],[-71.8825999914419,41.0487490931287],[-71.8977525421801,41.0425958142934],[-71.903736,41.040166],[-71.9292800579286,41.0353822350125],[-71.9298441617827,41.0352765924293],[-71.9349794024756,41.034314889919095],[-71.935689,41.034182],[-71.93730202337501,41.0335917968342],[-72.02654006444679,41.000939713074004],[-72.02935699999999,40.999908999999995],[-72.037221208493,40.9973374737856],[-72.037770579961,40.997157834203],[-72.040313745087,40.996326241831696],[-72.0540782175593,40.991825381786896],[-72.0578161538006,40.99060310989],[-72.0661261592868,40.9878858120248],[-72.06854978890469,40.987093306701205],[-72.0979221975709,40.9774887903749],[-72.0994637606456,40.9769847129637],[-72.1028237867078,40.9758860143334],[-72.1098682839228,40.9735825264145],[-72.114448,40.972085],[-72.1204720342075,40.9698281439495],[-72.12267155882701,40.9690041097102],[-72.1433465658715,40.9612583843149],[-72.1473396615244,40.9597624030881],[-72.1487432556221,40.9592365578284],[-72.15478579678809,40.9569727682945],[-72.1965621007506,40.941321611425494],[-72.19809815976701,40.940746139247594],[-72.22837814508179,40.9294019858592],[-72.24499484563289,40.9231766724087],[-72.25925522441659,40.9178341359901],[-72.2609396182389,40.9172030913681],[-72.26943309414379,40.9140210788121],[-72.2740295520314,40.9122990527682],[-72.27434617431139,40.9121804327731],[-72.2770285085474,40.9111755177873],[-72.28127787423081,40.9095835270511],[-72.2828102001234,40.909009453458],[-72.2897525752086,40.9064085483708],[-72.2899997607146,40.9063159423055],[-72.2901185254645,40.906271448045494],[-72.2902794456057,40.906211160606595],[-72.3166802683536,40.896320304329095],[-72.3283962614332,40.8919310015864],[-72.3520705356528,40.8830616248243],[-72.3529650195724,40.8827265136054],[-72.3671046344677,40.877429220408004],[-72.3725383585946,40.875393519289695],[-72.37353331856869,40.8750207655237],[-72.3753943923789,40.874323529162794],[-72.387574234081,40.8697604492577],[-72.3957917797579,40.8666818117463],[-72.39585,40.866659999999996],[-72.3962916134458,40.866517532522],[-72.40386152086629,40.8640754293],[-72.40902776887789,40.8624087628252],[-72.4284566482804,40.856140875207494],[-72.4314657048413,40.8551701332533],[-72.43317509436969,40.85461867265501],[-72.43460583993519,40.854157104479704],[-72.4596288384369,40.846084516286595],[-72.4599183534164,40.8459911168004],[-72.46788128023199,40.843422222869094],[-72.469996,40.84274],[-72.46999683382,40.8427397623035],[-72.4700047827452,40.8427374963084],[-72.4712378401961,40.8423859894094],[-72.4762434462338,40.8409590444972],[-72.4802999873218,40.839802648923296],[-72.5069437096001,40.8322073400513],[-72.51206338850069,40.8307478764609],[-72.5195657574126,40.8286091809528],[-72.54058671529319,40.822616749932],[-72.54736301608808,40.820685034197695],[-72.5487354603967,40.8202937923763],[-72.5635538285699,40.816069529637005],[-72.5662547646482,40.8152995755164],[-72.5700252380459,40.814224729076],[-72.573441,40.813251],[-72.5744467207949,40.8129807264789],[-72.5929606608173,40.8080053617614],[-72.6143672623762,40.80225263435769],[-72.62539396913961,40.7992893597811],[-72.6455903675195,40.7938618577043],[-72.6784604257361,40.785028485244695],[-72.68035149467,40.7845202866851],[-72.69550377632001,40.7804483210516],[-72.7189181473171,40.7741560334456],[-72.7200026078329,40.7738645997161],[-72.7266187297259,40.7720866086783],[-72.7280770672225,40.771694700693395],[-72.74520799999999,40.767091],[-72.753112,40.763571],[-72.757176,40.764371],[-72.768152,40.761587],[-72.78393320513969,40.75683247428609],[-72.8078273390868,40.7496337037705],[-72.863164,40.732962],[-72.87286853017079,40.7297815644669],[-72.8772051631646,40.72836033320429],[-72.87734514390829,40.72831445775],[-72.8867842375705,40.725221012899496],[-72.8933837401309,40.723058178421695],[-72.9090627674635,40.7179197394891],[-72.9217678149456,40.713755953736396],[-72.9217916786802,40.713748132948794],[-72.923214,40.713282],[-72.93083974844589,40.7104110868121],[-72.9766723339658,40.69315620683069],[-72.9909889039261,40.6877663582414],[-72.9979982195393,40.6851275173755],[-72.99941966113211,40.684592378373296],[-73.0030689080389,40.683218523578],[-73.0053461107063,40.6823612108544],[-73.0061653263752,40.682052795610396],[-73.0067355977085,40.681838101996696],[-73.0080726108955,40.6813347482842],[-73.0090673338009,40.6809602587337],[-73.012545,40.679651],[-73.0240672529888,40.6760436748151],[-73.04934371295569,40.668130256257896],[-73.054963,40.666371],[-73.05602682009871,40.6661250231837],[-73.0568775652553,40.6659283136221],[-73.0593117514252,40.665365480333705],[-73.0912336245867,40.6579844948252],[-73.0919203058129,40.657825720177094],[-73.12438402429169,40.65031944902469],[-73.1280761011424,40.6494657658591],[-73.1324989234439,40.6484431195016],[-73.13689715577839,40.647426158844006],[-73.1412884714574,40.6464107974575],[-73.14526632896501,40.645491035999],[-73.20844,40.630883999999995],[-73.23913999999999,40.6251],[-73.262106,40.621476],[-73.2644932067679,40.6214371923939],[-73.30639599999999,40.620756],[-73.30973999999999,40.622532],[-73.3145780924701,40.629274420976195],[-73.319257,40.635795],[-73.31927129292102,40.6357926502417],[-73.3353392135563,40.6331510816946],[-73.35146499999999,40.630500000000005],[-73.35172958489919,40.6304150822403],[-73.3780174710694,40.6219780610481],[-73.391967,40.617501],[-73.392115319126,40.617465445262795],[-73.42380607732,40.6098686058614]]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36105","STATE":"36","COUNTY":"105","NAME":"Sullivan","LSAD":"County","CENSUSAREA":968.132},"geometry":{"type":"Polygon","coordinates":[[[-74.7547086478626,41.4249931814039],[-74.75858699999999,41.423286999999995],[-74.763701,41.423612],[-74.77065,41.42623],[-74.77323899999999,41.426352],[-74.778029,41.425104],[-74.784339,41.422397],[-74.79041699999999,41.421659999999996],[-74.79385599999999,41.422671],[-74.795396,41.42398],[-74.79954599999999,41.43129],[-74.800095,41.432660999999996],[-74.80037,41.43606],[-74.801225,41.4381],[-74.805655,41.442101],[-74.807582,41.442847],[-74.812123,41.442982],[-74.817995,41.440504999999995],[-74.8196438882251,41.4392517099325],[-74.82288,41.436792],[-74.826031,41.431736],[-74.828592,41.430698],[-74.830671,41.430503],[-74.83463499999999,41.430796],[-74.83691499999999,41.431625],[-74.84557199999999,41.437577],[-74.848602,41.440179],[-74.8542,41.443166],[-74.858578,41.444427],[-74.864688,41.443993],[-74.876721,41.440338],[-74.888691,41.438258999999995],[-74.893913,41.43893],[-74.896025,41.439986999999995],[-74.896399,41.442178999999996],[-74.894931,41.446099],[-74.88907499999999,41.451245],[-74.889116,41.452534],[-74.89035799999999,41.455324],[-74.89211399999999,41.456959],[-74.89506899999999,41.458189999999995],[-74.90419401061838,41.4598049400021],[-74.9042,41.459806],[-74.906887,41.461130999999995],[-74.908103,41.464639],[-74.90813299999999,41.468117],[-74.90918099999999,41.472435999999995],[-74.912517,41.475605],[-74.917282,41.477041],[-74.92333354448,41.477127196742195],[-74.924092,41.477138],[-74.926835,41.478327],[-74.932585,41.482323],[-74.94179799999999,41.483542],[-74.945634,41.483213],[-74.94807999999999,41.480624999999996],[-74.956411,41.476735],[-74.95826,41.476396],[-74.969887,41.477438],[-74.981652,41.479945],[-74.983341,41.480894],[-74.985004,41.483703],[-74.985595,41.485862999999995],[-74.985247,41.489112999999996],[-74.982463,41.496466999999996],[-74.982168,41.498486],[-74.982385,41.500980999999996],[-74.98392291673889,41.50533855975839],[-74.984372,41.506611],[-74.985653,41.507926],[-74.987645,41.508738],[-74.993893,41.508753999999996],[-74.999612,41.507400000000004],[-75.0013296363481,41.5077402269229],[-75.003151,41.508100999999996],[-75.003694,41.509295],[-75.003706,41.511117999999996],[-75.00259199999999,41.514559999999996],[-75.000935,41.517638],[-75.000911,41.519292],[-75.001297,41.520649999999996],[-75.00385,41.524052],[-75.009552,41.528461],[-75.01491899999999,41.531399],[-75.016616,41.532109999999996],[-75.023018,41.533147],[-75.02420599999999,41.534017999999996],[-75.024757,41.535098999999995],[-75.02479799999999,41.539801],[-75.02282799999999,41.541456],[-75.01762599999999,41.542733999999996],[-75.016144,41.544246],[-75.016328,41.546501],[-75.018524,41.551801999999995],[-75.027343,41.563541],[-75.029211,41.564637],[-75.03316199999999,41.565092],[-75.03698899999999,41.567049],[-75.04048999999999,41.569688],[-75.04387899999999,41.575094],[-75.04675999999999,41.583258],[-75.052858,41.587772],[-75.060012,41.590813],[-75.0610707883855,41.591947189140896],[-75.063677,41.594739],[-75.066955,41.599427999999996],[-75.074613,41.605711],[-75.074626,41.607904999999995],[-75.07166699999999,41.609501],[-75.06779499999999,41.610143],[-75.062716,41.609639],[-75.059725,41.610800999999995],[-75.059956,41.612306],[-75.0607697024613,41.6138027581051],[-75.061675,41.615468],[-75.06156,41.616429],[-75.060098,41.617481999999995],[-75.05385,41.618655],[-75.051856,41.618157],[-75.048385,41.615986],[-75.047298,41.615791],[-75.045508,41.616203],[-75.044224,41.617978],[-75.043562,41.623639999999995],[-75.048199,41.632011],[-75.048658,41.633781],[-75.049281,41.641861999999996],[-75.0489469091359,41.6499377248171],[-75.048683,41.656317],[-75.04992,41.662555999999995],[-75.053991,41.668194],[-75.057251,41.668932999999996],[-75.05843,41.669653],[-75.0584420511038,41.6696886322549],[-75.059332,41.67232],[-75.058765,41.674412],[-75.05265299999999,41.678436],[-75.051285,41.679961],[-75.051234,41.682438999999995],[-75.052736,41.688393],[-75.05674499999999,41.695702999999995],[-75.059829,41.699715999999995],[-75.067278,41.705434],[-75.06882999999999,41.708161],[-75.068642,41.710145999999995],[-75.06663,41.712588],[-75.061174,41.712935],[-75.05222599999999,41.711396],[-75.05068899999999,41.711968999999996],[-75.04986199999999,41.713308999999995],[-75.04969899999999,41.715092999999996],[-75.053527,41.727149999999995],[-75.0538559948219,41.72919328464909],[-75.054818,41.735168],[-75.052808,41.744724999999995],[-75.053431,41.752538],[-75.0559907769634,41.7567647059576],[-75.06075899999999,41.764638],[-75.06490099999999,41.766686],[-75.068567,41.767298],[-75.072664,41.768806999999995],[-75.0734529997726,41.76966850517609],[-75.074231,41.770517999999996],[-75.075942,41.771518],[-75.079478,41.771204999999995],[-75.09281,41.768361],[-75.095451,41.768366],[-75.10099,41.769121],[-75.103492,41.771238],[-75.104334,41.772693],[-75.10464,41.774203],[-75.103548,41.782008],[-75.102329,41.786502999999996],[-75.101463,41.787941],[-75.09287599999999,41.796386],[-75.08832799999999,41.797534],[-75.08141499999999,41.796482999999995],[-75.07827,41.797467],[-75.076889,41.798508999999996],[-75.074412,41.802191],[-75.07390218134219,41.803585049591895],[-75.07216799999999,41.808327],[-75.07175099999999,41.811901],[-75.072172,41.813731999999995],[-75.074409,41.815087999999996],[-75.078063,41.815112],[-75.079818,41.814814999999996],[-75.08578899999999,41.811626],[-75.089484,41.811575999999995],[-75.093537,41.813375],[-75.10002399999999,41.818346999999996],[-75.113334,41.822782],[-75.114837,41.825669999999995],[-75.115147,41.827284999999996],[-75.114998,41.8303],[-75.113441,41.836298],[-75.11336899999999,41.840697999999996],[-75.11439899999999,41.843582999999995],[-75.11559799999999,41.844637999999996],[-75.11878899999999,41.845819],[-75.12791299999999,41.844902999999995],[-75.130983,41.845144999999995],[-75.140241,41.852078],[-75.143824,41.851737],[-75.146446,41.850899],[-75.06459,41.888023],[-75.02932799999999,41.903971999999996],[-75.027113,41.90497],[-75.003295,41.915655],[-74.997252,41.918485],[-74.985156,41.924006999999996],[-74.931569,41.948485999999995],[-74.913218,41.956779],[-74.908632,41.958760999999996],[-74.89062799999999,41.966729],[-74.85292,41.983337],[-74.850723,41.984384],[-74.847109,41.985837],[-74.846375,41.986278],[-74.84392799999999,41.987344],[-74.800636,42.007132999999996],[-74.780693,42.016375],[-74.749602,42.002936999999996],[-74.74554499999999,42.00137],[-74.742763,42.000088999999996],[-74.67402,41.971675],[-74.670952,41.970382],[-74.65503199999999,41.963676],[-74.6246,41.951111999999995],[-74.60116699999999,41.940684],[-74.576557,41.92971],[-74.502039,41.896668],[-74.453685,41.875595],[-74.45382,41.875091999999995],[-74.48311199999999,41.839817],[-74.48782899999999,41.834361],[-74.490883,41.831316],[-74.524531,41.797958],[-74.525506,41.796817],[-74.532956,41.789369],[-74.54061399999999,41.781746999999996],[-74.543475,41.778932999999995],[-74.563193,41.757490999999995],[-74.57057499999999,41.750091],[-74.575086,41.745258],[-74.56206999999999,41.737772],[-74.5569,41.734798],[-74.538733,41.724349],[-74.520697,41.71394],[-74.491062,41.697185],[-74.482322,41.692301],[-74.464778,41.682519],[-74.45546499999999,41.677327],[-74.425389,41.660615],[-74.423814,41.659738999999995],[-74.42142799999999,41.658505999999996],[-74.407597,41.651353],[-74.395071,41.644876],[-74.394373,41.642562],[-74.392502,41.641239999999996],[-74.391457,41.633455],[-74.388303,41.629284999999996],[-74.386842,41.628239],[-74.38636199999999,41.619372],[-74.384008,41.615196999999995],[-74.380682,41.613836],[-74.38084099999999,41.611751],[-74.37966,41.610744],[-74.379549,41.607321999999996],[-74.37863,41.605545],[-74.375937,41.604574],[-74.375332,41.602928999999996],[-74.376476,41.601772],[-74.376138,41.598189],[-74.375058,41.596886],[-74.37307299999999,41.596263],[-74.370313,41.596506999999995],[-74.366086,41.595622],[-74.36565399999999,41.595092],[-74.364486,41.593782999999995],[-74.36827199999999,41.591701],[-74.367055,41.590976999999995],[-74.370089,41.588589999999996],[-74.377974,41.586385],[-74.37995099999999,41.587416],[-74.38075599999999,41.586158],[-74.383515,41.583878999999996],[-74.386149,41.583132],[-74.388452,41.583642],[-74.38900699999999,41.585294999999995],[-74.390613,41.586220999999995],[-74.391458,41.583704],[-74.391305,41.582059],[-74.393546,41.581958],[-74.395429,41.580693],[-74.396067,41.579139],[-74.395788,41.577113],[-74.39761399999999,41.575094],[-74.40187399999999,41.575331999999996],[-74.40446399999999,41.573101],[-74.406773,41.572254],[-74.408163,41.573805],[-74.408278,41.575175],[-74.409801,41.573291],[-74.41022199999999,41.570467],[-74.408092,41.570394],[-74.407625,41.568885],[-74.409894,41.568217],[-74.413026,41.568742],[-74.41414,41.567803],[-74.416934,41.569821],[-74.419321,41.565625999999995],[-74.419733,41.562425999999995],[-74.42344,41.562643],[-74.423028,41.560078],[-74.425823,41.559301999999995],[-74.42608299999999,41.559267999999996],[-74.428974,41.55882],[-74.429172,41.557018],[-74.426531,41.555943],[-74.43015799999999,41.556033],[-74.43028799999999,41.553841999999996],[-74.43417099999999,41.553540999999996],[-74.434393,41.552976],[-74.436184,41.551030999999995],[-74.434787,41.546687999999996],[-74.43822899999999,41.547441],[-74.439199,41.543023],[-74.445176,41.544094],[-74.445942,41.540918999999995],[-74.443787,41.540923],[-74.44381299999999,41.53862],[-74.444602,41.537233],[-74.447921,41.535379],[-74.44793899999999,41.534352999999996],[-74.450465,41.532955],[-74.452347,41.532543],[-74.45454,41.533369],[-74.45604,41.531884],[-74.45545,41.530111999999995],[-74.45746199999999,41.529361],[-74.456989,41.527784],[-74.458792,41.526962999999995],[-74.46024,41.524656],[-74.462356,41.523562999999996],[-74.46574799999999,41.522861999999996],[-74.46484,41.519375],[-74.465616,41.516881999999995],[-74.468195,41.515885999999995],[-74.46889,41.514041999999996],[-74.472685,41.512443],[-74.473336,41.511368999999995],[-74.476092,41.510399],[-74.47405499999999,41.508734],[-74.473948,41.506899],[-74.475811,41.505621999999995],[-74.475458,41.504951999999996],[-74.475591,41.504334],[-74.47699,41.503972999999995],[-74.483963,41.504256],[-74.488518,41.503779],[-74.49380099999999,41.504447],[-74.496341,41.503668999999995],[-74.501171,41.503457999999995],[-74.504485,41.503465],[-74.51952899999999,41.502781],[-74.52975099999999,41.502393999999995],[-74.54932,41.501545],[-74.557366,41.50125],[-74.56079299999999,41.500606],[-74.592761,41.499359],[-74.62047199999999,41.498421],[-74.721097,41.494834999999995],[-74.74023799999999,41.494139],[-74.752399,41.493742999999995],[-74.753587,41.491963999999996],[-74.760911,41.49067],[-74.761715,41.489754999999995],[-74.762042,41.488065],[-74.75974099999999,41.485045],[-74.759648,41.481856],[-74.75449499999999,41.478849],[-74.75434299999999,41.476293999999996],[-74.752344,41.472643],[-74.752956,41.468087],[-74.75085299999999,41.465697999999996],[-74.750412,41.46433],[-74.752003,41.462956],[-74.756627,41.461407],[-74.759897,41.460692],[-74.758575,41.454476],[-74.76001699999999,41.452264],[-74.7613,41.450012],[-74.762466,41.449525],[-74.76262299999999,41.445527999999996],[-74.762309,41.444351999999995],[-74.759483,41.442588],[-74.75889699999999,41.440743],[-74.75657799999999,41.436827],[-74.756107,41.433946999999996],[-74.755087,41.433181999999995],[-74.752575,41.433240999999995],[-74.751868,41.432477],[-74.756421,41.428008999999996],[-74.754994,41.425301999999995],[-74.7547086478626,41.4249931814039]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36113","STATE":"36","COUNTY":"113","NAME":"Warren","LSAD":"County","CENSUSAREA":866.952},"geometry":{"type":"Polygon","coordinates":[[[-74.1601,43.371531999999995],[-74.172445,43.453823],[-74.182555,43.52088],[-74.203537,43.657166],[-74.20378,43.658798],[-74.214625,43.728702999999996],[-74.058753,43.744347999999995],[-74.057005,43.744513],[-73.966203,43.753474],[-73.90837499999999,43.758919999999996],[-73.883899,43.761223],[-73.882117,43.761388],[-73.87457599999999,43.762104],[-73.870935,43.76258],[-73.86869,43.762803],[-73.785375,43.770641],[-73.75786599999999,43.773298],[-73.751824,43.773804999999996],[-73.638151,43.784852],[-73.61820399999999,43.786777],[-73.49900000000001,43.798787999999995],[-73.495503,43.799319],[-73.486746,43.799960999999996],[-73.447704,43.803017],[-73.43812,43.803687],[-73.43661,43.801271],[-73.44046399999999,43.798275],[-73.44353,43.797087],[-73.44739799999999,43.794208],[-73.45275,43.787859999999995],[-73.455111,43.786246999999996],[-73.457864,43.783327],[-73.459904,43.781938],[-73.46368199999999,43.781661],[-73.466551,43.780001],[-73.470131,43.776973999999996],[-73.471565,43.772447],[-73.470781,43.771546],[-73.46826899999999,43.771366],[-73.46666499999999,43.770209],[-73.460289,43.768853],[-73.458676,43.765885],[-73.457331,43.765094],[-73.457802,43.761644],[-73.46373,43.758922999999996],[-73.46672199999999,43.758140999999995],[-73.465891,43.756882999999995],[-73.463186,43.757998],[-73.46302,43.756946],[-73.462374,43.755672],[-73.46338899999999,43.754028999999996],[-73.46132999999999,43.751742],[-73.46223599999999,43.749116],[-73.46011899999999,43.747330999999996],[-73.46150399999999,43.745995],[-73.46085599999999,43.743437],[-73.46153199999999,43.742599],[-73.45998399999999,43.740808],[-73.46036699999999,43.737012],[-73.46181,43.738927],[-73.46288899999999,43.735022],[-73.46432399999999,43.734271],[-73.460775,43.732710999999995],[-73.461603,43.731331],[-73.45969199999999,43.731266999999995],[-73.459294,43.730031],[-73.460996,43.729962],[-73.46126199999999,43.728719],[-73.463154,43.729282],[-73.463927,43.725764],[-73.46728399999999,43.725031],[-73.467815,43.722666],[-73.466669,43.721193],[-73.47089799999999,43.720403999999995],[-73.469642,43.719747999999996],[-73.470405,43.715595],[-73.47272099999999,43.714245999999996],[-73.47372,43.71127],[-73.47491099999999,43.711048],[-73.472368,43.708557],[-73.471941,43.706927],[-73.47370599999999,43.706224],[-73.476399,43.703706],[-73.47523799999999,43.702579],[-73.476739,43.699399],[-73.480465,43.698923],[-73.481943,43.696363999999996],[-73.48234699999999,43.693073999999996],[-73.484185,43.692150999999996],[-73.483915,43.690619],[-73.483627,43.687515],[-73.485308,43.687081],[-73.48652,43.683406999999995],[-73.485855,43.681509],[-73.486556,43.679773999999995],[-73.490358,43.675298999999995],[-73.492246,43.674454999999995],[-73.49251699999999,43.672785999999995],[-73.49497199999999,43.673266],[-73.496594,43.67265],[-73.496291,43.670269],[-73.494494,43.669516],[-73.49283,43.670158],[-73.492896,43.667671],[-73.493994,43.666444],[-73.49328899999999,43.662706],[-73.496607,43.661756],[-73.494436,43.659997],[-73.492893,43.657303],[-73.494314,43.653966],[-73.497086,43.653777],[-73.496241,43.651917999999995],[-73.498858,43.650755],[-73.501052,43.652018999999996],[-73.50240699999999,43.651728],[-73.50273,43.650335999999996],[-73.50094,43.648244],[-73.501189,43.645767],[-73.502105,43.64506],[-73.503547,43.647079],[-73.504058,43.64404],[-73.50612799999999,43.644667],[-73.50759599999999,43.643149],[-73.511738,43.642745999999995],[-73.512484,43.643214],[-73.51260599999999,43.641132],[-73.51598899999999,43.63997],[-73.513267,43.638964],[-73.513784,43.637606999999996],[-73.51786899999999,43.637195999999996],[-73.52107699999999,43.637698],[-73.52192699999999,43.635642],[-73.525347,43.636071],[-73.526789,43.636013999999996],[-73.528577,43.632732999999995],[-73.53252599999999,43.629714],[-73.539036,43.625675],[-73.542797,43.621275999999995],[-73.544415,43.618016],[-73.54687899999999,43.616546],[-73.549605,43.61168],[-73.553452,43.609836],[-73.553542,43.607896],[-73.555269,43.607392999999995],[-73.55519,43.604648999999995],[-73.559596,43.601968],[-73.56447399999999,43.597558],[-73.565193,43.597842],[-73.565196,43.595805999999996],[-73.566238,43.594618],[-73.565784,43.591967],[-73.566516,43.590803],[-73.569288,43.589914],[-73.569555,43.588139999999996],[-73.572349,43.586358],[-73.572571,43.584648],[-73.573934,43.58501],[-73.573979,43.583403999999994],[-73.576185,43.5835],[-73.575797,43.581700999999995],[-73.577185,43.582484],[-73.580653,43.581848],[-73.58158499999999,43.580892],[-73.58087499999999,43.578731999999995],[-73.578491,43.579871999999995],[-73.57712699999999,43.579431],[-73.57792599999999,43.577000999999996],[-73.580388,43.576831999999996],[-73.580865,43.573707],[-73.58413399999999,43.57298],[-73.58534399999999,43.571787],[-73.587862,43.571345],[-73.589004,43.569311],[-73.59241,43.568394999999995],[-73.594206,43.568459999999995],[-73.59817699999999,43.567464],[-73.601638,43.567219],[-73.601993,43.567989999999995],[-73.604278,43.567934],[-73.606718,43.567138],[-73.60604099999999,43.566198],[-73.607373,43.563852],[-73.60916999999999,43.564551],[-73.613075,43.563140999999995],[-73.610978,43.561067],[-73.61412899999999,43.556107],[-73.613098,43.555037999999996],[-73.610135,43.555419],[-73.60706499999999,43.552757],[-73.606995,43.551866],[-73.60880399999999,43.550385999999996],[-73.60922599999999,43.548127],[-73.61112299999999,43.54523],[-73.611706,43.546175],[-73.611556,43.543855],[-73.61598599999999,43.539784],[-73.61478699999999,43.539864],[-73.616985,43.537088999999995],[-73.617884,43.534842999999995],[-73.618242,43.530009],[-73.618985,43.528628999999995],[-73.618957,43.520629],[-73.619275,43.520384],[-73.61968499999999,43.520393999999996],[-73.623541,43.51922],[-73.623318,43.520604999999996],[-73.62599399999999,43.521769],[-73.625829,43.519580999999995],[-73.62900599999999,43.518685],[-73.631739,43.513956],[-73.632151,43.509541],[-73.633263,43.508018],[-73.631242,43.504591999999995],[-73.633263,43.505306999999995],[-73.63253,43.501615],[-73.634138,43.500707],[-73.63535999999999,43.501298],[-73.636212,43.50013],[-73.634531,43.498236999999996],[-73.63671699999999,43.497440999999995],[-73.632008,43.493078999999994],[-73.631897,43.490981999999995],[-73.62894,43.486391],[-73.628269,43.484],[-73.626322,43.473777999999996],[-73.62621,43.471019],[-73.623458,43.457795],[-73.62313999999999,43.456067],[-73.62213799999999,43.450601999999996],[-73.621121,43.445145],[-73.61810899999999,43.428902],[-73.61734799999999,43.424803999999995],[-73.612528,43.398782],[-73.612434,43.398303],[-73.611712,43.394445999999995],[-73.61153,43.393471],[-73.610674,43.388901],[-73.6097,43.383691999999996],[-73.60964799999999,43.383409],[-73.608612,43.377807],[-73.60730699999999,43.370615],[-73.603904,43.353165999999995],[-73.60360899999999,43.351516],[-73.602436,43.34563],[-73.601359,43.339807],[-73.60009,43.332405],[-73.597039,43.317178999999996],[-73.596871,43.316575],[-73.596567,43.315126],[-73.596351,43.314004999999995],[-73.59608,43.312901],[-73.595844,43.31201],[-73.59496,43.306118],[-73.599463,43.306742],[-73.609831,43.306542],[-73.616953,43.305251],[-73.619736,43.304939999999995],[-73.621456,43.304748],[-73.628149,43.303863],[-73.63306399999999,43.306309999999996],[-73.63860799999999,43.306444],[-73.639161,43.306272],[-73.639698,43.306131],[-73.640976,43.305797],[-73.642761,43.304172],[-73.64186099999999,43.293273],[-73.650661,43.289572],[-73.651377,43.290079],[-73.653061,43.291272],[-73.660461,43.290572],[-73.66586199999999,43.290866],[-73.671273,43.293154],[-73.675862,43.287472],[-73.675162,43.285072],[-73.661061,43.272872],[-73.669561,43.263870999999995],[-73.67639,43.263475],[-73.68075999999999,43.267371],[-73.684962,43.280871999999995],[-73.690162,43.284071999999995],[-73.69296299999999,43.282733],[-73.695244,43.278915],[-73.698235,43.278282],[-73.704584,43.279357],[-73.706171,43.278282],[-73.707849,43.275732999999995],[-73.709848,43.274291],[-73.71268599999999,43.273520999999995],[-73.723291,43.272445],[-73.73047799999999,43.270773999999996],[-73.73469,43.268896999999996],[-73.73852,43.266577999999996],[-73.73997,43.264708999999996],[-73.74,43.262127],[-73.737574,43.255226],[-73.740354,43.250071999999996],[-73.741785,43.246047],[-73.743957,43.242717],[-73.753412,43.235726],[-73.76021899999999,43.231857999999995],[-73.761732,43.229805999999996],[-73.763515,43.22539],[-73.765269,43.222775999999996],[-73.767498,43.222122999999996],[-73.771061,43.223397999999996],[-73.775795,43.227968],[-73.778454,43.233522],[-73.77949,43.234904],[-73.784246,43.23908],[-73.789731,43.244420999999996],[-73.792889,43.246243],[-73.803298,43.250319999999995],[-73.808375,43.250948],[-73.81006,43.250538],[-73.813402,43.250882999999995],[-73.819532,43.250643],[-73.82138499999999,43.247623],[-73.826645,43.245694],[-73.829179,43.247974],[-73.83208599999999,43.248854],[-73.83345899999999,43.249303],[-73.834034,43.250012999999996],[-73.83581099999999,43.253755999999996],[-73.835567,43.265834999999996],[-73.832651,43.270855999999995],[-73.826077,43.276088],[-73.825152,43.277544999999996],[-73.825226,43.278918999999995],[-73.827503,43.284569999999995],[-73.827389,43.286415],[-73.827186,43.289165],[-73.827072,43.289932],[-73.82694099999999,43.290817],[-73.824789,43.299104],[-73.824615,43.304269999999995],[-73.82721699999999,43.305476999999996],[-73.83294099999999,43.304873],[-73.836918,43.306611],[-73.840364,43.313153],[-73.842426,43.314738999999996],[-73.842423,43.316927],[-73.84318999999999,43.318852],[-73.848354,43.323032999999995],[-73.84960099999999,43.324126],[-73.85400899999999,43.324976],[-73.856833,43.326640999999995],[-73.85864699999999,43.328115],[-73.858991,43.33032],[-73.856877,43.333563999999996],[-73.854309,43.33482],[-73.853286,43.33775],[-73.854203,43.339245999999996],[-73.85916999999999,43.342962],[-73.864038,43.345496],[-73.864623,43.346678],[-73.86432099999999,43.351836999999996],[-73.86475399999999,43.354178],[-73.865692,43.355216],[-73.87071499999999,43.357893999999995],[-73.873355,43.359744],[-73.87513899999999,43.361920999999995],[-73.875372,43.365122],[-73.874567,43.366831999999995],[-73.872175,43.369216],[-73.870977,43.372523],[-73.872796,43.376618],[-73.873147,43.380426],[-73.874567,43.384495],[-73.877392,43.386646],[-73.878667,43.390929],[-73.880737,43.392995],[-73.883157,43.397014999999996],[-73.883299,43.397988],[-73.904873,43.395942999999995],[-74.000391,43.386846],[-74.02546199999999,43.384434999999996],[-74.1601,43.371531999999995]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36115","STATE":"36","COUNTY":"115","NAME":"Washington","LSAD":"County","CENSUSAREA":831.184},"geometry":{"type":"Polygon","coordinates":[[[-73.25649299999999,43.259249],[-73.2586680648889,43.230552806826],[-73.258718,43.229893999999994],[-73.26079290646149,43.1894396794612],[-73.2618094807796,43.169619594035694],[-73.2650637774847,43.1061707762313],[-73.265574,43.096222999999995],[-73.266206375905,43.0871568404487],[-73.26978,43.035923],[-73.27067815325411,43.017563784469495],[-73.274294,42.943652],[-73.348715,42.943967],[-73.35489,42.943993],[-73.368152,42.944047],[-73.380235,42.943739],[-73.38018199999999,42.943795],[-73.37988899999999,42.94403],[-73.378512,42.945319],[-73.38017599999999,42.948035],[-73.38264199999999,42.947801999999996],[-73.38443099999999,42.947222],[-73.388899,42.948237],[-73.389692,42.950587],[-73.393596,42.953112999999995],[-73.39807499999999,42.953088],[-73.40392,42.951757],[-73.404803,42.953205],[-73.403986,42.954871],[-73.408213,42.956931999999995],[-73.412103,42.957383],[-73.416349,42.956671],[-73.420659,42.954902999999995],[-73.424921,42.955988999999995],[-73.426845,42.958515],[-73.43316,42.958241],[-73.43948999999999,42.954315],[-73.443001,42.952895],[-73.44744299999999,42.951972],[-73.449596,42.950748999999995],[-73.449326,42.945316999999996],[-73.450593,42.944581],[-73.462299,42.944806],[-73.46446399999999,42.944258999999995],[-73.49882099999999,42.943712],[-73.49964,42.943687999999995],[-73.51732299999999,42.943356],[-73.536463,42.942988],[-73.57727299999999,42.942211],[-73.585015,42.942113],[-73.595717,42.941891999999996],[-73.624561,42.941221999999996],[-73.635463,42.941289999999995],[-73.634006,42.942336999999995],[-73.631242,42.946321999999995],[-73.62931999999999,42.951502999999995],[-73.62888199999999,42.955405],[-73.628879,42.955456999999996],[-73.628708,42.959151],[-73.629786,42.962607],[-73.631467,42.969739],[-73.630141,42.971635],[-73.610334,42.981342999999995],[-73.609282,42.982240999999995],[-73.608572,42.983852],[-73.60759,42.994794999999996],[-73.60669899999999,42.999241],[-73.605124,43.001377999999995],[-73.601826,43.004269],[-73.597445,43.007372],[-73.596243,43.008883999999995],[-73.59363499999999,43.01433],[-73.59129899999999,43.021133999999996],[-73.590875,43.023241],[-73.591578,43.031962],[-73.589878,43.037526],[-73.58699899999999,43.042652],[-73.586306,43.048716],[-73.585833,43.049727999999995],[-73.580865,43.052591],[-73.578155,43.055786999999995],[-73.577891,43.058665999999995],[-73.580817,43.065138],[-73.581763,43.070191],[-73.581116,43.073012999999996],[-73.578024,43.077388],[-73.577322,43.078162],[-73.5767,43.079339999999995],[-73.57529699999999,43.082502],[-73.575858,43.084931999999995],[-73.577469,43.086619],[-73.578228,43.090632],[-73.576349,43.09459],[-73.573672,43.098405],[-73.573342,43.100545],[-73.575647,43.107558],[-73.575671,43.107614999999996],[-73.575824,43.108612],[-73.575484,43.114851],[-73.577229,43.118975999999996],[-73.579047,43.120194],[-73.582588,43.121423],[-73.585599,43.123664999999995],[-73.585841,43.126548],[-73.58655399999999,43.128144999999996],[-73.588595,43.129627],[-73.589832,43.131499],[-73.590938,43.13511],[-73.590752,43.139488],[-73.589497,43.141574999999996],[-73.58489399999999,43.147921],[-73.582574,43.149865999999996],[-73.580214,43.152882],[-73.580254,43.155539],[-73.58036299999999,43.156431999999995],[-73.583983,43.162824],[-73.583304,43.165572999999995],[-73.587743,43.166793],[-73.58983599999999,43.170472],[-73.582212,43.180315],[-73.580906,43.183737],[-73.582183,43.189036],[-73.585532,43.191139],[-73.585809,43.192372],[-73.583546,43.199830999999996],[-73.583197,43.202268],[-73.580907,43.205751],[-73.579219,43.209669999999996],[-73.581357,43.215804],[-73.581546,43.218897],[-73.584279,43.222353999999996],[-73.585957,43.227432],[-73.587723,43.229572999999995],[-73.589297,43.230836],[-73.593124,43.232164999999995],[-73.59467099999999,43.234136],[-73.597481,43.24095],[-73.59764,43.243187999999996],[-73.597082,43.244440999999995],[-73.593045,43.248394],[-73.592552,43.24884],[-73.59204199999999,43.249361],[-73.59082,43.250073],[-73.590274,43.250052],[-73.586947,43.255899],[-73.58706099999999,43.258756999999996],[-73.58722,43.259712],[-73.589096,43.263714],[-73.590206,43.264548999999995],[-73.590263,43.264616],[-73.592356,43.267148999999996],[-73.596,43.269117],[-73.600656,43.268501],[-73.600443,43.272051999999995],[-73.600244,43.278807],[-73.59713599999999,43.284113999999995],[-73.59496899999999,43.291343999999995],[-73.59272899999999,43.295083999999996],[-73.589111,43.297703],[-73.588822,43.300543],[-73.59496,43.306118],[-73.595844,43.31201],[-73.59608,43.312901],[-73.596351,43.314004999999995],[-73.596567,43.315126],[-73.596871,43.316575],[-73.597039,43.317178999999996],[-73.60009,43.332405],[-73.601359,43.339807],[-73.602436,43.34563],[-73.60360899999999,43.351516],[-73.603904,43.353165999999995],[-73.60730699999999,43.370615],[-73.608612,43.377807],[-73.60964799999999,43.383409],[-73.6097,43.383691999999996],[-73.610674,43.388901],[-73.61153,43.393471],[-73.611712,43.394445999999995],[-73.612434,43.398303],[-73.612528,43.398782],[-73.61734799999999,43.424803999999995],[-73.61810899999999,43.428902],[-73.621121,43.445145],[-73.62213799999999,43.450601999999996],[-73.62313999999999,43.456067],[-73.623458,43.457795],[-73.62621,43.471019],[-73.626322,43.473777999999996],[-73.628269,43.484],[-73.62894,43.486391],[-73.631897,43.490981999999995],[-73.632008,43.493078999999994],[-73.63671699999999,43.497440999999995],[-73.634531,43.498236999999996],[-73.636212,43.50013],[-73.63535999999999,43.501298],[-73.634138,43.500707],[-73.63253,43.501615],[-73.633263,43.505306999999995],[-73.631242,43.504591999999995],[-73.633263,43.508018],[-73.632151,43.509541],[-73.631739,43.513956],[-73.62900599999999,43.518685],[-73.625829,43.519580999999995],[-73.62599399999999,43.521769],[-73.623318,43.520604999999996],[-73.623541,43.51922],[-73.61968499999999,43.520393999999996],[-73.619275,43.520384],[-73.618957,43.520629],[-73.618985,43.528628999999995],[-73.618242,43.530009],[-73.617884,43.534842999999995],[-73.616985,43.537088999999995],[-73.61478699999999,43.539864],[-73.61598599999999,43.539784],[-73.611556,43.543855],[-73.611706,43.546175],[-73.61112299999999,43.54523],[-73.60922599999999,43.548127],[-73.60880399999999,43.550385999999996],[-73.606995,43.551866],[-73.60706499999999,43.552757],[-73.610135,43.555419],[-73.613098,43.555037999999996],[-73.61412899999999,43.556107],[-73.610978,43.561067],[-73.613075,43.563140999999995],[-73.60916999999999,43.564551],[-73.607373,43.563852],[-73.60604099999999,43.566198],[-73.606718,43.567138],[-73.604278,43.567934],[-73.601993,43.567989999999995],[-73.601638,43.567219],[-73.59817699999999,43.567464],[-73.594206,43.568459999999995],[-73.59241,43.568394999999995],[-73.589004,43.569311],[-73.587862,43.571345],[-73.58534399999999,43.571787],[-73.58413399999999,43.57298],[-73.580865,43.573707],[-73.580388,43.576831999999996],[-73.57792599999999,43.577000999999996],[-73.57712699999999,43.579431],[-73.578491,43.579871999999995],[-73.58087499999999,43.578731999999995],[-73.58158499999999,43.580892],[-73.580653,43.581848],[-73.577185,43.582484],[-73.575797,43.581700999999995],[-73.576185,43.5835],[-73.573979,43.583403999999994],[-73.573934,43.58501],[-73.572571,43.584648],[-73.572349,43.586358],[-73.569555,43.588139999999996],[-73.569288,43.589914],[-73.566516,43.590803],[-73.565784,43.591967],[-73.566238,43.594618],[-73.565196,43.595805999999996],[-73.565193,43.597842],[-73.56447399999999,43.597558],[-73.559596,43.601968],[-73.55519,43.604648999999995],[-73.555269,43.607392999999995],[-73.553542,43.607896],[-73.553452,43.609836],[-73.549605,43.61168],[-73.54687899999999,43.616546],[-73.544415,43.618016],[-73.542797,43.621275999999995],[-73.539036,43.625675],[-73.53252599999999,43.629714],[-73.528577,43.632732999999995],[-73.526789,43.636013999999996],[-73.525347,43.636071],[-73.52192699999999,43.635642],[-73.52107699999999,43.637698],[-73.51786899999999,43.637195999999996],[-73.513784,43.637606999999996],[-73.513267,43.638964],[-73.51598899999999,43.63997],[-73.51260599999999,43.641132],[-73.512484,43.643214],[-73.511738,43.642745999999995],[-73.50759599999999,43.643149],[-73.50612799999999,43.644667],[-73.504058,43.64404],[-73.503547,43.647079],[-73.502105,43.64506],[-73.501189,43.645767],[-73.50094,43.648244],[-73.50273,43.650335999999996],[-73.50240699999999,43.651728],[-73.501052,43.652018999999996],[-73.498858,43.650755],[-73.496241,43.651917999999995],[-73.497086,43.653777],[-73.494314,43.653966],[-73.492893,43.657303],[-73.494436,43.659997],[-73.496607,43.661756],[-73.49328899999999,43.662706],[-73.493994,43.666444],[-73.492896,43.667671],[-73.49283,43.670158],[-73.494494,43.669516],[-73.496291,43.670269],[-73.496594,43.67265],[-73.49497199999999,43.673266],[-73.49251699999999,43.672785999999995],[-73.492246,43.674454999999995],[-73.490358,43.675298999999995],[-73.486556,43.679773999999995],[-73.485855,43.681509],[-73.48652,43.683406999999995],[-73.485308,43.687081],[-73.483627,43.687515],[-73.483915,43.690619],[-73.484185,43.692150999999996],[-73.48234699999999,43.693073999999996],[-73.481943,43.696363999999996],[-73.480465,43.698923],[-73.476739,43.699399],[-73.47523799999999,43.702579],[-73.476399,43.703706],[-73.47370599999999,43.706224],[-73.471941,43.706927],[-73.472368,43.708557],[-73.47491099999999,43.711048],[-73.47372,43.71127],[-73.47272099999999,43.714245999999996],[-73.470405,43.715595],[-73.469642,43.719747999999996],[-73.47089799999999,43.720403999999995],[-73.466669,43.721193],[-73.467815,43.722666],[-73.46728399999999,43.725031],[-73.463927,43.725764],[-73.463154,43.729282],[-73.46126199999999,43.728719],[-73.460996,43.729962],[-73.459294,43.730031],[-73.45969199999999,43.731266999999995],[-73.461603,43.731331],[-73.460775,43.732710999999995],[-73.46432399999999,43.734271],[-73.46288899999999,43.735022],[-73.46181,43.738927],[-73.46036699999999,43.737012],[-73.45998399999999,43.740808],[-73.46153199999999,43.742599],[-73.46085599999999,43.743437],[-73.46150399999999,43.745995],[-73.46011899999999,43.747330999999996],[-73.46223599999999,43.749116],[-73.46132999999999,43.751742],[-73.46338899999999,43.754028999999996],[-73.462374,43.755672],[-73.46302,43.756946],[-73.463186,43.757998],[-73.465891,43.756882999999995],[-73.46672199999999,43.758140999999995],[-73.46373,43.758922999999996],[-73.457802,43.761644],[-73.457331,43.765094],[-73.458676,43.765885],[-73.460289,43.768853],[-73.46666499999999,43.770209],[-73.46826899999999,43.771366],[-73.470781,43.771546],[-73.471565,43.772447],[-73.470131,43.776973999999996],[-73.466551,43.780001],[-73.46368199999999,43.781661],[-73.459904,43.781938],[-73.457864,43.783327],[-73.455111,43.786246999999996],[-73.45275,43.787859999999995],[-73.44739799999999,43.794208],[-73.44353,43.797087],[-73.44046399999999,43.798275],[-73.43661,43.801271],[-73.43812,43.803687],[-73.435909,43.803836],[-73.43323699999999,43.804083],[-73.42164199999999,43.805020999999996],[-73.404524,43.806394999999995],[-73.402963,43.806523999999996],[-73.38795999999999,43.807686],[-73.3793298267232,43.808476322237],[-73.379279,43.808391],[-73.37827,43.805994999999996],[-73.37723199999999,43.800565],[-73.376361,43.798766],[-73.368184,43.793346],[-73.362498,43.790211],[-73.357547,43.785933],[-73.35554499999999,43.778468],[-73.35475799999999,43.776720999999995],[-73.350593,43.771938999999996],[-73.350707,43.770463],[-73.354597,43.764167],[-73.369725,43.744274],[-73.37028699999999,43.742269],[-73.370724,43.735571],[-73.369916,43.728789],[-73.370612,43.725328999999995],[-73.37775599999999,43.717712],[-73.382965,43.714058],[-73.38588299999999,43.711335999999996],[-73.39179,43.703481],[-73.3935750235143,43.699527722367],[-73.393723,43.699200000000005],[-73.395517,43.696830999999996],[-73.398332,43.694624999999995],[-73.402078,43.693106],[-73.40473899999999,43.690213],[-73.405243,43.688367],[-73.403474,43.684694],[-73.40412599999999,43.681339],[-73.407776,43.672519],[-73.408061,43.669438],[-73.414546,43.658209],[-73.41551299999999,43.652449999999995],[-73.418763,43.64788],[-73.42353899999999,43.645675999999995],[-73.425217,43.64429],[-73.426463,43.642598],[-73.428583,43.636542999999996],[-73.42791,43.634428],[-73.418319,43.623325],[-73.41766799999999,43.621687],[-73.417827,43.620585999999996],[-73.42370799999999,43.612356],[-73.42381499999999,43.610989],[-73.42215399999999,43.606511],[-73.421616,43.603023],[-73.424977,43.598774999999996],[-73.430325,43.590531999999996],[-73.431229,43.588285],[-73.430947,43.587036],[-73.428636,43.583994],[-73.4266992386351,43.5829927346213],[-73.42666299999999,43.582974],[-73.420378,43.581489],[-73.416964,43.577729999999995],[-73.40562899999999,43.571179],[-73.400295,43.568889],[-73.398125,43.568065],[-73.39576699999999,43.568087],[-73.39199825686521,43.5698966302733],[-73.39196,43.569914999999995],[-73.384188,43.575511999999996],[-73.383369,43.576769999999996],[-73.382549,43.579193],[-73.383426,43.584727],[-73.38344599999999,43.596778],[-73.377748,43.599655999999996],[-73.373443,43.603291999999996],[-73.372469,43.604848],[-73.37237499999999,43.606013999999995],[-73.376036,43.612595999999996],[-73.374557,43.614677],[-73.369933,43.619093],[-73.36986999999999,43.619710999999995],[-73.372486,43.622751],[-73.371889,43.624489],[-73.368899,43.62471],[-73.367167,43.623622],[-73.365562,43.623439999999995],[-73.35911,43.624598],[-73.358593,43.625065],[-73.347621,43.622509],[-73.342181,43.62607],[-73.32813999187539,43.625917749273],[-73.327702,43.625913],[-73.323893,43.627629],[-73.317566,43.627355],[-73.312809,43.624601999999996],[-73.31060599999999,43.624114],[-73.307682,43.627492],[-73.306234,43.628018],[-73.304125,43.627057],[-73.30255199999999,43.625707999999996],[-73.302076,43.624364],[-73.300285,43.610806],[-73.29802,43.610028],[-73.293741,43.605202999999996],[-73.292232,43.60255],[-73.292202,43.59816],[-73.292801,43.593861],[-73.29324199999999,43.592558],[-73.29692399999999,43.587323],[-73.29236399999999,43.585104],[-73.292113,43.584509],[-73.2944399749097,43.5824943133768],[-73.2953435917219,43.5802352748487],[-73.29462069932279,43.5789702109615],[-73.2935363598487,43.57851840430649],[-73.2898626104978,43.578839416154096],[-73.28491199999999,43.579271999999996],[-73.281296,43.577579],[-73.280952,43.575407],[-73.279726,43.574241],[-73.26938,43.571973],[-73.264099,43.568884],[-73.258631,43.564949],[-73.252602,43.556850999999995],[-73.24864099999999,43.553857],[-73.24842,43.552577],[-73.250408,43.550425],[-73.250132,43.543428999999996],[-73.247812,43.542814],[-73.246585,43.541855],[-73.242042,43.534925],[-73.24158899999999,43.534973],[-73.24139,43.532345],[-73.241891,43.529418],[-73.243366,43.527726],[-73.246821,43.52578],[-73.247698,43.523173],[-73.247631,43.519239999999996],[-73.24672,43.518875],[-73.247061,43.514919],[-73.24775540816779,43.4918708674104],[-73.248401,43.470442999999996],[-73.24976558377,43.4379860763965],[-73.2505413725642,43.4195337701456],[-73.2511034124068,43.4061655294903],[-73.2511625832628,43.404758137730006],[-73.2513730069436,43.399753164431594],[-73.25145047737449,43.397910513278696],[-73.25258199999999,43.370996999999996],[-73.252674,43.370284999999996],[-73.252832,43.363493],[-73.253084,43.354714],[-73.2531453878036,43.3529949074009],[-73.25315693018149,43.3526716768029],[-73.2557857927449,43.2790535000319],[-73.25649299999999,43.259249]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36119","STATE":"36","COUNTY":"119","NAME":"Westchester","LSAD":"County","CENSUSAREA":430.497},"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.77230525303591,40.8873293323918],[-73.77227599999999,40.887499],[-73.77057599999999,40.888399],[-73.768276,40.887599],[-73.767276,40.886899],[-73.76717599999999,40.886299],[-73.767076,40.885399],[-73.767076,40.884799],[-73.767076,40.883499],[-73.76627599999999,40.881099],[-73.766976,40.880099],[-73.76705805377169,40.8800821684571],[-73.770876,40.879298999999996],[-73.77527599999999,40.882199],[-73.7751826573764,40.8840658524728],[-73.775176,40.884198999999995],[-73.7728314259913,40.8845897623348],[-73.772776,40.884599],[-73.77230525303591,40.8873293323918]]],[[[-73.727775,41.100696],[-73.72257499999999,41.093596],[-73.716875,41.087596],[-73.70616305989901,41.074183562832594],[-73.694273,41.059295999999996],[-73.687173,41.050697],[-73.6828743005723,41.0453833298741],[-73.67997299999999,41.041796999999995],[-73.6757934877273,41.036650142449204],[-73.6706354470084,41.0302982767075],[-73.670472,41.030097],[-73.66672215108149,41.0254818013311],[-73.662672,41.020497],[-73.6605798076558,41.0182904692439],[-73.659097452276,41.016727103071496],[-73.65544366846989,41.0128736398053],[-73.655371,41.012797],[-73.654671,41.011697],[-73.655571,41.007697],[-73.65750249813739,41.0035301268805],[-73.65937199999999,40.999497],[-73.65897994059411,40.9955764059406],[-73.65888229702969,40.994599970297],[-73.658772,40.993497],[-73.659671,40.987908999999995],[-73.6576158881351,40.98549919431],[-73.657336,40.985171],[-73.65597199999999,40.979597],[-73.659972,40.968398],[-73.662072,40.966198],[-73.66214099603701,40.966226748348696],[-73.664472,40.967197999999996],[-73.6645300091433,40.9671792337159],[-73.6677686136938,40.966131526928],[-73.6689548726994,40.9657477654674],[-73.67289748318979,40.9644723087982],[-73.6747234401107,40.9638816014641],[-73.6776850875591,40.96292349185649],[-73.678073,40.962798],[-73.6780757062423,40.9627908180492],[-73.67903121090049,40.9602550556872],[-73.683273,40.948997999999996],[-73.68647299999999,40.945198],[-73.697974,40.939598],[-73.70294861988609,40.9380152900922],[-73.712079678126,40.9351101804203],[-73.71350231634109,40.9346575581799],[-73.7169869216492,40.933548906770895],[-73.721739,40.932037],[-73.72813696417809,40.9275502650572],[-73.731775,40.924999],[-73.732158828552,40.924808628653096],[-73.73651645411549,40.9226473328254],[-73.74340105941889,40.91923270518],[-73.7469053247486,40.917494659098296],[-73.74865920042541,40.9166247715581],[-73.7496966311764,40.9161102264875],[-73.7542127020445,40.91387034493219],[-73.7545881609415,40.913684124768004],[-73.7547407095673,40.9136084636761],[-73.75498574009968,40.9134869333932],[-73.756776,40.912599],[-73.7618293651441,40.90701277044249],[-73.7654112061186,40.9030532335098],[-73.7785276441125,40.888553700718894],[-73.78133799999999,40.885447],[-73.7835452253621,40.881039556340504],[-73.78370199999999,40.881077999999995],[-73.792942,40.883410999999995],[-73.804191,40.886348],[-73.81971899999999,40.890206],[-73.822959,40.891056],[-73.823244,40.891199],[-73.82312,40.890648],[-73.823617,40.890412999999995],[-73.823557,40.889865],[-73.824047,40.889866],[-73.82400899999999,40.889978],[-73.825002,40.890178],[-73.827224,40.890785],[-73.830972,40.891935],[-73.83170299999999,40.892178],[-73.83271599999999,40.892443],[-73.833595,40.892706],[-73.835174,40.89317],[-73.836282,40.893530999999996],[-73.83733699999999,40.893814],[-73.838407,40.894061],[-73.838985,40.895602],[-73.839649,40.897891],[-73.840036,40.900566999999995],[-73.840999,40.902812],[-73.841318,40.903987],[-73.842308,40.903988],[-73.843305,40.90408],[-73.84438899999999,40.904095999999996],[-73.844702,40.904177],[-73.844847,40.90531],[-73.84532,40.905581999999995],[-73.846104,40.905777],[-73.847071,40.906172999999995],[-73.848683,40.906743],[-73.851506,40.906645],[-73.852204,40.906878],[-73.85260099999999,40.906977],[-73.85279,40.907073],[-73.851123,40.910008999999995],[-73.852678,40.909898999999996],[-73.85488099999999,40.908217],[-73.85410399999999,40.906679],[-73.85610799999999,40.90606],[-73.856324,40.906166],[-73.858221,40.902335],[-73.860006,40.900565],[-73.86204099999999,40.901202999999995],[-73.86264299999999,40.901474],[-73.86286,40.901525],[-73.86466899999999,40.901793],[-73.865635,40.902086],[-73.866952,40.902474999999995],[-73.867876,40.902983],[-73.872913,40.904467],[-73.874087,40.904807],[-73.877855,40.905922],[-73.878012,40.905964999999995],[-73.87818899999999,40.905983],[-73.87835,40.905983],[-73.879239,40.906365],[-73.880111,40.906591],[-73.880929,40.90683],[-73.88182499999999,40.907134],[-73.882993,40.907423],[-73.884106,40.907500999999996],[-73.884832,40.907723],[-73.885401,40.907976999999995],[-73.88601,40.907979],[-73.886237,40.908052],[-73.887984,40.908592999999996],[-73.89180499999999,40.909777999999996],[-73.891928,40.909808999999996],[-73.892799,40.910058],[-73.89663399999999,40.911324],[-73.89725299999999,40.911654999999996],[-73.89950499999999,40.911978],[-73.900697,40.912380999999996],[-73.902106,40.912879],[-73.90245399999999,40.912979],[-73.905947,40.913948],[-73.910006,40.915076],[-73.910516,40.915282],[-73.91790499999999,40.917577],[-73.91767999999999,40.919498],[-73.9176796734955,40.91949883958301],[-73.91557999999999,40.924898],[-73.912272372207,40.935498349312496],[-73.9103956177983,40.94151300802],[-73.90728,40.951498],[-73.9072570972635,40.95156203478739],[-73.9049158705604,40.9581079754602],[-73.8989276186366,40.974850797407],[-73.896479,40.981697],[-73.893979,40.997197],[-73.893579,41.005297],[-73.890079,41.022597],[-73.889915,41.025749],[-73.88938,41.037597],[-73.89027999999999,41.045196],[-73.89038,41.045795999999996],[-73.89388,41.057896],[-73.89448,41.064596],[-73.8947,41.069936999999996],[-73.89478,41.070496],[-73.89477699999999,41.070791],[-73.89468,41.079595999999995],[-73.89488,41.082395999999996],[-73.89377999999999,41.093295999999995],[-73.89141699999999,41.107318],[-73.890866,41.110583],[-73.88758,41.128795],[-73.88718,41.133095],[-73.88739699999999,41.136860999999996],[-73.88748,41.138295],[-73.88947999999999,41.145095],[-73.892481,41.150594999999996],[-73.895381,41.153994999999995],[-73.899681,41.157295],[-73.906581,41.161895],[-73.909281,41.164395],[-73.911681,41.167795],[-73.91438099999999,41.174195],[-73.921697,41.186288],[-73.925682,41.195194],[-73.927229,41.198038],[-73.931482,41.204994],[-73.935982,41.209894],[-73.936782,41.210814],[-73.939983,41.214493999999995],[-73.944683,41.219594],[-73.947965,41.223101],[-73.950947,41.226346],[-73.953283,41.228994],[-73.961383,41.234193999999995],[-73.96078299999999,41.239394],[-73.961283,41.241994],[-73.964142,41.243851],[-73.970784,41.247893],[-73.97198399999999,41.251492999999996],[-73.972284,41.256192999999996],[-73.97148399999999,41.259592999999995],[-73.969684,41.263193],[-73.966884,41.267193],[-73.964184,41.269993],[-73.957183,41.276393],[-73.955445,41.277862],[-73.952045,41.280736],[-73.94748299999999,41.284593],[-73.94578299999999,41.287593],[-73.94658299999999,41.290993],[-73.949083,41.292593],[-73.95518299999999,41.294993],[-73.964483,41.299693],[-73.966983,41.301693],[-73.971784,41.307293],[-73.97748399999999,41.312093],[-73.98098399999999,41.314192999999996],[-73.983284,41.317392999999996],[-73.982584,41.321692999999996],[-73.926846,41.327639999999995],[-73.918286,41.328531999999996],[-73.91402699999999,41.32897],[-73.908236,41.329453],[-73.904794,41.329705],[-73.89345999999999,41.330892],[-73.892926,41.330982999999996],[-73.892256,41.330954],[-73.891427,41.330993],[-73.890602,41.331071],[-73.889692,41.331176],[-73.88817999999999,41.331472],[-73.88776299999999,41.331491],[-73.8833,41.331956],[-73.879948,41.332623],[-73.875119,41.332785],[-73.873801,41.332989999999995],[-73.86201,41.334264],[-73.842703,41.336197999999996],[-73.829988,41.337503],[-73.822273,41.338223],[-73.816037,41.338823999999995],[-73.797456,41.340647],[-73.78826,41.341736999999995],[-73.780007,41.342492],[-73.772054,41.343393],[-73.771839,41.343416999999995],[-73.75823199999999,41.344837999999996],[-73.757605,41.344904],[-73.75312199999999,41.345341999999995],[-73.753068,41.345346],[-73.740095,41.346682],[-73.735816,41.347122999999996],[-73.734672,41.347288],[-73.727501,41.347991],[-73.72520999999999,41.348217999999996],[-73.724035,41.348394],[-73.719804,41.348818],[-73.718674,41.348932999999995],[-73.69994,41.350854999999996],[-73.69476499999999,41.351386999999995],[-73.689493,41.351929999999996],[-73.671686,41.353857],[-73.660905,41.354994],[-73.660619,41.355025999999995],[-73.659871,41.355098999999996],[-73.659031,41.355183],[-73.64124799999999,41.356974],[-73.639056,41.357253],[-73.628491,41.358180999999995],[-73.599938,41.360802],[-73.596621,41.361128],[-73.593929,41.361286],[-73.57247799999999,41.363579],[-73.56024,41.36485],[-73.54472799999999,41.366375],[-73.54594967963769,41.3548408476985],[-73.5485829823632,41.329979244252],[-73.548973,41.326297],[-73.54957399999999,41.315931],[-73.548929,41.307598],[-73.54994114379718,41.3015331068529],[-73.550961,41.295421999999995],[-73.54888651505989,41.2929574148437],[-73.5481483879656,41.292080485325],[-73.52629551138119,41.266118245633],[-73.5251605899493,41.2647699058786],[-73.518384,41.256719],[-73.5174528199442,41.255571593018296],[-73.4914077339291,41.2234786445631],[-73.482709,41.212759999999996],[-73.5091865006584,41.2009480565066],[-73.509487,41.200814],[-73.5127650458268,41.1992931912149],[-73.514617,41.198434],[-73.535995955855,41.1885508422818],[-73.5647586708229,41.1752542879337],[-73.56494099999999,41.17517],[-73.61439109108869,41.152914810371094],[-73.62881485864709,41.146423342405896],[-73.632153,41.144921],[-73.63967199999999,41.141495],[-73.660504402926,41.1318478687221],[-73.66774281828629,41.1284958817491],[-73.6959488909347,41.1154341295047],[-73.727775,41.100696]]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36123","STATE":"36","COUNTY":"123","NAME":"Yates","LSAD":"County","CENSUSAREA":338.143},"geometry":{"type":"Polygon","coordinates":[[[-76.971392,42.764223],[-76.947429,42.76443],[-76.94764099999999,42.759178999999996],[-76.94766,42.757639],[-76.946737,42.749742999999995],[-76.944986,42.737294],[-76.942945,42.731921],[-76.93870199999999,42.721525],[-76.936387,42.7173],[-76.933111,42.712306999999996],[-76.908013,42.679071],[-76.89869399999999,42.666638999999996],[-76.897117,42.66365],[-76.895349,42.656255],[-76.894706,42.636882],[-76.89453499999999,42.629155],[-76.894673,42.623216],[-76.894438,42.607333],[-76.894314,42.598583],[-76.894139,42.585029999999996],[-76.894061,42.578795],[-76.894258,42.562545],[-76.895596,42.541537],[-76.899485,42.520631],[-76.900689,42.499224999999996],[-76.900841,42.493812],[-76.898575,42.484254],[-76.889805,42.463054],[-76.903319,42.462281999999995],[-76.934649,42.460691],[-76.942864,42.460259],[-76.963977,42.459185999999995],[-76.964456,42.46425],[-76.98795,42.463249999999995],[-76.989329,42.484821],[-77.04091799999999,42.48459],[-77.08106699999999,42.484094],[-77.092918,42.483947],[-77.107203,42.483771],[-77.107581,42.505365],[-77.107593,42.50577],[-77.11439,42.50813],[-77.117893,42.50387],[-77.121793,42.50087],[-77.127279,42.497259],[-77.130354,42.496005],[-77.138904,42.494279],[-77.143946,42.494704999999996],[-77.147414,42.497101],[-77.149502,42.50007],[-77.150095,42.50787],[-77.149495,42.51527],[-77.147695,42.52397],[-77.146895,42.53207],[-77.147295,42.53507],[-77.149295,42.54587],[-77.149695,42.549969999999995],[-77.14959499999999,42.553869999999996],[-77.14879499999999,42.559669],[-77.14749499999999,42.565069],[-77.143795,42.576868999999995],[-77.14994,42.57683],[-77.166647,42.576719999999995],[-77.17654399999999,42.576657],[-77.192152,42.576561999999996],[-77.218531,42.576494],[-77.242763,42.576374],[-77.306803,42.576206],[-77.335139,42.576232999999995],[-77.352148,42.576332],[-77.356624,42.576343],[-77.36650499999999,42.576367999999995],[-77.366619,42.597986999999996],[-77.366844,42.635816999999996],[-77.36710599999999,42.667866],[-77.364459,42.667893],[-77.357405,42.667967],[-77.357355,42.669157999999996],[-77.355706,42.689865999999995],[-77.354406,42.697165999999996],[-77.353606,42.699965999999996],[-77.349406,42.710266],[-77.346605,42.716366],[-77.337605,42.732665999999995],[-77.336705,42.733965999999995],[-77.333505,42.738166],[-77.325105,42.747265999999996],[-77.321354,42.750066],[-77.31618,42.756175999999996],[-77.314461,42.759132],[-77.313546,42.760374999999996],[-77.31300399999999,42.761264999999995],[-77.257105,42.761399],[-77.23409699999999,42.761384],[-77.226861,42.761344],[-77.220834,42.761384],[-77.17397299999999,42.761527],[-77.144284,42.761621],[-77.123218,42.761721],[-77.12315,42.76334],[-77.078452,42.763653],[-77.067923,42.763768999999996],[-77.049905,42.763839999999995],[-77.018626,42.7638],[-77.017719,42.763796],[-77.00162399999999,42.764072],[-77.00084199999999,42.764078999999995],[-76.971392,42.764223]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36069","STATE":"36","COUNTY":"069","NAME":"Ontario","LSAD":"County","CENSUSAREA":644.065},"geometry":{"type":"Polygon","coordinates":[[[-77.371478,43.034696],[-77.344934,43.03468],[-77.334183,43.034687],[-77.327524,43.034693],[-77.314522,43.034701999999996],[-77.307658,43.034706],[-77.246804,43.034662999999995],[-77.24660399999999,43.039763],[-77.231619,43.03978],[-77.215847,43.039863],[-77.184418,43.039829],[-77.17994,43.039833],[-77.176627,43.039836],[-77.17101,43.039842],[-77.167264,43.039845],[-77.14438,43.039867],[-77.135697,43.039882],[-77.13431299999999,43.039685999999996],[-77.13406599999999,43.033718],[-77.13403699999999,43.03308],[-77.133397,43.012463],[-77.12227299999999,43.012519999999995],[-77.111831,43.012549],[-77.106259,43.012564999999995],[-77.09343299999999,43.012581],[-77.087271,43.012595999999995],[-77.07905099999999,43.012614],[-77.056893,43.012662999999996],[-77.033222,43.012781],[-77.02313099999999,43.012837999999995],[-77.007065,43.012834],[-76.98416,43.012971],[-76.963926,43.013157],[-76.963745,42.990759999999995],[-76.963641,42.978455],[-76.963563,42.972915],[-76.963701,42.9696],[-76.963687,42.955698999999996],[-76.963562,42.946501999999995],[-76.963408,42.918803],[-76.96339499999999,42.909574],[-76.963371,42.906253],[-76.96334999999999,42.90302],[-76.96340599999999,42.890333999999996],[-76.963409,42.884161],[-76.963359,42.87815],[-76.963365,42.872945],[-76.973112,42.871601999999996],[-76.978526,42.869071999999996],[-76.97962199999999,42.865448],[-76.97980199999999,42.864855999999996],[-76.98034799999999,42.864657],[-76.981257,42.862066],[-76.98064699999999,42.857064],[-76.977921,42.850615],[-76.975399,42.842237],[-76.97439299999999,42.840216],[-76.972963,42.837568999999995],[-76.97345299999999,42.833746999999995],[-76.977453,42.830588999999996],[-76.978318,42.829042],[-76.97554,42.823947],[-76.975518,42.822641],[-76.977494,42.819921],[-76.976435,42.816629999999996],[-76.97688099999999,42.814555999999996],[-76.974575,42.813265],[-76.97413499999999,42.812087999999996],[-76.975838,42.810233],[-76.976207,42.80858],[-76.97536099999999,42.804317999999995],[-76.975112,42.801511],[-76.976959,42.79844],[-76.97502999999999,42.790061],[-76.974727,42.786607],[-76.97537299999999,42.785059],[-76.974745,42.782906],[-76.976534,42.781746999999996],[-76.97723599999999,42.780181],[-76.978053,42.775656],[-76.977888,42.77324],[-76.976193,42.771370999999995],[-76.97538,42.769155999999995],[-76.971806,42.766968999999996],[-76.971392,42.764223],[-77.00084199999999,42.764078999999995],[-77.00162399999999,42.764072],[-77.017719,42.763796],[-77.018626,42.7638],[-77.049905,42.763839999999995],[-77.067923,42.763768999999996],[-77.078452,42.763653],[-77.12315,42.76334],[-77.123218,42.761721],[-77.144284,42.761621],[-77.17397299999999,42.761527],[-77.220834,42.761384],[-77.226861,42.761344],[-77.23409699999999,42.761384],[-77.257105,42.761399],[-77.31300399999999,42.761264999999995],[-77.313546,42.760374999999996],[-77.314461,42.759132],[-77.31618,42.756175999999996],[-77.321354,42.750066],[-77.325105,42.747265999999996],[-77.333505,42.738166],[-77.336705,42.733965999999995],[-77.337605,42.732665999999995],[-77.346605,42.716366],[-77.349406,42.710266],[-77.353606,42.699965999999996],[-77.354406,42.697165999999996],[-77.355706,42.689865999999995],[-77.357355,42.669157999999996],[-77.357405,42.667967],[-77.364459,42.667893],[-77.36710599999999,42.667866],[-77.366844,42.635816999999996],[-77.366619,42.597986999999996],[-77.36650499999999,42.576367999999995],[-77.423093,42.576637],[-77.445871,42.576789],[-77.47390299999999,42.577092],[-77.485171,42.577214],[-77.490889,42.577287999999996],[-77.490708,42.589842],[-77.490657,42.593961],[-77.490612,42.597300999999995],[-77.490554,42.601375999999995],[-77.490129,42.632940999999995],[-77.48998,42.641962],[-77.488928,42.64642],[-77.487348,42.663388999999995],[-77.486875,42.670279],[-77.49403,42.670344],[-77.504103,42.670423],[-77.516204,42.670578],[-77.57309,42.671549],[-77.576927,42.671617999999995],[-77.59091099999999,42.671837],[-77.598815,42.671965],[-77.599447,42.676697],[-77.599964,42.680578],[-77.6002,42.68235],[-77.602088,42.696508],[-77.605216,42.719963],[-77.606713,42.726521],[-77.60757,42.727847],[-77.607483,42.732523],[-77.608302,42.735552],[-77.60791499999999,42.737404999999995],[-77.608661,42.738617999999995],[-77.608631,42.742827999999996],[-77.609355,42.743756999999995],[-77.608716,42.745703],[-77.609217,42.747901999999996],[-77.609195,42.749379],[-77.609787,42.751954999999995],[-77.610912,42.755005999999995],[-77.611019,42.757058],[-77.61166999999999,42.763169],[-77.606172,42.763118999999996],[-77.599724,42.763062999999995],[-77.596204,42.763031999999995],[-77.588217,42.762964],[-77.588157,42.789522],[-77.588151,42.792572],[-77.588071,42.830658],[-77.588022,42.849519],[-77.587997,42.854011],[-77.581649,42.854009],[-77.551926,42.854064],[-77.55493,42.862966],[-77.552269,42.864737],[-77.550805,42.864171],[-77.551081,42.867188],[-77.549914,42.867062],[-77.549649,42.864432],[-77.54734499999999,42.864506],[-77.546309,42.86569],[-77.54683299999999,42.869096],[-77.548836,42.869938],[-77.550692,42.868570999999996],[-77.55234399999999,42.869288],[-77.55203999999999,42.870763],[-77.547872,42.872864],[-77.548118,42.874666],[-77.550673,42.874568],[-77.55175,42.873487],[-77.55400399999999,42.874381],[-77.553017,42.877103999999996],[-77.551735,42.878639],[-77.54936599999999,42.879072],[-77.550313,42.880815],[-77.553787,42.885041],[-77.554346,42.886278999999995],[-77.55282799999999,42.888732999999995],[-77.55328399999999,42.890039],[-77.555988,42.889824],[-77.555343,42.891476999999995],[-77.55279,42.891867],[-77.552515,42.893556],[-77.553891,42.894411],[-77.556294,42.894389],[-77.557265,42.895512],[-77.55424599999999,42.897487],[-77.556304,42.899028],[-77.560487,42.900056],[-77.55899099999999,42.902252999999995],[-77.55881699999999,42.904018],[-77.560408,42.903734],[-77.558303,42.907274],[-77.558993,42.910455],[-77.560566,42.913959],[-77.561835,42.915454],[-77.55971699999999,42.917563],[-77.560347,42.918492],[-77.563008,42.917429999999996],[-77.563285,42.920294],[-77.560566,42.921431999999996],[-77.561645,42.922941],[-77.562247,42.925498999999995],[-77.564824,42.926232999999996],[-77.567077,42.928698999999995],[-77.567615,42.931345],[-77.56821699999999,42.932480999999996],[-77.56630299999999,42.934971999999995],[-77.56725999999999,42.936310999999996],[-77.572898,42.935368],[-77.574882,42.938246],[-77.578001,42.939367],[-77.57788099999999,42.941949],[-77.580377,42.943963],[-77.560383,42.943889],[-77.557343,42.943872],[-77.548005,42.943788],[-77.532555,42.943659],[-77.50705099999999,42.943453999999996],[-77.482517,42.943163999999996],[-77.48310699999999,42.958115],[-77.48351699999999,42.968798],[-77.483814,42.976599],[-77.484042,42.98159],[-77.483869,42.985524],[-77.48445,42.998326],[-77.484844,43.01191],[-77.485011,43.016830999999996],[-77.485025,43.016994],[-77.48503199999999,43.017348999999996],[-77.485418,43.034563999999996],[-77.47983599999999,43.034473],[-77.461928,43.034622999999996],[-77.454363,43.034664],[-77.44491599999999,43.034664],[-77.43174499999999,43.034718],[-77.420924,43.034627],[-77.40292699999999,43.034825],[-77.399832,43.034546],[-77.371478,43.034696]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36073","STATE":"36","COUNTY":"073","NAME":"Orleans","LSAD":"County","CENSUSAREA":391.259},"geometry":{"type":"Polygon","coordinates":[[[-77.99559132206089,43.3652934573297],[-77.99533199999999,43.355539],[-77.995234,43.323513],[-77.995269,43.31565],[-77.995665,43.287448],[-77.995723,43.284963],[-77.996206,43.269448],[-77.996285,43.266582],[-77.996543,43.254768999999996],[-77.996634,43.250626],[-77.99685699999999,43.230374999999995],[-77.996872,43.22721],[-77.99686899999999,43.220645],[-77.996899,43.219521],[-77.99691,43.217765],[-77.996983,43.209042],[-77.997074,43.198924999999996],[-77.997053,43.197714],[-77.997103,43.158739],[-77.99709899999999,43.144715999999995],[-77.997248,43.136519],[-77.99728999999999,43.132981],[-78.016842,43.132419],[-78.02376799999999,43.132188],[-78.027226,43.132059999999996],[-78.031587,43.131918999999996],[-78.048129,43.131493],[-78.065797,43.131349],[-78.078274,43.131415],[-78.09879699999999,43.131395999999995],[-78.111082,43.131496],[-78.115505,43.131516999999995],[-78.115471,43.132397999999995],[-78.16510199999999,43.132231],[-78.19327,43.131823999999995],[-78.207509,43.13166],[-78.23451,43.131617],[-78.237323,43.13163],[-78.251949,43.131341],[-78.298703,43.131166],[-78.307676,43.131325],[-78.309708,43.131313],[-78.310181,43.131284],[-78.310512,43.131295],[-78.34051199999999,43.130803],[-78.390405,43.130570999999996],[-78.410876,43.130643],[-78.443874,43.129458],[-78.465505,43.128619],[-78.465678,43.130975],[-78.46578,43.136277],[-78.465808,43.138259999999995],[-78.465566,43.143594],[-78.465262,43.149848],[-78.462981,43.183065],[-78.462147,43.193683],[-78.460416,43.216221999999995],[-78.46124499999999,43.231901],[-78.46185799999999,43.241960999999996],[-78.46399199999999,43.270433999999995],[-78.464062,43.271299],[-78.46642899999999,43.302775],[-78.46612999999999,43.325455999999996],[-78.466021,43.332401999999995],[-78.465908,43.339428],[-78.465768,43.346398],[-78.465623,43.359493],[-78.4655021200225,43.3712323915095],[-78.44856345417901,43.372169733066],[-78.43310936651321,43.3730249219409],[-78.4016081634596,43.3747681162972],[-78.40150133087839,43.374774028133395],[-78.3987496049847,43.3749263014621],[-78.3987289336086,43.3749274453621],[-78.3887468219443,43.3754798293675],[-78.37772100492819,43.3760899693029],[-78.370221,43.376504999999995],[-78.3690283783032,43.3762441981919],[-78.366894624728,43.3757775902207],[-78.358711,43.373988],[-78.34933424412989,43.3737171178697],[-78.3466314229224,43.3736390369239],[-78.3201265070507,43.3728733448044],[-78.30902636295511,43.3725526762575],[-78.3062588841263,43.37247272743819],[-78.2862722978951,43.37189534127909],[-78.2812523136256,43.3717503205435],[-78.27344520010749,43.3715247833139],[-78.26458252722439,43.3712687523642],[-78.2516157834287,43.3708941602097],[-78.250641,43.370866],[-78.233609,43.36907],[-78.2304799290717,43.3692979188452],[-78.2260493012056,43.3696206419824],[-78.2246546037785,43.36972223054789],[-78.20992085474549,43.3707954242025],[-78.2041375538563,43.3712166748837],[-78.19243451087249,43.372069114506495],[-78.19231120010139,43.37207809635739],[-78.1919493011617,43.3721044567661],[-78.1915863673366,43.3721308925549],[-78.19076136044501,43.37219098535],[-78.1624923708829,43.374250074326596],[-78.1581141256524,43.374568981957594],[-78.1452088288916,43.375508992715396],[-78.145195,43.37551],[-78.1196865500489,43.3755839811506],[-78.10451012481239,43.3756279967377],[-78.104509,43.375628],[-78.0942230914615,43.3744769699629],[-78.0814608798938,43.373048832740196],[-78.0756509925493,43.3723986855198],[-78.07393443704139,43.3722065968051],[-78.05529976509219,43.3701213102148],[-78.03596999999999,43.3679582402101],[-78.03332050428381,43.3676617521419],[-78.0240966153869,43.3666295659097],[-78.023609,43.366575],[-77.9974138709696,43.3653768216328],[-77.99559132206089,43.3652934573297]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36079","STATE":"36","COUNTY":"079","NAME":"Putnam","LSAD":"County","CENSUSAREA":230.312},"geometry":{"type":"Polygon","coordinates":[[[-73.533969,41.479693],[-73.534055,41.478967999999995],[-73.5340642743096,41.4788793571253],[-73.53415,41.47806],[-73.534269,41.476911],[-73.534269,41.476394],[-73.534369,41.475894],[-73.53529508013249,41.4635010633692],[-73.535769,41.457159],[-73.535857,41.455709],[-73.535885,41.455236],[-73.53589433801501,41.455034816626295],[-73.535986,41.45306],[-73.5360668139182,41.451334972042694],[-73.536067,41.451330999999996],[-73.536969,41.441094],[-73.537469,41.43589],[-73.537673,41.433904999999996],[-73.541169,41.405994],[-73.5423794810464,41.3902341377244],[-73.543425,41.376622],[-73.5437226736843,41.3742810466284],[-73.54472799999999,41.366375],[-73.56024,41.36485],[-73.57247799999999,41.363579],[-73.593929,41.361286],[-73.596621,41.361128],[-73.599938,41.360802],[-73.628491,41.358180999999995],[-73.639056,41.357253],[-73.64124799999999,41.356974],[-73.659031,41.355183],[-73.659871,41.355098999999996],[-73.660619,41.355025999999995],[-73.660905,41.354994],[-73.671686,41.353857],[-73.689493,41.351929999999996],[-73.69476499999999,41.351386999999995],[-73.69994,41.350854999999996],[-73.718674,41.348932999999995],[-73.719804,41.348818],[-73.724035,41.348394],[-73.72520999999999,41.348217999999996],[-73.727501,41.347991],[-73.734672,41.347288],[-73.735816,41.347122999999996],[-73.740095,41.346682],[-73.753068,41.345346],[-73.75312199999999,41.345341999999995],[-73.757605,41.344904],[-73.75823199999999,41.344837999999996],[-73.771839,41.343416999999995],[-73.772054,41.343393],[-73.780007,41.342492],[-73.78826,41.341736999999995],[-73.797456,41.340647],[-73.816037,41.338823999999995],[-73.822273,41.338223],[-73.829988,41.337503],[-73.842703,41.336197999999996],[-73.86201,41.334264],[-73.873801,41.332989999999995],[-73.875119,41.332785],[-73.879948,41.332623],[-73.8833,41.331956],[-73.88776299999999,41.331491],[-73.88817999999999,41.331472],[-73.889692,41.331176],[-73.890602,41.331071],[-73.891427,41.330993],[-73.892256,41.330954],[-73.892926,41.330982999999996],[-73.89345999999999,41.330892],[-73.904794,41.329705],[-73.908236,41.329453],[-73.91402699999999,41.32897],[-73.918286,41.328531999999996],[-73.926846,41.327639999999995],[-73.982584,41.321692999999996],[-73.98138399999999,41.324692999999996],[-73.980018,41.32627],[-73.965087,41.343472],[-73.961257,41.348538999999995],[-73.960143,41.351217],[-73.95973099999999,41.353719],[-73.95938,41.361036],[-73.95825099999999,41.367277],[-73.95503099999999,41.376554],[-73.94752299999999,41.393316],[-73.947355,41.395254],[-73.94863699999999,41.39758],[-73.951415,41.398962999999995],[-73.959136,41.400442],[-73.962355,41.403698999999996],[-73.962828,41.409589],[-73.965156,41.413869999999996],[-73.968398,41.420156],[-73.972792,41.424589],[-73.974501,41.427976],[-73.98148599999999,41.438905],[-73.978588,41.442119],[-73.977924,41.442757],[-73.975855,41.444885],[-73.93852,41.483433999999995],[-73.933775,41.488279],[-73.918758,41.489782999999996],[-73.907533,41.490975],[-73.902722,41.492315],[-73.90188599999999,41.492385999999996],[-73.897755,41.49277],[-73.87458,41.495073],[-73.859995,41.495740999999995],[-73.85636,41.496224],[-73.855419,41.496348999999995],[-73.838363,41.498126],[-73.837062,41.498263],[-73.835786,41.498431],[-73.820807,41.499814],[-73.81451799999999,41.500457],[-73.81327399999999,41.500574],[-73.800061,41.501762],[-73.79553,41.502271],[-73.77068,41.504413],[-73.764844,41.505179],[-73.742474,41.507546999999995],[-73.71533699999999,41.510048999999995],[-73.68607899999999,41.513000999999996],[-73.683849,41.513306],[-73.681501,41.513619999999996],[-73.67328499999999,41.514700999999995],[-73.647635,41.518293],[-73.645669,41.518578999999995],[-73.644727,41.518716],[-73.641868,41.519045999999996],[-73.638376,41.519546],[-73.621968,41.521831],[-73.6205,41.521994],[-73.604342,41.523874],[-73.603169,41.523993],[-73.580153,41.526382],[-73.560811,41.526637],[-73.530067,41.527194],[-73.5308863930724,41.517219117803194],[-73.53240243284802,41.498763606428795],[-73.533969,41.479693]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36083","STATE":"36","COUNTY":"083","NAME":"Rensselaer","LSAD":"County","CENSUSAREA":652.431},"geometry":{"type":"Polygon","coordinates":[[[-73.275804,42.897248999999995],[-73.2784875592411,42.8375362992698],[-73.278673,42.83341],[-73.284311,42.834953999999996],[-73.285388,42.834092999999996],[-73.287063,42.820139999999995],[-73.28375,42.813863999999995],[-73.286337,42.808037999999996],[-73.2893047875288,42.8040968400041],[-73.290944,42.801919999999996],[-73.276421,42.746019],[-73.264957,42.74594],[-73.2741413047293,42.7211949219],[-73.3125496783094,42.6177120528152],[-73.3416444868655,42.5393225251104],[-73.34727785276829,42.5241446664332],[-73.352527,42.510002],[-73.378924,42.507633],[-73.396456,42.50577],[-73.46248299999999,42.498793],[-73.497631,42.495241],[-73.49989599999999,42.494758],[-73.50846299999999,42.493731],[-73.52069,42.492207],[-73.526164,42.491569999999996],[-73.528157,42.491363],[-73.541521,42.489703],[-73.54616,42.489143],[-73.554397,42.488163],[-73.577236,42.485138],[-73.608064,42.482006],[-73.624194,42.480398],[-73.624561,42.480363],[-73.62540299999999,42.480261999999996],[-73.63157199999999,42.479593],[-73.65046199999999,42.477706999999995],[-73.657862,42.476948],[-73.659446,42.476786],[-73.68472899999999,42.474194],[-73.687049,42.473956],[-73.689657,42.473690999999995],[-73.690862,42.47354],[-73.690952,42.473531],[-73.69867599999999,42.472736],[-73.71799,42.470751],[-73.737797,42.468714999999996],[-73.783721,42.464231],[-73.786078,42.475249],[-73.786047,42.483835],[-73.78554799999999,42.487209],[-73.784594,42.489947],[-73.779397,42.500081],[-73.77588,42.505817],[-73.773161,42.509377],[-73.76607899999999,42.518781999999995],[-73.76377,42.521135],[-73.763091,42.522026],[-73.76113,42.526322],[-73.758313,42.534214999999996],[-73.75695999999999,42.54199],[-73.756789,42.542972],[-73.75646499999999,42.54868],[-73.754065,42.556779999999996],[-73.752168,42.56672],[-73.75218,42.567391],[-73.752365,42.576679999999996],[-73.75436499999999,42.58258],[-73.75726499999999,42.58718],[-73.758265,42.58988],[-73.761265,42.600778999999996],[-73.76156499999999,42.603578999999996],[-73.761265,42.610378999999995],[-73.759739,42.61379],[-73.759565,42.614179],[-73.752965,42.628679],[-73.751165,42.63608],[-73.75067,42.637024],[-73.748964,42.640279],[-73.748396,42.641548],[-73.747644,42.643232999999995],[-73.74656399999999,42.646179],[-73.741798,42.654317999999996],[-73.740364,42.656079],[-73.739429,42.656803],[-73.730864,42.663278999999996],[-73.7291,42.665081],[-73.724964,42.670179],[-73.723263,42.672878999999995],[-73.716363,42.682378],[-73.706463,42.694078],[-73.702921,42.6993],[-73.702463,42.699978],[-73.70236299999999,42.70088],[-73.702375,42.70101],[-73.702963,42.704378],[-73.703463,42.705577999999996],[-73.703563,42.709478],[-73.70069099999999,42.717982],[-73.69936299999999,42.721478],[-73.698612,42.723794],[-73.697563,42.727278],[-73.697484,42.727675],[-73.697257,42.728786],[-73.694662,42.732078],[-73.693698,42.732763999999996],[-73.69049,42.735045],[-73.690026,42.735625999999996],[-73.688962,42.738278],[-73.68866799999999,42.740162],[-73.688007,42.744901999999996],[-73.687416,42.749103],[-73.687063,42.751678999999996],[-73.68726199999999,42.752477999999996],[-73.686433,42.754022],[-73.68482999999999,42.75701],[-73.684362,42.757878],[-73.684362,42.760777999999995],[-73.684362,42.763877],[-73.683269,42.767949],[-73.68180699999999,42.771695],[-73.678462,42.778877],[-73.676762,42.783277],[-73.676662,42.783677],[-73.675262,42.786077],[-73.67407299999999,42.78875],[-73.672562,42.795376999999995],[-73.672355,42.795791],[-73.667362,42.800177],[-73.663562,42.800877],[-73.661362,42.802977],[-73.658462,42.809076999999995],[-73.659562,42.812877],[-73.660162,42.816776999999995],[-73.659663,42.818978],[-73.66117,42.821940999999995],[-73.663021,42.82544],[-73.665759,42.833372999999995],[-73.670823,42.840312],[-73.673757,42.855464999999995],[-73.675904,42.858574999999995],[-73.673814,42.866762],[-73.673202,42.875077],[-73.674536,42.877533],[-73.67618999999999,42.879307],[-73.67977499999999,42.882267],[-73.683229,42.8906],[-73.68444699999999,42.891586],[-73.68365399999999,42.901314],[-73.68307399999999,42.903776],[-73.682367,42.905414],[-73.67937599999999,42.909455],[-73.678913,42.912212],[-73.671695,42.919261999999996],[-73.671421,42.919522],[-73.671365,42.919573],[-73.666116,42.923826999999996],[-73.66337899999999,42.926811],[-73.663369,42.928613999999996],[-73.663281,42.929156],[-73.660433,42.932534],[-73.65780000000001,42.934284],[-73.650897,42.938137999999995],[-73.647144,42.938994],[-73.639952,42.939417999999996],[-73.635463,42.941289999999995],[-73.624561,42.941221999999996],[-73.595717,42.941891999999996],[-73.585015,42.942113],[-73.57727299999999,42.942211],[-73.536463,42.942988],[-73.51732299999999,42.943356],[-73.49964,42.943687999999995],[-73.49882099999999,42.943712],[-73.46446399999999,42.944258999999995],[-73.462299,42.944806],[-73.450593,42.944581],[-73.449326,42.945316999999996],[-73.449596,42.950748999999995],[-73.44744299999999,42.951972],[-73.443001,42.952895],[-73.43948999999999,42.954315],[-73.43316,42.958241],[-73.426845,42.958515],[-73.424921,42.955988999999995],[-73.420659,42.954902999999995],[-73.416349,42.956671],[-73.412103,42.957383],[-73.408213,42.956931999999995],[-73.403986,42.954871],[-73.404803,42.953205],[-73.40392,42.951757],[-73.39807499999999,42.953088],[-73.393596,42.953112999999995],[-73.389692,42.950587],[-73.388899,42.948237],[-73.38443099999999,42.947222],[-73.38264199999999,42.947801999999996],[-73.38017599999999,42.948035],[-73.378512,42.945319],[-73.37988899999999,42.94403],[-73.38018199999999,42.943795],[-73.380235,42.943739],[-73.368152,42.944047],[-73.35489,42.943993],[-73.348715,42.943967],[-73.274294,42.943652],[-73.274393,42.942482],[-73.27446599999999,42.940360999999996],[-73.27568087289839,42.901216306131396],[-73.275804,42.897248999999995]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36007","STATE":"36","COUNTY":"007","NAME":"Broome","LSAD":"County","CENSUSAREA":705.766},"geometry":{"type":"Polygon","coordinates":[[[-75.610316,41.99896],[-75.7317244108965,41.9979511856745],[-75.742217,41.997864],[-75.7625404568361,41.9980165129409],[-75.83334025537259,41.99854781455849],[-75.870677,41.998827999999996],[-75.9584074252567,41.9989937360666],[-75.98025,41.999035],[-75.983082,41.999035],[-75.9935630222134,41.999019887820495],[-76.0055167926729,41.999002652142394],[-76.0646850953256,41.9989173396612],[-76.10584,41.998858],[-76.105823,42.009651],[-76.106262,42.027905],[-76.106268,42.031174],[-76.104829,42.031568],[-76.105293,42.036228],[-76.106033,42.043683],[-76.106336,42.046586],[-76.10694,42.051959],[-76.108569,42.066342999999996],[-76.10892199999999,42.074331],[-76.108949,42.074574],[-76.108948,42.074751],[-76.110935,42.095331],[-76.11153399999999,42.101169999999996],[-76.10856199999999,42.101256],[-76.109461,42.112283999999995],[-76.111098,42.112292],[-76.11110599999999,42.112435999999995],[-76.11403299999999,42.153417999999995],[-76.115741,42.177071],[-76.11614999999999,42.18016],[-76.116225,42.18561],[-76.102,42.186203],[-76.086683,42.186858],[-76.087318,42.19361],[-76.084874,42.193639],[-76.085211,42.205464],[-76.086601,42.205476999999995],[-76.086608,42.207955],[-76.086671,42.212905],[-76.08256,42.213066],[-76.082854,42.218601],[-76.081088,42.218643],[-76.08111199999999,42.224886],[-76.081116,42.22761],[-76.081097,42.229394],[-76.08113399999999,42.230495],[-76.084499,42.230471],[-76.084688,42.234474],[-76.084705,42.234863],[-76.08649799999999,42.234863],[-76.086848,42.240297999999996],[-76.087197,42.244237],[-76.090594,42.244225],[-76.090908,42.249635999999995],[-76.096346,42.249521],[-76.096153,42.257509],[-76.080681,42.258084],[-76.081214,42.264711],[-76.082815,42.264742],[-76.083445,42.271812],[-76.08725199999999,42.271676],[-76.087728,42.278752],[-76.09186199999999,42.278653999999996],[-76.100612,42.278484],[-76.101226,42.287288],[-76.106582,42.287355999999996],[-76.106572,42.29353],[-76.098759,42.293653],[-76.099115,42.303398],[-76.101593,42.303328],[-76.10162199999999,42.310395],[-76.10625399999999,42.310345999999996],[-76.106394,42.318732],[-76.11240099999999,42.318602999999996],[-76.112427,42.326522999999995],[-76.116357,42.326566],[-76.116702,42.33723],[-76.109286,42.337325],[-76.109763,42.344913999999996],[-76.109912,42.347344],[-76.111403,42.347318],[-76.111942,42.357265999999996],[-76.114618,42.357284],[-76.114554,42.366971],[-76.122439,42.367187],[-76.12265,42.376867999999995],[-76.12285399999999,42.380787],[-76.120211,42.380738],[-76.122962,42.391901999999995],[-76.124467,42.392001],[-76.124521,42.402013],[-76.129673,42.402038],[-76.130181,42.410337],[-76.125637,42.410454],[-76.11796,42.410627999999996],[-76.108657,42.410830999999995],[-76.070292,42.411667],[-76.057633,42.411941],[-76.02223599999999,42.412760999999996],[-76.020978,42.410644],[-76.021374,42.409008],[-76.014612,42.40914],[-75.98656,42.409988999999996],[-75.97282299999999,42.410478999999995],[-75.962377,42.410917],[-75.94722999999999,42.411601999999995],[-75.933971,42.412129],[-75.91972299999999,42.4127],[-75.89833899999999,42.413858],[-75.884384,42.414556],[-75.882481,42.414649999999995],[-75.867507,42.415419],[-75.866193,42.415476999999996],[-75.86402,42.415701999999996],[-75.861874,42.393737],[-75.859275,42.380942],[-75.854243,42.356016],[-75.852063,42.345331],[-75.85085099999999,42.332550999999995],[-75.850388,42.327731],[-75.848269,42.306188],[-75.84787,42.302302],[-75.843792,42.259707],[-75.837004,42.245298999999996],[-75.836502,42.244282999999996],[-75.83631,42.244091],[-75.83352599999999,42.245211],[-75.82843,42.246075],[-75.82710999999999,42.247067],[-75.821046,42.248107],[-75.81979799999999,42.248987],[-75.795333,42.249148],[-75.78204699999999,42.249196999999995],[-75.77916499999999,42.249305],[-75.778436,42.249227999999995],[-75.77566,42.249235],[-75.747187,42.249204],[-75.737617,42.249286999999995],[-75.730257,42.249328999999996],[-75.722286,42.249341],[-75.722056,42.247735],[-75.714122,42.247789],[-75.710419,42.247814],[-75.703153,42.247862999999995],[-75.69739899999999,42.247901],[-75.67956,42.248062999999995],[-75.639055,42.248675],[-75.638299,42.248686],[-75.637373,42.236191],[-75.637525,42.233019],[-75.637058,42.212011],[-75.63710999999999,42.195628],[-75.61533,42.195479],[-75.600946,42.195468999999996],[-75.600668,42.195468999999996],[-75.60008599999999,42.195465999999996],[-75.5965,42.195453],[-75.57777999999999,42.195389999999996],[-75.532776,42.195240999999996],[-75.452872,42.195085],[-75.44019399999999,42.195111999999995],[-75.418421,42.195032],[-75.418544,42.189504],[-75.418689,42.188022],[-75.418438,42.186797],[-75.419203,42.168053],[-75.419664,42.150436],[-75.421009,42.113983],[-75.421613,42.087997],[-75.42219399999999,42.070240999999996],[-75.422347,42.058507999999996],[-75.422377,42.057604],[-75.422406,42.05679],[-75.42262199999999,42.055969999999995],[-75.422637,42.055913],[-75.42303799999999,42.054021999999996],[-75.420549,42.045369],[-75.42176599999999,42.041602999999995],[-75.41902999999999,42.038261],[-75.416226,42.036947],[-75.413201,42.033864],[-75.412232,42.031510999999995],[-75.410033,42.029827],[-75.408463,42.026309999999995],[-75.405807,42.017922],[-75.402791,42.014658999999995],[-75.40317399999999,42.012108],[-75.402239,42.010698999999995],[-75.400094,42.009434],[-75.39656099999999,42.006605],[-75.39437099999999,42.006353],[-75.390344,42.006816],[-75.38729599999999,42.004447],[-75.384699,42.003068],[-75.37922,42.002192],[-75.374618,42.003371],[-75.366959,42.008008],[-75.366249,42.008221],[-75.36388099999999,42.007832],[-75.362105,42.004901],[-75.362848,42.001739],[-75.359579,41.999445],[-75.4055294340894,41.999392943748504],[-75.431961,41.999362999999995],[-75.436216,41.999353],[-75.477144,41.999407],[-75.483738,41.999244],[-75.53882296950209,41.999120407184996],[-75.55307597628,41.9990884280581],[-75.608254662099,41.998964624974],[-75.60970562604209,41.9989613694813],[-75.610316,41.99896]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36015","STATE":"36","COUNTY":"015","NAME":"Chemung","LSAD":"County","CENSUSAREA":407.352},"geometry":{"type":"Polygon","coordinates":[[[-76.9657279732943,42.0012735436595],[-76.96592799999999,42.039077],[-76.965886,42.04371],[-76.965886,42.048846],[-76.965886,42.05345],[-76.965886,42.061042],[-76.965886,42.06997],[-76.965886,42.071856],[-76.965884,42.071874],[-76.96578199999999,42.07273],[-76.965786,42.076173999999995],[-76.965786,42.076746],[-76.965786,42.08761],[-76.965786,42.092273999999996],[-76.965689,42.120813],[-76.965852,42.123155],[-76.965901,42.123861],[-76.965977,42.125074],[-76.965954,42.125716],[-76.965965,42.125935999999996],[-76.965946,42.127077],[-76.965853,42.134135],[-76.965895,42.141653],[-76.966109,42.143460999999995],[-76.96609099999999,42.143547],[-76.96575399999999,42.144580999999995],[-76.965953,42.151821999999996],[-76.96573699999999,42.154694],[-76.965561,42.174588],[-76.96537599999999,42.199155999999995],[-76.965349,42.208026],[-76.96535,42.223583999999995],[-76.96584,42.250077],[-76.9655,42.261914999999995],[-76.96502799999999,42.278495],[-76.964761,42.28744],[-76.92627499999999,42.28933],[-76.91358,42.289956],[-76.908082,42.290227],[-76.90115,42.290569],[-76.90048999999999,42.290602],[-76.892864,42.290977],[-76.858441,42.292795999999996],[-76.85484199999999,42.293101],[-76.85095,42.293313999999995],[-76.848191,42.293268],[-76.846249,42.293355999999996],[-76.842907,42.293755999999995],[-76.80774799999999,42.294151],[-76.803428,42.294385999999996],[-76.791508,42.294314],[-76.78797,42.294339],[-76.782561,42.294422999999995],[-76.771069,42.29418],[-76.769577,42.294076],[-76.76483499999999,42.294297],[-76.762586,42.294115],[-76.745053,42.294001],[-76.73391199999999,42.29372],[-76.73310699999999,42.266821],[-76.732761,42.254093999999995],[-76.732677,42.248052],[-76.73056799999999,42.248064],[-76.728217,42.247963],[-76.685779,42.248332999999995],[-76.68566799999999,42.237677999999995],[-76.665358,42.237877],[-76.662498,42.237913],[-76.650787,42.23806],[-76.64811399999999,42.238094],[-76.642256,42.233720999999996],[-76.639369,42.235654],[-76.63364,42.239495],[-76.631095,42.241172],[-76.61953299999999,42.248664],[-76.619301,42.255257],[-76.61942599999999,42.262162],[-76.619438,42.262805],[-76.619503,42.266366],[-76.619303,42.282852999999996],[-76.579489,42.28259],[-76.548929,42.281832],[-76.538349,42.281755],[-76.535782,42.250074],[-76.535856,42.248687],[-76.536166,42.203599],[-76.536507,42.155403],[-76.542377,42.155522999999995],[-76.562732,42.155912],[-76.561674,42.154925],[-76.563133,42.154184],[-76.563565,42.152594],[-76.561746,42.149724],[-76.559386,42.148483999999996],[-76.557633,42.144661],[-76.55760699999999,42.141866],[-76.55667199999999,42.138982999999996],[-76.558618,42.136381],[-76.55811299999999,42.135011],[-76.554237,42.131467],[-76.559409,42.131251],[-76.556224,42.126683],[-76.555077,42.113135],[-76.553913,42.104383999999996],[-76.553912,42.104379],[-76.550573,42.079623999999995],[-76.547073,42.068878999999995],[-76.541726,42.051293],[-76.542541,42.049347],[-76.54755899999999,42.03881],[-76.548512,42.036783],[-76.553991,42.025134],[-76.560673,42.010833999999996],[-76.561303,42.009502999999995],[-76.558222,42.006232],[-76.557265,42.003448999999996],[-76.55762413688969,42.000148906120295],[-76.558118,42.000155],[-76.70165390486379,42.0013044441762],[-76.70570765942209,42.001336906887],[-76.7283643213311,42.0015183428009],[-76.7296185094173,42.0015283864147],[-76.7307568339931,42.0015375021865],[-76.749675,42.001689],[-76.7877673119525,42.001679793816095],[-76.815878,42.001673],[-76.835079,42.001773],[-76.901387354567,42.0017737736813],[-76.920784,42.001774],[-76.92188399999999,42.001674],[-76.937084,42.001674],[-76.942585,42.001574],[-76.96568599999999,42.001273999999995],[-76.9657279732943,42.0012735436595]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36019","STATE":"36","COUNTY":"019","NAME":"Clinton","LSAD":"County","CENSUSAREA":1037.852},"geometry":{"type":"Polygon","coordinates":[[[-73.361323,44.695369],[-73.361308,44.694523],[-73.365297,44.687546],[-73.370142,44.684853],[-73.36968499999999,44.683758],[-73.367414,44.681292],[-73.367209,44.678512999999995],[-73.37040901589201,44.6777022743243],[-73.371089,44.67753],[-73.371843,44.676956],[-73.37194401306449,44.6760095640239],[-73.37272,44.668738999999995],[-73.370065,44.666070999999995],[-73.369669,44.663478],[-73.37058999999999,44.662518],[-73.373063,44.662713],[-73.374134,44.66234],[-73.379074,44.656772],[-73.378968,44.65518],[-73.378014,44.653846],[-73.377973,44.652918],[-73.383157,44.645764],[-73.37856099999999,44.641475],[-73.37974799999999,44.64036],[-73.386783,44.636368999999995],[-73.387169,44.635542],[-73.3864312296218,44.6329290148338],[-73.385899,44.631043999999996],[-73.38649699999999,44.626923999999995],[-73.387346,44.623672],[-73.389966,44.61962],[-73.390231,44.618353],[-73.38982,44.61721],[-73.382932,44.612184],[-73.380726,44.605239],[-73.37684899999999,44.599598],[-73.37633199999999,44.597218],[-73.376806,44.595455],[-73.37789699999999,44.593848],[-73.38163999999999,44.590582999999995],[-73.38184799999999,44.589316],[-73.377794,44.585128],[-73.375666,44.582038],[-73.374389,44.575455],[-73.36727499999999,44.567544999999996],[-73.36160725692869,44.5636027365224],[-73.36008799999999,44.562546],[-73.356788,44.557918],[-73.355186,44.556917999999996],[-73.350027,44.555392],[-73.34293199999999,44.551907],[-73.338751,44.548046],[-73.33863,44.546844],[-73.33863044507319,44.5468424276295],[-73.400553,44.542359999999995],[-73.452562,44.538516],[-73.463838,44.537681],[-73.464946,44.536287],[-73.464134,44.535595],[-73.46497099999999,44.534068999999995],[-73.462879,44.533182],[-73.460977,44.529613999999995],[-73.463166,44.524736],[-73.459203,44.522714],[-73.45965,44.520046],[-73.462484,44.520123],[-73.463309,44.519058],[-73.465891,44.518986999999996],[-73.46719499999999,44.51819],[-73.468425,44.515668],[-73.471458,44.514035],[-73.47014,44.508661],[-73.47124699999999,44.507709999999996],[-73.475984,44.508094],[-73.479283,44.506857],[-73.47963,44.506692],[-73.480584,44.505182999999995],[-73.482232,44.503916],[-73.48316,44.501258],[-73.48518,44.500468],[-73.48832,44.49961],[-73.490585,44.497536],[-73.491309,44.49375],[-73.49425099999999,44.490791],[-73.495372,44.487446999999996],[-73.49660399999999,44.486081],[-73.500563,44.488476999999996],[-73.506721,44.487213],[-73.513041,44.487973],[-73.516455,44.488065999999996],[-73.517984,44.488651999999995],[-73.522536,44.492684],[-73.524413,44.493241],[-73.52345199999999,44.491482],[-73.524062,44.489798],[-73.526907,44.488028],[-73.535877,44.486543],[-73.54085599999999,44.486332999999995],[-73.54363099999999,44.485304],[-73.547562,44.482692],[-73.55118,44.48308],[-73.55497,44.482549],[-73.558723,44.479631],[-73.56088299999999,44.472491],[-73.564257,44.469139999999996],[-73.573099,44.464563999999996],[-73.575041,44.464293],[-73.580957,44.464489],[-73.586199,44.463136999999996],[-73.58975,44.461329],[-73.591414,44.461109],[-73.595715,44.463074999999996],[-73.596836,44.463108999999996],[-73.598914,44.460657999999995],[-73.60234899999999,44.458127999999995],[-73.60667,44.45653],[-73.614453,44.454386],[-73.620746,44.455943999999995],[-73.62546499999999,44.457643999999995],[-73.629049,44.458391],[-73.631432,44.457229999999996],[-73.63462,44.454555],[-73.638955,44.452552999999995],[-73.64627899999999,44.450582999999995],[-73.652481,44.449267],[-73.65503199999999,44.448024],[-73.658335,44.443887],[-73.670425,44.441289999999995],[-73.675889,44.441113],[-73.68118799999999,44.442231],[-73.685532,44.440846],[-73.68945699999999,44.440979999999996],[-73.694948,44.442426999999995],[-73.697113,44.442011],[-73.700375,44.440819],[-73.701105,44.445544],[-73.72205199999999,44.444317],[-73.748205,44.442813],[-73.749585,44.442464],[-73.839552,44.435503],[-73.90968699999999,44.429699],[-73.91078499999999,44.437146999999996],[-73.916691,44.476999],[-73.919378,44.495747],[-73.91993599999999,44.500046999999995],[-73.92024099999999,44.504462],[-73.92262,44.517821999999995],[-73.927686,44.546265],[-73.93292699999999,44.576197],[-73.94590000000001,44.574869],[-73.947346,44.583425],[-73.954578,44.632385],[-73.959255,44.663219],[-73.964411,44.697204],[-73.96614799999999,44.709118],[-73.98638199999999,44.707772999999996],[-73.99308599999999,44.757760999999995],[-73.99394199999999,44.764663],[-73.99757699999999,44.785028],[-73.999488,44.795516],[-73.999661,44.79792],[-74.005741,44.831590999999996],[-74.006692,44.836937999999996],[-74.006472,44.845012],[-74.005985,44.872572999999996],[-74.006328,44.879977],[-74.00666799999999,44.886016999999995],[-74.007943,44.895568],[-74.01570199999999,44.932148999999995],[-74.0273918752465,44.995765498918],[-73.9584110696443,44.99822934347169],[-73.874597,45.001222999999996],[-73.81525680431439,45.0022943050058],[-73.81156963696829,45.0023608717029],[-73.762985,45.003237999999996],[-73.67545799999999,45.002907],[-73.6520405848233,45.0032719552393],[-73.639718,45.003464],[-73.56023459348219,45.0057163578456],[-73.5193094554483,45.0068760723038],[-73.4526741232215,45.0087643483592],[-73.437371,45.009198],[-73.4002056554227,45.0098455059768],[-73.3886611092486,45.010046638583894],[-73.3674541712486,45.010416112330496],[-73.343124,45.010839999999995],[-73.34822388923259,44.9989017541974],[-73.350188,44.994304],[-73.35335542032409,44.990258966762894],[-73.35342899999999,44.990165],[-73.35463299999999,44.987352],[-73.354112,44.984061999999994],[-73.3537167558164,44.982960087586],[-73.352886,44.980644],[-73.350218,44.976222],[-73.34474,44.970468],[-73.338734,44.965886],[-73.33824299999999,44.964749999999995],[-73.33790599999999,44.960541],[-73.339603,44.943369999999994],[-73.338482,44.924112],[-73.338979,44.917680999999995],[-73.3395342002786,44.9168851346264],[-73.341106,44.914632],[-73.347837,44.911308999999996],[-73.353657,44.907346],[-73.356218,44.904492],[-73.35808,44.901325],[-73.360327,44.897236],[-73.362229,44.891462999999995],[-73.3630566734973,44.88824955275489],[-73.36645899999999,44.87504],[-73.369103,44.866679999999995],[-73.371967,44.862414],[-73.375709,44.860745],[-73.37982199999999,44.857037],[-73.38139699999999,44.848805],[-73.381359,44.845020999999996],[-73.379452,44.83801],[-73.378717,44.837357999999995],[-73.375345,44.836307],[-73.371329,44.830742],[-73.369647,44.829136],[-73.3680566215151,44.8280601203749],[-73.365678,44.826451],[-73.35808,44.82331],[-73.354945,44.8215],[-73.353472,44.820386],[-73.3502,44.816393999999995],[-73.335443,44.804601999999996],[-73.33443,44.802188],[-73.333933,44.7992],[-73.333154,44.788759],[-73.333771,44.785191999999995],[-73.335713,44.782086],[-73.34425399999999,44.776281999999995],[-73.347072,44.772988],[-73.348694,44.768246],[-73.35391933709289,44.7563052702748],[-73.354361,44.755296],[-73.357671,44.751017999999995],[-73.36379099999999,44.745253999999996],[-73.365561,44.741786],[-73.365068,44.725646],[-73.36556,44.700297],[-73.3649119487576,44.6995432599663],[-73.361323,44.695369]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36021","STATE":"36","COUNTY":"021","NAME":"Columbia","LSAD":"County","CENSUSAREA":634.705},"geometry":{"type":"Polygon","coordinates":[[[-73.50814199999999,42.086256999999996],[-73.5030419422981,42.069692114015],[-73.49687899999999,42.049675],[-73.521416,42.049966],[-73.523584,42.026267],[-73.524317,42.018254],[-73.524706,42.014],[-73.52707199999999,41.977979999999995],[-73.53089299999999,41.978487],[-73.533414,41.978834],[-73.539639,41.979696],[-73.541823,41.979886],[-73.55604799999999,41.981756],[-73.642191,41.995016],[-73.657333,41.997577],[-73.67232299999999,42.000091],[-73.67607799999999,42.000434999999996],[-73.71092999999999,42.005488],[-73.733797,42.014725],[-73.736256,42.015707],[-73.755669,42.023483],[-73.790893,42.036808],[-73.806755,42.042559],[-73.817151,42.046251999999996],[-73.817443,42.046344999999995],[-73.818533,42.046738999999995],[-73.844999,42.056687],[-73.867712,42.065205999999996],[-73.87087799999999,42.066244999999995],[-73.895522,42.075263],[-73.895994,42.075438],[-73.90778499999999,42.079609999999995],[-73.908633,42.07841],[-73.915593,42.080906],[-73.917098,42.076474],[-73.92143999999999,42.077299],[-73.929626,42.078778],[-73.929114,42.081658],[-73.926682,42.090298],[-73.924729,42.095417999999995],[-73.923273,42.10217],[-73.922553,42.106649999999995],[-73.921465,42.110025],[-73.91887299999999,42.114137],[-73.91532099999999,42.121337],[-73.910675,42.127292999999995],[-73.907007,42.133798999999996],[-73.90241499999999,42.139859],[-73.900226,42.144864],[-73.89815399999999,42.151714999999996],[-73.89384199999999,42.15692],[-73.893137,42.158814],[-73.89260399999999,42.163447],[-73.893014,42.165566999999996],[-73.891127,42.168912],[-73.888896,42.169844999999995],[-73.885485,42.169996999999995],[-73.88262499999999,42.170260999999996],[-73.87845399999999,42.173161],[-73.87476099999999,42.173916],[-73.863877,42.182462],[-73.85874199999999,42.187601],[-73.855021,42.192014],[-73.85360899999999,42.195633],[-73.852769,42.197787999999996],[-73.851084,42.203091],[-73.850385,42.206719],[-73.849473,42.20964],[-73.851286,42.220611999999996],[-73.850493,42.223464],[-73.849203,42.227776999999996],[-73.847813,42.230346999999995],[-73.84193499999999,42.235631],[-73.83855,42.238440999999995],[-73.835206,42.24208],[-73.829449,42.245681],[-73.82526,42.245540999999996],[-73.82298999999999,42.246156],[-73.819,42.248467999999995],[-73.815238,42.250803999999995],[-73.80897399999999,42.251646],[-73.802996,42.253654999999995],[-73.799588,42.256468999999996],[-73.79525699999999,42.261106],[-73.7932,42.263042999999996],[-73.79283099999999,42.263473],[-73.788235,42.269832],[-73.784116,42.280465],[-73.783467,42.285999],[-73.783326,42.288356],[-73.782988,42.292918],[-73.781767,42.298339],[-73.781483,42.299923],[-73.780996,42.301835],[-73.780551,42.305687999999996],[-73.781003,42.308447],[-73.782111,42.310756],[-73.783013,42.317555],[-73.784289,42.320083],[-73.782406,42.32497],[-73.78295,42.33036],[-73.787353,42.342621],[-73.78737,42.342679],[-73.787764,42.344428],[-73.78799,42.345364],[-73.789817,42.350805],[-73.79326,42.356186],[-73.790528,42.361427],[-73.791466,42.369445999999996],[-73.791792,42.371213999999995],[-73.794327,42.375084],[-73.79432299999999,42.376822],[-73.792716,42.385906999999996],[-73.791456,42.388413],[-73.788201,42.394241],[-73.786609,42.399186],[-73.784639,42.407312],[-73.78328499999999,42.410412],[-73.77776399999999,42.424766999999996],[-73.775817,42.429938],[-73.774451,42.435269],[-73.77367,42.44404],[-73.773974,42.450556],[-73.776663,42.452602999999996],[-73.77599,42.454141],[-73.777172,42.455293999999995],[-73.778322,42.458048999999995],[-73.778322,42.460682],[-73.775492,42.460221999999995],[-73.776055,42.461631],[-73.77849599999999,42.463291999999996],[-73.783721,42.464231],[-73.737797,42.468714999999996],[-73.71799,42.470751],[-73.69867599999999,42.472736],[-73.690952,42.473531],[-73.690862,42.47354],[-73.689657,42.473690999999995],[-73.687049,42.473956],[-73.68472899999999,42.474194],[-73.659446,42.476786],[-73.657862,42.476948],[-73.65046199999999,42.477706999999995],[-73.63157199999999,42.479593],[-73.62540299999999,42.480261999999996],[-73.624561,42.480363],[-73.624194,42.480398],[-73.608064,42.482006],[-73.577236,42.485138],[-73.554397,42.488163],[-73.54616,42.489143],[-73.541521,42.489703],[-73.528157,42.491363],[-73.526164,42.491569999999996],[-73.52069,42.492207],[-73.50846299999999,42.493731],[-73.49989599999999,42.494758],[-73.497631,42.495241],[-73.46248299999999,42.498793],[-73.396456,42.50577],[-73.378924,42.507633],[-73.352527,42.510002],[-73.3820928961709,42.4294930473095],[-73.38867066531878,42.4115815555665],[-73.39154084534601,42.4037659565842],[-73.4119754261193,42.348121889946896],[-73.4140751008963,42.342404403275495],[-73.4314003439404,42.295227170272895],[-73.4428917594207,42.2639356504791],[-73.47591804393001,42.1740039412646],[-73.4971652546362,42.1161470553557],[-73.50814199999999,42.086256999999996]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36023","STATE":"36","COUNTY":"023","NAME":"Cortland","LSAD":"County","CENSUSAREA":498.76},"geometry":{"type":"Polygon","coordinates":[[[-76.26558399999999,42.623588],[-76.265619,42.62507],[-76.26561099999999,42.625447],[-76.265813,42.628665],[-76.26667599999999,42.642441999999996],[-76.266993,42.647473],[-76.270012,42.698333999999996],[-76.270062,42.699162],[-76.272246,42.735135],[-76.272532,42.739702],[-76.273337,42.752300000000005],[-76.27467299999999,42.771257],[-76.267704,42.771445],[-76.195944,42.77473],[-76.191065,42.774957],[-76.177769,42.775574999999996],[-76.171026,42.775889],[-76.154941,42.77664],[-76.12700000000001,42.777919],[-76.080213,42.780014],[-76.080178,42.780432],[-76.08017,42.781599],[-76.053749,42.782685],[-76.051401,42.782782],[-76.05088099999999,42.782827999999995],[-76.01229099999999,42.784574],[-76.005195,42.784870999999995],[-75.939741,42.78839],[-75.926878,42.789125],[-75.896079,42.790963999999995],[-75.893147,42.762226999999996],[-75.892539,42.755716],[-75.892327,42.754079],[-75.889832,42.723844],[-75.883843,42.655634],[-75.883242,42.648534999999995],[-75.882325,42.637695],[-75.879245,42.601869],[-75.87715899999999,42.575737],[-75.876329,42.5659],[-75.874224,42.542716],[-75.86968,42.490218],[-75.866573,42.447703],[-75.866224,42.442391],[-75.865552,42.432168999999995],[-75.86515899999999,42.426165999999995],[-75.86402,42.415701999999996],[-75.866193,42.415476999999996],[-75.867507,42.415419],[-75.882481,42.414649999999995],[-75.884384,42.414556],[-75.89833899999999,42.413858],[-75.91972299999999,42.4127],[-75.933971,42.412129],[-75.94722999999999,42.411601999999995],[-75.962377,42.410917],[-75.97282299999999,42.410478999999995],[-75.98656,42.409988999999996],[-76.014612,42.40914],[-76.021374,42.409008],[-76.020978,42.410644],[-76.02223599999999,42.412760999999996],[-76.057633,42.411941],[-76.070292,42.411667],[-76.108657,42.410830999999995],[-76.11796,42.410627999999996],[-76.125637,42.410454],[-76.130181,42.410337],[-76.13262499999999,42.410283],[-76.132738,42.410281],[-76.139922,42.410123999999996],[-76.157659,42.409735],[-76.171115,42.409441],[-76.18466699999999,42.409144],[-76.189943,42.409028],[-76.21323699999999,42.408553],[-76.22318899999999,42.408324],[-76.253359,42.407568],[-76.253877,42.416140999999996],[-76.255197,42.437912999999995],[-76.2568,42.465582999999995],[-76.25728699999999,42.474146],[-76.25752899999999,42.478204999999996],[-76.258062,42.487114999999996],[-76.25905999999999,42.500071],[-76.259112,42.502776999999995],[-76.260694,42.532894],[-76.261009,42.538218],[-76.26095699999999,42.540636],[-76.26097,42.541328],[-76.26133399999999,42.547824],[-76.261481,42.550453],[-76.261663,42.553703],[-76.262315,42.565362],[-76.262822,42.574411],[-76.263195,42.581064],[-76.26320799999999,42.581298],[-76.263583,42.587962999999995],[-76.26558399999999,42.623588]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36027","STATE":"36","COUNTY":"027","NAME":"Dutchess","LSAD":"County","CENSUSAREA":795.63},"geometry":{"type":"Polygon","coordinates":[[[-73.530067,41.527194],[-73.560811,41.526637],[-73.580153,41.526382],[-73.603169,41.523993],[-73.604342,41.523874],[-73.6205,41.521994],[-73.621968,41.521831],[-73.638376,41.519546],[-73.641868,41.519045999999996],[-73.644727,41.518716],[-73.645669,41.518578999999995],[-73.647635,41.518293],[-73.67328499999999,41.514700999999995],[-73.681501,41.513619999999996],[-73.683849,41.513306],[-73.68607899999999,41.513000999999996],[-73.71533699999999,41.510048999999995],[-73.742474,41.507546999999995],[-73.764844,41.505179],[-73.77068,41.504413],[-73.79553,41.502271],[-73.800061,41.501762],[-73.81327399999999,41.500574],[-73.81451799999999,41.500457],[-73.820807,41.499814],[-73.835786,41.498431],[-73.837062,41.498263],[-73.838363,41.498126],[-73.855419,41.496348999999995],[-73.85636,41.496224],[-73.859995,41.495740999999995],[-73.87458,41.495073],[-73.897755,41.49277],[-73.90188599999999,41.492385999999996],[-73.902722,41.492315],[-73.907533,41.490975],[-73.918758,41.489782999999996],[-73.933775,41.488279],[-73.93852,41.483433999999995],[-73.975855,41.444885],[-73.977924,41.442757],[-73.978588,41.442119],[-73.98148599999999,41.438905],[-73.986583,41.444893],[-73.994832,41.450268],[-73.997784,41.452193],[-74.000108,41.456548999999995],[-73.998898,41.462984],[-73.997584,41.475093],[-73.998584,41.483393],[-73.997609,41.487212],[-73.995029,41.497332],[-73.994784,41.498293],[-73.99554599999999,41.499437],[-73.997075,41.50172],[-73.997884,41.505685],[-73.99725,41.509769],[-73.99718399999999,41.513393],[-73.997484,41.516493],[-73.997182,41.51938],[-73.99568599999999,41.524649],[-73.994964,41.526379999999996],[-73.994547,41.527138],[-73.992949,41.529821],[-73.987866,41.542789],[-73.984618,41.547216],[-73.982805,41.549195],[-73.979933,41.55235],[-73.97788899999999,41.555234],[-73.974532,41.558651999999995],[-73.972707,41.560356],[-73.96917599999999,41.562925],[-73.964781,41.565311],[-73.959467,41.571442999999995],[-73.956831,41.576656],[-73.954725,41.58179],[-73.954146,41.583270999999996],[-73.953307,41.589977],[-73.953282,41.590193],[-73.95258199999999,41.595293],[-73.952274,41.609154],[-73.95208199999999,41.613993],[-73.95258199999999,41.625192999999996],[-73.951482,41.627693],[-73.950644,41.632639],[-73.948782,41.642193],[-73.948982,41.644793],[-73.948182,41.652493],[-73.946882,41.656393],[-73.94721799999999,41.660087999999995],[-73.94738199999999,41.667493],[-73.94703299999999,41.668825999999996],[-73.945182,41.675892999999995],[-73.943282,41.679393],[-73.942482,41.684093],[-73.943482,41.690293],[-73.945782,41.695592999999995],[-73.946682,41.699396],[-73.946078,41.702825999999995],[-73.945672,41.705663],[-73.944971,41.710581999999995],[-73.944435,41.714634],[-73.942301,41.725789],[-73.94207999999999,41.727036],[-73.941081,41.732693],[-73.941081,41.735993],[-73.941741,41.739021],[-73.941503,41.743004],[-73.940989,41.755741],[-73.943514,41.759979],[-73.946589,41.763677],[-73.95068599999999,41.768829],[-73.95161399999999,41.770621],[-73.952446,41.787965],[-73.951982,41.790476999999996],[-73.95201399999999,41.791581],[-73.949597,41.800125],[-73.94935699999999,41.811341],[-73.948452,41.816642],[-73.949741,41.821211999999996],[-73.948685,41.828331999999996],[-73.949789,41.836971999999996],[-73.949373,41.843916],[-73.948477,41.8507],[-73.946589,41.854236],[-73.94193299999999,41.859244],[-73.940973,41.860668],[-73.93938899999999,41.865852],[-73.940317,41.872748],[-73.941885,41.8763],[-73.94630099999999,41.883004],[-73.954301,41.891436],[-73.955213,41.892908],[-73.96082899999999,41.899052],[-73.961835,41.900507999999995],[-73.96278099999999,41.90582],[-73.96418899999999,41.910156],[-73.964237,41.913916],[-73.961101,41.918316],[-73.95830099999999,41.920331999999995],[-73.957938,41.92198],[-73.957421,41.926572],[-73.955597,41.936188],[-73.954205,41.950812],[-73.953709,41.952748],[-73.952829,41.957066999999995],[-73.95087699999999,41.962427999999996],[-73.950076,41.965756],[-73.947212,41.973372],[-73.94584499999999,41.977646],[-73.94506799999999,41.979707999999995],[-73.944636,41.981276],[-73.943615,41.984884],[-73.943336,41.985534],[-73.94201199999999,41.991291],[-73.940412,41.994347],[-73.939964,41.999403],[-73.936796,42.006651],[-73.934315,42.012778999999995],[-73.933435,42.015659],[-73.933323,42.018491],[-73.93463899999999,42.023303999999996],[-73.937035,42.026827],[-73.93717099999999,42.030268],[-73.93669899999999,42.034698999999996],[-73.93417099999999,42.039547],[-73.934395,42.044747],[-73.932763,42.055034],[-73.93287699999999,42.059943],[-73.932282,42.061578],[-73.928234,42.064873999999996],[-73.928314,42.066778],[-73.92729,42.066857999999996],[-73.926346,42.072506],[-73.929754,42.075306],[-73.929688,42.078421999999996],[-73.929626,42.078778],[-73.92143999999999,42.077299],[-73.917098,42.076474],[-73.915593,42.080906],[-73.908633,42.07841],[-73.90778499999999,42.079609999999995],[-73.895994,42.075438],[-73.895522,42.075263],[-73.87087799999999,42.066244999999995],[-73.867712,42.065205999999996],[-73.844999,42.056687],[-73.818533,42.046738999999995],[-73.817443,42.046344999999995],[-73.817151,42.046251999999996],[-73.806755,42.042559],[-73.790893,42.036808],[-73.755669,42.023483],[-73.736256,42.015707],[-73.733797,42.014725],[-73.71092999999999,42.005488],[-73.67607799999999,42.000434999999996],[-73.67232299999999,42.000091],[-73.657333,41.997577],[-73.642191,41.995016],[-73.55604799999999,41.981756],[-73.541823,41.979886],[-73.539639,41.979696],[-73.533414,41.978834],[-73.53089299999999,41.978487],[-73.52707199999999,41.977979999999995],[-73.524706,42.014],[-73.524317,42.018254],[-73.523584,42.026267],[-73.521416,42.049966],[-73.49687899999999,42.049675],[-73.487314,42.049638],[-73.48822382860538,42.0300472272559],[-73.489615,42.000091999999995],[-73.492975,41.958524],[-73.49299756431981,41.9582943928004],[-73.496527,41.92238],[-73.49830399999999,41.892508],[-73.49945941077151,41.8818986289734],[-73.5009108171378,41.868571326657005],[-73.501984,41.858717],[-73.504944,41.824284999999996],[-73.5049921230769,41.823900015384595],[-73.505008,41.823772999999996],[-73.510961,41.758748999999995],[-73.5115449368014,41.747916972334295],[-73.511921,41.740941],[-73.516785,41.687581],[-73.5179500508434,41.670860790123],[-73.51978394326939,41.644541710207896],[-73.520017,41.641197],[-73.521041,41.619772999999995],[-73.52134999009431,41.6166037119497],[-73.5274209249815,41.5543345915292],[-73.530067,41.527194]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36033","STATE":"36","COUNTY":"033","NAME":"Franklin","LSAD":"County","CENSUSAREA":1629.119},"geometry":{"type":"Polygon","coordinates":[[[-74.72622806320749,44.994863072200594],[-74.722574,44.998062],[-74.702018,45.003322],[-74.683973,44.99969],[-74.678428,45.000046999999995],[-74.673047,45.000941999999995],[-74.6673382420986,45.0016479002814],[-74.661478,44.999592],[-74.6470419812019,44.999477367294595],[-74.63780811085019,44.9994040435095],[-74.57163594769101,44.998878587413],[-74.54902,44.998698999999995],[-74.5080331914525,44.9979521969631],[-74.45752999999999,44.997032],[-74.44185363593259,44.996375070320504],[-74.42484531530368,44.995662324011896],[-74.3720249067643,44.9934488455608],[-74.3428134722486,44.9922247187012],[-74.335184,44.991904999999996],[-74.2430770414636,44.9921264986039],[-74.23413599999999,44.992148],[-74.2022634398789,44.9919114797765],[-74.14681399999999,44.9915],[-74.1446962015614,44.991575643160495],[-74.0857659111866,44.993680505139395],[-74.0273918752465,44.995765498918],[-74.01570199999999,44.932148999999995],[-74.007943,44.895568],[-74.00666799999999,44.886016999999995],[-74.006328,44.879977],[-74.005985,44.872572999999996],[-74.006472,44.845012],[-74.006692,44.836937999999996],[-74.005741,44.831590999999996],[-73.999661,44.79792],[-73.999488,44.795516],[-73.99757699999999,44.785028],[-73.99394199999999,44.764663],[-73.99308599999999,44.757760999999995],[-73.98638199999999,44.707772999999996],[-73.96614799999999,44.709118],[-73.964411,44.697204],[-73.959255,44.663219],[-73.954578,44.632385],[-73.947346,44.583425],[-73.94590000000001,44.574869],[-73.93292699999999,44.576197],[-73.927686,44.546265],[-73.92262,44.517821999999995],[-73.92024099999999,44.504462],[-73.91993599999999,44.500046999999995],[-73.919378,44.495747],[-73.916691,44.476999],[-73.91078499999999,44.437146999999996],[-73.90968699999999,44.429699],[-74.141424,44.407267999999995],[-74.13091399999999,44.347705999999995],[-74.128889,44.336856999999995],[-74.128346,44.33414],[-74.128002,44.332425],[-74.127657,44.3307],[-74.12756,44.330211],[-74.126718,44.326346],[-74.12404099999999,44.314777],[-74.122265,44.306948],[-74.12111999999999,44.299675],[-74.115775,44.261278999999995],[-74.113175,44.243027],[-74.09349,44.137615],[-74.22004,44.126014999999995],[-74.227688,44.125059],[-74.28187,44.120551999999996],[-74.374607,44.112252],[-74.38486499999999,44.111567],[-74.535156,44.09925],[-74.54363,44.162883],[-74.544487,44.169413999999996],[-74.525683,44.170635999999995],[-74.53222699999999,44.219522999999995],[-74.533879,44.231787],[-74.5535,44.351887],[-74.557047,44.372937],[-74.557124,44.375384],[-74.55863,44.385141999999995],[-74.571215,44.470241],[-74.57542,44.498487],[-74.602938,44.67662],[-74.60457199999999,44.68647],[-74.607362,44.703708],[-74.60967,44.718621],[-74.612561,44.739967],[-74.61331799999999,44.74575],[-74.614223,44.752373999999996],[-74.617402,44.774552],[-74.619912,44.792791],[-74.622615,44.812765999999996],[-74.62294,44.815154],[-74.62623599999999,44.838505999999995],[-74.62928,44.861135999999995],[-74.63047999999999,44.869392999999995],[-74.63121,44.875391],[-74.639191,44.933322],[-74.64187199999999,44.952621],[-74.667773,44.95277],[-74.668382,44.952777],[-74.689482,44.9529],[-74.71113199999999,44.953008],[-74.72030699999999,44.953011],[-74.72381299999999,44.97654],[-74.72388099999999,44.977049],[-74.72622806320749,44.994863072200594]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36035","STATE":"36","COUNTY":"035","NAME":"Fulton","LSAD":"County","CENSUSAREA":495.469},"geometry":{"type":"Polygon","coordinates":[[[-74.097467,42.982934],[-74.104978,42.982847],[-74.105581,42.982898999999996],[-74.10599599999999,42.982897],[-74.112479,42.982817999999995],[-74.143346,42.983033999999996],[-74.14894199999999,42.983061],[-74.150475,42.983115],[-74.162629,42.983259],[-74.166553,42.983166999999995],[-74.18039499999999,42.983444999999996],[-74.188194,42.983352],[-74.211169,42.983622],[-74.23232999999999,42.983823],[-74.247107,42.983981],[-74.253581,42.984128],[-74.268592,42.984322],[-74.289304,42.984415],[-74.363631,42.984593],[-74.36535099999999,42.98464],[-74.374256,42.984617],[-74.388365,42.984569],[-74.410836,42.984736],[-74.41538899999999,42.984736],[-74.416507,42.98475],[-74.426847,42.98479],[-74.429417,42.984732],[-74.488844,42.985118],[-74.49113,42.985088999999995],[-74.50313899999999,42.985302],[-74.510181,42.985321],[-74.52571999999999,42.985318],[-74.53397799999999,42.985397],[-74.535618,42.985371],[-74.538138,42.98538],[-74.542367,42.98553],[-74.560242,42.990362999999995],[-74.560932,42.990558],[-74.572141,42.99373],[-74.58228,42.996700000000004],[-74.60413799999999,43.003228],[-74.606611,43.003979],[-74.638303,43.012783],[-74.66094799999999,43.019315],[-74.715237,43.034732999999996],[-74.726862,43.038014],[-74.749578,43.044841999999996],[-74.759895,43.047422999999995],[-74.761861,43.049782],[-74.763239,43.053096],[-74.763786,43.056847999999995],[-74.761889,43.059199],[-74.769843,43.065683],[-74.770127,43.068652],[-74.769364,43.072275999999995],[-74.77015899999999,43.074901],[-74.774199,43.078472],[-74.774233,43.082269],[-74.77373399999999,43.083375],[-74.769939,43.085733],[-74.770194,43.087917],[-74.767466,43.088901],[-74.765815,43.090132],[-74.766031,43.091615],[-74.769678,43.101616],[-74.768427,43.102637],[-74.769633,43.105478],[-74.767517,43.109317999999995],[-74.77015,43.112505],[-74.769198,43.114089],[-74.766474,43.114656],[-74.75902099999999,43.113924],[-74.75703899999999,43.11687],[-74.758698,43.118038],[-74.75894799999999,43.119561999999995],[-74.75612,43.119668999999995],[-74.750652,43.120509999999996],[-74.747079,43.12199],[-74.743492,43.119935],[-74.739729,43.120191],[-74.738475,43.121589],[-74.739555,43.123118],[-74.738328,43.124359999999996],[-74.735676,43.124838],[-74.733074,43.124635],[-74.73148499999999,43.123604],[-74.728444,43.125167999999995],[-74.72825399999999,43.126709],[-74.730144,43.128492],[-74.730999,43.130948],[-74.73293,43.133388],[-74.731704,43.136818999999996],[-74.735514,43.142004],[-74.73398399999999,43.144228999999996],[-74.726248,43.145599],[-74.723074,43.145337],[-74.71982299999999,43.148309999999995],[-74.708088,43.149671],[-74.7085,43.151049],[-74.710663,43.151872999999995],[-74.711647,43.153413],[-74.709745,43.154543],[-74.709977,43.156082999999995],[-74.71221299999999,43.156389999999995],[-74.71835999999999,43.160506],[-74.718244,43.163567],[-74.71759,43.165289],[-74.71360299999999,43.16778],[-74.712665,43.170195],[-74.71010199999999,43.171003],[-74.708235,43.172533],[-74.706499,43.173016],[-74.702375,43.172668],[-74.702288,43.171293],[-74.700919,43.17217],[-74.696828,43.173387],[-74.69600299999999,43.177862],[-74.696213,43.179905],[-74.70764799999999,43.247419],[-74.707698,43.250068999999996],[-74.712615,43.286142999999996],[-74.713005,43.289003],[-74.70534599999999,43.286394],[-74.534657,43.228114999999995],[-74.528213,43.228854999999996],[-74.516689,43.229538999999995],[-74.457719,43.232884999999996],[-74.357019,43.239604],[-74.345961,43.240759],[-74.33917,43.240812],[-74.32637799999999,43.241634999999995],[-74.322704,43.216923],[-74.322375,43.214684],[-74.29270199999999,43.216609],[-74.220902,43.221402999999995],[-74.224215,43.248165],[-74.20975899999999,43.249261999999995],[-74.2068,43.249545999999995],[-74.200664,43.249894],[-74.19615499999999,43.250195],[-74.160139,43.252629],[-74.140147,43.253979],[-74.136026,43.228831],[-74.134902,43.221568],[-74.13391299999999,43.215472999999996],[-74.132605,43.206631],[-74.131214,43.197779999999995],[-74.129465,43.187650999999995],[-74.12838599999999,43.179759],[-74.12740099999999,43.173227],[-74.127061,43.171025],[-74.126081,43.164674999999995],[-74.124335,43.1539],[-74.12343,43.148218],[-74.12272899999999,43.143729],[-74.11522,43.095813],[-74.114277,43.089709],[-74.11062,43.066753],[-74.11031799999999,43.064868],[-74.109915,43.062356],[-74.109152,43.057553],[-74.106543,43.040986],[-74.10347399999999,43.020886999999995],[-74.10316,43.019346999999996],[-74.10206,43.011558],[-74.101862,43.010918],[-74.101751,43.010323],[-74.101148,43.006356],[-74.097467,42.982934]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36037","STATE":"36","COUNTY":"037","NAME":"Genesee","LSAD":"County","CENSUSAREA":492.936},"geometry":{"type":"Polygon","coordinates":[[[-78.464381,42.867461],[-78.464202,42.878056],[-78.46394599999999,42.893781],[-78.463855,42.899909],[-78.463887,42.924324999999996],[-78.464051,42.938289],[-78.464231,42.954555],[-78.464325,42.956621],[-78.464314,42.965469],[-78.46385,42.985741999999995],[-78.463544,42.997955999999995],[-78.46338,43.002158],[-78.463229,43.006479],[-78.463053,43.013363999999996],[-78.463484,43.032990999999996],[-78.463838,43.041891],[-78.46424499999999,43.064958],[-78.464449,43.088702999999995],[-78.464306,43.091514],[-78.464962,43.117340999999996],[-78.465505,43.128619],[-78.443874,43.129458],[-78.410876,43.130643],[-78.390405,43.130570999999996],[-78.34051199999999,43.130803],[-78.310512,43.131295],[-78.310181,43.131284],[-78.309708,43.131313],[-78.307676,43.131325],[-78.298703,43.131166],[-78.251949,43.131341],[-78.237323,43.13163],[-78.23451,43.131617],[-78.207509,43.13166],[-78.19327,43.131823999999995],[-78.16510199999999,43.132231],[-78.115471,43.132397999999995],[-78.115505,43.131516999999995],[-78.111082,43.131496],[-78.09879699999999,43.131395999999995],[-78.078274,43.131415],[-78.065797,43.131349],[-78.048129,43.131493],[-78.031587,43.131918999999996],[-78.027226,43.132059999999996],[-78.02376799999999,43.132188],[-78.016842,43.132419],[-77.99728999999999,43.132981],[-77.9888,43.133106999999995],[-77.98730599999999,43.132838],[-77.93936099999999,43.132946],[-77.921799,43.133269],[-77.90980499999999,43.133489999999995],[-77.905934,43.133561],[-77.90812199999999,43.129335],[-77.909266,43.126852],[-77.915093,43.114532],[-77.923828,43.096101999999995],[-77.928513,43.086214999999996],[-77.934152,43.074238],[-77.948233,43.045161],[-77.951044,43.039544],[-77.92578,43.038204],[-77.908666,43.037265999999995],[-77.904121,43.037056],[-77.904799,43.025169],[-77.90570699999999,43.023058999999996],[-77.907364,43.006447],[-77.90754,43.002859],[-77.909414,43.00252],[-77.909632,42.994524],[-77.909748,42.990497],[-77.909832,42.987762],[-77.910044,42.978474999999996],[-77.910305,42.969193999999995],[-77.911413,42.945063999999995],[-77.934234,42.94558],[-77.934739,42.925014999999995],[-77.934877,42.919433999999995],[-77.93522999999999,42.905260999999996],[-77.94060999999999,42.90542],[-77.95553,42.905861],[-77.95535,42.894738],[-77.955275,42.890161],[-77.95496399999999,42.862753999999995],[-77.979902,42.863011],[-77.993372,42.863247],[-77.995262,42.863181],[-77.995362,42.864993],[-78.009528,42.864914],[-78.048599,42.864328],[-78.05228,42.864050999999996],[-78.07416099999999,42.863743],[-78.07417099999999,42.870188],[-78.09856599999999,42.870007],[-78.09895,42.870006],[-78.11453399999999,42.870152],[-78.125328,42.870025],[-78.131236,42.870101],[-78.133468,42.870142],[-78.14778299999999,42.870196],[-78.17880000000001,42.870314],[-78.191396,42.870335999999995],[-78.259873,42.869602],[-78.26119299999999,42.869538],[-78.265975,42.869429],[-78.273729,42.869416],[-78.277461,42.869426999999995],[-78.278931,42.869409999999995],[-78.28487799999999,42.869524],[-78.289197,42.869642999999996],[-78.29537599999999,42.869763],[-78.303899,42.869865999999995],[-78.305584,42.869886],[-78.307312,42.869853],[-78.322036,42.869659999999996],[-78.351964,42.869119999999995],[-78.365071,42.868884],[-78.376603,42.868683],[-78.387891,42.868488],[-78.410015,42.868123999999995],[-78.432283,42.867905],[-78.445262,42.867723999999995],[-78.448167,42.867683],[-78.464381,42.867461]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36039","STATE":"36","COUNTY":"039","NAME":"Greene","LSAD":"County","CENSUSAREA":647.161},"geometry":{"type":"Polygon","coordinates":[[[-74.451713,42.169225],[-74.45561599999999,42.170691],[-74.495635,42.185722999999996],[-74.499596,42.186914],[-74.53730999999999,42.201423999999996],[-74.511284,42.236697],[-74.48606,42.270902],[-74.485406,42.271788],[-74.479683,42.279548],[-74.47870999999999,42.280868],[-74.476207,42.284262],[-74.46951299999999,42.293321],[-74.438647,42.334967999999996],[-74.428196,42.349075],[-74.436812,42.352477],[-74.438418,42.352973999999996],[-74.443506,42.355017],[-74.438155,42.35658],[-74.43181,42.358436],[-74.41895099999999,42.362193999999995],[-74.383969,42.372565],[-74.37905099999999,42.373872999999996],[-74.37831899999999,42.372487],[-74.376179,42.370655],[-74.371723,42.370145],[-74.36688199999999,42.367971],[-74.362976,42.36728],[-74.356697,42.364242999999995],[-74.355323,42.361142],[-74.351969,42.360279999999996],[-74.348139,42.357997],[-74.346087,42.355691],[-74.340968,42.358478999999996],[-74.337012,42.358281999999996],[-74.332793,42.35715],[-74.329364,42.357375],[-74.324843,42.359834],[-74.320965,42.360661],[-74.318938,42.360554],[-74.31258199999999,42.35709],[-74.30854599999999,42.359817],[-74.303797,42.36101],[-74.29946799999999,42.362575],[-74.29300099999999,42.36121],[-74.284033,42.361761],[-74.281931,42.362773],[-74.276645,42.363349],[-74.273474,42.365032],[-74.27024,42.367528],[-74.266496,42.37343],[-74.258911,42.379151],[-74.25506,42.379824],[-74.246454,42.378851999999995],[-74.244692,42.377159],[-74.245195,42.378799],[-74.25426999999999,42.408102],[-74.254303,42.408207],[-74.240915,42.409712],[-74.232356,42.410663],[-74.225652,42.411408],[-74.20147,42.414093],[-74.19818599999999,42.414452999999995],[-74.194807,42.414823999999996],[-74.17542399999999,42.416955],[-74.157859,42.418932999999996],[-74.149656,42.419995],[-74.130067,42.422515],[-74.126442,42.422984],[-74.117311,42.423608],[-74.090671,42.426834],[-74.084058,42.427642999999996],[-74.028744,42.434501999999995],[-74.01755299999999,42.435795],[-73.995803,42.438289999999995],[-73.963792,42.441621999999995],[-73.948003,42.443204],[-73.93325999999999,42.444814],[-73.93069899999999,42.445192],[-73.903599,42.448999],[-73.892771,42.45055],[-73.876035,42.452881],[-73.86559,42.454372],[-73.854061,42.456097],[-73.839491,42.458186999999995],[-73.81244199999999,42.461179],[-73.80941399999999,42.461501],[-73.809251,42.461518999999996],[-73.808021,42.46165],[-73.807895,42.461663],[-73.80008099999999,42.462492999999995],[-73.783721,42.464231],[-73.77849599999999,42.463291999999996],[-73.776055,42.461631],[-73.775492,42.460221999999995],[-73.778322,42.460682],[-73.778322,42.458048999999995],[-73.777172,42.455293999999995],[-73.77599,42.454141],[-73.776663,42.452602999999996],[-73.773974,42.450556],[-73.77367,42.44404],[-73.774451,42.435269],[-73.775817,42.429938],[-73.77776399999999,42.424766999999996],[-73.78328499999999,42.410412],[-73.784639,42.407312],[-73.786609,42.399186],[-73.788201,42.394241],[-73.791456,42.388413],[-73.792716,42.385906999999996],[-73.79432299999999,42.376822],[-73.794327,42.375084],[-73.791792,42.371213999999995],[-73.791466,42.369445999999996],[-73.790528,42.361427],[-73.79326,42.356186],[-73.789817,42.350805],[-73.78799,42.345364],[-73.787764,42.344428],[-73.78737,42.342679],[-73.787353,42.342621],[-73.78295,42.33036],[-73.782406,42.32497],[-73.784289,42.320083],[-73.783013,42.317555],[-73.782111,42.310756],[-73.781003,42.308447],[-73.780551,42.305687999999996],[-73.780996,42.301835],[-73.781483,42.299923],[-73.781767,42.298339],[-73.782988,42.292918],[-73.783326,42.288356],[-73.783467,42.285999],[-73.784116,42.280465],[-73.788235,42.269832],[-73.79283099999999,42.263473],[-73.7932,42.263042999999996],[-73.79525699999999,42.261106],[-73.799588,42.256468999999996],[-73.802996,42.253654999999995],[-73.80897399999999,42.251646],[-73.815238,42.250803999999995],[-73.819,42.248467999999995],[-73.82298999999999,42.246156],[-73.82526,42.245540999999996],[-73.829449,42.245681],[-73.835206,42.24208],[-73.83855,42.238440999999995],[-73.84193499999999,42.235631],[-73.847813,42.230346999999995],[-73.849203,42.227776999999996],[-73.850493,42.223464],[-73.851286,42.220611999999996],[-73.849473,42.20964],[-73.850385,42.206719],[-73.851084,42.203091],[-73.852769,42.197787999999996],[-73.85360899999999,42.195633],[-73.855021,42.192014],[-73.85874199999999,42.187601],[-73.863877,42.182462],[-73.87476099999999,42.173916],[-73.87845399999999,42.173161],[-73.88262499999999,42.170260999999996],[-73.885485,42.169996999999995],[-73.888896,42.169844999999995],[-73.891127,42.168912],[-73.893014,42.165566999999996],[-73.89260399999999,42.163447],[-73.893137,42.158814],[-73.89384199999999,42.15692],[-73.89815399999999,42.151714999999996],[-73.900226,42.144864],[-73.90241499999999,42.139859],[-73.907007,42.133798999999996],[-73.910675,42.127292999999995],[-73.918356,42.128916],[-73.926271,42.133342999999996],[-73.946941,42.145162],[-73.957259,42.151081999999995],[-73.972946,42.159971],[-73.989381,42.169363],[-73.996421,42.17339],[-74.00245,42.176992],[-74.00251899999999,42.176162],[-74.00358899999999,42.163365],[-74.017775,42.162273],[-74.024878,42.162133999999995],[-74.04239299999999,42.170386],[-74.063817,42.121582],[-74.07479699999999,42.096589],[-74.075423,42.096637],[-74.082194,42.097153],[-74.126661,42.100628],[-74.171495,42.103939],[-74.22474799999999,42.107974999999996],[-74.27160599999999,42.111625],[-74.280754,42.112356],[-74.286479,42.112814],[-74.307571,42.114346],[-74.32448,42.120753],[-74.41367799999999,42.154844],[-74.450322,42.168698],[-74.451713,42.169225]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36043","STATE":"36","COUNTY":"043","NAME":"Herkimer","LSAD":"County","CENSUSAREA":1411.47},"geometry":{"type":"Polygon","coordinates":[[[-74.763303,42.863237],[-74.794829,42.873042999999996],[-74.800358,42.874763],[-74.83252999999999,42.884496999999996],[-74.878822,42.898274],[-74.884176,42.871719999999996],[-74.88565899999999,42.863523],[-74.88780899999999,42.851957999999996],[-74.889252,42.847668999999996],[-74.890873,42.841356],[-74.894671,42.832051],[-74.90673799999999,42.824943],[-74.919164,42.830588],[-74.954822,42.846422],[-74.961749,42.849378],[-74.97124699999999,42.853446999999996],[-74.985495,42.86032],[-74.992987,42.863357],[-74.997794,42.865297999999996],[-74.999439,42.865907],[-74.9996,42.86596],[-75.000373,42.866282],[-75.024164,42.876325],[-75.05006,42.887113],[-75.06544199999999,42.89353],[-75.07712,42.898401],[-75.100999,42.908363],[-75.117363,42.887989],[-75.120745,42.883458999999995],[-75.128157,42.875071],[-75.137565,42.862463],[-75.13987,42.85976],[-75.21064199999999,42.856549],[-75.212158,42.879973],[-75.201444,42.880663999999996],[-75.201867,42.884125999999995],[-75.202005,42.885231999999995],[-75.207362,42.940574],[-75.20908299999999,42.957954],[-75.20935899999999,42.960705999999995],[-75.209811,42.965212],[-75.216006,43.022769],[-75.217056,43.033778999999996],[-75.21721099999999,43.035404],[-75.217984,43.043495],[-75.219106,43.052468999999995],[-75.209411,43.062765],[-75.207807,43.064468999999995],[-75.205107,43.067569],[-75.201371,43.071504999999995],[-75.198307,43.074569],[-75.195728,43.077650999999996],[-75.19176,43.077298],[-75.182334,43.075303],[-75.18117699999999,43.078582999999995],[-75.17790000000001,43.082543],[-75.18084,43.083897],[-75.18206099999999,43.082209999999996],[-75.184078,43.083329],[-75.18170099999999,43.087700999999996],[-75.185406,43.088569],[-75.183206,43.090869],[-75.182784,43.091412],[-75.18210599999999,43.092268999999995],[-75.180598,43.093776999999996],[-75.17964599999999,43.094736],[-75.173296,43.101879],[-75.17001599999999,43.105159],[-75.16410599999999,43.111568999999996],[-75.160906,43.114768999999995],[-75.160006,43.115969],[-75.15990099999999,43.11609],[-75.158706,43.117469],[-75.150699,43.126993],[-75.13730199999999,43.14299],[-75.135154,43.145666999999996],[-75.117389,43.168009999999995],[-75.115866,43.169881],[-75.100218,43.189111],[-75.069165,43.227333],[-75.07065999999999,43.22739],[-75.072161,43.227622],[-75.07282599999999,43.227894],[-75.073494,43.228657],[-75.073529,43.231072],[-75.07059699999999,43.232234],[-75.07065399999999,43.234037],[-75.073002,43.234817],[-75.075285,43.234331999999995],[-75.07943399999999,43.232047],[-75.083933,43.230537999999996],[-75.090899,43.230492],[-75.094075,43.231046],[-75.099952,43.233073999999995],[-75.105415,43.236152],[-75.109574,43.237158],[-75.114188,43.239197],[-75.117704,43.239222],[-75.12268399999999,43.241048],[-75.12392299999999,43.246500000000005],[-75.124997,43.246997],[-75.127571,43.247572],[-75.135043,43.248349999999995],[-75.136398,43.2487],[-75.13739699999999,43.249646999999996],[-75.14194599999999,43.252700000000004],[-75.142703,43.255001],[-75.144744,43.254583],[-75.14551999999999,43.252219],[-75.147288,43.251991],[-75.14871699999999,43.250068999999996],[-75.147907,43.248469],[-75.14934099999999,43.246727],[-75.15097399999999,43.246902999999996],[-75.15181299999999,43.24807],[-75.151296,43.251866],[-75.15298299999999,43.25497],[-75.152504,43.257811],[-75.153453,43.258717999999995],[-75.155362,43.256688],[-75.157978,43.255507],[-75.16035,43.255804999999995],[-75.161886,43.257349],[-75.162432,43.261282],[-75.158661,43.264196],[-75.158096,43.26681],[-75.15912999999999,43.269135999999996],[-75.158509,43.273053999999995],[-75.156921,43.274494],[-75.156227,43.274995],[-75.154977,43.277252999999995],[-75.153183,43.280574],[-75.152615,43.285717999999996],[-75.152098,43.286786],[-75.148198,43.289057],[-75.146906,43.296541],[-75.145647,43.298283],[-75.146866,43.303056],[-75.14818,43.304828],[-75.145989,43.305284],[-75.141064,43.304666],[-75.133304,43.306855999999996],[-75.130077,43.307257],[-75.123725,43.306456999999995],[-75.122457,43.30448],[-75.120295,43.304165],[-75.119068,43.307466],[-75.119987,43.30916],[-75.11920599999999,43.310508],[-75.117916,43.310977],[-75.111775,43.310852],[-75.107557,43.311654],[-75.106816,43.312894],[-75.106562,43.313452],[-75.106495,43.313539],[-75.10546099999999,43.316182],[-75.103098,43.318568],[-75.099817,43.323989999999995],[-75.099839,43.325175],[-75.092922,43.323147],[-75.091892,43.323915],[-75.09263899999999,43.327546999999996],[-75.09174999999999,43.328613],[-75.08815799999999,43.329544999999996],[-75.084518,43.329625],[-75.07658099999999,43.330704999999995],[-75.077992,43.342566999999995],[-75.078465,43.346529],[-75.084323,43.39705],[-75.084532,43.398888],[-75.086788,43.416539],[-75.086851,43.41701],[-75.08914,43.4343],[-75.089558,43.440205999999996],[-75.09034299999999,43.443593],[-75.097516,43.496764999999996],[-75.09772699999999,43.500980999999996],[-75.09848199999999,43.506251],[-75.098714,43.507872],[-75.09872899999999,43.508064],[-75.10265,43.549859],[-75.104249,43.564108],[-75.11016,43.615229],[-75.115369,43.658032],[-75.123087,43.720369999999996],[-75.123111,43.720569],[-75.13020399999999,43.776311],[-75.140396,43.860679],[-75.14053799999999,43.861844],[-75.156493,43.987195],[-75.164076,44.049034999999996],[-75.170159,44.096959],[-75.06277899999999,44.0504],[-74.889302,44.066829],[-74.854171,44.070088999999996],[-74.82843,43.881569999999996],[-74.82010799999999,43.818507],[-74.813383,43.768707],[-74.813305,43.768170999999995],[-74.813288,43.767835],[-74.813155,43.766887],[-74.810617,43.749351999999995],[-74.809242,43.739070999999996],[-74.808669,43.734781],[-74.797795,43.653397999999996],[-74.777625,43.501657],[-74.77717799999999,43.500067],[-74.775617,43.486677],[-74.834896,43.392505],[-74.867712,43.339825999999995],[-74.85155999999999,43.334218],[-74.74800499999999,43.298252999999995],[-74.723084,43.289767999999995],[-74.71417,43.286764],[-74.712615,43.286142999999996],[-74.707698,43.250068999999996],[-74.70764799999999,43.247419],[-74.696213,43.179905],[-74.69600299999999,43.177862],[-74.696828,43.173387],[-74.700919,43.17217],[-74.702288,43.171293],[-74.702375,43.172668],[-74.706499,43.173016],[-74.708235,43.172533],[-74.71010199999999,43.171003],[-74.712665,43.170195],[-74.71360299999999,43.16778],[-74.71759,43.165289],[-74.718244,43.163567],[-74.71835999999999,43.160506],[-74.71221299999999,43.156389999999995],[-74.709977,43.156082999999995],[-74.709745,43.154543],[-74.711647,43.153413],[-74.710663,43.151872999999995],[-74.7085,43.151049],[-74.708088,43.149671],[-74.71982299999999,43.148309999999995],[-74.723074,43.145337],[-74.726248,43.145599],[-74.73398399999999,43.144228999999996],[-74.735514,43.142004],[-74.731704,43.136818999999996],[-74.73293,43.133388],[-74.730999,43.130948],[-74.730144,43.128492],[-74.72825399999999,43.126709],[-74.728444,43.125167999999995],[-74.73148499999999,43.123604],[-74.733074,43.124635],[-74.735676,43.124838],[-74.738328,43.124359999999996],[-74.739555,43.123118],[-74.738475,43.121589],[-74.739729,43.120191],[-74.743492,43.119935],[-74.747079,43.12199],[-74.750652,43.120509999999996],[-74.75612,43.119668999999995],[-74.75894799999999,43.119561999999995],[-74.758698,43.118038],[-74.75703899999999,43.11687],[-74.75902099999999,43.113924],[-74.766474,43.114656],[-74.769198,43.114089],[-74.77015,43.112505],[-74.767517,43.109317999999995],[-74.769633,43.105478],[-74.768427,43.102637],[-74.769678,43.101616],[-74.766031,43.091615],[-74.765815,43.090132],[-74.767466,43.088901],[-74.770194,43.087917],[-74.769939,43.085733],[-74.77373399999999,43.083375],[-74.774233,43.082269],[-74.774199,43.078472],[-74.77015899999999,43.074901],[-74.769364,43.072275999999995],[-74.770127,43.068652],[-74.769843,43.065683],[-74.761889,43.059199],[-74.763786,43.056847999999995],[-74.763239,43.053096],[-74.761861,43.049782],[-74.759895,43.047422999999995],[-74.758815,43.042027999999995],[-74.752274,43.03932],[-74.7496,43.036792999999996],[-74.7461,43.03441],[-74.743805,43.030741],[-74.74277099999999,43.026785],[-74.741821,43.02044],[-74.740475,43.018339],[-74.740237,43.014483],[-74.740937,43.011337],[-74.741102,43.005918],[-74.741545,43.003347999999995],[-74.743715,42.99941],[-74.74188099999999,42.998695999999995],[-74.740093,42.998315],[-74.74127299999999,42.991051999999996],[-74.74131799999999,42.990773999999995],[-74.748065,42.949028],[-74.750816,42.934132999999996],[-74.751037,42.929165999999995],[-74.751491,42.925979999999996],[-74.75374599999999,42.913827999999995],[-74.75807,42.890643999999995],[-74.75862599999999,42.887775],[-74.763303,42.863237]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36047","STATE":"36","COUNTY":"047","NAME":"Kings","LSAD":"County","CENSUSAREA":70.816},"geometry":{"type":"Polygon","coordinates":[[[-73.9385976888393,40.566161483009],[-73.9445579544155,40.568715880970196],[-73.9463846661585,40.57026155867109],[-73.9470010031359,40.570783074080396],[-73.95005006362788,40.5733630458955],[-73.9521701238095,40.5732083614595],[-73.9593803445248,40.5726822872778],[-73.975355636266,40.571516693482394],[-73.975466635494,40.5715085947251],[-73.977440780017,40.571364556629],[-73.9779415937693,40.571328016113],[-73.990667,40.570399541391794],[-73.9907511984229,40.570393398082395],[-73.991346,40.57035],[-73.9926873490412,40.5703841912501],[-73.9928303812091,40.5703878371681],[-73.9949073859097,40.570440780425095],[-73.9950422922041,40.570444219213],[-73.9969522085667,40.5704929033556],[-73.9971305825489,40.5704974501434],[-73.9992206201362,40.5705507256113],[-73.999284837606,40.5705523625272],[-74.00205196167549,40.5706228970623],[-74.002056,40.570623],[-74.00903,40.572846],[-74.0105553268947,40.5737034865765],[-74.01188303988219,40.5744498813776],[-74.012022,40.574528],[-74.0120437080756,40.57460914897649],[-74.0123228747509,40.575652727893],[-74.0125875794825,40.576642245273],[-74.0128853500122,40.5777553689883],[-74.012996,40.578168999999995],[-74.01278093142449,40.578373803939],[-74.0120118895933,40.579106141501],[-74.01166155084141,40.5794397595396],[-74.00727599999999,40.583616],[-74.0071166533407,40.583814130905594],[-74.00635038850339,40.58476690109129],[-74.0015913294824,40.590684293259294],[-74.001894970981,40.591595219226],[-74.0025576916655,40.593583384490294],[-74.00328120168301,40.5957539180478],[-74.0042170508514,40.59637029497],[-74.0048867506442,40.596811378331594],[-74.00584158606048,40.597440260137596],[-74.0078783222901,40.59878171263969],[-74.00932490724479,40.5997344747004],[-74.010926,40.600789],[-74.0116400776747,40.6009072640271],[-74.0121477488981,40.6009913434564],[-74.01526161399339,40.6015070551767],[-74.0200221392401,40.6022954832522],[-74.032856,40.604420999999995],[-74.0364324735064,40.6089422239455],[-74.03959043787609,40.612934386644795],[-74.0395930094673,40.612945244432005],[-74.0398035252084,40.6138340851969],[-74.0402479613245,40.6157105859059],[-74.04056463652421,40.6170476537441],[-74.04097391426579,40.6187757085633],[-74.0414213593406,40.620664913715395],[-74.04184024741869,40.6224335453523],[-74.0424119629985,40.62484744614049],[-74.0419945685833,40.626099627519594],[-74.0410430924035,40.6289540518039],[-74.0393928143546,40.6339048785707],[-74.0391850957607,40.63452803342349],[-74.0388055371522,40.6356667075517],[-74.0383364348109,40.6370740124778],[-74.0358681782583,40.6407763925235],[-74.0337329557017,40.6439792222206],[-74.03309794871589,40.6449317314688],[-74.0320663951838,40.6464790597679],[-74.0262076295436,40.6518052143378],[-74.0244062258525,40.653442855283096],[-74.018272325015,40.6590191329468],[-74.01827421562601,40.6590361484457],[-74.0186611912791,40.662518929323596],[-74.0204668364544,40.67876973590109],[-74.0229114667001,40.6812665482514],[-74.01939899999999,40.679573],[-74.015974,40.680659999999996],[-74.01547599999999,40.681914],[-74.009363,40.685497],[-74.008117,40.686614999999996],[-74.003946,40.689046999999995],[-74.001881,40.692476],[-74.00154599999999,40.693146999999996],[-74.001425,40.693217],[-74.000688,40.693645],[-74.000625,40.693991],[-74.000621,40.694012],[-74.000446,40.694947],[-74.000424,40.694995],[-73.999946,40.696047],[-73.999651,40.696479],[-73.999608,40.696574999999996],[-73.999246,40.697148],[-73.99918699999999,40.697278],[-73.998846,40.698046],[-73.998789,40.698149],[-73.998409,40.698834],[-73.998346,40.698946],[-73.997945,40.699549999999995],[-73.99793,40.699580999999995],[-73.997641,40.700156],[-73.995657,40.702850999999995],[-73.995627,40.702891],[-73.99552299999999,40.703258],[-73.994648,40.704135],[-73.994588,40.704194],[-73.99365499999999,40.704702],[-73.989519,40.705118],[-73.987546,40.704747],[-73.98619099999999,40.704812],[-73.98404,40.704892],[-73.979233,40.705769],[-73.974546,40.707547],[-73.972146,40.708946999999995],[-73.970045,40.706947],[-73.969445,40.706846999999996],[-73.96984499999999,40.709047],[-73.969584,40.71017],[-73.96905,40.712482],[-73.968469,40.712998999999996],[-73.96837,40.714127],[-73.968041,40.714966],[-73.967716,40.71604],[-73.967578,40.716496],[-73.966836,40.717563999999996],[-73.966511,40.717917],[-73.965704,40.718779],[-73.965086,40.719581],[-73.96355,40.721571],[-73.96278699999999,40.722561999999996],[-73.962645,40.722747],[-73.962014,40.723369],[-73.96154299999999,40.723876],[-73.96153699999999,40.724695],[-73.96161099999999,40.724951],[-73.961531,40.72591],[-73.961608,40.727368],[-73.961519,40.727989],[-73.961534,40.728091],[-73.961792,40.729870999999996],[-73.96157199999999,40.730064],[-73.961741,40.730789],[-73.962057,40.73153],[-73.962549,40.733542],[-73.962795,40.737674],[-73.96118799999999,40.737091],[-73.955164,40.739145],[-73.954084,40.739446],[-73.95262699999999,40.739255],[-73.947064,40.737516],[-73.94236099999999,40.735564],[-73.94073399999999,40.733425],[-73.937339,40.72992],[-73.9319,40.72844],[-73.929428,40.727878],[-73.929223,40.727849],[-73.92792899999999,40.726577999999996],[-73.92386499999999,40.720056],[-73.924036,40.718764],[-73.92304299999999,40.716989999999996],[-73.923734,40.716245],[-73.92436099999999,40.71557],[-73.92392,40.714074],[-73.920726,40.710460999999995],[-73.92167599999999,40.709471],[-73.92147299999999,40.709004],[-73.92008899999999,40.708251],[-73.919392,40.707687],[-73.918632,40.707299],[-73.917852,40.706852],[-73.917087,40.706481],[-73.91627299999999,40.706105],[-73.915532,40.70558],[-73.914807,40.705194999999996],[-73.914095,40.704727],[-73.91340000000001,40.704325],[-73.912701,40.703835],[-73.912058,40.703446],[-73.912725,40.702363],[-73.912063,40.701910999999996],[-73.911362,40.701495],[-73.910578,40.700998],[-73.911655,40.699905],[-73.91098199999999,40.699535999999995],[-73.908757,40.698201999999995],[-73.908008,40.697764],[-73.907517,40.697545],[-73.90719899999999,40.697342],[-73.90691,40.697191],[-73.90645099999999,40.69687],[-73.906195,40.696802999999996],[-73.905772,40.696509999999996],[-73.90555599999999,40.696428],[-73.905059,40.69602],[-73.904782,40.695983],[-73.904425,40.695671],[-73.905851,40.694069],[-73.905113,40.693629],[-73.904293,40.693159],[-73.903641,40.692794],[-73.90212799999999,40.691843],[-73.90170499999999,40.69166],[-73.901241,40.691438],[-73.901731,40.690822],[-73.900988,40.687616],[-73.896497,40.682446999999996],[-73.894033,40.685139],[-73.892523,40.683423999999995],[-73.89008199999999,40.684712],[-73.889575,40.68418],[-73.887625,40.686001999999995],[-73.883777,40.687863],[-73.87945599999999,40.691230999999995],[-73.874021,40.694191],[-73.868917,40.69515],[-73.868724,40.694756],[-73.868059,40.691184],[-73.86746099999999,40.688415],[-73.867277,40.687745],[-73.867018,40.68683],[-73.866598,40.685269999999996],[-73.86650399999999,40.684474],[-73.866295,40.683189],[-73.866027,40.681917999999996],[-73.86410099999999,40.682373],[-73.863787,40.681114],[-73.863349,40.679352],[-73.862028,40.677886],[-73.861712,40.676611],[-73.861318,40.675021],[-73.861064,40.674343],[-73.861024,40.674005],[-73.860389,40.671268999999995],[-73.85763299999999,40.671656],[-73.857267,40.670255],[-73.856847,40.668603],[-73.856425,40.667032999999996],[-73.856115,40.665729],[-73.85606299999999,40.665510999999995],[-73.85566,40.663802],[-73.858359,40.663236999999995],[-73.857879,40.661564],[-73.85748199999999,40.659977],[-73.863171,40.658277],[-73.86219299999999,40.656828999999995],[-73.860676,40.654868],[-73.86059399999999,40.654779999999995],[-73.86049,40.654655],[-73.858386,40.652671],[-73.856652,40.650129],[-73.85614799999999,40.649198],[-73.855021,40.643097999999995],[-73.85493799999999,40.642649999999996],[-73.848338,40.643521],[-73.83765199999999,40.63284],[-73.836238,40.631111],[-73.833365,40.628461],[-73.833422,40.626782],[-73.834054,40.613454999999995],[-73.834283,40.609186],[-73.834463,40.607192999999995],[-73.835876,40.605637],[-73.844437,40.595855],[-73.84667999999999,40.593209],[-73.849852,40.588668999999996],[-73.85493699999999,40.585974],[-73.859492,40.583937999999996],[-73.866005,40.581001],[-73.86751,40.580228999999996],[-73.869232,40.579342],[-73.87141799999999,40.578534999999995],[-73.879222,40.574656],[-73.885069,40.573749],[-73.886292,40.573505],[-73.890518,40.572705],[-73.903871,40.571619],[-73.92806999999999,40.567786],[-73.9385976888393,40.566161483009]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36049","STATE":"36","COUNTY":"049","NAME":"Lewis","LSAD":"County","CENSUSAREA":1274.679},"geometry":{"type":"Polygon","coordinates":[[[-75.756213,43.470388],[-75.75756899999999,43.492522],[-75.75806899999999,43.499086999999996],[-75.75901999999999,43.513157],[-75.763027,43.575900999999995],[-75.763973,43.583467999999996],[-75.76503699999999,43.589014999999996],[-75.76540399999999,43.593556],[-75.76513299999999,43.598572],[-75.766776,43.625068999999996],[-75.768772,43.636919],[-75.76950699999999,43.644568],[-75.770727,43.656309],[-75.774553,43.688883999999995],[-75.786759,43.78832],[-75.819737,43.790341],[-75.850534,43.791886],[-75.84749,43.818622],[-75.84176599999999,43.868992],[-75.841437,43.871894999999995],[-75.840594,43.880956999999995],[-75.84056,43.883976],[-75.824349,43.882957],[-75.758157,43.878785],[-75.746915,43.885858],[-75.743661,43.887598],[-75.72740499999999,43.897354],[-75.726197,43.897679],[-75.711323,43.906391],[-75.706319,43.909701999999996],[-75.704038,43.910472],[-75.692579,43.91746],[-75.691457,43.918093],[-75.673763,43.928821],[-75.666904,43.932978999999996],[-75.651889,43.942102],[-75.621045,43.96095],[-75.60367,43.971363],[-75.598835,43.967234999999995],[-75.592516,43.966397],[-75.588625,43.967048999999996],[-75.58010999999999,43.968334],[-75.577181,43.965275999999996],[-75.575496,43.96553],[-75.553522,43.966834],[-75.55227,43.967105],[-75.542898,43.967794999999995],[-75.543757,43.972728],[-75.547489,43.996159999999996],[-75.548547,44.000076],[-75.549232,44.003966],[-75.549993,44.008162999999996],[-75.50183,44.009555999999996],[-75.50200199999999,44.034462999999995],[-75.502014,44.036243999999996],[-75.493342,44.046835],[-75.502741,44.051252999999996],[-75.498451,44.056647],[-75.484528,44.074172],[-75.50751199999999,44.085105999999996],[-75.507724,44.085206],[-75.545886,44.102978],[-75.53381999999999,44.117157],[-75.447164,44.216767],[-75.446124,44.217655],[-75.41333399999999,44.203399],[-75.388516,44.192532],[-75.381885,44.189625],[-75.33317199999999,44.167668],[-75.319687,44.161100999999995],[-75.31594,44.159275],[-75.31203099999999,44.157618],[-75.261169,44.136123],[-75.170159,44.096959],[-75.164076,44.049034999999996],[-75.156493,43.987195],[-75.14053799999999,43.861844],[-75.140396,43.860679],[-75.13020399999999,43.776311],[-75.123111,43.720569],[-75.123087,43.720369999999996],[-75.115369,43.658032],[-75.11016,43.615229],[-75.12942699999999,43.606406],[-75.18256,43.581806],[-75.225253,43.562204],[-75.232807,43.558672],[-75.27104299999999,43.541241],[-75.311452,43.522870999999995],[-75.31613999999999,43.520709],[-75.32296,43.517637],[-75.32746999999999,43.515598999999995],[-75.340159,43.509820999999995],[-75.357661,43.50185],[-75.39239599999999,43.485727],[-75.424301,43.470803],[-75.52515799999999,43.423579],[-75.5335,43.419756],[-75.54026499999999,43.421116999999995],[-75.55792,43.42487],[-75.56242,43.425992],[-75.589145,43.432576999999995],[-75.607581,43.436834999999995],[-75.60989,43.437368],[-75.63214599999999,43.442479999999996],[-75.6395,43.444148999999996],[-75.68886499999999,43.455157],[-75.750104,43.468962999999995],[-75.756213,43.470388]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36055","STATE":"36","COUNTY":"055","NAME":"Monroe","LSAD":"County","CENSUSAREA":657.205},"geometry":{"type":"Polygon","coordinates":[[[-77.3760378804266,43.2776524189036],[-77.376046,43.276773],[-77.376046,43.276210999999996],[-77.375804,43.255435999999996],[-77.37562,43.243961],[-77.375411,43.230951999999995],[-77.375305,43.224488],[-77.375264,43.222632],[-77.375137,43.209421999999996],[-77.37508,43.202619999999996],[-77.37504799999999,43.196387],[-77.37468799999999,43.188863],[-77.37471,43.182727],[-77.374706,43.178931999999996],[-77.374533,43.166509999999995],[-77.374573,43.160357999999995],[-77.37439599999999,43.158653],[-77.37435099999999,43.152584],[-77.374178,43.145392],[-77.37416999999999,43.145139],[-77.373949,43.138344],[-77.373577,43.131040999999996],[-77.373313,43.12341],[-77.373249,43.123076],[-77.373244,43.122803999999995],[-77.37295499999999,43.108903999999995],[-77.37292599999999,43.107366999999996],[-77.372573,43.095738],[-77.37200299999999,43.077464],[-77.371972,43.075902],[-77.371983,43.075599],[-77.371734,43.064336999999995],[-77.371584,43.053683],[-77.371364,43.039491],[-77.371478,43.034696],[-77.399832,43.034546],[-77.40292699999999,43.034825],[-77.420924,43.034627],[-77.43174499999999,43.034718],[-77.44491599999999,43.034664],[-77.454363,43.034664],[-77.461928,43.034622999999996],[-77.47983599999999,43.034473],[-77.485418,43.034563999999996],[-77.48503199999999,43.017348999999996],[-77.485025,43.016994],[-77.485011,43.016830999999996],[-77.484844,43.01191],[-77.48445,42.998326],[-77.483869,42.985524],[-77.484042,42.98159],[-77.483814,42.976599],[-77.48351699999999,42.968798],[-77.48310699999999,42.958115],[-77.482517,42.943163999999996],[-77.50705099999999,42.943453999999996],[-77.532555,42.943659],[-77.548005,42.943788],[-77.557343,42.943872],[-77.560383,42.943889],[-77.580377,42.943963],[-77.581232,42.943964],[-77.607321,42.944064],[-77.61196199999999,42.944157],[-77.63502199999999,42.944463999999996],[-77.63752199999999,42.939963999999996],[-77.67042,42.940165],[-77.67081499999999,42.940166999999995],[-77.700317,42.940262],[-77.718698,42.940292],[-77.758727,42.940461],[-77.760615,42.942572999999996],[-77.76039,42.943784],[-77.759418,42.944491],[-77.755466,42.944416],[-77.75318399999999,42.945648],[-77.75019,42.944364],[-77.746371,42.944072],[-77.744637,42.944804999999995],[-77.74123999999999,42.945231],[-77.73849299999999,42.947739999999996],[-77.737554,42.947869],[-77.735226,42.94678],[-77.73375,42.94528],[-77.73167099999999,42.946078],[-77.730907,42.948417],[-77.732903,42.950703999999995],[-77.73446899999999,42.954771],[-77.733891,42.955611999999995],[-77.732568,42.955931],[-77.730302,42.955092],[-77.729125,42.953174999999995],[-77.72840699999999,42.953033],[-77.725747,42.957307],[-77.725352,42.958222],[-77.725032,42.959223],[-77.725554,42.963589],[-77.726199,42.965968],[-77.725094,42.968041],[-77.724328,42.971748],[-77.722449,42.972096],[-77.718837,42.971441],[-77.717828,42.973365],[-77.719352,42.977269],[-77.720748,42.979192999999995],[-77.724942,42.979423],[-77.73147399999999,42.980751999999995],[-77.732941,42.981912],[-77.73231899999999,42.983325],[-77.731875,42.984553],[-77.73155299999999,42.987032],[-77.73095699999999,42.988372],[-77.771622,42.98833],[-77.80691399999999,42.988161999999996],[-77.811695,42.988135],[-77.82458299999999,42.988057999999995],[-77.854286,42.987915],[-77.85852899999999,42.987884],[-77.86007599999999,42.987963],[-77.86480499999999,42.985833],[-77.86582899999999,42.987862],[-77.900154,42.987862],[-77.909832,42.987762],[-77.909748,42.990497],[-77.909632,42.994524],[-77.909414,43.00252],[-77.90754,43.002859],[-77.907364,43.006447],[-77.90570699999999,43.023058999999996],[-77.904799,43.025169],[-77.904121,43.037056],[-77.908666,43.037265999999995],[-77.92578,43.038204],[-77.951044,43.039544],[-77.948233,43.045161],[-77.934152,43.074238],[-77.928513,43.086214999999996],[-77.923828,43.096101999999995],[-77.915093,43.114532],[-77.909266,43.126852],[-77.90812199999999,43.129335],[-77.905934,43.133561],[-77.90980499999999,43.133489999999995],[-77.921799,43.133269],[-77.93936099999999,43.132946],[-77.98730599999999,43.132838],[-77.9888,43.133106999999995],[-77.99728999999999,43.132981],[-77.997248,43.136519],[-77.99709899999999,43.144715999999995],[-77.997103,43.158739],[-77.997053,43.197714],[-77.997074,43.198924999999996],[-77.996983,43.209042],[-77.99691,43.217765],[-77.996899,43.219521],[-77.99686899999999,43.220645],[-77.996872,43.22721],[-77.99685699999999,43.230374999999995],[-77.996634,43.250626],[-77.996543,43.254768999999996],[-77.996285,43.266582],[-77.996206,43.269448],[-77.995723,43.284963],[-77.995665,43.287448],[-77.995269,43.31565],[-77.995234,43.323513],[-77.99533199999999,43.355539],[-77.99559132206089,43.3652934573297],[-77.994838,43.365258999999995],[-77.976438,43.369158999999996],[-77.9708723227786,43.3686123709872],[-77.97032400556759,43.36855851840401],[-77.965238,43.368058999999995],[-77.95293699999999,43.363459999999996],[-77.922736,43.35696],[-77.921739,43.35696],[-77.904836,43.35696],[-77.8965018345334,43.3548977170975],[-77.89132077714869,43.3536156683904],[-77.87533499999999,43.34966],[-77.81653299999999,43.34356],[-77.8088692218046,43.342078224172],[-77.797381,43.339856999999995],[-77.78513199999999,43.339261],[-77.7744274440257,43.3400777807056],[-77.76023099999999,43.341161],[-77.756931,43.337361],[-77.7484476069107,43.335038638483596],[-77.73062999999999,43.330161],[-77.714129,43.323561],[-77.7015043924139,43.308351827081296],[-77.70142899999999,43.308260999999995],[-77.6994523281324,43.3070451085612],[-77.6845743240615,43.29789334287229],[-77.6777656982986,43.293705217412196],[-77.6771484447902,43.29332553210939],[-77.660359,43.282998],[-77.65527444785239,43.2802908611748],[-77.653759,43.279484],[-77.64434391470759,43.2764567710746],[-77.6410637571767,43.2754021032252],[-77.6391119422659,43.274774536891904],[-77.628315,43.271302999999996],[-77.62216716906501,43.267928984901395],[-77.6042293504099,43.2580844606101],[-77.60367285296991,43.2577790470774],[-77.602161159527,43.2569494086968],[-77.59270081823969,43.2517574418586],[-77.57725157523839,43.243278682488196],[-77.577223,43.243263],[-77.551022,43.235763],[-77.5503264656882,43.235713678942396],[-77.53512507647389,43.234635732706394],[-77.5342514410039,43.2345737823114],[-77.534184,43.234569],[-77.53374244484078,43.2347786537453],[-77.50702338768929,43.247465065140595],[-77.50092,43.250363],[-77.4797172492749,43.253995187176294],[-77.476642,43.254522],[-77.4644968485138,43.257932380258296],[-77.45155375892979,43.2615668229616],[-77.436831,43.265701],[-77.4328017676574,43.266344160457294],[-77.43174986083869,43.2665120695807],[-77.4288241535067,43.2669790814344],[-77.4277440857145,43.267151485713],[-77.4255686973299,43.2674987289765],[-77.41451599999999,43.269262999999995],[-77.40086004712849,43.273388665520095],[-77.391015,43.276362999999996],[-77.38538812702309,43.27684743202639],[-77.3760378804266,43.2776524189036]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36057","STATE":"36","COUNTY":"057","NAME":"Montgomery","LSAD":"County","CENSUSAREA":403.043},"geometry":{"type":"Polygon","coordinates":[[[-74.759895,43.047422999999995],[-74.749578,43.044841999999996],[-74.726862,43.038014],[-74.715237,43.034732999999996],[-74.66094799999999,43.019315],[-74.638303,43.012783],[-74.606611,43.003979],[-74.60413799999999,43.003228],[-74.58228,42.996700000000004],[-74.572141,42.99373],[-74.560932,42.990558],[-74.560242,42.990362999999995],[-74.542367,42.98553],[-74.538138,42.98538],[-74.535618,42.985371],[-74.53397799999999,42.985397],[-74.52571999999999,42.985318],[-74.510181,42.985321],[-74.50313899999999,42.985302],[-74.49113,42.985088999999995],[-74.488844,42.985118],[-74.429417,42.984732],[-74.426847,42.98479],[-74.416507,42.98475],[-74.41538899999999,42.984736],[-74.410836,42.984736],[-74.388365,42.984569],[-74.374256,42.984617],[-74.36535099999999,42.98464],[-74.363631,42.984593],[-74.289304,42.984415],[-74.268592,42.984322],[-74.253581,42.984128],[-74.247107,42.983981],[-74.23232999999999,42.983823],[-74.211169,42.983622],[-74.188194,42.983352],[-74.18039499999999,42.983444999999996],[-74.166553,42.983166999999995],[-74.162629,42.983259],[-74.150475,42.983115],[-74.14894199999999,42.983061],[-74.143346,42.983033999999996],[-74.112479,42.982817999999995],[-74.10599599999999,42.982897],[-74.105581,42.982898999999996],[-74.104978,42.982847],[-74.097467,42.982934],[-74.096897,42.979378],[-74.096132,42.974621],[-74.096047,42.974092999999996],[-74.095078,42.968061999999996],[-74.093814,42.959378],[-74.09298,42.955867999999995],[-74.085836,42.915309],[-74.08622799999999,42.914500000000004],[-74.08567699999999,42.91301],[-74.084609,42.906169],[-74.084394,42.904657],[-74.083732,42.900017],[-74.08350399999999,42.897821],[-74.08484399999999,42.896868999999995],[-74.087249,42.895630999999995],[-74.12520599999999,42.87658],[-74.15109,42.864047],[-74.178651,42.85071],[-74.186414,42.846893],[-74.190336,42.844964999999995],[-74.191586,42.84435],[-74.19921,42.840576],[-74.202164,42.839113],[-74.207546,42.836552999999995],[-74.238328,42.821432],[-74.256829,42.812214],[-74.254947,42.809815],[-74.25532299999999,42.806064],[-74.258528,42.802386],[-74.264286,42.800115999999996],[-74.263314,42.796534],[-74.26529,42.795581],[-74.289446,42.783805],[-74.299429,42.783609999999996],[-74.32471699999999,42.783428],[-74.338796,42.782241],[-74.34970299999999,42.781375999999995],[-74.35103099999999,42.78127],[-74.392231,42.778037],[-74.392493,42.778016],[-74.411384,42.776489999999995],[-74.450783,42.773312],[-74.454911,42.772979],[-74.466253,42.77728],[-74.476343,42.781074],[-74.47761299999999,42.780454999999996],[-74.47800099999999,42.781696],[-74.50598099999999,42.792049999999996],[-74.514654,42.795336999999996],[-74.52077299999999,42.797624],[-74.534837,42.80281],[-74.535628,42.8031],[-74.54327099999999,42.805901999999996],[-74.543382,42.805941999999995],[-74.55407799999999,42.809863],[-74.555959,42.810669],[-74.562477,42.812916],[-74.583047,42.816688],[-74.594261,42.818782],[-74.648298,42.829558],[-74.649648,42.829834],[-74.649715,42.829845999999996],[-74.667931,42.835203],[-74.668043,42.835235999999995],[-74.70205399999999,42.845304999999996],[-74.709837,42.847611],[-74.751246,42.859657999999996],[-74.763303,42.863237],[-74.75862599999999,42.887775],[-74.75807,42.890643999999995],[-74.75374599999999,42.913827999999995],[-74.751491,42.925979999999996],[-74.751037,42.929165999999995],[-74.750816,42.934132999999996],[-74.748065,42.949028],[-74.74131799999999,42.990773999999995],[-74.74127299999999,42.991051999999996],[-74.740093,42.998315],[-74.74188099999999,42.998695999999995],[-74.743715,42.99941],[-74.741545,43.003347999999995],[-74.741102,43.005918],[-74.740937,43.011337],[-74.740237,43.014483],[-74.740475,43.018339],[-74.741821,43.02044],[-74.74277099999999,43.026785],[-74.743805,43.030741],[-74.7461,43.03441],[-74.7496,43.036792999999996],[-74.752274,43.03932],[-74.758815,43.042027999999995],[-74.759895,43.047422999999995]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36061","STATE":"36","COUNTY":"061","NAME":"New York","LSAD":"County","CENSUSAREA":22.829},"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.04085997587559,40.700117251220895],[-74.0400182561342,40.700678398432494],[-74.0394009963779,40.700453938559896],[-74.0379981303296,40.6989949613494],[-74.0434412468998,40.6896799397054],[-74.0444513087147,40.6884454180179],[-74.0463592056705,40.6891749077105],[-74.04731315306101,40.6904655427351],[-74.0469203510024,40.6911389180033],[-74.04085997587559,40.700117251220895]]],[[[-73.968082,40.8207],[-73.9679825754391,40.8208258025057],[-73.9659860397118,40.8233520313851],[-73.9650921290633,40.8244831020016],[-73.9636574765412,40.8262983766213],[-73.963182,40.8269],[-73.9623499039729,40.8288083941493],[-73.9614512106069,40.8308695278475],[-73.9599182216477,40.834385404699496],[-73.95861143270739,40.837382496725496],[-73.9576235765217,40.839648123412296],[-73.9555356566198,40.844436722317596],[-73.953982,40.848],[-73.952012658789,40.8515922082535],[-73.948281,40.858399],[-73.94572611766459,40.862481802163394],[-73.9381535187682,40.8745831121645],[-73.938081,40.874699],[-73.9334079229381,40.882074964842694],[-73.92497399999999,40.879144],[-73.921478,40.878214],[-73.919808,40.876577],[-73.918932,40.876388],[-73.9152,40.875581],[-73.91490499999999,40.876577999999995],[-73.910184,40.879021],[-73.909505,40.878878],[-73.909189,40.878167999999995],[-73.908682,40.877763],[-73.908005,40.877477999999996],[-73.907245,40.876446],[-73.907105,40.876276999999995],[-73.907,40.873455],[-73.908605,40.871677999999996],[-73.910851,40.866527999999995],[-73.91434,40.862521],[-73.916975,40.859908999999995],[-73.918206,40.858678999999995],[-73.91929,40.857475],[-73.920005,40.856679],[-73.920273,40.856234],[-73.920958,40.855112],[-73.921215,40.854693],[-73.921536,40.854127],[-73.922978,40.852022],[-73.923904,40.850488],[-73.927196,40.846683],[-73.928242,40.845352999999996],[-73.929006,40.844079],[-73.92963499999999,40.842256],[-73.929695,40.842195],[-73.930157,40.841664],[-73.93040599999999,40.840278999999995],[-73.93065399999999,40.839599],[-73.93300599999999,40.835679],[-73.933144,40.834815],[-73.93340599999999,40.833179],[-73.932941,40.828213],[-73.93210599999999,40.819347],[-73.932101,40.81498],[-73.932406,40.814178999999996],[-73.932267,40.813901],[-73.93210599999999,40.813579],[-73.932503,40.811555999999996],[-73.931681,40.807955],[-73.930993,40.807266999999996],[-73.928322,40.804015],[-73.927204,40.80217],[-73.925139,40.802174],[-73.92230599999999,40.802178999999995],[-73.918633,40.799105],[-73.913624,40.796786],[-73.912506,40.79618],[-73.910551,40.790988],[-73.915358,40.788095999999996],[-73.916316,40.786601],[-73.917817,40.784976],[-73.920425,40.782874],[-73.924605,40.779433999999995],[-73.926006,40.77888],[-73.92797,40.776762],[-73.929555,40.776868],[-73.931857,40.778262999999995],[-73.934114,40.777575999999996],[-73.93508,40.779218],[-73.934972,40.778439],[-73.935739,40.777156999999995],[-73.93839899999999,40.774606],[-73.938447,40.773551],[-73.938076,40.772551],[-73.93518999999999,40.771744999999996],[-73.935741,40.770548],[-73.940844,40.767399],[-73.943951,40.764434],[-73.945111,40.763086],[-73.951011,40.755724],[-73.95492,40.751509],[-73.957236,40.74756],[-73.95830000000001,40.745731],[-73.959941,40.744389999999996],[-73.961544,40.743081],[-73.962503,40.739322],[-73.96270299999999,40.738302999999995],[-73.962795,40.737674],[-73.962549,40.733542],[-73.962057,40.73153],[-73.961741,40.730789],[-73.96157199999999,40.730064],[-73.961792,40.729870999999996],[-73.961534,40.728091],[-73.961519,40.727989],[-73.961608,40.727368],[-73.961531,40.72591],[-73.96161099999999,40.724951],[-73.96153699999999,40.724695],[-73.96154299999999,40.723876],[-73.962014,40.723369],[-73.962645,40.722747],[-73.96278699999999,40.722561999999996],[-73.96355,40.721571],[-73.965086,40.719581],[-73.965704,40.718779],[-73.966511,40.717917],[-73.966836,40.717563999999996],[-73.967578,40.716496],[-73.967716,40.71604],[-73.968041,40.714966],[-73.96837,40.714127],[-73.968469,40.712998999999996],[-73.96905,40.712482],[-73.969584,40.71017],[-73.96984499999999,40.709047],[-73.969445,40.706846999999996],[-73.970045,40.706947],[-73.972146,40.708946999999995],[-73.974546,40.707547],[-73.979233,40.705769],[-73.98404,40.704892],[-73.98619099999999,40.704812],[-73.987546,40.704747],[-73.989519,40.705118],[-73.99365499999999,40.704702],[-73.994588,40.704194],[-73.994648,40.704135],[-73.99552299999999,40.703258],[-73.995627,40.702891],[-73.995657,40.702850999999995],[-73.997641,40.700156],[-73.99793,40.699580999999995],[-73.997945,40.699549999999995],[-73.998346,40.698946],[-73.998409,40.698834],[-73.998789,40.698149],[-73.998846,40.698046],[-73.99918699999999,40.697278],[-73.999246,40.697148],[-73.999608,40.696574999999996],[-73.999651,40.696479],[-73.999946,40.696047],[-74.000424,40.694995],[-74.000446,40.694947],[-74.000621,40.694012],[-74.000625,40.693991],[-74.000688,40.693645],[-74.001425,40.693217],[-74.00154599999999,40.693146999999996],[-74.001881,40.692476],[-74.003946,40.689046999999995],[-74.008117,40.686614999999996],[-74.009363,40.685497],[-74.01547599999999,40.681914],[-74.015974,40.680659999999996],[-74.01939899999999,40.679573],[-74.0229114667001,40.6812665482514],[-74.0239821934479,40.68236013030639],[-74.0242663386851,40.683922931864004],[-74.0248271295482,40.6870072870448],[-74.0241646469569,40.688392922109],[-74.0217208516701,40.693504314444],[-74.0184900842354,40.6954566644213],[-74.01722084051039,40.700216359135396],[-74.01690147197819,40.701413998867295],[-74.01680021203491,40.701793726107795],[-74.01776949483701,40.7036394594873],[-74.0180734163104,40.704218194617],[-74.0181237788681,40.7043140963019],[-74.01819068057338,40.7044414922593],[-74.0183696847634,40.7047823566674],[-74.0194855304385,40.7069071788601],[-74.0194878452164,40.706911586720096],[-74.0195263402307,40.7069848899218],[-74.024543,40.709436],[-74.02385865547001,40.7130277101559],[-74.0224656208889,40.7203389053696],[-74.0214927100048,40.725445125628504],[-74.02111699999999,40.727416999999996],[-74.02071541526209,40.7290152338732],[-74.01977669977019,40.732751149994],[-74.01887121687479,40.7363548064537],[-74.01778855153769,40.7406636166538],[-74.01692332756079,40.7441070499749],[-74.013784,40.756600999999996],[-74.0098517287783,40.762584890989594],[-74.00918399999999,40.763601],[-74.00828125206719,40.7648550996597],[-74.0043787184341,40.77027650902949],[-74.00022288810109,40.7760497988009],[-73.9976083602156,40.7796819074023],[-73.9955868235623,40.782490231118096],[-73.99467361743001,40.7837588593345],[-73.9912420918403,40.788525943166],[-73.98989439028809,40.7903981734938],[-73.9880545412037,40.79295409638969],[-73.9861819941366,40.7955554434041],[-73.9843088955015,40.7981575566581],[-73.9824834097892,40.800693525922],[-73.9806163897831,40.8032871947296],[-73.97885474255939,40.8057344794073],[-73.9771693704015,40.808075802575196],[-73.9750969903285,40.81095475809529],[-73.97122753768102,40.81633021127801],[-73.968082,40.8207]]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36085","STATE":"36","COUNTY":"085","NAME":"Richmond","LSAD":"County","CENSUSAREA":58.37},"geometry":{"type":"Polygon","coordinates":[[[-74.1389635476306,40.6403024557478],[-74.1309229607627,40.6411154165392],[-74.1292770094533,40.6412818339788],[-74.1210391643545,40.6421147389869],[-74.12056825955719,40.6421623508271],[-74.12018599999999,40.642201],[-74.11229408941419,40.643699715995],[-74.1106905509337,40.644004236521894],[-74.1074218086494,40.64462498815001],[-74.10473362808959,40.645135488004094],[-74.10353525907439,40.6453630646843],[-74.10146955607169,40.645755352723704],[-74.100071872149,40.6460207803699],[-74.0899307181427,40.6479466397106],[-74.08730452241511,40.648445368313794],[-74.086485,40.648601],[-74.075884,40.648101],[-74.0753082554388,40.647459990733495],[-74.0748212817183,40.646917815108495],[-74.0735109581792,40.6454589571578],[-74.0715055215904,40.6432261901924],[-74.0697,40.641216],[-74.06935436950629,40.638362986348],[-74.069322048393,40.638096191088394],[-74.067753032006,40.6251447147171],[-74.06773603158419,40.6250043844044],[-74.06759799999999,40.623864999999995],[-74.0653012746611,40.6201075282129],[-74.0647824572083,40.61925873627919],[-74.06351791969578,40.6171899368689],[-74.06314475518829,40.6165794350013],[-74.06256068103669,40.6156238822807],[-74.060345,40.611999],[-74.0602789881979,40.6119229218552],[-74.0596142823714,40.611156852993304],[-74.0568877200151,40.608014508759794],[-74.053125,40.603677999999995],[-74.0591790374008,40.593510334611295],[-74.059184,40.593502],[-74.0633874351605,40.589111745499004],[-74.06407848205829,40.5883899854058],[-74.068184,40.584102],[-74.0757909128595,40.5781683186694],[-74.0843946097399,40.57145710789359],[-74.090797,40.566463],[-74.09086963633389,40.566394295177005],[-74.09329285464989,40.564102235867395],[-74.094457846097,40.563000300695194],[-74.0946360584972,40.56283173421139],[-74.0968632061341,40.560725133068004],[-74.0984213954874,40.559251282202005],[-74.09921766378629,40.5584981126854],[-74.10389629455949,40.5540727172723],[-74.1052726951982,40.552770815633096],[-74.10706122948311,40.551079087475],[-74.111471,40.546907999999995],[-74.1125450863356,40.5475780987462],[-74.112585,40.547602999999995],[-74.1128288683874,40.5474711763487],[-74.11290197723679,40.547431657182],[-74.12167199999999,40.542691],[-74.12933629984259,40.536480893858695],[-74.137241,40.530076],[-74.1401627032412,40.5336555507759],[-74.14023,40.533738],[-74.1424250908296,40.534481549109],[-74.14442799999999,40.53516],[-74.14509205837629,40.5350556235253],[-74.145218347156,40.5350357734969],[-74.1483362132313,40.534545708344304],[-74.1483984586367,40.534535924632195],[-74.148697,40.534489],[-74.1497595247509,40.5338163821693],[-74.15699773658758,40.5292343238787],[-74.1599024643113,40.527395522797796],[-74.15996036133559,40.5273588718202],[-74.160859,40.52679],[-74.1648376801641,40.525120427142],[-74.168292535341,40.5236706668713],[-74.1709332820506,40.5225625307936],[-74.1762428712975,40.5203344687911],[-74.17797516751301,40.5196075456346],[-74.17798599999999,40.519603],[-74.1797303208561,40.5200341663396],[-74.1799812330527,40.520096187551495],[-74.182157,40.520634],[-74.1937285345304,40.5148339034677],[-74.1968192974869,40.5132846946347],[-74.19974086810359,40.5118202914859],[-74.199923,40.511728999999995],[-74.20965824904759,40.509624355598696],[-74.2102979958169,40.5094860499992],[-74.21047399999999,40.509448],[-74.219787,40.502603],[-74.2219094148505,40.50239727421649],[-74.22800663045439,40.5018062707863],[-74.23324,40.501298999999996],[-74.23651814728228,40.5000323987746],[-74.2421345282524,40.4978623574658],[-74.24668799999999,40.496103],[-74.25011505483769,40.496690495115004],[-74.250188,40.496703],[-74.25033593362909,40.496891279164295],[-74.25176389759889,40.4987086878531],[-74.254588,40.502303],[-74.25525510723189,40.5047935336658],[-74.25534504491719,40.5051293010242],[-74.25604235787159,40.507732602720594],[-74.25608799999999,40.507903],[-74.252702,40.513895],[-74.2429340991358,40.52087008144039],[-74.242888,40.520903],[-74.2424337663513,40.524977743025005],[-74.241732,40.531273],[-74.2418807347443,40.531569759596],[-74.2439756507677,40.535749592866495],[-74.2452342160472,40.5382607164483],[-74.247460845254,40.542703347434895],[-74.24780799999999,40.543396],[-74.23697567757961,40.5501035611287],[-74.236444529739,40.550432457045005],[-74.229002,40.555040999999996],[-74.2173831725667,40.5549926083822],[-74.21699699999999,40.554991],[-74.2162681198036,40.5556961408905],[-74.21336130505729,40.558508281965096],[-74.2117737214645,40.560044158661796],[-74.210887,40.560902],[-74.2080973567181,40.5725104760835],[-74.2064130996187,40.5795191349982],[-74.20433903751469,40.5881498801854],[-74.204054,40.589335999999996],[-74.19682,40.597037],[-74.195407,40.601805999999996],[-74.1954177782244,40.6020306845242],[-74.196096,40.616169],[-74.20052350564639,40.6168352049125],[-74.200994,40.616906],[-74.20181199999999,40.619507],[-74.2014957902445,40.6225718219896],[-74.2006105846162,40.63115156258],[-74.20058,40.631448],[-74.2003523934185,40.631665284887696],[-74.1988473083377,40.6331021161102],[-74.1964381928739,40.6354019809889],[-74.19480896251889,40.636957327641795],[-74.1918025434625,40.6398274090899],[-74.1894,40.642120999999996],[-74.1868204209173,40.6430733910176],[-74.18444047859049,40.6439520753385],[-74.18377622296019,40.6441973212005],[-74.1824082385683,40.644702386564],[-74.180191,40.645520999999995],[-74.17408499999999,40.645109],[-74.17398937426769,40.6450376609468],[-74.17229308919569,40.643772192247496],[-74.1714245512886,40.6431242424698],[-74.1710919074327,40.6428760823022],[-74.170187,40.642201],[-74.16987441890019,40.6421408044414],[-74.1686981711827,40.641914287584],[-74.1675872808525,40.6417003569784],[-74.1645641399081,40.6411181731611],[-74.1610407609049,40.6404396555943],[-74.16024243519159,40.6402859173731],[-74.1577925886079,40.639814136181904],[-74.1564715532751,40.639559736732096],[-74.15459224553689,40.63919782752149],[-74.15449944050191,40.639179955516695],[-74.152973,40.638886],[-74.1430342066599,40.6398908830305],[-74.1426009221327,40.63993469119259],[-74.1408919637711,40.6401074790953],[-74.14005382446119,40.640192220969006],[-74.1389635476306,40.6403024557478]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36087","STATE":"36","COUNTY":"087","NAME":"Rockland","LSAD":"County","CENSUSAREA":173.55},"geometry":{"type":"Polygon","coordinates":[[[-74.18239,41.121595],[-74.1953483876671,41.1268915105055],[-74.234473,41.142883],[-74.216376,41.156188],[-74.211349,41.159628],[-74.193985,41.172481999999995],[-74.186544,41.178064],[-74.186359,41.178207],[-74.185873,41.178587],[-74.18572,41.178695],[-74.182566,41.181394],[-74.17729,41.184794],[-74.161789,41.195794],[-74.151001,41.203461999999995],[-74.143328,41.208915999999995],[-74.116588,41.228094],[-74.11417,41.230086],[-74.108544,41.233895],[-74.107986,41.234291999999996],[-74.104399,41.236844999999995],[-74.09884,41.2408],[-74.07489,41.257891],[-74.06950499999999,41.261793999999995],[-74.026885,41.292693],[-74.024113,41.294502],[-73.998733,41.312658],[-73.991484,41.317493],[-73.988372,41.319981999999996],[-73.984951,41.322204],[-73.98138399999999,41.324692999999996],[-73.982584,41.321692999999996],[-73.983284,41.317392999999996],[-73.98098399999999,41.314192999999996],[-73.97748399999999,41.312093],[-73.971784,41.307293],[-73.966983,41.301693],[-73.964483,41.299693],[-73.95518299999999,41.294993],[-73.949083,41.292593],[-73.94658299999999,41.290993],[-73.94578299999999,41.287593],[-73.94748299999999,41.284593],[-73.952045,41.280736],[-73.955445,41.277862],[-73.957183,41.276393],[-73.964184,41.269993],[-73.966884,41.267193],[-73.969684,41.263193],[-73.97148399999999,41.259592999999995],[-73.972284,41.256192999999996],[-73.97198399999999,41.251492999999996],[-73.970784,41.247893],[-73.964142,41.243851],[-73.961283,41.241994],[-73.96078299999999,41.239394],[-73.961383,41.234193999999995],[-73.953283,41.228994],[-73.950947,41.226346],[-73.947965,41.223101],[-73.944683,41.219594],[-73.939983,41.214493999999995],[-73.936782,41.210814],[-73.935982,41.209894],[-73.931482,41.204994],[-73.927229,41.198038],[-73.925682,41.195194],[-73.921697,41.186288],[-73.91438099999999,41.174195],[-73.911681,41.167795],[-73.909281,41.164395],[-73.906581,41.161895],[-73.899681,41.157295],[-73.895381,41.153994999999995],[-73.892481,41.150594999999996],[-73.88947999999999,41.145095],[-73.88748,41.138295],[-73.88739699999999,41.136860999999996],[-73.88718,41.133095],[-73.88758,41.128795],[-73.890866,41.110583],[-73.89141699999999,41.107318],[-73.89377999999999,41.093295999999995],[-73.89488,41.082395999999996],[-73.89468,41.079595999999995],[-73.89477699999999,41.070791],[-73.89478,41.070496],[-73.8947,41.069936999999996],[-73.89448,41.064596],[-73.89388,41.057896],[-73.89038,41.045795999999996],[-73.89027999999999,41.045196],[-73.88938,41.037597],[-73.889915,41.025749],[-73.890079,41.022597],[-73.893579,41.005297],[-73.893979,40.997197],[-73.90268,40.997296999999996],[-73.90500999999999,40.997591],[-73.907054,40.998476],[-73.91188,41.001297],[-73.9203372461027,41.0050806926432],[-73.9389630129011,41.0134136861441],[-73.9452212074961,41.0162135437528],[-73.95195263369808,41.0192251207471],[-73.9530653260279,41.019722928867104],[-73.95910027952569,41.0224229105011],[-73.96664708915749,41.0257992824],[-73.9670744044022,41.0259904592356],[-73.97737137616639,41.0305972278974],[-73.9998599974269,41.0406584262811],[-74.0135383260931,41.0467779823301],[-74.0245745921362,41.051715504323504],[-74.0258472191655,41.0522848657291],[-74.0335182628602,41.055716818783395],[-74.041049,41.059086],[-74.041054,41.059087999999996],[-74.0508612591911,41.0634371205403],[-74.0572375891754,41.0662647635307],[-74.0678918326591,41.070989487153696],[-74.0817250021555,41.0771239351603],[-74.09124215134639,41.0813444037158],[-74.092486,41.081896],[-74.0926420257918,41.081964941629],[-74.096786,41.083796],[-74.0968842207579,41.0838393700111],[-74.098226360631,41.0844320005548],[-74.1123976770765,41.0906894370101],[-74.1207999207891,41.094399502078296],[-74.127243519023,41.0972447145642],[-74.1294260249085,41.0982084141573],[-74.1425220440736,41.103991046142006],[-74.1465813979726,41.105783480117395],[-74.1471586104793,41.1060383520339],[-74.1500574751712,41.1073183644923],[-74.1583048714496,41.1109600556741],[-74.18239,41.121595]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36089","STATE":"36","COUNTY":"089","NAME":"St. Lawrence","LSAD":"County","CENSUSAREA":2680.377},"geometry":{"type":"Polygon","coordinates":[[[-74.72622806320749,44.994863072200594],[-74.72388099999999,44.977049],[-74.72381299999999,44.97654],[-74.72030699999999,44.953011],[-74.71113199999999,44.953008],[-74.689482,44.9529],[-74.668382,44.952777],[-74.667773,44.95277],[-74.64187199999999,44.952621],[-74.639191,44.933322],[-74.63121,44.875391],[-74.63047999999999,44.869392999999995],[-74.62928,44.861135999999995],[-74.62623599999999,44.838505999999995],[-74.62294,44.815154],[-74.622615,44.812765999999996],[-74.619912,44.792791],[-74.617402,44.774552],[-74.614223,44.752373999999996],[-74.61331799999999,44.74575],[-74.612561,44.739967],[-74.60967,44.718621],[-74.607362,44.703708],[-74.60457199999999,44.68647],[-74.602938,44.67662],[-74.57542,44.498487],[-74.571215,44.470241],[-74.55863,44.385141999999995],[-74.557124,44.375384],[-74.557047,44.372937],[-74.5535,44.351887],[-74.533879,44.231787],[-74.53222699999999,44.219522999999995],[-74.525683,44.170635999999995],[-74.544487,44.169413999999996],[-74.54363,44.162883],[-74.535156,44.09925],[-74.649076,44.088342999999995],[-74.738554,44.07982],[-74.749623,44.079156999999995],[-74.768108,44.077604],[-74.854171,44.070088999999996],[-74.889302,44.066829],[-75.06277899999999,44.0504],[-75.170159,44.096959],[-75.261169,44.136123],[-75.31203099999999,44.157618],[-75.31594,44.159275],[-75.319687,44.161100999999995],[-75.33317199999999,44.167668],[-75.381885,44.189625],[-75.388516,44.192532],[-75.41333399999999,44.203399],[-75.446124,44.217655],[-75.453879,44.221165],[-75.455805,44.221809],[-75.457886,44.222085],[-75.463865,44.225148],[-75.466092,44.225445],[-75.47105499999999,44.228781],[-75.474141,44.230174999999996],[-75.478022,44.231065],[-75.480822,44.232665],[-75.48518,44.234493],[-75.4897,44.237372],[-75.493708,44.237988],[-75.49737,44.241302],[-75.50975199999999,44.246897],[-75.531188,44.256476],[-75.533592,44.257563999999995],[-75.535433,44.258094],[-75.536484,44.258914],[-75.57472899999999,44.275773],[-75.587525,44.281445],[-75.59294299999999,44.283847],[-75.606582,44.289730999999996],[-75.619061,44.295049],[-75.629537,44.299541],[-75.645151,44.306269],[-75.66094,44.313007999999996],[-75.662729,44.31375],[-75.67060000000001,44.317014],[-75.68433999999999,44.322783],[-75.70424899999999,44.331644],[-75.735137,44.346353],[-75.751221,44.353234],[-75.76556599999999,44.359660999999996],[-75.784311,44.368106999999995],[-75.814189,44.381951],[-75.82342899999999,44.386274],[-75.839732,44.393851999999995],[-75.8600599283155,44.4032818662487],[-75.82083,44.432244],[-75.8114400958567,44.4605892515513],[-75.807778,44.471644],[-75.76623,44.515851],[-75.73821051623919,44.53513307927089],[-75.727052,44.542812],[-75.696586,44.567583],[-75.662381,44.591933999999995],[-75.6608838843897,44.592876240356006],[-75.618364,44.619637],[-75.6103096123732,44.625848762581796],[-75.580912,44.648520999999995],[-75.5800378335611,44.6491801589514],[-75.52094209041239,44.6937408814312],[-75.5061508419351,44.7048941165614],[-75.505903,44.705081],[-75.50012907423441,44.7081748239223],[-75.47969000794969,44.71912662254049],[-75.477642,44.720223999999995],[-75.4580858477086,44.733372752834896],[-75.4441105902894,44.7427691413918],[-75.423943,44.756329],[-75.4138846245598,44.7688901035391],[-75.397007,44.773471],[-75.387371,44.78003],[-75.37234744676819,44.783110029851],[-75.3663601101371,44.7894715813668],[-75.34652705482709,44.80556255309519],[-75.333744,44.806377999999995],[-75.3071644335197,44.82565258007],[-75.30648671481909,44.8261440381745],[-75.30763,44.836813],[-75.283136,44.849156],[-75.26825,44.855118999999995],[-75.255517,44.857651],[-75.2457053666933,44.8640754316298],[-75.241303,44.866958],[-75.228635,44.8679],[-75.2185476826685,44.875539579884695],[-75.203012,44.877548],[-75.196227,44.881367999999995],[-75.188283,44.88322],[-75.165123,44.893324],[-75.1429575141905,44.90023735617849],[-75.1415209445877,44.9020929250554],[-75.1339765019921,44.9118378290594],[-75.1197565756803,44.9178251656906],[-75.10516243448379,44.92119304889079],[-75.096659,44.927067],[-75.0662447246264,44.930174061089204],[-75.059966,44.93457],[-75.027125,44.946568],[-75.0154399031161,44.9528621027093],[-75.005155,44.958402],[-74.99965499999999,44.965920999999994],[-74.99927,44.971638],[-74.992756,44.977449],[-74.97246299999999,44.983402],[-74.946686,44.984665],[-74.9394468687615,44.984420891934],[-74.907956,44.983359],[-74.900733,44.992754],[-74.88783699999999,45.000046],[-74.87723199999999,45.001362],[-74.8686625287791,45.001273714403396],[-74.861926776882,45.002770552187],[-74.85444259521559,45.0053900056179],[-74.846175,45.01029],[-74.83466899999999,45.014683],[-74.826578,45.01585],[-74.81964119107609,45.012874187284396],[-74.81326299999999,45.013543],[-74.80542125751259,45.011003141867796],[-74.7994339208815,45.009132096451104],[-74.793148,45.004647],[-74.7687488079565,45.003893175086006],[-74.760215,44.994946],[-74.7571835295881,44.994095631189104],[-74.74463999999999,44.990576999999995],[-74.731301,44.990421999999995],[-74.72622806320749,44.994863072200594]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36093","STATE":"36","COUNTY":"093","NAME":"Schenectady","LSAD":"County","CENSUSAREA":204.516},"geometry":{"type":"Polygon","coordinates":[[[-74.180274,42.729979],[-74.182678,42.719359999999995],[-74.184299,42.712494],[-74.19802399999999,42.711251],[-74.202713,42.710826],[-74.239846,42.718924],[-74.24101399999999,42.716857],[-74.243059,42.716682],[-74.259466,42.715278],[-74.272295,42.71427],[-74.271881,42.715711999999996],[-74.27076799999999,42.719542],[-74.27784,42.719471999999996],[-74.282184,42.724202999999996],[-74.292035,42.73412],[-74.305176,42.747242],[-74.306665,42.750074],[-74.30624499999999,42.751127],[-74.304811,42.752187],[-74.298311,42.75445],[-74.293168,42.755762],[-74.286988,42.756685],[-74.275444,42.756792],[-74.269722,42.757368],[-74.26383899999999,42.755567],[-74.258797,42.757135],[-74.258034,42.758770999999996],[-74.255292,42.760701],[-74.25168599999999,42.765305999999995],[-74.25254799999999,42.768446999999995],[-74.25441,42.772237],[-74.2547,42.774709],[-74.251633,42.780888999999995],[-74.247788,42.78507],[-74.248131,42.786885999999996],[-74.249573,42.788267],[-74.251808,42.789117],[-74.253433,42.790532999999996],[-74.253884,42.794503999999996],[-74.254442,42.795297],[-74.256547,42.79587],[-74.260457,42.79512],[-74.263314,42.796534],[-74.264286,42.800115999999996],[-74.258528,42.802386],[-74.25532299999999,42.806064],[-74.254947,42.809815],[-74.256829,42.812214],[-74.238328,42.821432],[-74.207546,42.836552999999995],[-74.202164,42.839113],[-74.19921,42.840576],[-74.191586,42.84435],[-74.190336,42.844964999999995],[-74.186414,42.846893],[-74.178651,42.85071],[-74.15109,42.864047],[-74.12520599999999,42.87658],[-74.087249,42.895630999999995],[-74.08484399999999,42.896868999999995],[-74.08350399999999,42.897821],[-74.083732,42.900017],[-74.084394,42.904657],[-74.084609,42.906169],[-74.08567699999999,42.91301],[-74.08622799999999,42.914500000000004],[-74.085836,42.915309],[-74.09298,42.955867999999995],[-74.08805199999999,42.955332999999996],[-74.079909,42.954823999999995],[-74.055605,42.953289],[-74.046109,42.949784],[-74.04499799999999,42.949369],[-74.04226899999999,42.94835],[-74.036928,42.944981999999996],[-74.032911,42.943135],[-74.03197,42.94283],[-74.022832,42.940121],[-74.020656,42.939389],[-74.020063,42.939034],[-74.019938,42.939147],[-74.018992,42.938829],[-74.011951,42.936088],[-74.009581,42.935137999999995],[-74.006531,42.934073],[-73.996214,42.928276],[-73.995375,42.927813],[-73.995167,42.927707999999996],[-73.993861,42.926894999999995],[-73.991661,42.9255],[-73.97684199999999,42.915898999999996],[-73.964788,42.90206],[-73.959256,42.899225],[-73.955458,42.897306],[-73.945666,42.900652],[-73.936926,42.904453],[-73.934493,42.905527],[-73.927871,42.907545999999996],[-73.921269,42.909531],[-73.918483,42.910356],[-73.904386,42.911162999999995],[-73.90415999999999,42.909771],[-73.903272,42.904294],[-73.902627,42.900284],[-73.902153,42.897084],[-73.900903,42.888628999999995],[-73.900466,42.885667999999995],[-73.89950999999999,42.878524],[-73.899124,42.875642],[-73.898074,42.867340999999996],[-73.898029,42.866727999999995],[-73.895938,42.851076],[-73.89056599999999,42.850277],[-73.887982,42.850182],[-73.88176899999999,42.850876],[-73.879663,42.848575],[-73.876722,42.837505],[-73.87586399999999,42.834274],[-73.86676899999999,42.828376999999996],[-73.858468,42.819977],[-73.856286,42.816404999999996],[-73.85274199999999,42.811493],[-73.84626899999999,42.804808],[-73.84586399999999,42.804375],[-73.845803,42.80428],[-73.84156899999999,42.797875],[-73.83216999999999,42.793076],[-73.831302,42.792266],[-73.829064,42.790177],[-73.828468,42.784879],[-73.82766699999999,42.783775999999996],[-73.822166,42.780277999999996],[-73.80936899999999,42.778869],[-73.809603,42.775016],[-73.813281,42.774575999999996],[-73.824516,42.773236999999995],[-73.825127,42.773163],[-73.832618,42.772262999999995],[-73.840189,42.771355],[-73.852189,42.76992],[-73.859157,42.769089],[-73.868295,42.767973],[-73.87129399999999,42.767494],[-73.872614,42.767544],[-73.87929,42.766687],[-73.879877,42.766616],[-73.887723,42.765858],[-73.889825,42.765460999999995],[-73.891498,42.765260999999995],[-73.89820499999999,42.764466999999996],[-73.899621,42.764249],[-73.906785,42.763431999999995],[-73.911688,42.763104],[-73.929994,42.761134999999996],[-73.933672,42.760709999999996],[-73.938082,42.759988],[-73.942683,42.759648],[-73.942965,42.759575999999996],[-73.943545,42.759541],[-73.94447,42.759451],[-73.960228,42.757571999999996],[-73.967018,42.756654],[-73.976255,42.7554],[-73.985361,42.754166],[-73.99402599999999,42.752992],[-74.038517,42.747358],[-74.04428899999999,42.74668],[-74.051304,42.745742],[-74.0544,42.745470999999995],[-74.106499,42.739235],[-74.112599,42.738502],[-74.113732,42.738333],[-74.135511,42.735676],[-74.168808,42.731449999999995],[-74.180274,42.729979]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36095","STATE":"36","COUNTY":"095","NAME":"Schoharie","LSAD":"County","CENSUSAREA":621.819},"geometry":{"type":"Polygon","coordinates":[[[-74.648298,42.829558],[-74.594261,42.818782],[-74.583047,42.816688],[-74.562477,42.812916],[-74.555959,42.810669],[-74.55407799999999,42.809863],[-74.543382,42.805941999999995],[-74.54327099999999,42.805901999999996],[-74.535628,42.8031],[-74.534837,42.80281],[-74.52077299999999,42.797624],[-74.514654,42.795336999999996],[-74.50598099999999,42.792049999999996],[-74.47800099999999,42.781696],[-74.47761299999999,42.780454999999996],[-74.476343,42.781074],[-74.466253,42.77728],[-74.454911,42.772979],[-74.450783,42.773312],[-74.411384,42.776489999999995],[-74.392493,42.778016],[-74.392231,42.778037],[-74.35103099999999,42.78127],[-74.34970299999999,42.781375999999995],[-74.338796,42.782241],[-74.32471699999999,42.783428],[-74.299429,42.783609999999996],[-74.289446,42.783805],[-74.26529,42.795581],[-74.263314,42.796534],[-74.260457,42.79512],[-74.256547,42.79587],[-74.254442,42.795297],[-74.253884,42.794503999999996],[-74.253433,42.790532999999996],[-74.251808,42.789117],[-74.249573,42.788267],[-74.248131,42.786885999999996],[-74.247788,42.78507],[-74.251633,42.780888999999995],[-74.2547,42.774709],[-74.25441,42.772237],[-74.25254799999999,42.768446999999995],[-74.25168599999999,42.765305999999995],[-74.255292,42.760701],[-74.258034,42.758770999999996],[-74.258797,42.757135],[-74.26383899999999,42.755567],[-74.269722,42.757368],[-74.275444,42.756792],[-74.286988,42.756685],[-74.293168,42.755762],[-74.298311,42.75445],[-74.304811,42.752187],[-74.30624499999999,42.751127],[-74.306665,42.750074],[-74.305176,42.747242],[-74.292035,42.73412],[-74.282184,42.724202999999996],[-74.27784,42.719471999999996],[-74.27076799999999,42.719542],[-74.271881,42.715711999999996],[-74.272295,42.71427],[-74.259466,42.715278],[-74.243059,42.716682],[-74.24101399999999,42.716857],[-74.239846,42.718924],[-74.202713,42.710826],[-74.19802399999999,42.711251],[-74.184299,42.712494],[-74.182678,42.719359999999995],[-74.180274,42.729979],[-74.172928,42.723963999999995],[-74.17155799999999,42.722842],[-74.166155,42.718416],[-74.16476899999999,42.71676],[-74.165066,42.715303999999996],[-74.166241,42.709536],[-74.169525,42.691365],[-74.16886699999999,42.681187],[-74.168756,42.679452],[-74.168525,42.67431],[-74.169725,42.667426],[-74.171166,42.664544],[-74.173546,42.659247],[-74.173428,42.657318],[-74.174775,42.65587],[-74.179324,42.646384],[-74.182059,42.641788],[-74.184235,42.639621999999996],[-74.18596,42.636717],[-74.192024,42.627849],[-74.19256899999999,42.627069],[-74.192731,42.625658],[-74.193495,42.618998999999995],[-74.20131599999999,42.611239999999995],[-74.205223,42.607431],[-74.210509,42.600989999999996],[-74.215166,42.597435],[-74.21961399999999,42.591406],[-74.220012,42.588021],[-74.220274,42.585412],[-74.233995,42.575688],[-74.236954,42.564971],[-74.23701799999999,42.564811],[-74.237081,42.564629],[-74.23762099999999,42.563123999999995],[-74.236959,42.56012],[-74.24157199999999,42.550802],[-74.234419,42.537839999999996],[-74.229186,42.529284],[-74.225639,42.526402999999995],[-74.22560299999999,42.518166],[-74.225186,42.511179999999996],[-74.22498499999999,42.50855],[-74.226568,42.502632999999996],[-74.226447,42.499233],[-74.227294,42.497231],[-74.228501,42.494381],[-74.234037,42.487739999999995],[-74.236447,42.485459],[-74.241629,42.472035999999996],[-74.244484,42.470182],[-74.25243499999999,42.445336999999995],[-74.256018,42.437915],[-74.264731,42.420127],[-74.26486299999999,42.419863],[-74.264755,42.418876],[-74.263469,42.407126999999996],[-74.254303,42.408207],[-74.25426999999999,42.408102],[-74.245195,42.378799],[-74.244692,42.377159],[-74.246454,42.378851999999995],[-74.25506,42.379824],[-74.258911,42.379151],[-74.266496,42.37343],[-74.27024,42.367528],[-74.273474,42.365032],[-74.276645,42.363349],[-74.281931,42.362773],[-74.284033,42.361761],[-74.29300099999999,42.36121],[-74.29946799999999,42.362575],[-74.303797,42.36101],[-74.30854599999999,42.359817],[-74.31258199999999,42.35709],[-74.318938,42.360554],[-74.320965,42.360661],[-74.324843,42.359834],[-74.329364,42.357375],[-74.332793,42.35715],[-74.337012,42.358281999999996],[-74.340968,42.358478999999996],[-74.346087,42.355691],[-74.348139,42.357997],[-74.351969,42.360279999999996],[-74.355323,42.361142],[-74.356697,42.364242999999995],[-74.362976,42.36728],[-74.36688199999999,42.367971],[-74.371723,42.370145],[-74.376179,42.370655],[-74.37831899999999,42.372487],[-74.37905099999999,42.373872999999996],[-74.383969,42.372565],[-74.41895099999999,42.362193999999995],[-74.43181,42.358436],[-74.438155,42.35658],[-74.443506,42.355017],[-74.45622399999999,42.360126],[-74.467889,42.364810999999996],[-74.476274,42.368178],[-74.498953,42.377145999999996],[-74.517562,42.384484],[-74.526693,42.388085],[-74.543474,42.394704],[-74.55258599999999,42.398299],[-74.56752399999999,42.404193],[-74.588861,42.412583],[-74.617778,42.423946],[-74.618895,42.424389],[-74.645847,42.4516],[-74.657011,42.462885],[-74.664092,42.470043],[-74.67161899999999,42.477652],[-74.695644,42.501822999999995],[-74.699859,42.506049999999995],[-74.703761,42.509962],[-74.71158,42.517799],[-74.698442,42.533559],[-74.686092,42.548214],[-74.681579,42.553577999999995],[-74.681471,42.553706],[-74.672428,42.564454999999995],[-74.672018,42.564836],[-74.670576,42.566948],[-74.668931,42.569237],[-74.657468,42.586721],[-74.655641,42.589144999999995],[-74.64045399999999,42.612334999999995],[-74.639594,42.613816],[-74.63297399999999,42.62343],[-74.630652,42.62677],[-74.631126,42.628931],[-74.634011,42.644379],[-74.634637,42.647808999999995],[-74.635302,42.649733],[-74.635763,42.651981],[-74.63884399999999,42.661558],[-74.639515,42.663654],[-74.649074,42.694348],[-74.65930399999999,42.727463],[-74.659509,42.728038],[-74.660305,42.730275],[-74.664154,42.741434999999996],[-74.664666,42.742678],[-74.664889,42.743266],[-74.667512,42.75071],[-74.668031,42.764592],[-74.665217,42.792237],[-74.648298,42.829558]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36097","STATE":"36","COUNTY":"097","NAME":"Schuyler","LSAD":"County","CENSUSAREA":328.333},"geometry":{"type":"Polygon","coordinates":[[[-76.96502799999999,42.278495],[-76.99747599999999,42.278217],[-77.006778,42.277673],[-77.074784,42.275476],[-77.088804,42.27202],[-77.099657,42.272355999999995],[-77.099704,42.272859],[-77.09975399999999,42.274215],[-77.10016399999999,42.284939],[-77.100996,42.301285],[-77.10117,42.304914],[-77.10143,42.310503999999995],[-77.104328,42.375071999999996],[-77.104873,42.389291],[-77.105181,42.406846],[-77.105282,42.409549],[-77.105448,42.418014],[-77.106062,42.439346],[-77.105814,42.442676999999996],[-77.107203,42.483771],[-77.092918,42.483947],[-77.08106699999999,42.484094],[-77.04091799999999,42.48459],[-76.989329,42.484821],[-76.98795,42.463249999999995],[-76.964456,42.46425],[-76.963977,42.459185999999995],[-76.942864,42.460259],[-76.934649,42.460691],[-76.903319,42.462281999999995],[-76.889805,42.463054],[-76.898575,42.484254],[-76.900841,42.493812],[-76.900689,42.499224999999996],[-76.899485,42.520631],[-76.895596,42.541537],[-76.852441,42.542688999999996],[-76.849717,42.542586],[-76.846486,42.542832999999995],[-76.834919,42.543144999999996],[-76.818812,42.54358],[-76.805033,42.543942],[-76.79730599999999,42.544165],[-76.79163,42.544297],[-76.788451,42.544385999999996],[-76.779929,42.544624],[-76.760558,42.545114999999996],[-76.745229,42.545494],[-76.73829599999999,42.545693],[-76.69665499999999,42.54679],[-76.69596299999999,42.536477],[-76.693804,42.502742],[-76.693292,42.492123],[-76.692134,42.477906],[-76.69030699999999,42.452335],[-76.68952999999999,42.44052],[-76.689522,42.440318999999995],[-76.68949599999999,42.440017],[-76.689171,42.435674999999996],[-76.688212,42.419644],[-76.686622,42.390350999999995],[-76.685938,42.373194],[-76.690552,42.373217],[-76.68972699999999,42.313443],[-76.691069,42.313319],[-76.691317,42.295904],[-76.691406,42.284307],[-76.670135,42.283933],[-76.62707,42.283046],[-76.619303,42.282852999999996],[-76.619503,42.266366],[-76.619438,42.262805],[-76.61942599999999,42.262162],[-76.619301,42.255257],[-76.61953299999999,42.248664],[-76.631095,42.241172],[-76.63364,42.239495],[-76.639369,42.235654],[-76.642256,42.233720999999996],[-76.64811399999999,42.238094],[-76.650787,42.23806],[-76.662498,42.237913],[-76.665358,42.237877],[-76.68566799999999,42.237677999999995],[-76.685779,42.248332999999995],[-76.728217,42.247963],[-76.73056799999999,42.248064],[-76.732677,42.248052],[-76.732761,42.254093999999995],[-76.73310699999999,42.266821],[-76.73391199999999,42.29372],[-76.745053,42.294001],[-76.762586,42.294115],[-76.76483499999999,42.294297],[-76.769577,42.294076],[-76.771069,42.29418],[-76.782561,42.294422999999995],[-76.78797,42.294339],[-76.791508,42.294314],[-76.803428,42.294385999999996],[-76.80774799999999,42.294151],[-76.842907,42.293755999999995],[-76.846249,42.293355999999996],[-76.848191,42.293268],[-76.85095,42.293313999999995],[-76.85484199999999,42.293101],[-76.858441,42.292795999999996],[-76.892864,42.290977],[-76.90048999999999,42.290602],[-76.90115,42.290569],[-76.908082,42.290227],[-76.91358,42.289956],[-76.92627499999999,42.28933],[-76.964761,42.28744],[-76.96502799999999,42.278495]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36099","STATE":"36","COUNTY":"099","NAME":"Seneca","LSAD":"County","CENSUSAREA":323.705},"geometry":{"type":"Polygon","coordinates":[[[-76.66654299999999,42.623456999999995],[-76.663139,42.616354],[-76.660242,42.610827],[-76.65622599999999,42.604797999999995],[-76.64531699999999,42.591708],[-76.638075,42.584404],[-76.626761,42.573868],[-76.618239,42.566652],[-76.612174,42.562864999999995],[-76.605987,42.559413],[-76.585989,42.54991],[-76.611043,42.549147999999995],[-76.617654,42.549068],[-76.64994,42.548012],[-76.67142,42.547391999999995],[-76.673019,42.547348],[-76.683735,42.547117],[-76.69665499999999,42.54679],[-76.73829599999999,42.545693],[-76.745229,42.545494],[-76.760558,42.545114999999996],[-76.779929,42.544624],[-76.788451,42.544385999999996],[-76.79163,42.544297],[-76.79730599999999,42.544165],[-76.805033,42.543942],[-76.818812,42.54358],[-76.834919,42.543144999999996],[-76.846486,42.542832999999995],[-76.849717,42.542586],[-76.852441,42.542688999999996],[-76.895596,42.541537],[-76.894258,42.562545],[-76.894061,42.578795],[-76.894139,42.585029999999996],[-76.894314,42.598583],[-76.894438,42.607333],[-76.894673,42.623216],[-76.89453499999999,42.629155],[-76.894706,42.636882],[-76.895349,42.656255],[-76.897117,42.66365],[-76.89869399999999,42.666638999999996],[-76.908013,42.679071],[-76.933111,42.712306999999996],[-76.936387,42.7173],[-76.93870199999999,42.721525],[-76.942945,42.731921],[-76.944986,42.737294],[-76.946737,42.749742999999995],[-76.94766,42.757639],[-76.94764099999999,42.759178999999996],[-76.947429,42.76443],[-76.971392,42.764223],[-76.971806,42.766968999999996],[-76.97538,42.769155999999995],[-76.976193,42.771370999999995],[-76.977888,42.77324],[-76.978053,42.775656],[-76.97723599999999,42.780181],[-76.976534,42.781746999999996],[-76.974745,42.782906],[-76.97537299999999,42.785059],[-76.974727,42.786607],[-76.97502999999999,42.790061],[-76.976959,42.79844],[-76.975112,42.801511],[-76.97536099999999,42.804317999999995],[-76.976207,42.80858],[-76.975838,42.810233],[-76.97413499999999,42.812087999999996],[-76.974575,42.813265],[-76.97688099999999,42.814555999999996],[-76.976435,42.816629999999996],[-76.977494,42.819921],[-76.975518,42.822641],[-76.97554,42.823947],[-76.978318,42.829042],[-76.977453,42.830588999999996],[-76.97345299999999,42.833746999999995],[-76.972963,42.837568999999995],[-76.97439299999999,42.840216],[-76.975399,42.842237],[-76.977921,42.850615],[-76.98064699999999,42.857064],[-76.981257,42.862066],[-76.98034799999999,42.864657],[-76.97980199999999,42.864855999999996],[-76.97962199999999,42.865448],[-76.978526,42.869071999999996],[-76.973112,42.871601999999996],[-76.963365,42.872945],[-76.963359,42.87815],[-76.963409,42.884161],[-76.96340599999999,42.890333999999996],[-76.96334999999999,42.90302],[-76.963371,42.906253],[-76.96339499999999,42.909574],[-76.963408,42.918803],[-76.963562,42.946501999999995],[-76.963687,42.955698999999996],[-76.963701,42.9696],[-76.963563,42.972915],[-76.963641,42.978455],[-76.963745,42.990759999999995],[-76.963926,43.013157],[-76.929767,43.014959],[-76.926053,43.01517],[-76.8949,43.016814],[-76.878562,43.017629],[-76.859518,43.018401999999995],[-76.859517,43.018403],[-76.858773,43.018434],[-76.83376899999999,43.019445999999995],[-76.79677199999999,43.021043],[-76.744173,43.022979],[-76.71380599999999,43.024035],[-76.711732,43.020451],[-76.711202,43.018042],[-76.712409,43.015766],[-76.718699,43.011337],[-76.721657,43.007858999999996],[-76.721914,43.006791],[-76.720766,43.001742],[-76.720654,42.995425999999995],[-76.721437,42.993668],[-76.728814,42.987764],[-76.728156,42.98571],[-76.72827099999999,42.981004],[-76.727623,42.978144],[-76.728658,42.976071999999995],[-76.73674,42.970286],[-76.736668,42.963035999999995],[-76.736708,42.962543],[-76.73797499999999,42.961286],[-76.738109,42.956586],[-76.739361,42.954473],[-76.737207,42.950041],[-76.73686599999999,42.949132999999996],[-76.734327,42.944879],[-76.734285,42.94481],[-76.73473899999999,42.942675],[-76.737956,42.927037],[-76.738308,42.925272],[-76.738357,42.924775],[-76.73917999999999,42.916835],[-76.73883099999999,42.911387999999995],[-76.73746,42.902105999999996],[-76.736504,42.899836],[-76.735524,42.897507999999995],[-76.733468,42.894245999999995],[-76.727713,42.884743],[-76.723719,42.876774],[-76.72173599999999,42.871089999999995],[-76.721246,42.869578999999995],[-76.720833,42.862643],[-76.721025,42.854254999999995],[-76.720381,42.850736],[-76.71885,42.846627],[-76.717185,42.83883],[-76.717575,42.83256],[-76.71951399999999,42.825446],[-76.72327299999999,42.817923],[-76.727415,42.810551],[-76.729073,42.808136999999995],[-76.730449,42.806142],[-76.738312,42.794686999999996],[-76.74006,42.789418999999995],[-76.740201,42.782885],[-76.740003,42.776446],[-76.73947299999999,42.770106],[-76.737368,42.754185],[-76.73751899999999,42.753910999999995],[-76.736057,42.745566],[-76.734241,42.733236999999995],[-76.733454,42.727895],[-76.731636,42.72074],[-76.728951,42.712897999999996],[-76.7234,42.704122],[-76.719695,42.700415],[-76.710494,42.693397],[-76.703182,42.688628],[-76.697831,42.684557],[-76.69542899999999,42.68273],[-76.690294,42.677310999999996],[-76.687899,42.674783999999995],[-76.685311,42.670280999999996],[-76.671717,42.635691],[-76.66654299999999,42.623456999999995]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36101","STATE":"36","COUNTY":"101","NAME":"Steuben","LSAD":"County","CENSUSAREA":1390.559},"geometry":{"type":"Polygon","coordinates":[[[-77.505308,42.00007],[-77.635717980832,41.99938335951519],[-77.74993099999999,41.998782],[-77.74851,42.031893],[-77.747287,42.059863],[-77.746871,42.069534999999995],[-77.745466,42.102266],[-77.745085,42.11446],[-77.744888,42.124975],[-77.743888,42.144515],[-77.743135,42.160092999999996],[-77.74301899999999,42.162453],[-77.741531,42.192209999999996],[-77.740922,42.204702],[-77.73929799999999,42.236353],[-77.737493,42.266875999999996],[-77.736813,42.28153],[-77.73549899999999,42.307488],[-77.735092,42.315422],[-77.734507,42.327214999999995],[-77.734206,42.333262],[-77.733682,42.344034],[-77.732125,42.379951999999996],[-77.73105799999999,42.404122],[-77.729473,42.404039],[-77.726111,42.404043],[-77.72478,42.428469],[-77.723677,42.458262999999995],[-77.723134,42.464400000000005],[-77.72296399999999,42.471216],[-77.722673,42.47971],[-77.72061699999999,42.535066],[-77.70400000000001,42.534586999999995],[-77.704049,42.535320999999996],[-77.69711,42.535067],[-77.668651,42.535067],[-77.661315,42.535067],[-77.66122,42.538128],[-77.660879,42.549067],[-77.659917,42.580408999999996],[-77.654259,42.580394],[-77.650847,42.580369],[-77.622424,42.580123],[-77.621292,42.579899],[-77.620457,42.580163999999996],[-77.58897499999999,42.579572],[-77.58370000000001,42.579439],[-77.574741,42.579193],[-77.539675,42.578399],[-77.490889,42.577287999999996],[-77.485171,42.577214],[-77.47390299999999,42.577092],[-77.445871,42.576789],[-77.423093,42.576637],[-77.36650499999999,42.576367999999995],[-77.356624,42.576343],[-77.352148,42.576332],[-77.335139,42.576232999999995],[-77.306803,42.576206],[-77.242763,42.576374],[-77.218531,42.576494],[-77.192152,42.576561999999996],[-77.17654399999999,42.576657],[-77.166647,42.576719999999995],[-77.14994,42.57683],[-77.143795,42.576868999999995],[-77.14749499999999,42.565069],[-77.14879499999999,42.559669],[-77.14959499999999,42.553869999999996],[-77.149695,42.549969999999995],[-77.149295,42.54587],[-77.147295,42.53507],[-77.146895,42.53207],[-77.147695,42.52397],[-77.149495,42.51527],[-77.150095,42.50787],[-77.149502,42.50007],[-77.147414,42.497101],[-77.143946,42.494704999999996],[-77.138904,42.494279],[-77.130354,42.496005],[-77.127279,42.497259],[-77.121793,42.50087],[-77.117893,42.50387],[-77.11439,42.50813],[-77.107593,42.50577],[-77.107581,42.505365],[-77.107203,42.483771],[-77.105814,42.442676999999996],[-77.106062,42.439346],[-77.105448,42.418014],[-77.105282,42.409549],[-77.105181,42.406846],[-77.104873,42.389291],[-77.104328,42.375071999999996],[-77.10143,42.310503999999995],[-77.10117,42.304914],[-77.100996,42.301285],[-77.10016399999999,42.284939],[-77.09975399999999,42.274215],[-77.099704,42.272859],[-77.099657,42.272355999999995],[-77.088804,42.27202],[-77.074784,42.275476],[-77.006778,42.277673],[-76.99747599999999,42.278217],[-76.96502799999999,42.278495],[-76.9655,42.261914999999995],[-76.96584,42.250077],[-76.96535,42.223583999999995],[-76.965349,42.208026],[-76.96537599999999,42.199155999999995],[-76.965561,42.174588],[-76.96573699999999,42.154694],[-76.965953,42.151821999999996],[-76.96575399999999,42.144580999999995],[-76.96609099999999,42.143547],[-76.966109,42.143460999999995],[-76.965895,42.141653],[-76.965853,42.134135],[-76.965946,42.127077],[-76.965965,42.125935999999996],[-76.965954,42.125716],[-76.965977,42.125074],[-76.965901,42.123861],[-76.965852,42.123155],[-76.965689,42.120813],[-76.965786,42.092273999999996],[-76.965786,42.08761],[-76.965786,42.076746],[-76.965786,42.076173999999995],[-76.96578199999999,42.07273],[-76.965884,42.071874],[-76.965886,42.071856],[-76.965886,42.06997],[-76.965886,42.061042],[-76.965886,42.05345],[-76.965886,42.048846],[-76.965886,42.04371],[-76.96592799999999,42.039077],[-76.9657279732943,42.0012735436595],[-77.007536,42.000819],[-77.007635,42.000848],[-77.0355212267373,42.00065542724529],[-77.063676,42.000461],[-77.08327077535189,42.0001186686739],[-77.11458948949509,41.99957151379449],[-77.124693,41.999395],[-77.2005104585099,41.999529458138795],[-77.31626805542379,41.99973474794059],[-77.4282252442071,41.999933297925296],[-77.4565781532607,41.9999835802673],[-77.5039770006392,42.000067639545],[-77.505308,42.00007]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36107","STATE":"36","COUNTY":"107","NAME":"Tioga","LSAD":"County","CENSUSAREA":518.602},"geometry":{"type":"Polygon","coordinates":[[[-76.55762413688969,42.000148906120295],[-76.557265,42.003448999999996],[-76.558222,42.006232],[-76.561303,42.009502999999995],[-76.560673,42.010833999999996],[-76.553991,42.025134],[-76.548512,42.036783],[-76.54755899999999,42.03881],[-76.542541,42.049347],[-76.541726,42.051293],[-76.547073,42.068878999999995],[-76.550573,42.079623999999995],[-76.553912,42.104379],[-76.553913,42.104383999999996],[-76.555077,42.113135],[-76.556224,42.126683],[-76.559409,42.131251],[-76.554237,42.131467],[-76.55811299999999,42.135011],[-76.558618,42.136381],[-76.55667199999999,42.138982999999996],[-76.55760699999999,42.141866],[-76.557633,42.144661],[-76.559386,42.148483999999996],[-76.561746,42.149724],[-76.563565,42.152594],[-76.563133,42.154184],[-76.561674,42.154925],[-76.562732,42.155912],[-76.542377,42.155522999999995],[-76.536507,42.155403],[-76.536166,42.203599],[-76.535856,42.248687],[-76.535782,42.250074],[-76.538349,42.281755],[-76.530447,42.28169],[-76.518965,42.281593],[-76.492989,42.281166],[-76.48667499999999,42.281290999999996],[-76.480025,42.281054999999995],[-76.473962,42.281132],[-76.47449399999999,42.263760999999995],[-76.41619899999999,42.262975999999995],[-76.415475,42.305577],[-76.415305,42.318368],[-76.409084,42.318408],[-76.400438,42.318473999999995],[-76.39465,42.318509],[-76.374256,42.318172],[-76.350871,42.318287999999995],[-76.350619,42.308437],[-76.342652,42.308402],[-76.327849,42.308349],[-76.314197,42.308299],[-76.301873,42.308219],[-76.300722,42.308171],[-76.299132,42.308194],[-76.28822,42.308226999999995],[-76.288174,42.296763999999996],[-76.283191,42.296752999999995],[-76.271896,42.296727999999995],[-76.250149,42.296676],[-76.24900199999999,42.301078],[-76.250416,42.306576],[-76.251407,42.309912999999995],[-76.25026,42.310773999999995],[-76.25048699999999,42.313162],[-76.249364,42.315740999999996],[-76.25108,42.319601999999996],[-76.25004299999999,42.320853],[-76.251363,42.324894],[-76.24994,42.328092999999996],[-76.24716599999999,42.328877999999996],[-76.246872,42.330708],[-76.24597,42.332315],[-76.247264,42.334322],[-76.24576499999999,42.335588],[-76.245476,42.338232999999995],[-76.24612499999999,42.340001],[-76.245499,42.341651999999996],[-76.24369399999999,42.342697],[-76.241765,42.34657],[-76.240318,42.347235999999995],[-76.23965299999999,42.350032999999996],[-76.23781799999999,42.350998],[-76.238768,42.354743],[-76.23855499999999,42.356621],[-76.239779,42.359705],[-76.242209,42.362026],[-76.24198799999999,42.363392999999995],[-76.246506,42.36546],[-76.250266,42.366530999999995],[-76.251969,42.368015],[-76.253728,42.368822],[-76.254571,42.370056999999996],[-76.258538,42.371338],[-76.260055,42.372673],[-76.264718,42.37408],[-76.265062,42.375155],[-76.26786,42.376138999999995],[-76.270806,42.376864999999995],[-76.272257,42.376498],[-76.27649199999999,42.377251],[-76.278356,42.378114],[-76.27940699999999,42.379887],[-76.282926,42.380047],[-76.283768,42.379459999999995],[-76.28915099999999,42.380015],[-76.289973,42.37956],[-76.295481,42.380109999999995],[-76.296229,42.381279],[-76.298429,42.381546],[-76.29919799999999,42.382822],[-76.299627,42.384447],[-76.297775,42.386275],[-76.29629299999999,42.389623],[-76.29843199999999,42.395689],[-76.296581,42.399648],[-76.29657999999999,42.399668999999996],[-76.296543,42.399788],[-76.296543,42.399806],[-76.296526,42.399873],[-76.296526,42.399877],[-76.294697,42.405086],[-76.29344999999999,42.405646],[-76.29318599999999,42.406403],[-76.269718,42.407157999999995],[-76.253359,42.407568],[-76.22318899999999,42.408324],[-76.21323699999999,42.408553],[-76.189943,42.409028],[-76.18466699999999,42.409144],[-76.171115,42.409441],[-76.157659,42.409735],[-76.139922,42.410123999999996],[-76.132738,42.410281],[-76.13262499999999,42.410283],[-76.130181,42.410337],[-76.129673,42.402038],[-76.124521,42.402013],[-76.124467,42.392001],[-76.122962,42.391901999999995],[-76.120211,42.380738],[-76.12285399999999,42.380787],[-76.12265,42.376867999999995],[-76.122439,42.367187],[-76.114554,42.366971],[-76.114618,42.357284],[-76.111942,42.357265999999996],[-76.111403,42.347318],[-76.109912,42.347344],[-76.109763,42.344913999999996],[-76.109286,42.337325],[-76.116702,42.33723],[-76.116357,42.326566],[-76.112427,42.326522999999995],[-76.11240099999999,42.318602999999996],[-76.106394,42.318732],[-76.10625399999999,42.310345999999996],[-76.10162199999999,42.310395],[-76.101593,42.303328],[-76.099115,42.303398],[-76.098759,42.293653],[-76.106572,42.29353],[-76.106582,42.287355999999996],[-76.101226,42.287288],[-76.100612,42.278484],[-76.09186199999999,42.278653999999996],[-76.087728,42.278752],[-76.08725199999999,42.271676],[-76.083445,42.271812],[-76.082815,42.264742],[-76.081214,42.264711],[-76.080681,42.258084],[-76.096153,42.257509],[-76.096346,42.249521],[-76.090908,42.249635999999995],[-76.090594,42.244225],[-76.087197,42.244237],[-76.086848,42.240297999999996],[-76.08649799999999,42.234863],[-76.084705,42.234863],[-76.084688,42.234474],[-76.084499,42.230471],[-76.08113399999999,42.230495],[-76.081097,42.229394],[-76.081116,42.22761],[-76.08111199999999,42.224886],[-76.081088,42.218643],[-76.082854,42.218601],[-76.08256,42.213066],[-76.086671,42.212905],[-76.086608,42.207955],[-76.086601,42.205476999999995],[-76.085211,42.205464],[-76.084874,42.193639],[-76.087318,42.19361],[-76.086683,42.186858],[-76.102,42.186203],[-76.116225,42.18561],[-76.11614999999999,42.18016],[-76.115741,42.177071],[-76.11403299999999,42.153417999999995],[-76.11110599999999,42.112435999999995],[-76.111098,42.112292],[-76.109461,42.112283999999995],[-76.10856199999999,42.101256],[-76.11153399999999,42.101169999999996],[-76.110935,42.095331],[-76.108948,42.074751],[-76.108949,42.074574],[-76.10892199999999,42.074331],[-76.108569,42.066342999999996],[-76.10694,42.051959],[-76.106336,42.046586],[-76.106033,42.043683],[-76.105293,42.036228],[-76.104829,42.031568],[-76.106268,42.031174],[-76.106262,42.027905],[-76.105823,42.009651],[-76.10584,41.998858],[-76.123696,41.998954],[-76.13120099999999,41.998954],[-76.2049277590365,41.998743075576094],[-76.2757870621589,41.9985403546389],[-76.2950082941063,41.998485364736595],[-76.343722,41.998346],[-76.349898,41.99841],[-76.3500208110541,41.9984105732648],[-76.462155,41.998934],[-76.46654,41.999024999999996],[-76.47303045547619,41.9991050870808],[-76.47422042236701,41.9991197703299],[-76.50465850156259,41.999495352123496],[-76.5119494773177,41.9995853169906],[-76.5243210070324,41.999737971870395],[-76.5350435148026,41.999870279125204],[-76.54135629399619,41.999948173821394],[-76.5488234156809,42.000040312189796],[-76.55762413688969,42.000148906120295]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36109","STATE":"36","COUNTY":"109","NAME":"Tompkins","LSAD":"County","CENSUSAREA":474.649},"geometry":{"type":"Polygon","coordinates":[[[-76.253359,42.407568],[-76.269718,42.407157999999995],[-76.29318599999999,42.406403],[-76.29344999999999,42.405646],[-76.294697,42.405086],[-76.296526,42.399877],[-76.296526,42.399873],[-76.296543,42.399806],[-76.296543,42.399788],[-76.29657999999999,42.399668999999996],[-76.296581,42.399648],[-76.29843199999999,42.395689],[-76.29629299999999,42.389623],[-76.297775,42.386275],[-76.299627,42.384447],[-76.29919799999999,42.382822],[-76.298429,42.381546],[-76.296229,42.381279],[-76.295481,42.380109999999995],[-76.289973,42.37956],[-76.28915099999999,42.380015],[-76.283768,42.379459999999995],[-76.282926,42.380047],[-76.27940699999999,42.379887],[-76.278356,42.378114],[-76.27649199999999,42.377251],[-76.272257,42.376498],[-76.270806,42.376864999999995],[-76.26786,42.376138999999995],[-76.265062,42.375155],[-76.264718,42.37408],[-76.260055,42.372673],[-76.258538,42.371338],[-76.254571,42.370056999999996],[-76.253728,42.368822],[-76.251969,42.368015],[-76.250266,42.366530999999995],[-76.246506,42.36546],[-76.24198799999999,42.363392999999995],[-76.242209,42.362026],[-76.239779,42.359705],[-76.23855499999999,42.356621],[-76.238768,42.354743],[-76.23781799999999,42.350998],[-76.23965299999999,42.350032999999996],[-76.240318,42.347235999999995],[-76.241765,42.34657],[-76.24369399999999,42.342697],[-76.245499,42.341651999999996],[-76.24612499999999,42.340001],[-76.245476,42.338232999999995],[-76.24576499999999,42.335588],[-76.247264,42.334322],[-76.24597,42.332315],[-76.246872,42.330708],[-76.24716599999999,42.328877999999996],[-76.24994,42.328092999999996],[-76.251363,42.324894],[-76.25004299999999,42.320853],[-76.25108,42.319601999999996],[-76.249364,42.315740999999996],[-76.25048699999999,42.313162],[-76.25026,42.310773999999995],[-76.251407,42.309912999999995],[-76.250416,42.306576],[-76.24900199999999,42.301078],[-76.250149,42.296676],[-76.271896,42.296727999999995],[-76.283191,42.296752999999995],[-76.288174,42.296763999999996],[-76.28822,42.308226999999995],[-76.299132,42.308194],[-76.300722,42.308171],[-76.301873,42.308219],[-76.314197,42.308299],[-76.327849,42.308349],[-76.342652,42.308402],[-76.350619,42.308437],[-76.350871,42.318287999999995],[-76.374256,42.318172],[-76.39465,42.318509],[-76.400438,42.318473999999995],[-76.409084,42.318408],[-76.415305,42.318368],[-76.415475,42.305577],[-76.41619899999999,42.262975999999995],[-76.47449399999999,42.263760999999995],[-76.473962,42.281132],[-76.480025,42.281054999999995],[-76.48667499999999,42.281290999999996],[-76.492989,42.281166],[-76.518965,42.281593],[-76.530447,42.28169],[-76.538349,42.281755],[-76.548929,42.281832],[-76.579489,42.28259],[-76.619303,42.282852999999996],[-76.62707,42.283046],[-76.670135,42.283933],[-76.691406,42.284307],[-76.691317,42.295904],[-76.691069,42.313319],[-76.68972699999999,42.313443],[-76.690552,42.373217],[-76.685938,42.373194],[-76.686622,42.390350999999995],[-76.688212,42.419644],[-76.689171,42.435674999999996],[-76.68949599999999,42.440017],[-76.689522,42.440318999999995],[-76.68952999999999,42.44052],[-76.69030699999999,42.452335],[-76.692134,42.477906],[-76.693292,42.492123],[-76.693804,42.502742],[-76.69596299999999,42.536477],[-76.69665499999999,42.54679],[-76.683735,42.547117],[-76.673019,42.547348],[-76.67142,42.547391999999995],[-76.64994,42.548012],[-76.617654,42.549068],[-76.611043,42.549147999999995],[-76.585989,42.54991],[-76.605987,42.559413],[-76.612174,42.562864999999995],[-76.618239,42.566652],[-76.626761,42.573868],[-76.638075,42.584404],[-76.64531699999999,42.591708],[-76.65622599999999,42.604797999999995],[-76.660242,42.610827],[-76.663139,42.616354],[-76.66654299999999,42.623456999999995],[-76.614479,42.625234],[-76.614291,42.622102999999996],[-76.605012,42.622398],[-76.574893,42.623408],[-76.566874,42.623728],[-76.555807,42.624055999999996],[-76.55381299999999,42.624210999999995],[-76.543318,42.624604999999995],[-76.540949,42.624694],[-76.54063599999999,42.624787999999995],[-76.540106,42.624753999999996],[-76.53610599999999,42.624908],[-76.492173,42.626366999999995],[-76.478729,42.626793],[-76.477035,42.626892999999995],[-76.473022,42.627009],[-76.46397499999999,42.627269],[-76.45885799999999,42.627416],[-76.45872299999999,42.627129],[-76.45866099999999,42.625749],[-76.4584,42.618615],[-76.448955,42.618829999999996],[-76.41722899999999,42.619644],[-76.402293,42.620059],[-76.40145199999999,42.620062],[-76.40023,42.620096],[-76.38656999999999,42.62052],[-76.385654,42.620551],[-76.385593,42.620546999999995],[-76.38534299999999,42.620560999999995],[-76.384976,42.620571999999996],[-76.364918,42.621109],[-76.32515,42.622049],[-76.27286099999999,42.623413],[-76.26558399999999,42.623588],[-76.263583,42.587962999999995],[-76.26320799999999,42.581298],[-76.263195,42.581064],[-76.262822,42.574411],[-76.262315,42.565362],[-76.261663,42.553703],[-76.261481,42.550453],[-76.26133399999999,42.547824],[-76.26097,42.541328],[-76.26095699999999,42.540636],[-76.261009,42.538218],[-76.260694,42.532894],[-76.259112,42.502776999999995],[-76.25905999999999,42.500071],[-76.258062,42.487114999999996],[-76.25752899999999,42.478204999999996],[-76.25728699999999,42.474146],[-76.2568,42.465582999999995],[-76.255197,42.437912999999995],[-76.253877,42.416140999999996],[-76.253359,42.407568]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36117","STATE":"36","COUNTY":"117","NAME":"Wayne","LSAD":"County","CENSUSAREA":603.826},"geometry":{"type":"Polygon","coordinates":[[[-76.7225013043099,43.3436861782835],[-76.719308,43.304758],[-76.717379,43.281974],[-76.71697999999999,43.278088],[-76.71572499999999,43.278062],[-76.714488,43.263656999999995],[-76.71392,43.256543],[-76.713571,43.250056],[-76.71336,43.249288],[-76.712825,43.241842],[-76.711216,43.220996],[-76.710134,43.205177],[-76.70756,43.161738],[-76.707169,43.155065],[-76.70678099999999,43.148419],[-76.70573399999999,43.131429],[-76.705502,43.127736],[-76.705345,43.125462999999996],[-76.705203,43.123090999999995],[-76.703283,43.093430999999995],[-76.70232399999999,43.080158999999995],[-76.705885,43.070783999999996],[-76.71174599999999,43.06869],[-76.71571399999999,43.064513999999996],[-76.717789,43.062633999999996],[-76.71746499999999,43.058563],[-76.716875,43.056321],[-76.719111,43.040303],[-76.718614,43.033116],[-76.717497,43.030257],[-76.71380599999999,43.024035],[-76.744173,43.022979],[-76.79677199999999,43.021043],[-76.83376899999999,43.019445999999995],[-76.858773,43.018434],[-76.859517,43.018403],[-76.859518,43.018401999999995],[-76.878562,43.017629],[-76.8949,43.016814],[-76.926053,43.01517],[-76.929767,43.014959],[-76.963926,43.013157],[-76.98416,43.012971],[-77.007065,43.012834],[-77.02313099999999,43.012837999999995],[-77.033222,43.012781],[-77.056893,43.012662999999996],[-77.07905099999999,43.012614],[-77.087271,43.012595999999995],[-77.09343299999999,43.012581],[-77.106259,43.012564999999995],[-77.111831,43.012549],[-77.12227299999999,43.012519999999995],[-77.133397,43.012463],[-77.13403699999999,43.03308],[-77.13406599999999,43.033718],[-77.13431299999999,43.039685999999996],[-77.135697,43.039882],[-77.14438,43.039867],[-77.167264,43.039845],[-77.17101,43.039842],[-77.176627,43.039836],[-77.17994,43.039833],[-77.184418,43.039829],[-77.215847,43.039863],[-77.231619,43.03978],[-77.24660399999999,43.039763],[-77.246804,43.034662999999995],[-77.307658,43.034706],[-77.314522,43.034701999999996],[-77.327524,43.034693],[-77.334183,43.034687],[-77.344934,43.03468],[-77.371478,43.034696],[-77.371364,43.039491],[-77.371584,43.053683],[-77.371734,43.064336999999995],[-77.371983,43.075599],[-77.371972,43.075902],[-77.37200299999999,43.077464],[-77.372573,43.095738],[-77.37292599999999,43.107366999999996],[-77.37295499999999,43.108903999999995],[-77.373244,43.122803999999995],[-77.373249,43.123076],[-77.373313,43.12341],[-77.373577,43.131040999999996],[-77.373949,43.138344],[-77.37416999999999,43.145139],[-77.374178,43.145392],[-77.37435099999999,43.152584],[-77.37439599999999,43.158653],[-77.374573,43.160357999999995],[-77.374533,43.166509999999995],[-77.374706,43.178931999999996],[-77.37471,43.182727],[-77.37468799999999,43.188863],[-77.37504799999999,43.196387],[-77.37508,43.202619999999996],[-77.375137,43.209421999999996],[-77.375264,43.222632],[-77.375305,43.224488],[-77.375411,43.230951999999995],[-77.37562,43.243961],[-77.375804,43.255435999999996],[-77.376046,43.276210999999996],[-77.376046,43.276773],[-77.3760378804266,43.2776524189036],[-77.341092,43.280660999999995],[-77.314619,43.28103],[-77.3139747333048,43.28085561202229],[-77.3114696512353,43.28017754469529],[-77.3063374926872,43.278788388998],[-77.3049874615385,43.278422967033],[-77.303979,43.27815],[-77.2996631041072,43.2780646623268],[-77.29602318595309,43.2779926906775],[-77.2931877994243,43.277936626932004],[-77.2904324279708,43.2778821453146],[-77.28371412374881,43.2777493051201],[-77.2767006187022,43.27761062795629],[-77.2683797720209,43.277446100888895],[-77.26417699999999,43.277363],[-77.2631439080339,43.2775021568839],[-77.26281454025069,43.2775465225317],[-77.2557222287158,43.2785018527493],[-77.2500645594793,43.2792639374879],[-77.242371349176,43.2803002084182],[-77.2380681964208,43.2808798405787],[-77.23613883200629,43.281139724837395],[-77.219106657079,43.2834339488429],[-77.215785581061,43.283881295841],[-77.2147420866935,43.2840218539223],[-77.214058,43.284113999999995],[-77.20790757500669,43.2837229368536],[-77.195278239881,43.2829199244542],[-77.1866584480252,43.282371851284],[-77.1817641740963,43.2820606581284],[-77.17796407505891,43.2818190360149],[-77.17308799999999,43.281509],[-77.1728254887029,43.281562542679],[-77.1715946062692,43.28181359756201],[-77.1670473374291,43.2827410736681],[-77.14357945857711,43.2875276604439],[-77.143416,43.287561],[-77.13219706729959,43.2858972081789],[-77.13042899999999,43.285635],[-77.1276169571005,43.2859849336906],[-77.1199297659385,43.286941536157],[-77.11186599999999,43.287945],[-77.11171499287649,43.2879212568055],[-77.0966228544383,43.2855482854525],[-77.0926972881398,43.2849310597089],[-77.0922200350582,43.2848560201182],[-77.0907235172492,43.2846207192094],[-77.0893417569164,43.284403461880395],[-77.0736783611855,43.2819406704402],[-77.0674209935312,43.280956810250295],[-77.067295,43.280937],[-77.06160942138779,43.2792835548016],[-77.0586368493194,43.2784190895732],[-77.05286737696889,43.2767412469108],[-77.0465816687789,43.274913275699],[-77.033875,43.271218],[-77.00680251843659,43.2714064873219],[-77.0058682481301,43.271412992012195],[-77.0000454912873,43.2714535319177],[-76.99985768031569,43.271454839518],[-76.999764273194,43.2714554898485],[-76.999691,43.271456],[-76.99945692311469,43.271519358530895],[-76.99351221630289,43.2731284362061],[-76.9885199680446,43.2744797080982],[-76.988445,43.2745],[-76.9883210959434,43.2744814616139],[-76.9874317757813,43.27434840252759],[-76.9860274877958,43.2741382945326],[-76.98528623989681,43.2740273898524],[-76.98108447869359,43.2733987270488],[-76.97544230216751,43.2725545509184],[-76.96813432394279,43.271461139404295],[-76.96501029154729,43.2709937251774],[-76.96154801184659,43.2704757027677],[-76.95840199999999,43.270005],[-76.9579377224773,43.2700562136574],[-76.952174,43.270692],[-76.9296028160126,43.28152538120229],[-76.92337452499869,43.2845147436934],[-76.92235099999999,43.285005999999996],[-76.9093070507105,43.28992374869409],[-76.90759333320709,43.2905698438166],[-76.904288,43.291816],[-76.9035663889244,43.2919021780133],[-76.8876058087231,43.2938082616921],[-76.88691299999999,43.293890999999995],[-76.88587120031079,43.293785353016],[-76.8820122786271,43.2933940268889],[-76.877397,43.292926],[-76.8746856730312,43.2935931598451],[-76.87132718889501,43.2944195617442],[-76.854976,43.298443],[-76.8451867362714,43.3035624736107],[-76.841675,43.305399],[-76.8395576495525,43.305589830677796],[-76.80900800631049,43.3083431817508],[-76.8081499553089,43.3084205154082],[-76.794708,43.309632],[-76.781363489683,43.314214742709],[-76.7794252441524,43.314880370773494],[-76.77284390696329,43.3171405192767],[-76.769025,43.318452],[-76.747067,43.331477],[-76.731039,43.343421],[-76.7290496145533,43.343482789719005],[-76.725513903223,43.3435926078591],[-76.7225013043099,43.3436861782835]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36121","STATE":"36","COUNTY":"121","NAME":"Wyoming","LSAD":"County","CENSUSAREA":592.746},"geometry":{"type":"Polygon","coordinates":[[[-78.03826099999999,42.521522],[-78.040241,42.520967999999996],[-78.088914,42.521135],[-78.10699199999999,42.521249999999995],[-78.117993,42.521321],[-78.13345,42.521374],[-78.145346,42.521387999999995],[-78.163035,42.521409],[-78.190337,42.52144],[-78.204679,42.521764],[-78.224693,42.521609999999995],[-78.235131,42.521535],[-78.24043499999999,42.52171],[-78.24875899999999,42.521710999999996],[-78.276152,42.521495],[-78.27873699999999,42.521471999999996],[-78.30883899999999,42.521217],[-78.34128,42.520745999999995],[-78.403752,42.519625],[-78.404198,42.51943],[-78.40802,42.519290999999996],[-78.41279,42.519270999999996],[-78.424533,42.519225999999996],[-78.432746,42.51922],[-78.446626,42.519214999999996],[-78.446849,42.519214999999996],[-78.461565,42.519193],[-78.464556,42.519166],[-78.46405399999999,42.530664],[-78.46394,42.536332],[-78.463773,42.541557],[-78.46347399999999,42.551471],[-78.46236999999999,42.606545],[-78.462045,42.625029999999995],[-78.462848,42.648289999999996],[-78.46338999999999,42.666461999999996],[-78.463636,42.678377999999995],[-78.46380099999999,42.693918],[-78.463814,42.698904],[-78.46367,42.722682999999996],[-78.463652,42.724605],[-78.463642,42.725591],[-78.463605,42.729411],[-78.463562,42.733896],[-78.463538,42.737077],[-78.463442,42.753879999999995],[-78.463233,42.780460999999995],[-78.48350099999999,42.780623],[-78.488143,42.78066],[-78.488118,42.781571],[-78.487948,42.788441999999996],[-78.487676,42.79924],[-78.48755299999999,42.803948999999996],[-78.487273,42.813431],[-78.486999,42.824183],[-78.486798,42.832586],[-78.486249,42.85733],[-78.486256,42.867731],[-78.464381,42.867461],[-78.448167,42.867683],[-78.445262,42.867723999999995],[-78.432283,42.867905],[-78.410015,42.868123999999995],[-78.387891,42.868488],[-78.376603,42.868683],[-78.365071,42.868884],[-78.351964,42.869119999999995],[-78.322036,42.869659999999996],[-78.307312,42.869853],[-78.305584,42.869886],[-78.303899,42.869865999999995],[-78.29537599999999,42.869763],[-78.289197,42.869642999999996],[-78.28487799999999,42.869524],[-78.278931,42.869409999999995],[-78.277461,42.869426999999995],[-78.273729,42.869416],[-78.265975,42.869429],[-78.26119299999999,42.869538],[-78.259873,42.869602],[-78.191396,42.870335999999995],[-78.17880000000001,42.870314],[-78.14778299999999,42.870196],[-78.133468,42.870142],[-78.131236,42.870101],[-78.125328,42.870025],[-78.11453399999999,42.870152],[-78.09895,42.870006],[-78.09856599999999,42.870007],[-78.07417099999999,42.870188],[-78.07416099999999,42.863743],[-78.05228,42.864050999999996],[-78.048599,42.864328],[-78.009528,42.864914],[-77.995362,42.864993],[-77.995262,42.863181],[-77.993372,42.863247],[-77.979902,42.863011],[-77.95496399999999,42.862753999999995],[-77.954893,42.861307],[-77.955004,42.851037],[-77.955035,42.847777],[-77.955299,42.832878],[-77.955332,42.825415],[-77.95533999999999,42.822964999999996],[-77.95508099999999,42.814825],[-77.955355,42.810524],[-77.95543099999999,42.806481],[-77.95550999999999,42.803694],[-77.955567,42.800477],[-77.955615,42.793839999999996],[-77.95537499999999,42.78977],[-77.955382,42.770964],[-77.95512699999999,42.758263],[-77.955123,42.757388999999996],[-77.95503,42.752016],[-77.955257,42.737263],[-77.955141,42.736225],[-77.955382,42.713708],[-77.955306,42.710623999999996],[-77.955907,42.700537999999995],[-77.956334,42.667322],[-77.95868999999999,42.666382],[-77.962626,42.661985],[-77.965758,42.66361],[-77.968424,42.663031],[-77.974733,42.654077],[-77.974689,42.653179],[-77.97446699999999,42.652401999999995],[-77.971012,42.649293],[-77.971758,42.647351],[-77.976743,42.645914],[-77.97755699999999,42.643620999999996],[-77.97638599999999,42.641135999999996],[-77.976439,42.638013],[-77.980034,42.637491999999995],[-77.983145,42.636021],[-77.98352299999999,42.634620999999996],[-77.98110799999999,42.632449],[-77.982661,42.630367],[-77.985536,42.629963],[-77.98754,42.628493],[-77.989131,42.625625],[-77.987374,42.621013],[-77.988019,42.617539],[-77.99040000000001,42.61486],[-77.99206699999999,42.61459],[-77.994389,42.6158],[-77.997545,42.615524],[-77.999152,42.612963],[-78.003259,42.610707999999995],[-78.006596,42.610110999999996],[-78.010545,42.612206],[-78.013733,42.612051],[-78.01538099999999,42.609449],[-78.015452,42.609286999999995],[-78.015997,42.607406],[-78.020404,42.605714],[-78.02409899999999,42.605553],[-78.027579,42.604786],[-78.029369,42.602837],[-78.02808499999999,42.599788],[-78.026173,42.597643],[-78.021879,42.596081999999996],[-78.019956,42.596038],[-78.01812699999999,42.597063],[-78.017118,42.598558],[-78.015102,42.599624999999996],[-78.012058,42.599554999999995],[-78.008239,42.598687999999996],[-78.006162,42.598800999999995],[-78.00393199999999,42.597167],[-78.00352699999999,42.595743999999996],[-78.004693,42.592779],[-78.01168899999999,42.587029],[-78.01518999999999,42.586786],[-78.022851,42.584894],[-78.024616,42.585141],[-78.027197,42.586503],[-78.032528,42.586264],[-78.03627399999999,42.587785],[-78.04095099999999,42.583774999999996],[-78.045682,42.580495],[-78.048247,42.579305999999995],[-78.050827,42.576007999999995],[-78.050359,42.573585],[-78.04699099999999,42.570589999999996],[-78.045237,42.570018],[-78.039157,42.571396],[-78.036892,42.5735],[-78.033324,42.573586999999996],[-78.030638,42.570988],[-78.03053299999999,42.569998999999996],[-78.028005,42.567439],[-78.035523,42.567322],[-78.04796499999999,42.557929],[-78.050517,42.553765],[-78.051895,42.548383],[-78.051445,42.546738999999995],[-78.04910799999999,42.544405999999995],[-78.05018799999999,42.543174],[-78.05386299999999,42.542023],[-78.05494399999999,42.540979],[-78.059285,42.538733],[-78.060752,42.536708999999995],[-78.06060000000001,42.53279],[-78.057307,42.532706],[-78.050297,42.538502],[-78.049129,42.538756],[-78.04636099999999,42.53666],[-78.04256099999999,42.53515],[-78.043722,42.532111],[-78.047834,42.528555],[-78.047658,42.526505],[-78.045445,42.526446],[-78.04364,42.528611999999995],[-78.04185199999999,42.529461999999995],[-78.04065899999999,42.527953],[-78.039456,42.525994999999995],[-78.040571,42.523983],[-78.03826099999999,42.521522]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36029","STATE":"36","COUNTY":"029","NAME":"Erie","LSAD":"County","CENSUSAREA":1042.693},"geometry":{"type":"Polygon","coordinates":[[[-79.0195783861988,43.0662944001067],[-79.019228,43.067958],[-79.009664,43.069558],[-78.999664,43.069354999999995],[-78.99060899999999,43.068765],[-78.985764,43.068556],[-78.949962,43.067856],[-78.945262,43.066956],[-78.91152,43.054739999999995],[-78.90585999999999,43.051556],[-78.89626,43.044156],[-78.893011,43.037779],[-78.892059,43.034056],[-78.890101,43.025200000000005],[-78.88995899999999,43.024556],[-78.890159,43.021955999999996],[-78.885038,43.022456],[-78.881974,43.024155],[-78.879859,43.021856],[-78.878022,43.021702999999995],[-78.87625,43.021558],[-78.875556,43.021654999999996],[-78.872168,43.022389],[-78.872101,43.022403999999995],[-78.870859,43.022718999999995],[-78.86875599999999,43.023261999999995],[-78.861257,43.022875],[-78.856557,43.022054999999995],[-78.851249,43.019254],[-78.849188,43.019338],[-78.841745,43.018862999999996],[-78.83935,43.019453],[-78.83334599999999,43.024164999999996],[-78.83018899999999,43.029661999999995],[-78.828805,43.030139],[-78.825366,43.033656],[-78.82598,43.036027999999995],[-78.826748,43.039547999999996],[-78.831385,43.045358],[-78.832332,43.048007],[-78.83126,43.050246],[-78.829144,43.051356999999996],[-78.822357,43.051556999999995],[-78.813845,43.051665],[-78.806821,43.053626],[-78.80462399999999,43.055187],[-78.80712199999999,43.061139],[-78.80614299999999,43.063181],[-78.800759,43.066272],[-78.79670999999999,43.066111],[-78.786851,43.066556999999996],[-78.783669,43.066184],[-78.782387,43.065871],[-78.77857999999999,43.065415],[-78.774272,43.066818],[-78.77237,43.068545],[-78.77078399999999,43.069539],[-78.769027,43.070026999999996],[-78.759141,43.070927999999995],[-78.75765299999999,43.070859999999996],[-78.755487,43.070077],[-78.75374,43.069458999999995],[-78.74535399999999,43.069786],[-78.743185,43.070949999999996],[-78.741249,43.074853999999995],[-78.737663,43.078255999999996],[-78.73615699999999,43.081796999999995],[-78.733606,43.084219],[-78.72764699999999,43.08622],[-78.724014,43.085460999999995],[-78.72174799999999,43.083641],[-78.72056599999999,43.081509],[-78.719048,43.081055],[-78.715942,43.08289],[-78.71418,43.083199],[-78.71174599999999,43.082352],[-78.709625,43.082519999999995],[-78.708193,43.084208],[-78.70776599999999,43.086714],[-78.705805,43.087032],[-78.703079,43.086642999999995],[-78.699478,43.086884],[-78.696906,43.086337],[-78.690872,43.088642],[-78.68740799999999,43.086464],[-78.687309,43.084488],[-78.684212,43.081047],[-78.68180799999999,43.080269],[-78.68025999999999,43.081447999999995],[-78.679253,43.084838999999995],[-78.67451799999999,43.083940999999996],[-78.666733,43.085364],[-78.664711,43.086399],[-78.658485,43.085175],[-78.65486899999999,43.082867],[-78.65057399999999,43.082111],[-78.648392,43.080588999999996],[-78.64656099999999,43.080791],[-78.64598099999999,43.081562],[-78.646608,43.085602],[-78.649014,43.087078],[-78.646721,43.089771],[-78.643616,43.088268],[-78.641753,43.088583],[-78.640762,43.090668],[-78.64211999999999,43.094584999999995],[-78.641802,43.097362],[-78.63834399999999,43.09568],[-78.636071,43.093272999999996],[-78.631027,43.094128],[-78.630077,43.093545999999996],[-78.63089,43.091591],[-78.632576,43.091164],[-78.629556,43.088561999999996],[-78.628992,43.086669],[-78.626671,43.08511],[-78.617572,43.086552999999995],[-78.615242,43.084522],[-78.612434,43.083397],[-78.61436499999999,43.080825999999995],[-78.616158,43.080177],[-78.61721,43.077892],[-78.61548599999999,43.076698],[-78.616295,43.074486],[-78.61417399999999,43.074290999999995],[-78.612053,43.076248],[-78.611916,43.077881],[-78.609669,43.076505],[-78.605904,43.075584],[-78.60183099999999,43.076636],[-78.601479,43.075863],[-78.604222,43.073983],[-78.606689,43.073467],[-78.606544,43.072674],[-78.603989,43.072025],[-78.60230299999999,43.072452999999996],[-78.60131799999999,43.073935999999996],[-78.600929,43.072497999999996],[-78.599274,43.072047999999995],[-78.595627,43.072468],[-78.59466599999999,43.071521999999995],[-78.595306,43.069641],[-78.59403999999999,43.069500000000005],[-78.591949,43.071365],[-78.591064,43.076122],[-78.588005,43.074588999999996],[-78.586136,43.073108999999995],[-78.582656,43.07515],[-78.584114,43.076859],[-78.58212999999999,43.077498999999996],[-78.580193,43.080169999999995],[-78.582123,43.0825],[-78.585089,43.084573999999996],[-78.58455699999999,43.086655],[-78.581757,43.088927999999996],[-78.580231,43.087547],[-78.57820099999999,43.087498],[-78.579208,43.085228],[-78.577271,43.084140999999995],[-78.578178,43.082664],[-78.57663699999999,43.081707],[-78.576065,43.079758],[-78.57431,43.080208],[-78.572372,43.082049999999995],[-78.574165,43.082409],[-78.57531,43.085739],[-78.574333,43.08712],[-78.57614099999999,43.08828],[-78.57624799999999,43.088791],[-78.56790199999999,43.087962999999995],[-78.564484,43.088893999999996],[-78.563011,43.093643],[-78.564064,43.094635],[-78.560265,43.097279],[-78.558258,43.096942999999996],[-78.557632,43.095081],[-78.55481,43.09507],[-78.557388,43.093844999999995],[-78.560898,43.09021],[-78.56015,43.089935],[-78.55542799999999,43.091446],[-78.555145,43.092419],[-78.551097,43.092752],[-78.549156,43.095054999999995],[-78.55017099999999,43.096588],[-78.54757699999999,43.097446],[-78.546303,43.098557],[-78.545296,43.098591],[-78.544373,43.096644999999995],[-78.54190799999999,43.096478],[-78.541084,43.093838],[-78.543488,43.092762],[-78.54639399999999,43.093284999999995],[-78.547462,43.091750999999995],[-78.54688999999999,43.090256],[-78.545403,43.09045],[-78.542625,43.088802],[-78.542282,43.091099],[-78.540443,43.090092],[-78.540482,43.088299],[-78.542114,43.088089],[-78.540146,43.087165999999996],[-78.54025399999999,43.085892],[-78.53846,43.085739],[-78.538292,43.087421],[-78.53627,43.085491],[-78.534431,43.086182],[-78.53195199999999,43.088592999999996],[-78.531395,43.087348999999996],[-78.528244,43.08857],[-78.528976,43.090115],[-78.528,43.090571999999995],[-78.52667199999999,43.088966],[-78.528069,43.088299],[-78.52622199999999,43.087612],[-78.522263,43.08815],[-78.52237699999999,43.089560999999996],[-78.52078999999999,43.088798999999995],[-78.518551,43.089641],[-78.515823,43.090542],[-78.514099,43.090362999999996],[-78.51402999999999,43.09137],[-78.515785,43.091507],[-78.514839,43.094874999999995],[-78.513245,43.094654],[-78.511612,43.095591999999996],[-78.510384,43.097958],[-78.508461,43.096278999999996],[-78.50928499999999,43.094009],[-78.507469,43.094184999999996],[-78.50405099999999,43.093593999999996],[-78.503479,43.091415],[-78.504745,43.092903],[-78.506119,43.093070999999995],[-78.505173,43.091601999999995],[-78.506203,43.090095999999996],[-78.50312799999999,43.088715],[-78.50072399999999,43.089062],[-78.50280000000001,43.086574999999996],[-78.500725,43.086020999999995],[-78.498215,43.087055],[-78.496887,43.086445],[-78.499603,43.083476999999995],[-78.49793199999999,43.082409],[-78.496498,43.081751],[-78.493752,43.082592],[-78.49243899999999,43.081966],[-78.492736,43.083997],[-78.491646,43.083954999999996],[-78.488945,43.08271],[-78.48666399999999,43.085014],[-78.484668,43.086163],[-78.481659,43.085159],[-78.48162099999999,43.083777999999995],[-78.47693,43.084728999999996],[-78.475838,43.086338],[-78.47415199999999,43.084648],[-78.47464,43.082788],[-78.472038,43.084232],[-78.472537,43.081649999999996],[-78.469736,43.082797],[-78.46515699999999,43.085968],[-78.46800999999999,43.087723],[-78.464449,43.088702999999995],[-78.46424499999999,43.064958],[-78.463838,43.041891],[-78.463484,43.032990999999996],[-78.463053,43.013363999999996],[-78.463229,43.006479],[-78.46338,43.002158],[-78.463544,42.997955999999995],[-78.46385,42.985741999999995],[-78.464314,42.965469],[-78.464325,42.956621],[-78.464231,42.954555],[-78.464051,42.938289],[-78.463887,42.924324999999996],[-78.463855,42.899909],[-78.46394599999999,42.893781],[-78.464202,42.878056],[-78.464381,42.867461],[-78.486256,42.867731],[-78.486249,42.85733],[-78.486798,42.832586],[-78.486999,42.824183],[-78.487273,42.813431],[-78.48755299999999,42.803948999999996],[-78.487676,42.79924],[-78.487948,42.788441999999996],[-78.488118,42.781571],[-78.488143,42.78066],[-78.48350099999999,42.780623],[-78.463233,42.780460999999995],[-78.463442,42.753879999999995],[-78.463538,42.737077],[-78.463562,42.733896],[-78.463605,42.729411],[-78.463642,42.725591],[-78.463652,42.724605],[-78.46367,42.722682999999996],[-78.463814,42.698904],[-78.46380099999999,42.693918],[-78.463636,42.678377999999995],[-78.46338999999999,42.666461999999996],[-78.462848,42.648289999999996],[-78.462045,42.625029999999995],[-78.46236999999999,42.606545],[-78.46347399999999,42.551471],[-78.463773,42.541557],[-78.46394,42.536332],[-78.468634,42.533356],[-78.475577,42.534351],[-78.477724,42.532869999999996],[-78.478527,42.533755],[-78.483307,42.532956],[-78.484802,42.535146],[-78.487321,42.534067],[-78.48847599999999,42.534845],[-78.490764,42.531645],[-78.491165,42.530089],[-78.497221,42.529922],[-78.499038,42.527781],[-78.50436499999999,42.527612999999995],[-78.507779,42.526598],[-78.50827199999999,42.527636],[-78.51132,42.527834999999996],[-78.511455,42.526188999999995],[-78.512768,42.523837],[-78.515068,42.522172999999995],[-78.518053,42.521066999999995],[-78.519078,42.51916],[-78.524576,42.520342],[-78.52762299999999,42.521985],[-78.532427,42.520492999999995],[-78.532911,42.517308],[-78.536346,42.516912],[-78.53790000000001,42.517705],[-78.538842,42.51419],[-78.541574,42.514691],[-78.546977,42.517790999999995],[-78.54848799999999,42.517689],[-78.548929,42.516659],[-78.547153,42.515564],[-78.549634,42.514700999999995],[-78.552581,42.514421999999996],[-78.55425699999999,42.511767],[-78.55601999999999,42.511025],[-78.55743,42.511404999999996],[-78.557543,42.513317],[-78.55982999999999,42.513278],[-78.563664,42.508784],[-78.56761999999999,42.510048],[-78.568564,42.512707],[-78.571524,42.51215],[-78.57303499999999,42.510636],[-78.57869,42.512048],[-78.57893,42.513255],[-78.582431,42.514268],[-78.585616,42.512955],[-78.586316,42.509282999999996],[-78.587828,42.508975],[-78.59147999999999,42.510177999999996],[-78.592919,42.511551999999995],[-78.59661,42.512712],[-78.600838,42.511145],[-78.603388,42.509468],[-78.60551,42.509412],[-78.606426,42.508261],[-78.605226,42.507186],[-78.608052,42.506426999999995],[-78.610039,42.503696],[-78.612708,42.502797],[-78.61479299999999,42.504377],[-78.617756,42.503997],[-78.622874,42.504028999999996],[-78.626271,42.500057],[-78.62753099999999,42.497319999999995],[-78.63127,42.498129],[-78.634117,42.496598999999996],[-78.638678,42.498058],[-78.64067299999999,42.495868],[-78.643529,42.493522],[-78.644132,42.491262],[-78.645652,42.490853],[-78.64961,42.492615],[-78.65142,42.492027],[-78.651347,42.4908],[-78.653953,42.490302],[-78.655329,42.492062999999995],[-78.659769,42.491636],[-78.662086,42.492473],[-78.663679,42.489376],[-78.666068,42.488699],[-78.666816,42.487418],[-78.668264,42.487293],[-78.669495,42.488664],[-78.671257,42.488468],[-78.672386,42.486753],[-78.674066,42.486941],[-78.674526,42.484514999999995],[-78.677274,42.484209],[-78.680307,42.484555],[-78.68227,42.483125],[-78.682059,42.48066],[-78.68341099999999,42.480418],[-78.682593,42.478134999999995],[-78.686064,42.475572],[-78.691439,42.476597],[-78.692644,42.474514],[-78.692253,42.472445],[-78.693738,42.471723],[-78.69758499999999,42.472781],[-78.699378,42.473794999999996],[-78.700504,42.475784999999995],[-78.699548,42.47956],[-78.700544,42.482703],[-78.70070199999999,42.48535],[-78.702905,42.486737],[-78.706143,42.484564999999996],[-78.710461,42.484955],[-78.712368,42.483571],[-78.71412099999999,42.484625],[-78.714698,42.486883],[-78.717094,42.486278999999996],[-78.71777,42.483979999999995],[-78.723906,42.48273],[-78.728828,42.48254],[-78.730383,42.481406],[-78.73055599999999,42.479227],[-78.731472,42.478666],[-78.734483,42.478837],[-78.738306,42.480456],[-78.73924699999999,42.478386],[-78.737374,42.476413],[-78.737961,42.473555999999995],[-78.738858,42.472895],[-78.739443,42.472798],[-78.74477499999999,42.473816],[-78.74772,42.474106],[-78.74980099999999,42.473729],[-78.750608,42.472701],[-78.75069599999999,42.469238],[-78.75165,42.468264],[-78.753101,42.468892],[-78.758099,42.469117],[-78.763624,42.470546999999996],[-78.76450299999999,42.470385],[-78.76442999999999,42.468804999999996],[-78.759573,42.467051],[-78.758091,42.464551],[-78.759249,42.463015],[-78.762288,42.461675],[-78.765573,42.461662],[-78.768641,42.464315],[-78.77241599999999,42.465134],[-78.774132,42.464853],[-78.776685,42.463797],[-78.777603,42.461881999999996],[-78.770663,42.459801],[-78.77015,42.458135],[-78.771588,42.457085],[-78.777418,42.456157999999995],[-78.780825,42.455155],[-78.783209,42.455706],[-78.786818,42.457538],[-78.787174,42.458898999999995],[-78.792203,42.461197999999996],[-78.796122,42.462764],[-78.79981,42.461974999999995],[-78.802534,42.460491],[-78.80410599999999,42.458991999999995],[-78.80592999999999,42.458497],[-78.809681,42.458867999999995],[-78.812924,42.456159],[-78.821805,42.450727],[-78.824614,42.451909],[-78.827163,42.451245],[-78.82759,42.448249],[-78.82951899999999,42.448688],[-78.83205699999999,42.448934],[-78.83551299999999,42.446301],[-78.836455,42.443695999999996],[-78.8381,42.442811],[-78.840276,42.442696999999995],[-78.84365199999999,42.444821999999995],[-78.84665,42.444809],[-78.849014,42.443064],[-78.850745,42.442723],[-78.85415499999999,42.443507],[-78.85612499999999,42.443279],[-78.85848899999999,42.44208],[-78.86412899999999,42.441660999999996],[-78.86657799999999,42.442288999999995],[-78.868053,42.441994],[-78.869484,42.439957],[-78.871608,42.43954],[-78.875429,42.441271],[-78.87771099999999,42.441728999999995],[-78.881075,42.440245],[-78.88298999999999,42.438286],[-78.884208,42.438046],[-78.887937,42.442311],[-78.893757,42.439119],[-78.895999,42.440807],[-78.897582,42.443771],[-78.898668,42.44804],[-78.899349,42.448845],[-78.900455,42.449115],[-78.90550999999999,42.446221],[-78.91237699999999,42.447970999999995],[-78.913365,42.445892],[-78.914973,42.444174],[-78.91834999999999,42.442541999999996],[-78.920446,42.442555999999996],[-78.92200299999999,42.444399],[-78.92120299999999,42.448406999999996],[-78.918463,42.44939],[-78.91817999999999,42.452183],[-78.91925499999999,42.454048],[-78.925691,42.458642],[-78.929034,42.459697],[-78.92927399999999,42.459753],[-78.929959,42.460041],[-78.931919,42.461175999999995],[-78.934801,42.463384],[-78.93773999999999,42.467181],[-78.940837,42.468365999999996],[-78.943902,42.468326],[-78.94882,42.468115],[-78.950685,42.468323999999996],[-78.951193,42.468568],[-78.952148,42.47112],[-78.95703,42.472362],[-78.961906,42.482336],[-78.963436,42.486587],[-78.96117699999999,42.494018],[-78.965794,42.493336],[-78.966565,42.493699],[-78.969816,42.498061],[-78.97508499999999,42.502547],[-78.978144,42.502796],[-78.97931799999999,42.503685],[-78.980228,42.506155],[-78.98277399999999,42.506060999999995],[-78.985348,42.504757],[-78.986235,42.505283999999996],[-78.983556,42.508278],[-78.982646,42.510523],[-78.98277499999999,42.511559],[-78.984567,42.512561999999996],[-78.98748599999999,42.513131],[-78.98812699999999,42.515491],[-78.986611,42.517624999999995],[-78.986404,42.519115],[-78.988305,42.521684],[-78.98987199999999,42.523426],[-78.991434,42.526624],[-78.99170199999999,42.529249],[-78.99532599999999,42.531796],[-79.00025099999999,42.531825],[-79.003393,42.532796],[-79.004852,42.534751],[-79.008119,42.535793],[-79.009914,42.534406999999995],[-79.01343299999999,42.534679],[-79.02367699999999,42.538816999999995],[-79.024727,42.539895],[-79.027188,42.540636],[-79.029737,42.540234999999996],[-79.03105599999999,42.540689],[-79.033098,42.543279999999996],[-79.03982599999999,42.537679],[-79.043751,42.537690999999995],[-79.047237,42.538993],[-79.051221,42.539125],[-79.053421,42.536234],[-79.060777,42.537853],[-79.064171,42.539037],[-79.065899,42.540397],[-79.07204399999999,42.542656],[-79.07366499999999,42.544122],[-79.077491,42.545732],[-79.081274,42.545727],[-79.08306999999999,42.546369],[-79.087259,42.549853999999996],[-79.089624,42.549969999999995],[-79.091042,42.55159],[-79.081198,42.553900999999996],[-79.080877,42.555437],[-79.08332399999999,42.556649],[-79.087616,42.556526],[-79.089715,42.555966],[-79.092266,42.55677],[-79.09223899999999,42.558864],[-79.094577,42.560992999999996],[-79.093716,42.563145],[-79.095841,42.564487],[-79.097886,42.564181999999995],[-79.101337,42.562394999999995],[-79.106152,42.564104],[-79.104213,42.568189],[-79.107778,42.569964999999996],[-79.115886,42.569711999999996],[-79.119892,42.566742],[-79.123969,42.565256999999995],[-79.127145,42.565200999999995],[-79.13225,42.567277],[-79.1367251245073,42.5696933795434],[-79.1311146488797,42.5856112262431],[-79.1296297208619,42.5898242124704],[-79.12680551750879,42.590757129859895],[-79.126261,42.590937],[-79.124747,42.5920871516129],[-79.121921,42.594234],[-79.11371299999999,42.605993999999995],[-79.1122862397675,42.6104611183469],[-79.1116489579348,42.61245641741849],[-79.111361,42.613358],[-79.1105358132146,42.6140338431648],[-79.0998979526602,42.6227464467476],[-79.0986423518102,42.623774806953],[-79.0951391278739,42.6266440118333],[-79.0915319644041,42.629598345104604],[-79.0897605481106,42.631049167651696],[-79.0842980865931,42.6355230241707],[-79.08049800608019,42.6386353600509],[-79.078761,42.640057999999996],[-79.074176203617,42.639974640065795],[-79.073261,42.639958],[-79.0643019219744,42.6444842156113],[-79.06376,42.644757999999996],[-79.06373005670109,42.6452294221833],[-79.06366602148229,42.6462375817325],[-79.0636394119846,42.6466565171208],[-79.0636202746344,42.6469578122939],[-79.06296021896169,42.6573496160796],[-79.0626604380189,42.6620693160464],[-79.0626527458895,42.6621904196182],[-79.0626439888286,42.662328289289896],[-79.06226099999999,42.668358],[-79.0610932585176,42.6701704783848],[-79.0568651184095,42.6767330717919],[-79.0553112477224,42.6791448701868],[-79.04885999999999,42.689158],[-79.04872619710011,42.68921330519859],[-79.04381725689409,42.691242333817094],[-79.0414411345174,42.692224464399494],[-79.0317324489796,42.6962373877551],[-79.02766055963849,42.697920435349396],[-79.0250594293902,42.6989955691854],[-79.01885999999999,42.701558],[-79.00616,42.704558],[-78.991159,42.705358],[-78.9701935953426,42.717223274438595],[-78.9697820767554,42.7174561714923],[-78.9601920388477,42.7228836093839],[-78.9596705162167,42.7231787627207],[-78.95462097272448,42.7260365286596],[-78.9519954222114,42.7275224469091],[-78.95033658681949,42.72846125717749],[-78.9451107711049,42.731418783570795],[-78.944158,42.731958],[-78.9312253923565,42.7345941609365],[-78.92228143978849,42.736417281147695],[-78.92089976175689,42.736698920068],[-78.9202937453417,42.736822449432296],[-78.918157,42.737258],[-78.9164418734528,42.7383990894147],[-78.9147504600421,42.7395244022623],[-78.9033575740658,42.7471041937427],[-78.9025865717188,42.747617148672006],[-78.8980979528551,42.7506034679499],[-78.88432367453319,42.759767621588395],[-78.88390851031559,42.7600438341482],[-78.8800032212639,42.7626420587547],[-78.87513438625881,42.7658813393169],[-78.86870158005681,42.77016114425359],[-78.868556,42.770258],[-78.86230577071969,42.7759283623031],[-78.853455,42.783958],[-78.851355,42.791758],[-78.8558341814818,42.799221838971896],[-78.856456,42.800258],[-78.8586942069826,42.80056671820449],[-78.8590833999999,42.8006204],[-78.85935599999999,42.800658],[-78.8595191180999,42.8009890816233],[-78.86167655367801,42.8053680394066],[-78.87193189719218,42.8261833614306],[-78.8711832948408,42.8282420178969],[-78.8703894276053,42.8304251527944],[-78.8702532101552,42.8307997507821],[-78.86970671401119,42.832302615178],[-78.869182236898,42.833744927239096],[-78.8680053798431,42.8339287949227],[-78.86622936269579,42.834206273107],[-78.8621760476234,42.834839547683494],[-78.860445,42.83511],[-78.859456,42.841358],[-78.86559156841379,42.852358082575094],[-78.8696023119305,42.8529310460139],[-78.8722270483964,42.853306008418095],[-78.88255699999999,42.867258],[-78.8881312848546,42.8780334394085],[-78.891655,42.884845],[-78.8947339374339,42.8850983836892],[-78.912458,42.886556999999996],[-78.909758,42.891957],[-78.9062204,42.8990322],[-78.90575799999999,42.899957],[-78.9057296690627,42.9066534033566],[-78.90570259384201,42.9130530009814],[-78.90566837364301,42.9211414116553],[-78.905659,42.923356999999996],[-78.9078363929802,42.929515911572594],[-78.909159,42.933257],[-78.9123653357821,42.937752481096595],[-78.91424134868728,42.9403827672317],[-78.918859,42.946857],[-78.9212064375277,42.9484218424376],[-78.93236,42.955856999999995],[-78.961761,42.957755999999996],[-78.975062,42.968756],[-78.98325707809339,42.9724605228498],[-79.011563,42.985256],[-79.019964,42.994755999999995],[-79.0202583639266,43.0007717164612],[-79.0203362785467,43.0023640048518],[-79.0209196932908,43.0142868573575],[-79.0168849912932,43.0207512087991],[-79.011764,43.028956],[-79.005164,43.047056],[-79.00545048183109,43.057231224087104],[-79.01052992613619,43.0643886200334],[-79.0195783861988,43.0662944001067]]]}},
{"type":"Feature","properties":{"GEO_ID":"0500000US36111","STATE":"36","COUNTY":"111","NAME":"Ulster","LSAD":"County","CENSUSAREA":1124.235},"geometry":{"type":"Polygon","coordinates":[[[-74.367055,41.590976999999995],[-74.36827199999999,41.591701],[-74.364486,41.593782999999995],[-74.36565399999999,41.595092],[-74.366086,41.595622],[-74.370313,41.596506999999995],[-74.37307299999999,41.596263],[-74.375058,41.596886],[-74.376138,41.598189],[-74.376476,41.601772],[-74.375332,41.602928999999996],[-74.375937,41.604574],[-74.37863,41.605545],[-74.379549,41.607321999999996],[-74.37966,41.610744],[-74.38084099999999,41.611751],[-74.380682,41.613836],[-74.384008,41.615196999999995],[-74.38636199999999,41.619372],[-74.386842,41.628239],[-74.388303,41.629284999999996],[-74.391457,41.633455],[-74.392502,41.641239999999996],[-74.394373,41.642562],[-74.395071,41.644876],[-74.407597,41.651353],[-74.42142799999999,41.658505999999996],[-74.423814,41.659738999999995],[-74.425389,41.660615],[-74.45546499999999,41.677327],[-74.464778,41.682519],[-74.482322,41.692301],[-74.491062,41.697185],[-74.520697,41.71394],[-74.538733,41.724349],[-74.5569,41.734798],[-74.56206999999999,41.737772],[-74.575086,41.745258],[-74.57057499999999,41.750091],[-74.563193,41.757490999999995],[-74.543475,41.778932999999995],[-74.54061399999999,41.781746999999996],[-74.532956,41.789369],[-74.525506,41.796817],[-74.524531,41.797958],[-74.490883,41.831316],[-74.48782899999999,41.834361],[-74.48311199999999,41.839817],[-74.45382,41.875091999999995],[-74.453685,41.875595],[-74.502039,41.896668],[-74.576557,41.92971],[-74.60116699999999,41.940684],[-74.6246,41.951111999999995],[-74.65503199999999,41.963676],[-74.670952,41.970382],[-74.67402,41.971675],[-74.742763,42.000088999999996],[-74.74554499999999,42.00137],[-74.749602,42.002936999999996],[-74.780693,42.016375],[-74.749602,42.030755],[-74.749602,42.030977],[-74.70276799999999,42.052589999999995],[-74.66968899999999,42.067819],[-74.566002,42.115764],[-74.553598,42.121483999999995],[-74.548265,42.127406],[-74.546925,42.128566],[-74.530985,42.146474999999995],[-74.50914,42.1452],[-74.503984,42.14492],[-74.451713,42.169225],[-74.450322,42.168698],[-74.41367799999999,42.154844],[-74.32448,42.120753],[-74.307571,42.114346],[-74.286479,42.112814],[-74.280754,42.112356],[-74.27160599999999,42.111625],[-74.22474799999999,42.107974999999996],[-74.171495,42.103939],[-74.126661,42.100628],[-74.082194,42.097153],[-74.075423,42.096637],[-74.07479699999999,42.096589],[-74.063817,42.121582],[-74.04239299999999,42.170386],[-74.024878,42.162133999999995],[-74.017775,42.162273],[-74.00358899999999,42.163365],[-74.00251899999999,42.176162],[-74.00245,42.176992],[-73.996421,42.17339],[-73.989381,42.169363],[-73.972946,42.159971],[-73.957259,42.151081999999995],[-73.946941,42.145162],[-73.926271,42.133342999999996],[-73.918356,42.128916],[-73.910675,42.127292999999995],[-73.91532099999999,42.121337],[-73.91887299999999,42.114137],[-73.921465,42.110025],[-73.922553,42.106649999999995],[-73.923273,42.10217],[-73.924729,42.095417999999995],[-73.926682,42.090298],[-73.929114,42.081658],[-73.929626,42.078778],[-73.929688,42.078421999999996],[-73.929754,42.075306],[-73.926346,42.072506],[-73.92729,42.066857999999996],[-73.928314,42.066778],[-73.928234,42.064873999999996],[-73.932282,42.061578],[-73.93287699999999,42.059943],[-73.932763,42.055034],[-73.934395,42.044747],[-73.93417099999999,42.039547],[-73.93669899999999,42.034698999999996],[-73.93717099999999,42.030268],[-73.937035,42.026827],[-73.93463899999999,42.023303999999996],[-73.933323,42.018491],[-73.933435,42.015659],[-73.934315,42.012778999999995],[-73.936796,42.006651],[-73.939964,41.999403],[-73.940412,41.994347],[-73.94201199999999,41.991291],[-73.943336,41.985534],[-73.943615,41.984884],[-73.944636,41.981276],[-73.94506799999999,41.979707999999995],[-73.94584499999999,41.977646],[-73.947212,41.973372],[-73.950076,41.965756],[-73.95087699999999,41.962427999999996],[-73.952829,41.957066999999995],[-73.953709,41.952748],[-73.954205,41.950812],[-73.955597,41.936188],[-73.957421,41.926572],[-73.957938,41.92198],[-73.95830099999999,41.920331999999995],[-73.961101,41.918316],[-73.964237,41.913916],[-73.96418899999999,41.910156],[-73.96278099999999,41.90582],[-73.961835,41.900507999999995],[-73.96082899999999,41.899052],[-73.955213,41.892908],[-73.954301,41.891436],[-73.94630099999999,41.883004],[-73.941885,41.8763],[-73.940317,41.872748],[-73.93938899999999,41.865852],[-73.940973,41.860668],[-73.94193299999999,41.859244],[-73.946589,41.854236],[-73.948477,41.8507],[-73.949373,41.843916],[-73.949789,41.836971999999996],[-73.948685,41.828331999999996],[-73.949741,41.821211999999996],[-73.948452,41.816642],[-73.94935699999999,41.811341],[-73.949597,41.800125],[-73.95201399999999,41.791581],[-73.951982,41.790476999999996],[-73.952446,41.787965],[-73.95161399999999,41.770621],[-73.95068599999999,41.768829],[-73.946589,41.763677],[-73.943514,41.759979],[-73.940989,41.755741],[-73.941503,41.743004],[-73.941741,41.739021],[-73.941081,41.735993],[-73.941081,41.732693],[-73.94207999999999,41.727036],[-73.942301,41.725789],[-73.944435,41.714634],[-73.944971,41.710581999999995],[-73.945672,41.705663],[-73.946078,41.702825999999995],[-73.946682,41.699396],[-73.945782,41.695592999999995],[-73.943482,41.690293],[-73.942482,41.684093],[-73.943282,41.679393],[-73.945182,41.675892999999995],[-73.94703299999999,41.668825999999996],[-73.94738199999999,41.667493],[-73.94721799999999,41.660087999999995],[-73.946882,41.656393],[-73.948182,41.652493],[-73.948982,41.644793],[-73.948782,41.642193],[-73.950644,41.632639],[-73.951482,41.627693],[-73.95258199999999,41.625192999999996],[-73.95208199999999,41.613993],[-73.952274,41.609154],[-73.95258199999999,41.595293],[-73.953282,41.590193],[-73.953307,41.589977],[-73.982658,41.587112999999995],[-73.98635,41.586816999999996],[-73.999584,41.585805],[-74.004434,41.585170999999995],[-74.026844,41.582978999999995],[-74.037125,41.582043999999996],[-74.041328,41.581655],[-74.050724,41.580870999999995],[-74.053685,41.58061],[-74.05394199999999,41.580724],[-74.05386899999999,41.582588],[-74.053804,41.586065],[-74.068083,41.606001],[-74.074432,41.603649],[-74.08076,41.601589],[-74.084578,41.600437],[-74.085116,41.600277999999996],[-74.085189,41.600252999999995],[-74.089896,41.598602],[-74.094419,41.605452],[-74.098653,41.607259],[-74.134511,41.615694999999995],[-74.130471,41.599198],[-74.12775599999999,41.588269],[-74.127274,41.587095999999995],[-74.126393,41.582544],[-74.153992,41.587897999999996],[-74.160738,41.589408],[-74.18437999999999,41.593931],[-74.18453099999999,41.593961],[-74.185361,41.594128],[-74.187505,41.590793],[-74.197147,41.592991],[-74.202248,41.59429],[-74.236555,41.601845999999995],[-74.240179,41.602661999999995],[-74.244911,41.603758],[-74.251601,41.605374],[-74.250513,41.622755],[-74.250222,41.625875],[-74.250186,41.629324],[-74.263359,41.632597],[-74.264676,41.63225],[-74.267322,41.629200999999995],[-74.27103799999999,41.629275],[-74.272346,41.628150999999995],[-74.275786,41.625639],[-74.279112,41.625822],[-74.280844,41.625215999999995],[-74.285966,41.621491999999996],[-74.289058,41.621342],[-74.289704,41.619608],[-74.29230299999999,41.618294999999996],[-74.294927,41.619569999999996],[-74.295744,41.619655],[-74.300286,41.616431999999996],[-74.304121,41.615787999999995],[-74.304711,41.615251],[-74.304501,41.611892999999995],[-74.305443,41.610754],[-74.30633499999999,41.608889],[-74.31143999999999,41.611449],[-74.313835,41.610267],[-74.314792,41.607448999999995],[-74.316324,41.60543],[-74.320161,41.603006],[-74.323752,41.602956999999996],[-74.32650199999999,41.602067],[-74.329746,41.601503],[-74.330384,41.600254],[-74.329751,41.598622],[-74.332033,41.596739],[-74.3344,41.597511],[-74.336624,41.595374],[-74.34067999999999,41.594376],[-74.342539,41.596829],[-74.344713,41.597853],[-74.34666299999999,41.597783],[-74.34935399999999,41.598621],[-74.351342,41.598205],[-74.353189,41.595369999999996],[-74.35195499999999,41.594791],[-74.352048,41.592908],[-74.35394099999999,41.592974999999996],[-74.35340000000001,41.591865999999996],[-74.35775699999999,41.591359],[-74.35980099999999,41.592028],[-74.363472,41.591964999999995],[-74.367055,41.590976999999995]]]}}]}
year countyCode countyName population
2013 28 Hamilton 4773
2013 52 Schuyler 18460
2013 65 Yates 25156
2013 31 Lewis 27149
2013 51 Schoharie 31844
2013 53 Seneca 35409
2013 23 Essex 38762
2013 64 Wyoming 41531
2013 42 Orleans 42235
2013 20 Delaware 46722
2013 10 Allegany 48109
2013 27 Greene 48455
2013 19 Cortland 48976
2013 16 Chenango 49503
2013 35 Montgomery 49897
2013 57 Tioga 50243
2013 24 Franklin 51688
2013 25 Fulton 54586
2013 26 Genesee 59454
2013 44 Otsego 61683
2013 18 Columbia 62243
2013 61 Washington 63093
2013 29 Herkimer 64181
2013 32 Livingston 64705
2013 60 Warren 65337
2013 33 Madison 72382
2013 56 Sullivan 76665
2013 12 Cattaraugus 78892
2013 13 Cayuga 79477
2013 17 Clinton 81591
2013 15 Chemung 88506
2013 62 Wayne 92473
2013 54 Steuben 98650
2013 45 Putnam 99645
2013 58 Tompkins 103617
2013 40 Ontario 109103
2013 48 St. Lawrence 111963
2013 30 Jefferson 119504
2013 43 Oswego 121165
2013 14 Chautauqua 133080
2013 50 Schenectady 155333
2013 46 Rensselaer 159918
2013 59 Ulster 180998
2013 11 Broome 197534
2013 37 Niagara 214249
2013 49 Saratoga 223865
2013 38 Oneida 233585
2013 21 Dutchess 296916
2013 9 Albany 306945
2013 47 Rockland 320903
2013 41 Orange 375592
2013 39 Onondaga 468387
2013 7 Richmond 472621
2013 34 Monroe 749606
2013 22 Erie 919866
2013 63 Westchester 968802
2013 36 Nassau 1352146
2013 3 Bronx 1418733
2013 55 Suffolk 1499738
2013 5 New York 1626159
2013 6 Queens 2296175
2013 4 Kings 2592149
2013 2 New York City 8405837
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment