Skip to content

Instantly share code, notes, and snippets.

@mbostock
Last active March 2, 2018 20:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mbostock/9821217 to your computer and use it in GitHub Desktop.
Save mbostock/9821217 to your computer and use it in GitHub Desktop.
State Icons
license: gpl-3.0
.DS_Store
build
node_modules

A quick-and-dirty pass at state icons, using the same state reference plane projections as ProPublica’s excellent StateFace font, and then using TopoJSON to scale and simplify each state to fit in 48×48.

Alaska is a little bit too small because its archipelago extends far into the Pacific Ocean. It would be better to crop its bounding box more tightly.

#!/usr/bin/env node
var fs = require("fs");
var idProperty = process.argv[2],
collection = JSON.parse(fs.readFileSync("/dev/stdin")),
featureIds = {};
collection.features = collection.features.filter(function(feature) {
var id = feature.properties[idProperty];
if (id == null) throw new Error("id is required for geouniq");
if (!(id in featureIds)) {
featureIds[id] = 1;
return true;
}
});
console.log(JSON.stringify(collection));
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.state {
display: inline-block;
padding: 1em;
}
</style>
<body>
<script src="//d3js.org/d3.v3.min.js"></script>
<script src="//d3js.org/topojson.v1.min.js"></script>
<script>
var width = 48,
height = 48;
var path = d3.geo.path()
.projection(null);
d3.json("state-icons.json", function(error, states) {
if (error) throw error;
d3.select("body").selectAll(".state")
.data(d3.entries(states))
.enter().append("div")
.attr("class", "state")
.text(function(d) { return d.key; })
.append("svg")
.attr("width", width)
.attr("height", height)
.append("path")
.datum(function(d) { return topojson.feature(d.value, d.value.objects.icon); })
.attr("d", path);
});
</script>
STATES = \
al ak az ar ca co ct de fl ga \
hi id il in ia ks ky la me md \
ma mi mn ms mo mt ne nv nh nj \
nm ny nc nd oh ok or pa ri sc \
sd tn tx ut vt va wa wv wi wy \
dc
GENERATED_FILES = \
state-icons.json
.PHONY: all clean
all: $(GENERATED_FILES)
clean:
rm -rf -- $(GENERATED_FILES) build
build/%.tar.gz:
mkdir -p $(dir $@)
curl 'http://dds.cr.usgs.gov/pub/data/nationalatlas/$(notdir $@)' -o $@
build/states-unfiltered.shp: build/statep010_nt00798.tar.gz
rm -rf $(basename $@)
mkdir -p $(basename $@)
tar -xzm -C $(basename $@) -f $<
for file in $(basename $@)/*; do chmod 644 $$file; mv $$file $(basename $@).$${file##*.}; done
rmdir $(basename $@)
# remove duplicate states for water (e.g., Great Lakes)
build/states.shp: build/states-unfiltered.shp geouniq
@rm -f -- $@ $(basename $@)-unfiltered.json
ogr2ogr -f 'GeoJSON' $(basename $@)-unfiltered.json $<
./geouniq STATE_FIPS < $(basename $@)-unfiltered.json > $(basename $@).json
ogr2ogr -f 'ESRI Shapefile' $@ $(basename $@).json
rm -f -- $(basename $@).json $(basename $@).json
build/al.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:26729' -where "STATE_FIPS = '01'" $@ $<
build/ak.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:102006' -where "STATE_FIPS = '02'" $@ $<
build/az.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:26748' -where "STATE_FIPS = '04'" $@ $<
build/ar.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:26751' -where "STATE_FIPS = '05'" $@ $<
build/ca.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:26741' -where "STATE_FIPS = '06'" $@ $<
build/co.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:26753' -where "STATE_FIPS = '08'" $@ $<
build/ct.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:2234' -where "STATE_FIPS = '09'" $@ $<
build/de.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:26757' -where "STATE_FIPS = '10'" $@ $<
build/fl.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:26758' -where "STATE_FIPS = '12'" $@ $<
build/ga.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:26766' -where "STATE_FIPS = '13'" $@ $<
build/hi.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:102007' -where "STATE_FIPS = '15'" $@ $<
build/id.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:26768' -where "STATE_FIPS = '16'" $@ $<
build/il.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:26771' -where "STATE_FIPS = '17'" $@ $<
build/in.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:26773' -where "STATE_FIPS = '18'" $@ $<
build/ia.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:26775' -where "STATE_FIPS = '19'" $@ $<
build/ks.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:26777' -where "STATE_FIPS = '20'" $@ $<
build/ky.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:2798' -where "STATE_FIPS = '21'" $@ $<
build/la.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:26781' -where "STATE_FIPS = '22'" $@ $<
build/me.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:26783' -where "STATE_FIPS = '23'" $@ $<
build/md.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:26785' -where "STATE_FIPS = '24'" $@ $<
build/ma.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:26786' -where "STATE_FIPS = '25'" $@ $<
build/mi.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:102120' -where "STATE_FIPS = '26'" $@ $<
build/mn.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:26791' -where "STATE_FIPS = '27'" $@ $<
build/ms.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:26794' -where "STATE_FIPS = '28'" $@ $<
build/mo.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:26796' -where "STATE_FIPS = '29'" $@ $<
build/mt.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:32001' -where "STATE_FIPS = '30'" $@ $<
build/ne.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:32005' -where "STATE_FIPS = '31'" $@ $<
build/nv.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:32007' -where "STATE_FIPS = '32'" $@ $<
build/nh.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:32110' -where "STATE_FIPS = '33'" $@ $<
build/nj.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:32011' -where "STATE_FIPS = '34'" $@ $<
build/nm.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:32012' -where "STATE_FIPS = '35'" $@ $<
build/ny.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:32015' -where "STATE_FIPS = '36'" $@ $<
build/nc.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:2264' -where "STATE_FIPS = '37'" $@ $<
build/nd.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:102720' -where "STATE_FIPS = '38'" $@ $<
build/oh.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:32022' -where "STATE_FIPS = '39'" $@ $<
build/ok.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:32024' -where "STATE_FIPS = '40'" $@ $<
build/or.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:2838' -where "STATE_FIPS = '41'" $@ $<
build/pa.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:32028' -where "STATE_FIPS = '42'" $@ $<
build/ri.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:32130' -where "STATE_FIPS = '44'" $@ $<
build/sc.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:102733' -where "STATE_FIPS = '45'" $@ $<
build/sd.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:102734' -where "STATE_FIPS = '46'" $@ $<
build/tn.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:32036' -where "STATE_FIPS = '47'" $@ $<
build/tx.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:32037' -where "STATE_FIPS = '48'" $@ $<
build/ut.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:32042' -where "STATE_FIPS = '49'" $@ $<
build/vt.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:32045' -where "STATE_FIPS = '50'" $@ $<
build/va.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:32046' -where "STATE_FIPS = '51'" $@ $<
build/wa.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:2855' -where "STATE_FIPS = '53'" $@ $<
build/wv.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:32050' -where "STATE_FIPS = '54'" $@ $<
build/wi.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:2859' -where "STATE_FIPS = '55'" $@ $<
build/wy.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:32055' -where "STATE_FIPS = '56'" $@ $<
build/dc.shp: build/states.shp
rm -f $@ && ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:3785' -where "STATE_FIPS = '11'" $@ $<
build/%.json: build/%.shp
node_modules/.bin/topojson -o $@ --width=48 --height=48 --simplify=.5 -- icon=$<
state-icons.json: $(addprefix build/,$(addsuffix .json,$(STATES))) merge
./merge $(filter %.json,$^) > $@
#!/usr/bin/env node
var fs = require("fs"),
path = require("path");
var object = {};
process.argv.slice(2).forEach(function(file) {
object[path.basename(file, ".json")] = JSON.parse(fs.readFileSync(file, "utf8"));
});
console.log(JSON.stringify(object));
{
"name": "anonymous",
"version": "0.0.1",
"private": true,
"dependencies": {
"topojson": "1"
}
}
Display the source blob
Display the rendered blob
Raw
{"al":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[-319463.23741140246,-97842.32449505781,792202.5334306528,1648497.164977638],"geometries":[{"type":"MultiPolygon","arcs":[[[0]]]}]}},"arcs":[[[4656,9926],[3329,-23],[1180,-4422],[173,-183],[160,-401],[273,-295],[-100,-236],[323,-124],[-475,-279],[30,-224],[-247,-385],[50,-305],[231,-362],[-185,-532],[315,-547],[-2512,-22],[-1810,6],[-2996,28],[-109,-271],[668,-475],[-154,-274],[127,-181],[-505,-314],[-650,-79],[166,122],[-453,267],[-64,628],[-209,42],[-221,-347],[-73,-400],[-816,39],[-102,3143],[541,2722],[720,3511],[-274,246],[3669,-73]]],"transform":{"scale":[0.0030558373014794044,-0.004800480048004801],"translate":[8.72234141125372,48]}},"ak":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[-2168966.7073103855,414220.34042999503,1493082.3291911741,2378282.269219632],"geometries":[{"type":"MultiPolygon","arcs":[[[0,1,2,3]],[[4,5]],[[6,7,8,9]],[[10]],[[11]],[[12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,-28,28,-30,30,31,32,33,34,35,36,37,38,-40,40,41,42,43,44,45,46,47,-49,49,-51,51,52,53]]]}]}},"arcs":[[[9446,2341],[236,-364],[-50,-184]],[[9632,1793],[-14,21]],[[9618,1814],[-157,264]],[[9461,2078],[-15,263]],[[6137,2348],[58,-255],[-268,-391],[-126,301],[150,137]],[[5951,2140],[186,208]],[[8829,3194],[-11,-40]],[[8818,3154],[59,109]],[[8877,3263],[132,-303],[-150,-138],[-106,182]],[[8753,3004],[76,190]],[[9058,2987],[-147,465],[137,-91],[124,-383],[-114,9]],[[3576,6292],[355,-449],[-151,-145],[-204,594]],[[8767,3424],[-115,-186]],[[8652,3238],[-493,440]],[[8159,3678],[-56,84]],[[8103,3762],[-461,118],[-190,-111],[-164,232]],[[7288,4001],[-242,70]],[[7046,4071],[-201,36]],[[6845,4107],[-79,-519],[-493,-502],[34,893],[-134,-140],[-130,-492],[-138,-193],[129,-239],[-162,-451],[-364,-414],[30,-87],[-342,-366],[-66,-289],[-459,-266]],[[4671,1042],[-387,-221],[307,541],[212,12],[513,825],[117,732],[-165,-127],[-144,146]],[[5124,2950],[44,-163]],[[5168,2787],[-125,231],[-193,-5]],[[4850,3013],[-102,157]],[[4748,3170],[-76,653]],[[4672,3823],[-220,-186],[-125,293],[113,266],[-238,429]],[[4202,4625],[-1,0]],[[4201,4625],[1,2]],[[4202,4628],[0,-1]],[[4202,4628],[0,3]],[[4202,4633],[0,-2]],[[4202,4633],[53,342],[211,357],[548,453],[4,664]],[[5018,6449],[-292,-236],[-389,217],[45,395],[-179,340]],[[4203,7165],[-1,-2]],[[4202,7163],[419,300]],[[4621,7463],[97,-295]],[[4718,7168],[323,-45]],[[5041,7123],[-3,-4]],[[5038,7119],[7,259]],[[5045,7378],[-3,-13]],[[5042,7362],[0,3]],[[5042,7362],[-19,256],[-251,129],[-28,296],[-214,458],[43,321],[217,-40],[284,618]],[[5074,9400],[140,95]],[[5214,9495],[186,250]],[[5400,9745],[257,227],[601,-475]],[[6258,9497],[35,-38]],[[6293,9459],[162,31]],[[6455,9490],[0,-2]],[[6455,9488],[394,-161],[128,72]],[[6977,9400],[0,-1]],[[6977,9400],[335,-126],[551,-5190],[281,-16],[346,-536],[224,637],[435,-568],[415,-838],[324,-69],[111,-433],[-106,-363],[-167,608],[-145,-250]],[[9581,2258],[0,-2]],[[9581,2258],[-102,493]],[[9479,2751],[-245,161],[-50,283],[-293,381]],[[8891,3576],[-124,-152]]],"transform":{"scale":[0.0048004800480048,-0.0025746351313765273],"translate":[0,36.871888339316946]}},"az":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[-933773.5202340917,121054.32179897824,848837.3346374,2206536.3869048054],"geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[7508,9895],[38,-11],[2334,11],[52,-3864],[67,-6025],[-3546,-3],[-3608,1191],[-2843,981],[20,216],[197,215],[303,10],[107,150],[-72,327],[-262,27],[-57,632],[130,19],[226,234],[62,253],[-48,400],[189,277],[312,140],[205,219],[-323,268],[-210,469],[-259,316],[5,378],[106,32],[-1,347],[-124,318],[-8,612],[-65,411],[217,90],[422,-13],[218,-237],[166,39],[166,265],[57,1410],[1725,-53],[2973,-50],[1129,-1]]],"transform":{"scale":[0.00410331404203811,-0.004800480048004801],"translate":[3.4854814468304696,48]}},"ar":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[1230590.1387088522,-482899.32936465676,2697467.2916355487,798636.112757106],"geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[654,9980],[2760,-56],[2957,-7],[2571,38],[25,-208],[131,-66],[36,-276],[-310,-344],[-308,-542],[1352,49],[113,-322],[-181,48],[87,-209],[-238,-221],[-265,-64],[63,-225],[138,-64],[-202,-133],[37,-197],[-201,79],[47,-233],[-74,-175],[-105,206],[-124,-160],[193,-103],[-151,-367],[159,-82],[-28,-300],[-168,-16],[-76,-258],[-162,42],[100,-370],[-337,-231],[-149,87],[44,-383],[-209,-18],[203,-149],[-242,-138],[100,-182],[-67,-408],[-366,-138],[30,-175],[-180,-97],[-43,-185],[-179,76],[59,-198],[-94,-134],[176,-93],[-67,-178],[-353,-115],[118,-185],[-110,-184],[177,-192],[-298,-9],[-29,-151],[163,-38],[-20,-166],[-171,136],[-121,-129],[182,-185],[-186,-82],[78,-167],[-96,-150],[238,-18],[-190,-123],[141,-73],[3,-233],[115,-447],[-236,-94],[169,-150],[-94,-145],[-1889,3],[-4128,82],[27,1514],[-400,122],[-316,-123],[-198,269],[222,4986],[-307,3146],[654,-19]]],"transform":{"scale":[0.004800480048004801,-0.004193933560449941],"translate":[0,44.96757083546948]}},"ca":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[1329828.669178961,-2442781.498494541,4389657.04541066,978591.6636524373],"geometries":[{"type":"MultiPolygon","arcs":[[[0,1]]]}]}},"arcs":[[[6314,1113],[-250,154]],[[6064,1267],[-165,-62],[-263,344],[-393,-7],[-284,105],[-61,120],[-331,160],[-860,12],[-178,146],[-12,598],[-247,114],[53,94],[-317,307],[-119,33],[-421,563],[-178,116],[-74,294],[180,247],[-137,179],[-167,-24],[-283,255],[-106,348],[2,277],[118,-159],[266,-137],[-242,543],[225,36],[-338,64],[7,-299],[-434,232],[-171,439],[-190,125],[-362,385],[37,144],[-116,310],[60,230],[-75,290],[-227,291],[-224,168],[-37,200],[216,375],[126,679],[-116,597],[2889,-23],[852,15],[81,-3188],[3004,-2246],[2375,-1765],[348,-564],[213,-143],[-268,-250],[-85,-184],[47,-397],[-186,-175],[48,-328],[200,-56],[67,-193],[-241,-153],[-2423,-349],[-144,230],[-42,269],[-253,341],[-394,273]]],"transform":{"scale":[0.0042932016983502,-0.004800480048004801],"translate":[2.5361381090981787,48]}},"co":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[963449.7070235994,-852586.0236615823,3011365.712779451,627005.7281240268],"geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[3882,9875],[1979,-11],[1742,42],[2104,90],[83,-2911],[209,-6952],[-3318,-120],[-906,-11],[-2669,15],[-11,20],[-1959,59],[-1136,57],[88,2868],[-17,269],[70,2029],[137,4680],[1796,-77],[1808,-47]]],"transform":{"scale":[0.004800480048004801,-0.0034682822262614133],"translate":[0,41.33967699019394]}},"ct":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[730515.4584218502,558023.893628491,1263092.4593271003,944270.7876860523],"geometries":[{"type":"MultiPolygon","arcs":[[[0]]]}]}},"arcs":[[[1787,9987],[1854,-112],[1094,-28],[-16,-367],[255,51],[56,313],[754,-50],[407,34],[1971,-22],[1741,-47],[96,-3463],[-35,-2261],[-229,-60],[75,-637],[-165,-195],[-111,221],[-112,-179],[-255,53],[-83,157],[-179,-406],[-390,208],[-94,1030],[-20,-392],[68,-701],[-116,-223],[-340,214],[-125,-69],[-15,-280],[-235,126],[-69,-162],[-325,-46],[-98,221],[23,258],[-195,377],[-68,-99],[214,-368],[19,-404],[-212,-152],[-56,156],[-258,24],[-489,-292],[-181,213],[-643,-151],[-427,93],[-168,-169],[-45,157],[-348,-199],[-48,511],[-94,-272],[-332,-309],[-148,-289],[-176,65],[-419,-604],[-259,200],[-427,-472],[-123,100],[-298,-127],[-466,-549],[-155,34],[-90,-208],[-214,12],[-547,-339],[-143,98],[-373,849],[1275,1039],[-349,785],[176,3061],[183,3582],[15,467],[487,-6]]],"transform":{"scale":[0.004800480048004801,-0.0034815069095652136],"translate":[0,41.405793794371284]}},"de":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[395065.0847805288,164288.5520200149,605348.2738135849,669944.5327588051],"geometries":[{"type":"MultiPolygon","arcs":[[[0]]]}]}},"arcs":[[[2965,9997],[1305,-94],[615,-138],[-651,-179],[-688,-594],[-495,-295],[-349,-56],[-387,-251],[126,-190],[580,-204],[-360,-721],[680,-324],[275,-335],[1009,-389],[74,-162],[451,-266],[-41,-240],[200,-143],[-216,-206],[161,-841],[758,-283],[347,-257],[-13,-375],[1737,-916],[662,-147],[651,129],[357,-1006],[29,-372],[-248,217],[35,391],[-789,-96],[217,-357],[332,-62],[-1339,-219],[-4,-198],[840,209],[471,-161],[503,85],[34,169],[151,-1117],[-4699,2],[-4072,61],[-1213,8602],[8,490],[199,1],[662,460],[826,253],[1269,125]]],"transform":{"scale":[0.0019963380081238886,-0.0048004800480048],"translate":[14.019308128384617,48]}},"fl":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[-1583993.3498147172,69978.26338445496,815885.87718253,2484085.7322046203],"geometries":[{"type":"MultiPolygon","arcs":[[[0,1]]]}]}},"arcs":[[[9882,2071],[-251,-442],[-2,-357],[-169,-196],[-409,-111],[-493,-77],[-112,159],[49,182],[146,-176],[169,13],[-117,169],[-212,54],[-185,450],[121,63],[-449,286],[-238,80],[-144,196],[-68,523],[-216,75],[-91,265],[-19,371],[149,83],[-274,0],[54,-258],[-123,23],[-275,377],[-166,522],[-158,113],[417,511],[-340,304],[-107,-124],[164,-110],[-83,-246],[-114,78]],[[6336,4871],[-132,137],[94,392],[-30,124],[176,374],[57,396],[-125,247],[96,43],[-197,289],[-2,128],[-342,50],[-214,366],[-210,133],[-2,229],[-179,82],[-124,242],[-498,348],[-453,-49],[17,-247],[-254,23],[-297,-175],[-322,-101],[-419,-23],[18,181],[-132,206],[-357,283],[-359,222],[-676,274],[484,-81],[-175,170],[-259,22],[-200,-128],[-461,14],[-301,-52],[326,140],[-280,70],[-166,-212],[-245,-30],[149,155],[-130,145],[84,171],[-296,374],[59,196],[2248,-122],[1149,-35],[164,-442],[3470,-294],[13,-261],[178,-61],[82,312],[-57,172],[134,225],[299,-127],[382,-68],[-36,-427],[-236,-33],[-88,-374],[10,-210],[113,-103],[48,-296],[-157,-221],[4,-395],[90,-196],[109,133],[-161,153],[-35,292],[212,275],[-42,298],[-152,137],[78,500],[176,1],[331,-1061],[327,-842],[213,-441],[324,-373],[-153,-313],[-72,514],[-141,110],[141,-600],[344,-818],[132,-236],[98,-376],[345,-753],[38,-582],[-99,-990]]],"transform":{"scale":[0.004772187027966845,-0.0048004800480048],"translate":[0.14145095367976168,48]}},"ga":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[-530170.5713231779,129289.05540303067,911008.9198876633,1831044.473923918],"geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[2]],[[3]],[[4]]]}]}},"arcs":[[[8794,1238],[-156,-421],[-64,310],[220,111]],[[8849,2051],[237,-46],[-39,-159],[-264,-167],[66,372]],[[9241,2532],[-169,-340],[-110,209],[279,131]],[[9394,3203],[188,-70],[-200,-203],[-99,199],[111,74]],[[9180,2954],[-131,-164],[192,-128],[-280,-293],[-16,-211],[-210,-48],[96,-122],[-154,-231],[70,-294],[-151,-664],[-228,-27],[-750,237],[-160,-89],[-55,-281],[96,-195],[-79,-424],[-350,64],[-29,370],[-5777,365],[-117,107],[-41,275],[-133,189],[-57,290],[-150,170],[0,200],[160,509],[-22,209],[-144,166],[-24,308],[168,273],[26,356],[380,267],[-243,135],[73,141],[-50,272],[-215,275],[-30,280],[-127,192],[-718,4566],[361,-14],[3766,-67],[1064,19],[-69,-162],[-215,-99],[-234,-385],[726,-483],[206,26],[137,-282],[174,-170],[75,-269],[317,-415],[618,-396],[160,-304],[314,-138],[283,-267],[-71,-153],[394,-449],[577,-321],[-21,-155],[174,-221],[89,-514],[217,-71],[344,-539],[-69,-138],[87,-267],[241,-66],[-96,-112],[250,-255],[-125,-112],[-336,162],[-22,-443],[-136,15]]],"transform":{"scale":[0.004065421692128102,-0.004800480048004801],"translate":[3.674924250205553,48]}},"hi":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[-338475.38599730894,655812.917202193,230873.4134413914,1022412.3142903303],"geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]]]}]}},"arcs":[[[8063,4083],[489,-444],[240,-61],[337,-245],[356,-503],[-14,-337],[161,4],[38,-280],[328,-367],[-311,-523],[-270,-215],[-314,-45],[-388,-386],[-271,-637],[-426,329],[-71,251],[58,675],[-306,1288],[207,235],[208,541],[-124,285],[73,435]],[[5976,6058],[187,-73],[138,-246],[-46,-165],[-246,-101],[-166,534],[133,51]],[[6676,6369],[224,-399],[290,146],[173,-56],[213,-308],[204,-95],[-81,-417],[-469,-215],[-257,66],[-34,496],[-300,114],[-128,420],[165,248]],[[5504,6930],[623,-172],[301,30],[-101,-294],[-153,-80],[-372,168],[-427,-2],[129,350]],[[4148,8410],[397,-754],[205,-482],[-306,-124],[-138,228],[-383,-112],[-324,838],[274,24],[275,382]],[[306,9315],[14,-289],[-239,-363],[-47,315],[272,337]],[[1564,9984],[179,-371],[-93,-495],[-180,-206],[-349,143],[-218,191],[-48,266],[112,250],[258,214],[339,8]]],"transform":{"scale":[0.004800480048004801,-0.003090992890592138],"translate":[0,39.45341895651539]}},"id":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[-826691.7486684176,120581.74606624949,804624.6010097149,2710961.7026152876],"geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[2421,9949],[-117,-1439],[459,-414],[-22,-381],[278,-186],[314,-67],[574,-619],[452,-180],[5,-95],[451,6],[-278,-921],[91,-199],[-249,-107],[136,-295],[190,-150],[653,321],[200,-132],[45,-279],[333,-417],[88,-232],[240,-233],[331,-19],[200,-457],[355,48],[629,-54],[161,167],[305,-62],[365,59],[576,-39],[24,233],[170,76],[248,-243],[293,-147],[77,-3479],[-1729,-13],[-3663,22],[-2712,63],[-1860,63],[254,2616],[239,432],[-502,185],[14,265],[326,366],[179,48],[170,332],[679,813],[-114,194],[-362,119],[-238,395],[65,99],[-145,365],[212,2169],[162,1453],[1448,-50]]],"transform":{"scale":[0.0030231478470234404,-0.0048004800480048],"translate":[8.88577233880631,48]}},"il":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[-388562.5088300269,111757.96184143299,739013.2118326083,2136250.572566103],"geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[2849,9990],[4000,-61],[2295,2],[-52,-403],[385,-380],[154,-384],[207,-224],[52,-4265],[-308,-388],[368,-319],[48,-385],[-257,-138],[-115,-274],[-506,-427],[-233,28],[67,-236],[-331,-206],[39,-446],[-336,-247],[187,-342],[-497,-33],[-505,-119],[-91,-227],[223,-199],[-312,-144],[-958,279],[-207,-6],[-734,-413],[-608,533],[230,125],[-218,333],[-3,285],[-818,384],[-184,-64],[-208,171],[-620,278],[-270,184],[-38,211],[487,491],[-60,190],[272,239],[-360,137],[-545,77],[-374,-149],[-349,767],[-635,269],[-822,535],[-280,559],[-6,359],[367,289],[-71,287],[695,185],[100,278],[323,177],[54,307],[-391,265],[197,318],[938,62],[768,217],[91,277],[302,106],[128,361],[-46,203],[-546,205],[-182,281],[-422,181],[521,44]]],"transform":{"scale":[0.0026737093141170117,-0.004800480048004801],"translate":[10.632790284072001,48]}},"in":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[-201562.01589967476,106042.58805369593,751086.5942247683,1553897.9691373513],"geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[6482,9985],[3345,7],[63,-3631],[-13,-1193],[8,-1855],[-229,-131],[201,-194],[-142,-152],[232,-60],[-35,-272],[-518,-14],[-471,-213],[-397,115],[-477,-41],[66,-406],[-248,-244],[-365,-110],[-102,-247],[-261,-144],[-264,21],[-242,-290],[-50,-346],[-284,-68],[-485,38],[-275,128],[-165,234],[-342,-234],[-226,-39],[15,-286],[-688,-86],[-183,239],[-759,-228],[-75,-226],[-184,-50],[-761,391],[-395,-72],[-267,169],[32,-262],[-279,-78],[-20,171],[-440,-61],[-211,127],[-138,-377],[-445,305],[247,-1],[7,351],[256,306],[-149,150],[165,198],[232,-57],[337,323],[-22,142],[257,112],[237,390],[196,45],[121,249],[-167,201],[128,225],[-181,89],[11,180],[-251,201],[254,191],[-96,181],[238,157],[37,1346],[71,1556],[100,3030],[257,-144],[386,-82],[673,99],[696,241],[2434,-14]]],"transform":{"scale":[0.003158582483727814,-0.004800480048004801],"translate":[8.208666872602793,48]}},"ia":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[1157269.1805440446,-403036.0899140069,2913083.1597109637,744102.6242595122],"geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[8204,9938],[55,-419],[244,-341],[-174,-417],[66,-707],[145,-522],[161,-161],[346,-122],[144,-547],[269,-271],[130,-474],[365,-330],[44,-354],[-58,-644],[-186,-204],[-38,-494],[-478,-424],[-597,-168],[-104,-572],[270,-444],[-24,-565],[-185,-308],[-44,-496],[-360,-215],[-73,-152],[66,-501],[-179,-72],[-80,247],[-328,481],[-1468,-109],[-968,-41],[-2084,-15],[-1867,103],[-186,488],[134,501],[-80,328],[-85,1490],[-219,195],[-58,508],[97,343],[-139,382],[46,201],[-223,303],[-96,320],[40,218],[-131,354],[60,328],[-142,140],[-82,543],[-150,248],[225,697],[-7,294],[116,215],[-50,322],[-128,18],[67,537],[-105,346],[1468,-71],[2087,-54],[1348,-9],[1822,28],[1361,45]]],"transform":{"scale":[0.004800480048004801,-0.0031363325358058024],"translate":[0,39.68009451276111]}},"ks":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[819120.139726421,-486432.59385249723,2988250.7454307913,633548.3007802648],"geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[987,9936],[1573,-100],[2071,-61],[1920,2],[2369,85],[136,-286],[357,-39],[-21,-472],[-187,-691],[282,-753],[221,-411],[168,-15],[123,-7027],[-2535,-134],[-2425,-34],[-1807,44],[-1949,91],[-1281,84],[210,9780],[775,-63]]],"transform":{"scale":[0.004800480048004801,-0.0024786178963554276],"translate":[0,36.39185017282896]}},"ky":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[23797.421266029298,-104285.40363555046,701955.909406784,182986.33654354585],"geometries":[{"type":"MultiPolygon","arcs":[[[0]]]}]}},"arcs":[[[6391,9999],[176,-288],[184,185],[200,-443],[117,-777],[458,-203],[243,-489],[184,296],[279,-391],[194,82],[155,410],[198,103],[50,-615],[298,-442],[55,-800],[-75,-484],[179,-776],[255,-662],[23,-356],[226,-448],[205,-37],[-496,-1081],[-474,-579],[0,-288],[-188,-273],[-14,-343],[-253,-141],[-81,-435],[-518,-307],[-211,-327],[-1125,48],[-967,134],[-281,-36],[-1452,211],[-1666,53],[-284,201],[9,-701],[-1800,214],[74,463],[178,-225],[159,694],[49,802],[-92,388],[224,565],[130,28],[472,-649],[166,299],[-105,431],[55,480],[539,314],[-108,691],[193,536],[443,356],[118,-185],[274,279],[319,-606],[132,457],[311,294],[93,-380],[278,132],[-15,419],[327,361],[116,-492],[328,31],[26,532],[155,486],[182,160],[41,352],[254,399],[-30,702],[262,82],[76,-178],[252,347],[228,19],[39,369],[-142,688],[196,344]]],"transform":{"scale":[0.0048004800480048,-0.002033510279973293],"translate":[0,34.166534644726475]}},"la":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[1521851.3210750832,-618366.5840752973,3166100.953389642,859115.8215152782],"geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[2]],[[3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19]]]}]}},"arcs":[[[5358,1005],[60,-224],[148,-144],[-288,68],[-116,133],[196,167]],[[8311,1087],[172,-120],[-370,-41],[198,161]],[[4079,1645],[353,-196],[-210,-194],[-400,225],[257,165]],[[8837,2484],[42,-90]],[[8879,2394],[154,-74],[-185,-144],[142,-56]],[[8990,2120],[-182,-100]],[[8808,2020],[-402,-11],[28,-246]],[[8434,1763],[-10,-64]],[[8424,1699],[-176,-45],[230,-320],[172,-72],[-51,-128],[322,3],[282,-203],[103,104],[226,-395],[-59,-274],[-265,-38],[-303,-331],[280,511],[-101,202],[-255,-87],[-101,343],[-215,150],[-339,-24],[-61,84]],[[8113,1179],[-114,73]],[[7999,1252],[-223,31],[-273,207],[5,300],[-103,36],[25,-282],[-121,-133],[352,-213]],[[7661,1198],[-4,-260]],[[7657,938],[-60,-62]],[[7597,876],[35,-296],[-304,-236],[-76,129]],[[7252,473],[-140,415],[-143,-239],[-49,330],[-89,-170],[-213,77],[18,-174]],[[6636,712],[-57,-78]],[[6579,634],[-56,29]],[[6523,663],[-136,-229]],[[6387,434],[-247,10]],[[6140,444],[-209,65],[255,186],[-234,53],[-54,188],[-113,-130],[159,-86],[-224,-147],[-142,53],[-10,296],[-141,97],[-145,339],[-80,-63],[-187,157],[-268,-83],[-7,276],[-141,-12],[-17,283],[-280,-1],[-156,-99],[59,310],[-718,-257],[190,-64],[-15,-207],[-358,-207],[-618,114],[-640,310],[-563,187],[-464,-18],[-501,-74],[-197,-108],[-169,292],[137,125],[232,401],[87,310],[-13,341],[-114,135],[131,245],[-78,233],[211,341],[205,616],[-86,102],[122,143],[-81,123],[34,263],[-103,-47],[-47,237],[-137,113],[32,215],[-309,526],[85,233],[-148,344],[-310,378],[30,2528],[3482,-47],[1881,4],[-18,-256],[148,214],[48,-242],[-131,-139],[-4,-223],[168,-47],[-171,-191],[111,-460],[213,-20],[-43,-214],[174,-51],[-167,-291],[-300,-64],[-4,-157],[213,-22],[-94,-332],[-140,-178],[-309,-188],[-92,-501],[-186,9],[159,-194],[-189,-83],[86,-381],[-211,66],[117,-319],[-227,-21],[79,-156],[-54,-215],[119,-122],[-137,-167],[1005,10],[2584,62],[48,-73],[-163,-435],[-47,-310],[161,-385],[165,-146],[231,-662],[-541,-474],[301,-290],[223,40],[19,268],[166,118],[132,-250]]],"transform":{"scale":[0.0048004800480048,-0.004313593672106607],"translate":[0,45.56581156369698]}},"me":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[-165068.93774799327,-302179.10202158056,902296.9813179905,1323069.4690381016],"geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1,2]]]}]}},"arcs":[[[6711,3214],[316,-245],[-299,-88],[-52,-144],[-277,196],[151,243],[161,38]],[[3097,1720],[-28,2]],[[3069,1722],[-195,-135],[-16,397],[-201,-261],[2,213],[-332,-31],[-451,-372],[138,-249],[-406,-69],[-18,-206],[-191,-187],[-304,-82],[-50,-210],[-255,-335],[-397,174],[68,179],[-393,283],[22,499],[-37,2679],[-53,1218],[177,82],[269,-235],[225,174],[-34,179],[481,2],[-229,239],[421,345],[409,144],[-70,134],[378,209],[-120,294],[196,283],[-127,103],[212,307],[363,189],[159,625],[1839,1698],[418,-75],[-19,-383],[348,-179],[683,154],[63,90],[472,2],[-7,116],[338,36],[647,-347],[394,-295],[56,-2521],[-47,-597],[921,-280],[-189,-136],[180,-221],[-140,-246],[369,-344],[115,137],[304,-61],[318,-457],[-301,-174],[352,23],[90,-164],[-408,-326],[-319,-103],[-56,190],[-132,-177],[-243,-71],[-221,133],[-30,-291],[-190,87],[-160,-176],[-215,231],[-124,-76],[-118,-376],[-320,202],[-67,-344],[-109,319],[-273,91],[-537,-258],[26,214],[-260,-219],[-88,-202],[99,-180],[-552,266],[-187,-79],[123,414],[-536,-165],[98,-219],[-212,-203],[-161,-346],[148,29],[-374,-312],[-425,31],[69,176],[-255,-164],[-158,-295],[-185,222],[-176,-221],[29,386],[-334,-253],[162,-157],[-146,-135]]],"transform":{"scale":[0.0031526677762625174,-0.004800480048004801],"translate":[8.238237452575545,48]}},"md":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[95360.84987162931,31719.65504437591,1358464.6478639941,696938.2605432823],"geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1,2,3,4,5]]]}]}},"arcs":[[[7200,5825],[40,-340],[-211,190],[97,441],[74,-291]],[[9872,2706],[29,-380],[-123,-458],[-247,-247],[-79,-571],[-79,30],[-96,-500],[-553,-131],[-83,-193],[-279,75],[-172,-288],[-96,288],[92,514]],[[8186,845],[61,349],[-301,9],[41,286],[276,215],[-228,205],[118,518],[-107,-92],[-104,-504],[-127,681],[-151,-525],[-199,226]],[[7465,2213],[-154,136],[-218,692],[191,272],[-19,543],[176,30],[300,-355],[-445,847],[-234,165],[173,560],[210,-536],[-120,1184],[119,155],[112,622],[-132,167],[-110,-477],[-114,510],[235,1013],[293,309],[202,477],[243,-145],[-208,382],[-162,-371],[75,670],[-283,-198],[-11,-554],[-276,-467],[-29,482],[-79,-165],[-15,-596],[-74,486],[-188,-830],[-213,-201],[28,280],[-287,20],[195,-441],[189,-210],[-186,-348],[291,-339],[-169,-161],[-161,410],[-69,-133],[215,-284],[18,-386]],[[6774,5428],[-153,-286],[106,-88],[-103,-357],[109,-1629],[247,-513],[-88,-364],[-134,68],[-95,431],[-279,314],[-70,812],[-27,-690],[161,-410],[304,-519]],[[6752,2197],[246,-127],[-57,-202],[177,-657],[7,-491],[-230,304],[-66,289],[-180,-135],[-142,446],[-279,270],[-202,-85],[-152,760],[67,-673],[-195,148],[-264,823],[-375,-461],[-98,127],[-49,579],[204,610],[165,144],[-10,246],[175,207],[30,506],[258,498],[-297,562],[-177,-335],[-282,266],[0,214],[-215,226],[-270,69],[-128,246],[133,592],[-236,426],[-429,171],[46,277],[-126,248],[59,322],[-130,19],[-136,340],[9,332],[-281,-58],[-213,438],[-160,78],[-194,-407],[-194,118],[-252,-661],[-427,93],[-309,420],[-391,-918],[-172,239],[-488,-657],[-522,-803],[62,2819],[2091,-80],[2298,-63],[1106,-5],[2718,46],[2,-399],[262,-6505],[1375,-3],[-42,-284]]],"transform":{"scale":[0.0048004800480048,-0.002528191783078131],"translate":[0,36.63969481949911]}},"ma":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[54857.793339271026,90218.78348490472,1029093.2259928175,688077.2938562401],"geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[2]]]}]}},"arcs":[[[9795,696],[130,-601],[-390,-86],[-315,192],[100,126],[251,-93],[253,308],[-29,154]],[[8130,1270],[82,-196],[341,-236],[-41,-197],[-698,-49],[-182,-252],[-174,277],[196,-19],[187,549],[273,304],[16,-181]],[[8689,2321],[-100,-20],[-128,-389],[-545,-174],[85,263],[-30,541],[105,93],[-23,425],[-85,-200],[-262,156],[-29,-529],[-122,-142],[-285,-36],[-71,-525],[-306,-262],[-233,16],[-36,981],[-177,89],[47,210],[-401,414],[-71,279],[22,455],[-120,-32],[0,766],[-1165,-65],[-4,94],[-2663,118],[-172,-231],[11,236],[-1904,142],[-27,228],[728,3992],[2646,-210],[2788,-170],[133,279],[176,-30],[-13,324],[148,188],[185,-91],[92,323],[278,159],[225,-142],[95,-235],[125,-717],[115,-249],[235,163],[147,-323],[-174,-331],[-642,-282],[-18,-470],[-138,-23],[-125,-286],[55,-239],[-204,-256],[-3,-188],[248,-307],[262,180],[254,-212],[373,-929],[-111,-499],[44,-279],[352,-206],[24,-736],[171,-258],[492,-152],[-63,-160],[830,503],[69,617],[-205,250],[-76,595],[-160,197],[-143,-238],[-125,236],[153,122],[301,-161],[263,-583],[148,-794],[37,-483],[-179,-214],[136,-54],[-43,-310],[-112,100],[-540,-148],[-144,-124],[-421,-40]]],"transform":{"scale":[0.004800480048004801,-0.0029459078928697584],"translate":[0,38.72806651040236]}},"mi":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[529523.6380084079,420159.83460062556,2597858.9804005083,2810540.016004631],"geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1,2]],[[3]],[[4]],[[5]]]}]}},"arcs":[[[6900,6232],[371,-196],[302,-21],[134,-192],[870,-312],[157,-292],[-197,-146],[194,-182],[64,-253],[-55,-571],[-252,-143],[-46,-309],[-332,-92],[-133,-359],[73,-140],[282,-121],[268,221],[254,390],[424,157],[234,-111],[176,-319],[164,-858],[147,-357],[-148,-555],[-319,48],[-105,-403],[-239,-128],[-152,-482],[-347,-418],[-1745,-88],[-1,98],[-2661,-8],[278,210],[349,550],[189,658],[-35,510],[-374,865],[128,388],[-103,306],[316,454],[30,540],[188,53],[31,241],[334,88],[231,358],[48,-183],[-82,-284],[59,-175],[158,341],[-65,-368],[145,241],[23,505],[228,193],[357,53],[-223,130],[-33,146],[441,322]],[[8358,6471],[-346,54]],[[8012,6525],[321,201],[129,-139],[-104,-116]],[[2211,8468],[217,-361],[-49,-370],[284,267],[408,-42],[270,-117],[373,-515],[464,30],[413,-179],[215,214],[394,181],[786,10],[282,117],[366,27],[-118,-378],[559,-153],[309,136],[347,-619],[201,-189],[-743,25],[-171,90],[-213,-277],[-219,205],[-393,122],[-235,1],[-168,-194],[-497,-3],[-309,-68],[-392,-394],[-109,36],[234,290],[-312,-19],[-231,-286],[-23,253],[-233,-266],[-344,-557],[-271,-278],[-105,140],[123,215],[-297,26],[123,223],[20,263],[-104,119],[-327,115],[55,140],[-533,177],[-301,0],[-376,200],[-1243,352],[-118,270],[-220,95],[466,138],[243,181],[517,50],[985,557]],[[3156,8821],[165,-109],[-296,-21],[-486,-462],[-317,85],[-7,152],[501,326],[440,29]],[[2238,9848],[231,38],[-261,-222],[-589,-267],[-7,176],[626,275]]],"transform":{"scale":[0.004153733628223353,-0.004800480048004801],"translate":[3.2334087256973447,48]}},"mn":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[1006132.8598655418,-1095244.163780769,2882643.5016746903,1058741.612747198],"geometries":[{"type":"MultiPolygon","arcs":[[[0]]]}]}},"arcs":[[[2698,9991],[246,-24],[157,-130],[164,-698],[117,-284],[416,-37],[49,-85],[500,-42],[59,-190],[416,49],[155,136],[468,-5],[331,-143],[21,-129],[265,-24],[183,-382],[136,227],[268,11],[66,-160],[380,-105],[8,-139],[190,-122],[412,77],[347,237],[180,33],[134,-237],[777,54],[358,-202],[382,33],[-498,-300],[-725,-238],[-639,-433],[-577,-578],[-1067,-789],[9,-1003],[-89,-105],[-377,-137],[-301,-359],[-28,-249],[148,-11],[178,-214],[-152,-256],[-6,-769],[-59,-145],[368,-313],[300,-24],[153,-186],[369,-134],[120,-265],[417,-289],[201,-41],[285,-378],[-28,-269],[78,-195],[-1366,-23],[-1942,-7],[-2449,38],[-1663,52],[152,3051],[-305,198],[-214,345],[400,383],[42,464],[-34,360],[-153,191],[-83,366],[45,457],[-61,855],[36,277],[-162,376],[-172,571],[53,236],[-20,483],[81,154],[-133,584],[2655,-95],[28,645]]],"transform":{"scale":[0.004182085134468175,-0.0048004800480048],"translate":[3.0916653702263623,48]}},"ms":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[-381888.4844403626,185630.57711411564,720566.7978605402,1941903.3272624721],"geometries":[{"type":"MultiPolygon","arcs":[[[0]]]}]}},"arcs":[[[9229,9982],[490,2],[280,-213],[-400,-2439],[-588,-3776],[252,-3195],[-254,-68],[-182,140],[-589,-79],[-314,116],[-581,-63],[-762,-145],[-345,-209],[-342,-42],[-141,95],[-184,467],[-239,128],[-237,310],[350,708],[-1498,1],[-3914,45],[201,144],[-150,85],[77,192],[-159,99],[421,124],[-192,194],[304,-32],[-104,293],[286,65],[208,573],[470,147],[301,200],[-205,69],[275,154],[-315,25],[5,125],[720,291],[-258,50],[113,124],[-326,62],[-173,406],[263,154],[-216,28],[-21,197],[217,131],[-70,195],[-182,-177],[-147,53],[269,268],[-193,175],[290,0],[-136,429],[-243,232],[7,213],[279,72],[-233,139],[248,249],[298,-47],[-167,416],[534,122],[-157,200],[81,255],[216,-77],[307,201],[-28,129],[485,90],[101,268],[-120,264],[372,141],[-78,254],[188,-67],[443,138],[-148,199],[2598,-20],[2642,3]]],"transform":{"scale":[0.003013378523384782,-0.004800480048004801],"translate":[8.934614072337785,48]}},"mo":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[-965522.1233903586,59089.77522304689,909158.6108893064,1774149.6343792642],"geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[5999,9813],[298,-432],[154,-69],[-133,-300],[13,-423],[111,-238],[72,-417],[485,-594],[412,-330],[132,-442],[-37,-110],[134,-347],[222,181],[328,-83],[203,-141],[-140,-300],[41,-224],[-280,-577],[15,-226],[182,-248],[379,-315],[128,-200],[109,78],[515,-461],[-5,-314],[140,-391],[-136,-150],[379,-620],[28,162],[251,-213],[-32,-444],[-192,-406],[-190,120],[-81,-282],[-94,173],[-136,-29],[98,-387],[-161,-139],[124,-117],[-253,-8],[163,-263],[-177,-268],[-1058,-19],[247,401],[244,249],[2,174],[-145,243],[-1970,4],[-1503,23],[-1490,42],[-2035,83],[107,2697],[138,2957],[-340,150],[-140,356],[-232,321],[242,443],[117,-39],[-104,370],[-274,-34],[-405,412],[45,98],[-122,306],[-193,219],[-184,524],[1759,-133],[2048,-63],[2177,10]]],"transform":{"scale":[0.004800480048004801,-0.004391740142449839],"translate":[0,45.956504842177964]}},"mt":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[397837.3395373978,-945217.4331442781,3413751.178330913,796955.601226903],"geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[1445,9827],[540,-63],[1653,-119],[1999,-32],[1334,37],[987,60],[1690,169],[257,-6228],[94,-2132],[-2213,-215],[-1612,-60],[-1897,-11],[-300,28],[-8,-1105],[-242,552],[-132,-50],[17,-346],[-713,94],[-92,-244],[-339,98],[-62,-260],[-133,204],[-93,685],[-178,38],[-124,354],[-208,982],[-14,412],[-174,207],[-295,-456],[-162,675],[138,148],[-44,300],[174,1380],[-117,-44],[-361,454],[-290,937],[-314,398],[25,561],[-236,632],[105,2132],[1340,-172]]],"transform":{"scale":[0.004800480048004801,-0.0027730456964965796],"translate":[0,37.86384195963465]}},"ne":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[881432.1120939172,-485394.0832997262,3314912.793825971,634824.7767315212],"geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[2565,9795],[1904,-46],[1778,32],[36,-165],[571,-555],[91,298],[617,66],[199,-298],[276,-112],[297,-684],[254,-69],[-10,-459],[214,-1097],[206,-623],[7,-907],[187,-224],[91,-1453],[73,-365],[-78,-499],[165,-666],[556,-1650],[-2202,-208],[-1754,-86],[-1951,-22],[-1859,63],[35,3251],[-2268,173],[143,6509],[2422,-204]]],"transform":{"scale":[0.004800480048004801,-0.0022098339745812707],"translate":[0,35.04806495591907]}},"nv":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[-755410.1266495746,92740.34095462992,954475.2333673693,2669150.404106731],"geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[9008,9889],[785,3],[17,-505],[143,-6409],[46,-1285],[-181,-243],[-383,167],[-346,7],[-316,-91],[186,-674],[-42,-158],[148,-241],[36,-278],[-96,-182],[-9005,5763],[323,4236],[2077,-65],[2893,-40],[1945,-12],[1770,7]]],"transform":{"scale":[0.0031859332769002074,-0.0048004800480048],"translate":[8.071926582137415,48]}},"nh":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[227376.76627949224,21940.306917174086,377825.8667782554,311891.2356466966],"geometries":[{"type":"MultiPolygon","arcs":[[[0]]]}]}},"arcs":[[[7903,9770],[270,-2219],[271,-3169],[108,-1029],[100,-233],[-162,-494],[567,-413],[397,-178],[-108,-406],[620,-325],[-574,-460],[-124,-207],[-443,90],[-548,-101],[-180,-204],[-367,57],[-290,-118],[25,-205],[-347,20],[-263,-176],[-3706,61],[-2632,61],[-440,314],[-77,178],[214,413],[400,184],[58,268],[-117,255],[132,420],[214,221],[-100,189],[190,493],[9,299],[283,122],[133,353],[395,198],[251,235],[83,294],[424,306],[-138,108],[456,323],[-183,427],[-6,309],[188,189],[1169,142],[53,136],[630,121],[199,184],[367,118],[-113,199],[320,109],[-500,630],[720,626],[-243,276],[228,328],[360,235],[213,397],[527,257],[279,-188],[524,-18],[242,227],[42,-229]]],"transform":{"scale":[0.0024908625343921693,-0.0048004800480048],"translate":[11.546932759306351,48]}},"nj":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[1748306.391895323,34922.88604387604,2210777.0537955365,918386.0579993597],"geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[2]],[[3]]]}]}},"arcs":[[[7008,1945],[148,137],[344,23],[-457,-269],[-35,109]],[[7235,2112],[45,174],[327,32],[-6,-137],[-366,-69]],[[8772,3420],[140,2],[-828,-799],[688,797]],[[1164,1722],[-582,354],[-453,128],[22,327],[184,128],[-332,243],[495,343],[116,201],[857,316],[1116,167],[33,275],[173,32],[1041,464],[432,62],[273,179],[202,-28],[357,172],[-298,218],[-420,142],[-300,261],[-291,105],[-147,237],[-581,109],[-35,493],[-192,108],[-567,55],[-49,457],[193,356],[235,-11],[495,394],[-501,423],[658,274],[298,294],[559,282],[320,445],[432,220],[485,23],[1840,-604],[2761,-825],[-138,-344],[-301,-426],[-538,-626],[-440,-73],[292,390],[-603,-401],[-148,-338],[-205,-34],[-113,-257],[401,-176],[449,39],[795,-178],[-391,-185],[522,58],[-269,-255],[299,-54],[-607,-1571],[-34,162],[225,424],[-231,-225],[-382,-74],[241,-81],[24,-182],[-549,-769],[226,-169],[-557,-243],[-541,-329],[263,-110],[-744,53],[57,-532],[-202,149],[-281,-255],[498,-134],[-760,-250],[274,292],[-167,41],[-88,-273],[-541,-63],[-337,118],[267,-330],[435,115],[-539,-326],[-851,-825],[-479,-249],[-662,0],[174,355],[266,268],[9,345],[-792,84],[13,89],[-501,-17],[-187,-133],[-192,228],[-720,229],[-469,229]]],"transform":{"scale":[0.0025129300866334413,-0.004800480048004802],"translate":[11.436606031876108,48]}},"nm":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[-973227.8390137744,142503.53060035186,893508.9810980735,2217011.978680416],"geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[9956,9849],[31,-876],[-62,-1],[61,-4351],[-10,-1863],[23,-1680],[-3078,-9],[-2824,33],[-49,-184],[176,-198],[-2783,69],[-31,-789],[-1410,47],[363,7108],[157,2844],[1300,-53],[2999,-92],[3064,-29],[2073,24]]],"transform":{"scale":[0.00431968974053414,-0.0048004800480048],"translate":[2.403711142199569,48]}},"ny":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[-975829.0191294068,180754.24027588268,1182861.286534288,1828295.3539905564],"geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[2,3]]]}]}},"arcs":[[[7162,338],[34,-100],[-252,-238],[82,324],[136,14]],[[9515,1512],[-105,-46],[-357,-511],[142,-42],[156,234],[344,-6],[-423,-308],[-574,-267],[-450,-67],[-340,-208],[-657,-119],[-34,148],[161,332],[173,13],[180,237],[334,77],[284,-33],[39,132],[618,23],[509,411]],[[7697,1063],[-176,-354],[-274,-258],[138,661],[-984,771],[-77,177],[-312,118],[-116,285],[-47,517],[-181,48],[-129,306],[-1588,41],[-1412,56],[-1172,70],[-1367,105],[29,599],[791,564],[143,296],[236,166],[-47,656],[-176,57],[37,372],[652,213],[683,-47],[322,-123],[168,-187],[223,66],[554,-32],[185,74],[483,456],[216,7],[51,218],[-86,549],[180,41],[-184,259]],[[4460,7810],[-138,229],[295,363],[305,185],[181,322],[562,700],[404,320],[990,14],[963,52],[15,-461],[-63,-411],[112,-309],[-24,-515],[-135,-446],[111,-601],[-94,-409],[155,88],[69,-160],[-21,-1572],[17,-213],[-291,-1462],[26,-82],[-69,-1669],[90,-182],[-311,-251],[88,-277]]],"transform":{"scale":[0.0048004800480048,-0.0036637901341866003],"translate":[0,42.31711877586591]}},"nc":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[406819.58983996627,35048.86897067499,3052331.644227947,1043628.0070078111],"geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]]]}]}},"arcs":[[[9472,9901],[224,-1622],[164,-813],[-194,613],[-194,1822]],[[9420,8871],[21,-366],[-227,439],[89,-499],[-502,-558],[-201,205],[32,-482],[291,196],[34,-183],[351,239],[-14,-800],[71,-414],[30,857],[266,2],[29,-910],[-163,-213],[-302,-910],[-286,339],[-76,-214],[-567,371],[530,-628],[-154,-494],[57,-355],[-220,-384],[50,-178],[366,508],[31,-614],[-106,-565],[-131,310],[-80,-351],[-475,-61],[-256,-664],[-261,-444],[-421,-1073],[-98,-773],[-619,-80],[-1254,3341],[-1273,96],[21,411],[-279,791],[-1408,281],[-201,-60],[-742,-567],[-1373,126],[52,849],[307,227],[8,403],[293,505],[306,-32],[300,556],[281,140],[414,1013],[23,-358],[443,644],[210,-147],[145,639],[191,390],[77,627],[1533,-240],[1982,-32],[1770,69],[978,91],[284,-1704],[-177,688]]],"transform":{"scale":[0.004800480048004801,-0.0018301424939457449],"translate":[0,33.14979739848175]}},"nd":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[1066320.1850178733,-385674.1552588032,2970790.8768620356,749174.4097700292],"geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[8651,9960],[207,15],[64,-592],[110,-334],[-57,-520],[76,-706],[-17,-591],[106,-318],[328,-1506],[140,-2055],[5,-804],[99,-591],[196,-491],[88,-1266],[-2306,-152],[-1958,-48],[-1744,4],[-1749,52],[-2239,133],[175,6173],[90,3636],[2272,-135],[1914,-39],[1470,11],[1644,60],[1086,64]]],"transform":{"scale":[0.0048004800480048,-0.002860541733331945],"translate":[0,38.30127839579306]}},"oh":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[1341282.0455282293,-460357.76852328976,2549669.7250982537,847951.7583112259],"geometries":[{"type":"MultiPolygon","arcs":[[[0]]]}]}},"arcs":[[[9907,9985],[92,-3713],[-338,-163],[172,-331],[2,-394],[-228,-460],[-104,-689],[-246,-389],[84,-159],[-99,-247],[-123,-29],[-466,-483],[-584,-301],[-141,188],[-262,-185],[-22,-196],[-268,-6],[-181,-258],[40,-192],[-167,-85],[110,-165],[13,-271],[-169,47],[-71,-154],[-177,289],[-235,93],[-252,-366],[4,-154],[-159,-109],[96,-470],[-284,-153],[-69,-351],[-518,-129],[-441,431],[-286,102],[-96,446],[-350,-94],[-287,-281],[-318,-60],[-186,173],[-363,126],[-261,-88],[-82,-120],[-217,70],[-237,301],[-203,78],[-226,-33],[-376,96],[-223,572],[-292,149],[-71,181],[-341,-129],[-319,214],[-182,-112],[68,1933],[66,1417],[106,3861],[1049,7],[1971,42],[-21,-85],[331,4],[229,-174],[357,-124],[230,-222],[120,-12],[191,198],[153,-236],[-436,-37],[74,-192],[258,152],[251,-31],[422,-227],[341,127],[247,18],[549,228],[309,-88],[297,13],[265,161],[768,618],[631,261],[1081,351]]],"transform":{"scale":[0.0044338444588613414,-0.004800480048004801],"translate":[1.832994627922723,48]}},"ok":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[530439.3909217019,-485050.57822863484,3070439.4309008266,765701.6896785251],"geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[3364,9758],[2066,-66],[2050,28],[2193,112],[25,-1456],[274,-3194],[24,-5147],[-455,312],[-131,330],[-304,277],[-69,-249],[-325,13],[-58,150],[-274,-322],[-126,147],[-424,-368],[-406,220],[-170,-43],[-158,310],[-321,-595],[-8,440],[-231,-211],[-378,484],[-217,-402],[-91,410],[-163,35],[-30,439],[-305,13],[-142,-274],[-142,288],[-317,-27],[-97,182],[-284,13],[-26,368],[-198,346],[-22,-234],[-353,16],[-291,597],[-66,-53],[57,5643],[-1400,75],[-2071,182],[37,1452],[1089,-124],[2238,-117]]],"transform":{"scale":[0.0048004800480048,-0.0023638626821180773],"translate":[0,35.818131479249324]}},"or":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[2167469.468506608,-186051.39728307308,2814681.264094609,297191.0034314225],"geometries":[{"type":"MultiPolygon","arcs":[[[0]]]}]}},"arcs":[[[980,9858],[145,-169],[330,52],[65,108],[175,-224],[318,84],[251,-243],[105,-299],[59,-712],[513,-251],[390,156],[233,196],[343,36],[265,-68],[196,-202],[610,306],[181,-115],[322,68],[298,233],[354,79],[174,121],[475,65],[166,158],[2476,95],[198,-401],[207,-74],[169,-363],[-229,-707],[-51,-396],[-136,-292],[27,-205],[-114,-345],[-124,-91],[-225,-821],[96,-311],[243,-24],[107,-189],[-139,-739],[134,-4232],[-2133,-111],[-2511,-31],[-1119,22],[-1241,56],[-1100,22],[-1101,58],[-173,253],[-84,510],[76,568],[-181,637],[130,354],[120,755],[183,409],[146,820],[128,1232],[40,821],[161,974],[69,1223],[-42,498],[85,141],[-60,505]]],"transform":{"scale":[0.004800480048004801,-0.003584291137451089],"translate":[0,41.91966354168672]}},"pa":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[1220742.9963104737,-162735.86654353872,2846526.3549326616,772414.5726692476],"geometries":[{"type":"MultiPolygon","arcs":[[[0]]]}]}},"arcs":[[[1443,9985],[-14,-1040],[1815,-59],[1555,-15],[1618,26],[2365,80],[183,-528],[314,-176],[62,-758],[115,-532],[419,-182],[83,-248],[-230,-299],[-82,-425],[-232,-559],[-183,-260],[153,-404],[-250,-711],[53,-494],[190,-79],[23,-477],[510,-772],[83,-258],[-169,-87],[-523,-680],[7,-216],[-496,-400],[-316,100],[-284,-456],[-2761,-75],[-3647,53],[-1804,84],[161,8785],[324,213],[772,724],[186,125]]],"transform":{"scale":[0.0048004800480048,-0.0027612356846415075],"translate":[0,37.80479780536522]}},"ri":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[67659.81385423527,7074.9440770806805,131759.45796981937,103902.19108878277],"geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]]]}]}},"arcs":[[[4153,887],[179,-138],[-126,-421],[236,-118],[-18,-131],[-699,-76],[-156,141],[264,447],[143,-182],[156,80],[-82,446],[103,-48]],[[6816,3939],[102,-118],[-251,-66],[-322,-295],[68,191],[-66,314],[267,156],[-152,102],[80,466],[282,151],[63,-722],[-71,-179]],[[8724,5639],[-269,-116],[-61,-496],[96,-97],[-12,-476],[102,-80],[-243,-456],[-360,-99],[-287,58],[1,-174],[-196,-208],[-143,103],[-424,-129],[-90,152],[337,218],[247,-33],[-70,421],[141,78],[15,281],[486,701],[10,174],[453,177],[213,189],[54,-188]],[[7144,5799],[-67,-141],[348,-102],[172,-290],[-183,-266],[-230,33],[128,427],[-334,133],[166,206]],[[9891,4749],[93,-700],[-956,-488],[35,330],[-190,166],[64,148],[-173,378],[125,592],[-147,319],[257,567],[820,-167],[-99,-632],[115,-141],[56,-372]],[[6577,9999],[-1,-1441],[557,61],[17,-442],[-119,-414],[76,-288],[251,-238],[787,-295],[446,-445],[-196,-165],[-25,190],[-252,95],[359,-524],[-208,-159],[-113,-244],[-306,456],[-223,-375],[-62,244],[168,193],[106,342],[-63,431],[-41,-448],[-595,101],[-391,462],[28,132],[-329,417],[280,278],[-127,233],[-20,-316],[-273,-155],[261,-281],[-80,-342],[144,-215],[-151,-85],[297,-276],[34,-247],[-219,-274],[-115,278],[-147,-72],[-640,21],[124,-243],[402,-46],[94,-514],[-181,-130],[162,-177],[-564,-133],[255,-250],[158,-316],[-60,-679],[-158,-283],[-311,-144],[42,-267],[-407,-437],[66,-123],[-433,162],[187,484],[-107,-13],[-196,-450],[-363,-20],[-934,-147],[-852,-206],[-403,-155],[-451,-70],[-179,54],[-1231,-190],[403,351],[-126,192],[114,227],[-169,301],[282,153],[307,-28],[150,2747],[-122,3149],[-13,889],[422,18],[4977,101]]],"transform":{"scale":[0.003177918118687001,-0.004800480048004801],"translate":[8.11199836562434,48]}},"sc":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[1292523.2958294833,74358.1872482477,2743428.9938903186,1233431.4074713525],"geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[2]],[[3]]]}]}},"arcs":[[[5461,733],[118,-173],[-301,-332],[183,505]],[[5613,1448],[201,-24],[215,-257],[-400,-452],[-16,733]],[[5419,1569],[130,-52],[39,-691],[-199,206],[-111,338],[141,199]],[[7503,2563],[4,-123],[-379,-323],[-113,-283],[-321,-107],[-391,-333],[-178,210],[-19,-165],[-297,24],[-414,134],[-155,-181],[136,-714],[-53,-230],[-268,-328],[-430,107],[-84,394],[60,292],[-161,272],[37,131],[-426,410],[-67,739],[-169,327],[22,229],[-264,281],[-307,203],[-9,179],[-316,369],[15,335],[-278,397],[-310,206],[-155,448],[-155,203],[-433,364],[-77,252],[-252,386],[-70,392],[-171,255],[-133,416],[-209,-34],[-713,728],[67,280],[171,272],[215,143],[72,236],[790,275],[376,211],[544,105],[2572,-180],[-16,-328],[219,197],[316,-543],[-32,-360],[2321,-26],[2331,-2849],[-574,-540],[-473,-733],[-102,-241],[-109,-746],[-113,-145],[-363,-190],[-7,-159],[-216,65],[-486,-606]]],"transform":{"scale":[0.004800480048004801,-0.0038349204054365714],"translate":[-3.552713678800501e-15,43.17268456698014]}},"sd":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[884116.9361713341,-472747.29940554814,2927348.754405222,795728.2497273103],"geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[2481,9859],[1529,-55],[2042,-18],[1357,19],[2175,109],[-9,-302],[-329,-643],[226,-568],[235,-113],[64,-184],[141,-5172],[-189,-14],[106,-299],[-47,-462],[180,-318],[-89,-206],[-37,-618],[-100,-221],[133,-286],[91,-508],[-198,81],[-106,387],[-380,294],[-199,21],[-149,227],[-230,24],[-348,-121],[-244,73],[-109,-265],[-682,489],[-42,146],[-2375,-28],[-1835,33],[-2345,132],[-718,65],[172,5721],[23,0],[77,2720],[2209,-140]]],"transform":{"scale":[0.0048004800480048,-0.002980225498963516],"translate":[0,38.8996373820681]}},"tn":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[-1190490.0951786716,115543.99682940883,1377294.3748107047,738589.8195087643],"geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[2913,9894],[-5,-179],[1647,26],[669,-172],[601,33],[866,-133],[974,-1],[2007,334],[327,163],[-96,-1182],[-185,-688],[-132,-1076],[-205,190],[-451,-1187],[-34,570],[-397,-1761],[-285,-309],[-292,-989],[-317,-40],[-284,-946],[1,-610],[-309,-461],[-30,-1382],[-1344,-94],[-1588,62],[-1595,195],[3,-72],[-1344,147],[-1114,190],[270,696],[-72,792],[148,1677],[211,443],[-107,377],[302,778],[-15,821],[156,889],[-111,746],[220,681],[34,713],[1637,-196],[-13,1060],[252,-105]]],"transform":{"scale":[0.0048004800480048,-0.001164785859452354],"translate":[0,29.823346904332045]}},"tx":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[401093.87439656816,-2955855.8616588702,4507672.319782746,913632.6892561504],"geometries":[{"type":"MultiPolygon","arcs":[[[0,1,2,3,4,5,6,7,8,9,10,11]]]}]}},"arcs":[[[9036,3392],[-191,-113],[-50,-197],[-613,-423]],[[8182,2659],[-119,93],[-278,-62]],[[7785,2690],[119,-168],[-296,-235]],[[7608,2287],[-34,-38]],[[7574,2249],[-138,8],[-122,-365],[-108,-106]],[[7206,1786],[60,-18],[-133,-556]],[[7133,1212],[-80,-138]],[[7053,1074],[121,-432]],[[7174,642],[3,-69]],[[7177,573],[-16,-30]],[[7161,543],[204,-321]],[[7365,222],[-123,-219],[-240,170],[-479,29],[-455,261],[-249,48],[-135,394],[-136,156],[-75,530],[-292,210],[-45,170],[-291,283],[-87,287],[-185,296],[-32,184],[-305,339],[-157,74],[-158,238],[-506,4],[-142,82],[-291,-123],[-156,-489],[-227,-234],[-780,413],[-290,283],[-99,230],[-11,296],[-120,266],[-254,288],[-137,47],[-407,504],[-188,105],[-288,519],[1226,-57],[1460,-40],[44,1912],[35,2321],[2177,-1],[26,-1824],[226,-168],[357,-30],[19,-116],[609,-36],[313,-145],[61,-130],[147,138],[221,-151],[140,73],[21,-153],[181,211],[423,-218],[293,205],[484,22],[41,82],[639,-346],[254,25],[105,-1462],[116,-84],[199,-537],[157,-250],[-143,-475],[59,-401],[-150,-289],[75,-127],[-177,-24],[-534,-327],[169,208],[-173,-57],[47,221],[-218,-89],[82,-352]]],"transform":{"scale":[0.004800480048004801,-0.004523328321055306],"translate":[0,46.614379941116]}},"ut":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[1253502.6616561976,-1215057.0977232764,2718899.240402997,615058.7421722567],"geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[5936,9961],[13,-1998],[1291,5],[2469,51],[122,-3524],[49,-1900],[44,-220],[73,-2322],[-2844,-50],[-2809,-2],[-2254,17],[-2090,41],[111,3028],[226,5665],[44,1247],[1308,-25],[2163,-19],[2084,6]]],"transform":{"scale":[0.003843804247434991,-0.004800480048004801],"translate":[4.782900664948759,48]}},"vt":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[253385.46174350777,82677.5016517747,766839.2037474759,917951.2061542035],"geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[3440,9989],[2296,-53],[4263,63],[-300,-48],[175,-399],[-271,-213],[-106,-249],[-299,-254],[488,-712],[-305,-128],[112,-226],[-352,-139],[-346,-277],[-504,-124],[8,-116],[-1098,-149],[-196,-224],[12,-352],[138,-145],[45,-340],[-432,-371],[130,-118],[-397,-356],[-191,-513],[-479,-284],[-137,-438],[-273,-138],[-1,-341],[-174,-564],[104,-221],[-206,-245],[-94,-516],[96,-233],[-169,-140],[109,-226],[-376,-172],[-198,-473],[99,-223],[406,-332],[-4277,95],[-7,382],[143,1839],[64,1130],[-65,227],[-189,59],[-24,202],[-333,-8],[-154,-242],[-175,84],[15,212],[410,596],[-211,226],[99,223],[-174,260],[-1,401],[-138,83],[255,638],[410,357],[-108,429],[195,243],[-15,211],[-410,497],[94,661],[156,275],[-214,144],[196,336],[-5,419],[2886,10]]],"transform":{"scale":[0.0029509182807709064,-0.004800480048004801],"translate":[9.246884055285854,48]}},"va":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[480775.9745170485,-410048.8254681412,2938218.3604892674,655292.5238400736],"geometries":[{"type":"MultiPolygon","arcs":[[[0,1]],[[2,3]]]}]}},"arcs":[[[9747,4776],[-158,-687],[-17,-448],[-122,-75],[-211,-834],[-57,-668],[-70,473],[126,1275],[126,494]],[[9364,4306],[56,-44],[141,830],[279,90],[-93,-406]],[[8714,3760],[-213,-42],[336,-575],[-26,-430],[-166,316],[35,-492],[-135,-65],[-382,1020],[246,-826],[310,-473]],[[8719,2193],[71,-458],[-146,-210],[-308,763],[19,-463],[227,-549],[183,237],[399,-137],[69,-673],[-40,-575],[-1118,-81],[-1907,-47],[-2153,62],[-1937,296],[-1569,161],[-509,87],[176,198],[478,208],[84,373],[232,92],[210,775],[444,454],[466,881],[-37,-207],[158,-660],[342,-305],[242,430],[158,-362],[544,436],[309,356],[41,-203],[209,282],[97,404],[-88,224],[164,619],[190,395],[101,644],[275,843],[52,544],[196,-463],[190,-160],[376,1492],[144,-300],[539,1382],[65,1021],[600,-1135],[90,550],[210,49],[123,-262],[-66,-372],[431,-517],[136,-377],[-7,-440],[-239,-327],[-84,-635],[100,-390],[265,158],[62,-555],[317,-165],[506,-820],[-87,-1001]]],"transform":{"scale":[0.004800480048004801,-0.002081086385122037],"translate":[0,34.40439138241762]}},"wa":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[208293.57602563495,-160685.80088618892,803440.1699165113,229153.1953081334],"geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[2]],[[3]]]}]}},"arcs":[[[2714,8141],[91,-220],[-163,-109],[119,-757],[65,226],[142,-181],[-5,-364],[-284,364],[-17,375],[-178,185],[141,500],[89,-19]],[[2034,8819],[160,-185],[-29,-293],[-130,140],[-1,338]],[[2347,9064],[191,-161],[-257,-171],[-75,166],[141,166]],[[2640,8186],[52,316],[159,-196],[2,817],[-190,127],[-176,319],[48,307],[1227,-48],[2118,3],[2229,77],[1462,91],[102,-3560],[126,-3773],[-11,-232],[186,-486],[-63,-262],[88,-231],[-2694,-142],[-178,-199],[-471,-89],[-236,-147],[-386,-101],[-323,-290],[-350,-86],[-197,140],[-296,-217],[-443,-148],[-21,144],[-406,170],[-374,-48],[-252,-244],[-415,-198],[-569,311],[-66,882],[-113,369],[-274,304],[-210,-90],[-241,360],[-257,-4],[-44,129],[-226,-189],[-181,227],[-81,-128],[42,1059],[58,-765],[134,178],[-50,493],[161,296],[-322,75],[10,360],[350,247],[-414,201],[-84,757],[-105,216],[-103,1129],[-243,430],[-58,846],[98,564],[716,-650],[426,-53],[349,-161],[392,71],[227,-246],[126,188],[175,-633],[-124,-634],[-13,325],[-331,-715],[-110,-447],[268,645],[207,122],[95,373],[204,316],[59,-472],[-110,16],[-3,-1322],[-168,0],[-124,-320],[-48,668],[-142,-350],[-38,-520],[175,219],[161,-237],[204,621],[266,83],[-128,898],[56,399],[204,644],[-129,198],[-55,377],[-154,-271],[-16,334],[168,-21],[-15,233],[-205,349],[-94,-98]]],"transform":{"scale":[0.004800480048004802,-0.003144459436338804],"translate":[0,39.72072495197585]}},"wv":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[1096081.449995729,-465348.24736718525,2503915.2259362717,780578.1118131483],"geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[4411,9984],[-28,-2666],[2084,-14],[-21,-1506],[393,265],[65,178],[294,219],[13,124],[279,-102],[339,500],[284,-215],[383,-38],[57,284],[329,15],[169,225],[221,-81],[129,-185],[354,6],[-102,-153],[269,-364],[41,-335],[-175,-523],[-1057,957],[18,-329],[-156,-284],[34,-262],[-625,-776],[-139,-52],[-166,-364],[-253,253],[-428,-956],[-218,-330],[-331,134],[-121,271],[-226,120],[-86,-466],[-245,-360],[46,-97],[-274,-270],[-170,-552],[-330,-342],[-278,-534],[153,-188],[-223,-183],[58,-165],[-365,-245],[-72,171],[-538,-311],[-182,170],[17,-241],[-212,-148],[-317,-37],[-252,-128],[-278,306],[-115,-184],[-304,-188],[-231,-8],[-237,248],[-132,14],[-282,560],[115,100],[-373,127],[-14,121],[-328,239],[-28,279],[-375,515],[62,62],[-319,548],[137,352],[-28,463],[138,-51],[431,127],[69,368],[241,136],[-73,489],[375,652],[190,-98],[89,-352],[127,196],[136,-62],[10,252],[-94,215],[146,84],[-29,204],[152,254],[223,-15],[34,202],[181,186],[174,-177],[333,125],[570,649],[129,41],[89,263],[-63,162],[223,400],[110,719],[180,326],[45,586],[-141,330],[296,145]]],"transform":{"scale":[0.004800480048004801,-0.004248402567648762],"translate":[0,45.23988863695999]}},"wi":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[374783.7256175543,-296672.7597880867,850036.6401154324,213021.67400593634],"geometries":[{"type":"MultiPolygon","arcs":[[[0]]]}]}},"arcs":[[[3429,9674],[104,-98],[-217,-283],[47,-138],[-88,-239],[296,168],[529,-281],[289,-71],[154,-360],[1672,-426],[452,-251],[327,-67],[134,76],[192,-97],[526,-118],[-61,-214],[428,-133],[160,-171],[-76,-233],[69,-147],[-147,-316],[397,-23],[-145,-315],[264,-234],[-63,-222],[-305,-79],[-18,-136],[-250,-381],[-27,-393],[130,-5],[266,238],[245,434],[326,158],[266,493],[192,143],[77,225],[51,-432],[-117,-59],[-124,-427],[-103,-67],[-331,-730],[-89,-414],[18,-368],[-176,-125],[-134,-487],[69,-424],[-131,-247],[-29,-244],[-168,-461],[93,-400],[-45,-137],[242,-484],[-93,-387],[35,-251],[-1683,-34],[-3231,24],[-105,269],[-428,124],[-176,117],[-150,367],[-45,501],[205,258],[-247,211],[-40,512],[-60,68],[48,345],[-322,503],[-236,60],[-491,393],[-80,292],[-484,241],[-192,256],[-334,35],[-427,453],[106,365],[-76,282],[108,101],[-22,379],[193,238],[-185,373],[-184,23],[35,308],[143,99],[136,281],[591,247],[96,125],[43,1291],[144,-30],[172,198],[151,-147],[295,11],[1043,317],[333,214],[243,-30]]],"transform":{"scale":[0.004476097800050077,-0.0048004800480048],"translate":[1.6217490486496438,48]}},"wy":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[-1123282.064132278,120810.96021317027,807434.5315190131,1635177.6278817311],"geometries":[{"type":"Polygon","arcs":[[0]]}]}},"arcs":[[[3134,9807],[805,-61],[2681,-111],[3273,1],[55,-4562],[51,-5055],[-1265,-19],[-1790,9],[-3233,108],[-2764,160],[-947,83],[456,8369],[63,1270],[468,-64],[2147,-128]]],"transform":{"scale":[0.004800480048004801,-0.003765279166233173],"translate":[0,42.824513191582746]}},"dc":{"type":"Topology","objects":{"icon":{"type":"GeometryCollection","bbox":[-8584932.05896952,4694338.784893045,-8561514.230316386,4721032.765917734],"geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[2]]]}]}},"arcs":[[[3147,3896],[316,-289],[-153,-60],[-179,268],[-256,70],[-221,410],[115,18],[378,-417]],[[2893,4409],[-137,9],[-200,441],[237,-42],[100,-408]],[[8974,5399],[1025,-906],[-4146,-3642],[-940,-832],[-290,-19],[-268,330],[84,750],[272,969],[246,531],[276,172],[363,486],[397,-51],[415,251],[591,243],[437,537],[53,396],[-118,-252],[-473,-621],[-378,-117],[-478,-281],[-424,83],[-192,-80],[-281,-397],[-319,-143],[-58,674],[-443,405],[-139,21],[366,-434],[83,-252],[-44,-499],[-499,795],[-882,715],[-208,367],[-61,299],[-369,164],[-383,75],[-419,10],[-637,246],[-19,-114],[-335,303],[-250,450],[-257,247],[-272,438],[3743,3283],[1310,-1129],[656,-590],[3265,-2881]]],"transform":{"scale":[0.004211317117255514,-0.004800480048004801],"translate":[2.9455200722810595,48]}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment