Skip to content

Instantly share code, notes, and snippets.

@veltman
Last active May 26, 2021 20:50
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save veltman/949ce9c1b6f3e54c6e18 to your computer and use it in GitHub Desktop.
Save veltman/949ce9c1b6f3e54c6e18 to your computer and use it in GitHub Desktop.
Redistricting

Old vs. new proposed North Carolina congressional districts, data via WRAL.

Polygons were pre-processed for gentler animation as follows:

  1. For each district, find the difference n in the number of vertices between the old and new district.
  2. Add n vertices to whichever one has fewer, evenly spaced along the existing polyline, so the old and new shape each have the same number of vertices (not great for performance).
  3. For each pair of old/new district, wind the old district around to minimize the sum of the squared distances between point index i in the old district and point index i in the new district.
<!DOCTYPE html>
<meta charset="utf-8">
<style>
path {
stroke-width: 1px;
stroke: #444;
}
text {
font: bold 64px sans-serif;
text-anchor: middle;
text-transform: uppercase;
}
</style>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.16/d3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/queue-async/1.0.7/queue.min.js"></script>
<script>
var width = 960,
height = 500;
var colors = d3.scale.category20().range();
d3.shuffle(colors);
var svg = d3.select("body").append("svg")
.attr("width",width)
.attr("height",height);
var projection = d3.geo.conicConformal()
.parallels([34 + 20 / 60, 36 + 10 / 60])
.rotate([79, -33 - 45 / 60])
.scale(6102.002295938357)
.translate([570.5880508434078,431.7927213940179]);
var path = d3.geo.path().projection(projection);
queue()
.defer(d3.json,"old.geojson")
.defer(d3.json,"new.geojson")
.await(function(err,oldDistricts,newDistricts){
var combined = oldDistricts.features.map(function(d,i){
return [d,newDistricts.features[i]].map(path);
});
var districts = svg.selectAll("path")
.data(combined)
.enter()
.append("path")
.attr("d",next)
.style("fill",function(d,i){
return colors[i];
});
var label = svg.append("text")
.datum(["Old","New"])
.text(next)
.attr("x",300)
.attr("y",400);
morph();
function morph() {
districts.transition()
.duration(3200)
.attr("d",next)
.each("end",function(d,i){
if (i === combined.length - 1) {
morph();
}
});
label.transition()
.duration(0)
.delay(3200 / 2)
.each("end",function(){
label.text(next);
});
}
});
function next(d) {
return d.reverse()[1];
}
</script>
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"district":1},"geometry":{"type":"Polygon","coordinates":[[[-77.057055,35.145425],[-77.051701,35.14259],[-77.046347,35.136919],[-77.037425,35.126143],[-77.026718,35.110831],[-77.024041,35.102608],[-77.040102,35.102041],[-77.049024,35.093251],[-77.052593,35.085878],[-77.05527,35.084177],[-77.057947,35.079073],[-77.065085,35.075103],[-77.072223,35.079924],[-77.069546,35.086729],[-77.076684,35.08843],[-77.076684,35.093534],[-77.079361,35.094385],[-77.083823,35.091833],[-77.086499,35.095236],[-77.090961,35.092117],[-77.092745,35.10034],[-77.090068,35.100907],[-77.08293,35.096937],[-77.074008,35.103459],[-77.063301,35.10431],[-77.059731,35.106011],[-77.057947,35.109414],[-77.060624,35.109981],[-77.059731,35.113667],[-77.064193,35.110831],[-77.071331,35.114518],[-77.068654,35.116786],[-77.069546,35.120189],[-77.067762,35.122741],[-77.063301,35.121323],[-77.053486,35.125293],[-77.064193,35.127845],[-77.068654,35.132098],[-77.064193,35.135217],[-77.065977,35.136351],[-77.069546,35.133516],[-77.073115,35.136919],[-77.087392,35.125009],[-77.08293,35.121039],[-77.086499,35.116219],[-77.083823,35.114518],[-77.085607,35.111682],[-77.08293,35.109981],[-77.081146,35.10516],[-77.085607,35.103742],[-77.103452,35.115935],[-77.112375,35.120472],[-77.142712,35.129546],[-77.140928,35.126994],[-77.144497,35.123024],[-77.146281,35.124442],[-77.153419,35.120472],[-77.153419,35.11792],[-77.167695,35.114518],[-77.174834,35.109414],[-77.174834,35.10516],[-77.178403,35.10516],[-77.185541,35.107712],[-77.190894,35.107429],[-77.196248,35.101758],[-77.202494,35.10913],[-77.206063,35.110831],[-77.206063,35.101758],[-77.207847,35.10034],[-77.206955,35.093534],[-77.209632,35.091266],[-77.329195,35.149395],[-77.375593,35.175199],[-77.394331,35.186824],[-77.417529,35.199585],[-77.45322,35.219433],[-77.471958,35.227089],[-77.474634,35.228791],[-77.479988,35.229642],[-77.523709,35.241551],[-77.52817,35.243252],[-77.529955,35.246655],[-77.524601,35.247789],[-77.519248,35.250625],[-77.519248,35.254878],[-77.511217,35.258848],[-77.509433,35.265653],[-77.515678,35.266504],[-77.517463,35.263668],[-77.527278,35.261967],[-77.533524,35.254594],[-77.538877,35.252893],[-77.540662,35.247222],[-77.546015,35.245804],[-77.549585,35.248073],[-77.55583,35.248073],[-77.557615,35.243819],[-77.560292,35.241267],[-77.568322,35.240417],[-77.580814,35.243819],[-77.590629,35.256296],[-77.585275,35.257997],[-77.584383,35.259982],[-77.587952,35.26225],[-77.598659,35.263101],[-77.605797,35.265653],[-77.617397,35.267071],[-77.620073,35.268205],[-77.606689,35.270474],[-77.606689,35.273876],[-77.601336,35.27416],[-77.59509,35.272459],[-77.594198,35.285786],[-77.597767,35.288905],[-77.601336,35.295427],[-77.615612,35.297979],[-77.618289,35.290606],[-77.625427,35.287203],[-77.640595,35.293158],[-77.647734,35.301665],[-77.651303,35.311306],[-77.658441,35.319812],[-77.661118,35.329737],[-77.661118,35.336826],[-77.659333,35.34675],[-77.660225,35.351854],[-77.664687,35.352421],[-77.667363,35.349019],[-77.671825,35.347601],[-77.679855,35.347601],[-77.688778,35.358943],[-77.691455,35.360077],[-77.691455,35.364047],[-77.695024,35.365749],[-77.6977,35.372554],[-77.698593,35.378225],[-77.702162,35.38021],[-77.725361,35.376807],[-77.743206,35.374255],[-77.739637,35.369151],[-77.740529,35.366032],[-77.746775,35.359227],[-77.749452,35.349019],[-77.748559,35.341646],[-77.753913,35.340796],[-77.766405,35.33314],[-77.759267,35.320663],[-77.754805,35.31244],[-77.753021,35.303366],[-77.748559,35.303083],[-77.736068,35.29968],[-77.726253,35.289188],[-77.727145,35.286353],[-77.728037,35.273026],[-77.724468,35.264519],[-77.732499,35.26622],[-77.733391,35.255729],[-77.73696,35.255729],[-77.738745,35.244103],[-77.736068,35.23191],[-77.729822,35.218866],[-77.735175,35.220284],[-77.743206,35.219717],[-77.745883,35.215464],[-77.753021,35.217165],[-77.758374,35.220568],[-77.761051,35.220568],[-77.76462,35.224537],[-77.769082,35.224537],[-77.772651,35.229074],[-77.775327,35.229642],[-77.775327,35.226522],[-77.782465,35.228791],[-77.786035,35.226522],[-77.788711,35.23191],[-77.794065,35.229925],[-77.797634,35.232761],[-77.806557,35.233044],[-77.814587,35.231343],[-77.82351,35.233044],[-77.826186,35.23191],[-77.830648,35.233044],[-77.829755,35.248923],[-77.829755,35.26622],[-77.828863,35.280682],[-77.827079,35.298262],[-77.825294,35.33314],[-77.824402,35.343915],[-77.819941,35.351571],[-77.819941,35.355824],[-77.815479,35.361495],[-77.807449,35.368301],[-77.80388,35.372554],[-77.815479,35.377374],[-77.827971,35.377658],[-77.844924,35.376524],[-77.853847,35.38021],[-77.869015,35.380777],[-77.872584,35.379359],[-77.87883,35.374255],[-77.877045,35.370002],[-77.883291,35.368584],[-77.891322,35.364047],[-77.902029,35.360077],[-77.910952,35.352421],[-77.918982,35.34675],[-77.921659,35.349019],[-77.927012,35.356675],[-77.935935,35.363197],[-77.939504,35.361779],[-77.95378,35.368584],[-77.958242,35.364898],[-77.952888,35.36348],[-77.951996,35.359227],[-77.950211,35.359227],[-77.949319,35.354973],[-77.951103,35.353272],[-77.94575,35.35072],[-77.941289,35.346467],[-77.933258,35.349019],[-77.93415,35.343348],[-77.964487,35.335975],[-77.970733,35.332572],[-77.969841,35.323782],[-77.971626,35.321514],[-77.976087,35.324916],[-77.985902,35.33399],[-77.986794,35.336826],[-77.994824,35.337676],[-77.997501,35.336826],[-77.992148,35.33002],[-77.995717,35.325484],[-78.00107,35.322364],[-78.018023,35.316693],[-78.016239,35.304784],[-78.010885,35.291457],[-78.008208,35.289188],[-78.008208,35.282099],[-77.998393,35.280398],[-78.003747,35.273876],[-78.009993,35.269907],[-78.018916,35.26225],[-78.018023,35.255729],[-78.024269,35.24864],[-78.031407,35.24467],[-78.035869,35.237014],[-78.034976,35.229925],[-78.030515,35.225388],[-78.02873,35.220284],[-78.042114,35.213762],[-78.049252,35.215464],[-78.055498,35.208091],[-78.047468,35.204405],[-78.050145,35.201853],[-78.056391,35.200435],[-78.059067,35.194764],[-78.056391,35.190511],[-78.05996,35.187675],[-78.06799,35.186257],[-78.070667,35.180586],[-78.075128,35.182855],[-78.082266,35.179452],[-78.083159,35.182288],[-78.08762,35.184556],[-78.09565,35.182288],[-78.088512,35.192779],[-78.084943,35.191361],[-78.080482,35.195331],[-78.077805,35.193913],[-78.074236,35.196182],[-78.068882,35.19363],[-78.059067,35.204689],[-78.057283,35.206106],[-78.062636,35.209509],[-78.058175,35.212061],[-78.054606,35.212061],[-78.060852,35.215464],[-78.057283,35.219433],[-78.056391,35.22312],[-78.056391,35.237865],[-78.065313,35.241551],[-78.068882,35.242118],[-78.069775,35.246655],[-78.063529,35.25743],[-78.066206,35.261967],[-78.066206,35.265653],[-78.072451,35.264802],[-78.083159,35.263952],[-78.085835,35.271324],[-78.085835,35.289188],[-78.083159,35.296561],[-78.084051,35.300814],[-78.080482,35.309888],[-78.066206,35.318111],[-78.05996,35.320096],[-78.054606,35.320096],[-78.047468,35.318395],[-78.043899,35.31641],[-78.037653,35.316693],[-78.033192,35.320947],[-78.030515,35.331722],[-78.025161,35.339945],[-78.029623,35.3459],[-78.025161,35.348168],[-78.027838,35.353272],[-78.022485,35.355541],[-78.023377,35.364898],[-78.018916,35.370002],[-78.022485,35.369435],[-78.023377,35.375957],[-78.025161,35.378509],[-78.021592,35.379359],[-78.0207,35.383329],[-78.025161,35.385881],[-78.027838,35.394104],[-78.024269,35.397507],[-78.030515,35.400059],[-78.023377,35.40176],[-78.0207,35.40573],[-78.015346,35.406864],[-78.015346,35.404879],[-78.009993,35.403462],[-78.011777,35.407715],[-78.005532,35.408566],[-78.001962,35.417356],[-77.996609,35.420191],[-77.997501,35.425295],[-77.995717,35.433235],[-77.985902,35.428415],[-77.982333,35.428415],[-77.975195,35.425295],[-77.964487,35.424445],[-77.956457,35.42331],[-77.94575,35.419908],[-77.938612,35.415087],[-77.943965,35.409133],[-77.933258,35.404029],[-77.929689,35.393254],[-77.924335,35.389284],[-77.920766,35.388433],[-77.903813,35.399492],[-77.897568,35.405163],[-77.896675,35.414237],[-77.889537,35.424445],[-77.885076,35.426997],[-77.891322,35.43522],[-77.897568,35.44004],[-77.893106,35.442025],[-77.893999,35.447696],[-77.892214,35.459322],[-77.883291,35.470381],[-77.880615,35.46953],[-77.863662,35.46868],[-77.861877,35.470381],[-77.853847,35.4735],[-77.847601,35.4735],[-77.83957,35.475201],[-77.83154,35.475201],[-77.826186,35.476903],[-77.824402,35.498736],[-77.824402,35.508661],[-77.82351,35.585505],[-77.817264,35.588057],[-77.806557,35.583236],[-77.802988,35.585788],[-77.80388,35.589758],[-77.798526,35.593161],[-77.796742,35.59628],[-77.798526,35.601384],[-77.802988,35.607339],[-77.802095,35.60904],[-77.807449,35.612159],[-77.811018,35.620666],[-77.813695,35.620666],[-77.816372,35.627188],[-77.821725,35.632292],[-77.824402,35.639097],[-77.826186,35.646469],[-77.825294,35.650723],[-77.827079,35.657528],[-77.825294,35.662348],[-77.835109,35.671706],[-77.849385,35.679929],[-77.852062,35.68163],[-77.860092,35.679929],[-77.881507,35.679078],[-77.885076,35.676526],[-77.894891,35.672557],[-77.895783,35.66887],[-77.901137,35.661498],[-77.900244,35.652424],[-77.904706,35.65214],[-77.908275,35.655827],[-77.908275,35.658379],[-77.912736,35.664617],[-77.911844,35.671706],[-77.915413,35.677661],[-77.92612,35.677661],[-77.932366,35.68078],[-77.938612,35.68163],[-77.943073,35.685033],[-77.955565,35.692405],[-77.960918,35.698927],[-77.966272,35.700912],[-77.959134,35.703181],[-77.951996,35.707434],[-77.940396,35.710837],[-77.940396,35.71509],[-77.932366,35.714239],[-77.935043,35.71991],[-77.935935,35.728417],[-77.935043,35.734088],[-77.925228,35.73267],[-77.91809,35.73579],[-77.915413,35.73579],[-77.925228,35.746848],[-77.922551,35.7494],[-77.92612,35.751952],[-77.92612,35.755071],[-77.91809,35.754504],[-77.911844,35.749117],[-77.907382,35.747415],[-77.901137,35.761593],[-77.901137,35.770951],[-77.905598,35.781726],[-77.894891,35.783427],[-77.891322,35.785979],[-77.881507,35.78768],[-77.877045,35.784561],[-77.873476,35.784278],[-77.863662,35.786263],[-77.852062,35.785979],[-77.853847,35.780308],[-77.858308,35.776055],[-77.858308,35.768399],[-77.860985,35.759892],[-77.853847,35.758191],[-77.857416,35.750251],[-77.856523,35.747699],[-77.844924,35.748266],[-77.835109,35.750251],[-77.829755,35.7494],[-77.830648,35.737774],[-77.832432,35.73182],[-77.819048,35.733521],[-77.799419,35.738625],[-77.786035,35.743446],[-77.778896,35.745147],[-77.765512,35.7494],[-77.743206,35.732387],[-77.729822,35.721045],[-77.727145,35.723313],[-77.716438,35.721895],[-77.707515,35.718493],[-77.703054,35.713956],[-77.698593,35.716508],[-77.693239,35.724164],[-77.688778,35.720761],[-77.688778,35.713105],[-77.691455,35.703464],[-77.661118,35.677377],[-77.610258,35.707434],[-77.597767,35.715941],[-77.538877,35.750251],[-77.516571,35.760743],[-77.529955,35.769533],[-77.535308,35.776905],[-77.542446,35.780024],[-77.5478,35.784278],[-77.551369,35.793352],[-77.549585,35.798456],[-77.546908,35.811216],[-77.549585,35.818588],[-77.548692,35.826244],[-77.546908,35.830214],[-77.546015,35.837019],[-77.544231,35.844675],[-77.55583,35.845526],[-77.561184,35.856868],[-77.570999,35.861122],[-77.590629,35.875583],[-77.591521,35.885224],[-77.59509,35.887209],[-77.608474,35.891462],[-77.612935,35.894865],[-77.613828,35.897984],[-77.609366,35.898551],[-77.596875,35.89373],[-77.58706,35.894865],[-77.571891,35.895432],[-77.541554,35.907058],[-77.5478,35.918683],[-77.550477,35.920668],[-77.566538,35.926623],[-77.595982,35.926339],[-77.620073,35.924638],[-77.623642,35.916982],[-77.633457,35.925489],[-77.633457,35.921519],[-77.637026,35.915564],[-77.653087,35.916982],[-77.653979,35.91443],[-77.655764,35.917266],[-77.708408,35.921235],[-77.706623,35.916415],[-77.707515,35.908759],[-77.706623,35.903088],[-77.726253,35.903939],[-77.731606,35.903655],[-77.743206,35.906491],[-77.757482,35.915281],[-77.774435,35.920668],[-77.779789,35.917266],[-77.787819,35.916982],[-77.787819,35.909893],[-77.791388,35.906207],[-77.802988,35.906207],[-77.804772,35.901387],[-77.809233,35.901103],[-77.812802,35.888626],[-77.817264,35.891178],[-77.810126,35.909043],[-77.816372,35.911311],[-77.816372,35.908759],[-77.82351,35.91046],[-77.82351,35.914714],[-77.828863,35.915281],[-77.830648,35.912729],[-77.83154,35.916415],[-77.835109,35.918116],[-77.834217,35.922937],[-77.838678,35.92322],[-77.841355,35.925772],[-77.847601,35.92719],[-77.847601,35.932861],[-77.83957,35.938249],[-77.829755,35.934846],[-77.828863,35.949875],[-77.824402,35.952427],[-77.820833,35.952143],[-77.813695,35.957247],[-77.816372,35.9615],[-77.820833,35.9615],[-77.826186,35.964052],[-77.825294,35.968873],[-77.840463,35.971425],[-77.850278,35.97823],[-77.858308,35.980499],[-77.869015,35.981349],[-77.871692,35.973693],[-77.871692,35.965754],[-77.866338,35.964052],[-77.868123,35.957247],[-77.885076,35.96065],[-77.877938,35.977947],[-77.875261,35.989856],[-77.873476,35.993826],[-77.861877,35.988438],[-77.848493,35.986453],[-77.848493,35.990707],[-77.841355,35.994109],[-77.83154,35.989856],[-77.82351,35.991274],[-77.818156,36.002333],[-77.813695,36.000631],[-77.815479,36.004885],[-77.811018,36.004034],[-77.810126,36.001482],[-77.804772,36.003183],[-77.802095,36.007153],[-77.806557,36.010839],[-77.81191,36.012541],[-77.819048,36.01651],[-77.819941,36.019062],[-77.829755,36.025868],[-77.834217,36.030688],[-77.840463,36.02842],[-77.846709,36.031539],[-77.853847,36.032673],[-77.852062,36.038344],[-77.862769,36.037494],[-77.868123,36.044866],[-77.861877,36.055074],[-77.866338,36.055641],[-77.867231,36.061029],[-77.869907,36.063297],[-77.863662,36.067551],[-77.869907,36.073505],[-77.875261,36.076624],[-77.87883,36.076908],[-77.87883,36.080027],[-77.883291,36.082579],[-77.881507,36.085131],[-77.882399,36.089384],[-77.889537,36.086549],[-77.889537,36.083713],[-77.894891,36.084847],[-77.901137,36.088534],[-77.908275,36.094488],[-77.912736,36.089101],[-77.918982,36.087683],[-77.923443,36.089384],[-77.927012,36.086549],[-77.929689,36.07946],[-77.93415,36.078326],[-77.937719,36.070103],[-77.941289,36.065282],[-77.944858,36.064999],[-77.948427,36.058477],[-77.949319,36.053373],[-77.95378,36.048269],[-77.960918,36.031539],[-77.963595,36.02927],[-77.982333,36.030121],[-78.034084,36.025017],[-78.064421,36.022465],[-78.066206,36.020764],[-78.063529,36.015093],[-78.055498,36.009989],[-78.05996,36.007437],[-78.061744,36.00375],[-78.06799,36.002333],[-78.06799,36.000064],[-78.081374,35.994109],[-78.079589,35.983901],[-78.098327,35.9822],[-78.099219,35.980499],[-78.090297,35.972276],[-78.092081,35.969724],[-78.092081,35.954979],[-78.091189,35.949024],[-78.084051,35.942219],[-78.080482,35.934846],[-78.077805,35.933145],[-78.057283,35.928891],[-78.052822,35.925489],[-78.043899,35.922937],[-78.041222,35.919534],[-78.031407,35.917266],[-78.026054,35.91443],[-78.026946,35.91046],[-78.036761,35.907908],[-78.038545,35.902804],[-78.047468,35.894581],[-78.047468,35.887209],[-78.056391,35.877851],[-78.057283,35.875299],[-78.063529,35.882105],[-78.064421,35.885224],[-78.074236,35.88891],[-78.081374,35.886925],[-78.084943,35.882105],[-78.098327,35.882955],[-78.100112,35.883806],[-78.103681,35.896282],[-78.102788,35.900536],[-78.105465,35.904789],[-78.121526,35.905356],[-78.125095,35.903655],[-78.127772,35.898834],[-78.134018,35.897984],[-78.139371,35.904789],[-78.139371,35.91046],[-78.142048,35.915564],[-78.143832,35.923787],[-78.149186,35.928891],[-78.148294,35.934846],[-78.150971,35.936547],[-78.152755,35.930593],[-78.156324,35.928891],[-78.164355,35.929742],[-78.171493,35.927474],[-78.176846,35.929742],[-78.184877,35.935413],[-78.172385,35.956396],[-78.16257,35.969724],[-78.125987,36.026435],[-78.122418,36.02927],[-78.05996,36.12256],[-78.051929,36.133619],[-78.092081,36.137589],[-78.175954,36.146663],[-78.185769,36.128515],[-78.214321,36.068401],[-78.225029,36.048269],[-78.252689,36.050821],[-78.287487,36.053373],[-78.345484,36.058477],[-78.382067,36.061596],[-78.405266,36.064148],[-78.441849,36.067267],[-78.459694,36.069252],[-78.483785,36.07152],[-78.470401,36.114621],[-78.458802,36.161124],[-78.455233,36.167646],[-78.449879,36.16878],[-78.436495,36.166228],[-78.432034,36.166795],[-78.432034,36.164527],[-78.423111,36.164243],[-78.422219,36.167929],[-78.413296,36.169347],[-78.412404,36.171049],[-78.338346,36.163676],[-78.334777,36.166795],[-78.332993,36.172183],[-78.30444,36.174451],[-78.292841,36.197136],[-78.272319,36.237117],[-78.263396,36.256399],[-78.260719,36.260652],[-78.308009,36.265756],[-78.30444,36.272845],[-78.299086,36.279084],[-78.292841,36.284755],[-78.291056,36.290426],[-78.282133,36.299783],[-78.277672,36.306305],[-78.279457,36.316513],[-78.287487,36.358196],[-78.300871,36.357345],[-78.307117,36.353942],[-78.326747,36.353375],[-78.335669,36.354226],[-78.342807,36.353092],[-78.349053,36.353375],[-78.349946,36.360181],[-78.35173,36.361031],[-78.362437,36.351674],[-78.366899,36.349122],[-78.366899,36.340899],[-78.368683,36.321333],[-78.37136,36.312543],[-78.374929,36.308006],[-78.37939,36.300067],[-78.378498,36.298082],[-78.387421,36.274547],[-78.406158,36.277099],[-78.419542,36.277099],[-78.433818,36.281352],[-78.466832,36.284471],[-78.465048,36.285605],[-78.464155,36.292411],[-78.460586,36.294112],[-78.457017,36.303186],[-78.463263,36.305454],[-78.481108,36.307439],[-78.48557,36.307439],[-78.489139,36.309141],[-78.498954,36.310558],[-78.510553,36.315662],[-78.511445,36.267174],[-78.509661,36.230312],[-78.508769,36.182958],[-78.518583,36.181824],[-78.519476,36.180406],[-78.525722,36.180406],[-78.53286,36.186077],[-78.536429,36.185226],[-78.539998,36.182107],[-78.543567,36.185226],[-78.550705,36.188062],[-78.555166,36.188062],[-78.557843,36.190898],[-78.56052,36.188629],[-78.564981,36.191181],[-78.575688,36.19033],[-78.576581,36.193733],[-78.58818,36.195434],[-78.58818,36.19345],[-78.591749,36.188629],[-78.597103,36.19033],[-78.59978,36.190047],[-78.601564,36.19345],[-78.604241,36.192032],[-78.606918,36.195151],[-78.613163,36.196002],[-78.619409,36.201106],[-78.629224,36.199404],[-78.634578,36.199404],[-78.652423,36.187778],[-78.660453,36.186361],[-78.666699,36.178705],[-78.669376,36.182107],[-78.697036,36.180406],[-78.705959,36.171049],[-78.713097,36.15999],[-78.725589,36.146663],[-78.743434,36.126814],[-78.764848,36.082012],[-78.76931,36.077475],[-78.776448,36.071804],[-78.74968,36.070953],[-78.754141,36.055925],[-78.754141,36.048269],[-78.758603,36.044015],[-78.763956,36.041747],[-78.763956,36.034942],[-78.76931,36.030121],[-78.775556,36.02842],[-78.780909,36.02842],[-78.786263,36.025584],[-78.788047,36.019062],[-78.786263,36.010839],[-78.788047,36.008854],[-78.788047,35.997512],[-78.786263,35.993259],[-78.791616,35.979648],[-78.794293,35.976529],[-78.787155,35.975678],[-78.782694,35.962918],[-78.791616,35.959799],[-78.795185,35.949875],[-78.794293,35.946472],[-78.796078,35.940517],[-78.800539,35.940517],[-78.802323,35.937965],[-78.806785,35.937398],[-78.813031,35.934846],[-78.806785,35.929459],[-78.806785,35.927474],[-78.808569,35.923787],[-78.812138,35.925772],[-78.821061,35.925489],[-78.84426,35.930593],[-78.843368,35.935697],[-78.838906,35.942219],[-78.846937,35.9391],[-78.85229,35.937965],[-78.86389,35.939667],[-78.866567,35.942219],[-78.87192,35.943636],[-78.879058,35.939667],[-78.882627,35.943636],[-78.886196,35.930593],[-78.887981,35.932294],[-78.890658,35.916982],[-78.896011,35.902237],[-78.909395,35.902804],[-78.934379,35.91046],[-78.931702,35.916982],[-78.925456,35.924922],[-78.921887,35.928041],[-78.922779,35.930593],[-78.922779,35.935697],[-78.925456,35.937965],[-78.925456,35.941368],[-78.922779,35.946188],[-78.928133,35.948173],[-78.92724,35.950725],[-78.923671,35.952427],[-78.925456,35.958948],[-78.934379,35.957531],[-78.932594,35.959799],[-78.932594,35.970007],[-78.939732,35.968022],[-78.937055,35.974828],[-78.959362,35.983901],[-78.959362,36.004034],[-78.955793,36.012541],[-78.950439,36.018212],[-78.937948,36.01566],[-78.936163,36.017645],[-78.920102,36.016794],[-78.920102,36.023316],[-78.925456,36.02842],[-78.937948,36.02842],[-78.948655,36.024734],[-78.954901,36.025584],[-78.952224,36.030972],[-78.954901,36.035792],[-78.952224,36.038911],[-78.947763,36.038344],[-78.943301,36.041747],[-78.942409,36.045717],[-78.93884,36.050821],[-78.935271,36.051104],[-78.937055,36.056775],[-78.929025,36.057343],[-78.921887,36.063297],[-78.921887,36.065849],[-78.914749,36.068401],[-78.909395,36.071804],[-78.91118,36.076908],[-78.896011,36.081161],[-78.895119,36.079176],[-78.896904,36.073505],[-78.892442,36.072655],[-78.887981,36.076057],[-78.879058,36.079176],[-78.877274,36.076624],[-78.881735,36.076624],[-78.876381,36.07152],[-78.873705,36.075207],[-78.868351,36.074356],[-78.871028,36.068401],[-78.870136,36.066416],[-78.867459,36.068401],[-78.865674,36.072655],[-78.856752,36.071804],[-78.85229,36.068401],[-78.845152,36.07067],[-78.840691,36.075774],[-78.83623,36.075774],[-78.837122,36.079176],[-78.843368,36.080878],[-78.834445,36.085131],[-78.830876,36.084847],[-78.827307,36.087683],[-78.821953,36.088534],[-78.82463,36.091653],[-78.820169,36.095055],[-78.811246,36.094488],[-78.805893,36.091936],[-78.805,36.111785],[-78.805,36.145245],[-78.804108,36.182107],[-78.804108,36.212164],[-78.803216,36.226342],[-78.803216,36.241087],[-78.802323,36.249877],[-78.801431,36.309708],[-78.750572,36.309141],[-78.750572,36.308857],[-78.708636,36.30829],[-78.660453,36.308006],[-78.659561,36.356494],[-78.656884,36.430786],[-78.625655,36.430219],[-78.571227,36.429936],[-78.536429,36.430219],[-78.511445,36.430786],[-78.511445,36.454321],[-78.503415,36.487497],[-78.504307,36.495154],[-78.500738,36.497989],[-78.50163,36.501959],[-78.495385,36.507914],[-78.498061,36.514435],[-78.4936,36.518405],[-78.481108,36.517838],[-78.475755,36.522091],[-78.471293,36.522091],[-78.46594,36.525494],[-78.470401,36.526912],[-78.467724,36.532016],[-78.457017,36.533434],[-78.457017,36.53712],[-78.45434,36.540523],[-78.45791,36.542224],[-78.440956,36.542791],[-78.368683,36.543075],[-78.29641,36.543925],[-78.246443,36.544492],[-78.174169,36.543925],[-78.143832,36.543642],[-78.130449,36.543642],[-78.075128,36.543642],[-78.052822,36.543925],[-78.008208,36.543925],[-77.999286,36.544492],[-77.970733,36.544492],[-77.874369,36.544492],[-77.751236,36.545343],[-77.710192,36.545343],[-77.601336,36.545343],[-77.574568,36.544776],[-77.498725,36.544776],[-77.449651,36.544492],[-77.372916,36.544492],[-77.337226,36.544776],[-77.297074,36.544492],[-77.206063,36.544492],[-77.192679,36.545627],[-77.16948,36.547044],[-77.153419,36.543925],[-77.124867,36.543642],[-77.10256,36.544492],[-77.049917,36.544492],[-76.967828,36.543642],[-76.963367,36.543925],[-76.916969,36.543642],[-76.922323,36.537971],[-76.921431,36.532016],[-76.925892,36.530031],[-76.922323,36.528613],[-76.916969,36.530315],[-76.904477,36.522091],[-76.902693,36.519256],[-76.90537,36.516987],[-76.907154,36.508764],[-76.909831,36.505362],[-76.915185,36.504227],[-76.919646,36.505362],[-76.921431,36.50366],[-76.923215,36.496004],[-76.927676,36.48693],[-76.934814,36.484378],[-76.937491,36.480125],[-76.933922,36.47417],[-76.937491,36.470768],[-76.949091,36.471902],[-76.949983,36.46935],[-76.946414,36.464529],[-76.949091,36.457441],[-76.946414,36.449217],[-76.945522,36.438159],[-76.947306,36.415191],[-76.941953,36.408385],[-76.93303,36.401013],[-76.919646,36.395909],[-76.906262,36.389954],[-76.895555,36.390238],[-76.888417,36.386835],[-76.882171,36.382582],[-76.874141,36.383149],[-76.856295,36.376627],[-76.848265,36.374926],[-76.837558,36.374075],[-76.833096,36.372374],[-76.825066,36.365568],[-76.821497,36.36415],[-76.809005,36.362449],[-76.794729,36.359897],[-76.789375,36.360181],[-76.784022,36.363016],[-76.775099,36.361031],[-76.77153,36.361882],[-76.772422,36.365568],[-76.770638,36.368404],[-76.773315,36.373224],[-76.772422,36.381731],[-76.769746,36.382582],[-76.768853,36.386551],[-76.778668,36.386551],[-76.782237,36.388253],[-76.78313,36.393357],[-76.785806,36.400162],[-76.784022,36.40158],[-76.785806,36.404983],[-76.784022,36.412355],[-76.77956,36.41434],[-76.781345,36.416892],[-76.778668,36.41831],[-76.785806,36.423414],[-76.789375,36.429936],[-76.781345,36.439009],[-76.775991,36.440711],[-76.77956,36.443546],[-76.787591,36.446098],[-76.78313,36.446949],[-76.775099,36.455172],[-76.776884,36.461127],[-76.772422,36.465947],[-76.774207,36.46935],[-76.77153,36.472753],[-76.758146,36.477857],[-76.746547,36.479274],[-76.741193,36.480976],[-76.731378,36.482677],[-76.721563,36.48608],[-76.730486,36.499123],[-76.733163,36.505078],[-76.717102,36.510182],[-76.700149,36.517838],[-76.690334,36.507063],[-76.682304,36.501959],[-76.677842,36.491751],[-76.679627,36.484378],[-76.671597,36.483811],[-76.666243,36.481826],[-76.66892,36.472753],[-76.672489,36.468499],[-76.659997,36.465947],[-76.651967,36.467081],[-76.638583,36.468216],[-76.633229,36.472753],[-76.626091,36.472469],[-76.619845,36.467649],[-76.611815,36.457724],[-76.604677,36.456023],[-76.593077,36.473603],[-76.576124,36.485229],[-76.567202,36.478707],[-76.563633,36.470201],[-76.556494,36.460843],[-76.547572,36.442696],[-76.559171,36.442412],[-76.565417,36.443546],[-76.569878,36.443263],[-76.585047,36.439293],[-76.593077,36.438442],[-76.59397,36.43504],[-76.596646,36.433338],[-76.597539,36.426816],[-76.593077,36.416892],[-76.600215,36.413489],[-76.611815,36.410937],[-76.622522,36.404983],[-76.62966,36.403565],[-76.62966,36.400162],[-76.634121,36.397327],[-76.638583,36.398461],[-76.646613,36.402714],[-76.64929,36.4064],[-76.653751,36.408385],[-76.661782,36.409236],[-76.672489,36.417743],[-76.679627,36.415191],[-76.695688,36.41831],[-76.701041,36.416892],[-76.701041,36.409803],[-76.698364,36.395625],[-76.701934,36.387686],[-76.700149,36.385134],[-76.703718,36.385701],[-76.706395,36.379179],[-76.706395,36.370956],[-76.701934,36.368404],[-76.701041,36.361598],[-76.68855,36.359046],[-76.66892,36.349122],[-76.662674,36.347137],[-76.666243,36.340899],[-76.662674,36.339198],[-76.661782,36.331541],[-76.663566,36.330691],[-76.667135,36.32502],[-76.667135,36.319065],[-76.673381,36.317364],[-76.670704,36.314528],[-76.674273,36.308857],[-76.672489,36.306589],[-76.676058,36.304887],[-76.672489,36.304037],[-76.677842,36.300634],[-76.684088,36.300067],[-76.697472,36.295813],[-76.69658,36.287307],[-76.690334,36.275681],[-76.689442,36.269726],[-76.701041,36.252996],[-76.710856,36.240236],[-76.717102,36.228611],[-76.719779,36.225491],[-76.728701,36.220387],[-76.731378,36.216985],[-76.733163,36.21103],[-76.73227,36.201106],[-76.736732,36.183809],[-76.737624,36.15999],[-76.736732,36.146946],[-76.731378,36.133336],[-76.726917,36.125112],[-76.713533,36.102712],[-76.710856,36.095906],[-76.690334,36.109233],[-76.686765,36.113487],[-76.682304,36.115188],[-76.679627,36.120292],[-76.680519,36.125396],[-76.674273,36.129933],[-76.675166,36.130784],[-76.671597,36.137873],[-76.664458,36.13929],[-76.655536,36.149498],[-76.654644,36.15205],[-76.655536,36.161124],[-76.659105,36.166228],[-76.662674,36.178705],[-76.661782,36.191181],[-76.661782,36.199404],[-76.659997,36.20224],[-76.659105,36.209329],[-76.670704,36.224641],[-76.671597,36.228894],[-76.663566,36.234849],[-76.660889,36.242221],[-76.651074,36.244773],[-76.645721,36.250444],[-76.645721,36.252996],[-76.638583,36.25725],[-76.62163,36.253847],[-76.617168,36.253847],[-76.606461,36.248743],[-76.596646,36.247892],[-76.589508,36.244773],[-76.5904,36.238819],[-76.587724,36.213582],[-76.57434,36.215567],[-76.571663,36.217835],[-76.568986,36.224357],[-76.564525,36.226342],[-76.564525,36.229461],[-76.560063,36.23655],[-76.547572,36.241087],[-76.541326,36.245624],[-76.535972,36.24449],[-76.531511,36.246191],[-76.521696,36.242221],[-76.512773,36.24052],[-76.509204,36.238819],[-76.503851,36.239669],[-76.497605,36.243923],[-76.492251,36.252713],[-76.486006,36.269726],[-76.452992,36.277382],[-76.436931,36.281636],[-76.405702,36.289008],[-76.397671,36.288157],[-76.39321,36.29156],[-76.394102,36.29553],[-76.397671,36.300067],[-76.40124,36.301201],[-76.426224,36.333243],[-76.447638,36.3633],[-76.435147,36.38088],[-76.423547,36.390805],[-76.409271,36.395625],[-76.397671,36.407535],[-76.39321,36.415191],[-76.379826,36.41916],[-76.369119,36.421712],[-76.351274,36.41831],[-76.340566,36.41434],[-76.338782,36.407535],[-76.335213,36.403281],[-76.313799,36.381447],[-76.308445,36.376343],[-76.302199,36.371807],[-76.303984,36.369254],[-76.301307,36.354793],[-76.295953,36.352241],[-76.295953,36.347988],[-76.2906,36.341466],[-76.287031,36.328139],[-76.278108,36.321617],[-76.27097,36.319916],[-76.255801,36.309141],[-76.263832,36.300634],[-76.263832,36.298933],[-76.244202,36.300067],[-76.232603,36.305738],[-76.225464,36.310842],[-76.221003,36.311409],[-76.21565,36.305738],[-76.217434,36.302902],[-76.217434,36.298082],[-76.211188,36.298082],[-76.202266,36.294679],[-76.192451,36.287023],[-76.189774,36.287307],[-76.187989,36.279651],[-76.182636,36.274547],[-76.187989,36.270577],[-76.19602,36.268308],[-76.203158,36.269159],[-76.20405,36.267458],[-76.210296,36.272845],[-76.213865,36.271428],[-76.220111,36.275397],[-76.220111,36.272278],[-76.228141,36.273129],[-76.229926,36.279651],[-76.234387,36.28277],[-76.238848,36.276532],[-76.245986,36.264622],[-76.250448,36.259802],[-76.254017,36.252146],[-76.255801,36.245624],[-76.254909,36.237968],[-76.253125,36.234565],[-76.254017,36.231446],[-76.258478,36.22776],[-76.260263,36.222939],[-76.268293,36.222939],[-76.274539,36.218686],[-76.276323,36.21982],[-76.278108,36.216985],[-76.281677,36.218119],[-76.286138,36.216418],[-76.289707,36.217835],[-76.289707,36.222939],[-76.303984,36.221805],[-76.303984,36.225491],[-76.307553,36.229745],[-76.315583,36.232297],[-76.316475,36.237968],[-76.319152,36.24052],[-76.325398,36.240236],[-76.331644,36.243923],[-76.34592,36.231163],[-76.352166,36.228611],[-76.363765,36.226909],[-76.364658,36.225208],[-76.372688,36.22379],[-76.377149,36.218686],[-76.380718,36.217835],[-76.38518,36.213015],[-76.386964,36.208478],[-76.391426,36.201389],[-76.395887,36.200255],[-76.39321,36.188629],[-76.390533,36.182107],[-76.390533,36.174735],[-76.392318,36.173884],[-76.396779,36.149215],[-76.428008,36.171049],[-76.434254,36.174451],[-76.44853,36.184659],[-76.453884,36.180406],[-76.456561,36.183525],[-76.461022,36.174451],[-76.466376,36.167929],[-76.473514,36.170481],[-76.474406,36.167079],[-76.482437,36.161975],[-76.484221,36.159139],[-76.494036,36.132768],[-76.527942,36.104413],[-76.53508,36.099025],[-76.544895,36.09619],[-76.548464,36.099309],[-76.560063,36.10101],[-76.555602,36.095055],[-76.553818,36.08428],[-76.558279,36.065849],[-76.570771,36.04997],[-76.579693,36.049403],[-76.585939,36.041747],[-76.585939,36.036643],[-76.58237,36.033524],[-76.596646,36.020764],[-76.617168,35.99496],[-76.622522,35.987588],[-76.612707,35.981633],[-76.604677,35.97738],[-76.593077,35.974828],[-76.568094,35.974544],[-76.568094,35.934846],[-76.57434,35.930593],[-76.563633,35.927474],[-76.557387,35.928041],[-76.552033,35.925489],[-76.54311,35.922086],[-76.540434,35.92237],[-76.542218,35.918116],[-76.536865,35.907908],[-76.536865,35.898834],[-76.538649,35.894865],[-76.535972,35.882955],[-76.54668,35.843541],[-76.541326,35.838721],[-76.553818,35.844392],[-76.561848,35.849212],[-76.568986,35.816887],[-76.617168,35.722746],[-76.601108,35.717358],[-76.607353,35.704882],[-76.656428,35.704882],[-76.650182,35.718209],[-76.669812,35.740043],[-76.70461,35.774353],[-76.702826,35.780024],[-76.698364,35.801858],[-76.693011,35.825393],[-76.690334,35.831915],[-76.687657,35.847794],[-76.68498,35.858853],[-76.682304,35.873031],[-76.720671,35.867643],[-76.738516,35.860271],[-76.742085,35.85942],[-76.739409,35.854316],[-76.738516,35.849212],[-76.731378,35.849212],[-76.731378,35.843825],[-76.729594,35.84184],[-76.733163,35.840138],[-76.731378,35.836169],[-76.736732,35.834751],[-76.738516,35.836169],[-76.742978,35.831065],[-76.755469,35.824543],[-76.758146,35.824259],[-76.765284,35.806962],[-76.765284,35.804694],[-76.769746,35.804694],[-76.772422,35.807813],[-76.775991,35.80838],[-76.778668,35.794202],[-76.78313,35.788531],[-76.787591,35.780024],[-76.796514,35.767548],[-76.81079,35.768399],[-76.815251,35.76613],[-76.82685,35.764429],[-76.836665,35.7701],[-76.831312,35.775204],[-76.834881,35.776055],[-76.840234,35.781159],[-76.833989,35.787397],[-76.833989,35.79165],[-76.837558,35.791934],[-76.840234,35.807813],[-76.848265,35.812066],[-76.856295,35.811216],[-76.857187,35.819155],[-76.854511,35.823692],[-76.848265,35.827945],[-76.848265,35.833617],[-76.850049,35.835318],[-76.858972,35.825393],[-76.864326,35.823409],[-76.873248,35.815185],[-76.879494,35.812066],[-76.883063,35.811783],[-76.896447,35.813484],[-76.89377,35.819155],[-76.901801,35.82114],[-76.903585,35.825393],[-76.898232,35.826811],[-76.894663,35.829647],[-76.896447,35.833617],[-76.903585,35.836169],[-76.901801,35.844675],[-76.897339,35.851197],[-76.900016,35.8546],[-76.900016,35.858569],[-76.89377,35.861972],[-76.89377,35.864524],[-76.902693,35.867927],[-76.904477,35.87615],[-76.909831,35.88012],[-76.914292,35.885507],[-76.916969,35.892313],[-76.919646,35.895432],[-76.928569,35.899685],[-76.94106,35.901103],[-76.947306,35.896566],[-76.946414,35.894581],[-76.949091,35.891178],[-76.958013,35.886358],[-76.959798,35.882955],[-76.968721,35.882105],[-76.979428,35.87615],[-76.982104,35.87218],[-76.984781,35.87615],[-76.989243,35.875583],[-76.990135,35.867643],[-76.994596,35.863106],[-76.99995,35.862256],[-77.004411,35.858569],[-77.008872,35.860271],[-77.014226,35.85942],[-77.015118,35.856868],[-77.01958,35.856301],[-77.01958,35.853465],[-77.024041,35.846377],[-77.02761,35.842123],[-77.032964,35.839288],[-77.034748,35.84184],[-77.039209,35.840138],[-77.039209,35.837019],[-77.043671,35.839571],[-77.045455,35.837586],[-77.042778,35.834467],[-77.04724,35.832766],[-77.044563,35.828513],[-77.048132,35.823409],[-77.046347,35.822841],[-77.049024,35.818588],[-77.043671,35.810932],[-77.040102,35.810365],[-77.038317,35.812917],[-77.034748,35.810081],[-77.032071,35.810365],[-77.032964,35.806962],[-77.028502,35.802142],[-77.030287,35.80044],[-77.038317,35.798456],[-77.038317,35.795336],[-77.034748,35.795904],[-77.038317,35.7908],[-77.043671,35.791934],[-77.049917,35.789098],[-77.049917,35.78683],[-77.054378,35.785412],[-77.057055,35.788531],[-77.062408,35.785412],[-77.068654,35.784278],[-77.070439,35.78683],[-77.075792,35.787397],[-77.082038,35.784278],[-77.095422,35.786263],[-77.106129,35.795336],[-77.115944,35.796187],[-77.125759,35.801008],[-77.131113,35.807813],[-77.139143,35.831915],[-77.137358,35.837019],[-77.140928,35.847794],[-77.136466,35.850063],[-77.140928,35.852898],[-77.139143,35.856017],[-77.14182,35.863957],[-77.137358,35.864524],[-77.135574,35.868494],[-77.131113,35.870479],[-77.134682,35.871897],[-77.13022,35.873882],[-77.131113,35.876434],[-77.127544,35.881254],[-77.129328,35.885224],[-77.132897,35.885224],[-77.135574,35.888059],[-77.136466,35.89373],[-77.139143,35.894014],[-77.140035,35.905356],[-77.136466,35.90961],[-77.138251,35.913012],[-77.142712,35.912162],[-77.144497,35.916415],[-77.150742,35.91443],[-77.154311,35.915564],[-77.16145,35.913863],[-77.16145,35.909043],[-77.165019,35.911311],[-77.166803,35.907908],[-77.171264,35.909043],[-77.176618,35.914714],[-77.179295,35.915564],[-77.183756,35.91443],[-77.182864,35.911878],[-77.187325,35.91046],[-77.190894,35.895432],[-77.201601,35.888626],[-77.217662,35.880403],[-77.214985,35.877851],[-77.210524,35.876434],[-77.205171,35.872747],[-77.209632,35.867927],[-77.210524,35.861972],[-77.206955,35.858569],[-77.205171,35.853749],[-77.196248,35.846944],[-77.198925,35.843541],[-77.19714,35.840989],[-77.199817,35.83787],[-77.201601,35.831065],[-77.199817,35.828513],[-77.201601,35.821707],[-77.198925,35.820006],[-77.203386,35.812066],[-77.205171,35.805261],[-77.20874,35.799306],[-77.206955,35.795336],[-77.210524,35.796187],[-77.209632,35.791083],[-77.213201,35.788248],[-77.211416,35.785979],[-77.214093,35.779457],[-77.214093,35.776055],[-77.210524,35.773503],[-77.210524,35.770951],[-77.214093,35.767548],[-77.214093,35.765279],[-77.211416,35.75734],[-77.214985,35.759325],[-77.223016,35.758474],[-77.229262,35.761026],[-77.238184,35.761877],[-77.246215,35.760743],[-77.254245,35.762727],[-77.256922,35.765279],[-77.260491,35.765279],[-77.264952,35.770951],[-77.265844,35.774353],[-77.25603,35.78286],[-77.25603,35.785979],[-77.338118,35.814618],[-77.389869,35.832766],[-77.391654,35.828513],[-77.397007,35.825393],[-77.409499,35.826244],[-77.414853,35.822841],[-77.414853,35.817737],[-77.418422,35.810932],[-77.42556,35.805261],[-77.430021,35.805261],[-77.434482,35.806962],[-77.439836,35.806962],[-77.44519,35.808664],[-77.448759,35.806112],[-77.455005,35.794486],[-77.448759,35.782576],[-77.44519,35.777756],[-77.434482,35.777472],[-77.43359,35.761026],[-77.399684,35.761877],[-77.399684,35.745714],[-77.398792,35.734939],[-77.382731,35.736924],[-77.370239,35.726716],[-77.375593,35.717358],[-77.372024,35.712538],[-77.35864,35.708285],[-77.354179,35.704882],[-77.351502,35.69836],[-77.356855,35.683899],[-77.35864,35.675676],[-77.361317,35.669154],[-77.363994,35.658946],[-77.35061,35.656394],[-77.332764,35.637963],[-77.331872,35.639948],[-77.326518,35.638246],[-77.322949,35.634844],[-77.307781,35.631441],[-77.301535,35.630874],[-77.292612,35.635694],[-77.286367,35.636545],[-77.276552,35.634844],[-77.269414,35.632575],[-77.271198,35.62974],[-77.268521,35.628322],[-77.269414,35.62577],[-77.245322,35.622367],[-77.231046,35.622934],[-77.203386,35.62662],[-77.178403,35.624636],[-77.153419,35.612159],[-77.153419,35.609607],[-77.148958,35.607055],[-77.14182,35.604787],[-77.147173,35.605354],[-77.150742,35.603652],[-77.156988,35.605637],[-77.158773,35.599966],[-77.150742,35.596563],[-77.142712,35.590609],[-77.133789,35.582953],[-77.121298,35.578132],[-77.113267,35.580401],[-77.113267,35.569909],[-77.11416,35.568208],[-77.097207,35.563104],[-77.087392,35.563104],[-77.087392,35.566506],[-77.090961,35.571043],[-77.086499,35.57558],[-77.084715,35.573879],[-77.082038,35.578983],[-77.076684,35.576431],[-77.073115,35.578132],[-77.0749,35.583236],[-77.072223,35.584938],[-77.065085,35.586355],[-77.058839,35.588624],[-77.054378,35.586355],[-77.051701,35.587206],[-77.043671,35.582953],[-77.037425,35.576998],[-77.040994,35.568775],[-77.042778,35.561119],[-77.051701,35.546374],[-77.049024,35.54524],[-77.038317,35.547225],[-77.017795,35.543822],[-77.026718,35.537867],[-77.028502,35.54127],[-77.024933,35.544673],[-77.029394,35.543822],[-77.030287,35.540419],[-77.03564,35.539569],[-77.03564,35.537867],[-77.046347,35.531345],[-77.054378,35.538718],[-77.070439,35.545523],[-77.081146,35.548926],[-77.085607,35.552329],[-77.095422,35.550627],[-77.101668,35.551194],[-77.112375,35.549493],[-77.120405,35.551194],[-77.126651,35.553746],[-77.175726,35.518869],[-77.178403,35.507243],[-77.176618,35.501856],[-77.166803,35.497035],[-77.176618,35.485126],[-77.175726,35.473784],[-77.205171,35.500438],[-77.217662,35.513765],[-77.226585,35.521988],[-77.222124,35.52851],[-77.223908,35.532763],[-77.230154,35.540136],[-77.2364,35.544673],[-77.233723,35.548926],[-77.235508,35.559418],[-77.231046,35.561402],[-77.235508,35.571894],[-77.232831,35.578699],[-77.229262,35.578699],[-77.229262,35.576431],[-77.225693,35.574446],[-77.221231,35.578132],[-77.21677,35.577849],[-77.210524,35.584654],[-77.201601,35.584938],[-77.198925,35.580684],[-77.19714,35.581251],[-77.185541,35.577282],[-77.179295,35.577282],[-77.179295,35.578983],[-77.190894,35.584654],[-77.198925,35.59231],[-77.201601,35.593161],[-77.206063,35.600533],[-77.214985,35.606488],[-77.2248,35.60904],[-77.238184,35.60904],[-77.250676,35.605637],[-77.261383,35.599966],[-77.264952,35.596563],[-77.275659,35.590609],[-77.281013,35.593161],[-77.284582,35.589758],[-77.289936,35.589758],[-77.293505,35.593161],[-77.297966,35.595429],[-77.298858,35.597981],[-77.307781,35.597414],[-77.314919,35.599115],[-77.325626,35.606204],[-77.329195,35.606488],[-77.333657,35.61301],[-77.345256,35.614711],[-77.369347,35.615845],[-77.374701,35.616696],[-77.372024,35.614711],[-77.374701,35.599966],[-77.371132,35.599683],[-77.379162,35.590609],[-77.381839,35.592027],[-77.3863,35.568208],[-77.392546,35.567357],[-77.393438,35.573879],[-77.399684,35.571327],[-77.404145,35.565372],[-77.406822,35.556298],[-77.40593,35.552045],[-77.400576,35.550344],[-77.400576,35.548075],[-77.394331,35.548075],[-77.397007,35.54127],[-77.404145,35.542121],[-77.403253,35.535599],[-77.396115,35.535315],[-77.397007,35.532196],[-77.400576,35.527943],[-77.417529,35.52851],[-77.417529,35.533047],[-77.41396,35.544673],[-77.419314,35.544389],[-77.419314,35.548926],[-77.413068,35.555731],[-77.416637,35.560552],[-77.415745,35.56282],[-77.411284,35.562253],[-77.411284,35.567357],[-77.41396,35.567924],[-77.41396,35.572178],[-77.416637,35.573028],[-77.416637,35.567924],[-77.42556,35.569058],[-77.42556,35.57558],[-77.432698,35.577282],[-77.434482,35.578983],[-77.43359,35.588057],[-77.428237,35.59628],[-77.429129,35.597414],[-77.442513,35.596563],[-77.442513,35.599683],[-77.430913,35.605637],[-77.427344,35.611308],[-77.439836,35.610741],[-77.439836,35.621516],[-77.436267,35.621516],[-77.434482,35.62662],[-77.422883,35.645619],[-77.43359,35.649021],[-77.449651,35.649872],[-77.455005,35.653842],[-77.46125,35.64732],[-77.469281,35.655827],[-77.477311,35.651573],[-77.484449,35.653842],[-77.487126,35.656677],[-77.493372,35.660647],[-77.496941,35.666602],[-77.50854,35.662632],[-77.513894,35.654692],[-77.522817,35.646753],[-77.541554,35.640798],[-77.552261,35.639097],[-77.593305,35.624919],[-77.600444,35.620666],[-77.604905,35.627188],[-77.612935,35.629172],[-77.619181,35.632292],[-77.620966,35.634844],[-77.620966,35.640798],[-77.626319,35.644768],[-77.628996,35.649021],[-77.647734,35.652424],[-77.656656,35.648454],[-77.664687,35.648171],[-77.671825,35.632575],[-77.673609,35.622934],[-77.679855,35.612159],[-77.680747,35.606488],[-77.694131,35.607339],[-77.693239,35.603085],[-77.695916,35.603652],[-77.695916,35.606488],[-77.704838,35.607906],[-77.703946,35.604503],[-77.698593,35.603936],[-77.698593,35.600533],[-77.701269,35.598265],[-77.699485,35.59231],[-77.700377,35.581251],[-77.703054,35.578132],[-77.705731,35.566223],[-77.7093,35.557149],[-77.714653,35.559701],[-77.71733,35.559418],[-77.722684,35.554597],[-77.726253,35.555448],[-77.731606,35.553746],[-77.730714,35.551194],[-77.722684,35.545523],[-77.721792,35.539569],[-77.722684,35.536166],[-77.718222,35.52851],[-77.718222,35.518869],[-77.71733,35.510929],[-77.726253,35.506393],[-77.720899,35.502139],[-77.727145,35.494483],[-77.735175,35.49108],[-77.735175,35.487111],[-77.737852,35.485409],[-77.737852,35.477753],[-77.733391,35.47832],[-77.735175,35.470948],[-77.740529,35.453367],[-77.73696,35.434936],[-77.737852,35.433519],[-77.732499,35.43125],[-77.720899,35.433235],[-77.713761,35.431817],[-77.711977,35.429265],[-77.705731,35.432101],[-77.702162,35.434936],[-77.699485,35.44004],[-77.690562,35.446846],[-77.687885,35.453651],[-77.699485,35.458471],[-77.6977,35.467545],[-77.694131,35.467545],[-77.694131,35.465277],[-77.686101,35.466128],[-77.678071,35.459322],[-77.67004,35.45677],[-77.662902,35.458471],[-77.653087,35.4528],[-77.647734,35.448263],[-77.64238,35.448547],[-77.646841,35.444294],[-77.643272,35.440324],[-77.639703,35.445144],[-77.63435,35.444294],[-77.632565,35.442025],[-77.626319,35.442592],[-77.623642,35.444294],[-77.621858,35.441742],[-77.617397,35.440891],[-77.62275,35.438623],[-77.623642,35.436638],[-77.613828,35.432668],[-77.611151,35.43522],[-77.605797,35.436071],[-77.602228,35.430967],[-77.604013,35.430116],[-77.599551,35.427847],[-77.594198,35.427564],[-77.596875,35.425295],[-77.59509,35.423594],[-77.601336,35.417356],[-77.604013,35.409416],[-77.609366,35.409416],[-77.61472,35.406014],[-77.620966,35.405163],[-77.623642,35.406581],[-77.621858,35.400059],[-77.611151,35.38418],[-77.609366,35.370002],[-77.607582,35.365749],[-77.597767,35.35072],[-77.591521,35.344198],[-77.585275,35.335692],[-77.581706,35.32917],[-77.570999,35.318962],[-77.565645,35.307619],[-77.556723,35.31244],[-77.549585,35.310739],[-77.542446,35.311306],[-77.537093,35.309037],[-77.532632,35.313291],[-77.527278,35.311589],[-77.525493,35.304784],[-77.518355,35.301381],[-77.512109,35.304784],[-77.512109,35.311589],[-77.507648,35.31244],[-77.504079,35.31641],[-77.495156,35.319245],[-77.489803,35.318395],[-77.487126,35.313858],[-77.483557,35.314141],[-77.482665,35.31726],[-77.478203,35.318962],[-77.471065,35.318111],[-77.464819,35.328319],[-77.458574,35.33399],[-77.449651,35.335975],[-77.443405,35.33314],[-77.429129,35.338527],[-77.415745,35.335975],[-77.412176,35.337676],[-77.409499,35.332572],[-77.414853,35.333423],[-77.41396,35.330871],[-77.421991,35.330871],[-77.431806,35.329737],[-77.432698,35.328319],[-77.432698,35.313007],[-77.438051,35.312156],[-77.439836,35.303933],[-77.448759,35.301665],[-77.448759,35.297411],[-77.446974,35.294576],[-77.43359,35.298262],[-77.431806,35.299963],[-77.415745,35.29571],[-77.407715,35.291457],[-77.404145,35.287487],[-77.400576,35.280682],[-77.398792,35.275011],[-77.395223,35.276428],[-77.384516,35.276428],[-77.377378,35.275578],[-77.370239,35.277563],[-77.353286,35.280398],[-77.340795,35.263668],[-77.336333,35.2614],[-77.347933,35.252326],[-77.346148,35.249774],[-77.340795,35.250625],[-77.329195,35.257146],[-77.325626,35.254027],[-77.321165,35.252326],[-77.315811,35.255445],[-77.31135,35.252326],[-77.306889,35.245521],[-77.304212,35.245804],[-77.301535,35.240417],[-77.30332,35.225672],[-77.307781,35.218016],[-77.298858,35.213762],[-77.289043,35.213762],[-77.289043,35.218583],[-77.286367,35.219717],[-77.28369,35.226522],[-77.286367,35.227373],[-77.286367,35.232761],[-77.281905,35.233611],[-77.276552,35.237865],[-77.282798,35.242969],[-77.279228,35.24467],[-77.281905,35.24949],[-77.287259,35.252042],[-77.287259,35.256296],[-77.281905,35.257146],[-77.280121,35.259131],[-77.285474,35.258848],[-77.281013,35.265653],[-77.28369,35.269623],[-77.280121,35.270757],[-77.282798,35.273876],[-77.281905,35.276712],[-77.287259,35.275861],[-77.289043,35.280398],[-77.287259,35.286353],[-77.290828,35.288338],[-77.289043,35.292307],[-77.284582,35.291457],[-77.281905,35.287203],[-77.278336,35.284651],[-77.263168,35.280398],[-77.260491,35.282383],[-77.255137,35.279831],[-77.253353,35.276428],[-77.252461,35.265653],[-77.250676,35.263668],[-77.242646,35.2614],[-77.238184,35.2614],[-77.228369,35.256296],[-77.225693,35.257146],[-77.223908,35.254027],[-77.21677,35.252326],[-77.213201,35.248073],[-77.209632,35.248073],[-77.207847,35.243252],[-77.202494,35.242969],[-77.200709,35.237298],[-77.193571,35.235596],[-77.187325,35.237865],[-77.181972,35.236447],[-77.17751,35.239566],[-77.172157,35.237298],[-77.165911,35.237014],[-77.164126,35.231343],[-77.165911,35.226239],[-77.163234,35.224537],[-77.154311,35.22397],[-77.153419,35.220284],[-77.146281,35.218866],[-77.140035,35.215464],[-77.135574,35.214897],[-77.124867,35.21036],[-77.120405,35.208942],[-77.119513,35.204689],[-77.108806,35.19363],[-77.104345,35.191361],[-77.101668,35.191929],[-77.096314,35.187108],[-77.09453,35.182855],[-77.090961,35.179452],[-77.087392,35.17293],[-77.090068,35.166976],[-77.086499,35.163856],[-77.077577,35.162155],[-77.075792,35.151947],[-77.073115,35.149679],[-77.057055,35.145425]]]}},{"type":"Feature","properties":{"district":2},"geometry":{"type":"Polygon","coordinates":[[[-78.59621,35.403462],[-78.592641,35.398641],[-78.587288,35.396089],[-78.576581,35.390134],[-78.573012,35.38418],[-78.570335,35.375957],[-78.570335,35.370853],[-78.56855,35.36745],[-78.564981,35.366032],[-78.562304,35.360928],[-78.550705,35.355824],[-78.54892,35.353272],[-78.545351,35.353272],[-78.54089,35.35072],[-78.537321,35.3459],[-78.533752,35.342497],[-78.534644,35.340512],[-78.531075,35.337393],[-78.531075,35.33399],[-78.533752,35.331722],[-78.533752,35.328319],[-78.536429,35.326334],[-78.537321,35.321514],[-78.536429,35.319245],[-78.544459,35.31244],[-78.555166,35.309604],[-78.558735,35.304217],[-78.564981,35.304217],[-78.571227,35.301665],[-78.573012,35.297411],[-78.576581,35.29571],[-78.581934,35.298262],[-78.586396,35.293158],[-78.583719,35.29089],[-78.586396,35.284084],[-78.583719,35.27898],[-78.585503,35.273026],[-78.59621,35.265653],[-78.598887,35.264802],[-78.59978,35.258848],[-78.609594,35.254027],[-78.613163,35.248073],[-78.617625,35.24467],[-78.614948,35.238999],[-78.619409,35.233895],[-78.616733,35.22794],[-78.619409,35.22312],[-78.622978,35.222836],[-78.631901,35.213195],[-78.631009,35.207808],[-78.626547,35.205539],[-78.62744,35.201286],[-78.632793,35.201286],[-78.638147,35.197883],[-78.642608,35.200435],[-78.64707,35.196465],[-78.641716,35.192212],[-78.636362,35.191361],[-78.640824,35.186824],[-78.639931,35.182004],[-78.631009,35.173781],[-78.630116,35.171229],[-78.634578,35.170945],[-78.639931,35.165558],[-78.633686,35.163573],[-78.633686,35.158469],[-78.638147,35.157618],[-78.640824,35.154499],[-78.637255,35.151096],[-78.639039,35.148544],[-78.638147,35.14344],[-78.63547,35.139187],[-78.639931,35.131815],[-78.642608,35.131815],[-78.6435,35.127845],[-78.648854,35.125293],[-78.652423,35.121039],[-78.652423,35.117637],[-78.647962,35.117637],[-78.641716,35.121039],[-78.639931,35.116786],[-78.642608,35.113383],[-78.64707,35.112816],[-78.654208,35.108563],[-78.652423,35.102608],[-78.654208,35.100907],[-78.657777,35.10119],[-78.657777,35.095803],[-78.660453,35.092684],[-78.667592,35.093534],[-78.670268,35.092684],[-78.670268,35.087013],[-78.675622,35.084177],[-78.699713,35.060925],[-78.709528,35.054971],[-78.723804,35.050717],[-78.736296,35.052419],[-78.739865,35.046464],[-78.747895,35.038525],[-78.756818,35.035689],[-78.763956,35.036823],[-78.780017,35.035973],[-78.786263,35.034838],[-78.793401,35.030301],[-78.783586,35.016407],[-78.775556,35.009318],[-78.773771,35.005632],[-78.752357,35.001662],[-78.748788,34.99826],[-78.746111,34.987201],[-78.755033,34.98635],[-78.767525,34.983798],[-78.779125,34.985783],[-78.782694,34.977276],[-78.77734,34.975008],[-78.772879,34.967635],[-78.771987,34.958278],[-78.774663,34.948354],[-78.778232,34.9441],[-78.790724,34.933892],[-78.798754,34.923968],[-78.804108,34.919714],[-78.806785,34.914043],[-78.814815,34.906954],[-78.8166,34.902134],[-78.8166,34.892209],[-78.821061,34.89306],[-78.82463,34.902985],[-78.827307,34.903268],[-78.828199,34.897313],[-78.834445,34.895612],[-78.833553,34.903835],[-78.83623,34.910641],[-78.834445,34.913193],[-78.840691,34.919998],[-78.843368,34.923968],[-78.847829,34.925669],[-78.850506,34.924818],[-78.864782,34.923968],[-78.87192,34.924535],[-78.877274,34.922266],[-78.878166,34.923968],[-78.886196,34.922834],[-78.888873,34.924818],[-78.896904,34.927938],[-78.907611,34.918013],[-78.932594,34.892777],[-78.939732,34.898731],[-78.941517,34.903268],[-78.948655,34.906387],[-78.954901,34.910357],[-78.956685,34.91376],[-78.97453,34.922834],[-78.997729,34.934176],[-79.034312,34.953741],[-79.078033,34.921416],[-79.125323,34.884837],[-79.131569,34.880584],[-79.135138,34.884553],[-79.135138,34.887956],[-79.148522,34.891075],[-79.152091,34.895612],[-79.153876,34.900433],[-79.163691,34.902417],[-79.166367,34.901567],[-79.174398,34.904119],[-79.18332,34.911491],[-79.180644,34.914043],[-79.185997,34.916595],[-79.190458,34.925669],[-79.194027,34.930773],[-79.194027,34.935594],[-79.196704,34.941265],[-79.206519,34.944951],[-79.206519,34.949204],[-79.209196,34.954875],[-79.205627,34.954875],[-79.193135,34.96083],[-79.185997,34.972456],[-79.191351,34.974157],[-79.198489,34.984649],[-79.203842,34.988051],[-79.210088,34.994006],[-79.21455,34.999394],[-79.229718,35.006483],[-79.235072,35.004781],[-79.243102,35.008468],[-79.25024,35.020093],[-79.253809,35.021795],[-79.260055,35.020093],[-79.263624,35.020093],[-79.268085,35.017541],[-79.276116,35.02066],[-79.278793,35.020093],[-79.286823,35.015556],[-79.290392,35.014139],[-79.301991,35.013288],[-79.30913,35.008468],[-79.307345,35.006766],[-79.32519,34.978978],[-79.327867,34.971605],[-79.334113,34.96877],[-79.343928,34.969053],[-79.358204,34.974157],[-79.362665,34.977276],[-79.369804,34.97756],[-79.376942,34.975575],[-79.377834,34.973874],[-79.386757,34.979828],[-79.391218,34.985783],[-79.401925,34.996842],[-79.409063,35.000528],[-79.417094,35.002513],[-79.41977,35.007617],[-79.425124,35.009885],[-79.43137,35.020093],[-79.4394,35.022362],[-79.442077,35.021795],[-79.446538,35.025197],[-79.450107,35.026615],[-79.451,35.030018],[-79.458138,35.03739],[-79.457245,35.039092],[-79.459922,35.042778],[-79.462599,35.043345],[-79.467953,35.047598],[-79.471522,35.048165],[-79.475983,35.053553],[-79.476875,35.056672],[-79.485798,35.058657],[-79.488475,35.060925],[-79.492044,35.059224],[-79.495613,35.062343],[-79.500074,35.063477],[-79.516135,35.062627],[-79.517027,35.064328],[-79.52595,35.063477],[-79.528627,35.066029],[-79.535765,35.064328],[-79.547364,35.066029],[-79.557179,35.066029],[-79.569671,35.065179],[-79.577701,35.071701],[-79.576809,35.073686],[-79.583055,35.084461],[-79.58127,35.093251],[-79.577701,35.096086],[-79.577701,35.100907],[-79.575917,35.107712],[-79.577701,35.109414],[-79.574132,35.117637],[-79.578593,35.124442],[-79.584839,35.128695],[-79.585731,35.134367],[-79.588408,35.136068],[-79.591085,35.141172],[-79.597331,35.143724],[-79.599115,35.14259],[-79.60893,35.150246],[-79.609823,35.155066],[-79.615176,35.158469],[-79.615176,35.163573],[-79.621422,35.171229],[-79.625883,35.170095],[-79.629452,35.175199],[-79.638375,35.176049],[-79.641052,35.180586],[-79.644621,35.182855],[-79.647298,35.187108],[-79.654436,35.191078],[-79.660682,35.199585],[-79.661574,35.204689],[-79.659789,35.209793],[-79.660682,35.213762],[-79.664251,35.217732],[-79.665143,35.223687],[-79.663358,35.225388],[-79.669604,35.231343],[-79.670497,35.239566],[-79.674066,35.244954],[-79.685665,35.247222],[-79.689234,35.250341],[-79.698157,35.251475],[-79.701726,35.254594],[-79.701726,35.256579],[-79.705295,35.26225],[-79.705295,35.268205],[-79.707079,35.271324],[-79.712433,35.275578],[-79.712433,35.289755],[-79.710648,35.292307],[-79.711541,35.29968],[-79.709756,35.301381],[-79.719571,35.33399],[-79.728494,35.362629],[-79.731171,35.370285],[-79.748124,35.429549],[-79.749908,35.44004],[-79.764184,35.476052],[-79.769538,35.511213],[-79.871256,35.510362],[-79.907839,35.509512],[-79.93996,35.508661],[-79.937284,35.553179],[-79.934607,35.60904],[-79.873041,35.60904],[-79.868579,35.611308],[-79.862333,35.617547],[-79.860549,35.623218],[-79.865902,35.624919],[-79.873933,35.63059],[-79.87661,35.637396],[-79.88464,35.6425],[-79.889101,35.647604],[-79.888209,35.652424],[-79.883748,35.66008],[-79.887317,35.666318],[-79.873041,35.671422],[-79.858764,35.675676],[-79.851626,35.680213],[-79.843596,35.683332],[-79.842704,35.687585],[-79.890886,35.708285],[-79.894455,35.704882],[-79.894455,35.709135],[-79.898916,35.707434],[-79.901593,35.712538],[-79.906947,35.714806],[-79.907839,35.710837],[-79.913192,35.711687],[-79.911408,35.716791],[-79.925684,35.722462],[-79.929253,35.724164],[-79.927469,35.776055],[-79.934607,35.775771],[-79.939068,35.772652],[-79.953344,35.775204],[-79.955129,35.782009],[-79.95959,35.78683],[-79.963159,35.788248],[-79.964052,35.792501],[-79.962267,35.798739],[-79.964944,35.802709],[-79.972082,35.802709],[-79.981897,35.798456],[-79.982789,35.796187],[-79.992604,35.795904],[-79.992604,35.792501],[-80.002419,35.78683],[-80.012234,35.78768],[-80.015803,35.789382],[-80.015803,35.795053],[-80.021156,35.792784],[-80.02651,35.796187],[-80.029187,35.802142],[-80.031864,35.801291],[-80.042571,35.801858],[-80.045248,35.79959],[-80.052386,35.802709],[-80.053278,35.801858],[-80.049709,35.867076],[-80.048817,35.887776],[-80.047032,35.916415],[-80.047032,35.920668],[-80.021156,35.919534],[-79.997065,35.918683],[-79.897132,35.914714],[-79.840027,35.912162],[-79.745447,35.908192],[-79.704403,35.906207],[-79.616068,35.902804],[-79.567886,35.900536],[-79.542011,35.899685],[-79.541118,35.907341],[-79.542011,35.90961],[-79.541118,35.917833],[-79.541118,35.951576],[-79.540226,35.966604],[-79.487582,35.964052],[-79.432262,35.960366],[-79.433154,35.940517],[-79.432262,35.930593],[-79.432262,35.870195],[-79.433154,35.843541],[-79.405494,35.843541],[-79.370696,35.843825],[-79.359096,35.843541],[-79.330544,35.843825],[-79.238641,35.843825],[-79.23061,35.833617],[-79.22258,35.832766],[-79.21455,35.833049],[-79.210981,35.831915],[-79.204735,35.825393],[-79.20295,35.820006],[-79.197597,35.818588],[-79.189566,35.820857],[-79.186889,35.816887],[-79.185997,35.809514],[-79.18332,35.802142],[-79.182428,35.795336],[-79.187782,35.797605],[-79.185105,35.79959],[-79.187782,35.802709],[-79.202058,35.802992],[-79.205627,35.806112],[-79.221688,35.799306],[-79.224364,35.796754],[-79.227934,35.798456],[-79.231503,35.797605],[-79.234179,35.794486],[-79.24221,35.793352],[-79.245779,35.790232],[-79.253809,35.788531],[-79.256486,35.785979],[-79.262732,35.783711],[-79.267193,35.780875],[-79.285038,35.774353],[-79.288607,35.77492],[-79.287715,35.7701],[-79.288607,35.765279],[-79.284146,35.751669],[-79.2779,35.750251],[-79.274331,35.742595],[-79.267193,35.737491],[-79.262732,35.736073],[-79.252917,35.738342],[-79.248456,35.727566],[-79.238641,35.721895],[-79.240425,35.713956],[-79.245779,35.705166],[-79.24221,35.699778],[-79.245779,35.690704],[-79.25024,35.686734],[-79.252025,35.678228],[-79.257378,35.676526],[-79.256486,35.66887],[-79.252917,35.660647],[-79.254701,35.659229],[-79.252917,35.654692],[-79.248456,35.654692],[-79.243102,35.656677],[-79.240425,35.661781],[-79.235072,35.660647],[-79.22258,35.660647],[-79.219011,35.654125],[-79.209196,35.649021],[-79.202058,35.649021],[-79.187782,35.662348],[-79.182428,35.66405],[-79.178859,35.667453],[-79.179751,35.670855],[-79.174398,35.675676],[-79.169936,35.676526],[-79.161014,35.672273],[-79.157445,35.66887],[-79.161014,35.665751],[-79.163691,35.659796],[-79.157445,35.647604],[-79.144953,35.643067],[-79.141384,35.643067],[-79.140492,35.641365],[-79.13603,35.641649],[-79.133354,35.639664],[-79.134246,35.635411],[-79.138707,35.628322],[-79.13603,35.623218],[-79.126215,35.624068],[-79.121754,35.627471],[-79.118185,35.628038],[-79.113724,35.624068],[-79.110155,35.622367],[-79.101232,35.624068],[-79.094986,35.619531],[-79.079818,35.614144],[-79.071787,35.609891],[-79.059296,35.599683],[-79.05305,35.595713],[-79.051265,35.582953],[-79.046804,35.576998],[-79.047696,35.571894],[-79.045912,35.567924],[-79.039666,35.564522],[-79.034312,35.559701],[-79.026282,35.549493],[-79.015575,35.543538],[-79.003975,35.542121],[-78.996837,35.542121],[-78.987914,35.538151],[-78.977207,35.528793],[-78.970961,35.521137],[-78.981669,35.510362],[-78.990591,35.500154],[-79.054834,35.436638],[-79.077141,35.41452],[-79.07268,35.411118],[-79.06911,35.406864],[-79.065541,35.406581],[-79.057511,35.408566],[-79.052157,35.405163],[-79.047696,35.405163],[-79.045019,35.407715],[-79.039666,35.408566],[-79.037881,35.405163],[-79.038774,35.40091],[-79.035204,35.396656],[-79.03342,35.400342],[-79.031635,35.398358],[-79.029851,35.393537],[-79.020928,35.393537],[-79.016467,35.391836],[-79.017359,35.387582],[-79.01379,35.388433],[-79.003975,35.38418],[-79.003975,35.379926],[-78.998622,35.379359],[-78.997729,35.376524],[-78.992376,35.378509],[-78.987914,35.373405],[-78.987914,35.370002],[-78.990591,35.36745],[-78.981669,35.359227],[-78.97453,35.358376],[-78.970961,35.356675],[-78.967392,35.349019],[-78.95847,35.341363],[-78.949547,35.338527],[-78.952224,35.335692],[-78.947763,35.334841],[-78.945086,35.337393],[-78.93884,35.339094],[-78.934379,35.334274],[-78.928133,35.331722],[-78.924564,35.332289],[-78.923671,35.327468],[-78.91921,35.325767],[-78.909395,35.326334],[-78.901365,35.329737],[-78.896904,35.326618],[-78.898688,35.324916],[-78.892442,35.324066],[-78.890658,35.328319],[-78.885304,35.329737],[-78.884412,35.334841],[-78.881735,35.338527],[-78.875489,35.339945],[-78.873705,35.3459],[-78.878166,35.348168],[-78.876381,35.35072],[-78.870136,35.349019],[-78.866567,35.356391],[-78.862105,35.351854],[-78.859428,35.354973],[-78.855859,35.354973],[-78.85229,35.359227],[-78.854075,35.360928],[-78.859428,35.359227],[-78.859428,35.360928],[-78.85229,35.364331],[-78.851398,35.368301],[-78.846937,35.364898],[-78.847829,35.362629],[-78.843368,35.360077],[-78.850506,35.32917],[-78.855859,35.303083],[-78.862105,35.277279],[-78.867459,35.249774],[-78.867459,35.24467],[-78.876381,35.241267],[-78.873705,35.236447],[-78.875489,35.233611],[-78.882627,35.229642],[-78.888873,35.230492],[-78.893334,35.228224],[-78.898688,35.231059],[-78.905826,35.227089],[-78.912964,35.225672],[-78.920995,35.220284],[-78.922779,35.223687],[-78.925456,35.221418],[-78.929025,35.222269],[-78.935271,35.218583],[-78.92724,35.212912],[-78.918318,35.203838],[-78.905826,35.190511],[-78.909395,35.186824],[-78.906718,35.177751],[-78.905826,35.170378],[-78.903149,35.161304],[-78.909395,35.161021],[-78.914749,35.157618],[-78.920995,35.157618],[-78.923671,35.154499],[-78.923671,35.146276],[-78.920995,35.147977],[-78.915641,35.144291],[-78.909395,35.131247],[-78.923671,35.124442],[-78.925456,35.126143],[-78.936163,35.12189],[-78.937055,35.123591],[-78.951332,35.114518],[-78.998622,35.105444],[-79.007544,35.106011],[-79.012898,35.101758],[-79.031635,35.090415],[-79.02182,35.08758],[-79.019144,35.08361],[-79.020928,35.07085],[-79.02539,35.06688],[-79.03342,35.065179],[-79.039666,35.067731],[-79.045912,35.065746],[-79.047696,35.069999],[-79.046804,35.078506],[-79.063757,35.072551],[-79.074464,35.064045],[-79.089633,35.053553],[-79.087848,35.0493],[-79.091417,35.047315],[-79.090525,35.041927],[-79.073572,35.018108],[-79.07268,35.014139],[-79.067326,35.01187],[-79.06108,35.007617],[-79.06108,35.004781],[-79.056619,34.999394],[-79.052157,35.00308],[-79.049481,35.006766],[-79.037881,35.005916],[-79.03342,35.005916],[-79.030743,35.010169],[-79.026282,35.009318],[-79.015575,35.010736],[-79.00576,35.018392],[-78.995053,35.022362],[-78.991484,35.018959],[-78.985238,35.017541],[-78.982561,35.009035],[-78.977207,35.011587],[-78.973638,35.01187],[-78.972746,35.01584],[-78.97453,35.020944],[-78.971854,35.026048],[-78.973638,35.029167],[-78.972746,35.033988],[-78.975423,35.035689],[-78.977207,35.041644],[-78.976315,35.044196],[-78.967392,35.042494],[-78.949547,35.043345],[-78.950439,35.048449],[-78.954901,35.050717],[-78.962931,35.058373],[-78.968285,35.058657],[-78.973638,35.056672],[-78.982561,35.057806],[-78.979884,35.060075],[-78.980776,35.062627],[-78.978992,35.071133],[-78.972746,35.076805],[-78.970069,35.083326],[-78.965608,35.081909],[-78.961147,35.076805],[-78.956685,35.079924],[-78.950439,35.085878],[-78.939732,35.078506],[-78.922779,35.071984],[-78.921887,35.074253],[-78.922779,35.081909],[-78.920102,35.08361],[-78.907611,35.074253],[-78.901365,35.072835],[-78.900473,35.069432],[-78.896904,35.068581],[-78.897796,35.064895],[-78.87995,35.058373],[-78.882627,35.053553],[-78.887981,35.055821],[-78.896904,35.055821],[-78.89958,35.050717],[-78.903149,35.047598],[-78.901365,35.045046],[-78.903149,35.042778],[-78.897796,35.042494],[-78.898688,35.040793],[-78.887981,35.042494],[-78.882627,35.039942],[-78.885304,35.033988],[-78.877274,35.03257],[-78.869243,35.027749],[-78.869243,35.030018],[-78.860321,35.032286],[-78.861213,35.038525],[-78.858536,35.049867],[-78.855859,35.054971],[-78.855859,35.068581],[-78.857644,35.072551],[-78.864782,35.081058],[-78.865674,35.086162],[-78.864782,35.093534],[-78.859428,35.100056],[-78.856752,35.108279],[-78.856752,35.113667],[-78.861213,35.121039],[-78.860321,35.126143],[-78.854075,35.136919],[-78.853183,35.141172],[-78.84426,35.150529],[-78.840691,35.1562],[-78.83266,35.164424],[-78.825522,35.169528],[-78.813031,35.174632],[-78.802323,35.178601],[-78.77734,35.178885],[-78.772879,35.179736],[-78.763956,35.184556],[-78.760387,35.18484],[-78.756818,35.182855],[-78.754141,35.178034],[-78.748788,35.174632],[-78.73808,35.174632],[-78.734511,35.175482],[-78.729158,35.180303],[-78.723804,35.197033],[-78.719343,35.202137],[-78.711313,35.207808],[-78.705959,35.214613],[-78.705959,35.220284],[-78.704174,35.22397],[-78.697929,35.228791],[-78.69436,35.233895],[-78.69436,35.2407],[-78.701498,35.248923],[-78.70239,35.253744],[-78.701498,35.258848],[-78.693467,35.2614],[-78.689006,35.263952],[-78.683652,35.272459],[-78.684545,35.285502],[-78.687221,35.296561],[-78.691683,35.302232],[-78.69436,35.310455],[-78.693467,35.313291],[-78.696144,35.322364],[-78.705959,35.33314],[-78.711313,35.339378],[-78.717558,35.342497],[-78.726481,35.35072],[-78.728266,35.354973],[-78.733619,35.358376],[-78.739865,35.359227],[-78.744326,35.362629],[-78.744326,35.365749],[-78.748788,35.375957],[-78.758603,35.385597],[-78.763956,35.392403],[-78.768417,35.395806],[-78.778232,35.398358],[-78.789832,35.397507],[-78.811246,35.406014],[-78.815707,35.407715],[-78.821953,35.412819],[-78.826415,35.420758],[-78.83266,35.426997],[-78.84426,35.436071],[-78.850506,35.439473],[-78.855859,35.440891],[-78.874597,35.454502],[-78.881735,35.462725],[-78.886196,35.465277],[-78.897796,35.46953],[-78.907611,35.470381],[-78.916533,35.474351],[-78.933486,35.480022],[-78.939732,35.478604],[-78.950439,35.484559],[-78.952224,35.487678],[-78.952224,35.492215],[-78.957577,35.499587],[-78.962931,35.512631],[-78.970069,35.522272],[-78.954901,35.538151],[-78.931702,35.563104],[-78.913857,35.582953],[-78.917426,35.584654],[-78.936163,35.591459],[-78.995053,35.609891],[-78.991484,35.619815],[-78.983453,35.644201],[-78.9781,35.657528],[-78.970069,35.68163],[-78.980776,35.686734],[-78.985238,35.685884],[-78.993268,35.691555],[-79.003083,35.690704],[-79.009329,35.694957],[-79.026282,35.700912],[-79.038774,35.700061],[-79.051265,35.69439],[-79.054834,35.691555],[-79.05305,35.686451],[-79.057511,35.684749],[-79.059296,35.679929],[-79.067326,35.679078],[-79.066434,35.674825],[-79.067326,35.665468],[-79.070003,35.66008],[-79.075356,35.66008],[-79.079818,35.685033],[-79.082494,35.698077],[-79.086956,35.709135],[-79.093202,35.714806],[-79.095878,35.721612],[-79.107478,35.731536],[-79.096771,35.735222],[-79.090525,35.73664],[-79.077141,35.737491],[-79.066434,35.740043],[-79.054834,35.738342],[-79.028959,35.737491],[-79.029851,35.737774],[-79.028066,35.770383],[-79.023605,35.78768],[-79.022713,35.789098],[-79.011113,35.789382],[-79.012006,35.794486],[-79.007544,35.795904],[-79.000406,35.802142],[-78.995053,35.811216],[-78.995053,35.814618],[-78.998622,35.822841],[-79.003975,35.843541],[-79.007544,35.848645],[-79.003083,35.853749],[-79.008437,35.857152],[-79.009329,35.860271],[-79.012898,35.861122],[-79.012006,35.863106],[-78.998622,35.863957],[-78.939732,35.866509],[-78.906718,35.867927],[-78.890658,35.867643],[-78.893334,35.856301],[-78.89155,35.852048],[-78.881735,35.844392],[-78.875489,35.835318],[-78.875489,35.828513],[-78.87192,35.820289],[-78.866567,35.824543],[-78.841583,35.818304],[-78.829984,35.820289],[-78.822846,35.824259],[-78.815707,35.831348],[-78.812138,35.838721],[-78.802323,35.844675],[-78.799647,35.850346],[-78.780017,35.838721],[-78.763956,35.831348],[-78.770202,35.827095],[-78.771094,35.819439],[-78.781801,35.809514],[-78.783586,35.793635],[-78.780909,35.793352],[-78.780909,35.785128],[-78.763956,35.785128],[-78.763064,35.795053],[-78.75771,35.796187],[-78.753249,35.795336],[-78.746111,35.791934],[-78.748788,35.788531],[-78.74968,35.780308],[-78.763956,35.775771],[-78.763956,35.772085],[-78.763956,35.768682],[-78.770202,35.765847],[-78.781801,35.770951],[-78.783586,35.764996],[-78.782694,35.757623],[-78.791616,35.757623],[-78.79697,35.755355],[-78.810354,35.755071],[-78.815707,35.756489],[-78.821953,35.761877],[-78.810354,35.766697],[-78.808569,35.770951],[-78.812138,35.770383],[-78.817492,35.773503],[-78.820169,35.771234],[-78.830876,35.769533],[-78.828199,35.765847],[-78.822846,35.764145],[-78.827307,35.762727],[-78.828199,35.760175],[-78.837122,35.758474],[-78.846937,35.754221],[-78.843368,35.767548],[-78.843368,35.769533],[-78.849613,35.780024],[-78.848721,35.782009],[-78.855859,35.784278],[-78.858536,35.783427],[-78.861213,35.77492],[-78.867459,35.774353],[-78.873705,35.772652],[-78.877274,35.754221],[-78.877274,35.750818],[-78.864782,35.73664],[-78.860321,35.730118],[-78.854967,35.727283],[-78.851398,35.732387],[-78.841583,35.729268],[-78.837122,35.729268],[-78.829984,35.726716],[-78.820169,35.721895],[-78.810354,35.714239],[-78.807677,35.708285],[-78.805,35.706583],[-78.805893,35.703464],[-78.803216,35.699211],[-78.805893,35.695525],[-78.805893,35.691555],[-78.810354,35.679362],[-78.813923,35.679929],[-78.820169,35.678228],[-78.827307,35.679929],[-78.833553,35.683332],[-78.83266,35.677377],[-78.835337,35.667169],[-78.83623,35.659796],[-78.833553,35.652424],[-78.83266,35.640798],[-78.831768,35.638246],[-78.813031,35.616412],[-78.819277,35.617547],[-78.829984,35.617263],[-78.840691,35.618114],[-78.839799,35.602802],[-78.837122,35.59628],[-78.838014,35.589758],[-78.845152,35.576431],[-78.845152,35.57473],[-78.850506,35.571894],[-78.856752,35.565372],[-78.839799,35.560268],[-78.793401,35.54524],[-78.736296,35.527092],[-78.708636,35.518869],[-78.705067,35.518018],[-78.691683,35.515466],[-78.689006,35.514616],[-78.689006,35.50384],[-78.676514,35.496184],[-78.660453,35.496184],[-78.655992,35.490513],[-78.653315,35.483708],[-78.649746,35.480022],[-78.650639,35.472933],[-78.645285,35.466128],[-78.639039,35.461307],[-78.62744,35.457621],[-78.62744,35.455919],[-78.621194,35.450248],[-78.619409,35.445144],[-78.614948,35.441742],[-78.614948,35.44004],[-78.606918,35.431817],[-78.609594,35.427564],[-78.608702,35.425295],[-78.59978,35.419341],[-78.59621,35.409133],[-78.59621,35.403462]]]}},{"type":"Feature","properties":{"district":3},"geometry":{"type":"Polygon","coordinates":[[[-78.185769,34.467726],[-78.19023,34.469427],[-78.191123,34.47283],[-78.200937,34.474531],[-78.206291,34.479635],[-78.206291,34.482754],[-78.208968,34.487858],[-78.211645,34.486157],[-78.212537,34.488709],[-78.216998,34.487007],[-78.222352,34.492962],[-78.225921,34.49041],[-78.23752,34.492962],[-78.241982,34.498917],[-78.250904,34.50317],[-78.256258,34.507991],[-78.256258,34.511393],[-78.252689,34.511393],[-78.256258,34.513662],[-78.256258,34.520467],[-78.263396,34.519616],[-78.263396,34.524437],[-78.26518,34.526138],[-78.263396,34.528974],[-78.266965,34.529541],[-78.270534,34.532944],[-78.271426,34.538898],[-78.260719,34.54542],[-78.250904,34.559598],[-78.246443,34.563851],[-78.241982,34.570657],[-78.156324,34.678408],[-78.114388,34.706764],[-78.113496,34.721792],[-78.097435,34.725762],[-78.094758,34.723493],[-78.08762,34.726045],[-78.082266,34.722359],[-78.080482,34.724061],[-78.072451,34.724344],[-78.066206,34.727747],[-78.056391,34.726896],[-78.04836,34.725195],[-78.034084,34.726896],[-78.030515,34.725195],[-78.025161,34.730299],[-78.018916,34.731717],[-78.009101,34.730866],[-78.008208,34.726045],[-78.004639,34.726896],[-78.002855,34.723493],[-77.996609,34.720941],[-77.996609,34.717539],[-77.991255,34.71527],[-77.989471,34.716972],[-77.985902,34.714987],[-77.979656,34.71442],[-77.979656,34.716688],[-77.975195,34.714136],[-77.97341,34.717539],[-77.975195,34.718673],[-77.963595,34.71924],[-77.955565,34.71527],[-77.951996,34.714987],[-77.951996,34.717539],[-77.939504,34.720091],[-77.930581,34.72321],[-77.922551,34.71924],[-77.89846,34.720941],[-77.873476,34.720941],[-77.827971,34.720091],[-77.763728,34.720091],[-77.714653,34.720374],[-77.680747,34.720374],[-77.677178,34.781906],[-77.671825,34.811396],[-77.665579,34.831245],[-77.663794,34.843721],[-77.661118,34.868674],[-77.658441,34.880584],[-77.659333,34.881434],[-77.652195,34.923684],[-77.653979,34.939847],[-77.679855,34.970755],[-77.675394,34.973307],[-77.684316,34.978978],[-77.730714,35.008184],[-77.678963,35.033421],[-77.602228,35.07085],[-77.601336,35.07085],[-77.553154,35.122741],[-77.549585,35.126143],[-77.529955,35.147694],[-77.519248,35.15932],[-77.506756,35.17208],[-77.52014,35.216314],[-77.52817,35.243252],[-77.523709,35.241551],[-77.479988,35.229642],[-77.474634,35.228791],[-77.471958,35.227089],[-77.45322,35.219433],[-77.417529,35.199585],[-77.394331,35.186824],[-77.375593,35.175199],[-77.329195,35.149395],[-77.209632,35.091266],[-77.206955,35.093534],[-77.207847,35.10034],[-77.206063,35.101758],[-77.206063,35.110831],[-77.202494,35.10913],[-77.196248,35.101758],[-77.190894,35.107429],[-77.185541,35.107712],[-77.178403,35.10516],[-77.174834,35.10516],[-77.174834,35.109414],[-77.167695,35.114518],[-77.153419,35.11792],[-77.153419,35.120472],[-77.146281,35.124442],[-77.144497,35.123024],[-77.140928,35.126994],[-77.142712,35.129546],[-77.112375,35.120472],[-77.103452,35.115935],[-77.085607,35.103742],[-77.081146,35.10516],[-77.08293,35.109981],[-77.085607,35.111682],[-77.083823,35.114518],[-77.086499,35.116219],[-77.08293,35.121039],[-77.087392,35.125009],[-77.073115,35.136919],[-77.069546,35.133516],[-77.065977,35.136351],[-77.064193,35.135217],[-77.068654,35.132098],[-77.064193,35.127845],[-77.053486,35.125293],[-77.063301,35.121323],[-77.067762,35.122741],[-77.069546,35.120189],[-77.068654,35.116786],[-77.071331,35.114518],[-77.064193,35.110831],[-77.059731,35.113667],[-77.060624,35.109981],[-77.057947,35.109414],[-77.059731,35.106011],[-77.063301,35.10431],[-77.074008,35.103459],[-77.08293,35.096937],[-77.090068,35.100907],[-77.092745,35.10034],[-77.090961,35.092117],[-77.086499,35.095236],[-77.083823,35.091833],[-77.079361,35.094385],[-77.076684,35.093534],[-77.076684,35.08843],[-77.069546,35.086729],[-77.072223,35.079924],[-77.065085,35.075103],[-77.057947,35.079073],[-77.05527,35.084177],[-77.052593,35.085878],[-77.049024,35.093251],[-77.040102,35.102041],[-77.024041,35.102608],[-77.026718,35.110831],[-77.037425,35.126143],[-77.046347,35.136919],[-77.051701,35.14259],[-77.057055,35.145425],[-77.073115,35.149679],[-77.075792,35.151947],[-77.077577,35.162155],[-77.086499,35.163856],[-77.090068,35.166976],[-77.087392,35.17293],[-77.090961,35.179452],[-77.09453,35.182855],[-77.096314,35.187108],[-77.101668,35.191929],[-77.104345,35.191361],[-77.108806,35.19363],[-77.119513,35.204689],[-77.120405,35.208942],[-77.124867,35.21036],[-77.135574,35.214897],[-77.140035,35.215464],[-77.146281,35.218866],[-77.153419,35.220284],[-77.154311,35.22397],[-77.163234,35.224537],[-77.165911,35.226239],[-77.164126,35.231343],[-77.165911,35.237014],[-77.172157,35.237298],[-77.17751,35.239566],[-77.181972,35.236447],[-77.187325,35.237865],[-77.193571,35.235596],[-77.200709,35.237298],[-77.202494,35.242969],[-77.207847,35.243252],[-77.209632,35.248073],[-77.213201,35.248073],[-77.21677,35.252326],[-77.223908,35.254027],[-77.225693,35.257146],[-77.228369,35.256296],[-77.238184,35.2614],[-77.242646,35.2614],[-77.250676,35.263668],[-77.252461,35.265653],[-77.253353,35.276428],[-77.255137,35.279831],[-77.260491,35.282383],[-77.263168,35.280398],[-77.278336,35.284651],[-77.281905,35.287203],[-77.284582,35.291457],[-77.289043,35.292307],[-77.290828,35.288338],[-77.287259,35.286353],[-77.289043,35.280398],[-77.287259,35.275861],[-77.281905,35.276712],[-77.282798,35.273876],[-77.280121,35.270757],[-77.28369,35.269623],[-77.281013,35.265653],[-77.285474,35.258848],[-77.280121,35.259131],[-77.281905,35.257146],[-77.287259,35.256296],[-77.287259,35.252042],[-77.281905,35.24949],[-77.279228,35.24467],[-77.282798,35.242969],[-77.276552,35.237865],[-77.281905,35.233611],[-77.286367,35.232761],[-77.286367,35.227373],[-77.28369,35.226522],[-77.286367,35.219717],[-77.289043,35.218583],[-77.289043,35.213762],[-77.298858,35.213762],[-77.307781,35.218016],[-77.30332,35.225672],[-77.301535,35.240417],[-77.304212,35.245804],[-77.306889,35.245521],[-77.31135,35.252326],[-77.315811,35.255445],[-77.321165,35.252326],[-77.325626,35.254027],[-77.329195,35.257146],[-77.340795,35.250625],[-77.346148,35.249774],[-77.347933,35.252326],[-77.336333,35.2614],[-77.340795,35.263668],[-77.353286,35.280398],[-77.370239,35.277563],[-77.377378,35.275578],[-77.384516,35.276428],[-77.395223,35.276428],[-77.398792,35.275011],[-77.400576,35.280682],[-77.404145,35.287487],[-77.407715,35.291457],[-77.415745,35.29571],[-77.431806,35.299963],[-77.43359,35.298262],[-77.446974,35.294576],[-77.448759,35.297411],[-77.448759,35.301665],[-77.439836,35.303933],[-77.438051,35.312156],[-77.432698,35.313007],[-77.432698,35.328319],[-77.431806,35.329737],[-77.421991,35.330871],[-77.41396,35.330871],[-77.414853,35.333423],[-77.409499,35.332572],[-77.412176,35.337676],[-77.415745,35.335975],[-77.429129,35.338527],[-77.443405,35.33314],[-77.449651,35.335975],[-77.458574,35.33399],[-77.464819,35.328319],[-77.471065,35.318111],[-77.478203,35.318962],[-77.482665,35.31726],[-77.483557,35.314141],[-77.487126,35.313858],[-77.489803,35.318395],[-77.495156,35.319245],[-77.504079,35.31641],[-77.507648,35.31244],[-77.512109,35.311589],[-77.512109,35.304784],[-77.518355,35.301381],[-77.525493,35.304784],[-77.527278,35.311589],[-77.532632,35.313291],[-77.537093,35.309037],[-77.542446,35.311306],[-77.549585,35.310739],[-77.556723,35.31244],[-77.565645,35.307619],[-77.570999,35.318962],[-77.581706,35.32917],[-77.585275,35.335692],[-77.591521,35.344198],[-77.597767,35.35072],[-77.607582,35.365749],[-77.609366,35.370002],[-77.611151,35.38418],[-77.621858,35.400059],[-77.623642,35.406581],[-77.620966,35.405163],[-77.61472,35.406014],[-77.609366,35.409416],[-77.604013,35.409416],[-77.601336,35.417356],[-77.59509,35.423594],[-77.596875,35.425295],[-77.594198,35.427564],[-77.599551,35.427847],[-77.604013,35.430116],[-77.602228,35.430967],[-77.605797,35.436071],[-77.611151,35.43522],[-77.613828,35.432668],[-77.623642,35.436638],[-77.62275,35.438623],[-77.617397,35.440891],[-77.621858,35.441742],[-77.623642,35.444294],[-77.626319,35.442592],[-77.632565,35.442025],[-77.63435,35.444294],[-77.639703,35.445144],[-77.643272,35.440324],[-77.646841,35.444294],[-77.64238,35.448547],[-77.647734,35.448263],[-77.653087,35.4528],[-77.662902,35.458471],[-77.67004,35.45677],[-77.678071,35.459322],[-77.686101,35.466128],[-77.694131,35.465277],[-77.694131,35.467545],[-77.6977,35.467545],[-77.699485,35.458471],[-77.687885,35.453651],[-77.690562,35.446846],[-77.699485,35.44004],[-77.702162,35.434936],[-77.705731,35.432101],[-77.711977,35.429265],[-77.713761,35.431817],[-77.720899,35.433235],[-77.732499,35.43125],[-77.737852,35.433519],[-77.73696,35.434936],[-77.740529,35.453367],[-77.735175,35.470948],[-77.733391,35.47832],[-77.737852,35.477753],[-77.737852,35.485409],[-77.735175,35.487111],[-77.735175,35.49108],[-77.727145,35.494483],[-77.720899,35.502139],[-77.726253,35.506393],[-77.71733,35.510929],[-77.718222,35.518869],[-77.718222,35.52851],[-77.722684,35.536166],[-77.721792,35.539569],[-77.722684,35.545523],[-77.730714,35.551194],[-77.731606,35.553746],[-77.726253,35.555448],[-77.722684,35.554597],[-77.71733,35.559418],[-77.714653,35.559701],[-77.7093,35.557149],[-77.705731,35.566223],[-77.703054,35.578132],[-77.700377,35.581251],[-77.699485,35.59231],[-77.701269,35.598265],[-77.698593,35.600533],[-77.698593,35.603936],[-77.703946,35.604503],[-77.704838,35.607906],[-77.695916,35.606488],[-77.695916,35.603652],[-77.693239,35.603085],[-77.694131,35.607339],[-77.680747,35.606488],[-77.679855,35.612159],[-77.673609,35.622934],[-77.671825,35.632575],[-77.664687,35.648171],[-77.656656,35.648454],[-77.647734,35.652424],[-77.628996,35.649021],[-77.626319,35.644768],[-77.620966,35.640798],[-77.620966,35.634844],[-77.619181,35.632292],[-77.612935,35.629172],[-77.604905,35.627188],[-77.600444,35.620666],[-77.593305,35.624919],[-77.552261,35.639097],[-77.541554,35.640798],[-77.522817,35.646753],[-77.513894,35.654692],[-77.50854,35.662632],[-77.496941,35.666602],[-77.493372,35.660647],[-77.487126,35.656677],[-77.484449,35.653842],[-77.477311,35.651573],[-77.469281,35.655827],[-77.46125,35.64732],[-77.455005,35.653842],[-77.449651,35.649872],[-77.43359,35.649021],[-77.422883,35.645619],[-77.434482,35.62662],[-77.436267,35.621516],[-77.439836,35.621516],[-77.439836,35.610741],[-77.427344,35.611308],[-77.430913,35.605637],[-77.442513,35.599683],[-77.442513,35.596563],[-77.429129,35.597414],[-77.428237,35.59628],[-77.43359,35.588057],[-77.434482,35.578983],[-77.432698,35.577282],[-77.42556,35.57558],[-77.42556,35.569058],[-77.416637,35.567924],[-77.416637,35.573028],[-77.41396,35.572178],[-77.41396,35.567924],[-77.411284,35.567357],[-77.411284,35.562253],[-77.415745,35.56282],[-77.416637,35.560552],[-77.413068,35.555731],[-77.419314,35.548926],[-77.419314,35.544389],[-77.41396,35.544673],[-77.417529,35.533047],[-77.417529,35.52851],[-77.400576,35.527943],[-77.397007,35.532196],[-77.396115,35.535315],[-77.403253,35.535599],[-77.404145,35.542121],[-77.397007,35.54127],[-77.394331,35.548075],[-77.400576,35.548075],[-77.400576,35.550344],[-77.40593,35.552045],[-77.406822,35.556298],[-77.404145,35.565372],[-77.399684,35.571327],[-77.393438,35.573879],[-77.392546,35.567357],[-77.3863,35.568208],[-77.381839,35.592027],[-77.379162,35.590609],[-77.371132,35.599683],[-77.374701,35.599966],[-77.372024,35.614711],[-77.374701,35.616696],[-77.369347,35.615845],[-77.345256,35.614711],[-77.333657,35.61301],[-77.329195,35.606488],[-77.325626,35.606204],[-77.314919,35.599115],[-77.307781,35.597414],[-77.298858,35.597981],[-77.297966,35.595429],[-77.293505,35.593161],[-77.289936,35.589758],[-77.284582,35.589758],[-77.281013,35.593161],[-77.275659,35.590609],[-77.264952,35.596563],[-77.261383,35.599966],[-77.250676,35.605637],[-77.238184,35.60904],[-77.2248,35.60904],[-77.214985,35.606488],[-77.206063,35.600533],[-77.201601,35.593161],[-77.198925,35.59231],[-77.190894,35.584654],[-77.179295,35.578983],[-77.179295,35.577282],[-77.185541,35.577282],[-77.19714,35.581251],[-77.198925,35.580684],[-77.201601,35.584938],[-77.210524,35.584654],[-77.21677,35.577849],[-77.221231,35.578132],[-77.225693,35.574446],[-77.229262,35.576431],[-77.229262,35.578699],[-77.232831,35.578699],[-77.235508,35.571894],[-77.231046,35.561402],[-77.235508,35.559418],[-77.233723,35.548926],[-77.2364,35.544673],[-77.230154,35.540136],[-77.223908,35.532763],[-77.222124,35.52851],[-77.226585,35.521988],[-77.217662,35.513765],[-77.205171,35.500438],[-77.175726,35.473784],[-77.176618,35.485126],[-77.166803,35.497035],[-77.176618,35.501856],[-77.178403,35.507243],[-77.175726,35.518869],[-77.126651,35.553746],[-77.120405,35.551194],[-77.112375,35.549493],[-77.101668,35.551194],[-77.095422,35.550627],[-77.085607,35.552329],[-77.081146,35.548926],[-77.070439,35.545523],[-77.054378,35.538718],[-77.046347,35.531345],[-77.03564,35.537867],[-77.03564,35.539569],[-77.030287,35.540419],[-77.029394,35.543822],[-77.024933,35.544673],[-77.028502,35.54127],[-77.026718,35.537867],[-77.017795,35.543822],[-77.038317,35.547225],[-77.049024,35.54524],[-77.051701,35.546374],[-77.042778,35.561119],[-77.040994,35.568775],[-77.037425,35.576998],[-77.043671,35.582953],[-77.051701,35.587206],[-77.054378,35.586355],[-77.058839,35.588624],[-77.065085,35.586355],[-77.072223,35.584938],[-77.0749,35.583236],[-77.073115,35.578132],[-77.076684,35.576431],[-77.082038,35.578983],[-77.084715,35.573879],[-77.086499,35.57558],[-77.090961,35.571043],[-77.087392,35.566506],[-77.087392,35.563104],[-77.097207,35.563104],[-77.11416,35.568208],[-77.113267,35.569909],[-77.113267,35.580401],[-77.121298,35.578132],[-77.133789,35.582953],[-77.142712,35.590609],[-77.150742,35.596563],[-77.158773,35.599966],[-77.156988,35.605637],[-77.150742,35.603652],[-77.147173,35.605354],[-77.14182,35.604787],[-77.148958,35.607055],[-77.153419,35.609607],[-77.153419,35.612159],[-77.178403,35.624636],[-77.203386,35.62662],[-77.231046,35.622934],[-77.245322,35.622367],[-77.269414,35.62577],[-77.268521,35.628322],[-77.271198,35.62974],[-77.269414,35.632575],[-77.276552,35.634844],[-77.286367,35.636545],[-77.292612,35.635694],[-77.301535,35.630874],[-77.307781,35.631441],[-77.322949,35.634844],[-77.326518,35.638246],[-77.331872,35.639948],[-77.332764,35.637963],[-77.35061,35.656394],[-77.363994,35.658946],[-77.361317,35.669154],[-77.35864,35.675676],[-77.356855,35.683899],[-77.351502,35.69836],[-77.354179,35.704882],[-77.35864,35.708285],[-77.372024,35.712538],[-77.375593,35.717358],[-77.370239,35.726716],[-77.382731,35.736924],[-77.398792,35.734939],[-77.399684,35.745714],[-77.399684,35.761877],[-77.43359,35.761026],[-77.434482,35.777472],[-77.44519,35.777756],[-77.448759,35.782576],[-77.455005,35.794486],[-77.448759,35.806112],[-77.44519,35.808664],[-77.439836,35.806962],[-77.434482,35.806962],[-77.430021,35.805261],[-77.42556,35.805261],[-77.418422,35.810932],[-77.414853,35.817737],[-77.414853,35.822841],[-77.409499,35.826244],[-77.397007,35.825393],[-77.391654,35.828513],[-77.389869,35.832766],[-77.338118,35.814618],[-77.25603,35.785979],[-77.25603,35.78286],[-77.265844,35.774353],[-77.264952,35.770951],[-77.260491,35.765279],[-77.256922,35.765279],[-77.254245,35.762727],[-77.246215,35.760743],[-77.238184,35.761877],[-77.229262,35.761026],[-77.223016,35.758474],[-77.214985,35.759325],[-77.211416,35.75734],[-77.214093,35.765279],[-77.214093,35.767548],[-77.210524,35.770951],[-77.210524,35.773503],[-77.214093,35.776055],[-77.214093,35.779457],[-77.211416,35.785979],[-77.213201,35.788248],[-77.209632,35.791083],[-77.210524,35.796187],[-77.206955,35.795336],[-77.20874,35.799306],[-77.205171,35.805261],[-77.203386,35.812066],[-77.198925,35.820006],[-77.201601,35.821707],[-77.199817,35.828513],[-77.201601,35.831065],[-77.199817,35.83787],[-77.19714,35.840989],[-77.198925,35.843541],[-77.196248,35.846944],[-77.205171,35.853749],[-77.206955,35.858569],[-77.210524,35.861972],[-77.209632,35.867927],[-77.205171,35.872747],[-77.210524,35.876434],[-77.214985,35.877851],[-77.217662,35.880403],[-77.201601,35.888626],[-77.190894,35.895432],[-77.187325,35.91046],[-77.182864,35.911878],[-77.183756,35.91443],[-77.179295,35.915564],[-77.176618,35.914714],[-77.171264,35.909043],[-77.166803,35.907908],[-77.165019,35.911311],[-77.16145,35.909043],[-77.16145,35.913863],[-77.154311,35.915564],[-77.150742,35.91443],[-77.144497,35.916415],[-77.142712,35.912162],[-77.138251,35.913012],[-77.136466,35.90961],[-77.140035,35.905356],[-77.139143,35.894014],[-77.136466,35.89373],[-77.135574,35.888059],[-77.132897,35.885224],[-77.129328,35.885224],[-77.127544,35.881254],[-77.131113,35.876434],[-77.13022,35.873882],[-77.134682,35.871897],[-77.131113,35.870479],[-77.135574,35.868494],[-77.137358,35.864524],[-77.14182,35.863957],[-77.139143,35.856017],[-77.140928,35.852898],[-77.136466,35.850063],[-77.140928,35.847794],[-77.137358,35.837019],[-77.139143,35.831915],[-77.131113,35.807813],[-77.125759,35.801008],[-77.115944,35.796187],[-77.106129,35.795336],[-77.095422,35.786263],[-77.082038,35.784278],[-77.075792,35.787397],[-77.070439,35.78683],[-77.068654,35.784278],[-77.062408,35.785412],[-77.057055,35.788531],[-77.054378,35.785412],[-77.049917,35.78683],[-77.049917,35.789098],[-77.043671,35.791934],[-77.038317,35.7908],[-77.034748,35.795904],[-77.038317,35.795336],[-77.038317,35.798456],[-77.030287,35.80044],[-77.028502,35.802142],[-77.032964,35.806962],[-77.032071,35.810365],[-77.034748,35.810081],[-77.038317,35.812917],[-77.040102,35.810365],[-77.043671,35.810932],[-77.049024,35.818588],[-77.046347,35.822841],[-77.048132,35.823409],[-77.044563,35.828513],[-77.04724,35.832766],[-77.042778,35.834467],[-77.045455,35.837586],[-77.043671,35.839571],[-77.039209,35.837019],[-77.039209,35.840138],[-77.034748,35.84184],[-77.032964,35.839288],[-77.02761,35.842123],[-77.024041,35.846377],[-77.01958,35.853465],[-77.01958,35.856301],[-77.015118,35.856868],[-77.014226,35.85942],[-77.008872,35.860271],[-77.004411,35.858569],[-76.99995,35.862256],[-76.994596,35.863106],[-76.990135,35.867643],[-76.989243,35.875583],[-76.984781,35.87615],[-76.982104,35.87218],[-76.979428,35.87615],[-76.968721,35.882105],[-76.959798,35.882955],[-76.958013,35.886358],[-76.949091,35.891178],[-76.946414,35.894581],[-76.947306,35.896566],[-76.94106,35.901103],[-76.928569,35.899685],[-76.919646,35.895432],[-76.916969,35.892313],[-76.914292,35.885507],[-76.909831,35.88012],[-76.904477,35.87615],[-76.902693,35.867927],[-76.89377,35.864524],[-76.89377,35.861972],[-76.900016,35.858569],[-76.900016,35.8546],[-76.897339,35.851197],[-76.901801,35.844675],[-76.903585,35.836169],[-76.896447,35.833617],[-76.894663,35.829647],[-76.898232,35.826811],[-76.903585,35.825393],[-76.901801,35.82114],[-76.89377,35.819155],[-76.896447,35.813484],[-76.883063,35.811783],[-76.879494,35.812066],[-76.873248,35.815185],[-76.864326,35.823409],[-76.858972,35.825393],[-76.850049,35.835318],[-76.848265,35.833617],[-76.848265,35.827945],[-76.854511,35.823692],[-76.857187,35.819155],[-76.856295,35.811216],[-76.848265,35.812066],[-76.840234,35.807813],[-76.837558,35.791934],[-76.833989,35.79165],[-76.833989,35.787397],[-76.840234,35.781159],[-76.834881,35.776055],[-76.831312,35.775204],[-76.836665,35.7701],[-76.82685,35.764429],[-76.815251,35.76613],[-76.81079,35.768399],[-76.796514,35.767548],[-76.787591,35.780024],[-76.78313,35.788531],[-76.778668,35.794202],[-76.775991,35.80838],[-76.772422,35.807813],[-76.769746,35.804694],[-76.765284,35.804694],[-76.765284,35.806962],[-76.758146,35.824259],[-76.755469,35.824543],[-76.742978,35.831065],[-76.738516,35.836169],[-76.736732,35.834751],[-76.731378,35.836169],[-76.733163,35.840138],[-76.729594,35.84184],[-76.731378,35.843825],[-76.731378,35.849212],[-76.738516,35.849212],[-76.739409,35.854316],[-76.742085,35.85942],[-76.738516,35.860271],[-76.720671,35.867643],[-76.682304,35.873031],[-76.68498,35.858853],[-76.687657,35.847794],[-76.690334,35.831915],[-76.693011,35.825393],[-76.698364,35.801858],[-76.702826,35.780024],[-76.70461,35.774353],[-76.669812,35.740043],[-76.650182,35.718209],[-76.656428,35.704882],[-76.607353,35.704882],[-76.601108,35.717358],[-76.617168,35.722746],[-76.568986,35.816887],[-76.561848,35.849212],[-76.553818,35.844392],[-76.541326,35.838721],[-76.54668,35.843541],[-76.535972,35.882955],[-76.538649,35.894865],[-76.536865,35.898834],[-76.536865,35.907908],[-76.542218,35.918116],[-76.540434,35.92237],[-76.54311,35.922086],[-76.552033,35.925489],[-76.557387,35.928041],[-76.563633,35.927474],[-76.57434,35.930593],[-76.568094,35.934846],[-76.568094,35.974544],[-76.593077,35.974828],[-76.604677,35.97738],[-76.612707,35.981633],[-76.622522,35.987588],[-76.617168,35.99496],[-76.596646,36.020764],[-76.58237,36.033524],[-76.585939,36.036643],[-76.585939,36.041747],[-76.579693,36.049403],[-76.570771,36.04997],[-76.558279,36.065849],[-76.553818,36.08428],[-76.555602,36.095055],[-76.560063,36.10101],[-76.548464,36.099309],[-76.544895,36.09619],[-76.53508,36.099025],[-76.527942,36.104413],[-76.494036,36.132768],[-76.484221,36.159139],[-76.482437,36.161975],[-76.474406,36.167079],[-76.473514,36.170481],[-76.466376,36.167929],[-76.461022,36.174451],[-76.456561,36.183525],[-76.453884,36.180406],[-76.44853,36.184659],[-76.434254,36.174451],[-76.428008,36.171049],[-76.396779,36.149215],[-76.392318,36.173884],[-76.390533,36.174735],[-76.390533,36.182107],[-76.39321,36.188629],[-76.395887,36.200255],[-76.391426,36.201389],[-76.386964,36.208478],[-76.38518,36.213015],[-76.380718,36.217835],[-76.377149,36.218686],[-76.372688,36.22379],[-76.364658,36.225208],[-76.363765,36.226909],[-76.352166,36.228611],[-76.34592,36.231163],[-76.331644,36.243923],[-76.325398,36.240236],[-76.319152,36.24052],[-76.316475,36.237968],[-76.315583,36.232297],[-76.307553,36.229745],[-76.303984,36.225491],[-76.303984,36.221805],[-76.289707,36.222939],[-76.289707,36.217835],[-76.286138,36.216418],[-76.281677,36.218119],[-76.278108,36.216985],[-76.276323,36.21982],[-76.274539,36.218686],[-76.268293,36.222939],[-76.260263,36.222939],[-76.258478,36.22776],[-76.254017,36.231446],[-76.253125,36.234565],[-76.254909,36.237968],[-76.255801,36.245624],[-76.254017,36.252146],[-76.250448,36.259802],[-76.245986,36.264622],[-76.238848,36.276532],[-76.234387,36.28277],[-76.229926,36.279651],[-76.228141,36.273129],[-76.220111,36.272278],[-76.220111,36.275397],[-76.213865,36.271428],[-76.210296,36.272845],[-76.20405,36.267458],[-76.203158,36.269159],[-76.19602,36.268308],[-76.187989,36.270577],[-76.182636,36.274547],[-76.187989,36.279651],[-76.189774,36.287307],[-76.192451,36.287023],[-76.202266,36.294679],[-76.211188,36.298082],[-76.217434,36.298082],[-76.217434,36.302902],[-76.21565,36.305738],[-76.221003,36.311409],[-76.225464,36.310842],[-76.232603,36.305738],[-76.244202,36.300067],[-76.263832,36.298933],[-76.263832,36.300634],[-76.255801,36.309141],[-76.27097,36.319916],[-76.278108,36.321617],[-76.287031,36.328139],[-76.2906,36.341466],[-76.295953,36.347988],[-76.295953,36.352241],[-76.301307,36.354793],[-76.303984,36.369254],[-76.302199,36.371807],[-76.308445,36.376343],[-76.313799,36.381447],[-76.335213,36.403281],[-76.338782,36.407535],[-76.340566,36.41434],[-76.351274,36.41831],[-76.369119,36.421712],[-76.379826,36.41916],[-76.39321,36.415191],[-76.397671,36.407535],[-76.409271,36.395625],[-76.423547,36.390805],[-76.435147,36.38088],[-76.447638,36.3633],[-76.426224,36.333243],[-76.40124,36.301201],[-76.397671,36.300067],[-76.394102,36.29553],[-76.39321,36.29156],[-76.397671,36.288157],[-76.405702,36.289008],[-76.436931,36.281636],[-76.452992,36.277382],[-76.486006,36.269726],[-76.492251,36.252713],[-76.497605,36.243923],[-76.503851,36.239669],[-76.509204,36.238819],[-76.512773,36.24052],[-76.521696,36.242221],[-76.531511,36.246191],[-76.535972,36.24449],[-76.541326,36.245624],[-76.547572,36.241087],[-76.560063,36.23655],[-76.564525,36.229461],[-76.564525,36.226342],[-76.568986,36.224357],[-76.571663,36.217835],[-76.57434,36.215567],[-76.587724,36.213582],[-76.5904,36.238819],[-76.589508,36.244773],[-76.596646,36.247892],[-76.606461,36.248743],[-76.617168,36.253847],[-76.62163,36.253847],[-76.638583,36.25725],[-76.645721,36.252996],[-76.645721,36.250444],[-76.651074,36.244773],[-76.660889,36.242221],[-76.663566,36.234849],[-76.671597,36.228894],[-76.670704,36.224641],[-76.659105,36.209329],[-76.659997,36.20224],[-76.661782,36.199404],[-76.661782,36.191181],[-76.662674,36.178705],[-76.659105,36.166228],[-76.655536,36.161124],[-76.654644,36.15205],[-76.655536,36.149498],[-76.664458,36.13929],[-76.671597,36.137873],[-76.675166,36.130784],[-76.674273,36.129933],[-76.680519,36.125396],[-76.679627,36.120292],[-76.682304,36.115188],[-76.686765,36.113487],[-76.690334,36.109233],[-76.710856,36.095906],[-76.713533,36.102712],[-76.726917,36.125112],[-76.731378,36.133336],[-76.736732,36.146946],[-76.737624,36.15999],[-76.736732,36.183809],[-76.73227,36.201106],[-76.733163,36.21103],[-76.731378,36.216985],[-76.728701,36.220387],[-76.719779,36.225491],[-76.717102,36.228611],[-76.710856,36.240236],[-76.701041,36.252996],[-76.689442,36.269726],[-76.690334,36.275681],[-76.69658,36.287307],[-76.697472,36.295813],[-76.684088,36.300067],[-76.677842,36.300634],[-76.672489,36.304037],[-76.676058,36.304887],[-76.672489,36.306589],[-76.674273,36.308857],[-76.670704,36.314528],[-76.673381,36.317364],[-76.667135,36.319065],[-76.667135,36.32502],[-76.663566,36.330691],[-76.661782,36.331541],[-76.662674,36.339198],[-76.666243,36.340899],[-76.662674,36.347137],[-76.66892,36.349122],[-76.68855,36.359046],[-76.701041,36.361598],[-76.701934,36.368404],[-76.706395,36.370956],[-76.706395,36.379179],[-76.703718,36.385701],[-76.700149,36.385134],[-76.701934,36.387686],[-76.698364,36.395625],[-76.701041,36.409803],[-76.701041,36.416892],[-76.695688,36.41831],[-76.679627,36.415191],[-76.672489,36.417743],[-76.661782,36.409236],[-76.653751,36.408385],[-76.64929,36.4064],[-76.646613,36.402714],[-76.638583,36.398461],[-76.634121,36.397327],[-76.62966,36.400162],[-76.62966,36.403565],[-76.622522,36.404983],[-76.611815,36.410937],[-76.600215,36.413489],[-76.593077,36.416892],[-76.597539,36.426816],[-76.596646,36.433338],[-76.59397,36.43504],[-76.593077,36.438442],[-76.585047,36.439293],[-76.569878,36.443263],[-76.565417,36.443546],[-76.559171,36.442412],[-76.547572,36.442696],[-76.556494,36.460843],[-76.563633,36.470201],[-76.567202,36.478707],[-76.576124,36.485229],[-76.593077,36.473603],[-76.604677,36.456023],[-76.611815,36.457724],[-76.619845,36.467649],[-76.626091,36.472469],[-76.633229,36.472753],[-76.638583,36.468216],[-76.651967,36.467081],[-76.659997,36.465947],[-76.672489,36.468499],[-76.66892,36.472753],[-76.666243,36.481826],[-76.671597,36.483811],[-76.679627,36.484378],[-76.677842,36.491751],[-76.682304,36.501959],[-76.690334,36.507063],[-76.700149,36.517838],[-76.717102,36.510182],[-76.733163,36.505078],[-76.730486,36.499123],[-76.721563,36.48608],[-76.731378,36.482677],[-76.741193,36.480976],[-76.746547,36.479274],[-76.758146,36.477857],[-76.77153,36.472753],[-76.774207,36.46935],[-76.772422,36.465947],[-76.776884,36.461127],[-76.775099,36.455172],[-76.78313,36.446949],[-76.787591,36.446098],[-76.77956,36.443546],[-76.775991,36.440711],[-76.781345,36.439009],[-76.789375,36.429936],[-76.785806,36.423414],[-76.778668,36.41831],[-76.781345,36.416892],[-76.77956,36.41434],[-76.784022,36.412355],[-76.785806,36.404983],[-76.784022,36.40158],[-76.785806,36.400162],[-76.78313,36.393357],[-76.782237,36.388253],[-76.778668,36.386551],[-76.768853,36.386551],[-76.769746,36.382582],[-76.772422,36.381731],[-76.773315,36.373224],[-76.770638,36.368404],[-76.772422,36.365568],[-76.77153,36.361882],[-76.775099,36.361031],[-76.784022,36.363016],[-76.789375,36.360181],[-76.794729,36.359897],[-76.809005,36.362449],[-76.821497,36.36415],[-76.825066,36.365568],[-76.833096,36.372374],[-76.837558,36.374075],[-76.848265,36.374926],[-76.856295,36.376627],[-76.874141,36.383149],[-76.882171,36.382582],[-76.888417,36.386835],[-76.895555,36.390238],[-76.906262,36.389954],[-76.919646,36.395909],[-76.93303,36.401013],[-76.941953,36.408385],[-76.947306,36.415191],[-76.945522,36.438159],[-76.946414,36.449217],[-76.949091,36.457441],[-76.946414,36.464529],[-76.949983,36.46935],[-76.949091,36.471902],[-76.937491,36.470768],[-76.933922,36.47417],[-76.937491,36.480125],[-76.934814,36.484378],[-76.927676,36.48693],[-76.923215,36.496004],[-76.921431,36.50366],[-76.919646,36.505362],[-76.915185,36.504227],[-76.909831,36.505362],[-76.907154,36.508764],[-76.90537,36.516987],[-76.902693,36.519256],[-76.904477,36.522091],[-76.916969,36.530315],[-76.922323,36.528613],[-76.925892,36.530031],[-76.921431,36.532016],[-76.922323,36.537971],[-76.916969,36.543642],[-76.916969,36.552148],[-76.803652,36.550447],[-76.780453,36.550447],[-76.751008,36.550447],[-76.738516,36.551014],[-76.699257,36.550447],[-76.575232,36.550447],[-76.542218,36.550447],[-76.492251,36.550447],[-76.379826,36.550447],[-76.293276,36.550447],[-76.130884,36.550447],[-76.112147,36.550447],[-76.095194,36.550447],[-75.963139,36.550447],[-75.929233,36.550447],[-75.866774,36.550447],[-75.854282,36.551014],[-75.797178,36.551014],[-75.790932,36.500258],[-75.77041,36.425966],[-75.755241,36.374926],[-75.749888,36.353375],[-75.745426,36.342317],[-75.712412,36.249877],[-75.709736,36.244773],[-75.68386,36.188629],[-75.670476,36.15602],[-75.666907,36.148648],[-75.654415,36.125112],[-75.624971,36.076057],[-75.591957,36.015943],[-75.566081,35.975678],[-75.511653,35.875299],[-75.481316,35.814335],[-75.466148,35.801008],[-75.460794,35.790232],[-75.460794,35.784278],[-75.451871,35.771234],[-75.438487,35.746848],[-75.433134,35.730686],[-75.425103,35.705733],[-75.417965,35.685884],[-75.411719,35.659796],[-75.407258,35.636545],[-75.404581,35.624919],[-75.40012,35.593161],[-75.40012,35.575297],[-75.401012,35.55885],[-75.402797,35.543822],[-75.405474,35.533614],[-75.415288,35.500154],[-75.417965,35.465844],[-75.421534,35.444577],[-75.423319,35.427564],[-75.423319,35.410267],[-75.426888,35.381628],[-75.430457,35.375106],[-75.43938,35.343915],[-75.445625,35.319812],[-75.44741,35.314708],[-75.450087,35.296561],[-75.454548,35.279831],[-75.454548,35.271324],[-75.459009,35.246371],[-75.467932,35.219717],[-75.470609,35.208658],[-75.474178,35.202137],[-75.488454,35.18484],[-75.500054,35.177184],[-75.518791,35.168677],[-75.527714,35.166976],[-75.549128,35.167826],[-75.558051,35.170378],[-75.56965,35.175482],[-75.58125,35.183705],[-75.591065,35.183705],[-75.598203,35.182288],[-75.624971,35.175482],[-75.672261,35.16017],[-75.699029,35.149395],[-75.707951,35.145992],[-75.728473,35.141172],[-75.736504,35.140321],[-75.749888,35.136068],[-75.793609,35.120189],[-75.794501,35.119338],[-75.813238,35.114234],[-75.828407,35.106294],[-75.836437,35.103459],[-75.843575,35.10034],[-75.85339,35.097504],[-75.872128,35.089565],[-75.898003,35.076805],[-75.899788,35.075103],[-75.908711,35.071133],[-75.913172,35.067731],[-75.931909,35.057523],[-75.947078,35.043629],[-75.949755,35.039375],[-75.960462,35.033137],[-75.977415,35.02066],[-75.986338,35.013855],[-75.99526,35.008468],[-76.00686,35.005916],[-76.024705,35.005065],[-76.033628,34.999961],[-76.051473,34.986634],[-76.124639,34.933042],[-76.144268,34.918864],[-76.169252,34.896463],[-76.220111,34.856198],[-76.236172,34.843721],[-76.250448,34.834647],[-76.279893,34.80856],[-76.316475,34.775951],[-76.33789,34.754117],[-76.341459,34.750148],[-76.361981,34.730299],[-76.375365,34.715837],[-76.408379,34.677557],[-76.439608,34.640128],[-76.444069,34.633039],[-76.466376,34.595609],[-76.477975,34.56612],[-76.484221,34.556479],[-76.493144,34.546271],[-76.503851,34.539465],[-76.514558,34.535212],[-76.524373,34.532093],[-76.532403,34.531526],[-76.548464,34.532944],[-76.56274,34.536913],[-76.571663,34.542301],[-76.585047,34.552225],[-76.591293,34.563001],[-76.596646,34.577462],[-76.607353,34.590789],[-76.612707,34.599863],[-76.614492,34.610638],[-76.614492,34.618294],[-76.624307,34.620562],[-76.647505,34.626517],[-76.667135,34.631338],[-76.67695,34.634173],[-76.684088,34.637292],[-76.693903,34.642963],[-76.699257,34.643247],[-76.729594,34.647217],[-76.750116,34.6475],[-76.819712,34.643247],[-76.862541,34.637292],[-76.904477,34.632472],[-76.950875,34.624816],[-76.99995,34.616593],[-77.040994,34.605818],[-77.079361,34.595609],[-77.088284,34.591356],[-77.095422,34.588237],[-77.103452,34.586536],[-77.124867,34.583133],[-77.146281,34.574059],[-77.160557,34.568955],[-77.180187,34.560449],[-77.219447,34.539749],[-77.227477,34.533227],[-77.239969,34.525571],[-77.245322,34.521885],[-77.267629,34.506856],[-77.289043,34.492962],[-77.295289,34.488709],[-77.307781,34.483605],[-77.341687,34.471412],[-77.355071,34.465174],[-77.375593,34.4561],[-77.381839,34.45213],[-77.419314,34.435967],[-77.432698,34.428595],[-77.457681,34.414417],[-77.467496,34.410164],[-77.485341,34.399388],[-77.499618,34.416969],[-77.515678,34.437669],[-77.534416,34.458368],[-77.542446,34.463756],[-77.548692,34.466875],[-77.553154,34.471128],[-77.557615,34.469427],[-77.561184,34.471128],[-77.562968,34.469427],[-77.56743,34.469427],[-77.571891,34.472262],[-77.571891,34.476799],[-77.57546,34.475949],[-77.577245,34.478784],[-77.582598,34.494663],[-77.621858,34.585685],[-77.631673,34.578029],[-77.678071,34.533794],[-77.713761,34.499767],[-77.742314,34.47283],[-77.753913,34.461204],[-77.754805,34.455249],[-77.76462,34.447593],[-77.767297,34.439653],[-77.771758,34.437669],[-77.778896,34.438803],[-77.783358,34.435967],[-77.797634,34.432848],[-77.799419,34.431714],[-77.800311,34.426043],[-77.797634,34.421789],[-77.796742,34.416969],[-77.793173,34.416685],[-77.790496,34.406761],[-77.797634,34.40506],[-77.806557,34.40506],[-77.807449,34.403358],[-77.812802,34.402791],[-77.822617,34.38918],[-77.826186,34.386912],[-77.83154,34.386061],[-77.844924,34.380674],[-77.857416,34.380107],[-77.875261,34.370749],[-77.879722,34.365929],[-77.884184,34.364795],[-77.894891,34.363377],[-77.900244,34.367347],[-77.899352,34.375003],[-77.902029,34.377555],[-77.909167,34.375003],[-77.916305,34.375853],[-77.927012,34.363377],[-77.931474,34.361108],[-77.930581,34.365929],[-77.932366,34.36763],[-77.935043,34.363377],[-77.933258,34.359123],[-77.935935,34.357706],[-77.940396,34.361108],[-77.940396,34.369899],[-77.948427,34.3716],[-77.950211,34.369899],[-77.950211,34.364795],[-77.958242,34.368481],[-77.962703,34.373301],[-77.959134,34.377555],[-77.960918,34.382659],[-77.970733,34.377555],[-77.976087,34.372451],[-77.983225,34.372734],[-77.986794,34.371884],[-77.988579,34.365929],[-77.987686,34.362526],[-77.983225,34.361675],[-77.978764,34.357706],[-77.980548,34.355154],[-77.986794,34.352602],[-77.99304,34.345229],[-77.994824,34.338991],[-77.99304,34.336723],[-77.987686,34.33729],[-77.985009,34.339275],[-77.980548,34.338424],[-77.982333,34.332469],[-77.980548,34.330201],[-77.968056,34.323112],[-77.957349,34.321694],[-77.954672,34.319709],[-77.944858,34.324813],[-77.937719,34.323395],[-77.937719,34.325097],[-77.930581,34.323395],[-77.912736,34.323112],[-77.902029,34.324246],[-77.905598,34.300144],[-77.909167,34.292204],[-77.930581,34.257043],[-77.927905,34.254775],[-77.923443,34.257327],[-77.923443,34.262147],[-77.920766,34.263281],[-77.918982,34.258745],[-77.915413,34.259028],[-77.911844,34.257327],[-77.902029,34.259879],[-77.89846,34.257894],[-77.888645,34.259028],[-77.887753,34.255909],[-77.871692,34.254775],[-77.872584,34.249671],[-77.871692,34.240313],[-77.873476,34.236344],[-77.865446,34.232374],[-77.860985,34.232941],[-77.852954,34.231523],[-77.860985,34.220464],[-77.865446,34.215644],[-77.872584,34.219614],[-77.873476,34.212808],[-77.881507,34.213659],[-77.882399,34.210256],[-77.892214,34.211107],[-77.892214,34.213943],[-77.90649,34.219614],[-77.905598,34.221315],[-77.90649,34.229822],[-77.90649,34.239746],[-77.922551,34.237194],[-77.919874,34.233224],[-77.916305,34.23209],[-77.917197,34.226986],[-77.927012,34.223016],[-77.92612,34.207988],[-77.923443,34.198914],[-77.935935,34.19381],[-77.93415,34.191258],[-77.949319,34.191258],[-77.955565,34.192109],[-77.957349,34.198914],[-77.960918,34.203167],[-77.960026,34.209689],[-77.957349,34.216211],[-77.951996,34.232374],[-77.954672,34.232374],[-77.962703,34.239179],[-77.955565,34.239746],[-77.959134,34.242298],[-77.96538,34.241448],[-77.970733,34.244],[-77.966272,34.247402],[-77.968949,34.252223],[-77.974302,34.247119],[-77.976087,34.249104],[-77.979656,34.259879],[-77.985902,34.259028],[-77.988579,34.262147],[-77.987686,34.268102],[-77.991255,34.270654],[-78.00107,34.271505],[-77.999286,34.275758],[-77.991255,34.278026],[-77.990363,34.281429],[-77.996609,34.283981],[-78.004639,34.280578],[-78.004639,34.286533],[-78.008208,34.289936],[-78.015346,34.289085],[-78.018023,34.292488],[-78.015346,34.302412],[-78.015346,34.307516],[-78.011777,34.314038],[-78.006424,34.31659],[-78.007316,34.32141],[-78.015346,34.323112],[-78.023377,34.317724],[-78.02873,34.319709],[-78.026054,34.326798],[-78.030515,34.331619],[-78.035869,34.329917],[-78.039438,34.331902],[-78.042114,34.329917],[-78.047468,34.330768],[-78.04836,34.335872],[-78.052822,34.335021],[-78.051929,34.338424],[-78.05996,34.344946],[-78.05996,34.337573],[-78.065313,34.338991],[-78.074236,34.337573],[-78.079589,34.340125],[-78.07602,34.344095],[-78.07602,34.347781],[-78.082266,34.354019],[-78.085835,34.351467],[-78.093866,34.352318],[-78.09565,34.356004],[-78.102788,34.355154],[-78.105465,34.357422],[-78.112603,34.359974],[-78.112603,34.36281],[-78.117065,34.364228],[-78.122418,34.368481],[-78.134018,34.36678],[-78.136694,34.3716],[-78.141156,34.369899],[-78.140263,34.365929],[-78.143832,34.364228],[-78.147402,34.36678],[-78.153647,34.365645],[-78.159001,34.356855],[-78.1706,34.356004],[-78.174169,34.351751],[-78.179523,34.35487],[-78.185769,34.353169],[-78.194692,34.352318],[-78.20183,34.352602],[-78.208076,34.356571],[-78.211645,34.362526],[-78.211645,34.369332],[-78.218783,34.371033],[-78.226813,34.375003],[-78.22949,34.378405],[-78.233951,34.373585],[-78.236628,34.374152],[-78.236628,34.378405],[-78.239305,34.381524],[-78.246443,34.385211],[-78.245551,34.38918],[-78.24912,34.393434],[-78.253581,34.391732],[-78.25715,34.399388],[-78.211645,34.435967],[-78.176846,34.465174],[-78.180415,34.466024],[-78.183092,34.469427],[-78.185769,34.467726]]]}},{"type":"Feature","properties":{"district":4},"geometry":{"type":"Polygon","coordinates":[[[-79.201166,36.105831],[-79.196704,36.105264],[-79.196704,36.099309],[-79.193135,36.094205],[-79.192243,36.081728],[-79.18332,36.080878],[-79.18332,36.077475],[-79.180644,36.077759],[-79.180644,36.073505],[-79.171721,36.072655],[-79.18332,36.071804],[-79.194027,36.069819],[-79.197597,36.061879],[-79.20295,36.061596],[-79.205627,36.058477],[-79.218119,36.054223],[-79.221688,36.050821],[-79.220795,36.047702],[-79.211873,36.034091],[-79.137815,36.03239],[-79.13603,36.057626],[-79.135138,36.064148],[-79.132461,36.11774],[-79.130677,36.136738],[-79.121754,36.136171],[-79.116401,36.12256],[-79.103017,36.087683],[-79.095878,36.085698],[-79.093202,36.082863],[-79.093202,36.077759],[-79.091417,36.074072],[-79.087848,36.076057],[-79.084279,36.074923],[-79.082494,36.076908],[-79.079818,36.072655],[-79.084279,36.070103],[-79.085171,36.064999],[-79.08874,36.065849],[-79.090525,36.070103],[-79.099447,36.072371],[-79.097663,36.060745],[-79.098555,36.055641],[-79.084279,36.059044],[-79.071787,36.055074],[-79.071787,36.030688],[-79.04145,36.030121],[-78.987022,36.029838],[-78.985238,36.038061],[-78.980776,36.038061],[-78.970961,36.035792],[-78.954901,36.025584],[-78.948655,36.024734],[-78.937948,36.02842],[-78.925456,36.02842],[-78.920102,36.023316],[-78.920102,36.016794],[-78.936163,36.017645],[-78.937948,36.01566],[-78.950439,36.018212],[-78.955793,36.012541],[-78.959362,36.004034],[-78.959362,35.983901],[-78.937055,35.974828],[-78.939732,35.968022],[-78.932594,35.970007],[-78.932594,35.959799],[-78.934379,35.957531],[-78.925456,35.958948],[-78.923671,35.952427],[-78.92724,35.950725],[-78.928133,35.948173],[-78.922779,35.946188],[-78.925456,35.941368],[-78.925456,35.937965],[-78.922779,35.935697],[-78.922779,35.930593],[-78.921887,35.928041],[-78.925456,35.924922],[-78.931702,35.916982],[-78.934379,35.91046],[-78.909395,35.902804],[-78.896011,35.902237],[-78.890658,35.916982],[-78.887981,35.932294],[-78.886196,35.930593],[-78.882627,35.943636],[-78.879058,35.939667],[-78.87192,35.943636],[-78.866567,35.942219],[-78.86389,35.939667],[-78.85229,35.937965],[-78.846937,35.9391],[-78.838906,35.942219],[-78.843368,35.935697],[-78.84426,35.930593],[-78.821061,35.925489],[-78.812138,35.925772],[-78.808569,35.923787],[-78.806785,35.927474],[-78.803216,35.926623],[-78.78894,35.916415],[-78.771094,35.905356],[-78.73808,35.881821],[-78.73005,35.874732],[-78.723804,35.870479],[-78.715774,35.873031],[-78.716666,35.874449],[-78.713097,35.878986],[-78.706851,35.878986],[-78.704174,35.877001],[-78.701498,35.870479],[-78.697929,35.87133],[-78.697929,35.876434],[-78.700605,35.883806],[-78.696144,35.88891],[-78.692575,35.886925],[-78.69079,35.882672],[-78.69079,35.874732],[-78.695252,35.869628],[-78.699713,35.868494],[-78.696144,35.862256],[-78.699713,35.862823],[-78.705067,35.867643],[-78.713097,35.867643],[-78.712205,35.862256],[-78.713097,35.858002],[-78.711313,35.854316],[-78.71042,35.846944],[-78.714882,35.841273],[-78.71042,35.830497],[-78.71042,35.825393],[-78.705067,35.82114],[-78.691683,35.828513],[-78.678299,35.824259],[-78.679191,35.818588],[-78.68276,35.816887],[-78.685437,35.809514],[-78.680976,35.80838],[-78.68276,35.805261],[-78.681868,35.801008],[-78.662238,35.800157],[-78.657777,35.798739],[-78.653315,35.795336],[-78.64707,35.797605],[-78.64707,35.803843],[-78.651531,35.812633],[-78.6435,35.814618],[-78.632793,35.823409],[-78.630116,35.82114],[-78.630116,35.830214],[-78.624763,35.826244],[-78.612271,35.82114],[-78.606918,35.828513],[-78.606025,35.834467],[-78.611379,35.832766],[-78.614056,35.836169],[-78.60781,35.846944],[-78.60781,35.850063],[-78.632793,35.851197],[-78.642608,35.856301],[-78.650639,35.856301],[-78.650639,35.852898],[-78.658669,35.852898],[-78.66313,35.857152],[-78.66313,35.859704],[-78.670268,35.85942],[-78.669376,35.865658],[-78.662238,35.87218],[-78.660453,35.884657],[-78.654208,35.881254],[-78.64707,35.882105],[-78.645285,35.874732],[-78.636362,35.863674],[-78.63547,35.866509],[-78.624763,35.871046],[-78.622978,35.873031],[-78.621194,35.867927],[-78.613163,35.869345],[-78.603349,35.863674],[-78.600672,35.861122],[-78.598887,35.862823],[-78.59621,35.873882],[-78.597995,35.882105],[-78.600672,35.886074],[-78.591749,35.883806],[-78.581934,35.884657],[-78.576581,35.883806],[-78.573012,35.88012],[-78.559628,35.89288],[-78.557843,35.903088],[-78.554274,35.908759],[-78.543567,35.905356],[-78.539998,35.908759],[-78.536429,35.903939],[-78.536429,35.899685],[-78.533752,35.894014],[-78.534644,35.890611],[-78.539106,35.886925],[-78.541782,35.882955],[-78.539998,35.88097],[-78.535536,35.880403],[-78.53286,35.885507],[-78.530183,35.885507],[-78.527506,35.882955],[-78.529291,35.878986],[-78.533752,35.87615],[-78.536429,35.870479],[-78.53286,35.866509],[-78.528398,35.864524],[-78.527506,35.860271],[-78.531075,35.852898],[-78.531967,35.842974],[-78.531075,35.839571],[-78.531967,35.831915],[-78.538213,35.828796],[-78.539998,35.822841],[-78.538213,35.820857],[-78.539106,35.816887],[-78.53286,35.810365],[-78.539998,35.802992],[-78.541782,35.795053],[-78.537321,35.791934],[-78.536429,35.789098],[-78.537321,35.778607],[-78.539998,35.772935],[-78.539998,35.76613],[-78.538213,35.760175],[-78.535536,35.759325],[-78.53286,35.755071],[-78.53286,35.750818],[-78.527506,35.740894],[-78.530183,35.733521],[-78.523937,35.730686],[-78.518583,35.73182],[-78.515014,35.730686],[-78.514122,35.726716],[-78.518583,35.722746],[-78.519476,35.719343],[-78.524829,35.711687],[-78.534644,35.703181],[-78.542675,35.697509],[-78.549813,35.695808],[-78.549813,35.692405],[-78.554274,35.692689],[-78.558735,35.696659],[-78.572119,35.700912],[-78.589965,35.703464],[-78.585503,35.698927],[-78.585503,35.696375],[-78.601564,35.70233],[-78.602456,35.697509],[-78.609594,35.695808],[-78.610487,35.69836],[-78.622978,35.696659],[-78.631901,35.698077],[-78.637255,35.692405],[-78.639931,35.692405],[-78.639039,35.697509],[-78.636362,35.701479],[-78.644393,35.700912],[-78.640824,35.715657],[-78.639039,35.719343],[-78.641716,35.728134],[-78.646177,35.727566],[-78.646177,35.724164],[-78.648854,35.725014],[-78.650639,35.730969],[-78.661346,35.730969],[-78.66313,35.73664],[-78.672053,35.741744],[-78.680976,35.742595],[-78.683652,35.728134],[-78.687221,35.717642],[-78.69079,35.715941],[-78.696144,35.716791],[-78.704174,35.715657],[-78.705959,35.719343],[-78.709528,35.721612],[-78.714882,35.721895],[-78.719343,35.728984],[-78.722912,35.731536],[-78.725589,35.736073],[-78.733619,35.743446],[-78.733619,35.745998],[-78.738973,35.745714],[-78.73808,35.747699],[-78.731835,35.751952],[-78.729158,35.758191],[-78.731835,35.760175],[-78.736296,35.76613],[-78.746111,35.761877],[-78.747895,35.763578],[-78.756818,35.76613],[-78.763956,35.772085],[-78.763956,35.775771],[-78.74968,35.780308],[-78.748788,35.788531],[-78.746111,35.791934],[-78.753249,35.795336],[-78.75771,35.796187],[-78.763064,35.795053],[-78.763956,35.785128],[-78.780909,35.785128],[-78.780909,35.793352],[-78.783586,35.793635],[-78.781801,35.809514],[-78.771094,35.819439],[-78.770202,35.827095],[-78.763956,35.831348],[-78.780017,35.838721],[-78.799647,35.850346],[-78.802323,35.844675],[-78.812138,35.838721],[-78.815707,35.831348],[-78.822846,35.824259],[-78.829984,35.820289],[-78.841583,35.818304],[-78.866567,35.824543],[-78.87192,35.820289],[-78.875489,35.828513],[-78.875489,35.835318],[-78.881735,35.844392],[-78.89155,35.852048],[-78.893334,35.856301],[-78.890658,35.867643],[-78.906718,35.867927],[-78.939732,35.866509],[-78.998622,35.863957],[-79.012006,35.863106],[-79.012898,35.861122],[-79.009329,35.860271],[-79.008437,35.857152],[-79.003083,35.853749],[-79.007544,35.848645],[-79.003975,35.843541],[-78.998622,35.822841],[-78.995053,35.814618],[-78.995053,35.811216],[-79.000406,35.802142],[-79.007544,35.795904],[-79.012006,35.794486],[-79.011113,35.789382],[-79.022713,35.789098],[-79.023605,35.78768],[-79.028066,35.770383],[-79.029851,35.737774],[-79.028959,35.737491],[-79.054834,35.738342],[-79.066434,35.740043],[-79.077141,35.737491],[-79.090525,35.73664],[-79.096771,35.735222],[-79.107478,35.731536],[-79.095878,35.721612],[-79.093202,35.714806],[-79.086956,35.709135],[-79.082494,35.698077],[-79.079818,35.685033],[-79.075356,35.66008],[-79.070003,35.66008],[-79.067326,35.665468],[-79.066434,35.674825],[-79.067326,35.679078],[-79.059296,35.679929],[-79.057511,35.684749],[-79.05305,35.686451],[-79.054834,35.691555],[-79.051265,35.69439],[-79.038774,35.700061],[-79.026282,35.700912],[-79.009329,35.694957],[-79.003083,35.690704],[-78.993268,35.691555],[-78.985238,35.685884],[-78.980776,35.686734],[-78.970069,35.68163],[-78.9781,35.657528],[-78.983453,35.644201],[-78.991484,35.619815],[-78.995053,35.609891],[-78.936163,35.591459],[-78.917426,35.584654],[-78.913857,35.582953],[-78.931702,35.563104],[-78.954901,35.538151],[-78.970069,35.522272],[-78.962931,35.512631],[-78.957577,35.499587],[-78.952224,35.492215],[-78.952224,35.487678],[-78.950439,35.484559],[-78.939732,35.478604],[-78.933486,35.480022],[-78.916533,35.474351],[-78.907611,35.470381],[-78.897796,35.46953],[-78.886196,35.465277],[-78.881735,35.462725],[-78.874597,35.454502],[-78.855859,35.440891],[-78.850506,35.439473],[-78.84426,35.436071],[-78.83266,35.426997],[-78.826415,35.420758],[-78.821953,35.412819],[-78.815707,35.407715],[-78.811246,35.406014],[-78.789832,35.397507],[-78.778232,35.398358],[-78.768417,35.395806],[-78.763956,35.392403],[-78.758603,35.385597],[-78.748788,35.375957],[-78.744326,35.365749],[-78.744326,35.362629],[-78.739865,35.359227],[-78.733619,35.358376],[-78.728266,35.354973],[-78.726481,35.35072],[-78.717558,35.342497],[-78.711313,35.339378],[-78.705959,35.33314],[-78.696144,35.322364],[-78.693467,35.313291],[-78.69436,35.310455],[-78.691683,35.302232],[-78.687221,35.296561],[-78.684545,35.285502],[-78.683652,35.272459],[-78.689006,35.263952],[-78.693467,35.2614],[-78.701498,35.258848],[-78.70239,35.253744],[-78.701498,35.248923],[-78.69436,35.2407],[-78.69436,35.233895],[-78.697929,35.228791],[-78.704174,35.22397],[-78.705959,35.220284],[-78.705959,35.214613],[-78.711313,35.207808],[-78.719343,35.202137],[-78.723804,35.197033],[-78.729158,35.180303],[-78.734511,35.175482],[-78.73808,35.174632],[-78.748788,35.174632],[-78.754141,35.178034],[-78.756818,35.182855],[-78.760387,35.18484],[-78.763956,35.184556],[-78.772879,35.179736],[-78.77734,35.178885],[-78.802323,35.178601],[-78.813031,35.174632],[-78.825522,35.169528],[-78.83266,35.164424],[-78.840691,35.1562],[-78.84426,35.150529],[-78.853183,35.141172],[-78.854075,35.136919],[-78.860321,35.126143],[-78.861213,35.121039],[-78.856752,35.113667],[-78.856752,35.108279],[-78.859428,35.100056],[-78.864782,35.093534],[-78.865674,35.086162],[-78.864782,35.081058],[-78.857644,35.072551],[-78.855859,35.068581],[-78.855859,35.054971],[-78.858536,35.049867],[-78.861213,35.038525],[-78.860321,35.032286],[-78.869243,35.030018],[-78.869243,35.027749],[-78.877274,35.03257],[-78.885304,35.033988],[-78.882627,35.039942],[-78.887981,35.042494],[-78.898688,35.040793],[-78.897796,35.042494],[-78.903149,35.042778],[-78.901365,35.045046],[-78.903149,35.047598],[-78.89958,35.050717],[-78.896904,35.055821],[-78.887981,35.055821],[-78.882627,35.053553],[-78.87995,35.058373],[-78.897796,35.064895],[-78.896904,35.068581],[-78.900473,35.069432],[-78.901365,35.072835],[-78.907611,35.074253],[-78.920102,35.08361],[-78.922779,35.081909],[-78.921887,35.074253],[-78.922779,35.071984],[-78.939732,35.078506],[-78.950439,35.085878],[-78.956685,35.079924],[-78.961147,35.076805],[-78.965608,35.081909],[-78.970069,35.083326],[-78.972746,35.076805],[-78.978992,35.071133],[-78.980776,35.062627],[-78.979884,35.060075],[-78.982561,35.057806],[-78.973638,35.056672],[-78.968285,35.058657],[-78.962931,35.058373],[-78.954901,35.050717],[-78.950439,35.048449],[-78.949547,35.043345],[-78.967392,35.042494],[-78.976315,35.044196],[-78.977207,35.041644],[-78.975423,35.035689],[-78.972746,35.033988],[-78.973638,35.029167],[-78.971854,35.026048],[-78.97453,35.020944],[-78.972746,35.01584],[-78.973638,35.01187],[-78.977207,35.011587],[-78.982561,35.009035],[-78.985238,35.017541],[-78.991484,35.018959],[-78.995053,35.022362],[-79.00576,35.018392],[-79.015575,35.010736],[-79.026282,35.009318],[-79.030743,35.010169],[-79.03342,35.005916],[-79.037881,35.005916],[-79.049481,35.006766],[-79.052157,35.00308],[-79.056619,34.999394],[-79.06108,35.004781],[-79.06108,35.007617],[-79.067326,35.01187],[-79.07268,35.014139],[-79.073572,35.018108],[-79.090525,35.041927],[-79.091417,35.047315],[-79.087848,35.0493],[-79.089633,35.053553],[-79.074464,35.064045],[-79.063757,35.072551],[-79.046804,35.078506],[-79.047696,35.069999],[-79.045912,35.065746],[-79.039666,35.067731],[-79.03342,35.065179],[-79.02539,35.06688],[-79.020928,35.07085],[-79.019144,35.08361],[-79.02182,35.08758],[-79.031635,35.090415],[-79.012898,35.101758],[-79.007544,35.106011],[-78.998622,35.105444],[-78.951332,35.114518],[-78.937055,35.123591],[-78.936163,35.12189],[-78.925456,35.126143],[-78.923671,35.124442],[-78.909395,35.131247],[-78.915641,35.144291],[-78.920995,35.147977],[-78.923671,35.146276],[-78.923671,35.154499],[-78.920995,35.157618],[-78.914749,35.157618],[-78.909395,35.161021],[-78.903149,35.161304],[-78.905826,35.170378],[-78.906718,35.177751],[-78.909395,35.186824],[-78.905826,35.190511],[-78.918318,35.203838],[-78.92724,35.212912],[-78.935271,35.218583],[-78.929025,35.222269],[-78.925456,35.221418],[-78.922779,35.223687],[-78.920995,35.220284],[-78.912964,35.225672],[-78.905826,35.227089],[-78.898688,35.231059],[-78.893334,35.228224],[-78.888873,35.230492],[-78.882627,35.229642],[-78.875489,35.233611],[-78.873705,35.236447],[-78.876381,35.241267],[-78.867459,35.24467],[-78.867459,35.249774],[-78.862105,35.277279],[-78.855859,35.303083],[-78.850506,35.32917],[-78.843368,35.360077],[-78.847829,35.362629],[-78.846937,35.364898],[-78.851398,35.368301],[-78.85229,35.364331],[-78.859428,35.360928],[-78.859428,35.359227],[-78.854075,35.360928],[-78.85229,35.359227],[-78.855859,35.354973],[-78.859428,35.354973],[-78.862105,35.351854],[-78.866567,35.356391],[-78.870136,35.349019],[-78.876381,35.35072],[-78.878166,35.348168],[-78.873705,35.3459],[-78.875489,35.339945],[-78.881735,35.338527],[-78.884412,35.334841],[-78.885304,35.329737],[-78.890658,35.328319],[-78.892442,35.324066],[-78.898688,35.324916],[-78.896904,35.326618],[-78.901365,35.329737],[-78.909395,35.326334],[-78.91921,35.325767],[-78.923671,35.327468],[-78.924564,35.332289],[-78.928133,35.331722],[-78.934379,35.334274],[-78.93884,35.339094],[-78.945086,35.337393],[-78.947763,35.334841],[-78.952224,35.335692],[-78.949547,35.338527],[-78.95847,35.341363],[-78.967392,35.349019],[-78.970961,35.356675],[-78.97453,35.358376],[-78.981669,35.359227],[-78.990591,35.36745],[-78.987914,35.370002],[-78.987914,35.373405],[-78.992376,35.378509],[-78.997729,35.376524],[-78.998622,35.379359],[-79.003975,35.379926],[-79.003975,35.38418],[-79.01379,35.388433],[-79.017359,35.387582],[-79.016467,35.391836],[-79.020928,35.393537],[-79.029851,35.393537],[-79.031635,35.398358],[-79.03342,35.400342],[-79.035204,35.396656],[-79.038774,35.40091],[-79.037881,35.405163],[-79.039666,35.408566],[-79.045019,35.407715],[-79.047696,35.405163],[-79.052157,35.405163],[-79.057511,35.408566],[-79.065541,35.406581],[-79.06911,35.406864],[-79.07268,35.411118],[-79.077141,35.41452],[-79.054834,35.436638],[-78.990591,35.500154],[-78.981669,35.510362],[-78.970961,35.521137],[-78.977207,35.528793],[-78.987914,35.538151],[-78.996837,35.542121],[-79.003975,35.542121],[-79.015575,35.543538],[-79.026282,35.549493],[-79.034312,35.559701],[-79.039666,35.564522],[-79.045912,35.567924],[-79.047696,35.571894],[-79.046804,35.576998],[-79.051265,35.582953],[-79.05305,35.595713],[-79.059296,35.599683],[-79.071787,35.609891],[-79.079818,35.614144],[-79.094986,35.619531],[-79.101232,35.624068],[-79.110155,35.622367],[-79.113724,35.624068],[-79.118185,35.628038],[-79.121754,35.627471],[-79.126215,35.624068],[-79.13603,35.623218],[-79.138707,35.628322],[-79.134246,35.635411],[-79.133354,35.639664],[-79.13603,35.641649],[-79.140492,35.641365],[-79.141384,35.643067],[-79.144953,35.643067],[-79.157445,35.647604],[-79.163691,35.659796],[-79.161014,35.665751],[-79.157445,35.66887],[-79.161014,35.672273],[-79.169936,35.676526],[-79.174398,35.675676],[-79.179751,35.670855],[-79.178859,35.667453],[-79.182428,35.66405],[-79.187782,35.662348],[-79.202058,35.649021],[-79.209196,35.649021],[-79.219011,35.654125],[-79.22258,35.660647],[-79.235072,35.660647],[-79.240425,35.661781],[-79.243102,35.656677],[-79.248456,35.654692],[-79.252917,35.654692],[-79.254701,35.659229],[-79.252917,35.660647],[-79.256486,35.66887],[-79.257378,35.676526],[-79.252025,35.678228],[-79.25024,35.686734],[-79.245779,35.690704],[-79.24221,35.699778],[-79.245779,35.705166],[-79.240425,35.713956],[-79.238641,35.721895],[-79.248456,35.727566],[-79.252917,35.738342],[-79.262732,35.736073],[-79.267193,35.737491],[-79.274331,35.742595],[-79.2779,35.750251],[-79.284146,35.751669],[-79.288607,35.765279],[-79.287715,35.7701],[-79.288607,35.77492],[-79.285038,35.774353],[-79.267193,35.780875],[-79.262732,35.783711],[-79.256486,35.785979],[-79.253809,35.788531],[-79.245779,35.790232],[-79.24221,35.793352],[-79.234179,35.794486],[-79.231503,35.797605],[-79.227934,35.798456],[-79.224364,35.796754],[-79.221688,35.799306],[-79.205627,35.806112],[-79.202058,35.802992],[-79.187782,35.802709],[-79.185105,35.79959],[-79.187782,35.797605],[-79.182428,35.795336],[-79.18332,35.802142],[-79.185997,35.809514],[-79.186889,35.816887],[-79.189566,35.820857],[-79.197597,35.818588],[-79.20295,35.820006],[-79.204735,35.825393],[-79.210981,35.831915],[-79.21455,35.833049],[-79.22258,35.832766],[-79.23061,35.833617],[-79.238641,35.843825],[-79.237748,35.850346],[-79.249348,35.8546],[-79.252025,35.857719],[-79.25024,35.865375],[-79.252025,35.87133],[-79.25024,35.877284],[-79.255594,35.884657],[-79.258271,35.894865],[-79.256486,35.901387],[-79.260947,35.90564],[-79.264516,35.907058],[-79.264516,35.926339],[-79.263624,35.951576],[-79.263624,35.969156],[-79.262732,35.997229],[-79.262732,36.017645],[-79.26184,36.049119],[-79.26184,36.059895],[-79.260055,36.091936],[-79.260055,36.127097],[-79.259163,36.137022],[-79.293961,36.137873],[-79.296638,36.131918],[-79.300207,36.128515],[-79.299315,36.125963],[-79.307345,36.120859],[-79.307345,36.116889],[-79.313591,36.112636],[-79.313591,36.107532],[-79.318052,36.106114],[-79.320729,36.103279],[-79.326083,36.104413],[-79.329652,36.098458],[-79.332328,36.099309],[-79.338574,36.094205],[-79.332328,36.089101],[-79.337682,36.082863],[-79.342143,36.08343],[-79.342143,36.085698],[-79.347497,36.085982],[-79.349281,36.08428],[-79.349281,36.078609],[-79.359989,36.075207],[-79.361773,36.076624],[-79.376942,36.077475],[-79.376049,36.081728],[-79.379618,36.085982],[-79.385864,36.082579],[-79.386757,36.076624],[-79.396571,36.069252],[-79.409063,36.069252],[-79.413524,36.073505],[-79.414417,36.08428],[-79.417986,36.085982],[-79.417986,36.077759],[-79.426016,36.072655],[-79.426016,36.067551],[-79.43137,36.068118],[-79.440292,36.073222],[-79.460814,36.081728],[-79.451,36.085131],[-79.435831,36.094205],[-79.441185,36.10016],[-79.452784,36.103279],[-79.473306,36.11292],[-79.470629,36.125112],[-79.466168,36.133336],[-79.460814,36.132768],[-79.458138,36.137589],[-79.454569,36.135037],[-79.447431,36.136738],[-79.442077,36.135321],[-79.436723,36.137873],[-79.433154,36.141275],[-79.429585,36.137589],[-79.421555,36.132485],[-79.415309,36.130216],[-79.409955,36.124262],[-79.402817,36.119441],[-79.397464,36.112069],[-79.385864,36.105264],[-79.375157,36.110084],[-79.376942,36.113487],[-79.375157,36.116889],[-79.37248,36.116889],[-79.370696,36.120008],[-79.367127,36.120292],[-79.367127,36.132768],[-79.366234,36.170198],[-79.366234,36.197986],[-79.365342,36.219537],[-79.365342,36.246475],[-79.260947,36.243923],[-79.237748,36.243639],[-79.22258,36.242788],[-79.191351,36.242788],[-79.192243,36.237117],[-79.199381,36.224641],[-79.197597,36.210179],[-79.200273,36.20621],[-79.203842,36.195151],[-79.20295,36.18948],[-79.205627,36.183809],[-79.197597,36.177003],[-79.192243,36.173601],[-79.195812,36.169347],[-79.200273,36.152901],[-79.205627,36.149215],[-79.210981,36.147513],[-79.203842,36.141275],[-79.197597,36.137589],[-79.189566,36.129933],[-79.190458,36.122844],[-79.19492,36.115755],[-79.199381,36.115755],[-79.201166,36.112636],[-79.201166,36.105831]]]}},{"type":"Feature","properties":{"district":5},"geometry":{"type":"Polygon","coordinates":[[[-80.092538,35.967455],[-80.094322,35.976529],[-80.094322,35.981633],[-80.088969,35.987304],[-80.087184,35.992408],[-80.096107,35.99893],[-80.105029,35.996661],[-80.115736,35.995811],[-80.120198,35.996661],[-80.119305,36.002333],[-80.121982,36.009138],[-80.12912,36.009138],[-80.127336,36.01169],[-80.130013,36.018212],[-80.130013,36.022182],[-80.132689,36.023883],[-80.149642,36.026718],[-80.162134,36.026718],[-80.182656,36.040046],[-80.202286,36.048269],[-80.209424,36.055641],[-80.213886,36.058477],[-80.202286,36.057626],[-80.194256,36.059895],[-80.200502,36.065282],[-80.194256,36.072371],[-80.183549,36.074356],[-80.182656,36.078326],[-80.190687,36.08343],[-80.193363,36.091936],[-80.189794,36.090235],[-80.179087,36.097324],[-80.175518,36.097608],[-80.170165,36.10101],[-80.165703,36.10016],[-80.166595,36.102712],[-80.158565,36.105264],[-80.159457,36.109233],[-80.171057,36.112636],[-80.180872,36.112636],[-80.185333,36.115188],[-80.188902,36.11377],[-80.19604,36.107532],[-80.195148,36.112069],[-80.19604,36.11774],[-80.198717,36.125112],[-80.202286,36.129366],[-80.19604,36.136171],[-80.194256,36.146946],[-80.199609,36.145245],[-80.203178,36.146096],[-80.202286,36.1512],[-80.204963,36.150916],[-80.206747,36.157154],[-80.21567,36.151767],[-80.226377,36.148364],[-80.229946,36.140992],[-80.233515,36.140992],[-80.239761,36.13844],[-80.241546,36.145529],[-80.244222,36.147797],[-80.244222,36.150916],[-80.258499,36.165094],[-80.265637,36.173601],[-80.269206,36.173601],[-80.278129,36.171049],[-80.278129,36.166228],[-80.264745,36.156304],[-80.264745,36.148648],[-80.256714,36.144394],[-80.261176,36.142126],[-80.27099,36.139574],[-80.272775,36.137873],[-80.263852,36.131918],[-80.257606,36.121143],[-80.264745,36.115755],[-80.267421,36.109233],[-80.262068,36.102428],[-80.255822,36.106114],[-80.249576,36.10101],[-80.254037,36.099309],[-80.254037,36.097324],[-80.248684,36.097608],[-80.247792,36.092503],[-80.244222,36.093354],[-80.238869,36.092503],[-80.237977,36.086549],[-80.241546,36.082579],[-80.2353,36.075207],[-80.230839,36.073505],[-80.226377,36.069252],[-80.222808,36.069252],[-80.2237,36.06273],[-80.227269,36.063297],[-80.226377,36.053373],[-80.232623,36.053089],[-80.239761,36.056775],[-80.240653,36.054223],[-80.239761,36.047418],[-80.233515,36.047418],[-80.234408,36.040613],[-80.230839,36.036643],[-80.233515,36.030688],[-80.232623,36.02842],[-80.252253,36.016794],[-80.261176,36.015943],[-80.261176,36.007437],[-80.266529,35.996661],[-80.233515,35.996661],[-80.213886,35.996661],[-80.213886,36.024166],[-80.208532,36.023316],[-80.199609,36.026435],[-80.188902,36.022465],[-80.177303,36.008287],[-80.171057,35.999213],[-80.170165,35.99496],[-80.163026,35.984185],[-80.149642,35.972276],[-80.149642,35.964903],[-80.145181,35.9615],[-80.141612,35.955546],[-80.132689,35.950725],[-80.133582,35.94874],[-80.141612,35.947323],[-80.146073,35.945338],[-80.145181,35.939667],[-80.149642,35.934563],[-80.154996,35.933145],[-80.162134,35.926339],[-80.159457,35.924071],[-80.159457,35.920385],[-80.166595,35.911027],[-80.169272,35.903939],[-80.175518,35.899685],[-80.182656,35.891462],[-80.190687,35.886358],[-80.193363,35.879553],[-80.191579,35.87615],[-80.195148,35.874449],[-80.194256,35.870479],[-80.199609,35.869345],[-80.204071,35.870479],[-80.204963,35.863957],[-80.209424,35.8546],[-80.218347,35.855167],[-80.217455,35.859704],[-80.221024,35.866226],[-80.228162,35.867076],[-80.241546,35.865375],[-80.250468,35.867076],[-80.252253,35.856301],[-80.25493,35.849496],[-80.254037,35.844675],[-80.249576,35.844675],[-80.249576,35.839571],[-80.254037,35.839571],[-80.253145,35.835318],[-80.262068,35.8339],[-80.266529,35.823692],[-80.280805,35.827662],[-80.296866,35.827662],[-80.30222,35.832199],[-80.304896,35.828513],[-80.311142,35.823692],[-80.312035,35.82114],[-80.316496,35.819439],[-80.320957,35.822558],[-80.32988,35.822841],[-80.331664,35.815469],[-80.331664,35.80838],[-80.336126,35.799306],[-80.328095,35.796754],[-80.334341,35.788531],[-80.32988,35.779457],[-80.328988,35.774353],[-80.325419,35.769533],[-80.345048,35.768399],[-80.374493,35.773503],[-80.400369,35.78683],[-80.409291,35.796187],[-80.410184,35.798456],[-80.419999,35.809231],[-80.428029,35.809514],[-80.436952,35.814618],[-80.442305,35.814618],[-80.446766,35.81717],[-80.446766,35.819439],[-80.453012,35.821991],[-80.457474,35.818588],[-80.467289,35.813768],[-80.464612,35.803843],[-80.466396,35.801008],[-80.47175,35.799306],[-80.476211,35.795053],[-80.477103,35.789098],[-80.473534,35.784278],[-80.46015,35.77492],[-80.455689,35.772652],[-80.45212,35.76613],[-80.453905,35.758191],[-80.458366,35.752519],[-80.46015,35.743446],[-80.455689,35.734939],[-80.45212,35.734372],[-80.444982,35.734939],[-80.428921,35.728984],[-80.423568,35.725298],[-80.42446,35.717642],[-80.428921,35.714239],[-80.431598,35.709135],[-80.435167,35.707434],[-80.442305,35.701763],[-80.444982,35.700912],[-80.453905,35.6856],[-80.449443,35.68078],[-80.456581,35.678228],[-80.469965,35.667453],[-80.480673,35.676526],[-80.518148,35.686734],[-80.517255,35.679929],[-80.513686,35.68163],[-80.509225,35.679362],[-80.501195,35.672557],[-80.508333,35.668303],[-80.50744,35.665468],[-80.523501,35.66405],[-80.535993,35.660647],[-80.555623,35.661498],[-80.558299,35.660647],[-80.567222,35.655827],[-80.576145,35.652424],[-80.588636,35.653842],[-80.601128,35.649872],[-80.610051,35.650439],[-80.614512,35.648454],[-80.634142,35.64732],[-80.637711,35.646469],[-80.644849,35.649021],[-80.651987,35.648171],[-80.661802,35.649021],[-80.66894,35.644768],[-80.669833,35.635694],[-80.676078,35.632575],[-80.685893,35.624068],[-80.689462,35.623218],[-80.710877,35.622934],[-80.738537,35.617263],[-80.74746,35.616696],[-80.754598,35.612159],[-80.75549,35.608756],[-80.759059,35.62577],[-80.772443,35.674825],[-80.748352,35.739192],[-80.759951,35.73182],[-80.762628,35.741177],[-80.762628,35.74855],[-80.751921,35.749117],[-80.765305,35.751952],[-80.765305,35.749117],[-80.789396,35.751669],[-80.789396,35.755071],[-80.792965,35.752519],[-80.804564,35.754221],[-80.806349,35.753654],[-80.818841,35.756489],[-80.825979,35.759325],[-80.83044,35.746565],[-80.827763,35.743446],[-80.829548,35.739476],[-80.841147,35.736924],[-80.841147,35.733521],[-80.83847,35.733521],[-80.84204,35.728417],[-80.850962,35.718493],[-80.860777,35.729268],[-80.867023,35.724447],[-80.871484,35.722746],[-80.917882,35.726432],[-80.924128,35.726432],[-80.933943,35.728984],[-80.94465,35.734939],[-80.948219,35.795336],[-80.939296,35.80441],[-80.909852,35.821707],[-80.886653,35.816887],[-80.882191,35.816887],[-80.880407,35.819439],[-80.876838,35.815185],[-80.870592,35.815185],[-80.8697,35.820289],[-80.865238,35.820289],[-80.868807,35.815469],[-80.846501,35.816887],[-80.844716,35.819155],[-80.850962,35.829363],[-80.850962,35.834467],[-80.845609,35.834467],[-80.844716,35.830497],[-80.839363,35.830214],[-80.839363,35.823692],[-80.84204,35.822841],[-80.83847,35.820289],[-80.814379,35.882955],[-80.812595,35.885507],[-80.806349,35.886925],[-80.795642,35.884657],[-80.795642,35.88891],[-80.792965,35.891178],[-80.79118,35.895432],[-80.795642,35.895715],[-80.796534,35.899685],[-80.806349,35.906207],[-80.808133,35.913012],[-80.817948,35.913863],[-80.818841,35.91046],[-80.824194,35.914714],[-80.824194,35.918967],[-80.817948,35.919818],[-80.814379,35.922937],[-80.809026,35.924638],[-80.817948,35.930309],[-80.818841,35.936264],[-80.823302,35.936547],[-80.826871,35.941935],[-80.824194,35.949875],[-80.820625,35.949591],[-80.817948,35.952994],[-80.820625,35.956396],[-80.829548,35.958098],[-80.834901,35.965754],[-80.843824,35.964903],[-80.847393,35.965754],[-80.845609,35.969156],[-80.903606,35.969724],[-80.907175,35.970007],[-80.957142,35.970574],[-80.990155,35.971425],[-81.005324,35.971425],[-81.006216,35.958098],[-81.0196,35.919818],[-81.029415,35.891462],[-81.041014,35.85942],[-81.041014,35.858002],[-81.052614,35.844675],[-81.061537,35.835318],[-81.064213,35.826244],[-81.070459,35.818304],[-81.075813,35.814618],[-81.079382,35.80838],[-81.079382,35.802709],[-81.08652,35.796754],[-81.093658,35.793635],[-81.101688,35.78768],[-81.102581,35.784278],[-81.107042,35.781159],[-81.107042,35.778607],[-81.110611,35.776622],[-81.112396,35.779174],[-81.121318,35.784278],[-81.123995,35.784561],[-81.128456,35.789382],[-81.129349,35.800157],[-81.132918,35.805261],[-81.138271,35.80838],[-81.140948,35.812066],[-81.142733,35.827095],[-81.149871,35.828796],[-81.156117,35.827945],[-81.162362,35.824543],[-81.170393,35.825393],[-81.176639,35.822841],[-81.190915,35.821991],[-81.196268,35.82114],[-81.201622,35.823409],[-81.205191,35.822841],[-81.21679,35.816887],[-81.223929,35.810365],[-81.226605,35.809514],[-81.232851,35.812066],[-81.240882,35.812633],[-81.24802,35.815469],[-81.251589,35.814335],[-81.255158,35.80838],[-81.268542,35.80441],[-81.273003,35.80441],[-81.273003,35.801858],[-81.280141,35.801008],[-81.281926,35.797888],[-81.288172,35.795336],[-81.293525,35.790232],[-81.294417,35.780024],[-81.297094,35.772652],[-81.30334,35.766981],[-81.306909,35.759325],[-81.302448,35.745147],[-81.302448,35.742595],[-81.298879,35.743162],[-81.297987,35.739192],[-81.300663,35.732387],[-81.306909,35.73579],[-81.307801,35.733521],[-81.312263,35.73267],[-81.314047,35.725865],[-81.318509,35.722462],[-81.316724,35.721045],[-81.322078,35.718493],[-81.324754,35.712538],[-81.326539,35.704031],[-81.323862,35.704315],[-81.318509,35.701479],[-81.321185,35.697509],[-81.317616,35.689003],[-81.320293,35.684182],[-81.330108,35.6856],[-81.329216,35.690137],[-81.333677,35.689286],[-81.339031,35.692689],[-81.344384,35.692405],[-81.346169,35.700629],[-81.352415,35.700061],[-81.355091,35.705733],[-81.352415,35.705733],[-81.354199,35.711687],[-81.348846,35.709986],[-81.351522,35.71509],[-81.352415,35.721612],[-81.357768,35.722462],[-81.371152,35.722462],[-81.37026,35.729268],[-81.371152,35.733521],[-81.37026,35.742028],[-81.364014,35.740894],[-81.360445,35.743446],[-81.355984,35.737491],[-81.355091,35.734372],[-81.358661,35.734372],[-81.359553,35.730118],[-81.340815,35.73182],[-81.339031,35.744863],[-81.336354,35.744863],[-81.335462,35.7494],[-81.337246,35.753654],[-81.333677,35.762727],[-81.333677,35.765847],[-81.331,35.768682],[-81.328324,35.776905],[-81.314047,35.789382],[-81.309586,35.791083],[-81.304232,35.802142],[-81.308694,35.802142],[-81.31494,35.796754],[-81.335462,35.796187],[-81.332785,35.801008],[-81.336354,35.80356],[-81.336354,35.807529],[-81.339031,35.812633],[-81.336354,35.813768],[-81.340815,35.816887],[-81.338138,35.817737],[-81.339923,35.823409],[-81.343492,35.821991],[-81.344384,35.825393],[-81.335462,35.872747],[-81.334569,35.879553],[-81.343492,35.922937],[-81.329216,35.996661],[-81.345277,36.022465],[-81.365799,36.03239],[-81.369368,36.040046],[-81.374721,36.03721],[-81.377398,36.040896],[-81.381859,36.041463],[-81.380967,36.043448],[-81.38989,36.043165],[-81.396136,36.040896],[-81.39792,36.042598],[-81.390782,36.049403],[-81.39792,36.056775],[-81.400597,36.062447],[-81.406843,36.0667],[-81.407735,36.07067],[-81.414873,36.072655],[-81.416658,36.070953],[-81.424688,36.077759],[-81.433611,36.075207],[-81.440749,36.074923],[-81.44521,36.072371],[-81.44521,36.075207],[-81.447887,36.077759],[-81.447887,36.08343],[-81.450564,36.08428],[-81.455025,36.090235],[-81.457702,36.091653],[-81.46484,36.089384],[-81.469301,36.084847],[-81.469301,36.086832],[-81.478224,36.092503],[-81.477332,36.09619],[-81.48447,36.095906],[-81.489823,36.098175],[-81.495177,36.097608],[-81.496069,36.10016],[-81.499638,36.10016],[-81.510345,36.096757],[-81.516591,36.097324],[-81.521945,36.102712],[-81.546036,36.117456],[-81.607602,36.11774],[-81.661138,36.118307],[-81.675414,36.12256],[-81.69326,36.121143],[-81.811931,36.111218],[-81.812823,36.115755],[-81.822638,36.144394],[-81.825315,36.156304],[-81.829776,36.16878],[-81.836022,36.168497],[-81.836022,36.170198],[-81.856544,36.193733],[-81.885989,36.18948],[-81.888665,36.196285],[-81.902049,36.205642],[-81.909188,36.216418],[-81.907403,36.217835],[-81.907403,36.22379],[-81.910972,36.229461],[-81.907403,36.236267],[-81.908295,36.238819],[-81.902049,36.239386],[-81.897588,36.242788],[-81.900265,36.248176],[-81.903834,36.249027],[-81.902942,36.252996],[-81.897588,36.253847],[-81.896696,36.256116],[-81.897588,36.26207],[-81.894019,36.264055],[-81.896696,36.269159],[-81.897588,36.277949],[-81.900265,36.280785],[-81.907403,36.277949],[-81.912757,36.281352],[-81.91811,36.287023],[-81.908295,36.302052],[-81.897588,36.307439],[-81.887773,36.308857],[-81.885096,36.31226],[-81.877066,36.315662],[-81.876174,36.318214],[-81.866359,36.326437],[-81.865467,36.328989],[-81.853867,36.336362],[-81.834237,36.347421],[-81.82353,36.348838],[-81.810146,36.351674],[-81.808362,36.354226],[-81.797655,36.358196],[-81.793193,36.361598],[-81.793193,36.358196],[-81.790516,36.355077],[-81.791409,36.352525],[-81.789624,36.348271],[-81.786947,36.347421],[-81.779809,36.348271],[-81.774456,36.343451],[-81.765533,36.338347],[-81.761964,36.340048],[-81.754826,36.336646],[-81.744119,36.337496],[-81.736088,36.3426],[-81.72895,36.341466],[-81.721812,36.338347],[-81.720028,36.336362],[-81.708428,36.334944],[-81.704859,36.341466],[-81.70932,36.346286],[-81.718243,36.347421],[-81.722704,36.350823],[-81.725381,36.357345],[-81.723597,36.358479],[-81.724489,36.363016],[-81.728058,36.365568],[-81.727166,36.36812],[-81.734304,36.379179],[-81.729842,36.385701],[-81.731627,36.386835],[-81.729842,36.391088],[-81.732519,36.394775],[-81.739657,36.395625],[-81.738765,36.401013],[-81.741442,36.403281],[-81.74055,36.408385],[-81.742334,36.410937],[-81.737873,36.413489],[-81.734304,36.412639],[-81.733411,36.414907],[-81.729842,36.415758],[-81.728058,36.420011],[-81.721812,36.422563],[-81.718243,36.429368],[-81.721812,36.433622],[-81.715566,36.436741],[-81.715566,36.441561],[-81.718243,36.445248],[-81.714674,36.447516],[-81.716458,36.451202],[-81.716458,36.457441],[-81.710213,36.459425],[-81.708428,36.461977],[-81.698613,36.462828],[-81.695044,36.467081],[-81.695044,36.474454],[-81.697721,36.489482],[-81.695936,36.491751],[-81.697721,36.496004],[-81.700398,36.497706],[-81.696829,36.506212],[-81.703074,36.521241],[-81.708428,36.523793],[-81.70932,36.535419],[-81.699505,36.536836],[-81.697721,36.544492],[-81.690583,36.551865],[-81.691475,36.555551],[-81.689691,36.561222],[-81.691475,36.563491],[-81.689691,36.568595],[-81.678983,36.568878],[-81.677199,36.571997],[-81.678983,36.576251],[-81.678091,36.583056],[-81.679876,36.585608],[-81.677199,36.587876],[-81.652215,36.587309],[-81.621878,36.587309],[-81.601356,36.586459],[-81.580834,36.585324],[-81.52016,36.580504],[-81.496961,36.579653],[-81.490716,36.578803],[-81.476439,36.58022],[-81.443426,36.576534],[-81.402381,36.5754],[-81.374721,36.574549],[-81.372044,36.573699],[-81.364014,36.574549],[-81.338138,36.574549],[-81.325647,36.5754],[-81.291741,36.574549],[-81.288172,36.574833],[-81.253373,36.572848],[-81.1695,36.57058],[-81.163255,36.570296],[-81.113288,36.568595],[-81.097227,36.567177],[-81.040122,36.566326],[-81.021385,36.565475],[-81.009785,36.563774],[-80.966957,36.562923],[-80.961603,36.563491],[-80.932158,36.562073],[-80.902713,36.561789],[-80.908067,36.556969],[-80.908959,36.552999],[-80.918774,36.540523],[-80.921451,36.525494],[-80.914313,36.52039],[-80.919667,36.505929],[-80.926805,36.50281],[-80.927697,36.500258],[-80.947327,36.478424],[-80.963387,36.459142],[-80.974987,36.45262],[-80.954465,36.426816],[-80.948219,36.41916],[-80.966957,36.40158],[-80.945542,36.385984],[-80.940189,36.383432],[-80.93305,36.371807],[-80.931266,36.36727],[-80.924128,36.364718],[-80.920559,36.36727],[-80.916097,36.367553],[-80.911636,36.362449],[-80.906283,36.361598],[-80.904498,36.356494],[-80.900037,36.354226],[-80.900037,36.347421],[-80.892899,36.339765],[-80.888437,36.338914],[-80.883084,36.334944],[-80.876838,36.333243],[-80.875946,36.32984],[-80.871484,36.328989],[-80.868807,36.326437],[-80.873269,36.236267],[-80.867023,36.238819],[-80.849178,36.241087],[-80.824194,36.249877],[-80.817948,36.250444],[-80.808133,36.253847],[-80.80278,36.252713],[-80.797426,36.247892],[-80.785827,36.252146],[-80.779581,36.256399],[-80.781366,36.268025],[-80.778689,36.272845],[-80.770658,36.27483],[-80.759951,36.269159],[-80.753705,36.262921],[-80.750136,36.264055],[-80.74389,36.270577],[-80.742106,36.277099],[-80.737645,36.279651],[-80.733183,36.277099],[-80.73586,36.268876],[-80.731399,36.266607],[-80.721584,36.269726],[-80.712661,36.266324],[-80.701954,36.265473],[-80.694816,36.265756],[-80.685893,36.268308],[-80.684109,36.268025],[-80.678755,36.262921],[-80.677863,36.257817],[-80.674294,36.252146],[-80.668048,36.250444],[-80.65288,36.252146],[-80.647526,36.256966],[-80.647526,36.262921],[-80.643957,36.271144],[-80.640388,36.273129],[-80.632357,36.272278],[-80.628788,36.273129],[-80.627004,36.277382],[-80.629681,36.279084],[-80.631465,36.284755],[-80.629681,36.287307],[-80.625219,36.286456],[-80.614512,36.2788],[-80.608266,36.277099],[-80.600236,36.272278],[-80.592206,36.269726],[-80.580606,36.277099],[-80.57436,36.279651],[-80.560084,36.283053],[-80.553838,36.28277],[-80.548485,36.285322],[-80.540454,36.282203],[-80.536885,36.279084],[-80.535101,36.272845],[-80.537777,36.262354],[-80.536885,36.260369],[-80.531532,36.2581],[-80.510117,36.2581],[-80.506548,36.259802],[-80.502087,36.258668],[-80.482457,36.255548],[-80.476211,36.260652],[-80.469965,36.260369],[-80.464612,36.2581],[-80.461935,36.253847],[-80.462827,36.248743],[-80.46015,36.245624],[-80.453012,36.241371],[-80.453012,36.261503],[-80.281698,36.259802],[-80.212993,36.258951],[-80.172841,36.258951],[-80.089861,36.257817],[-80.035433,36.25725],[-80.036325,36.243072],[-80.036325,36.226909],[-80.038109,36.176153],[-80.037217,36.173601],[-80.037217,36.161124],[-80.038109,36.159423],[-80.039002,36.129933],[-80.041679,36.07067],[-80.043463,36.007437],[-80.044355,35.984185],[-80.045248,35.973126],[-80.045248,35.956396],[-80.04614,35.945338],[-80.04614,35.939667],[-80.048817,35.940517],[-80.056847,35.938816],[-80.060416,35.939667],[-80.060416,35.945621],[-80.070231,35.94874],[-80.074692,35.958948],[-80.079154,35.964903],[-80.085399,35.969724],[-80.092538,35.967455]]]}},{"type":"Feature","properties":{"district":6},"geometry":{"type":"Polygon","coordinates":[[[-78.511445,36.454321],[-78.511445,36.430786],[-78.536429,36.430219],[-78.571227,36.429936],[-78.625655,36.430219],[-78.656884,36.430786],[-78.659561,36.356494],[-78.660453,36.308006],[-78.708636,36.30829],[-78.750572,36.308857],[-78.750572,36.309141],[-78.801431,36.309708],[-78.802323,36.249877],[-78.803216,36.241087],[-78.803216,36.226342],[-78.804108,36.212164],[-78.804108,36.182107],[-78.805,36.145245],[-78.805,36.111785],[-78.805893,36.091936],[-78.811246,36.094488],[-78.820169,36.095055],[-78.82463,36.091653],[-78.821953,36.088534],[-78.827307,36.087683],[-78.830876,36.084847],[-78.834445,36.085131],[-78.843368,36.080878],[-78.837122,36.079176],[-78.83623,36.075774],[-78.840691,36.075774],[-78.845152,36.07067],[-78.85229,36.068401],[-78.856752,36.071804],[-78.865674,36.072655],[-78.867459,36.068401],[-78.870136,36.066416],[-78.871028,36.068401],[-78.868351,36.074356],[-78.873705,36.075207],[-78.876381,36.07152],[-78.881735,36.076624],[-78.877274,36.076624],[-78.879058,36.079176],[-78.887981,36.076057],[-78.892442,36.072655],[-78.896904,36.073505],[-78.895119,36.079176],[-78.896011,36.081161],[-78.91118,36.076908],[-78.909395,36.071804],[-78.914749,36.068401],[-78.921887,36.065849],[-78.921887,36.063297],[-78.929025,36.057343],[-78.937055,36.056775],[-78.935271,36.051104],[-78.93884,36.050821],[-78.942409,36.045717],[-78.943301,36.041747],[-78.947763,36.038344],[-78.952224,36.038911],[-78.954901,36.035792],[-78.952224,36.030972],[-78.954901,36.025584],[-78.970961,36.035792],[-78.980776,36.038061],[-78.985238,36.038061],[-78.987022,36.029838],[-79.04145,36.030121],[-79.071787,36.030688],[-79.071787,36.055074],[-79.084279,36.059044],[-79.098555,36.055641],[-79.097663,36.060745],[-79.099447,36.072371],[-79.090525,36.070103],[-79.08874,36.065849],[-79.085171,36.064999],[-79.084279,36.070103],[-79.079818,36.072655],[-79.082494,36.076908],[-79.084279,36.074923],[-79.087848,36.076057],[-79.091417,36.074072],[-79.093202,36.077759],[-79.093202,36.082863],[-79.095878,36.085698],[-79.103017,36.087683],[-79.116401,36.12256],[-79.121754,36.136171],[-79.130677,36.136738],[-79.132461,36.11774],[-79.135138,36.064148],[-79.13603,36.057626],[-79.137815,36.03239],[-79.211873,36.034091],[-79.220795,36.047702],[-79.221688,36.050821],[-79.218119,36.054223],[-79.205627,36.058477],[-79.20295,36.061596],[-79.197597,36.061879],[-79.194027,36.069819],[-79.18332,36.071804],[-79.171721,36.072655],[-79.180644,36.073505],[-79.180644,36.077759],[-79.18332,36.077475],[-79.18332,36.080878],[-79.192243,36.081728],[-79.193135,36.094205],[-79.196704,36.099309],[-79.196704,36.105264],[-79.201166,36.105831],[-79.201166,36.112636],[-79.199381,36.115755],[-79.19492,36.115755],[-79.190458,36.122844],[-79.189566,36.129933],[-79.197597,36.137589],[-79.203842,36.141275],[-79.210981,36.147513],[-79.205627,36.149215],[-79.200273,36.152901],[-79.195812,36.169347],[-79.192243,36.173601],[-79.197597,36.177003],[-79.205627,36.183809],[-79.20295,36.18948],[-79.203842,36.195151],[-79.200273,36.20621],[-79.197597,36.210179],[-79.199381,36.224641],[-79.192243,36.237117],[-79.191351,36.242788],[-79.22258,36.242788],[-79.237748,36.243639],[-79.260947,36.243923],[-79.365342,36.246475],[-79.365342,36.219537],[-79.366234,36.197986],[-79.366234,36.170198],[-79.367127,36.132768],[-79.367127,36.120292],[-79.370696,36.120008],[-79.37248,36.116889],[-79.375157,36.116889],[-79.376942,36.113487],[-79.375157,36.110084],[-79.385864,36.105264],[-79.397464,36.112069],[-79.402817,36.119441],[-79.409955,36.124262],[-79.415309,36.130216],[-79.421555,36.132485],[-79.429585,36.137589],[-79.433154,36.141275],[-79.436723,36.137873],[-79.442077,36.135321],[-79.447431,36.136738],[-79.454569,36.135037],[-79.458138,36.137589],[-79.460814,36.132768],[-79.466168,36.133336],[-79.470629,36.125112],[-79.473306,36.11292],[-79.452784,36.103279],[-79.441185,36.10016],[-79.435831,36.094205],[-79.451,36.085131],[-79.460814,36.081728],[-79.440292,36.073222],[-79.43137,36.068118],[-79.426016,36.067551],[-79.426016,36.072655],[-79.417986,36.077759],[-79.417986,36.085982],[-79.414417,36.08428],[-79.413524,36.073505],[-79.409063,36.069252],[-79.396571,36.069252],[-79.386757,36.076624],[-79.385864,36.082579],[-79.379618,36.085982],[-79.376049,36.081728],[-79.376942,36.077475],[-79.361773,36.076624],[-79.359989,36.075207],[-79.349281,36.078609],[-79.349281,36.08428],[-79.347497,36.085982],[-79.342143,36.085698],[-79.342143,36.08343],[-79.337682,36.082863],[-79.332328,36.089101],[-79.338574,36.094205],[-79.332328,36.099309],[-79.329652,36.098458],[-79.326083,36.104413],[-79.320729,36.103279],[-79.318052,36.106114],[-79.313591,36.107532],[-79.313591,36.112636],[-79.307345,36.116889],[-79.307345,36.120859],[-79.299315,36.125963],[-79.300207,36.128515],[-79.296638,36.131918],[-79.293961,36.137873],[-79.259163,36.137022],[-79.260055,36.127097],[-79.260055,36.091936],[-79.26184,36.059895],[-79.26184,36.049119],[-79.262732,36.017645],[-79.262732,35.997229],[-79.263624,35.969156],[-79.263624,35.951576],[-79.264516,35.926339],[-79.264516,35.907058],[-79.260947,35.90564],[-79.256486,35.901387],[-79.258271,35.894865],[-79.255594,35.884657],[-79.25024,35.877284],[-79.252025,35.87133],[-79.25024,35.865375],[-79.252025,35.857719],[-79.249348,35.8546],[-79.237748,35.850346],[-79.238641,35.843825],[-79.330544,35.843825],[-79.359096,35.843541],[-79.370696,35.843825],[-79.405494,35.843541],[-79.433154,35.843541],[-79.432262,35.870195],[-79.432262,35.930593],[-79.433154,35.940517],[-79.432262,35.960366],[-79.487582,35.964052],[-79.540226,35.966604],[-79.541118,35.951576],[-79.541118,35.917833],[-79.542011,35.90961],[-79.541118,35.907341],[-79.542011,35.899685],[-79.567886,35.900536],[-79.616068,35.902804],[-79.704403,35.906207],[-79.745447,35.908192],[-79.840027,35.912162],[-79.897132,35.914714],[-79.997065,35.918683],[-80.021156,35.919534],[-80.005096,35.928891],[-79.976543,35.942219],[-79.968513,35.94874],[-79.956913,35.950725],[-79.947098,35.955829],[-79.950668,35.958381],[-79.948883,35.964052],[-79.948883,35.970007],[-79.955129,35.970007],[-79.954237,35.978797],[-79.949775,35.982484],[-79.947098,35.986737],[-79.958698,35.990707],[-79.956021,35.999213],[-79.950668,35.998363],[-79.947098,35.996378],[-79.946206,36.000631],[-79.942637,36.003183],[-79.940853,36.012541],[-79.938176,36.013958],[-79.941745,36.01651],[-79.939068,36.024166],[-79.937284,36.024166],[-79.938176,36.029838],[-79.935499,36.034658],[-79.937284,36.041747],[-79.935499,36.046],[-79.929253,36.051671],[-79.929253,36.05394],[-79.924792,36.055641],[-79.921223,36.059044],[-79.916762,36.065849],[-79.908731,36.062447],[-79.905162,36.0667],[-79.900701,36.064431],[-79.899808,36.0667],[-79.89267,36.0667],[-79.895347,36.072655],[-79.894455,36.076057],[-79.885532,36.067551],[-79.885532,36.064999],[-79.879286,36.063297],[-79.880179,36.059895],[-79.885532,36.059044],[-79.891778,36.056492],[-79.873041,36.04997],[-79.875717,36.046851],[-79.880179,36.036359],[-79.88464,36.030121],[-79.879286,36.030121],[-79.879286,36.032673],[-79.868579,36.029838],[-79.865902,36.026718],[-79.866795,36.022465],[-79.865902,36.015093],[-79.870364,36.015093],[-79.875717,36.013391],[-79.87661,36.002616],[-79.873041,36.001765],[-79.875717,35.997512],[-79.870364,35.993259],[-79.877502,35.989289],[-79.877502,35.976529],[-79.878394,35.970574],[-79.856088,35.981349],[-79.850734,35.985036],[-79.849842,35.992125],[-79.843596,35.993826],[-79.831104,35.993826],[-79.822182,35.99496],[-79.820397,35.992408],[-79.816828,35.995811],[-79.810582,35.997512],[-79.804336,36.003183],[-79.801659,36.003183],[-79.801659,36.000064],[-79.792737,36.000631],[-79.793629,36.006586],[-79.791845,36.009138],[-79.785599,36.008854],[-79.780245,36.000631],[-79.780245,35.990707],[-79.778461,35.990707],[-79.760615,35.994677],[-79.748124,35.99496],[-79.743662,35.989005],[-79.740093,35.989005],[-79.74277,35.992408],[-79.735632,35.996661],[-79.73474,36.002333],[-79.728494,36.008004],[-79.727601,36.010556],[-79.722248,36.012541],[-79.714218,36.019062],[-79.712433,36.024734],[-79.70351,36.026435],[-79.70351,36.030121],[-79.699941,36.034658],[-79.69548,36.034942],[-79.691911,36.040046],[-79.692803,36.044015],[-79.694588,36.044299],[-79.699049,36.047702],[-79.701726,36.058193],[-79.709756,36.057343],[-79.740093,36.050821],[-79.752585,36.046567],[-79.752585,36.048552],[-79.748124,36.051671],[-79.748124,36.059327],[-79.7508,36.059895],[-79.749908,36.062447],[-79.743662,36.063297],[-79.737416,36.061879],[-79.739201,36.065282],[-79.737416,36.068968],[-79.728494,36.069819],[-79.732063,36.075207],[-79.730278,36.078326],[-79.727601,36.078326],[-79.729386,36.085131],[-79.725817,36.087399],[-79.717787,36.086549],[-79.716002,36.087683],[-79.716002,36.10016],[-79.716894,36.102712],[-79.714218,36.114337],[-79.712433,36.116039],[-79.712433,36.122844],[-79.71511,36.120859],[-79.717787,36.121993],[-79.722248,36.116606],[-79.726709,36.116606],[-79.728494,36.11377],[-79.733847,36.110935],[-79.741878,36.109233],[-79.745447,36.110935],[-79.746339,36.124262],[-79.74277,36.123695],[-79.74277,36.130216],[-79.745447,36.130216],[-79.730278,36.1512],[-79.717787,36.152901],[-79.711541,36.152617],[-79.699049,36.154319],[-79.699941,36.17757],[-79.70351,36.176153],[-79.708864,36.181257],[-79.714218,36.180406],[-79.716002,36.183809],[-79.719571,36.184659],[-79.720463,36.18948],[-79.726709,36.192882],[-79.732063,36.190898],[-79.732955,36.188629],[-79.744555,36.190047],[-79.747231,36.188629],[-79.755262,36.179555],[-79.766861,36.171899],[-79.773107,36.16878],[-79.778461,36.165094],[-79.784706,36.166795],[-79.784706,36.152901],[-79.787383,36.150065],[-79.792737,36.150349],[-79.794521,36.143544],[-79.803444,36.144394],[-79.804336,36.140141],[-79.812367,36.136171],[-79.815043,36.132485],[-79.813259,36.124262],[-79.801659,36.130216],[-79.790952,36.134186],[-79.789168,36.125963],[-79.781137,36.118307],[-79.78203,36.101861],[-79.781137,36.10016],[-79.786491,36.081728],[-79.784706,36.071804],[-79.791845,36.067551],[-79.793629,36.064431],[-79.799875,36.064148],[-79.799875,36.065282],[-79.820397,36.061879],[-79.841811,36.059895],[-79.84538,36.059327],[-79.852518,36.060178],[-79.853411,36.063297],[-79.848949,36.064431],[-79.848949,36.069252],[-79.85698,36.068968],[-79.865902,36.070103],[-79.86501,36.080027],[-79.874825,36.076624],[-79.880179,36.076624],[-79.889101,36.079176],[-79.894455,36.081728],[-79.889994,36.086549],[-79.889994,36.089951],[-79.900701,36.087399],[-79.916762,36.089384],[-79.926576,36.087683],[-79.929253,36.085982],[-79.931038,36.080878],[-79.949775,36.090802],[-79.955129,36.091936],[-79.955129,36.086832],[-79.958698,36.07946],[-79.970297,36.083713],[-79.97119,36.072655],[-79.969405,36.067267],[-79.964944,36.0667],[-79.964944,36.060178],[-79.963159,36.058477],[-79.963159,36.037494],[-79.964944,36.030688],[-79.969405,36.028987],[-79.972974,36.025017],[-79.97119,36.024166],[-79.97922,36.014809],[-79.977435,36.013391],[-79.978328,36.007153],[-79.97119,36.007153],[-79.972082,36.000915],[-79.975651,35.995527],[-79.982789,35.99014],[-79.986358,35.992975],[-79.991712,36.001765],[-79.997065,35.99496],[-80.00688,35.985603],[-80.009557,35.983901],[-80.016695,35.983334],[-80.017587,35.979081],[-80.015803,35.973126],[-80.01848,35.972843],[-80.015803,35.968022],[-80.00688,35.957531],[-80.014911,35.952427],[-80.019372,35.947323],[-80.022049,35.948173],[-80.02651,35.943069],[-80.037217,35.945338],[-80.039894,35.943069],[-80.04614,35.945338],[-80.045248,35.956396],[-80.045248,35.973126],[-80.044355,35.984185],[-80.043463,36.007437],[-80.041679,36.07067],[-80.039002,36.129933],[-80.038109,36.159423],[-80.037217,36.161124],[-80.037217,36.173601],[-80.038109,36.176153],[-80.036325,36.226909],[-80.036325,36.243072],[-80.035433,36.25725],[-80.089861,36.257817],[-80.172841,36.258951],[-80.212993,36.258951],[-80.281698,36.259802],[-80.453012,36.261503],[-80.453012,36.241371],[-80.46015,36.245624],[-80.462827,36.248743],[-80.461935,36.253847],[-80.464612,36.2581],[-80.469965,36.260369],[-80.476211,36.260652],[-80.482457,36.255548],[-80.502087,36.258668],[-80.506548,36.259802],[-80.510117,36.2581],[-80.531532,36.2581],[-80.536885,36.260369],[-80.537777,36.262354],[-80.535101,36.272845],[-80.536885,36.279084],[-80.540454,36.282203],[-80.548485,36.285322],[-80.553838,36.28277],[-80.560084,36.283053],[-80.57436,36.279651],[-80.580606,36.277099],[-80.592206,36.269726],[-80.600236,36.272278],[-80.608266,36.277099],[-80.614512,36.2788],[-80.625219,36.286456],[-80.629681,36.287307],[-80.631465,36.284755],[-80.629681,36.279084],[-80.627004,36.277382],[-80.628788,36.273129],[-80.632357,36.272278],[-80.640388,36.273129],[-80.643957,36.271144],[-80.647526,36.262921],[-80.647526,36.256966],[-80.65288,36.252146],[-80.668048,36.250444],[-80.674294,36.252146],[-80.677863,36.257817],[-80.678755,36.262921],[-80.684109,36.268025],[-80.685893,36.268308],[-80.694816,36.265756],[-80.701954,36.265473],[-80.712661,36.266324],[-80.721584,36.269726],[-80.731399,36.266607],[-80.73586,36.268876],[-80.733183,36.277099],[-80.737645,36.279651],[-80.742106,36.277099],[-80.74389,36.270577],[-80.750136,36.264055],[-80.753705,36.262921],[-80.759951,36.269159],[-80.770658,36.27483],[-80.778689,36.272845],[-80.781366,36.268025],[-80.779581,36.256399],[-80.785827,36.252146],[-80.797426,36.247892],[-80.80278,36.252713],[-80.808133,36.253847],[-80.817948,36.250444],[-80.824194,36.249877],[-80.849178,36.241087],[-80.867023,36.238819],[-80.873269,36.236267],[-80.868807,36.326437],[-80.871484,36.328989],[-80.875946,36.32984],[-80.876838,36.333243],[-80.883084,36.334944],[-80.888437,36.338914],[-80.892899,36.339765],[-80.900037,36.347421],[-80.900037,36.354226],[-80.904498,36.356494],[-80.906283,36.361598],[-80.911636,36.362449],[-80.916097,36.367553],[-80.920559,36.36727],[-80.924128,36.364718],[-80.931266,36.36727],[-80.93305,36.371807],[-80.940189,36.383432],[-80.945542,36.385984],[-80.966957,36.40158],[-80.948219,36.41916],[-80.954465,36.426816],[-80.974987,36.45262],[-80.963387,36.459142],[-80.947327,36.478424],[-80.927697,36.500258],[-80.926805,36.50281],[-80.919667,36.505929],[-80.914313,36.52039],[-80.921451,36.525494],[-80.918774,36.540523],[-80.908959,36.552999],[-80.908067,36.556969],[-80.902713,36.561789],[-80.841147,36.558954],[-80.800103,36.560655],[-80.792965,36.560371],[-80.77512,36.560371],[-80.731399,36.562073],[-80.704631,36.562073],[-80.653772,36.558954],[-80.626112,36.558103],[-80.600236,36.556969],[-80.561869,36.555551],[-80.500302,36.552999],[-80.487811,36.552999],[-80.408399,36.548746],[-80.295974,36.543642],[-80.230839,36.543642],[-80.226377,36.543642],[-80.113952,36.542224],[-80.005096,36.542224],[-80.000634,36.54194],[-79.950668,36.542224],[-79.910516,36.542224],[-79.888209,36.542791],[-79.865902,36.542224],[-79.831104,36.542791],[-79.807905,36.54194],[-79.804336,36.542224],[-79.737416,36.54194],[-79.662466,36.541373],[-79.659789,36.54194],[-79.637483,36.541373],[-79.604469,36.541373],[-79.584839,36.54109],[-79.515243,36.540523],[-79.460814,36.540523],[-79.429585,36.54109],[-79.37248,36.54109],[-79.285038,36.54109],[-79.251132,36.54109],[-79.219011,36.541373],[-79.104801,36.541373],[-79.070003,36.54194],[-79.02182,36.54194],[-78.999514,36.54194],[-78.942409,36.54194],[-78.913857,36.54194],[-78.846937,36.54194],[-78.802323,36.54194],[-78.79697,36.541373],[-78.75771,36.541373],[-78.743434,36.54194],[-78.671161,36.54194],[-78.664915,36.54194],[-78.638147,36.54109],[-78.606918,36.54109],[-78.605133,36.54109],[-78.565873,36.54109],[-78.529291,36.540523],[-78.511445,36.540523],[-78.487354,36.541373],[-78.481108,36.54194],[-78.45791,36.542224],[-78.45434,36.540523],[-78.457017,36.53712],[-78.457017,36.533434],[-78.467724,36.532016],[-78.470401,36.526912],[-78.46594,36.525494],[-78.471293,36.522091],[-78.475755,36.522091],[-78.481108,36.517838],[-78.4936,36.518405],[-78.498061,36.514435],[-78.495385,36.507914],[-78.50163,36.501959],[-78.500738,36.497989],[-78.504307,36.495154],[-78.503415,36.487497],[-78.511445,36.454321]]]}},{"type":"Feature","properties":{"district":7},"geometry":{"type":"Polygon","coordinates":[[[-77.560292,35.241267],[-77.557615,35.243819],[-77.55583,35.248073],[-77.549585,35.248073],[-77.546015,35.245804],[-77.540662,35.247222],[-77.538877,35.252893],[-77.533524,35.254594],[-77.527278,35.261967],[-77.517463,35.263668],[-77.515678,35.266504],[-77.509433,35.265653],[-77.511217,35.258848],[-77.519248,35.254878],[-77.519248,35.250625],[-77.524601,35.247789],[-77.529955,35.246655],[-77.52817,35.243252],[-77.52014,35.216314],[-77.506756,35.17208],[-77.519248,35.15932],[-77.529955,35.147694],[-77.549585,35.126143],[-77.553154,35.122741],[-77.601336,35.07085],[-77.602228,35.07085],[-77.678963,35.033421],[-77.730714,35.008184],[-77.684316,34.978978],[-77.675394,34.973307],[-77.679855,34.970755],[-77.653979,34.939847],[-77.652195,34.923684],[-77.659333,34.881434],[-77.658441,34.880584],[-77.661118,34.868674],[-77.663794,34.843721],[-77.665579,34.831245],[-77.671825,34.811396],[-77.677178,34.781906],[-77.680747,34.720374],[-77.714653,34.720374],[-77.763728,34.720091],[-77.827971,34.720091],[-77.873476,34.720941],[-77.89846,34.720941],[-77.922551,34.71924],[-77.930581,34.72321],[-77.939504,34.720091],[-77.951996,34.717539],[-77.951996,34.714987],[-77.955565,34.71527],[-77.963595,34.71924],[-77.975195,34.718673],[-77.97341,34.717539],[-77.975195,34.714136],[-77.979656,34.716688],[-77.979656,34.71442],[-77.985902,34.714987],[-77.989471,34.716972],[-77.991255,34.71527],[-77.996609,34.717539],[-77.996609,34.720941],[-78.002855,34.723493],[-78.004639,34.726896],[-78.008208,34.726045],[-78.009101,34.730866],[-78.018916,34.731717],[-78.025161,34.730299],[-78.030515,34.725195],[-78.034084,34.726896],[-78.04836,34.725195],[-78.056391,34.726896],[-78.066206,34.727747],[-78.072451,34.724344],[-78.080482,34.724061],[-78.082266,34.722359],[-78.08762,34.726045],[-78.094758,34.723493],[-78.097435,34.725762],[-78.113496,34.721792],[-78.114388,34.706764],[-78.156324,34.678408],[-78.241982,34.570657],[-78.246443,34.563851],[-78.250904,34.559598],[-78.260719,34.54542],[-78.271426,34.538898],[-78.270534,34.532944],[-78.266965,34.529541],[-78.263396,34.528974],[-78.26518,34.526138],[-78.263396,34.524437],[-78.263396,34.519616],[-78.256258,34.520467],[-78.256258,34.513662],[-78.252689,34.511393],[-78.256258,34.511393],[-78.256258,34.507991],[-78.250904,34.50317],[-78.241982,34.498917],[-78.23752,34.492962],[-78.225921,34.49041],[-78.222352,34.492962],[-78.216998,34.487007],[-78.212537,34.488709],[-78.211645,34.486157],[-78.208968,34.487858],[-78.206291,34.482754],[-78.206291,34.479635],[-78.200937,34.474531],[-78.191123,34.47283],[-78.19023,34.469427],[-78.185769,34.467726],[-78.183092,34.469427],[-78.180415,34.466024],[-78.176846,34.465174],[-78.211645,34.435967],[-78.25715,34.399388],[-78.253581,34.391732],[-78.24912,34.393434],[-78.245551,34.38918],[-78.246443,34.385211],[-78.239305,34.381524],[-78.236628,34.378405],[-78.236628,34.374152],[-78.233951,34.373585],[-78.22949,34.378405],[-78.226813,34.375003],[-78.218783,34.371033],[-78.211645,34.369332],[-78.211645,34.362526],[-78.208076,34.356571],[-78.20183,34.352602],[-78.194692,34.352318],[-78.185769,34.353169],[-78.179523,34.35487],[-78.174169,34.351751],[-78.1706,34.356004],[-78.159001,34.356855],[-78.153647,34.365645],[-78.147402,34.36678],[-78.143832,34.364228],[-78.140263,34.365929],[-78.141156,34.369899],[-78.136694,34.3716],[-78.134018,34.36678],[-78.122418,34.368481],[-78.117065,34.364228],[-78.112603,34.36281],[-78.112603,34.359974],[-78.105465,34.357422],[-78.102788,34.355154],[-78.09565,34.356004],[-78.093866,34.352318],[-78.085835,34.351467],[-78.082266,34.354019],[-78.07602,34.347781],[-78.07602,34.344095],[-78.079589,34.340125],[-78.074236,34.337573],[-78.065313,34.338991],[-78.05996,34.337573],[-78.05996,34.344946],[-78.051929,34.338424],[-78.052822,34.335021],[-78.04836,34.335872],[-78.047468,34.330768],[-78.042114,34.329917],[-78.039438,34.331902],[-78.035869,34.329917],[-78.030515,34.331619],[-78.026054,34.326798],[-78.02873,34.319709],[-78.023377,34.317724],[-78.015346,34.323112],[-78.007316,34.32141],[-78.006424,34.31659],[-78.011777,34.314038],[-78.015346,34.307516],[-78.015346,34.302412],[-78.018023,34.292488],[-78.015346,34.289085],[-78.008208,34.289936],[-78.004639,34.286533],[-78.004639,34.280578],[-77.996609,34.283981],[-77.990363,34.281429],[-77.991255,34.278026],[-77.999286,34.275758],[-78.00107,34.271505],[-77.991255,34.270654],[-77.987686,34.268102],[-77.988579,34.262147],[-77.985902,34.259028],[-77.979656,34.259879],[-77.976087,34.249104],[-77.974302,34.247119],[-77.968949,34.252223],[-77.966272,34.247402],[-77.970733,34.244],[-77.96538,34.241448],[-77.959134,34.242298],[-77.955565,34.239746],[-77.962703,34.239179],[-77.954672,34.232374],[-77.951996,34.232374],[-77.957349,34.216211],[-77.960026,34.209689],[-77.960918,34.203167],[-77.957349,34.198914],[-77.955565,34.192109],[-77.949319,34.191258],[-77.93415,34.191258],[-77.935935,34.19381],[-77.923443,34.198914],[-77.92612,34.207988],[-77.927012,34.223016],[-77.917197,34.226986],[-77.916305,34.23209],[-77.919874,34.233224],[-77.922551,34.237194],[-77.90649,34.239746],[-77.90649,34.229822],[-77.905598,34.221315],[-77.90649,34.219614],[-77.892214,34.213943],[-77.892214,34.211107],[-77.882399,34.210256],[-77.881507,34.213659],[-77.873476,34.212808],[-77.872584,34.219614],[-77.865446,34.215644],[-77.860985,34.220464],[-77.852954,34.231523],[-77.860985,34.232941],[-77.865446,34.232374],[-77.873476,34.236344],[-77.871692,34.240313],[-77.872584,34.249671],[-77.871692,34.254775],[-77.887753,34.255909],[-77.888645,34.259028],[-77.89846,34.257894],[-77.902029,34.259879],[-77.911844,34.257327],[-77.915413,34.259028],[-77.918982,34.258745],[-77.920766,34.263281],[-77.923443,34.262147],[-77.923443,34.257327],[-77.927905,34.254775],[-77.930581,34.257043],[-77.909167,34.292204],[-77.905598,34.300144],[-77.902029,34.324246],[-77.912736,34.323112],[-77.930581,34.323395],[-77.937719,34.325097],[-77.937719,34.323395],[-77.944858,34.324813],[-77.954672,34.319709],[-77.957349,34.321694],[-77.968056,34.323112],[-77.980548,34.330201],[-77.982333,34.332469],[-77.980548,34.338424],[-77.985009,34.339275],[-77.987686,34.33729],[-77.99304,34.336723],[-77.994824,34.338991],[-77.99304,34.345229],[-77.986794,34.352602],[-77.980548,34.355154],[-77.978764,34.357706],[-77.983225,34.361675],[-77.987686,34.362526],[-77.988579,34.365929],[-77.986794,34.371884],[-77.983225,34.372734],[-77.976087,34.372451],[-77.970733,34.377555],[-77.960918,34.382659],[-77.959134,34.377555],[-77.962703,34.373301],[-77.958242,34.368481],[-77.950211,34.364795],[-77.950211,34.369899],[-77.948427,34.3716],[-77.940396,34.369899],[-77.940396,34.361108],[-77.935935,34.357706],[-77.933258,34.359123],[-77.935043,34.363377],[-77.932366,34.36763],[-77.930581,34.365929],[-77.931474,34.361108],[-77.927012,34.363377],[-77.916305,34.375853],[-77.909167,34.375003],[-77.902029,34.377555],[-77.899352,34.375003],[-77.900244,34.367347],[-77.894891,34.363377],[-77.884184,34.364795],[-77.879722,34.365929],[-77.875261,34.370749],[-77.857416,34.380107],[-77.844924,34.380674],[-77.83154,34.386061],[-77.826186,34.386912],[-77.822617,34.38918],[-77.812802,34.402791],[-77.807449,34.403358],[-77.806557,34.40506],[-77.797634,34.40506],[-77.790496,34.406761],[-77.793173,34.416685],[-77.796742,34.416969],[-77.797634,34.421789],[-77.800311,34.426043],[-77.799419,34.431714],[-77.797634,34.432848],[-77.783358,34.435967],[-77.778896,34.438803],[-77.771758,34.437669],[-77.767297,34.439653],[-77.76462,34.447593],[-77.754805,34.455249],[-77.753913,34.461204],[-77.742314,34.47283],[-77.713761,34.499767],[-77.678071,34.533794],[-77.631673,34.578029],[-77.621858,34.585685],[-77.582598,34.494663],[-77.577245,34.478784],[-77.57546,34.475949],[-77.571891,34.476799],[-77.571891,34.472262],[-77.56743,34.469427],[-77.562968,34.469427],[-77.561184,34.471128],[-77.557615,34.469427],[-77.553154,34.471128],[-77.548692,34.466875],[-77.542446,34.463756],[-77.534416,34.458368],[-77.515678,34.437669],[-77.499618,34.416969],[-77.485341,34.399388],[-77.488911,34.397404],[-77.516571,34.382375],[-77.532632,34.370749],[-77.556723,34.353452],[-77.582598,34.333887],[-77.595982,34.323395],[-77.597767,34.320843],[-77.608474,34.310068],[-77.619181,34.304114],[-77.623642,34.303263],[-77.636134,34.292488],[-77.652195,34.27831],[-77.655764,34.274057],[-77.662902,34.263281],[-77.668256,34.258177],[-77.683424,34.24882],[-77.692347,34.245701],[-77.694131,34.242865],[-77.702162,34.235776],[-77.706623,34.226986],[-77.710192,34.221599],[-77.722684,34.209689],[-77.724468,34.203735],[-77.730714,34.189557],[-77.739637,34.180483],[-77.748559,34.175379],[-77.747667,34.171126],[-77.750344,34.161201],[-77.754805,34.154679],[-77.775327,34.1388],[-77.785142,34.125189],[-77.793173,34.10931],[-77.801203,34.090312],[-77.812802,34.068478],[-77.820833,34.051748],[-77.824402,34.04069],[-77.830648,34.030198],[-77.836894,34.012334],[-77.842247,34.000141],[-77.841355,34.000141],[-77.848493,33.978307],[-77.856523,33.959876],[-77.862769,33.94825],[-77.864554,33.93464],[-77.869015,33.927267],[-77.875261,33.919611],[-77.884184,33.903732],[-77.88686,33.888703],[-77.893999,33.878779],[-77.895783,33.863751],[-77.899352,33.854677],[-77.899352,33.848155],[-77.897568,33.84617],[-77.894891,33.835395],[-77.896675,33.819516],[-77.893999,33.804487],[-77.894891,33.793429],[-77.897568,33.784638],[-77.902029,33.7784],[-77.915413,33.765924],[-77.91809,33.763655],[-77.930581,33.7577],[-77.943073,33.753447],[-77.95378,33.75288],[-77.96538,33.75288],[-77.974302,33.754581],[-77.985009,33.758551],[-77.999286,33.767058],[-78.004639,33.77358],[-78.009101,33.781803],[-78.011777,33.788608],[-78.013562,33.803637],[-78.030515,33.812143],[-78.041222,33.818665],[-78.052822,33.827172],[-78.062636,33.838798],[-78.066206,33.847871],[-78.081374,33.850423],[-78.101896,33.855527],[-78.125987,33.859781],[-78.146509,33.862333],[-78.168816,33.863751],[-78.183984,33.863751],[-78.203614,33.863183],[-78.224136,33.862049],[-78.262504,33.8629],[-78.270534,33.8629],[-78.283918,33.861199],[-78.301763,33.859781],[-78.317824,33.857229],[-78.341023,33.855244],[-78.355299,33.852125],[-78.367791,33.851274],[-78.37136,33.849006],[-78.39902,33.843051],[-78.44631,33.829724],[-78.488246,33.816397],[-78.498954,33.81271],[-78.525722,33.835678],[-78.550705,33.859781],[-78.61584,33.914791],[-78.626547,33.923014],[-78.678299,33.967532],[-78.70239,33.989082],[-78.709528,33.994186],[-78.718451,34.00241],[-78.747895,34.025945],[-78.813031,34.081805],[-78.83266,34.098535],[-78.874597,34.133696],[-78.874597,34.134263],[-78.906718,34.16035],[-78.954008,34.199765],[-78.998622,34.238045],[-79.000406,34.238896],[-79.012006,34.249104],[-79.044127,34.276609],[-79.071787,34.29901],[-79.06911,34.303263],[-79.06911,34.306666],[-79.065541,34.308367],[-79.060188,34.306666],[-79.055727,34.313187],[-79.051265,34.314889],[-79.049481,34.311486],[-79.044127,34.310635],[-79.038774,34.313187],[-79.036989,34.315739],[-79.039666,34.319709],[-79.035204,34.319142],[-79.034312,34.325097],[-79.036989,34.332469],[-79.036097,34.336439],[-79.032528,34.339842],[-79.032528,34.342394],[-79.029851,34.342394],[-79.028959,34.346647],[-79.026282,34.3509],[-79.022713,34.353169],[-79.017359,34.35005],[-79.010221,34.353452],[-79.003083,34.364228],[-79.003083,34.368197],[-79.008437,34.372451],[-79.008437,34.376704],[-79.012006,34.380957],[-79.006652,34.384076],[-79.002191,34.38436],[-78.998622,34.390882],[-78.995053,34.390031],[-78.995053,34.392583],[-78.987914,34.392867],[-78.977207,34.390315],[-78.97453,34.394568],[-78.970961,34.396836],[-78.970961,34.40109],[-78.968285,34.40194],[-78.970069,34.408462],[-78.968285,34.410164],[-78.970961,34.413283],[-78.969177,34.416118],[-78.972746,34.418387],[-78.969177,34.420939],[-78.971854,34.426893],[-78.967392,34.431714],[-78.967392,34.434549],[-78.962931,34.437669],[-78.960254,34.442489],[-78.948655,34.449578],[-78.941517,34.45213],[-78.937948,34.451279],[-78.935271,34.453548],[-78.929917,34.453831],[-78.926348,34.452697],[-78.914749,34.454682],[-78.912072,34.456383],[-78.909395,34.454682],[-78.903149,34.45695],[-78.898688,34.460353],[-78.896011,34.46092],[-78.89155,34.465174],[-78.887981,34.466308],[-78.887981,34.470278],[-78.882627,34.47283],[-78.880843,34.475382],[-78.874597,34.478501],[-78.87192,34.482187],[-78.868351,34.484455],[-78.867459,34.493813],[-78.854075,34.501469],[-78.846937,34.500618],[-78.846937,34.503737],[-78.84426,34.507991],[-78.850506,34.513662],[-78.856752,34.514796],[-78.85229,34.517915],[-78.854967,34.522168],[-78.854075,34.52784],[-78.856752,34.530392],[-78.854967,34.533227],[-78.860321,34.537197],[-78.855859,34.547972],[-78.857644,34.548823],[-78.856752,34.554777],[-78.854075,34.557329],[-78.858536,34.563001],[-78.859428,34.567821],[-78.856752,34.569806],[-78.857644,34.572358],[-78.848721,34.574626],[-78.84426,34.57973],[-78.843368,34.589088],[-78.839799,34.589088],[-78.835337,34.593057],[-78.835337,34.59646],[-78.840691,34.597027],[-78.833553,34.601564],[-78.831768,34.611489],[-78.834445,34.614891],[-78.83266,34.617443],[-78.833553,34.621413],[-78.829091,34.623965],[-78.828199,34.628786],[-78.829984,34.631621],[-78.826415,34.638994],[-78.821953,34.638426],[-78.820169,34.641546],[-78.818384,34.650052],[-78.813031,34.650903],[-78.814815,34.656574],[-78.819277,34.656007],[-78.820169,34.659693],[-78.814815,34.665081],[-78.808569,34.667349],[-78.810354,34.669051],[-78.805893,34.674155],[-78.808569,34.681811],[-78.805893,34.68578],[-78.808569,34.691735],[-78.812138,34.695138],[-78.813923,34.698257],[-78.826415,34.712718],[-78.83266,34.715837],[-78.83266,34.718389],[-78.83623,34.717822],[-78.841583,34.723493],[-78.849613,34.732567],[-78.854967,34.73597],[-78.856752,34.747029],[-78.858536,34.7527],[-78.857644,34.754401],[-78.862105,34.756953],[-78.865674,34.763475],[-78.864782,34.767445],[-78.866567,34.76943],[-78.866567,34.775384],[-78.878166,34.79098],[-78.879058,34.796084],[-78.884412,34.802039],[-78.88352,34.806008],[-78.886196,34.809695],[-78.884412,34.812247],[-78.889765,34.811396],[-78.893334,34.814515],[-78.893334,34.817067],[-78.897796,34.821887],[-78.901365,34.830394],[-78.89958,34.832095],[-78.904934,34.834364],[-78.913857,34.846273],[-78.917426,34.849392],[-78.920995,34.855347],[-78.924564,34.8596],[-78.926348,34.863854],[-78.932594,34.864704],[-78.933486,34.86272],[-78.931702,34.851094],[-78.940624,34.852228],[-78.94687,34.856481],[-78.945978,34.85875],[-78.959362,34.864704],[-78.968285,34.865272],[-78.976315,34.866406],[-78.976315,34.86357],[-78.978992,34.86357],[-78.980776,34.866973],[-78.987022,34.87151],[-78.998622,34.877748],[-79.009329,34.876897],[-79.010221,34.87236],[-79.022713,34.864421],[-79.02539,34.85875],[-79.030743,34.851094],[-79.03342,34.850243],[-79.036097,34.844005],[-79.044127,34.851377],[-79.046804,34.849392],[-79.050373,34.84202],[-79.056619,34.840602],[-79.063757,34.836349],[-79.05305,34.826141],[-79.056619,34.822738],[-79.066434,34.82926],[-79.070895,34.836916],[-79.079818,34.845423],[-79.087848,34.850527],[-79.08874,34.853079],[-79.093202,34.850527],[-79.086064,34.836349],[-79.086064,34.835498],[-79.093202,34.832946],[-79.095878,34.828409],[-79.099447,34.826991],[-79.106586,34.826991],[-79.117293,34.829543],[-79.123539,34.830111],[-79.127108,34.819619],[-79.128892,34.817067],[-79.132461,34.821037],[-79.140492,34.822738],[-79.14763,34.826424],[-79.149414,34.831812],[-79.152983,34.836349],[-79.176182,34.82047],[-79.182428,34.816783],[-79.192243,34.812814],[-79.196704,34.812814],[-79.215442,34.806859],[-79.227934,34.806008],[-79.229718,34.801188],[-79.223472,34.797785],[-79.221688,34.798636],[-79.216334,34.794666],[-79.203842,34.790413],[-79.213657,34.780205],[-79.227934,34.773683],[-79.233287,34.77425],[-79.24221,34.768295],[-79.256486,34.764326],[-79.267193,34.760356],[-79.275224,34.762908],[-79.278793,34.762908],[-79.299315,34.754117],[-79.310022,34.751282],[-79.312699,34.757804],[-79.313591,34.763475],[-79.31716,34.772549],[-79.318052,34.778503],[-79.330544,34.773683],[-79.33679,34.781055],[-79.340359,34.789278],[-79.343036,34.790413],[-79.348389,34.802039],[-79.350174,34.807993],[-79.354635,34.812247],[-79.358204,34.82047],[-79.353743,34.823589],[-79.354635,34.828693],[-79.352851,34.830394],[-79.348389,34.841453],[-79.337682,34.853646],[-79.339467,34.855347],[-79.339467,34.8596],[-79.342143,34.861869],[-79.343928,34.868674],[-79.343036,34.870376],[-79.345712,34.874629],[-79.34482,34.878032],[-79.347497,34.878882],[-79.350174,34.893911],[-79.349281,34.902985],[-79.352851,34.908939],[-79.351958,34.914043],[-79.352851,34.924818],[-79.355527,34.926236],[-79.357312,34.932474],[-79.353743,34.939563],[-79.353743,34.942399],[-79.357312,34.94807],[-79.362665,34.950622],[-79.362665,34.957995],[-79.369804,34.963099],[-79.370696,34.966501],[-79.377834,34.973874],[-79.376942,34.975575],[-79.369804,34.97756],[-79.362665,34.977276],[-79.358204,34.974157],[-79.343928,34.969053],[-79.334113,34.96877],[-79.327867,34.971605],[-79.32519,34.978978],[-79.307345,35.006766],[-79.30913,35.008468],[-79.301991,35.013288],[-79.290392,35.014139],[-79.286823,35.015556],[-79.278793,35.020093],[-79.276116,35.02066],[-79.268085,35.017541],[-79.263624,35.020093],[-79.260055,35.020093],[-79.253809,35.021795],[-79.25024,35.020093],[-79.243102,35.008468],[-79.235072,35.004781],[-79.229718,35.006483],[-79.21455,34.999394],[-79.210088,34.994006],[-79.203842,34.988051],[-79.198489,34.984649],[-79.191351,34.974157],[-79.185997,34.972456],[-79.193135,34.96083],[-79.205627,34.954875],[-79.209196,34.954875],[-79.206519,34.949204],[-79.206519,34.944951],[-79.196704,34.941265],[-79.194027,34.935594],[-79.194027,34.930773],[-79.190458,34.925669],[-79.185997,34.916595],[-79.180644,34.914043],[-79.18332,34.911491],[-79.174398,34.904119],[-79.166367,34.901567],[-79.163691,34.902417],[-79.153876,34.900433],[-79.152091,34.895612],[-79.148522,34.891075],[-79.135138,34.887956],[-79.135138,34.884553],[-79.131569,34.880584],[-79.125323,34.884837],[-79.078033,34.921416],[-79.034312,34.953741],[-78.997729,34.934176],[-78.97453,34.922834],[-78.956685,34.91376],[-78.954901,34.910357],[-78.948655,34.906387],[-78.941517,34.903268],[-78.939732,34.898731],[-78.932594,34.892777],[-78.907611,34.918013],[-78.896904,34.927938],[-78.888873,34.924818],[-78.886196,34.922834],[-78.878166,34.923968],[-78.877274,34.922266],[-78.87192,34.924535],[-78.864782,34.923968],[-78.850506,34.924818],[-78.847829,34.925669],[-78.843368,34.923968],[-78.840691,34.919998],[-78.834445,34.913193],[-78.83623,34.910641],[-78.833553,34.903835],[-78.834445,34.895612],[-78.828199,34.897313],[-78.827307,34.903268],[-78.82463,34.902985],[-78.821061,34.89306],[-78.8166,34.892209],[-78.8166,34.902134],[-78.814815,34.906954],[-78.806785,34.914043],[-78.804108,34.919714],[-78.798754,34.923968],[-78.790724,34.933892],[-78.778232,34.9441],[-78.774663,34.948354],[-78.771987,34.958278],[-78.772879,34.967635],[-78.77734,34.975008],[-78.782694,34.977276],[-78.779125,34.985783],[-78.767525,34.983798],[-78.755033,34.98635],[-78.746111,34.987201],[-78.748788,34.99826],[-78.752357,35.001662],[-78.773771,35.005632],[-78.775556,35.009318],[-78.783586,35.016407],[-78.793401,35.030301],[-78.786263,35.034838],[-78.780017,35.035973],[-78.763956,35.036823],[-78.756818,35.035689],[-78.747895,35.038525],[-78.739865,35.046464],[-78.736296,35.052419],[-78.723804,35.050717],[-78.709528,35.054971],[-78.699713,35.060925],[-78.675622,35.084177],[-78.670268,35.087013],[-78.670268,35.092684],[-78.667592,35.093534],[-78.660453,35.092684],[-78.657777,35.095803],[-78.657777,35.10119],[-78.654208,35.100907],[-78.652423,35.102608],[-78.654208,35.108563],[-78.64707,35.112816],[-78.642608,35.113383],[-78.639931,35.116786],[-78.641716,35.121039],[-78.647962,35.117637],[-78.652423,35.117637],[-78.652423,35.121039],[-78.648854,35.125293],[-78.6435,35.127845],[-78.642608,35.131815],[-78.639931,35.131815],[-78.63547,35.139187],[-78.638147,35.14344],[-78.639039,35.148544],[-78.637255,35.151096],[-78.640824,35.154499],[-78.638147,35.157618],[-78.633686,35.158469],[-78.633686,35.163573],[-78.639931,35.165558],[-78.634578,35.170945],[-78.630116,35.171229],[-78.631009,35.173781],[-78.639931,35.182004],[-78.640824,35.186824],[-78.636362,35.191361],[-78.641716,35.192212],[-78.64707,35.196465],[-78.642608,35.200435],[-78.638147,35.197883],[-78.632793,35.201286],[-78.62744,35.201286],[-78.626547,35.205539],[-78.631009,35.207808],[-78.631901,35.213195],[-78.622978,35.222836],[-78.619409,35.22312],[-78.616733,35.22794],[-78.619409,35.233895],[-78.614948,35.238999],[-78.617625,35.24467],[-78.613163,35.248073],[-78.609594,35.254027],[-78.59978,35.258848],[-78.598887,35.264802],[-78.59621,35.265653],[-78.585503,35.273026],[-78.583719,35.27898],[-78.586396,35.284084],[-78.583719,35.29089],[-78.586396,35.293158],[-78.581934,35.298262],[-78.576581,35.29571],[-78.573012,35.297411],[-78.571227,35.301665],[-78.564981,35.304217],[-78.558735,35.304217],[-78.555166,35.309604],[-78.544459,35.31244],[-78.536429,35.319245],[-78.537321,35.321514],[-78.536429,35.326334],[-78.533752,35.328319],[-78.533752,35.331722],[-78.531075,35.33399],[-78.531075,35.337393],[-78.534644,35.340512],[-78.533752,35.342497],[-78.537321,35.3459],[-78.54089,35.35072],[-78.545351,35.353272],[-78.54892,35.353272],[-78.550705,35.355824],[-78.562304,35.360928],[-78.564981,35.366032],[-78.56855,35.36745],[-78.570335,35.370853],[-78.570335,35.375957],[-78.573012,35.38418],[-78.576581,35.390134],[-78.587288,35.396089],[-78.592641,35.398641],[-78.59621,35.403462],[-78.59621,35.409133],[-78.59978,35.419341],[-78.608702,35.425295],[-78.609594,35.427564],[-78.606918,35.431817],[-78.614948,35.44004],[-78.614948,35.441742],[-78.619409,35.445144],[-78.621194,35.450248],[-78.62744,35.455919],[-78.62744,35.457621],[-78.639039,35.461307],[-78.645285,35.466128],[-78.650639,35.472933],[-78.649746,35.480022],[-78.653315,35.483708],[-78.655992,35.490513],[-78.660453,35.496184],[-78.676514,35.496184],[-78.689006,35.50384],[-78.689006,35.514616],[-78.691683,35.515466],[-78.705067,35.518018],[-78.708636,35.518869],[-78.68276,35.539001],[-78.642608,35.569626],[-78.631009,35.57955],[-78.613163,35.59231],[-78.597103,35.605637],[-78.586396,35.61386],[-78.56052,35.633709],[-78.542675,35.64732],[-78.539998,35.649872],[-78.531075,35.656394],[-78.519476,35.665468],[-78.511445,35.671706],[-78.47397,35.70233],[-78.467724,35.707718],[-78.464155,35.707718],[-78.460586,35.705733],[-78.413296,35.730969],[-78.387421,35.743446],[-78.374929,35.750818],[-78.352622,35.763578],[-78.321393,35.781159],[-78.299086,35.793352],[-78.26518,35.812066],[-78.25715,35.817737],[-78.258042,35.812917],[-78.252689,35.810932],[-78.250012,35.80356],[-78.250012,35.795053],[-78.248227,35.792501],[-78.244658,35.791934],[-78.248227,35.788248],[-78.246443,35.784561],[-78.24912,35.781159],[-78.24912,35.776905],[-78.251796,35.772935],[-78.247335,35.772085],[-78.244658,35.768682],[-78.239305,35.768399],[-78.238413,35.761877],[-78.235736,35.759892],[-78.23752,35.756773],[-78.233951,35.751952],[-78.226813,35.750251],[-78.222352,35.754221],[-78.21789,35.754221],[-78.215214,35.748266],[-78.216998,35.740043],[-78.215214,35.73579],[-78.207183,35.728417],[-78.205399,35.727566],[-78.194692,35.728417],[-78.191123,35.730118],[-78.185769,35.729268],[-78.180415,35.726716],[-78.176846,35.722462],[-78.175062,35.717642],[-78.167031,35.713389],[-78.16257,35.713389],[-78.16257,35.696375],[-78.159001,35.688436],[-78.153647,35.674258],[-78.143832,35.647604],[-78.135802,35.62577],[-78.132233,35.618964],[-78.126879,35.603085],[-78.064421,35.585505],[-78.08762,35.544673],[-78.109034,35.502139],[-78.120634,35.480872],[-78.125987,35.4735],[-78.15454,35.417639],[-78.153647,35.391836],[-78.150971,35.391836],[-78.145617,35.388433],[-78.146509,35.382762],[-78.150971,35.378225],[-78.156324,35.375957],[-78.161678,35.368301],[-78.16257,35.365749],[-78.158109,35.359794],[-78.159893,35.356675],[-78.153647,35.354973],[-78.153647,35.351571],[-78.159001,35.347601],[-78.160786,35.349019],[-78.166139,35.346467],[-78.174169,35.347317],[-78.179523,35.344198],[-78.185769,35.345049],[-78.187553,35.342497],[-78.198261,35.343348],[-78.198261,35.340512],[-78.203614,35.341363],[-78.20986,35.339945],[-78.212537,35.342213],[-78.21789,35.338527],[-78.216106,35.33314],[-78.239305,35.321514],[-78.24912,35.320096],[-78.25715,35.324916],[-78.263396,35.325767],[-78.267857,35.324066],[-78.273211,35.318962],[-78.287487,35.314992],[-78.305332,35.285786],[-78.268749,35.249774],[-78.266965,35.247222],[-78.25715,35.236447],[-78.252689,35.233044],[-78.248227,35.227089],[-78.236628,35.22312],[-78.161678,35.203838],[-78.163462,35.189376],[-78.13491,35.183989],[-78.121526,35.181437],[-78.113496,35.180586],[-78.097435,35.177184],[-78.077805,35.174348],[-78.066206,35.180303],[-78.05996,35.185407],[-78.051929,35.188526],[-78.043899,35.192779],[-78.037653,35.191361],[-78.021592,35.193913],[-78.016239,35.190511],[-78.007316,35.191078],[-77.999286,35.187675],[-77.995717,35.182855],[-77.985009,35.183705],[-77.98144,35.177751],[-77.980548,35.171229],[-77.974302,35.166976],[-77.97341,35.164707],[-77.95378,35.165274],[-77.947534,35.171796],[-77.943073,35.17208],[-77.937719,35.170945],[-77.930581,35.173781],[-77.919874,35.169528],[-77.917197,35.166408],[-77.910952,35.162722],[-77.910952,35.158752],[-77.904706,35.154499],[-77.89846,35.148544],[-77.893106,35.146276],[-77.894891,35.151096],[-77.893106,35.1562],[-77.884184,35.162722],[-77.875261,35.166408],[-77.846709,35.173781],[-77.834217,35.177751],[-77.834217,35.181153],[-77.830648,35.233044],[-77.826186,35.23191],[-77.82351,35.233044],[-77.814587,35.231343],[-77.806557,35.233044],[-77.797634,35.232761],[-77.794065,35.229925],[-77.788711,35.23191],[-77.786035,35.226522],[-77.782465,35.228791],[-77.775327,35.226522],[-77.775327,35.229642],[-77.772651,35.229074],[-77.769082,35.224537],[-77.76462,35.224537],[-77.761051,35.220568],[-77.758374,35.220568],[-77.753021,35.217165],[-77.745883,35.215464],[-77.743206,35.219717],[-77.735175,35.220284],[-77.729822,35.218866],[-77.736068,35.23191],[-77.738745,35.244103],[-77.73696,35.255729],[-77.733391,35.255729],[-77.732499,35.26622],[-77.724468,35.264519],[-77.728037,35.273026],[-77.727145,35.286353],[-77.726253,35.289188],[-77.736068,35.29968],[-77.748559,35.303083],[-77.753021,35.303366],[-77.754805,35.31244],[-77.759267,35.320663],[-77.766405,35.33314],[-77.753913,35.340796],[-77.748559,35.341646],[-77.749452,35.349019],[-77.746775,35.359227],[-77.740529,35.366032],[-77.739637,35.369151],[-77.743206,35.374255],[-77.725361,35.376807],[-77.702162,35.38021],[-77.698593,35.378225],[-77.6977,35.372554],[-77.695024,35.365749],[-77.691455,35.364047],[-77.691455,35.360077],[-77.688778,35.358943],[-77.679855,35.347601],[-77.671825,35.347601],[-77.667363,35.349019],[-77.664687,35.352421],[-77.660225,35.351854],[-77.659333,35.34675],[-77.661118,35.336826],[-77.661118,35.329737],[-77.658441,35.319812],[-77.651303,35.311306],[-77.647734,35.301665],[-77.640595,35.293158],[-77.625427,35.287203],[-77.618289,35.290606],[-77.615612,35.297979],[-77.601336,35.295427],[-77.597767,35.288905],[-77.594198,35.285786],[-77.59509,35.272459],[-77.601336,35.27416],[-77.606689,35.273876],[-77.606689,35.270474],[-77.620073,35.268205],[-77.617397,35.267071],[-77.605797,35.265653],[-77.598659,35.263101],[-77.587952,35.26225],[-77.584383,35.259982],[-77.585275,35.257997],[-77.590629,35.256296],[-77.580814,35.243819],[-77.568322,35.240417],[-77.560292,35.241267]]]}},{"type":"Feature","properties":{"district":8},"geometry":{"type":"Polygon","coordinates":[[[-79.894455,35.704882],[-79.890886,35.708285],[-79.842704,35.687585],[-79.843596,35.683332],[-79.851626,35.680213],[-79.858764,35.675676],[-79.873041,35.671422],[-79.887317,35.666318],[-79.883748,35.66008],[-79.888209,35.652424],[-79.889101,35.647604],[-79.88464,35.6425],[-79.87661,35.637396],[-79.873933,35.63059],[-79.865902,35.624919],[-79.860549,35.623218],[-79.862333,35.617547],[-79.868579,35.611308],[-79.873041,35.60904],[-79.934607,35.60904],[-79.937284,35.553179],[-79.93996,35.508661],[-79.907839,35.509512],[-79.871256,35.510362],[-79.769538,35.511213],[-79.764184,35.476052],[-79.749908,35.44004],[-79.748124,35.429549],[-79.731171,35.370285],[-79.728494,35.362629],[-79.719571,35.33399],[-79.709756,35.301381],[-79.711541,35.29968],[-79.710648,35.292307],[-79.712433,35.289755],[-79.712433,35.275578],[-79.707079,35.271324],[-79.705295,35.268205],[-79.705295,35.26225],[-79.701726,35.256579],[-79.701726,35.254594],[-79.698157,35.251475],[-79.689234,35.250341],[-79.685665,35.247222],[-79.674066,35.244954],[-79.670497,35.239566],[-79.669604,35.231343],[-79.663358,35.225388],[-79.665143,35.223687],[-79.664251,35.217732],[-79.660682,35.213762],[-79.659789,35.209793],[-79.661574,35.204689],[-79.660682,35.199585],[-79.654436,35.191078],[-79.647298,35.187108],[-79.644621,35.182855],[-79.641052,35.180586],[-79.638375,35.176049],[-79.629452,35.175199],[-79.625883,35.170095],[-79.621422,35.171229],[-79.615176,35.163573],[-79.615176,35.158469],[-79.609823,35.155066],[-79.60893,35.150246],[-79.599115,35.14259],[-79.597331,35.143724],[-79.591085,35.141172],[-79.588408,35.136068],[-79.585731,35.134367],[-79.584839,35.128695],[-79.578593,35.124442],[-79.574132,35.117637],[-79.577701,35.109414],[-79.575917,35.107712],[-79.577701,35.100907],[-79.577701,35.096086],[-79.58127,35.093251],[-79.583055,35.084461],[-79.576809,35.073686],[-79.577701,35.071701],[-79.569671,35.065179],[-79.557179,35.066029],[-79.547364,35.066029],[-79.535765,35.064328],[-79.528627,35.066029],[-79.52595,35.063477],[-79.517027,35.064328],[-79.516135,35.062627],[-79.500074,35.063477],[-79.495613,35.062343],[-79.492044,35.059224],[-79.488475,35.060925],[-79.485798,35.058657],[-79.476875,35.056672],[-79.475983,35.053553],[-79.471522,35.048165],[-79.467953,35.047598],[-79.462599,35.043345],[-79.459922,35.042778],[-79.457245,35.039092],[-79.458138,35.03739],[-79.451,35.030018],[-79.450107,35.026615],[-79.446538,35.025197],[-79.442077,35.021795],[-79.4394,35.022362],[-79.43137,35.020093],[-79.425124,35.009885],[-79.41977,35.007617],[-79.417094,35.002513],[-79.409063,35.000528],[-79.401925,34.996842],[-79.391218,34.985783],[-79.386757,34.979828],[-79.377834,34.973874],[-79.370696,34.966501],[-79.369804,34.963099],[-79.362665,34.957995],[-79.362665,34.950622],[-79.357312,34.94807],[-79.353743,34.942399],[-79.353743,34.939563],[-79.357312,34.932474],[-79.355527,34.926236],[-79.352851,34.924818],[-79.351958,34.914043],[-79.352851,34.908939],[-79.349281,34.902985],[-79.350174,34.893911],[-79.347497,34.878882],[-79.34482,34.878032],[-79.345712,34.874629],[-79.343036,34.870376],[-79.343928,34.868674],[-79.342143,34.861869],[-79.339467,34.8596],[-79.339467,34.855347],[-79.337682,34.853646],[-79.348389,34.841453],[-79.352851,34.830394],[-79.354635,34.828693],[-79.353743,34.823589],[-79.358204,34.82047],[-79.354635,34.812247],[-79.350174,34.807993],[-79.348389,34.802039],[-79.343036,34.790413],[-79.340359,34.789278],[-79.33679,34.781055],[-79.330544,34.773683],[-79.318052,34.778503],[-79.31716,34.772549],[-79.313591,34.763475],[-79.312699,34.757804],[-79.310022,34.751282],[-79.299315,34.754117],[-79.278793,34.762908],[-79.275224,34.762908],[-79.267193,34.760356],[-79.256486,34.764326],[-79.24221,34.768295],[-79.233287,34.77425],[-79.227934,34.773683],[-79.213657,34.780205],[-79.203842,34.790413],[-79.216334,34.794666],[-79.221688,34.798636],[-79.223472,34.797785],[-79.229718,34.801188],[-79.227934,34.806008],[-79.215442,34.806859],[-79.196704,34.812814],[-79.192243,34.812814],[-79.182428,34.816783],[-79.176182,34.82047],[-79.152983,34.836349],[-79.149414,34.831812],[-79.14763,34.826424],[-79.140492,34.822738],[-79.132461,34.821037],[-79.128892,34.817067],[-79.127108,34.819619],[-79.123539,34.830111],[-79.117293,34.829543],[-79.106586,34.826991],[-79.099447,34.826991],[-79.095878,34.828409],[-79.093202,34.832946],[-79.086064,34.835498],[-79.086064,34.836349],[-79.093202,34.850527],[-79.08874,34.853079],[-79.087848,34.850527],[-79.079818,34.845423],[-79.070895,34.836916],[-79.066434,34.82926],[-79.056619,34.822738],[-79.05305,34.826141],[-79.063757,34.836349],[-79.056619,34.840602],[-79.050373,34.84202],[-79.046804,34.849392],[-79.044127,34.851377],[-79.036097,34.844005],[-79.03342,34.850243],[-79.030743,34.851094],[-79.02539,34.85875],[-79.022713,34.864421],[-79.010221,34.87236],[-79.009329,34.876897],[-78.998622,34.877748],[-78.987022,34.87151],[-78.980776,34.866973],[-78.978992,34.86357],[-78.976315,34.86357],[-78.976315,34.866406],[-78.968285,34.865272],[-78.959362,34.864704],[-78.945978,34.85875],[-78.94687,34.856481],[-78.940624,34.852228],[-78.931702,34.851094],[-78.933486,34.86272],[-78.932594,34.864704],[-78.926348,34.863854],[-78.924564,34.8596],[-78.920995,34.855347],[-78.917426,34.849392],[-78.913857,34.846273],[-78.904934,34.834364],[-78.89958,34.832095],[-78.901365,34.830394],[-78.897796,34.821887],[-78.893334,34.817067],[-78.893334,34.814515],[-78.889765,34.811396],[-78.884412,34.812247],[-78.886196,34.809695],[-78.88352,34.806008],[-78.884412,34.802039],[-78.879058,34.796084],[-78.878166,34.79098],[-78.866567,34.775384],[-78.866567,34.76943],[-78.864782,34.767445],[-78.865674,34.763475],[-78.862105,34.756953],[-78.857644,34.754401],[-78.858536,34.7527],[-78.856752,34.747029],[-78.854967,34.73597],[-78.849613,34.732567],[-78.841583,34.723493],[-78.83623,34.717822],[-78.83266,34.718389],[-78.83266,34.715837],[-78.826415,34.712718],[-78.813923,34.698257],[-78.812138,34.695138],[-78.808569,34.691735],[-78.805893,34.68578],[-78.808569,34.681811],[-78.805893,34.674155],[-78.810354,34.669051],[-78.808569,34.667349],[-78.814815,34.665081],[-78.820169,34.659693],[-78.819277,34.656007],[-78.814815,34.656574],[-78.813031,34.650903],[-78.818384,34.650052],[-78.820169,34.641546],[-78.821953,34.638426],[-78.826415,34.638994],[-78.829984,34.631621],[-78.828199,34.628786],[-78.829091,34.623965],[-78.833553,34.621413],[-78.83266,34.617443],[-78.834445,34.614891],[-78.831768,34.611489],[-78.833553,34.601564],[-78.840691,34.597027],[-78.835337,34.59646],[-78.835337,34.593057],[-78.839799,34.589088],[-78.843368,34.589088],[-78.84426,34.57973],[-78.848721,34.574626],[-78.857644,34.572358],[-78.856752,34.569806],[-78.859428,34.567821],[-78.858536,34.563001],[-78.854075,34.557329],[-78.856752,34.554777],[-78.857644,34.548823],[-78.855859,34.547972],[-78.860321,34.537197],[-78.854967,34.533227],[-78.856752,34.530392],[-78.854075,34.52784],[-78.854967,34.522168],[-78.85229,34.517915],[-78.856752,34.514796],[-78.850506,34.513662],[-78.84426,34.507991],[-78.846937,34.503737],[-78.846937,34.500618],[-78.854075,34.501469],[-78.867459,34.493813],[-78.868351,34.484455],[-78.87192,34.482187],[-78.874597,34.478501],[-78.880843,34.475382],[-78.882627,34.47283],[-78.887981,34.470278],[-78.887981,34.466308],[-78.89155,34.465174],[-78.896011,34.46092],[-78.898688,34.460353],[-78.903149,34.45695],[-78.909395,34.454682],[-78.912072,34.456383],[-78.914749,34.454682],[-78.926348,34.452697],[-78.929917,34.453831],[-78.935271,34.453548],[-78.937948,34.451279],[-78.941517,34.45213],[-78.948655,34.449578],[-78.960254,34.442489],[-78.962931,34.437669],[-78.967392,34.434549],[-78.967392,34.431714],[-78.971854,34.426893],[-78.969177,34.420939],[-78.972746,34.418387],[-78.969177,34.416118],[-78.970961,34.413283],[-78.968285,34.410164],[-78.970069,34.408462],[-78.968285,34.40194],[-78.970961,34.40109],[-78.970961,34.396836],[-78.97453,34.394568],[-78.977207,34.390315],[-78.987914,34.392867],[-78.995053,34.392583],[-78.995053,34.390031],[-78.998622,34.390882],[-79.002191,34.38436],[-79.006652,34.384076],[-79.012006,34.380957],[-79.008437,34.376704],[-79.008437,34.372451],[-79.003083,34.368197],[-79.003083,34.364228],[-79.010221,34.353452],[-79.017359,34.35005],[-79.022713,34.353169],[-79.026282,34.3509],[-79.028959,34.346647],[-79.029851,34.342394],[-79.032528,34.342394],[-79.032528,34.339842],[-79.036097,34.336439],[-79.036989,34.332469],[-79.034312,34.325097],[-79.035204,34.319142],[-79.039666,34.319709],[-79.036989,34.315739],[-79.038774,34.313187],[-79.044127,34.310635],[-79.049481,34.311486],[-79.051265,34.314889],[-79.055727,34.313187],[-79.060188,34.306666],[-79.065541,34.308367],[-79.06911,34.306666],[-79.06911,34.303263],[-79.071787,34.29901],[-79.145845,34.361675],[-79.201166,34.408462],[-79.236856,34.437669],[-79.258271,34.45695],[-79.285038,34.479635],[-79.316268,34.508841],[-79.359096,34.54542],[-79.375157,34.559031],[-79.41977,34.59646],[-79.460814,34.629069],[-79.472414,34.637292],[-79.489367,34.653171],[-79.500074,34.661395],[-79.542011,34.695988],[-79.554502,34.70648],[-79.570563,34.717822],[-79.60893,34.750148],[-79.67585,34.804591],[-79.749016,34.805441],[-79.761508,34.806008],[-79.874825,34.805441],[-80.000634,34.80771],[-80.045248,34.809411],[-80.099676,34.810262],[-80.124659,34.810262],[-80.165703,34.811396],[-80.19604,34.811963],[-80.211209,34.812247],[-80.249576,34.812814],[-80.298651,34.813664],[-80.330772,34.813664],[-80.374493,34.814515],[-80.405722,34.815082],[-80.453905,34.816216],[-80.49138,34.816783],[-80.500302,34.817067],[-80.559192,34.817067],[-80.627004,34.817918],[-80.624327,34.822738],[-80.62165,34.833797],[-80.622543,34.849676],[-80.618973,34.857332],[-80.618081,34.867824],[-80.616297,34.873778],[-80.618973,34.885404],[-80.623435,34.891075],[-80.623435,34.895612],[-80.625219,34.899015],[-80.624327,34.922266],[-80.622543,34.929072],[-80.624327,34.953174],[-80.629681,34.956577],[-80.622543,34.965083],[-80.618973,34.975008],[-80.617189,34.97756],[-80.615404,34.984932],[-80.61362,34.988051],[-80.612728,34.995991],[-80.610051,35.004214],[-80.609159,35.009885],[-80.605589,35.021511],[-80.60202,35.034271],[-80.60202,35.037674],[-80.645741,35.069999],[-80.661802,35.08361],[-80.653772,35.087863],[-80.65288,35.095236],[-80.657341,35.100907],[-80.651095,35.105444],[-80.648418,35.105444],[-80.644849,35.112816],[-80.64128,35.116786],[-80.635034,35.107429],[-80.631465,35.106862],[-80.627896,35.109981],[-80.620758,35.116786],[-80.624327,35.117637],[-80.618973,35.121039],[-80.616297,35.120189],[-80.614512,35.12586],[-80.610051,35.132665],[-80.617189,35.136919],[-80.628788,35.145425],[-80.600236,35.168677],[-80.551161,35.208091],[-80.600236,35.233895],[-80.606482,35.231343],[-80.610943,35.22794],[-80.617189,35.224537],[-80.625219,35.22312],[-80.635926,35.223687],[-80.642172,35.222836],[-80.656449,35.216314],[-80.664479,35.209509],[-80.672509,35.206957],[-80.673402,35.203838],[-80.678755,35.207241],[-80.686786,35.202987],[-80.684109,35.199585],[-80.68857,35.198734],[-80.692139,35.201286],[-80.705523,35.192212],[-80.7082,35.194481],[-80.721584,35.199585],[-80.726937,35.202137],[-80.726937,35.212061],[-80.723368,35.217165],[-80.724261,35.219433],[-80.717123,35.217165],[-80.713553,35.218016],[-80.709092,35.215747],[-80.709092,35.213195],[-80.703739,35.209509],[-80.692139,35.21121],[-80.683216,35.210643],[-80.672509,35.208658],[-80.686786,35.214897],[-80.685893,35.221418],[-80.678755,35.230492],[-80.673402,35.233611],[-80.657341,35.247789],[-80.653772,35.257146],[-80.651095,35.259982],[-80.659125,35.263668],[-80.668048,35.269056],[-80.68054,35.306485],[-80.693924,35.34675],[-80.7082,35.354973],[-80.720692,35.362629],[-80.712661,35.369435],[-80.706415,35.379926],[-80.699277,35.401193],[-80.692139,35.408282],[-80.68054,35.412535],[-80.673402,35.419057],[-80.678755,35.423594],[-80.68054,35.428698],[-80.687678,35.429265],[-80.68857,35.438623],[-80.692139,35.446846],[-80.701062,35.458471],[-80.70017,35.462725],[-80.702846,35.466978],[-80.701954,35.472649],[-80.70017,35.475201],[-80.693031,35.477753],[-80.68857,35.481723],[-80.68857,35.506393],[-80.674294,35.506109],[-80.670725,35.516317],[-80.669833,35.527092],[-80.666263,35.534748],[-80.667156,35.539001],[-80.671617,35.542971],[-80.678755,35.546941],[-80.685001,35.553746],[-80.685893,35.563954],[-80.685001,35.568775],[-80.681432,35.572178],[-80.672509,35.57473],[-80.661802,35.574446],[-80.64931,35.567924],[-80.638603,35.563671],[-80.636819,35.581535],[-80.615404,35.592877],[-80.594882,35.601667],[-80.594882,35.606488],[-80.559192,35.598832],[-80.5467,35.595429],[-80.542239,35.601384],[-80.524393,35.597981],[-80.51904,35.595713],[-80.505656,35.59628],[-80.498518,35.595713],[-80.495841,35.613293],[-80.486026,35.621233],[-80.477996,35.626337],[-80.475319,35.633142],[-80.469965,35.632292],[-80.466396,35.635694],[-80.461043,35.632292],[-80.461935,35.628322],[-80.457474,35.62662],[-80.447659,35.640515],[-80.44409,35.638246],[-80.439628,35.646469],[-80.439628,35.650723],[-80.442305,35.654125],[-80.440521,35.663199],[-80.447659,35.66405],[-80.415537,35.677661],[-80.416429,35.682481],[-80.420891,35.688436],[-80.414645,35.689003],[-80.411076,35.682481],[-80.406615,35.686451],[-80.407507,35.689286],[-80.410184,35.692405],[-80.409291,35.696659],[-80.41286,35.69836],[-80.409291,35.706583],[-80.397692,35.720194],[-80.392338,35.721895],[-80.388769,35.71906],[-80.379847,35.71906],[-80.370032,35.715941],[-80.35754,35.717642],[-80.340587,35.721045],[-80.333449,35.71906],[-80.328988,35.721612],[-80.325419,35.729835],[-80.325419,35.737774],[-80.328095,35.743446],[-80.308466,35.758191],[-80.301327,35.7701],[-80.299543,35.776905],[-80.279913,35.776905],[-80.273667,35.785412],[-80.271883,35.79165],[-80.268314,35.797605],[-80.266529,35.791083],[-80.263852,35.791083],[-80.261176,35.785128],[-80.259391,35.788531],[-80.253145,35.793635],[-80.251361,35.808664],[-80.257606,35.809231],[-80.25493,35.811783],[-80.251361,35.811216],[-80.248684,35.814618],[-80.249576,35.820857],[-80.240653,35.822841],[-80.239761,35.82114],[-80.244222,35.814618],[-80.238869,35.813768],[-80.233515,35.814335],[-80.231731,35.818588],[-80.226377,35.819439],[-80.224593,35.822558],[-80.219239,35.824543],[-80.2237,35.827095],[-80.222808,35.831065],[-80.220131,35.832199],[-80.214778,35.830214],[-80.211209,35.831915],[-80.211209,35.835601],[-80.200502,35.836736],[-80.199609,35.842123],[-80.194256,35.843541],[-80.173734,35.846093],[-80.169272,35.847794],[-80.154996,35.858853],[-80.14875,35.863106],[-80.138043,35.867643],[-80.12912,35.874732],[-80.117521,35.877001],[-80.109491,35.876434],[-80.083615,35.882105],[-80.08183,35.882955],[-80.079154,35.878986],[-80.072908,35.883522],[-80.074692,35.886358],[-80.070231,35.888059],[-80.072908,35.891462],[-80.071123,35.896282],[-80.077369,35.898834],[-80.091645,35.897984],[-80.095214,35.900536],[-80.087184,35.904506],[-80.088076,35.90564],[-80.08183,35.908759],[-80.080938,35.913012],[-80.084507,35.919818],[-80.08183,35.921235],[-80.079154,35.918967],[-80.080046,35.92322],[-80.079154,35.926339],[-80.072015,35.926339],[-80.072015,35.92322],[-80.064877,35.92237],[-80.06577,35.924922],[-80.062201,35.924638],[-80.062201,35.920668],[-80.051493,35.919534],[-80.051493,35.916415],[-80.047032,35.916415],[-80.048817,35.887776],[-80.049709,35.867076],[-80.053278,35.801858],[-80.052386,35.802709],[-80.045248,35.79959],[-80.042571,35.801858],[-80.031864,35.801291],[-80.029187,35.802142],[-80.02651,35.796187],[-80.021156,35.792784],[-80.015803,35.795053],[-80.015803,35.789382],[-80.012234,35.78768],[-80.002419,35.78683],[-79.992604,35.792501],[-79.992604,35.795904],[-79.982789,35.796187],[-79.981897,35.798456],[-79.972082,35.802709],[-79.964944,35.802709],[-79.962267,35.798739],[-79.964052,35.792501],[-79.963159,35.788248],[-79.95959,35.78683],[-79.955129,35.782009],[-79.953344,35.775204],[-79.939068,35.772652],[-79.934607,35.775771],[-79.927469,35.776055],[-79.929253,35.724164],[-79.925684,35.722462],[-79.911408,35.716791],[-79.913192,35.711687],[-79.907839,35.710837],[-79.906947,35.714806],[-79.901593,35.712538],[-79.898916,35.707434],[-79.894455,35.709135],[-79.894455,35.704882]]]}},{"type":"Feature","properties":{"district":9},"geometry":{"type":"Polygon","coordinates":[[[-80.941081,35.259698],[-80.945542,35.2614],[-80.946434,35.259131],[-80.950896,35.259698],[-80.955357,35.256579],[-80.95714911533562,35.25729104495102],[-80.958926,35.257997],[-80.960711,35.254878],[-80.965172,35.255729],[-80.973202,35.245521],[-80.97326415379939,35.24534328967242],[-80.974987,35.240417],[-80.959818,35.237298],[-80.959818,35.23408234885157],[-80.959818,35.233044],[-80.953573,35.233044],[-80.948219,35.228791],[-80.955357,35.232194],[-80.95676281953736,35.23040696640727],[-80.958034,35.228791],[-80.958034,35.224537],[-80.961603,35.223687],[-80.958926,35.212061],[-80.95895689999675,35.21199226812064],[-80.961603,35.206106],[-80.962495,35.200435],[-80.95957698294117,35.19162557291447],[-80.958926,35.18966],[-80.942865,35.193063],[-80.93612833240425,35.19345225476017],[-80.93305,35.19363],[-80.929481,35.18966],[-80.932158,35.186257],[-80.92836437236909,35.17714924763393],[-80.924128,35.166976],[-80.921451,35.163573],[-80.928589,35.162722],[-80.9290978897194,35.162810266782095],[-80.938404,35.164424],[-80.94465,35.170378],[-80.9513712476311,35.17037811007654],[-80.955357,35.170378],[-80.955357,35.166408],[-80.951788,35.157902],[-80.954465,35.153648],[-80.95433205307641,35.15366611717003],[-80.948219,35.154499],[-80.942865,35.148544],[-80.93461818200444,35.143115334519386],[-80.930374,35.140321],[-80.925912,35.136351],[-80.920559,35.128412],[-80.91860178157995,35.12690140903283],[-80.914313,35.123591],[-80.90539,35.118487],[-80.903606,35.12189],[-80.89952477509225,35.1234458503842],[-80.899144,35.123591],[-80.893791,35.122174],[-80.898252,35.113667],[-80.89425832697606,35.10757494149269],[-80.893791,35.106862],[-80.882191,35.10119],[-80.87773,35.098355],[-80.87638327981513,35.10285044092454],[-80.875946,35.10431],[-80.870592,35.109414],[-80.86728795717265,35.12201377398573],[-80.867023,35.123024],[-80.864346,35.127561],[-80.870592,35.127845],[-80.870592,35.136351],[-80.87218069990121,35.13692817336022],[-80.876838,35.13862],[-80.87621112954182,35.155559644107726],[-80.875946,35.162722],[-80.87594599999998,35.17667122311483],[-80.875946,35.189376],[-80.872377,35.195331],[-80.87078533923504,35.19654495144368],[-80.867915,35.198734],[-80.860777,35.207241],[-80.859885,35.209509],[-80.85565498383104,35.213407465117236],[-80.850962,35.217732],[-80.845609,35.219717],[-80.83847,35.213762],[-80.83582984662193,35.21334257487753],[-80.834901,35.213195],[-80.833117,35.218016],[-80.829548,35.220568],[-80.818841,35.221418],[-80.81688125671432,35.223520146173776],[-80.811703,35.229074],[-80.81081,35.233044],[-80.808133,35.232761],[-80.80065042915655,35.237754515978004],[-80.799211,35.238715],[-80.79475,35.235596],[-80.788504,35.234746],[-80.78315,35.238715],[-80.77898496728955,35.23720267474331],[-80.776904,35.236447],[-80.77512,35.233044],[-80.78315,35.230492],[-80.784935,35.22794],[-80.79118794135233,35.22570446039963],[-80.792073,35.225388],[-80.793857,35.221985],[-80.795642,35.222269],[-80.797426,35.226239],[-80.800103,35.225388],[-80.799211,35.219433],[-80.79953188273905,35.216883348624535],[-80.800103,35.212345],[-80.80278,35.208942],[-80.806349,35.208658],[-80.809918,35.21036],[-80.812595,35.208658],[-80.80952611613124,35.20631821337223],[-80.808133,35.205256],[-80.811703,35.202137],[-80.81081,35.190511],[-80.80637120228118,35.19079317180677],[-80.801888,35.191078],[-80.800995,35.189376],[-80.79475,35.191078],[-80.792073,35.193063],[-80.792073,35.196465],[-80.7891015750598,35.1994554120264],[-80.786719,35.201853],[-80.776904,35.201002],[-80.770658,35.198167],[-80.76757590117627,35.19490297966626],[-80.75179478535087,35.178185046162895],[-80.749244,35.175482],[-80.756382,35.176049],[-80.757274,35.17293],[-80.75549,35.167259],[-80.75888428159587,35.1670795801907],[-80.760843,35.166976],[-80.749244,35.157051],[-80.74680365372471,35.15162249336128],[-80.744783,35.147127],[-80.741214,35.14259],[-80.737645,35.133799],[-80.7357761797745,35.134467108748936],[-80.730506,35.136351],[-80.732291,35.13862],[-80.721584,35.14259],[-80.72446367521005,35.14594592098873],[-80.732291,35.155066],[-80.737645,35.159603],[-80.73422249226302,35.161976134648924],[-80.72783,35.166408],[-80.725153,35.170095],[-80.726937,35.172647],[-80.720692,35.176333],[-80.7213795715265,35.1768137560539],[-80.725153,35.179452],[-80.730506,35.185974],[-80.726937,35.193063],[-80.72588937460473,35.19433950911413],[-80.721584,35.199585],[-80.7082,35.194481],[-80.70588184827109,35.19251616719176],[-80.705523,35.192212],[-80.692139,35.201286],[-80.68857,35.198734],[-80.68546457303871,35.19932642410861],[-80.684109,35.199585],[-80.686786,35.202987],[-80.678755,35.207241],[-80.673402,35.203838],[-80.67268533698058,35.20634112359981],[-80.672509,35.206957],[-80.664479,35.209509],[-80.656449,35.216314],[-80.65218640666623,35.21826151744069],[-80.642172,35.222836],[-80.635926,35.223687],[-80.62790186121403,35.22326216288474],[-80.625219,35.22312],[-80.617189,35.224537],[-80.610943,35.22794],[-80.606482,35.231343],[-80.60528996612511,35.23183008015069],[-80.600236,35.233895],[-80.58324975908265,35.2249676059462],[-80.56151688747111,35.21353921740515],[-80.551161,35.208091],[-80.56080953972678,35.200346473384535],[-80.57923902607068,35.185547571904245],[-80.59766180077557,35.17074587971232],[-80.600236,35.168677],[-80.61597842337551,35.155859255688185],[-80.628788,35.145425],[-80.6230241055796,35.14119847131488],[-80.617189,35.136919],[-80.610051,35.132665],[-80.61437384554637,35.1260707662247],[-80.614512,35.12586],[-80.616297,35.120189],[-80.618973,35.121039],[-80.624327,35.117637],[-80.620758,35.116786],[-80.62401035280686,35.113685567905954],[-80.627896,35.109981],[-80.631465,35.106862],[-80.635034,35.107429],[-80.64029907530814,35.11531666098684],[-80.64128,35.116786],[-80.644849,35.112816],[-80.648418,35.105444],[-80.651095,35.105444],[-80.65511104087552,35.10252690334215],[-80.657341,35.100907],[-80.65288,35.095236],[-80.653772,35.087863],[-80.65841131389536,35.08540595777058],[-80.661802,35.08361],[-80.64668459970457,35.07079884388055],[-80.645741,35.069999],[-80.6276028247369,35.05659360032492],[-80.60846293022325,35.04244015594432],[-80.60202,35.037674],[-80.60202,35.034271],[-80.604910765228,35.023936160723636],[-80.605589,35.021511],[-80.609159,35.009885],[-80.610051,35.004214],[-80.6103407394862,35.00332408341712],[-80.612728,34.995991],[-80.61362,34.988051],[-80.615404,34.984932],[-80.61590456395832,34.98286482143511],[-80.617189,34.97756],[-80.618973,34.975008],[-80.622543,34.965083],[-80.62421535599532,34.963090332290356],[-80.629681,34.956577],[-80.624327,34.953174],[-80.6237611764717,34.94553121031207],[-80.622543,34.929072],[-80.62372838034925,34.92454987616252],[-80.624327,34.922266],[-80.62504711325604,34.90349644944205],[-80.625219,34.899015],[-80.623435,34.895612],[-80.623435,34.891075],[-80.618973,34.885404],[-80.61860192794909,34.88379206102054],[-80.616297,34.873778],[-80.618081,34.867824],[-80.61848749131543,34.86304304705188],[-80.618973,34.857332],[-80.622543,34.849676],[-80.62213889362397,34.84249108768179],[-80.62165,34.833797],[-80.624327,34.822738],[-80.62490125314305,34.82170409648408],[-80.627004,34.817918],[-80.6476372673892,34.81862037684827],[-80.651987,34.818768],[-80.671617,34.818768],[-80.67335299703906,34.81878953180318],[-80.69906981790005,34.81910561165793],[-80.718015,34.819335],[-80.72478600324905,34.819216181019264],[-80.750136,34.818768],[-80.75049963914486,34.818777954979026],[-80.77620522160613,34.81947892324154],[-80.781366,34.819619],[-80.797426,34.819619],[-80.79706433787412,34.82329830245323],[-80.796534,34.828693],[-80.79472384787422,34.844325175938074],[-80.79228870489936,34.86534526382245],[-80.79118,34.874912],[-80.7895822097187,34.88634206476271],[-80.786648658905,34.90731938965821],[-80.785827,34.913193],[-80.78401903849928,34.92832327716034],[-80.78315,34.935594],[-80.79272887239813,34.946953592410374],[-80.806349,34.963099],[-80.80745436283365,34.96427707941627],[-80.821517,34.979261],[-80.82312810847812,34.98103629878417],[-80.834901,34.994006],[-80.83833398603218,34.998081724372796],[-80.85297631672911,35.01545981209346],[-80.86762487137531,35.032836140580926],[-80.875053,35.041644],[-80.88248161306493,35.05009412723911],[-80.892006,35.060925],[-80.89833967719072,35.066712162192964],[-80.899144,35.067447],[-80.906283,35.076805],[-80.91302367192895,35.08403751581963],[-80.9286755815263,35.1008251083357],[-80.934835,35.107429],[-80.94737142678248,35.09975728645078],[-80.958926,35.092684],[-80.96823589407367,35.087335679429124],[-80.98935090575443,35.075200352245204],[-81.000863,35.068581],[-81.01024811755289,35.06282287906506],[-81.026738,35.052702],[-81.03110585833207,35.05041634561611],[-81.041907,35.044763],[-81.04726,35.051001],[-81.0494293182573,35.05341396270545],[-81.052614,35.056956],[-81.05886,35.062343],[-81.05886000000001,35.07163292681381],[-81.05886,35.07567],[-81.057967,35.085878],[-81.05448623092059,35.092100828135564],[-81.050829,35.098638],[-81.04726,35.10034],[-81.038338,35.101758],[-81.03519412189176,35.103505686139904],[-81.034769,35.103742],[-81.032092,35.109981],[-81.032984,35.114518],[-81.03765028136513,35.12320318535918],[-81.03923,35.126143],[-81.051722,35.131247],[-81.051722,35.134367],[-81.05078524302897,35.13764152665477],[-81.049045,35.143724],[-81.043691,35.147977],[-81.03299445230013,35.14854344695102],[-81.032984,35.148544],[-81.024061,35.147694],[-81.016923,35.153648],[-81.012462,35.151947],[-81.01098383491832,35.152651520849545],[-81.008893,35.153648],[-81.006216,35.161021],[-81.008001,35.164424],[-81.004432,35.168677],[-81.00413206990177,35.17125025076984],[-81.002647,35.183989],[-81.005324,35.187675],[-81.00608344165661,35.19165892984654],[-81.007108,35.197033],[-81.006216,35.205539],[-81.007108,35.21036],[-81.00860554017174,35.212263720216114],[-81.015139,35.220568],[-81.015139,35.22312],[-81.01236025836722,35.231509423852344],[-81.01157,35.233895],[-81.01157,35.241267],[-81.008893,35.248073],[-81.01174697913852,35.25147398929689],[-81.012462,35.252326],[-81.015139,35.258848],[-81.016031,35.269623],[-81.01487229294153,35.27183280890584],[-81.01157,35.27813],[-81.00722159009068,35.29194615668735],[-81.007108,35.292307],[-81.002647,35.300814],[-81.002647,35.304217],[-80.99592125457073,35.310154705836375],[-80.994617,35.311306],[-80.990155,35.320947],[-80.983017,35.325767],[-80.98250462209398,35.32739583699093],[-80.981233,35.331438],[-80.985694,35.338527],[-80.982125,35.342497],[-80.97749851301273,35.34396706411537],[-80.974987,35.344765],[-80.973202,35.349869],[-80.969633,35.35072],[-80.962495,35.34675],[-80.95921001980226,35.349046800828994],[-80.958034,35.349869],[-80.946434,35.349869],[-80.942865,35.351004],[-80.93583824464487,35.35547008799242],[-80.93305,35.357242],[-80.926805,35.357525],[-80.923236,35.359227],[-80.924128,35.361779],[-80.930374,35.363197],[-80.93252189433808,35.362709415525266],[-80.93662,35.361779],[-80.942865,35.364898],[-80.949111,35.365749],[-80.955357,35.369151],[-80.95554247864395,35.369504658504326],[-80.958034,35.374255],[-80.962495,35.375673],[-80.97130251039675,35.36600420068673],[-80.97231,35.364898],[-80.975879,35.364047],[-80.981233,35.366032],[-80.985694,35.371703],[-80.9863678681475,35.376844750833335],[-80.986586,35.378509],[-80.984802,35.381061],[-80.979448,35.381061],[-80.971418,35.385881],[-80.96697380881285,35.38759634674501],[-80.958926,35.390702],[-80.955357,35.393537],[-80.955357,35.398641],[-80.95772941217156,35.4029135008848],[-80.958034,35.403462],[-80.959818,35.412819],[-80.956249,35.419057],[-80.95679188349284,35.42319411671233],[-80.957142,35.425862],[-80.959818,35.431817],[-80.957142,35.437772],[-80.953573,35.440891],[-80.95301698407589,35.44230450572554],[-80.950896,35.447696],[-80.947327,35.449398],[-80.943758,35.453367],[-80.94465,35.459322],[-80.9456740038313,35.46013562576335],[-80.951788,35.464993],[-80.95268,35.470097],[-80.94965270435897,35.47875579897932],[-80.949111,35.480305],[-80.946434,35.483424],[-80.948219,35.49023],[-80.950896,35.492215],[-80.95752230457192,35.49432043415811],[-80.958034,35.494483],[-80.961603,35.497035],[-80.96428,35.506109],[-80.95873359479988,35.51205806709958],[-80.957142,35.513765],[-80.956249,35.516317],[-80.958034,35.521137],[-80.957142,35.531345],[-80.95606015710631,35.53191806254975],[-80.954465,35.532763],[-80.947327,35.527092],[-80.941973,35.527943],[-80.94465,35.533614],[-80.94535967157871,35.53434697159569],[-80.948219,35.5373],[-80.958926,35.543822],[-80.960711,35.547792],[-80.95896839167806,35.54953250638299],[-80.954465,35.55403],[-80.958034,35.567357],[-80.95750714982412,35.56897547541239],[-80.955357,35.57558],[-80.950896,35.581251],[-80.946434,35.584654],[-80.94353483664821,35.585690588284464],[-80.939296,35.587206],[-80.93305,35.592027],[-80.93305,35.595713],[-80.93950360171964,35.59981459798759],[-80.941081,35.600817],[-80.943758,35.605637],[-80.941973,35.610458],[-80.938404,35.61301],[-80.93225465645703,35.61476881531938],[-80.929481,35.615562],[-80.925912,35.618114],[-80.924128,35.621516],[-80.93520296933197,35.62811582507995],[-80.938404,35.630023],[-80.94465,35.637396],[-80.95346269047621,35.642742053651766],[-80.954465,35.64335],[-80.956249,35.649872],[-80.959818,35.653842],[-80.961603,35.66008],[-80.9632765120716,35.66167572353049],[-80.965172,35.663483],[-80.966957,35.670855],[-80.974095,35.675109],[-80.9774070233881,35.67811674416661],[-80.98034,35.68078],[-80.987479,35.692405],[-80.991048,35.693256],[-80.9919223849101,35.69461088389481],[-80.998186,35.704315],[-81.005324,35.709986],[-81.0077601365939,35.71052210213871],[-81.016923,35.712538],[-81.024954,35.71112],[-81.03267638603384,35.708666444002425],[-81.035661,35.707718],[-81.04726,35.707434],[-81.05804988313794,35.70985481806096],[-81.062429,35.710837],[-81.065998,35.714239],[-81.06689,35.71991],[-81.065106,35.726716],[-81.06517046378909,35.72699267114076],[-81.06689,35.734372],[-81.069567,35.739192],[-81.07713226522006,35.74480239429866],[-81.077597,35.745147],[-81.082059,35.750251],[-81.090089,35.75734],[-81.08877434663661,35.76193438749569],[-81.088304,35.763578],[-81.093658,35.768399],[-81.102581,35.767831],[-81.105257,35.769533],[-81.10713522554735,35.77202004821432],[-81.110611,35.776622],[-81.107042,35.778607],[-81.107042,35.781159],[-81.102581,35.784278],[-81.101688,35.78768],[-81.10041497880049,35.788624160050695],[-81.093658,35.793635],[-81.08652,35.796754],[-81.08040752987192,35.80185351483124],[-81.079382,35.802709],[-81.079382,35.80838],[-81.075813,35.814618],[-81.070459,35.818304],[-81.0693457181529,35.81971935899513],[-81.064213,35.826244],[-81.061537,35.835318],[-81.0584845591918,35.838519229129496],[-81.052614,35.844675],[-81.04313074823312,35.855570529048606],[-81.041014,35.858002],[-81.041014,35.85942],[-81.03520695720786,35.87546521607241],[-81.029415,35.891462],[-81.02793434754854,35.895741027870564],[-81.02089705752716,35.91607195038772],[-81.0196,35.919818],[-81.01380707336752,35.93639126568795],[-81.00670235559097,35.956707634241525],[-81.006216,35.958098],[-81.005324,35.971425],[-80.99751081376643,35.971425238419414],[-80.990155,35.971425],[-80.97143037324385,35.97094343387504],[-80.957142,35.970574],[-80.94534909791666,35.97044204842566],[-80.91926208542435,35.97014605818531],[-80.907175,35.970007],[-80.903606,35.969724],[-80.89319168601784,35.96962406253342],[-80.86710426547783,35.96936977204059],[-80.845609,35.969156],[-80.847393,35.965754],[-80.84736810269224,35.96574806386219],[-80.843824,35.964903],[-80.834901,35.965754],[-80.829548,35.958098],[-80.82707632239025,35.957626618222264],[-80.820625,35.956396],[-80.817948,35.952994],[-80.820625,35.949591],[-80.824194,35.949875],[-80.82574834017369,35.945265018104934],[-80.826871,35.941935],[-80.823302,35.936547],[-80.818841,35.936264],[-80.817948,35.930309],[-80.81607565031571,35.929119019607526],[-80.809026,35.924638],[-80.814379,35.922937],[-80.817948,35.919818],[-80.82397403827567,35.918996974975244],[-80.824194,35.918967],[-80.824194,35.914714],[-80.818841,35.91046],[-80.817948,35.913863],[-80.80919662252963,35.9131042598271],[-80.808133,35.913012],[-80.806349,35.906207],[-80.796534,35.899685],[-80.79586892295477,35.89672499817989],[-80.795642,35.895715],[-80.79118,35.895432],[-80.792965,35.891178],[-80.795642,35.88891],[-80.795642,35.884657],[-80.80110930656922,35.8858152419218],[-80.806349,35.886925],[-80.812595,35.885507],[-80.814379,35.882955],[-80.81751517682595,35.87480299255307],[-80.8252675135591,35.854644439377395],[-80.83301590901957,35.83448538849218],[-80.83847,35.820289],[-80.84204,35.822841],[-80.839363,35.823692],[-80.83936299999999,35.82374721833384],[-80.839363,35.830214],[-80.844716,35.830497],[-80.845609,35.834467],[-80.850962,35.83254332008697],[-80.850962,35.834467],[-80.850962,35.829363],[-80.844716,35.819155],[-80.846501,35.816887],[-80.85123289976296,35.81658654011842],[-80.868807,35.815469],[-80.865238,35.820289],[-80.86671567368101,35.82028901826223],[-80.8697,35.820289],[-80.870592,35.815185],[-80.876838,35.815185],[-80.880407,35.819439],[-80.882191,35.816887],[-80.88267993184098,35.816887008044255],[-80.886653,35.816887],[-80.90802901854009,35.82132842611949],[-80.909852,35.821707],[-80.92941593057014,35.81021572831241],[-80.939296,35.80441],[-80.94792178743243,35.79563828615282],[-80.948219,35.795336],[-80.94699491625926,35.7746315833444],[-80.94574865494009,35.75354095506218],[-80.94465,35.734939],[-80.94211783752965,35.73353083246556],[-80.933943,35.728984],[-80.924128,35.726432],[-80.91833355324788,35.726432010823686],[-80.917882,35.726432],[-80.89244563746593,35.72441350486811],[-80.871484,35.722746],[-80.867023,35.724447],[-80.86700997713177,35.72445705269564],[-80.860777,35.729268],[-80.850962,35.718493],[-80.85043079130871,35.71908395462547],[-80.84204,35.728417],[-80.83847,35.733521],[-80.841147,35.735038864423586],[-80.841147,35.733521],[-80.841147,35.736924],[-80.829548,35.739476],[-80.827763,35.743446],[-80.83044,35.746565],[-80.82995310516266,35.7479578942623],[-80.825979,35.759325],[-80.818841,35.756489],[-80.81545918006714,35.755721659477175],[-80.806349,35.753654],[-80.804564,35.754221],[-80.792965,35.752519],[-80.7908230966484,35.75405059220779],[-80.789396,35.755071],[-80.789396,35.751669],[-80.76963995480287,35.74957657547826],[-80.765305,35.749117],[-80.765305,35.751952],[-80.751921,35.749117],[-80.75623166024398,35.748888839692924],[-80.762628,35.74855],[-80.762628,35.741177],[-80.76024814544849,35.73285873300407],[-80.759951,35.73182],[-80.748352,35.739192],[-80.75125131649898,35.73145128165539],[-80.75881532514805,35.71124915732018],[-80.76637550023763,35.69104655995264],[-80.772443,35.674825],[-80.7713339721229,35.67076253945876],[-80.76570820336072,35.65014835777333],[-80.759059,35.62577],[-80.75549,35.608756],[-80.75040556209981,35.58804983490031],[-80.745675,35.568775],[-80.74541079227886,35.56733112975974],[-80.74159023988696,35.54644628987591],[-80.741214,35.544389],[-80.741214,35.5373],[-80.741214,35.532196],[-80.73791366959105,35.52590331521747],[-80.737645,35.525391],[-80.738537,35.52454],[-80.737645,35.515183],[-80.738537,35.505258],[-80.73866303246892,35.505258795502776],[-80.76459995199117,35.50541971703972],[-80.784935,35.505542],[-80.78739148235253,35.501443380195354],[-80.788504,35.499587],[-80.788504,35.492782],[-80.78315,35.484559],[-80.7825291350539,35.481665613974556],[-80.780473,35.472082],[-80.774227,35.462100873711194],[-80.774227,35.463575],[-80.774227,35.457621],[-80.771551,35.453367],[-80.76605527707109,35.44238985361289],[-80.765305,35.440891],[-80.759059,35.428698],[-80.75649861021262,35.42277074545139],[-80.752813,35.414237],[-80.76352,35.411968],[-80.76424486224975,35.40897408544416],[-80.766197,35.40091],[-80.75549,35.394955],[-80.75390420147687,35.39301713096309],[-80.74389,35.380777],[-80.73844615799882,35.37616380974262],[-80.733183,35.371703],[-80.737645,35.366883],[-80.741214,35.365749],[-80.7436452717518,35.36033864160766],[-80.74389,35.359794],[-80.752813,35.359227],[-80.75549,35.356675],[-80.759059,35.350153],[-80.75962445118957,35.34745701695279],[-80.759951,35.3459],[-80.770658,35.340796],[-80.774227,35.331973103484096],[-80.774227,35.33399],[-80.774227,35.326334],[-80.784042,35.325484],[-80.785827,35.331438],[-80.7872631407976,35.33198595479205],[-80.790288,35.33314],[-80.797426,35.332572],[-80.795642,35.337393],[-80.80471513688711,35.338628696875546],[-80.808133,35.339094],[-80.818841,35.336542],[-80.824194,35.338527],[-80.82366534776183,35.34289694579294],[-80.82241,35.353272],[-80.812595,35.352421],[-80.81008614341124,35.350754313317275],[-80.80278,35.3459],[-80.795642,35.35072],[-80.79475,35.354123],[-80.79648304696502,35.356050744151325],[-80.800103,35.360077],[-80.788504,35.365181],[-80.7864123065418,35.370277107298705],[-80.785827,35.371703],[-80.787611,35.383613],[-80.795642,35.379926],[-80.79573114817343,35.37985990708863],[-80.803672,35.373972],[-80.815272,35.367733],[-80.81609476971238,35.3669486390424],[-80.819733,35.36348],[-80.82241,35.367733],[-80.827763,35.369435],[-80.83643571245138,35.3698590215285],[-80.839363,35.370002],[-80.845609,35.366599],[-80.85007,35.365749],[-80.856316,35.366599],[-80.858993,35.365181],[-80.8599917931477,35.36444874187724],[-80.87924325200419,35.35033046932816],[-80.882191,35.348168],[-80.886653,35.346467],[-80.892006,35.3459],[-80.899144,35.34675],[-80.90330346998503,35.345617277385074],[-80.90539,35.345049],[-80.911636,35.336826],[-80.914313,35.335692],[-80.91041400935632,35.32924795440626],[-80.909852,35.328319],[-80.924128,35.325767],[-80.926805,35.322648],[-80.925912,35.319812],[-80.92417295125558,35.31985161674842],[-80.913421,35.320096],[-80.911636,35.31726],[-80.916097,35.314141],[-80.916097,35.309888],[-80.91621770364468,35.309920875463014],[-80.922343,35.311589],[-80.920559,35.303933],[-80.92502,35.299113],[-80.92272316839544,35.29838275419193],[-80.919667,35.297411],[-80.91699,35.294009],[-80.90539,35.284084],[-80.9046935481544,35.28371517075072],[-80.89736,35.279831],[-80.89736,35.276428],[-80.904498,35.281532],[-80.90795736854443,35.28170584553998],[-80.921451,35.282383],[-80.930374,35.279547],[-80.93312211956562,35.27983830080945],[-80.938404,35.280398],[-80.937512,35.274727],[-80.941081,35.26429898545368],[-80.941081,35.268205],[-80.941081,35.259698]]]}},{"type":"Feature","properties":{"district":10},"geometry":{"type":"Polygon","coordinates":[[[-81.288172,35.795336],[-81.281926,35.797888],[-81.280141,35.801008],[-81.273003,35.801858],[-81.273003,35.80441],[-81.268542,35.80441],[-81.255158,35.80838],[-81.251589,35.814335],[-81.24802,35.815469],[-81.240882,35.812633],[-81.232851,35.812066],[-81.226605,35.809514],[-81.223929,35.810365],[-81.21679,35.816887],[-81.205191,35.822841],[-81.201622,35.823409],[-81.196268,35.82114],[-81.190915,35.821991],[-81.176639,35.822841],[-81.170393,35.825393],[-81.162362,35.824543],[-81.156117,35.827945],[-81.149871,35.828796],[-81.142733,35.827095],[-81.140948,35.812066],[-81.138271,35.80838],[-81.132918,35.805261],[-81.129349,35.800157],[-81.128456,35.789382],[-81.123995,35.784561],[-81.121318,35.784278],[-81.112396,35.779174],[-81.110611,35.776622],[-81.105257,35.769533],[-81.102581,35.767831],[-81.093658,35.768399],[-81.088304,35.763578],[-81.090089,35.75734],[-81.082059,35.750251],[-81.077597,35.745147],[-81.069567,35.739192],[-81.06689,35.734372],[-81.065106,35.726716],[-81.06689,35.71991],[-81.065998,35.714239],[-81.062429,35.710837],[-81.04726,35.707434],[-81.035661,35.707718],[-81.024954,35.71112],[-81.016923,35.712538],[-81.005324,35.709986],[-80.998186,35.704315],[-80.991048,35.693256],[-80.987479,35.692405],[-80.98034,35.68078],[-80.974095,35.675109],[-80.966957,35.670855],[-80.965172,35.663483],[-80.961603,35.66008],[-80.959818,35.653842],[-80.956249,35.649872],[-80.954465,35.64335],[-80.94465,35.637396],[-80.938404,35.630023],[-80.924128,35.621516],[-80.925912,35.618114],[-80.929481,35.615562],[-80.938404,35.61301],[-80.941973,35.610458],[-80.943758,35.605637],[-80.941081,35.600817],[-80.93305,35.595713],[-80.93305,35.592027],[-80.939296,35.587206],[-80.946434,35.584654],[-80.950896,35.581251],[-80.955357,35.57558],[-80.958034,35.567357],[-80.954465,35.55403],[-80.960711,35.547792],[-80.958926,35.543822],[-80.948219,35.5373],[-80.94465,35.533614],[-80.941973,35.527943],[-80.947327,35.527092],[-80.954465,35.532763],[-80.957142,35.531345],[-80.958034,35.521137],[-80.956249,35.516317],[-80.957142,35.513765],[-80.96428,35.506109],[-80.961603,35.497035],[-80.958034,35.494483],[-80.950896,35.492215],[-80.948219,35.49023],[-80.946434,35.483424],[-80.949111,35.480305],[-80.95268,35.470097],[-80.951788,35.464993],[-80.94465,35.459322],[-80.943758,35.453367],[-80.947327,35.449398],[-80.950896,35.447696],[-80.953573,35.440891],[-80.957142,35.437772],[-80.959818,35.431817],[-80.957142,35.425862],[-80.956249,35.419057],[-80.959818,35.412819],[-80.958034,35.403462],[-80.955357,35.398641],[-80.955357,35.393537],[-80.958926,35.390702],[-80.971418,35.385881],[-80.979448,35.381061],[-80.984802,35.381061],[-80.986586,35.378509],[-80.985694,35.371703],[-80.981233,35.366032],[-80.975879,35.364047],[-80.97231,35.364898],[-80.962495,35.375673],[-80.958034,35.374255],[-80.955357,35.369151],[-80.949111,35.365749],[-80.942865,35.364898],[-80.93662,35.361779],[-80.930374,35.363197],[-80.924128,35.361779],[-80.923236,35.359227],[-80.926805,35.357525],[-80.93305,35.357242],[-80.942865,35.351004],[-80.946434,35.349869],[-80.958034,35.349869],[-80.962495,35.34675],[-80.969633,35.35072],[-80.973202,35.349869],[-80.974987,35.344765],[-80.982125,35.342497],[-80.985694,35.338527],[-80.981233,35.331438],[-80.983017,35.325767],[-80.990155,35.320947],[-80.994617,35.311306],[-81.002647,35.304217],[-81.002647,35.300814],[-81.007108,35.292307],[-81.01157,35.27813],[-81.016031,35.269623],[-81.015139,35.258848],[-81.012462,35.252326],[-81.008893,35.248073],[-81.01157,35.241267],[-81.01157,35.233895],[-81.015139,35.22312],[-81.015139,35.220568],[-81.007108,35.21036],[-81.006216,35.205539],[-81.007108,35.197033],[-81.005324,35.187675],[-81.002647,35.183989],[-81.004432,35.168677],[-81.008001,35.164424],[-81.006216,35.161021],[-81.008893,35.153648],[-81.012462,35.151947],[-81.016923,35.153648],[-81.024061,35.147694],[-81.032984,35.148544],[-81.032984,35.148828],[-81.083843,35.151947],[-81.110611,35.153932],[-81.130241,35.154499],[-81.177531,35.157051],[-81.26408,35.161021],[-81.329216,35.163573],[-81.385428,35.165274],[-81.443426,35.167826],[-81.459486,35.168677],[-81.564774,35.17208],[-81.581727,35.17293],[-81.666492,35.176333],[-81.687014,35.177751],[-81.749472,35.179736],[-81.802116,35.181153],[-81.850298,35.183138],[-81.875281,35.183705],[-81.938632,35.185974],[-81.968969,35.187108],[-82.001091,35.188526],[-82.027859,35.188809],[-82.109947,35.191361],[-82.139392,35.193063],[-82.165267,35.19363],[-82.200066,35.194764],[-82.245571,35.197316],[-82.275908,35.200152],[-82.2884,35.198734],[-82.295538,35.194764],[-82.307137,35.193063],[-82.316952,35.190511],[-82.318737,35.187959],[-82.32409,35.184556],[-82.331229,35.186824],[-82.333905,35.190511],[-82.339259,35.188809],[-82.344612,35.193063],[-82.349966,35.192779],[-82.353535,35.190511],[-82.350858,35.22794],[-82.359781,35.228224],[-82.358889,35.24467],[-82.349074,35.244103],[-82.349074,35.249774],[-82.346397,35.28295],[-82.345505,35.286636],[-82.341936,35.288338],[-82.341043,35.291457],[-82.338367,35.294009],[-82.334798,35.300531],[-82.331229,35.303083],[-82.330336,35.307619],[-82.327659,35.309037],[-82.318737,35.307619],[-82.315168,35.31244],[-82.309814,35.314992],[-82.312491,35.31726],[-82.308922,35.320096],[-82.30803,35.325767],[-82.305353,35.326618],[-82.305353,35.330588],[-82.302676,35.335124],[-82.298215,35.335692],[-82.298215,35.339945],[-82.290184,35.351571],[-82.290184,35.353556],[-82.284831,35.357525],[-82.280369,35.365181],[-82.282154,35.366599],[-82.2768,35.375106],[-82.262524,35.388433],[-82.262524,35.394388],[-82.271447,35.400059],[-82.269662,35.40573],[-82.273231,35.409416],[-82.274124,35.41849],[-82.2768,35.422743],[-82.274124,35.430116],[-82.2768,35.436921],[-82.279477,35.438339],[-82.281262,35.442025],[-82.280369,35.445995],[-82.275908,35.450248],[-82.266985,35.467829],[-82.275908,35.472082],[-82.333905,35.500438],[-82.338367,35.498736],[-82.340151,35.495334],[-82.339259,35.491364],[-82.341043,35.488812],[-82.345505,35.487961],[-82.356212,35.491364],[-82.357996,35.490513],[-82.359781,35.485409],[-82.364242,35.48626],[-82.370488,35.485409],[-82.373165,35.480022],[-82.370488,35.475201],[-82.372273,35.472082],[-82.368704,35.46868],[-82.368704,35.464143],[-82.36335,35.461023],[-82.372273,35.461023],[-82.38298,35.464143],[-82.383872,35.466128],[-82.389226,35.470097],[-82.40261,35.470097],[-82.407963,35.4735],[-82.41064,35.472082],[-82.417778,35.474351],[-82.424024,35.470381],[-82.427593,35.470381],[-82.431162,35.465844],[-82.435623,35.462725],[-82.446331,35.461023],[-82.447223,35.458471],[-82.453469,35.454218],[-82.456146,35.449398],[-82.460607,35.450815],[-82.46596,35.448547],[-82.470422,35.445144],[-82.496297,35.445144],[-82.499866,35.449965],[-82.504328,35.4528],[-82.506112,35.45677],[-82.511466,35.460173],[-82.512358,35.464426],[-82.507005,35.471232],[-82.504328,35.471232],[-82.498974,35.476336],[-82.494513,35.485126],[-82.504328,35.493065],[-82.51325,35.496184],[-82.512358,35.499587],[-82.508789,35.500438],[-82.50522,35.504691],[-82.506112,35.512064],[-82.507897,35.515466],[-82.522173,35.515183],[-82.52485,35.521988],[-82.528419,35.519436],[-82.527527,35.516033],[-82.536449,35.515183],[-82.536449,35.51178],[-82.541803,35.512064],[-82.545372,35.514332],[-82.548941,35.513765],[-82.549833,35.517168],[-82.553402,35.520287],[-82.550726,35.527092],[-82.554295,35.532763],[-82.550726,35.537017],[-82.550726,35.540986],[-82.547156,35.541837],[-82.547156,35.54609],[-82.54448,35.547225],[-82.54448,35.551194],[-82.551618,35.554881],[-82.55251,35.559701],[-82.558756,35.563104],[-82.565002,35.564522],[-82.563217,35.568208],[-82.574817,35.565372],[-82.581955,35.564805],[-82.584632,35.565656],[-82.59177,35.563954],[-82.594446,35.559418],[-82.592662,35.555448],[-82.598908,35.559701],[-82.597123,35.563954],[-82.5998,35.564805],[-82.603369,35.571894],[-82.601585,35.574446],[-82.603369,35.578132],[-82.608723,35.576431],[-82.60783,35.57955],[-82.612292,35.576998],[-82.616753,35.580684],[-82.622107,35.580401],[-82.62746,35.582953],[-82.62746,35.578983],[-82.631922,35.578983],[-82.648875,35.587206],[-82.651551,35.589758],[-82.652444,35.601384],[-82.640844,35.607339],[-82.632814,35.607055],[-82.623891,35.605637],[-82.61943,35.607055],[-82.61943,35.610741],[-82.616753,35.608189],[-82.614969,35.612159],[-82.612292,35.61386],[-82.610507,35.618114],[-82.605154,35.624919],[-82.602477,35.626337],[-82.5998,35.641365],[-82.601585,35.650439],[-82.598908,35.651573],[-82.583739,35.660647],[-82.581062,35.663483],[-82.577493,35.657528],[-82.58017,35.650439],[-82.577493,35.649021],[-82.571248,35.649872],[-82.568571,35.648454],[-82.571248,35.644201],[-82.564109,35.644768],[-82.56054,35.648171],[-82.56054,35.645052],[-82.557864,35.645619],[-82.558756,35.650723],[-82.554295,35.652424],[-82.548049,35.650723],[-82.531988,35.659796],[-82.52485,35.658379],[-82.517712,35.661498],[-82.51325,35.659796],[-82.50522,35.662348],[-82.498082,35.666602],[-82.487375,35.662632],[-82.481129,35.666602],[-82.478452,35.666602],[-82.473991,35.670005],[-82.469529,35.669154],[-82.463284,35.670572],[-82.4499,35.670855],[-82.447223,35.672557],[-82.445438,35.679362],[-82.440085,35.679362],[-82.431162,35.682481],[-82.422239,35.681347],[-82.41867,35.685033],[-82.41064,35.689003],[-82.41064,35.691555],[-82.405286,35.700061],[-82.393687,35.699211],[-82.389226,35.700061],[-82.384764,35.697509],[-82.380303,35.700629],[-82.375842,35.701763],[-82.370488,35.707718],[-82.366027,35.709135],[-82.360673,35.715941],[-82.360673,35.717642],[-82.35532,35.720194],[-82.351751,35.727283],[-82.352643,35.729268],[-82.345505,35.73182],[-82.342828,35.736924],[-82.338367,35.743162],[-82.339259,35.748266],[-82.327659,35.747415],[-82.323198,35.740043],[-82.313383,35.733521],[-82.306245,35.733238],[-82.298215,35.730118],[-82.291077,35.729835],[-82.284831,35.725014],[-82.2768,35.714239],[-82.275908,35.704031],[-82.282154,35.701479],[-82.283939,35.69836],[-82.289292,35.696375],[-82.289292,35.694107],[-82.294646,35.684182],[-82.291077,35.682481],[-82.283939,35.676526],[-82.281262,35.667453],[-82.285723,35.660647],[-82.286615,35.653275],[-82.285723,35.647604],[-82.283046,35.646469],[-82.283046,35.643067],[-82.281262,35.637963],[-82.2768,35.637396],[-82.271447,35.631441],[-82.275016,35.628889],[-82.270555,35.621516],[-82.266093,35.617547],[-82.266093,35.61301],[-82.269662,35.612159],[-82.270555,35.609607],[-82.279477,35.60904],[-82.283046,35.603085],[-82.287508,35.600817],[-82.289292,35.596563],[-82.291969,35.594862],[-82.291077,35.591176],[-82.281262,35.582953],[-82.261632,35.566506],[-82.250925,35.559701],[-82.24111,35.556582],[-82.220588,35.552896],[-82.208096,35.547792],[-82.150991,35.518018],[-82.124223,35.523973],[-82.096563,35.531345],[-82.082287,35.533047],[-82.075149,35.535599],[-82.068011,35.537017],[-82.05998,35.536449],[-82.048381,35.537867],[-82.033212,35.537867],[-82.028751,35.535599],[-82.020721,35.538151],[-82.019828,35.54127],[-82.016259,35.542971],[-82.01269,35.547792],[-82.006444,35.549493],[-82.003768,35.551478],[-81.995737,35.543822],[-81.988599,35.54127],[-81.986815,35.537017],[-81.984138,35.536166],[-81.973431,35.52454],[-81.952908,35.527659],[-81.885989,35.536449],[-81.877958,35.537867],[-81.842268,35.542121],[-81.844052,35.545523],[-81.840483,35.555448],[-81.83513,35.558],[-81.834237,35.563671],[-81.830668,35.567357],[-81.830668,35.571894],[-81.825315,35.57473],[-81.82353,35.580401],[-81.819069,35.578132],[-81.810146,35.581251],[-81.805685,35.57955],[-81.796762,35.583803],[-81.79587,35.591459],[-81.794085,35.593161],[-81.78784,35.594011],[-81.785163,35.59231],[-81.772671,35.59231],[-81.772671,35.594862],[-81.769102,35.59628],[-81.772671,35.601667],[-81.769102,35.603085],[-81.767318,35.606488],[-81.757503,35.60904],[-81.754826,35.612159],[-81.750364,35.610458],[-81.745903,35.603936],[-81.744119,35.604787],[-81.733411,35.601384],[-81.728058,35.603085],[-81.724489,35.606488],[-81.72092,35.607055],[-81.716458,35.602802],[-81.718243,35.600817],[-81.717351,35.594579],[-81.710213,35.588907],[-81.705751,35.580684],[-81.702182,35.581535],[-81.697721,35.578699],[-81.692367,35.578983],[-81.691475,35.583803],[-81.684337,35.576998],[-81.678983,35.57558],[-81.674522,35.567924],[-81.668276,35.566223],[-81.662923,35.567074],[-81.654,35.563104],[-81.64597,35.56197],[-81.63437,35.564805],[-81.619202,35.567074],[-81.618309,35.565372],[-81.612956,35.567074],[-81.608494,35.566506],[-81.59868,35.571327],[-81.596895,35.567924],[-81.590649,35.564805],[-81.577265,35.566223],[-81.578158,35.563104],[-81.576373,35.559701],[-81.56745,35.558],[-81.56745,35.559701],[-81.562097,35.56282],[-81.556743,35.562253],[-81.546928,35.564805],[-81.538006,35.564805],[-81.534437,35.568775],[-81.52016,35.588057],[-81.506776,35.608189],[-81.500531,35.610741],[-81.48447,35.62577],[-81.446102,35.666602],[-81.428257,35.684749],[-81.419334,35.692689],[-81.415765,35.698927],[-81.401489,35.716791],[-81.380967,35.745998],[-81.373829,35.755071],[-81.364014,35.767548],[-81.358661,35.766697],[-81.354199,35.768682],[-81.352415,35.771801],[-81.355984,35.780308],[-81.351522,35.784278],[-81.348846,35.791083],[-81.347061,35.794202],[-81.3426,35.795904],[-81.335462,35.796187],[-81.31494,35.796754],[-81.308694,35.802142],[-81.304232,35.802142],[-81.309586,35.791083],[-81.314047,35.789382],[-81.328324,35.776905],[-81.331,35.768682],[-81.333677,35.765847],[-81.333677,35.762727],[-81.337246,35.753654],[-81.335462,35.7494],[-81.336354,35.744863],[-81.339031,35.744863],[-81.340815,35.73182],[-81.359553,35.730118],[-81.358661,35.734372],[-81.355091,35.734372],[-81.355984,35.737491],[-81.360445,35.743446],[-81.364014,35.740894],[-81.37026,35.742028],[-81.371152,35.733521],[-81.37026,35.729268],[-81.371152,35.722462],[-81.357768,35.722462],[-81.352415,35.721612],[-81.351522,35.71509],[-81.348846,35.709986],[-81.354199,35.711687],[-81.352415,35.705733],[-81.355091,35.705733],[-81.352415,35.700061],[-81.346169,35.700629],[-81.344384,35.692405],[-81.339031,35.692689],[-81.333677,35.689286],[-81.329216,35.690137],[-81.330108,35.6856],[-81.320293,35.684182],[-81.317616,35.689003],[-81.321185,35.697509],[-81.318509,35.701479],[-81.323862,35.704315],[-81.326539,35.704031],[-81.324754,35.712538],[-81.322078,35.718493],[-81.316724,35.721045],[-81.318509,35.722462],[-81.314047,35.725865],[-81.312263,35.73267],[-81.307801,35.733521],[-81.306909,35.73579],[-81.300663,35.732387],[-81.297987,35.739192],[-81.298879,35.743162],[-81.302448,35.742595],[-81.302448,35.745147],[-81.306909,35.759325],[-81.30334,35.766981],[-81.297094,35.772652],[-81.294417,35.780024],[-81.293525,35.790232],[-81.288172,35.795336]]]}},{"type":"Feature","properties":{"district":11},"geometry":{"type":"Polygon","coordinates":[[[-82.137607,36.119441],[-82.130469,36.105264],[-82.128685,36.104129],[-82.115301,36.104413],[-82.108162,36.107532],[-82.102809,36.106114],[-82.085856,36.106114],[-82.080502,36.103562],[-82.07961,36.106114],[-82.062657,36.112636],[-82.057303,36.120292],[-82.057303,36.123695],[-82.054627,36.126814],[-82.044812,36.125112],[-82.039458,36.121143],[-82.033212,36.120292],[-82.029643,36.123411],[-82.026074,36.129082],[-82.026966,36.130216],[-82.003768,36.164527],[-81.986815,36.18948],[-81.960047,36.228043],[-81.939525,36.256116],[-81.91811,36.287023],[-81.912757,36.281352],[-81.907403,36.277949],[-81.900265,36.280785],[-81.897588,36.277949],[-81.896696,36.269159],[-81.894019,36.264055],[-81.897588,36.26207],[-81.896696,36.256116],[-81.897588,36.253847],[-81.902942,36.252996],[-81.903834,36.249027],[-81.900265,36.248176],[-81.897588,36.242788],[-81.902049,36.239386],[-81.908295,36.238819],[-81.907403,36.236267],[-81.910972,36.229461],[-81.907403,36.22379],[-81.907403,36.217835],[-81.909188,36.216418],[-81.902049,36.205642],[-81.888665,36.196285],[-81.885989,36.18948],[-81.856544,36.193733],[-81.836022,36.170198],[-81.836022,36.168497],[-81.829776,36.16878],[-81.825315,36.156304],[-81.822638,36.144394],[-81.812823,36.115755],[-81.811931,36.111218],[-81.69326,36.121143],[-81.675414,36.12256],[-81.661138,36.118307],[-81.607602,36.11774],[-81.546036,36.117456],[-81.521945,36.102712],[-81.516591,36.097324],[-81.510345,36.096757],[-81.499638,36.10016],[-81.496069,36.10016],[-81.495177,36.097608],[-81.489823,36.098175],[-81.48447,36.095906],[-81.477332,36.09619],[-81.478224,36.092503],[-81.469301,36.086832],[-81.469301,36.084847],[-81.46484,36.089384],[-81.457702,36.091653],[-81.455025,36.090235],[-81.450564,36.08428],[-81.447887,36.08343],[-81.447887,36.077759],[-81.44521,36.075207],[-81.44521,36.072371],[-81.440749,36.074923],[-81.433611,36.075207],[-81.424688,36.077759],[-81.416658,36.070953],[-81.414873,36.072655],[-81.407735,36.07067],[-81.406843,36.0667],[-81.400597,36.062447],[-81.39792,36.056775],[-81.390782,36.049403],[-81.39792,36.042598],[-81.396136,36.040896],[-81.38989,36.043165],[-81.380967,36.043448],[-81.381859,36.041463],[-81.377398,36.040896],[-81.374721,36.03721],[-81.369368,36.040046],[-81.365799,36.03239],[-81.345277,36.022465],[-81.329216,35.996661],[-81.343492,35.922937],[-81.334569,35.879553],[-81.335462,35.872747],[-81.344384,35.825393],[-81.343492,35.821991],[-81.339923,35.823409],[-81.338138,35.817737],[-81.340815,35.816887],[-81.336354,35.813768],[-81.339031,35.812633],[-81.336354,35.807529],[-81.336354,35.80356],[-81.332785,35.801008],[-81.335462,35.796187],[-81.3426,35.795904],[-81.347061,35.794202],[-81.348846,35.791083],[-81.351522,35.784278],[-81.355984,35.780308],[-81.352415,35.771801],[-81.354199,35.768682],[-81.358661,35.766697],[-81.364014,35.767548],[-81.373829,35.755071],[-81.380967,35.745998],[-81.401489,35.716791],[-81.415765,35.698927],[-81.419334,35.692689],[-81.428257,35.684749],[-81.446102,35.666602],[-81.48447,35.62577],[-81.500531,35.610741],[-81.506776,35.608189],[-81.52016,35.588057],[-81.534437,35.568775],[-81.538006,35.564805],[-81.546928,35.564805],[-81.556743,35.562253],[-81.562097,35.56282],[-81.56745,35.559701],[-81.56745,35.558],[-81.576373,35.559701],[-81.578158,35.563104],[-81.577265,35.566223],[-81.590649,35.564805],[-81.596895,35.567924],[-81.59868,35.571327],[-81.608494,35.566506],[-81.612956,35.567074],[-81.618309,35.565372],[-81.619202,35.567074],[-81.63437,35.564805],[-81.64597,35.56197],[-81.654,35.563104],[-81.662923,35.567074],[-81.668276,35.566223],[-81.674522,35.567924],[-81.678983,35.57558],[-81.684337,35.576998],[-81.691475,35.583803],[-81.692367,35.578983],[-81.697721,35.578699],[-81.702182,35.581535],[-81.705751,35.580684],[-81.710213,35.588907],[-81.717351,35.594579],[-81.718243,35.600817],[-81.716458,35.602802],[-81.72092,35.607055],[-81.724489,35.606488],[-81.728058,35.603085],[-81.733411,35.601384],[-81.744119,35.604787],[-81.745903,35.603936],[-81.750364,35.610458],[-81.754826,35.612159],[-81.757503,35.60904],[-81.767318,35.606488],[-81.769102,35.603085],[-81.772671,35.601667],[-81.769102,35.59628],[-81.772671,35.594862],[-81.772671,35.59231],[-81.785163,35.59231],[-81.78784,35.594011],[-81.794085,35.593161],[-81.79587,35.591459],[-81.796762,35.583803],[-81.805685,35.57955],[-81.810146,35.581251],[-81.819069,35.578132],[-81.82353,35.580401],[-81.825315,35.57473],[-81.830668,35.571894],[-81.830668,35.567357],[-81.834237,35.563671],[-81.83513,35.558],[-81.840483,35.555448],[-81.844052,35.545523],[-81.842268,35.542121],[-81.877958,35.537867],[-81.885989,35.536449],[-81.952908,35.527659],[-81.973431,35.52454],[-81.984138,35.536166],[-81.986815,35.537017],[-81.988599,35.54127],[-81.995737,35.543822],[-82.003768,35.551478],[-82.006444,35.549493],[-82.01269,35.547792],[-82.016259,35.542971],[-82.019828,35.54127],[-82.020721,35.538151],[-82.028751,35.535599],[-82.033212,35.537867],[-82.048381,35.537867],[-82.05998,35.536449],[-82.068011,35.537017],[-82.075149,35.535599],[-82.082287,35.533047],[-82.096563,35.531345],[-82.124223,35.523973],[-82.150991,35.518018],[-82.2007715918545,35.54397586379517],[-82.208096,35.547792],[-82.220588,35.552896],[-82.24111,35.556582],[-82.250925,35.559701],[-82.261632,35.566506],[-82.281262,35.582953],[-82.291077,35.591176],[-82.291969,35.594862],[-82.289292,35.596563],[-82.287508,35.600817],[-82.283046,35.603085],[-82.279477,35.60904],[-82.270555,35.609607],[-82.269662,35.612159],[-82.266093,35.61301],[-82.266093,35.617547],[-82.270555,35.621516],[-82.275016,35.628889],[-82.271447,35.631441],[-82.2768,35.637396],[-82.281262,35.637963],[-82.283046,35.643067],[-82.283046,35.646469],[-82.285723,35.647604],[-82.286615,35.653275],[-82.285723,35.660647],[-82.281262,35.667453],[-82.283939,35.676526],[-82.291077,35.682481],[-82.294646,35.684182],[-82.289292,35.694107],[-82.289292,35.696375],[-82.283939,35.69836],[-82.282154,35.701479],[-82.275908,35.704031],[-82.2768,35.714239],[-82.284831,35.725014],[-82.291077,35.729835],[-82.298215,35.730118],[-82.306245,35.733238],[-82.313383,35.733521],[-82.323198,35.740043],[-82.327659,35.747415],[-82.339259,35.748266],[-82.338367,35.743162],[-82.342828,35.736924],[-82.345505,35.73182],[-82.352643,35.729268],[-82.351751,35.727283],[-82.35532,35.720194],[-82.360673,35.717642],[-82.360673,35.715941],[-82.366027,35.709135],[-82.370488,35.707718],[-82.375842,35.701763],[-82.380303,35.700629],[-82.384764,35.697509],[-82.389226,35.700061],[-82.393687,35.699211],[-82.405286,35.700061],[-82.41064,35.691555],[-82.41064,35.689003],[-82.41867,35.685033],[-82.422239,35.681347],[-82.431162,35.682481],[-82.440085,35.679362],[-82.445438,35.679362],[-82.447223,35.672557],[-82.4499,35.670855],[-82.463284,35.670572],[-82.469529,35.669154],[-82.473991,35.670005],[-82.478452,35.666602],[-82.481129,35.666602],[-82.487375,35.662632],[-82.498082,35.666602],[-82.50522,35.662348],[-82.51325,35.659796],[-82.517712,35.661498],[-82.52485,35.658379],[-82.531988,35.659796],[-82.548049,35.650723],[-82.554295,35.652424],[-82.558756,35.650723],[-82.557864,35.645619],[-82.56054,35.645052],[-82.56054,35.648171],[-82.564109,35.644768],[-82.571248,35.644201],[-82.568571,35.648454],[-82.571248,35.649872],[-82.577493,35.649021],[-82.58017,35.650439],[-82.577493,35.657528],[-82.581062,35.663483],[-82.583739,35.660647],[-82.598908,35.651573],[-82.601585,35.650439],[-82.5998,35.641365],[-82.602477,35.626337],[-82.605154,35.624919],[-82.610507,35.618114],[-82.612292,35.61386],[-82.614969,35.612159],[-82.616753,35.608189],[-82.61943,35.610741],[-82.61943,35.607055],[-82.623891,35.605637],[-82.632814,35.607055],[-82.640844,35.607339],[-82.652444,35.601384],[-82.651551,35.589758],[-82.648875,35.587206],[-82.631922,35.578983],[-82.62746,35.578983],[-82.62746,35.582953],[-82.622107,35.580401],[-82.616753,35.580684],[-82.612292,35.576998],[-82.60783,35.57955],[-82.608723,35.576431],[-82.603369,35.578132],[-82.601585,35.574446],[-82.603369,35.571894],[-82.5998,35.564805],[-82.597123,35.563954],[-82.598908,35.559701],[-82.592662,35.555448],[-82.594446,35.559418],[-82.59177,35.563954],[-82.584632,35.565656],[-82.581955,35.564805],[-82.574817,35.565372],[-82.563217,35.568208],[-82.565002,35.564522],[-82.558756,35.563104],[-82.55251,35.559701],[-82.551618,35.554881],[-82.54448,35.551194],[-82.54448,35.547225],[-82.547156,35.54609],[-82.547156,35.541837],[-82.550726,35.540986],[-82.550726,35.537017],[-82.554295,35.532763],[-82.550726,35.527092],[-82.553402,35.520287],[-82.549833,35.517168],[-82.548941,35.513765],[-82.545372,35.514332],[-82.541803,35.512064],[-82.536449,35.51178],[-82.536449,35.515183],[-82.527527,35.516033],[-82.528419,35.519436],[-82.52485,35.521988],[-82.522173,35.515183],[-82.507897,35.515466],[-82.506112,35.512064],[-82.50522,35.504691],[-82.508789,35.500438],[-82.512358,35.499587],[-82.51325,35.496184],[-82.5057624935555,35.49356653850054],[-82.504328,35.493065],[-82.494513,35.485126],[-82.498974,35.476336],[-82.504328,35.471232],[-82.507005,35.471232],[-82.512358,35.464426],[-82.511466,35.460173],[-82.506112,35.45677],[-82.504328,35.4528],[-82.499866,35.449965],[-82.496297,35.445144],[-82.470422,35.445144],[-82.46596,35.448547],[-82.460607,35.450815],[-82.456146,35.449398],[-82.453469,35.454218],[-82.447223,35.458471],[-82.446331,35.461023],[-82.435623,35.462725],[-82.431162,35.465844],[-82.427593,35.470381],[-82.424024,35.470381],[-82.417778,35.474351],[-82.41064,35.472082],[-82.407963,35.4735],[-82.40261,35.470097],[-82.389226,35.470097],[-82.383872,35.466128],[-82.38298,35.464143],[-82.372273,35.461023],[-82.36335,35.461023],[-82.368704,35.464143],[-82.368704,35.46868],[-82.372273,35.472082],[-82.370488,35.475201],[-82.373165,35.480022],[-82.370488,35.485409],[-82.364242,35.48626],[-82.359781,35.485409],[-82.357996,35.490513],[-82.356212,35.491364],[-82.345505,35.487961],[-82.341043,35.488812],[-82.339259,35.491364],[-82.340151,35.495334],[-82.338367,35.498736],[-82.333905,35.500438],[-82.275908,35.472082],[-82.266985,35.467829],[-82.275908,35.450248],[-82.280369,35.445995],[-82.281262,35.442025],[-82.279477,35.438339],[-82.2768,35.436921],[-82.274124,35.430116],[-82.2768,35.422743],[-82.274124,35.41849],[-82.273231,35.409416],[-82.269662,35.40573],[-82.271447,35.400059],[-82.262524,35.394388],[-82.262524,35.388433],[-82.2768,35.375106],[-82.282154,35.366599],[-82.280369,35.365181],[-82.284831,35.357525],[-82.290184,35.353556],[-82.290184,35.351571],[-82.298215,35.339945],[-82.298215,35.335692],[-82.302676,35.335124],[-82.305353,35.330588],[-82.305353,35.326618],[-82.30803,35.325767],[-82.308922,35.320096],[-82.312491,35.31726],[-82.309814,35.314992],[-82.315168,35.31244],[-82.318737,35.307619],[-82.327659,35.309037],[-82.330336,35.307619],[-82.331229,35.303083],[-82.334798,35.300531],[-82.338367,35.294009],[-82.341043,35.291457],[-82.341936,35.288338],[-82.345505,35.286636],[-82.346397,35.28295],[-82.349074,35.249774],[-82.349074,35.244103],[-82.358889,35.24467],[-82.359781,35.228224],[-82.350858,35.22794],[-82.353535,35.190511],[-82.359781,35.192212],[-82.36335,35.191078],[-82.362458,35.186257],[-82.372273,35.180303],[-82.378519,35.185407],[-82.382088,35.187108],[-82.384764,35.192212],[-82.383872,35.194481],[-82.379411,35.195331],[-82.381195,35.202137],[-82.385657,35.20639],[-82.384764,35.21036],[-82.388333,35.212061],[-82.39101,35.215464],[-82.393687,35.214613],[-82.399041,35.208942],[-82.399933,35.204689],[-82.407071,35.202137],[-82.409748,35.202987],[-82.415101,35.199017],[-82.419563,35.198734],[-82.425809,35.192212],[-82.428485,35.182855],[-82.426701,35.179452],[-82.432054,35.177751],[-82.432054,35.17293],[-82.435623,35.16811],[-82.441869,35.165274],[-82.450792,35.166125],[-82.457038,35.163573],[-82.45793,35.166976],[-82.451684,35.17208],[-82.454361,35.177184],[-82.459715,35.177751],[-82.466853,35.174632],[-82.474883,35.173781],[-82.478452,35.176049],[-82.482021,35.173781],[-82.487375,35.174348],[-82.488267,35.169528],[-82.491836,35.169528],[-82.496297,35.164424],[-82.496297,35.162155],[-82.499866,35.162722],[-82.504328,35.165558],[-82.507897,35.162155],[-82.515927,35.163006],[-82.519496,35.158752],[-82.525742,35.1562],[-82.535557,35.154499],[-82.538234,35.1562],[-82.536449,35.158752],[-82.547156,35.163573],[-82.556971,35.15932],[-82.554295,35.152798],[-82.558756,35.150529],[-82.564109,35.151947],[-82.567679,35.148828],[-82.568571,35.145425],[-82.576601,35.144575],[-82.578386,35.141172],[-82.57868475622818,35.14128592446502],[-82.582847,35.142873],[-82.589093,35.142873],[-82.593554,35.13862],[-82.5998,35.137769],[-82.606938,35.139471],[-82.614076,35.139471],[-82.614076,35.136919],[-82.622107,35.13465],[-82.625676,35.128412],[-82.629245,35.12586],[-82.633706,35.125293],[-82.636383,35.129263],[-82.642629,35.131815],[-82.646198,35.126994],[-82.652444,35.126143],[-82.652444,35.122741],[-82.657797,35.118487],[-82.668504,35.118487],[-82.669397,35.120472],[-82.672966,35.11707],[-82.67475,35.126143],[-82.680996,35.127845],[-82.687242,35.125009],[-82.68635,35.119622],[-82.691703,35.118771],[-82.69438,35.115935],[-82.693488,35.112816],[-82.687242,35.110831],[-82.68635,35.108279],[-82.698841,35.095236],[-82.700626,35.098638],[-82.707764,35.097504],[-82.715794,35.092684],[-82.727394,35.094102],[-82.729178,35.091833],[-82.729178,35.08758],[-82.734532,35.086729],[-82.736316,35.081058],[-82.738993,35.078222],[-82.752377,35.081058],[-82.752377,35.073402],[-82.754162,35.069432],[-82.757731,35.06688],[-82.764869,35.068298],[-82.772007,35.06688],[-82.775576,35.064328],[-82.781822,35.065179],[-82.779145,35.069999],[-82.780037,35.071984],[-82.777361,35.080774],[-82.779145,35.08361],[-82.784499,35.085311],[-82.793421,35.08361],[-82.806805,35.079357],[-82.873725,35.062627],[-82.87551,35.061776],[-82.929938,35.047598],[-83.018272,35.024914],[-83.053963,35.01584],[-83.055747,35.014706],[-83.095007,35.004781],[-83.109283,35.000528],[-83.157465,34.999961],[-83.307366,34.995991],[-83.379639,34.994857],[-83.446559,34.993439],[-83.50634,34.992588],[-83.62055,34.991738],[-83.62054379908854,34.99170252077082],[-83.619658,34.986634],[-83.701746,34.987201],[-83.750821,34.987484],[-83.833801,34.987201],[-83.875738,34.987484],[-83.940873,34.987484],[-83.961395,34.987201],[-84.005116,34.987201],[-84.022961,34.986634],[-84.072036,34.987201],[-84.087205,34.987484],[-84.126464,34.987484],[-84.146094,34.987484],[-84.191599,34.987484],[-84.32187,34.988335],[-84.320978,35.00308],[-84.316516,35.033988],[-84.309378,35.092684],[-84.308486,35.102892],[-84.304917,35.125009],[-84.298671,35.169528],[-84.295994,35.185407],[-84.290641,35.225388],[-84.287964,35.224537],[-84.283503,35.226239],[-84.275472,35.234746],[-84.261196,35.241551],[-84.258519,35.245804],[-84.251381,35.251192],[-84.243351,35.253177],[-84.232644,35.263952],[-84.228182,35.267922],[-84.223721,35.269056],[-84.212122,35.26622],[-84.204091,35.255445],[-84.202307,35.247222],[-84.19963,35.243252],[-84.194276,35.24467],[-84.188923,35.239566],[-84.178215,35.240417],[-84.177323,35.242118],[-84.169293,35.246371],[-84.16037,35.243819],[-84.158586,35.245521],[-84.144309,35.246655],[-84.14050603185188,35.24559750026755],[-84.137171,35.24467],[-84.133602,35.242118],[-84.127356,35.2407],[-84.125572,35.242118],[-84.125572,35.249774],[-84.119326,35.252326],[-84.113972,35.248923],[-84.106834,35.251475],[-84.102373,35.248073],[-84.098804,35.247222],[-84.09345,35.249774],[-84.086312,35.255445],[-84.083635,35.255729],[-84.081851,35.260833],[-84.070251,35.263668],[-84.064006,35.266504],[-84.055975,35.268205],[-84.052406,35.269907],[-84.051514,35.273026],[-84.047053,35.273876],[-84.041699,35.279547],[-84.037238,35.288338],[-84.024746,35.29571],[-84.022069,35.300814],[-84.027423,35.305918],[-84.028315,35.309888],[-84.036345,35.311589],[-84.036345,35.317544],[-84.034561,35.320663],[-84.032776,35.328319],[-84.0301,35.33314],[-84.031884,35.336542],[-84.037238,35.337393],[-84.034561,35.342497],[-84.039022,35.347601],[-84.03813,35.35072],[-84.033669,35.352421],[-84.024746,35.354123],[-84.021177,35.357525],[-84.014931,35.364898],[-84.007793,35.371703],[-84.008685,35.378509],[-84.011362,35.384463],[-84.007793,35.389284],[-84.013147,35.392403],[-84.014039,35.397507],[-84.0185,35.399208],[-84.023854,35.408566],[-84.023854,35.411118],[-84.014931,35.411685],[-84.012254,35.415087],[-84.001547,35.42331],[-83.99887,35.426146],[-83.997978,35.430967],[-83.999763,35.433235],[-83.994409,35.43522],[-83.991732,35.440324],[-83.989948,35.439473],[-83.984594,35.440891],[-83.981025,35.448263],[-83.973887,35.447413],[-83.973887,35.4528],[-83.972102,35.455352],[-83.965857,35.454218],[-83.961395,35.459606],[-83.961395,35.464143],[-83.955149,35.463575],[-83.950688,35.460456],[-83.941765,35.466978],[-83.937304,35.471232],[-83.925705,35.474351],[-83.917674,35.4735],[-83.912321,35.476052],[-83.906967,35.48626],[-83.901614,35.49108],[-83.899829,35.493916],[-83.901614,35.496184],[-83.895368,35.501856],[-83.891799,35.502706],[-83.884661,35.512631],[-83.882876,35.517168],[-83.873953,35.521137],[-83.869492,35.520287],[-83.857893,35.521421],[-83.848078,35.518869],[-83.843616,35.521137],[-83.840047,35.521137],[-83.832017,35.52454],[-83.826663,35.523689],[-83.810603,35.533897],[-83.80971,35.536166],[-83.803464,35.54127],[-83.799895,35.540986],[-83.794542,35.54524],[-83.786511,35.547225],[-83.780266,35.550344],[-83.773128,35.557149],[-83.771343,35.562253],[-83.765097,35.561402],[-83.764205,35.56282],[-83.757959,35.563671],[-83.748144,35.559701],[-83.745467,35.56282],[-83.741898,35.562253],[-83.735652,35.565372],[-83.732976,35.563104],[-83.729407,35.563954],[-83.723161,35.56197],[-83.716023,35.563954],[-83.707992,35.568208],[-83.69907,35.567924],[-83.696393,35.570476],[-83.693716,35.568208],[-83.683901,35.568208],[-83.675871,35.569909],[-83.673194,35.568775],[-83.664271,35.569626],[-83.660702,35.567924],[-83.657133,35.569626],[-83.654456,35.567924],[-83.641965,35.565372],[-83.634827,35.570476],[-83.629473,35.567924],[-83.622335,35.572178],[-83.615197,35.573879],[-83.608951,35.57955],[-83.602705,35.578132],[-83.597351,35.57473],[-83.588429,35.567074],[-83.588429,35.563954],[-83.583075,35.56282],[-83.572368,35.565372],[-83.567014,35.564522],[-83.566122,35.565656],[-83.551846,35.563954],[-83.542031,35.565372],[-83.534893,35.564805],[-83.520617,35.565372],[-83.51794,35.56282],[-83.49831,35.563104],[-83.494741,35.566223],[-83.486711,35.567924],[-83.482249,35.576431],[-83.479573,35.578983],[-83.479573,35.582953],[-83.473327,35.586639],[-83.472434,35.590325],[-83.46262,35.59231],[-83.461727,35.595429],[-83.457266,35.596563],[-83.455481,35.601667],[-83.451912,35.603085],[-83.450128,35.606488],[-83.446559,35.60904],[-83.445667,35.611592],[-83.433175,35.609891],[-83.422468,35.611308],[-83.421575,35.613293],[-83.416222,35.614711],[-83.40373,35.621233],[-83.396592,35.622367],[-83.393023,35.624919],[-83.388562,35.633709],[-83.378747,35.63456],[-83.373393,35.639097],[-83.36804,35.638813],[-83.365363,35.642216],[-83.36297244511927,35.64395256189038],[-83.359117,35.646753],[-83.355548,35.654692],[-83.351979,35.659796],[-83.347517,35.66008],[-83.340379,35.66405],[-83.337703,35.663199],[-83.335026,35.665468],[-83.321642,35.662632],[-83.318965,35.658946],[-83.310935,35.654125],[-83.298443,35.656677],[-83.293982,35.661498],[-83.291305,35.667169],[-83.28952,35.674258],[-83.283274,35.674825],[-83.28149,35.677661],[-83.272567,35.681347],[-83.270783,35.685884],[-83.265429,35.689003],[-83.260076,35.689853],[-83.258291,35.69354],[-83.254722,35.695808],[-83.255614,35.701479],[-83.258291,35.705166],[-83.251153,35.709135],[-83.254722,35.711687],[-83.256507,35.715941],[-83.252045,35.71991],[-83.244907,35.721612],[-83.240446,35.726716],[-83.232415,35.725865],[-83.219924,35.726716],[-83.215462,35.724164],[-83.204755,35.726432],[-83.199402,35.725298],[-83.188694,35.729835],[-83.186018,35.729835],[-83.177095,35.744013],[-83.169957,35.745998],[-83.168172,35.751102],[-83.165496,35.754221],[-83.165496,35.758474],[-83.160142,35.764996],[-83.148543,35.764429],[-83.142297,35.765847],[-83.136051,35.765279],[-83.12802,35.767831],[-83.11999,35.765847],[-83.118206,35.769249],[-83.108391,35.771801],[-83.103037,35.775204],[-83.096791,35.776905],[-83.095899,35.779174],[-83.089653,35.781159],[-83.086084,35.785412],[-83.078946,35.789382],[-83.073592,35.789949],[-83.071808,35.788248],[-83.061101,35.78683],[-83.053963,35.789382],[-83.04504,35.785128],[-83.03701,35.787397],[-83.032548,35.785128],[-83.023626,35.783427],[-83.020949,35.780308],[-83.016487,35.781726],[-83.011134,35.778607],[-83.00578,35.778323],[-83.001319,35.773503],[-82.992396,35.773786],[-82.979012,35.782576],[-82.975443,35.78683],[-82.969197,35.789949],[-82.962059,35.791083],[-82.962059,35.79959],[-82.955813,35.807813],[-82.955813,35.809514],[-82.951352,35.816887],[-82.947783,35.817737],[-82.948675,35.820006],[-82.945106,35.825393],[-82.937076,35.825393],[-82.933507,35.834751],[-82.935291,35.836736],[-82.928153,35.838721],[-82.921015,35.839288],[-82.916554,35.841273],[-82.921015,35.847794],[-82.921015,35.856017],[-82.919231,35.858853],[-82.921907,35.863106],[-82.921907,35.868494],[-82.910308,35.868494],[-82.901385,35.87218],[-82.896032,35.880403],[-82.90317,35.880403],[-82.906739,35.883806],[-82.90317,35.888626],[-82.902278,35.893163],[-82.904954,35.897133],[-82.905847,35.903088],[-82.908523,35.904789],[-82.906739,35.907058],[-82.908523,35.911027],[-82.914769,35.915281],[-82.912093,35.916415],[-82.913877,35.921519],[-82.921015,35.928891],[-82.914769,35.929742],[-82.905847,35.926339],[-82.902278,35.926623],[-82.898709,35.930309],[-82.901385,35.935697],[-82.898709,35.944771],[-82.892463,35.945338],[-82.889786,35.948173],[-82.879971,35.950442],[-82.874617,35.952427],[-82.861233,35.94789],[-82.851419,35.949591],[-82.845173,35.945338],[-82.84428,35.941935],[-82.841604,35.941368],[-82.838927,35.937115],[-82.834466,35.935697],[-82.833573,35.933145],[-82.830004,35.932861],[-82.823758,35.92237],[-82.821082,35.922086],[-82.810374,35.92719],[-82.805021,35.92719],[-82.802344,35.929742],[-82.805913,35.936547],[-82.800559,35.94392],[-82.795206,35.946472],[-82.791637,35.950725],[-82.787176,35.952143],[-82.785391,35.962351],[-82.778253,35.966604],[-82.775576,35.971708],[-82.779145,35.974828],[-82.781822,35.974544],[-82.785391,35.97738],[-82.784499,35.981633],[-82.785391,35.988438],[-82.779145,35.992408],[-82.778253,35.99893],[-82.766653,36.002616],[-82.763084,36.004885],[-82.755054,36.004034],[-82.7497,36.005735],[-82.750593,36.008854],[-82.746131,36.009138],[-82.739886,36.014242],[-82.73364,36.015093],[-82.731855,36.017361],[-82.724717,36.018212],[-82.716687,36.023883],[-82.715794,36.02842],[-82.709549,36.029838],[-82.70241,36.032673],[-82.701518,36.034658],[-82.688134,36.039195],[-82.684565,36.044866],[-82.679212,36.048269],[-82.67475,36.048552],[-82.669397,36.053089],[-82.667612,36.052522],[-82.66416619497801,36.05434715411741],[-82.659582,36.056775],[-82.656013,36.055925],[-82.650659,36.057626],[-82.646198,36.061596],[-82.636383,36.065849],[-82.631922,36.064148],[-82.617645,36.054223],[-82.617645,36.046567],[-82.610507,36.044866],[-82.602477,36.038061],[-82.602477,36.035792],[-82.596231,36.036643],[-82.592662,36.035792],[-82.59177,36.031822],[-82.600692,36.025868],[-82.605154,36.021047],[-82.603369,36.017645],[-82.60783,36.01651],[-82.610507,36.010839],[-82.608723,36.008287],[-82.614076,36.004601],[-82.614969,36.000064],[-82.613184,35.993259],[-82.60783,35.992125],[-82.605154,35.987304],[-82.60783,35.984185],[-82.608723,35.979648],[-82.612292,35.971425],[-82.611399,35.967172],[-82.601585,35.96462],[-82.592662,35.966321],[-82.577493,35.964052],[-82.576601,35.958948],[-82.569463,35.957247],[-82.567679,35.955546],[-82.558756,35.953844],[-82.550726,35.964052],[-82.547156,35.964903],[-82.543587,35.968022],[-82.535557,35.969724],[-82.531988,35.972276],[-82.52485,35.970858],[-82.520389,35.974544],[-82.50522,35.97738],[-82.504328,35.981633],[-82.501651,35.9822],[-82.484698,35.993826],[-82.484698,35.996378],[-82.481129,35.998363],[-82.475775,35.998079],[-82.464176,36.006586],[-82.460607,36.007437],[-82.434731,36.046567],[-82.423132,36.064431],[-82.409748,36.082579],[-82.404394,36.087683],[-82.397256,36.090235],[-82.39101,36.096757],[-82.381195,36.099309],[-82.379411,36.102712],[-82.374949,36.106114],[-82.364242,36.107532],[-82.35532,36.115188],[-82.349966,36.116889],[-82.347289,36.115188],[-82.336582,36.114621],[-82.32409,36.120292],[-82.317845,36.121143],[-82.315168,36.124262],[-82.308922,36.126247],[-82.302676,36.131067],[-82.291077,36.135321],[-82.2884,36.135321],[-82.279477,36.128515],[-82.275016,36.129366],[-82.267878,36.126814],[-82.265201,36.126814],[-82.261632,36.133336],[-82.254494,36.135888],[-82.251817,36.131918],[-82.244679,36.131067],[-82.243787,36.134186],[-82.234864,36.141842],[-82.22951,36.144394],[-82.225049,36.150349],[-82.22148,36.156304],[-82.214342,36.159139],[-82.208988,36.156871],[-82.20185,36.156304],[-82.199173,36.152617],[-82.192035,36.148648],[-82.187574,36.1512],[-82.184897,36.145245],[-82.176867,36.141842],[-82.173298,36.146096],[-82.159914,36.145529],[-82.157237,36.147797],[-82.149207,36.149498],[-82.143853,36.143827],[-82.143853,36.140141],[-82.136715,36.128515],[-82.137607,36.119441]]]}},{"type":"Feature","properties":{"district":12},"geometry":{"type":"Polygon","coordinates":[[[-79.7508,36.059895],[-79.748124,36.059327],[-79.748124,36.051671],[-79.752585,36.048552],[-79.752585,36.046567],[-79.740093,36.050821],[-79.709756,36.057343],[-79.701726,36.058193],[-79.699049,36.047702],[-79.694588,36.044299],[-79.692803,36.044015],[-79.691911,36.040046],[-79.69548,36.034942],[-79.699941,36.034658],[-79.70351,36.030121],[-79.70351,36.026435],[-79.712433,36.024734],[-79.714218,36.019062],[-79.722248,36.012541],[-79.727601,36.010556],[-79.728494,36.008004],[-79.73474,36.002333],[-79.735632,35.996661],[-79.74277,35.992408],[-79.740093,35.989005],[-79.743662,35.989005],[-79.748124,35.99496],[-79.760615,35.994677],[-79.778461,35.990707],[-79.780245,35.990707],[-79.780245,36.000631],[-79.785599,36.008854],[-79.791845,36.009138],[-79.793629,36.006586],[-79.792737,36.000631],[-79.801659,36.000064],[-79.801659,36.003183],[-79.804336,36.003183],[-79.810582,35.997512],[-79.816828,35.995811],[-79.820397,35.992408],[-79.822182,35.99496],[-79.831104,35.993826],[-79.843596,35.993826],[-79.849842,35.992125],[-79.850734,35.985036],[-79.856088,35.981349],[-79.878394,35.970574],[-79.877502,35.976529],[-79.877502,35.989289],[-79.870364,35.993259],[-79.875717,35.997512],[-79.873041,36.001765],[-79.87661,36.002616],[-79.875717,36.013391],[-79.870364,36.015093],[-79.865902,36.015093],[-79.866795,36.022465],[-79.865902,36.026718],[-79.868579,36.029838],[-79.879286,36.032673],[-79.879286,36.030121],[-79.88464,36.030121],[-79.880179,36.036359],[-79.875717,36.046851],[-79.873041,36.04997],[-79.891778,36.056492],[-79.885532,36.059044],[-79.880179,36.059895],[-79.879286,36.063297],[-79.885532,36.064999],[-79.885532,36.067551],[-79.894455,36.076057],[-79.895347,36.072655],[-79.89267,36.0667],[-79.899808,36.0667],[-79.900701,36.064431],[-79.905162,36.0667],[-79.908731,36.062447],[-79.916762,36.065849],[-79.921223,36.059044],[-79.924792,36.055641],[-79.929253,36.05394],[-79.929253,36.051671],[-79.935499,36.046],[-79.937284,36.041747],[-79.935499,36.034658],[-79.938176,36.029838],[-79.937284,36.024166],[-79.939068,36.024166],[-79.941745,36.01651],[-79.938176,36.013958],[-79.940853,36.012541],[-79.942637,36.003183],[-79.946206,36.000631],[-79.947098,35.996378],[-79.950668,35.998363],[-79.956021,35.999213],[-79.958698,35.990707],[-79.947098,35.986737],[-79.949775,35.982484],[-79.954237,35.978797],[-79.955129,35.970007],[-79.948883,35.970007],[-79.948883,35.964052],[-79.950668,35.958381],[-79.947098,35.955829],[-79.956913,35.950725],[-79.968513,35.94874],[-79.976543,35.942219],[-80.005096,35.928891],[-80.021156,35.919534],[-80.047032,35.920668],[-80.047032,35.916415],[-80.051493,35.916415],[-80.051493,35.919534],[-80.062201,35.920668],[-80.062201,35.924638],[-80.06577,35.924922],[-80.064877,35.92237],[-80.072015,35.92322],[-80.072015,35.926339],[-80.079154,35.926339],[-80.080046,35.92322],[-80.079154,35.918967],[-80.08183,35.921235],[-80.084507,35.919818],[-80.080938,35.913012],[-80.08183,35.908759],[-80.088076,35.90564],[-80.087184,35.904506],[-80.095214,35.900536],[-80.091645,35.897984],[-80.077369,35.898834],[-80.071123,35.896282],[-80.072908,35.891462],[-80.070231,35.888059],[-80.074692,35.886358],[-80.072908,35.883522],[-80.079154,35.878986],[-80.08183,35.882955],[-80.083615,35.882105],[-80.109491,35.876434],[-80.117521,35.877001],[-80.12912,35.874732],[-80.138043,35.867643],[-80.14875,35.863106],[-80.154996,35.858853],[-80.169272,35.847794],[-80.173734,35.846093],[-80.194256,35.843541],[-80.199609,35.842123],[-80.200502,35.836736],[-80.211209,35.835601],[-80.211209,35.831915],[-80.214778,35.830214],[-80.220131,35.832199],[-80.222808,35.831065],[-80.2237,35.827095],[-80.219239,35.824543],[-80.224593,35.822558],[-80.226377,35.819439],[-80.231731,35.818588],[-80.233515,35.814335],[-80.238869,35.813768],[-80.244222,35.814618],[-80.239761,35.82114],[-80.240653,35.822841],[-80.249576,35.820857],[-80.248684,35.814618],[-80.251361,35.811216],[-80.25493,35.811783],[-80.257606,35.809231],[-80.251361,35.808664],[-80.253145,35.793635],[-80.259391,35.788531],[-80.261176,35.785128],[-80.263852,35.791083],[-80.266529,35.791083],[-80.268314,35.797605],[-80.271883,35.79165],[-80.273667,35.785412],[-80.279913,35.776905],[-80.299543,35.776905],[-80.301327,35.7701],[-80.308466,35.758191],[-80.328095,35.743446],[-80.325419,35.737774],[-80.325419,35.729835],[-80.328988,35.721612],[-80.333449,35.71906],[-80.340587,35.721045],[-80.35754,35.717642],[-80.370032,35.715941],[-80.379847,35.71906],[-80.388769,35.71906],[-80.392338,35.721895],[-80.397692,35.720194],[-80.409291,35.706583],[-80.41286,35.69836],[-80.409291,35.696659],[-80.410184,35.692405],[-80.407507,35.689286],[-80.406615,35.686451],[-80.411076,35.682481],[-80.414645,35.689003],[-80.420891,35.688436],[-80.416429,35.682481],[-80.415537,35.677661],[-80.447659,35.66405],[-80.440521,35.663199],[-80.442305,35.654125],[-80.439628,35.650723],[-80.439628,35.646469],[-80.44409,35.638246],[-80.447659,35.640515],[-80.457474,35.62662],[-80.461935,35.628322],[-80.461043,35.632292],[-80.466396,35.635694],[-80.469965,35.632292],[-80.475319,35.633142],[-80.477996,35.626337],[-80.486026,35.621233],[-80.495841,35.613293],[-80.498518,35.595713],[-80.505656,35.59628],[-80.51904,35.595713],[-80.524393,35.597981],[-80.542239,35.601384],[-80.5467,35.595429],[-80.559192,35.598832],[-80.594882,35.606488],[-80.594882,35.601667],[-80.615404,35.592877],[-80.636819,35.581535],[-80.638603,35.563671],[-80.64931,35.567924],[-80.661802,35.574446],[-80.672509,35.57473],[-80.681432,35.572178],[-80.685001,35.568775],[-80.685893,35.563954],[-80.685001,35.553746],[-80.678755,35.546941],[-80.671617,35.542971],[-80.667156,35.539001],[-80.666263,35.534748],[-80.669833,35.527092],[-80.670725,35.516317],[-80.674294,35.506109],[-80.68857,35.506393],[-80.68857,35.481723],[-80.693031,35.477753],[-80.70017,35.475201],[-80.701954,35.472649],[-80.702846,35.466978],[-80.70017,35.462725],[-80.701062,35.458471],[-80.692139,35.446846],[-80.68857,35.438623],[-80.687678,35.429265],[-80.68054,35.428698],[-80.678755,35.423594],[-80.673402,35.419057],[-80.68054,35.412535],[-80.692139,35.408282],[-80.699277,35.401193],[-80.706415,35.379926],[-80.712661,35.369435],[-80.720692,35.362629],[-80.7082,35.354973],[-80.693924,35.34675],[-80.68054,35.306485],[-80.668048,35.269056],[-80.659125,35.263668],[-80.651095,35.259982],[-80.653772,35.257146],[-80.657341,35.247789],[-80.673402,35.233611],[-80.678755,35.230492],[-80.685893,35.221418],[-80.686786,35.214897],[-80.672509,35.208658],[-80.683216,35.210643],[-80.692139,35.21121],[-80.703739,35.209509],[-80.709092,35.213195],[-80.709092,35.215747],[-80.713553,35.218016],[-80.717123,35.217165],[-80.724261,35.219433],[-80.723368,35.217165],[-80.726937,35.212061],[-80.726937,35.202137],[-80.721584,35.199585],[-80.726937,35.193063],[-80.730506,35.185974],[-80.725153,35.179452],[-80.720692,35.176333],[-80.726937,35.172647],[-80.725153,35.170095],[-80.72783,35.166408],[-80.737645,35.159603],[-80.732291,35.155066],[-80.721584,35.14259],[-80.732291,35.13862],[-80.730506,35.136351],[-80.737645,35.133799],[-80.741214,35.14259],[-80.744783,35.147127],[-80.749244,35.157051],[-80.760843,35.166976],[-80.75549,35.167259],[-80.757274,35.17293],[-80.756382,35.176049],[-80.749244,35.175482],[-80.770658,35.198167],[-80.776904,35.201002],[-80.786719,35.201853],[-80.792073,35.196465],[-80.792073,35.193063],[-80.79475,35.191078],[-80.800995,35.189376],[-80.801888,35.191078],[-80.81081,35.190511],[-80.811703,35.202137],[-80.808133,35.205256],[-80.812595,35.208658],[-80.809918,35.21036],[-80.806349,35.208658],[-80.80278,35.208942],[-80.800103,35.212345],[-80.799211,35.219433],[-80.800103,35.225388],[-80.797426,35.226239],[-80.795642,35.222269],[-80.793857,35.221985],[-80.792073,35.225388],[-80.784935,35.22794],[-80.78315,35.230492],[-80.77512,35.233044],[-80.776904,35.236447],[-80.78315,35.238715],[-80.788504,35.234746],[-80.79475,35.235596],[-80.799211,35.238715],[-80.808133,35.232761],[-80.81081,35.233044],[-80.811703,35.229074],[-80.818841,35.221418],[-80.829548,35.220568],[-80.833117,35.218016],[-80.834901,35.213195],[-80.83847,35.213762],[-80.845609,35.219717],[-80.850962,35.217732],[-80.859885,35.209509],[-80.860777,35.207241],[-80.867915,35.198734],[-80.872377,35.195331],[-80.875946,35.189376],[-80.875946,35.162722],[-80.876838,35.13862],[-80.870592,35.136351],[-80.870592,35.127845],[-80.864346,35.127561],[-80.867023,35.123024],[-80.870592,35.109414],[-80.875946,35.10431],[-80.87773,35.098355],[-80.882191,35.10119],[-80.893791,35.106862],[-80.898252,35.113667],[-80.893791,35.122174],[-80.899144,35.123591],[-80.903606,35.12189],[-80.90539,35.118487],[-80.914313,35.123591],[-80.920559,35.128412],[-80.925912,35.136351],[-80.930374,35.140321],[-80.942865,35.148544],[-80.948219,35.154499],[-80.954465,35.153648],[-80.951788,35.157902],[-80.955357,35.166408],[-80.955357,35.170378],[-80.94465,35.170378],[-80.938404,35.164424],[-80.928589,35.162722],[-80.921451,35.163573],[-80.924128,35.166976],[-80.932158,35.186257],[-80.929481,35.18966],[-80.93305,35.19363],[-80.942865,35.193063],[-80.958926,35.18966],[-80.962495,35.200435],[-80.961603,35.206106],[-80.958926,35.212061],[-80.961603,35.223687],[-80.958034,35.224537],[-80.958034,35.228791],[-80.955357,35.232194],[-80.948219,35.228791],[-80.953573,35.233044],[-80.959818,35.233044],[-80.959818,35.237298],[-80.974987,35.240417],[-80.973202,35.245521],[-80.965172,35.255729],[-80.960711,35.254878],[-80.958926,35.257997],[-80.955357,35.256579],[-80.950896,35.259698],[-80.946434,35.259131],[-80.945542,35.2614],[-80.941081,35.259698],[-80.941081,35.268205],[-80.937512,35.274727],[-80.938404,35.280398],[-80.930374,35.279547],[-80.921451,35.282383],[-80.904498,35.281532],[-80.89736,35.276428],[-80.89736,35.279831],[-80.90539,35.284084],[-80.91699,35.294009],[-80.919667,35.297411],[-80.92502,35.299113],[-80.920559,35.303933],[-80.922343,35.311589],[-80.916097,35.309888],[-80.916097,35.314141],[-80.911636,35.31726],[-80.913421,35.320096],[-80.925912,35.319812],[-80.926805,35.322648],[-80.924128,35.325767],[-80.909852,35.328319],[-80.914313,35.335692],[-80.911636,35.336826],[-80.90539,35.345049],[-80.899144,35.34675],[-80.892006,35.3459],[-80.886653,35.346467],[-80.882191,35.348168],[-80.858993,35.365181],[-80.856316,35.366599],[-80.85007,35.365749],[-80.845609,35.366599],[-80.839363,35.370002],[-80.827763,35.369435],[-80.82241,35.367733],[-80.819733,35.36348],[-80.815272,35.367733],[-80.803672,35.373972],[-80.795642,35.379926],[-80.787611,35.383613],[-80.785827,35.371703],[-80.788504,35.365181],[-80.800103,35.360077],[-80.79475,35.354123],[-80.795642,35.35072],[-80.80278,35.3459],[-80.812595,35.352421],[-80.82241,35.353272],[-80.824194,35.338527],[-80.818841,35.336542],[-80.808133,35.339094],[-80.795642,35.337393],[-80.797426,35.332572],[-80.790288,35.33314],[-80.785827,35.331438],[-80.784042,35.325484],[-80.774227,35.326334],[-80.774227,35.33399],[-80.770658,35.340796],[-80.759951,35.3459],[-80.759059,35.350153],[-80.75549,35.356675],[-80.752813,35.359227],[-80.74389,35.359794],[-80.741214,35.365749],[-80.737645,35.366883],[-80.733183,35.371703],[-80.74389,35.380777],[-80.75549,35.394955],[-80.766197,35.40091],[-80.76352,35.411968],[-80.752813,35.414237],[-80.759059,35.428698],[-80.765305,35.440891],[-80.771551,35.453367],[-80.774227,35.457621],[-80.774227,35.463575],[-80.780473,35.472082],[-80.78315,35.484559],[-80.788504,35.492782],[-80.788504,35.499587],[-80.784935,35.505542],[-80.738537,35.505258],[-80.737645,35.515183],[-80.738537,35.52454],[-80.737645,35.525391],[-80.741214,35.532196],[-80.741214,35.5373],[-80.741214,35.544389],[-80.745675,35.568775],[-80.75549,35.608756],[-80.754598,35.612159],[-80.74746,35.616696],[-80.738537,35.617263],[-80.710877,35.622934],[-80.689462,35.623218],[-80.685893,35.624068],[-80.676078,35.632575],[-80.669833,35.635694],[-80.66894,35.644768],[-80.661802,35.649021],[-80.651987,35.648171],[-80.644849,35.649021],[-80.637711,35.646469],[-80.634142,35.64732],[-80.614512,35.648454],[-80.610051,35.650439],[-80.601128,35.649872],[-80.588636,35.653842],[-80.576145,35.652424],[-80.567222,35.655827],[-80.558299,35.660647],[-80.555623,35.661498],[-80.535993,35.660647],[-80.523501,35.66405],[-80.50744,35.665468],[-80.508333,35.668303],[-80.501195,35.672557],[-80.509225,35.679362],[-80.513686,35.68163],[-80.517255,35.679929],[-80.518148,35.686734],[-80.480673,35.676526],[-80.469965,35.667453],[-80.456581,35.678228],[-80.449443,35.68078],[-80.453905,35.6856],[-80.444982,35.700912],[-80.442305,35.701763],[-80.435167,35.707434],[-80.431598,35.709135],[-80.428921,35.714239],[-80.42446,35.717642],[-80.423568,35.725298],[-80.428921,35.728984],[-80.444982,35.734939],[-80.45212,35.734372],[-80.455689,35.734939],[-80.46015,35.743446],[-80.458366,35.752519],[-80.453905,35.758191],[-80.45212,35.76613],[-80.455689,35.772652],[-80.46015,35.77492],[-80.473534,35.784278],[-80.477103,35.789098],[-80.476211,35.795053],[-80.47175,35.799306],[-80.466396,35.801008],[-80.464612,35.803843],[-80.467289,35.813768],[-80.457474,35.818588],[-80.453012,35.821991],[-80.446766,35.819439],[-80.446766,35.81717],[-80.442305,35.814618],[-80.436952,35.814618],[-80.428029,35.809514],[-80.419999,35.809231],[-80.410184,35.798456],[-80.409291,35.796187],[-80.400369,35.78683],[-80.374493,35.773503],[-80.345048,35.768399],[-80.325419,35.769533],[-80.328988,35.774353],[-80.32988,35.779457],[-80.334341,35.788531],[-80.328095,35.796754],[-80.336126,35.799306],[-80.331664,35.80838],[-80.331664,35.815469],[-80.32988,35.822841],[-80.320957,35.822558],[-80.316496,35.819439],[-80.312035,35.82114],[-80.311142,35.823692],[-80.304896,35.828513],[-80.30222,35.832199],[-80.296866,35.827662],[-80.280805,35.827662],[-80.266529,35.823692],[-80.262068,35.8339],[-80.253145,35.835318],[-80.254037,35.839571],[-80.249576,35.839571],[-80.249576,35.844675],[-80.254037,35.844675],[-80.25493,35.849496],[-80.252253,35.856301],[-80.250468,35.867076],[-80.241546,35.865375],[-80.228162,35.867076],[-80.221024,35.866226],[-80.217455,35.859704],[-80.218347,35.855167],[-80.209424,35.8546],[-80.204963,35.863957],[-80.204071,35.870479],[-80.199609,35.869345],[-80.194256,35.870479],[-80.195148,35.874449],[-80.191579,35.87615],[-80.193363,35.879553],[-80.190687,35.886358],[-80.182656,35.891462],[-80.175518,35.899685],[-80.169272,35.903939],[-80.166595,35.911027],[-80.159457,35.920385],[-80.159457,35.924071],[-80.162134,35.926339],[-80.154996,35.933145],[-80.149642,35.934563],[-80.145181,35.939667],[-80.146073,35.945338],[-80.141612,35.947323],[-80.133582,35.94874],[-80.132689,35.950725],[-80.141612,35.955546],[-80.145181,35.9615],[-80.149642,35.964903],[-80.149642,35.972276],[-80.163026,35.984185],[-80.170165,35.99496],[-80.171057,35.999213],[-80.177303,36.008287],[-80.188902,36.022465],[-80.199609,36.026435],[-80.208532,36.023316],[-80.213886,36.024166],[-80.213886,35.996661],[-80.233515,35.996661],[-80.266529,35.996661],[-80.261176,36.007437],[-80.261176,36.015943],[-80.252253,36.016794],[-80.232623,36.02842],[-80.233515,36.030688],[-80.230839,36.036643],[-80.234408,36.040613],[-80.233515,36.047418],[-80.239761,36.047418],[-80.240653,36.054223],[-80.239761,36.056775],[-80.232623,36.053089],[-80.226377,36.053373],[-80.227269,36.063297],[-80.2237,36.06273],[-80.222808,36.069252],[-80.226377,36.069252],[-80.230839,36.073505],[-80.2353,36.075207],[-80.241546,36.082579],[-80.237977,36.086549],[-80.238869,36.092503],[-80.244222,36.093354],[-80.247792,36.092503],[-80.248684,36.097608],[-80.254037,36.097324],[-80.254037,36.099309],[-80.249576,36.10101],[-80.255822,36.106114],[-80.262068,36.102428],[-80.267421,36.109233],[-80.264745,36.115755],[-80.257606,36.121143],[-80.263852,36.131918],[-80.272775,36.137873],[-80.27099,36.139574],[-80.261176,36.142126],[-80.256714,36.144394],[-80.264745,36.148648],[-80.264745,36.156304],[-80.278129,36.166228],[-80.278129,36.171049],[-80.269206,36.173601],[-80.265637,36.173601],[-80.258499,36.165094],[-80.244222,36.150916],[-80.244222,36.147797],[-80.241546,36.145529],[-80.239761,36.13844],[-80.233515,36.140992],[-80.229946,36.140992],[-80.226377,36.148364],[-80.21567,36.151767],[-80.206747,36.157154],[-80.204963,36.150916],[-80.202286,36.1512],[-80.203178,36.146096],[-80.199609,36.145245],[-80.194256,36.146946],[-80.19604,36.136171],[-80.202286,36.129366],[-80.198717,36.125112],[-80.19604,36.11774],[-80.195148,36.112069],[-80.19604,36.107532],[-80.188902,36.11377],[-80.185333,36.115188],[-80.180872,36.112636],[-80.171057,36.112636],[-80.159457,36.109233],[-80.158565,36.105264],[-80.166595,36.102712],[-80.165703,36.10016],[-80.170165,36.10101],[-80.175518,36.097608],[-80.179087,36.097324],[-80.189794,36.090235],[-80.193363,36.091936],[-80.190687,36.08343],[-80.182656,36.078326],[-80.183549,36.074356],[-80.194256,36.072371],[-80.200502,36.065282],[-80.194256,36.059895],[-80.202286,36.057626],[-80.213886,36.058477],[-80.209424,36.055641],[-80.202286,36.048269],[-80.182656,36.040046],[-80.162134,36.026718],[-80.149642,36.026718],[-80.132689,36.023883],[-80.130013,36.022182],[-80.130013,36.018212],[-80.127336,36.01169],[-80.12912,36.009138],[-80.121982,36.009138],[-80.119305,36.002333],[-80.120198,35.996661],[-80.115736,35.995811],[-80.105029,35.996661],[-80.096107,35.99893],[-80.087184,35.992408],[-80.088969,35.987304],[-80.094322,35.981633],[-80.094322,35.976529],[-80.092538,35.967455],[-80.085399,35.969724],[-80.079154,35.964903],[-80.074692,35.958948],[-80.070231,35.94874],[-80.060416,35.945621],[-80.060416,35.939667],[-80.056847,35.938816],[-80.048817,35.940517],[-80.04614,35.939667],[-80.04614,35.945338],[-80.039894,35.943069],[-80.037217,35.945338],[-80.02651,35.943069],[-80.022049,35.948173],[-80.019372,35.947323],[-80.014911,35.952427],[-80.00688,35.957531],[-80.015803,35.968022],[-80.01848,35.972843],[-80.015803,35.973126],[-80.017587,35.979081],[-80.016695,35.983334],[-80.009557,35.983901],[-80.00688,35.985603],[-79.997065,35.99496],[-79.991712,36.001765],[-79.986358,35.992975],[-79.982789,35.99014],[-79.975651,35.995527],[-79.972082,36.000915],[-79.97119,36.007153],[-79.978328,36.007153],[-79.977435,36.013391],[-79.97922,36.014809],[-79.97119,36.024166],[-79.972974,36.025017],[-79.969405,36.028987],[-79.964944,36.030688],[-79.963159,36.037494],[-79.963159,36.058477],[-79.964944,36.060178],[-79.964944,36.0667],[-79.969405,36.067267],[-79.97119,36.072655],[-79.970297,36.083713],[-79.958698,36.07946],[-79.955129,36.086832],[-79.955129,36.091936],[-79.949775,36.090802],[-79.931038,36.080878],[-79.929253,36.085982],[-79.926576,36.087683],[-79.916762,36.089384],[-79.900701,36.087399],[-79.889994,36.089951],[-79.889994,36.086549],[-79.894455,36.081728],[-79.889101,36.079176],[-79.880179,36.076624],[-79.874825,36.076624],[-79.86501,36.080027],[-79.865902,36.070103],[-79.85698,36.068968],[-79.848949,36.069252],[-79.848949,36.064431],[-79.853411,36.063297],[-79.852518,36.060178],[-79.84538,36.059327],[-79.841811,36.059895],[-79.820397,36.061879],[-79.799875,36.065282],[-79.799875,36.064148],[-79.793629,36.064431],[-79.791845,36.067551],[-79.784706,36.071804],[-79.786491,36.081728],[-79.781137,36.10016],[-79.78203,36.101861],[-79.781137,36.118307],[-79.789168,36.125963],[-79.790952,36.134186],[-79.801659,36.130216],[-79.813259,36.124262],[-79.815043,36.132485],[-79.812367,36.136171],[-79.804336,36.140141],[-79.803444,36.144394],[-79.794521,36.143544],[-79.792737,36.150349],[-79.787383,36.150065],[-79.784706,36.152901],[-79.784706,36.166795],[-79.778461,36.165094],[-79.773107,36.16878],[-79.766861,36.171899],[-79.755262,36.179555],[-79.747231,36.188629],[-79.744555,36.190047],[-79.732955,36.188629],[-79.732063,36.190898],[-79.726709,36.192882],[-79.720463,36.18948],[-79.719571,36.184659],[-79.716002,36.183809],[-79.714218,36.180406],[-79.708864,36.181257],[-79.70351,36.176153],[-79.699941,36.17757],[-79.699049,36.154319],[-79.711541,36.152617],[-79.717787,36.152901],[-79.730278,36.1512],[-79.745447,36.130216],[-79.74277,36.130216],[-79.74277,36.123695],[-79.746339,36.124262],[-79.745447,36.110935],[-79.741878,36.109233],[-79.733847,36.110935],[-79.728494,36.11377],[-79.726709,36.116606],[-79.722248,36.116606],[-79.717787,36.121993],[-79.71511,36.120859],[-79.712433,36.122844],[-79.712433,36.116039],[-79.714218,36.114337],[-79.716894,36.102712],[-79.716002,36.10016],[-79.716002,36.087683],[-79.717787,36.086549],[-79.725817,36.087399],[-79.729386,36.085131],[-79.727601,36.078326],[-79.730278,36.078326],[-79.732063,36.075207],[-79.728494,36.069819],[-79.737416,36.068968],[-79.739201,36.065282],[-79.737416,36.061879],[-79.743662,36.063297],[-79.749908,36.062447],[-79.7508,36.059895]]]}},{"type":"Feature","properties":{"district":13},"geometry":{"type":"Polygon","coordinates":[[[-78.025161,35.378509],[-78.023377,35.375957],[-78.022485,35.369435],[-78.018916,35.370002],[-78.023377,35.364898],[-78.022485,35.355541],[-78.027838,35.353272],[-78.025161,35.348168],[-78.029623,35.3459],[-78.025161,35.339945],[-78.030515,35.331722],[-78.033192,35.320947],[-78.037653,35.316693],[-78.043899,35.31641],[-78.047468,35.318395],[-78.054606,35.320096],[-78.05996,35.320096],[-78.066206,35.318111],[-78.080482,35.309888],[-78.084051,35.300814],[-78.083159,35.296561],[-78.085835,35.289188],[-78.085835,35.271324],[-78.083159,35.263952],[-78.072451,35.264802],[-78.066206,35.265653],[-78.066206,35.261967],[-78.063529,35.25743],[-78.069775,35.246655],[-78.068882,35.242118],[-78.065313,35.241551],[-78.056391,35.237865],[-78.056391,35.22312],[-78.057283,35.219433],[-78.060852,35.215464],[-78.054606,35.212061],[-78.058175,35.212061],[-78.062636,35.209509],[-78.057283,35.206106],[-78.059067,35.204689],[-78.068882,35.19363],[-78.074236,35.196182],[-78.077805,35.193913],[-78.080482,35.195331],[-78.084943,35.191361],[-78.088512,35.192779],[-78.09565,35.182288],[-78.08762,35.184556],[-78.083159,35.182288],[-78.082266,35.179452],[-78.075128,35.182855],[-78.070667,35.180586],[-78.06799,35.186257],[-78.05996,35.187675],[-78.056391,35.190511],[-78.059067,35.194764],[-78.056391,35.200435],[-78.050145,35.201853],[-78.047468,35.204405],[-78.055498,35.208091],[-78.049252,35.215464],[-78.042114,35.213762],[-78.02873,35.220284],[-78.030515,35.225388],[-78.034976,35.229925],[-78.035869,35.237014],[-78.031407,35.24467],[-78.024269,35.24864],[-78.018023,35.255729],[-78.018916,35.26225],[-78.009993,35.269907],[-78.003747,35.273876],[-77.998393,35.280398],[-78.008208,35.282099],[-78.008208,35.289188],[-78.010885,35.291457],[-78.016239,35.304784],[-78.018023,35.316693],[-78.00107,35.322364],[-77.995717,35.325484],[-77.992148,35.33002],[-77.997501,35.336826],[-77.994824,35.337676],[-77.986794,35.336826],[-77.985902,35.33399],[-77.976087,35.324916],[-77.971626,35.321514],[-77.969841,35.323782],[-77.970733,35.332572],[-77.964487,35.335975],[-77.93415,35.343348],[-77.933258,35.349019],[-77.941289,35.346467],[-77.94575,35.35072],[-77.951103,35.353272],[-77.949319,35.354973],[-77.950211,35.359227],[-77.951996,35.359227],[-77.952888,35.36348],[-77.958242,35.364898],[-77.95378,35.368584],[-77.939504,35.361779],[-77.935935,35.363197],[-77.927012,35.356675],[-77.921659,35.349019],[-77.918982,35.34675],[-77.910952,35.352421],[-77.902029,35.360077],[-77.891322,35.364047],[-77.883291,35.368584],[-77.877045,35.370002],[-77.87883,35.374255],[-77.872584,35.379359],[-77.869015,35.380777],[-77.853847,35.38021],[-77.844924,35.376524],[-77.827971,35.377658],[-77.815479,35.377374],[-77.80388,35.372554],[-77.807449,35.368301],[-77.815479,35.361495],[-77.819941,35.355824],[-77.819941,35.351571],[-77.824402,35.343915],[-77.825294,35.33314],[-77.827079,35.298262],[-77.828863,35.280682],[-77.829755,35.26622],[-77.829755,35.248923],[-77.830648,35.233044],[-77.834217,35.181153],[-77.834217,35.177751],[-77.846709,35.173781],[-77.875261,35.166408],[-77.884184,35.162722],[-77.893106,35.1562],[-77.894891,35.151096],[-77.893106,35.146276],[-77.89846,35.148544],[-77.904706,35.154499],[-77.910952,35.158752],[-77.910952,35.162722],[-77.917197,35.166408],[-77.919874,35.169528],[-77.930581,35.173781],[-77.937719,35.170945],[-77.943073,35.17208],[-77.947534,35.171796],[-77.95378,35.165274],[-77.97341,35.164707],[-77.974302,35.166976],[-77.980548,35.171229],[-77.98144,35.177751],[-77.985009,35.183705],[-77.995717,35.182855],[-77.999286,35.187675],[-78.007316,35.191078],[-78.016239,35.190511],[-78.021592,35.193913],[-78.037653,35.191361],[-78.043899,35.192779],[-78.051929,35.188526],[-78.05996,35.185407],[-78.066206,35.180303],[-78.077805,35.174348],[-78.097435,35.177184],[-78.113496,35.180586],[-78.121526,35.181437],[-78.13491,35.183989],[-78.163462,35.189376],[-78.161678,35.203838],[-78.236628,35.22312],[-78.248227,35.227089],[-78.252689,35.233044],[-78.25715,35.236447],[-78.266965,35.247222],[-78.268749,35.249774],[-78.305332,35.285786],[-78.287487,35.314992],[-78.273211,35.318962],[-78.267857,35.324066],[-78.263396,35.325767],[-78.25715,35.324916],[-78.24912,35.320096],[-78.239305,35.321514],[-78.216106,35.33314],[-78.21789,35.338527],[-78.212537,35.342213],[-78.20986,35.339945],[-78.203614,35.341363],[-78.198261,35.340512],[-78.198261,35.343348],[-78.187553,35.342497],[-78.185769,35.345049],[-78.179523,35.344198],[-78.174169,35.347317],[-78.166139,35.346467],[-78.160786,35.349019],[-78.159001,35.347601],[-78.153647,35.351571],[-78.153647,35.354973],[-78.159893,35.356675],[-78.158109,35.359794],[-78.16257,35.365749],[-78.161678,35.368301],[-78.156324,35.375957],[-78.150971,35.378225],[-78.146509,35.382762],[-78.145617,35.388433],[-78.150971,35.391836],[-78.153647,35.391836],[-78.15454,35.417639],[-78.125987,35.4735],[-78.120634,35.480872],[-78.109034,35.502139],[-78.08762,35.544673],[-78.064421,35.585505],[-78.126879,35.603085],[-78.132233,35.618964],[-78.135802,35.62577],[-78.143832,35.647604],[-78.153647,35.674258],[-78.159001,35.688436],[-78.16257,35.696375],[-78.16257,35.713389],[-78.167031,35.713389],[-78.175062,35.717642],[-78.176846,35.722462],[-78.180415,35.726716],[-78.185769,35.729268],[-78.191123,35.730118],[-78.194692,35.728417],[-78.205399,35.727566],[-78.207183,35.728417],[-78.215214,35.73579],[-78.216998,35.740043],[-78.215214,35.748266],[-78.21789,35.754221],[-78.222352,35.754221],[-78.226813,35.750251],[-78.233951,35.751952],[-78.23752,35.756773],[-78.235736,35.759892],[-78.238413,35.761877],[-78.239305,35.768399],[-78.244658,35.768682],[-78.247335,35.772085],[-78.251796,35.772935],[-78.24912,35.776905],[-78.24912,35.781159],[-78.246443,35.784561],[-78.248227,35.788248],[-78.244658,35.791934],[-78.248227,35.792501],[-78.250012,35.795053],[-78.250012,35.80356],[-78.252689,35.810932],[-78.258042,35.812917],[-78.25715,35.817737],[-78.26518,35.812066],[-78.299086,35.793352],[-78.321393,35.781159],[-78.352622,35.763578],[-78.374929,35.750818],[-78.387421,35.743446],[-78.413296,35.730969],[-78.460586,35.705733],[-78.464155,35.707718],[-78.467724,35.707718],[-78.47397,35.70233],[-78.511445,35.671706],[-78.519476,35.665468],[-78.531075,35.656394],[-78.539998,35.649872],[-78.542675,35.64732],[-78.56052,35.633709],[-78.586396,35.61386],[-78.597103,35.605637],[-78.613163,35.59231],[-78.631009,35.57955],[-78.642608,35.569626],[-78.68276,35.539001],[-78.708636,35.518869],[-78.736296,35.527092],[-78.793401,35.54524],[-78.839799,35.560268],[-78.856752,35.565372],[-78.850506,35.571894],[-78.845152,35.57473],[-78.845152,35.576431],[-78.838014,35.589758],[-78.837122,35.59628],[-78.839799,35.602802],[-78.840691,35.618114],[-78.829984,35.617263],[-78.819277,35.617547],[-78.813031,35.616412],[-78.831768,35.638246],[-78.83266,35.640798],[-78.833553,35.652424],[-78.83623,35.659796],[-78.835337,35.667169],[-78.83266,35.677377],[-78.833553,35.683332],[-78.827307,35.679929],[-78.820169,35.678228],[-78.813923,35.679929],[-78.810354,35.679362],[-78.805893,35.691555],[-78.805893,35.695525],[-78.803216,35.699211],[-78.805893,35.703464],[-78.805,35.706583],[-78.807677,35.708285],[-78.810354,35.714239],[-78.820169,35.721895],[-78.829984,35.726716],[-78.837122,35.729268],[-78.841583,35.729268],[-78.851398,35.732387],[-78.854967,35.727283],[-78.860321,35.730118],[-78.864782,35.73664],[-78.877274,35.750818],[-78.877274,35.754221],[-78.873705,35.772652],[-78.867459,35.774353],[-78.861213,35.77492],[-78.858536,35.783427],[-78.855859,35.784278],[-78.848721,35.782009],[-78.849613,35.780024],[-78.843368,35.769533],[-78.843368,35.767548],[-78.846937,35.754221],[-78.837122,35.758474],[-78.828199,35.760175],[-78.827307,35.762727],[-78.822846,35.764145],[-78.828199,35.765847],[-78.830876,35.769533],[-78.820169,35.771234],[-78.817492,35.773503],[-78.812138,35.770383],[-78.808569,35.770951],[-78.810354,35.766697],[-78.821953,35.761877],[-78.815707,35.756489],[-78.810354,35.755071],[-78.79697,35.755355],[-78.791616,35.757623],[-78.782694,35.757623],[-78.783586,35.764996],[-78.781801,35.770951],[-78.770202,35.765847],[-78.763956,35.768682],[-78.763956,35.772085],[-78.756818,35.76613],[-78.747895,35.763578],[-78.746111,35.761877],[-78.736296,35.76613],[-78.731835,35.760175],[-78.729158,35.758191],[-78.731835,35.751952],[-78.73808,35.747699],[-78.738973,35.745714],[-78.733619,35.745998],[-78.733619,35.743446],[-78.725589,35.736073],[-78.722912,35.731536],[-78.719343,35.728984],[-78.714882,35.721895],[-78.709528,35.721612],[-78.705959,35.719343],[-78.704174,35.715657],[-78.696144,35.716791],[-78.69079,35.715941],[-78.687221,35.717642],[-78.683652,35.728134],[-78.680976,35.742595],[-78.672053,35.741744],[-78.66313,35.73664],[-78.661346,35.730969],[-78.650639,35.730969],[-78.648854,35.725014],[-78.646177,35.724164],[-78.646177,35.727566],[-78.641716,35.728134],[-78.639039,35.719343],[-78.640824,35.715657],[-78.644393,35.700912],[-78.636362,35.701479],[-78.639039,35.697509],[-78.639931,35.692405],[-78.637255,35.692405],[-78.631901,35.698077],[-78.622978,35.696659],[-78.610487,35.69836],[-78.609594,35.695808],[-78.602456,35.697509],[-78.601564,35.70233],[-78.585503,35.696375],[-78.585503,35.698927],[-78.589965,35.703464],[-78.572119,35.700912],[-78.558735,35.696659],[-78.554274,35.692689],[-78.549813,35.692405],[-78.549813,35.695808],[-78.542675,35.697509],[-78.534644,35.703181],[-78.524829,35.711687],[-78.519476,35.719343],[-78.518583,35.722746],[-78.514122,35.726716],[-78.515014,35.730686],[-78.518583,35.73182],[-78.523937,35.730686],[-78.530183,35.733521],[-78.527506,35.740894],[-78.53286,35.750818],[-78.53286,35.755071],[-78.535536,35.759325],[-78.538213,35.760175],[-78.539998,35.76613],[-78.539998,35.772935],[-78.537321,35.778607],[-78.536429,35.789098],[-78.537321,35.791934],[-78.541782,35.795053],[-78.539998,35.802992],[-78.53286,35.810365],[-78.539106,35.816887],[-78.538213,35.820857],[-78.539998,35.822841],[-78.538213,35.828796],[-78.531967,35.831915],[-78.531075,35.839571],[-78.531967,35.842974],[-78.531075,35.852898],[-78.527506,35.860271],[-78.528398,35.864524],[-78.53286,35.866509],[-78.536429,35.870479],[-78.533752,35.87615],[-78.529291,35.878986],[-78.527506,35.882955],[-78.530183,35.885507],[-78.53286,35.885507],[-78.535536,35.880403],[-78.539998,35.88097],[-78.541782,35.882955],[-78.539106,35.886925],[-78.534644,35.890611],[-78.533752,35.894014],[-78.536429,35.899685],[-78.536429,35.903939],[-78.539998,35.908759],[-78.543567,35.905356],[-78.554274,35.908759],[-78.557843,35.903088],[-78.559628,35.89288],[-78.573012,35.88012],[-78.576581,35.883806],[-78.581934,35.884657],[-78.591749,35.883806],[-78.600672,35.886074],[-78.597995,35.882105],[-78.59621,35.873882],[-78.598887,35.862823],[-78.600672,35.861122],[-78.603349,35.863674],[-78.613163,35.869345],[-78.621194,35.867927],[-78.622978,35.873031],[-78.624763,35.871046],[-78.63547,35.866509],[-78.636362,35.863674],[-78.645285,35.874732],[-78.64707,35.882105],[-78.654208,35.881254],[-78.660453,35.884657],[-78.662238,35.87218],[-78.669376,35.865658],[-78.670268,35.85942],[-78.66313,35.859704],[-78.66313,35.857152],[-78.658669,35.852898],[-78.650639,35.852898],[-78.650639,35.856301],[-78.642608,35.856301],[-78.632793,35.851197],[-78.60781,35.850063],[-78.60781,35.846944],[-78.614056,35.836169],[-78.611379,35.832766],[-78.606025,35.834467],[-78.606918,35.828513],[-78.612271,35.82114],[-78.624763,35.826244],[-78.630116,35.830214],[-78.630116,35.82114],[-78.632793,35.823409],[-78.6435,35.814618],[-78.651531,35.812633],[-78.64707,35.803843],[-78.64707,35.797605],[-78.653315,35.795336],[-78.657777,35.798739],[-78.662238,35.800157],[-78.681868,35.801008],[-78.68276,35.805261],[-78.680976,35.80838],[-78.685437,35.809514],[-78.68276,35.816887],[-78.679191,35.818588],[-78.678299,35.824259],[-78.691683,35.828513],[-78.705067,35.82114],[-78.71042,35.825393],[-78.71042,35.830497],[-78.714882,35.841273],[-78.71042,35.846944],[-78.711313,35.854316],[-78.713097,35.858002],[-78.712205,35.862256],[-78.713097,35.867643],[-78.705067,35.867643],[-78.699713,35.862823],[-78.696144,35.862256],[-78.699713,35.868494],[-78.695252,35.869628],[-78.69079,35.874732],[-78.69079,35.882672],[-78.692575,35.886925],[-78.696144,35.88891],[-78.700605,35.883806],[-78.697929,35.876434],[-78.697929,35.87133],[-78.701498,35.870479],[-78.704174,35.877001],[-78.706851,35.878986],[-78.713097,35.878986],[-78.716666,35.874449],[-78.715774,35.873031],[-78.723804,35.870479],[-78.73005,35.874732],[-78.73808,35.881821],[-78.771094,35.905356],[-78.78894,35.916415],[-78.803216,35.926623],[-78.806785,35.927474],[-78.806785,35.929459],[-78.813031,35.934846],[-78.806785,35.937398],[-78.802323,35.937965],[-78.800539,35.940517],[-78.796078,35.940517],[-78.794293,35.946472],[-78.795185,35.949875],[-78.791616,35.959799],[-78.782694,35.962918],[-78.787155,35.975678],[-78.794293,35.976529],[-78.791616,35.979648],[-78.786263,35.993259],[-78.788047,35.997512],[-78.788047,36.008854],[-78.786263,36.010839],[-78.788047,36.019062],[-78.786263,36.025584],[-78.780909,36.02842],[-78.775556,36.02842],[-78.76931,36.030121],[-78.763956,36.034942],[-78.763956,36.041747],[-78.758603,36.044015],[-78.754141,36.048269],[-78.754141,36.055925],[-78.74968,36.070953],[-78.776448,36.071804],[-78.76931,36.077475],[-78.764848,36.082012],[-78.743434,36.126814],[-78.725589,36.146663],[-78.713097,36.15999],[-78.705959,36.171049],[-78.697036,36.180406],[-78.669376,36.182107],[-78.666699,36.178705],[-78.660453,36.186361],[-78.652423,36.187778],[-78.634578,36.199404],[-78.629224,36.199404],[-78.619409,36.201106],[-78.613163,36.196002],[-78.606918,36.195151],[-78.604241,36.192032],[-78.601564,36.19345],[-78.59978,36.190047],[-78.597103,36.19033],[-78.591749,36.188629],[-78.58818,36.19345],[-78.58818,36.195434],[-78.576581,36.193733],[-78.575688,36.19033],[-78.564981,36.191181],[-78.56052,36.188629],[-78.557843,36.190898],[-78.555166,36.188062],[-78.550705,36.188062],[-78.543567,36.185226],[-78.539998,36.182107],[-78.536429,36.185226],[-78.53286,36.186077],[-78.525722,36.180406],[-78.519476,36.180406],[-78.518583,36.181824],[-78.508769,36.182958],[-78.509661,36.230312],[-78.511445,36.267174],[-78.510553,36.315662],[-78.498954,36.310558],[-78.489139,36.309141],[-78.48557,36.307439],[-78.481108,36.307439],[-78.463263,36.305454],[-78.457017,36.303186],[-78.460586,36.294112],[-78.464155,36.292411],[-78.465048,36.285605],[-78.466832,36.284471],[-78.433818,36.281352],[-78.419542,36.277099],[-78.406158,36.277099],[-78.387421,36.274547],[-78.378498,36.298082],[-78.37939,36.300067],[-78.374929,36.308006],[-78.37136,36.312543],[-78.368683,36.321333],[-78.366899,36.340899],[-78.366899,36.349122],[-78.362437,36.351674],[-78.35173,36.361031],[-78.349946,36.360181],[-78.349053,36.353375],[-78.342807,36.353092],[-78.335669,36.354226],[-78.326747,36.353375],[-78.307117,36.353942],[-78.300871,36.357345],[-78.287487,36.358196],[-78.279457,36.316513],[-78.277672,36.306305],[-78.282133,36.299783],[-78.291056,36.290426],[-78.292841,36.284755],[-78.299086,36.279084],[-78.30444,36.272845],[-78.308009,36.265756],[-78.260719,36.260652],[-78.263396,36.256399],[-78.272319,36.237117],[-78.292841,36.197136],[-78.30444,36.174451],[-78.332993,36.172183],[-78.334777,36.166795],[-78.338346,36.163676],[-78.412404,36.171049],[-78.413296,36.169347],[-78.422219,36.167929],[-78.423111,36.164243],[-78.432034,36.164527],[-78.432034,36.166795],[-78.436495,36.166228],[-78.449879,36.16878],[-78.455233,36.167646],[-78.458802,36.161124],[-78.470401,36.114621],[-78.483785,36.07152],[-78.459694,36.069252],[-78.441849,36.067267],[-78.405266,36.064148],[-78.382067,36.061596],[-78.345484,36.058477],[-78.287487,36.053373],[-78.252689,36.050821],[-78.225029,36.048269],[-78.214321,36.068401],[-78.185769,36.128515],[-78.175954,36.146663],[-78.092081,36.137589],[-78.051929,36.133619],[-78.05996,36.12256],[-78.122418,36.02927],[-78.125987,36.026435],[-78.16257,35.969724],[-78.172385,35.956396],[-78.184877,35.935413],[-78.176846,35.929742],[-78.171493,35.927474],[-78.164355,35.929742],[-78.156324,35.928891],[-78.152755,35.930593],[-78.150971,35.936547],[-78.148294,35.934846],[-78.149186,35.928891],[-78.143832,35.923787],[-78.142048,35.915564],[-78.139371,35.91046],[-78.139371,35.904789],[-78.134018,35.897984],[-78.127772,35.898834],[-78.125095,35.903655],[-78.121526,35.905356],[-78.105465,35.904789],[-78.102788,35.900536],[-78.103681,35.896282],[-78.100112,35.883806],[-78.098327,35.882955],[-78.084943,35.882105],[-78.081374,35.886925],[-78.074236,35.88891],[-78.064421,35.885224],[-78.063529,35.882105],[-78.057283,35.875299],[-78.056391,35.877851],[-78.047468,35.887209],[-78.047468,35.894581],[-78.038545,35.902804],[-78.036761,35.907908],[-78.026946,35.91046],[-78.026054,35.91443],[-78.031407,35.917266],[-78.041222,35.919534],[-78.043899,35.922937],[-78.052822,35.925489],[-78.057283,35.928891],[-78.077805,35.933145],[-78.080482,35.934846],[-78.084051,35.942219],[-78.091189,35.949024],[-78.092081,35.954979],[-78.092081,35.969724],[-78.090297,35.972276],[-78.099219,35.980499],[-78.098327,35.9822],[-78.079589,35.983901],[-78.081374,35.994109],[-78.06799,36.000064],[-78.06799,36.002333],[-78.061744,36.00375],[-78.05996,36.007437],[-78.055498,36.009989],[-78.063529,36.015093],[-78.066206,36.020764],[-78.064421,36.022465],[-78.034084,36.025017],[-77.982333,36.030121],[-77.963595,36.02927],[-77.960918,36.031539],[-77.95378,36.048269],[-77.949319,36.053373],[-77.948427,36.058477],[-77.944858,36.064999],[-77.941289,36.065282],[-77.937719,36.070103],[-77.93415,36.078326],[-77.929689,36.07946],[-77.927012,36.086549],[-77.923443,36.089384],[-77.918982,36.087683],[-77.912736,36.089101],[-77.908275,36.094488],[-77.901137,36.088534],[-77.894891,36.084847],[-77.889537,36.083713],[-77.889537,36.086549],[-77.882399,36.089384],[-77.881507,36.085131],[-77.883291,36.082579],[-77.87883,36.080027],[-77.87883,36.076908],[-77.875261,36.076624],[-77.869907,36.073505],[-77.863662,36.067551],[-77.869907,36.063297],[-77.867231,36.061029],[-77.866338,36.055641],[-77.861877,36.055074],[-77.868123,36.044866],[-77.862769,36.037494],[-77.852062,36.038344],[-77.853847,36.032673],[-77.846709,36.031539],[-77.840463,36.02842],[-77.834217,36.030688],[-77.829755,36.025868],[-77.819941,36.019062],[-77.819048,36.01651],[-77.81191,36.012541],[-77.806557,36.010839],[-77.802095,36.007153],[-77.804772,36.003183],[-77.810126,36.001482],[-77.811018,36.004034],[-77.815479,36.004885],[-77.813695,36.000631],[-77.818156,36.002333],[-77.82351,35.991274],[-77.83154,35.989856],[-77.841355,35.994109],[-77.848493,35.990707],[-77.848493,35.986453],[-77.861877,35.988438],[-77.873476,35.993826],[-77.875261,35.989856],[-77.877938,35.977947],[-77.885076,35.96065],[-77.868123,35.957247],[-77.866338,35.964052],[-77.871692,35.965754],[-77.871692,35.973693],[-77.869015,35.981349],[-77.858308,35.980499],[-77.850278,35.97823],[-77.840463,35.971425],[-77.825294,35.968873],[-77.826186,35.964052],[-77.820833,35.9615],[-77.816372,35.9615],[-77.813695,35.957247],[-77.820833,35.952143],[-77.824402,35.952427],[-77.828863,35.949875],[-77.829755,35.934846],[-77.83957,35.938249],[-77.847601,35.932861],[-77.847601,35.92719],[-77.841355,35.925772],[-77.838678,35.92322],[-77.834217,35.922937],[-77.835109,35.918116],[-77.83154,35.916415],[-77.830648,35.912729],[-77.828863,35.915281],[-77.82351,35.914714],[-77.82351,35.91046],[-77.816372,35.908759],[-77.816372,35.911311],[-77.810126,35.909043],[-77.817264,35.891178],[-77.812802,35.888626],[-77.809233,35.901103],[-77.804772,35.901387],[-77.802988,35.906207],[-77.791388,35.906207],[-77.787819,35.909893],[-77.787819,35.916982],[-77.779789,35.917266],[-77.774435,35.920668],[-77.757482,35.915281],[-77.743206,35.906491],[-77.731606,35.903655],[-77.726253,35.903939],[-77.706623,35.903088],[-77.707515,35.908759],[-77.706623,35.916415],[-77.708408,35.921235],[-77.655764,35.917266],[-77.653979,35.91443],[-77.653087,35.916982],[-77.637026,35.915564],[-77.633457,35.921519],[-77.633457,35.925489],[-77.623642,35.916982],[-77.620073,35.924638],[-77.595982,35.926339],[-77.566538,35.926623],[-77.550477,35.920668],[-77.5478,35.918683],[-77.541554,35.907058],[-77.571891,35.895432],[-77.58706,35.894865],[-77.596875,35.89373],[-77.609366,35.898551],[-77.613828,35.897984],[-77.612935,35.894865],[-77.608474,35.891462],[-77.59509,35.887209],[-77.591521,35.885224],[-77.590629,35.875583],[-77.570999,35.861122],[-77.561184,35.856868],[-77.55583,35.845526],[-77.544231,35.844675],[-77.546015,35.837019],[-77.546908,35.830214],[-77.548692,35.826244],[-77.549585,35.818588],[-77.546908,35.811216],[-77.549585,35.798456],[-77.551369,35.793352],[-77.5478,35.784278],[-77.542446,35.780024],[-77.535308,35.776905],[-77.529955,35.769533],[-77.516571,35.760743],[-77.538877,35.750251],[-77.597767,35.715941],[-77.610258,35.707434],[-77.661118,35.677377],[-77.691455,35.703464],[-77.688778,35.713105],[-77.688778,35.720761],[-77.693239,35.724164],[-77.698593,35.716508],[-77.703054,35.713956],[-77.707515,35.718493],[-77.716438,35.721895],[-77.727145,35.723313],[-77.729822,35.721045],[-77.743206,35.732387],[-77.765512,35.7494],[-77.778896,35.745147],[-77.786035,35.743446],[-77.799419,35.738625],[-77.819048,35.733521],[-77.832432,35.73182],[-77.830648,35.737774],[-77.829755,35.7494],[-77.835109,35.750251],[-77.844924,35.748266],[-77.856523,35.747699],[-77.857416,35.750251],[-77.853847,35.758191],[-77.860985,35.759892],[-77.858308,35.768399],[-77.858308,35.776055],[-77.853847,35.780308],[-77.852062,35.785979],[-77.863662,35.786263],[-77.873476,35.784278],[-77.877045,35.784561],[-77.881507,35.78768],[-77.891322,35.785979],[-77.894891,35.783427],[-77.905598,35.781726],[-77.901137,35.770951],[-77.901137,35.761593],[-77.907382,35.747415],[-77.911844,35.749117],[-77.91809,35.754504],[-77.92612,35.755071],[-77.92612,35.751952],[-77.922551,35.7494],[-77.925228,35.746848],[-77.915413,35.73579],[-77.91809,35.73579],[-77.925228,35.73267],[-77.935043,35.734088],[-77.935935,35.728417],[-77.935043,35.71991],[-77.932366,35.714239],[-77.940396,35.71509],[-77.940396,35.710837],[-77.951996,35.707434],[-77.959134,35.703181],[-77.966272,35.700912],[-77.960918,35.698927],[-77.955565,35.692405],[-77.943073,35.685033],[-77.938612,35.68163],[-77.932366,35.68078],[-77.92612,35.677661],[-77.915413,35.677661],[-77.911844,35.671706],[-77.912736,35.664617],[-77.908275,35.658379],[-77.908275,35.655827],[-77.904706,35.65214],[-77.900244,35.652424],[-77.901137,35.661498],[-77.895783,35.66887],[-77.894891,35.672557],[-77.885076,35.676526],[-77.881507,35.679078],[-77.860092,35.679929],[-77.852062,35.68163],[-77.849385,35.679929],[-77.835109,35.671706],[-77.825294,35.662348],[-77.827079,35.657528],[-77.825294,35.650723],[-77.826186,35.646469],[-77.824402,35.639097],[-77.821725,35.632292],[-77.816372,35.627188],[-77.813695,35.620666],[-77.811018,35.620666],[-77.807449,35.612159],[-77.802095,35.60904],[-77.802988,35.607339],[-77.798526,35.601384],[-77.796742,35.59628],[-77.798526,35.593161],[-77.80388,35.589758],[-77.802988,35.585788],[-77.806557,35.583236],[-77.817264,35.588057],[-77.82351,35.585505],[-77.824402,35.508661],[-77.824402,35.498736],[-77.826186,35.476903],[-77.83154,35.475201],[-77.83957,35.475201],[-77.847601,35.4735],[-77.853847,35.4735],[-77.861877,35.470381],[-77.863662,35.46868],[-77.880615,35.46953],[-77.883291,35.470381],[-77.892214,35.459322],[-77.893999,35.447696],[-77.893106,35.442025],[-77.897568,35.44004],[-77.891322,35.43522],[-77.885076,35.426997],[-77.889537,35.424445],[-77.896675,35.414237],[-77.897568,35.405163],[-77.903813,35.399492],[-77.920766,35.388433],[-77.924335,35.389284],[-77.929689,35.393254],[-77.933258,35.404029],[-77.943965,35.409133],[-77.938612,35.415087],[-77.94575,35.419908],[-77.956457,35.42331],[-77.964487,35.424445],[-77.975195,35.425295],[-77.982333,35.428415],[-77.985902,35.428415],[-77.995717,35.433235],[-77.997501,35.425295],[-77.996609,35.420191],[-78.001962,35.417356],[-78.005532,35.408566],[-78.011777,35.407715],[-78.009993,35.403462],[-78.015346,35.404879],[-78.015346,35.406864],[-78.0207,35.40573],[-78.023377,35.40176],[-78.030515,35.400059],[-78.024269,35.397507],[-78.027838,35.394104],[-78.025161,35.385881],[-78.0207,35.383329],[-78.021592,35.379359],[-78.025161,35.378509]]]}}]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment