Skip to content

Instantly share code, notes, and snippets.

@calvinmetcalf
Created May 13, 2013 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save calvinmetcalf/5568668 to your computer and use it in GitHub Desktop.
Save calvinmetcalf/5568668 to your computer and use it in GitHub Desktop.
MA Topo JSON

inspired by Mike Bostock’s projected demo I tried the samething for MA, using state plane meters, first thing to notice: the topojson is now 200k, when it was in lat lngs it was in megabytes. Blue is for increase, red is decrease, you may or may not be able to hover over towns to see the % and name. The data I'm joining to it is an array with the index the massgis town id.

<!DOCTYPE html>
<meta charset="utf-8">
<style>
.background {
fill: none;
pointer-events: all;
}
.city {
fill: #fff;
stroke: #fff;
stroke-width: 1px;
}
</style>
<link rel="stylesheet" href="http://calvinmetcalf.github.io/demographics.d3/css/colorbrewer.css">
<div class="container-fluid">
<div class="row-fluid" id="selector">
</div>
<div class="row-fluid" id="maincontent">
</div></div>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="http://d3js.org/queue.v1.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="http://calvinmetcalf.github.io/bike/js/mustache.js"></script>
<script src="http://coffeescript.org/extras/coffee-script.js"></script>
<script type="text/coffeescript">
width = 960
height=650
options =
stat : [{name:'Population',value:'pop'},{name:'House Holds',value:'hh'},{name:'Employment',value:'emp'}]
start : ['2000','2010','2017','2020','2025','2030']
end : ['2010','2017','2020','2025','2030','2035']
template = Mustache.compile """
<select id="selStat" class="mapSelect">
{{#stat}}
<option value="{{value}}">{{name}}</option>
{{/stat}}
</select>
<select id="selStart" class="mapSelect">
{{#start}}
<option value="{{.}}">{{.}}</option>
{{/start}}
</select>
<select id="selEnd" class="mapSelect">
{{#end}}
<option value="{{.}}">{{.}}</option>
{{/end}}
</select>
"""
$("#selector").html template(options)
svg = d3.select("#maincontent").append("svg").attr("width", width).attr("height", height)
#projection = d3.geo.albers().scale(20000).center([0, 42.2]).rotate([71.8,0])
path = d3.geo.path().projection(null)
dat=[]
getValue = (value)->
return 0 unless value
startVal=value[$('#selStat').val()][$('#selStart').val()]
return 0 if startVal == 0
endVal = value[$('#selStat').val()][$('#selEnd').val()]
((endVal-startVal)/startVal)*100
makeScale=(data)->
values = for key,value of data
getValue(value)
values = values
values.sort d3.ascending
cutoff = d3.bisectLeft(values,0)
nQuant = d3.scale.quantile()
nQuant.domain values.slice(0,cutoff)
nQuant.range [8..1]
pQuant = d3.scale.quantile()
pQuant.domain values.slice(cutoff)
pQuant.range [1..8]
(d)->
switch
when d>0 then "Blues q#{pQuant(d)}-9"
when d<0 then "Reds q#{nQuant(d)}-9"
else ""
result = (err,[topo,dem])->
dat=[topo,dem]
scale = makeScale(dem)
for key, value of dem
dem[key.toUpperCase()]=value
svg.append("g").attr("transform","scale(1)translate(1,1)").attr("class", "city")
.selectAll("path")
.data(topojson.feature(topo, topo.objects.towns).features)
.enter().append("path")
.attr("class", (d) ->
console.log d
"#{scale(getValue(dem[d.properties.id]))}"
).attr("d", path).append("title").text((d)->
"#{dem[d.properties.id].name} is #{getValue(dem[d.properties.id]).toFixed(2)}%"
)
true
queue().defer(d3.json,"ma.json").defer(d3.json,"pop.json").awaitAll(result)
$('.mapSelect').on 'change', ()->
result undefined,dat
d3.select(@frameElement).style("height", "#{height}px")
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.08512043996054293,-0.052205220522052204],"translate":[54.44036041726565,542]},"objects":{"towns":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[-1,-2,-3,-4,-5,-6]],"properties":{"id":161}},{"type":"Polygon","arcs":[[-7,-8,-9,-10,-11,-12]],"properties":{"id":162}},{"type":"MultiPolygon","arcs":[[[-13,-14,-15,-16,-17,-18,-19,-20]]],"properties":{"id":163}},{"type":"Polygon","arcs":[[-21,-22,-23,-24,-25,12,-26]],"properties":{"id":164}},{"type":"Polygon","arcs":[[-27,-28,-29,-30,-31,-32,-33,-34,-35,-36]],"properties":{"id":165}},{"type":"MultiPolygon","arcs":[[[-37,-38,-39,-40,-41,-42,-43,-44,-45,-46,-47,-48,-49,-50]],[[-51]]],"properties":{"id":166}},{"type":"Polygon","arcs":[[-52,-53,-54,-55,-56,-57]],"properties":{"id":167}},{"type":"MultiPolygon","arcs":[[[-58,-59,-60,-61,-62]],[[-63]]],"properties":{"id":168}},{"type":"MultiPolygon","arcs":[[[-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-81,-82,-83,-84,-85,-86,-87,-88,-89]],[[-90]]],"properties":{"id":169}},{"type":"Polygon","arcs":[[-91,-92,-93,-94,-95,-96]],"properties":{"id":170}},{"type":"MultiPolygon","arcs":[[[-97,-98,-99,-100,-101,-102,-103,-104,-105,-106]],[[-107]],[[-108,-109,-110,-111,-112,-113,-114]],[[-115,-116,-117,-118,-119,-120,-121,-122,-123,-124,-125,-126,-127,-128,-129,-130,-131,-132,-133,-134,-135,-136,-137,-138,-139,-140,-141,-142,-143,-144,-145,-146,-147,-148,-149,-150,-151,-152,-153,-154,-155,-156,-157,-158,-159,-160,-161,-162,-163,-164,-165,-166,-167,-168,-169,-170,-171,-172,-173,-174,-175,-176,-177,-178,101,-179,-180,-181,-182,-183,-184,-185,-186,-187,-188,-189,-190,-191,-192,-193,-194,-195,195]],[[-197,-198,-199,-200]],[[-201,-202,-203]],[[-204,184,-205,-206,-207,-208]],[[-209,-210,-211]],[[-212,-213,-214,-215]],[[-216,-217,-218]],[[-219,158,-220,-221,155]],[[-222,-223,-224,-225,213,-226,-227,-228,-229,-230]]],"properties":{"id":171}},{"type":"MultiPolygon","arcs":[[[-231,-232]],[[-233,-234,-235,-236,-237]],[[-238,-239,-240,-241,-242,-243,-244]],[[-245,-246,-247,-248,242]],[[-249,-250,-251,-252,-253,-254,-255,-256,-257,-258,240,-259,238,-260,-261,-262,-263,-263,-264,-265,-266,-267,233,-268,268,-270,-271,-272,-273,-274,-275,-276,-277,-278,-279]],[[-280]]],"properties":{"id":172}},{"type":"MultiPolygon","arcs":[[[-281,-282,-283,-284,65]]],"properties":{"id":173}},{"type":"Polygon","arcs":[[-285,-286,-287]],"properties":{"id":174}},{"type":"Polygon","arcs":[[-288,-289,-290,-291,-292]],"properties":{"id":175}},{"type":"MultiPolygon","arcs":[[[-293,-294,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-305,-306,29]]],"properties":{"id":176}},{"type":"Polygon","arcs":[[-307,-308,-309,-310,-311,-312,-313,-314,-315]],"properties":{"id":182}},{"type":"Polygon","arcs":[[-316,-317,-318,20,-319,-320,-321,-322]],"properties":{"id":184}},{"type":"Polygon","arcs":[[-323,-324,-325,-326,-327,-328]],"properties":{"id":185}},{"type":"Polygon","arcs":[[-329,-330,-331,-332,-333]],"properties":{"id":186}},{"type":"Polygon","arcs":[[289,-334,-335,-336,-337]],"properties":{"id":187}},{"type":"Polygon","arcs":[[-338,-339,-340,-341]],"properties":{"id":188}},{"type":"Polygon","arcs":[[-342,322,-343,-344,-345,335]],"properties":{"id":177}},{"type":"Polygon","arcs":[[-346,-347,-348,27]],"properties":{"id":178}},{"type":"Polygon","arcs":[[-349,-350,-351,-352,339,-353,-354]],"properties":{"id":179}},{"type":"Polygon","arcs":[[-355,-356,-357,-358]],"properties":{"id":180}},{"type":"Polygon","arcs":[[-359,-360,-361,-362,-363,-364]],"properties":{"id":181}},{"type":"Polygon","arcs":[[-365,-366,-367,-368,-369,-370,-371]],"properties":{"id":192}},{"type":"Polygon","arcs":[[-372,-373,-374,-375,-376]],"properties":{"id":193}},{"type":"Polygon","arcs":[[-377,-378,-379,-380]],"properties":{"id":194}},{"type":"Polygon","arcs":[[-381,-382,-383]],"properties":{"id":195}},{"type":"Polygon","arcs":[[-384,-385,-386,-387,-388]],"properties":{"id":217}},{"type":"Polygon","arcs":[[-389,56,-390,-391,-392]],"properties":{"id":218}},{"type":"Polygon","arcs":[[-393,-394,-395,-396,-397,-398,-399,-400,-401,131,-402,-403,-404,-405,-406,-407,124,-408,-409,-410,-411,119,-412,-413,-414,-415]],"properties":{"id":219}},{"type":"Polygon","arcs":[[-416,-417,-418,-419,-420]],"properties":{"id":220}},{"type":"MultiPolygon","arcs":[[[-421,-422,-423,-424,-425]],[[-426,-427]]],"properties":{"id":221}},{"type":"Polygon","arcs":[[-428,-429,-430,-431,-432]],"properties":{"id":222}},{"type":"Polygon","arcs":[[-433,-434,-435,-436,-437,-438]],"properties":{"id":223}},{"type":"MultiPolygon","arcs":[[[-439,-440,-441,-442,-443,-444,-445,-446,-447,-448,-449,-450,-451,-452,-453,-454,-455]],[[-456,-457,-458,-459,-460,-460,-461]],[[-462]],[[-463]],[[-464]],[[-465,-466]],[[-467]],[[-468,448,-469]],[[-470,-471,-472]],[[-473,-474,-475,-476]],[[-477,-478,-479,-480]]],"properties":{"id":224}},{"type":"Polygon","arcs":[[-481,-482,371,-483,-484,-485]],"properties":{"id":225}},{"type":"Polygon","arcs":[[-486,-487,-488,-489,-490,-491,-492,331]],"properties":{"id":226}},{"type":"Polygon","arcs":[[-493,-494,0,-495,-496,-497,-498]],"properties":{"id":227}},{"type":"Polygon","arcs":[[-499,-500,-501,427,-502,-503]],"properties":{"id":228}},{"type":"Polygon","arcs":[[318,25,19,-504,-505,-506,-507,-508,-509,-510,-511,-512,-513,319]],"properties":{"id":229}},{"type":"Polygon","arcs":[[-514,-515,-516,-517]],"properties":{"id":230}},{"type":"Polygon","arcs":[[-518,397,-519,-520,-521,-522,-523,-524,136]],"properties":{"id":231}},{"type":"Polygon","arcs":[[-525,-526,-527,-528]],"properties":{"id":232}},{"type":"Polygon","arcs":[[-529,-530,-531,-532,-533,-534]],"properties":{"id":233}},{"type":"Polygon","arcs":[[395,-535,-536,-537,-538,-539,-540]],"properties":{"id":251}},{"type":"MultiPolygon","arcs":[[[-541]],[[-542]],[[-543,-544]],[[-545]]],"properties":{"id":252}},{"type":"Polygon","arcs":[[-546,-547,-548,-549,-550]],"properties":{"id":253}},{"type":"MultiPolygon","arcs":[[[-551,-552,-553,-554,-555,-556,-557,-558,-559,-560,-561,-562,-563,-564,-565,-566,-567,-568,-569,-570,-571,-572,-573,-574,-575,-576,-577,-578,-579,-580,-581,-582,-583,-584,-585,-586,-587,-588,-589,-590,-591,-592,-593,-594,-595,-596,-597,-598,-599,-600,-601,-602,-603,-604,-605,-606,-607,-608,-609,-610,-611,-612,-613,-614,-615,-616,-617,-618,-619,-620,-621,-622,-623,-624,-625,-626,-627,-628,-629,-630,-631,-632,-633,-634,-635,-636,-637,-638,-639,-640,-641,-642,-643,-644,-645,-646,-647]],[[-648,-649]],[[-650,-651,-652,-653,-654,-655,-656,-657,-658,-659,-660,-661,-662,-663,-664]],[[661,-665,-666,-667,-668,-669]],[[-670,670,-672,-673]],[[655,-674,-675,-676,-677]]],"properties":{"id":254}},{"type":"Polygon","arcs":[[-678,-679,-680,432,-681,-682,-683,-684]],"properties":{"id":255}},{"type":"Polygon","arcs":[[378,-685,-686,-687,-688]],"properties":{"id":256}},{"type":"Polygon","arcs":[[-689,-690,-691,428,500,-692]],"properties":{"id":257}},{"type":"MultiPolygon","arcs":[[[-693,-694,503,18,-695,60,-696]],[[-697]],[[-698]],[[-699]],[[-700,-701,-702]]],"properties":{"id":258}},{"type":"MultiPolygon","arcs":[[[-703,-704]],[[-705]],[[-706]]],"properties":{"id":259}},{"type":"Polygon","arcs":[[482,375,-707,-708,-709]],"properties":{"id":260}},{"type":"MultiPolygon","arcs":[[[-710,-711,-712,248,-713,-714,-715]],[[-716,-717]]],"properties":{"id":261}},{"type":"MultiPolygon","arcs":[[[24,-718,345,-719,-720,-721,-722,-723,-724,-725,-726,-727,-728,-729,-730,-731,-732,-733,-734,-735,-736,-737,-738,-739,739,-741,13]],[[-742,-743,-744,-745,-746,-747,-748,-749,728,-750]]],"properties":{"id":262}},{"type":"Polygon","arcs":[[-751,-752,-753,-754,-755,-756,-757]],"properties":{"id":263}},{"type":"MultiPolygon","arcs":[[[-758,-759,-760,-761,-762,-763,-764,-765,-766,-767,-768,-769,-770,393,-771,-772,-773,-774,-775]],[[-776]],[[-777,153]],[[-778]],[[-779,-780,759,-781]]],"properties":{"id":264}},{"type":"Polygon","arcs":[[-782,-783,-784,-785,333,288,-786]],"properties":{"id":269}},{"type":"Polygon","arcs":[[-787,-788,11,-789,-790,-791]],"properties":{"id":270}},{"type":"Polygon","arcs":[[-792,-793,-794,-795,-796,-797]],"properties":{"id":271}},{"type":"Polygon","arcs":[[-798,-799,-800,-801,-802,-803]],"properties":{"id":234}},{"type":"Polygon","arcs":[[-804,-805,681,-806,798,-807,-808]],"properties":{"id":235}},{"type":"Polygon","arcs":[[-809,-810,-811,-812,-813,-814]],"properties":{"id":236}},{"type":"Polygon","arcs":[[-815,754,-816,-817,-818]],"properties":{"id":237}},{"type":"Polygon","arcs":[[-819,-820,-821,-822]],"properties":{"id":238}},{"type":"MultiPolygon","arcs":[[[-823,-824]],[[-825,-826,-827,-828,-829,-830]],[[-831]]],"properties":{"id":239}},{"type":"Polygon","arcs":[[-832,521,-833,313,-834]],"properties":{"id":240}},{"type":"Polygon","arcs":[[-835,-836,688,-837,-838,-839]],"properties":{"id":241}},{"type":"MultiPolygon","arcs":[[[-840,-841,-842,-843,-844,-845,-846,-847,-848,-849,-850,-851,-852,-853,-854,-855,-856,-857,-858,-859,-860,-861,-862,-863,-864,-865,-866,-867,-868,-869,-870,-871,-872,-873,-874,-875,-876,-877,-878,-879,-880,-881,-882,-883,-884,-885,-886,-887]],[[-888,-889,-890,-891,-877,-892,-893,-894]],[[-895,-896,-897,-898,-899,-900,-901,872,-902,870,-903,-904,-905,-906,-907]],[[-908,-909,-910,852,-911,-912,-913,-914,857]],[[-915,-916,-917]],[[860,-918,-919,862,-920]]],"properties":{"id":242}},{"type":"MultiPolygon","arcs":[[[-921,-922,-923,-924,-925,-926,-927,-928,-929,-930,-931,-932,932,-934]]],"properties":{"id":243}},{"type":"Polygon","arcs":[[-935,-936,-937,-938,-939,22]],"properties":{"id":246}},{"type":"Polygon","arcs":[[-940,-941,-942,-943,-944,-945,-946,-947,-948,390]],"properties":{"id":247}},{"type":"MultiPolygon","arcs":[[[-949,26,-950,-951,-952,-953,-954,-955,-956,-957,-958,-959,-960,-961,-962,-963,-964,-965,-966,-967,-968,-969,-970,-971,-972,-973,724,-974,-975,-976,-977,-978,-979]]],"properties":{"id":248}},{"type":"Polygon","arcs":[[810,-980,-981,-982,-983,-984]],"properties":{"id":249}},{"type":"Polygon","arcs":[[924,-985,-986,-987,-988,-989,-990]],"properties":{"id":244}},{"type":"Polygon","arcs":[[307,-991,-992,-993,-994,-995,-996,-997,-998,-999,-1000,-1001,-1002,-1003,-1004,-1005,-1006,-1007,-1008,-1009,-1010,-1011,-1012,-1013,-1014,-1015,-1016,-1017,-1018,-1019,-1020,-1021,-1022,-1023,-1024,-1025,-1026,-1027,-1028,-1029,-1030,-1031,-1032,-1033,-1034,-1035,-1036,-1037,-1038,-1039,-1040,-1041,-1042,-1043,-1044,-1045,-1046,-1047,-1048,-1049,-1050,-1051,-1052,-1053,-1054,-1055]],"properties":{"id":245}},{"type":"Polygon","arcs":[[-1056,310,-1057,-1058,-1059,280,64]],"properties":{"id":250}},{"type":"Polygon","arcs":[[-1060,358,-1061,-1062,-1063,316,-1064]],"properties":{"id":210}},{"type":"Polygon","arcs":[[54,821,-1065,-1066]],"properties":{"id":211}},{"type":"Polygon","arcs":[[-1067,-1068,-1069,-1070,-1071]],"properties":{"id":212}},{"type":"Polygon","arcs":[[317,1062,-1072,-1073,934,21]],"properties":{"id":213}},{"type":"Polygon","arcs":[[-1074,-1075,-1076,-1077,-1078]],"properties":{"id":214}},{"type":"Polygon","arcs":[[-1079,-1080,796,-1081,-1082,94]],"properties":{"id":215}},{"type":"Polygon","arcs":[[-1083,-1084,-1085,350,-1086]],"properties":{"id":216}},{"type":"Polygon","arcs":[[940,-1087,-1088,-1089]],"properties":{"id":265}},{"type":"Polygon","arcs":[[417,-1090,-1091,52,-1092,-1093,-1094]],"properties":{"id":266}},{"type":"Polygon","arcs":[[-1095,-1096,382,-1097,-1098]],"properties":{"id":267}},{"type":"Polygon","arcs":[[-1099,-1100,-1101,-1102,-1103,-1104]],"properties":{"id":268}},{"type":"Polygon","arcs":[[-1105,-1106,-1107,376,-1108,-1109]],"properties":{"id":276}},{"type":"Polygon","arcs":[[95,1081,-1110,-1111,-1112,-1113,-1114]],"properties":{"id":277}},{"type":"Polygon","arcs":[[-1115,-1116,-1117,-1118]],"properties":{"id":278}},{"type":"Polygon","arcs":[[-1119,-1120,-1121,-1122]],"properties":{"id":279}},{"type":"Polygon","arcs":[[-1123,501,431,1066,-1124,-1125]],"properties":{"id":280}},{"type":"Polygon","arcs":[[4,-1126,-1127,-1128,-1129,-1130,-1131]],"properties":{"id":281}},{"type":"Polygon","arcs":[[-1132,-1133,837,-1134,-1135,-1136,-1137]],"properties":{"id":282}},{"type":"Polygon","arcs":[[982,-1138,-1139,-1140,-1141]],"properties":{"id":283}},{"type":"Polygon","arcs":[[-1142,937,-1143,-1144,292,28,347]],"properties":{"id":284}},{"type":"Polygon","arcs":[[-1145,-1146,-1147,-1148,-1149,-1150]],"properties":{"id":308}},{"type":"Polygon","arcs":[[-1151,-1152,497,-1153,-1154]],"properties":{"id":311}},{"type":"Polygon","arcs":[[679,-1155,383,-1156,433]],"properties":{"id":312}},{"type":"Polygon","arcs":[[-1157,812,-1158,-1159,-1160,-1161,531,-1162]],"properties":{"id":313}},{"type":"Polygon","arcs":[[-1163,1148,-1164,-1165,-1166]],"properties":{"id":314}},{"type":"Polygon","arcs":[[-1167,-1168,-1169,-1170,-1171,-1172,-1173,-1174,-1175]],"properties":{"id":315}},{"type":"Polygon","arcs":[[-1176,489,-1177,-1178]],"properties":{"id":316}},{"type":"MultiPolygon","arcs":[[[-1179,-1180,-1181,-1182,-1183]],[[-1184,-1185]]],"properties":{"id":317}},{"type":"MultiPolygon","arcs":[[[-1186,-1187,-1188,-1189,-1190,-1191,-1192,-1193,-1194,-1195,-1196,-1197,-1198,-1199,-1200,-1201,-1202,-1203,-1204,-1205,-1206,-1207]],[[-1208,-1209,-1210,-1211,-1212]],[[-1213,-1214,-1215,-1216]],[[-1217,-1218,-1219,-1220,1220,-1222,-1223,1195,-1224,-1225,-1226,-1227,-1228,-1229]],[[-1230]],[[-1231,-1232]],[[-1233,-1234,-1235]],[[-1189,1235,1236,1237]]],"properties":{"id":318}},{"type":"Polygon","arcs":[[-1239,-1240,-1241,-1242,-1243]],"properties":{"id":327}},{"type":"Polygon","arcs":[[1109,1080,795,-1244,-1245,-1246]],"properties":{"id":328}},{"type":"Polygon","arcs":[[-1247,986,-1248,1092,-1249,-1250]],"properties":{"id":285}},{"type":"Polygon","arcs":[[-1251,-1252,-1253,-1254,-1255,-1256,285]],"properties":{"id":286}},{"type":"Polygon","arcs":[[-1257,-1258,-1259,-1260,-1261,-1262,1115]],"properties":{"id":287}},{"type":"MultiPolygon","arcs":[[[1171,-1263,286,1255,-1264,91,-1265,1166]],[[1172,1174]]],"properties":{"id":288}},{"type":"Polygon","arcs":[[-1266,-1267,366,-1268,-1269,-1270]],"properties":{"id":289}},{"type":"Polygon","arcs":[[-1271,332,491,-1272,-1273,1083]],"properties":{"id":290}},{"type":"MultiPolygon","arcs":[[[694,17,-1274,-1275,61]]],"properties":{"id":291}},{"type":"MultiPolygon","arcs":[[[1088,-1276,-1277,941]],[[-1278,945,-1279,-1280,-1281,-1282,-1283,-1284,-1285,-1286]]],"properties":{"id":292}},{"type":"MultiPolygon","arcs":[[[308,1054,-1287,-1288,-1289,-1290,-1291,-1292,-1293,-1294,-1295,-1296,1044,-1297,-1298,-1299,-1300,-1301,-1302,-1303,-1304,-1305,-1306,-1307,-1308,-1309,-1310,-1311,-1312,-1313,1032,-1314,-1315,1029,-1316,-1317,-1318,1024,-1319,-1320,-1321,-1322,-1323,-1324,-1325,-1326,-1327,-1328,-1329,-1330,-1331,-1332,-1333,-1334,-1335,-1336,-1337,-1338,-1339,-1340,-1341,-1342,-1343,1006,-1344,-1345,-1346,-1347,-1348,-1349,-1350,-1351,999,-1352,-1353,-1354,-1355,-1356,-1357,-1358,-1359,-1360]],[[993,-1361,391,947,-1362,-1363,-1364]]],"properties":{"id":293}},{"type":"Polygon","arcs":[[-1365,683,682,803,-1366,-1367]],"properties":{"id":294}},{"type":"Polygon","arcs":[[-1368,-1369,-1370,-1371,-1372]],"properties":{"id":295}},{"type":"MultiPolygon","arcs":[[[-1373,1238,421,-1374]]],"properties":{"id":296}},{"type":"Polygon","arcs":[[483,708,-1375,-1376,-1377]],"properties":{"id":297}},{"type":"Polygon","arcs":[[-1378,321,-1379,-1380,-1381,-1382,-1383,-1384,-1385]],"properties":{"id":298}},{"type":"Polygon","arcs":[[526,-1386,-1387,6,787,-1388]],"properties":{"id":299}},{"type":"MultiPolygon","arcs":[[[-1389,886,-1390,-1391,-1392,1186]]],"properties":{"id":300}},{"type":"Polygon","arcs":[[-1393,-1394,-1395,-1396,-1397,-1398,-1399]],"properties":{"id":301}},{"type":"Polygon","arcs":[[481,-1400,-1401,-1402,372]],"properties":{"id":302}},{"type":"Polygon","arcs":[[1244,-1403,1085,349,-1404,325,-1405]],"properties":{"id":303}},{"type":"Polygon","arcs":[[351,1084,1272,-1406,-1407,340]],"properties":{"id":304}},{"type":"Polygon","arcs":[[23,938,1141,346,717]],"properties":{"id":305}},{"type":"Polygon","arcs":[[-1408,-1409,-1410,-1411]],"properties":{"id":306}},{"type":"Polygon","arcs":[[-1412,291,-1413,-1414,1089,416,-1415]],"properties":{"id":307}},{"type":"Polygon","arcs":[[801,-1416,-1417,492,1151,-1418,-1419,-1420]],"properties":{"id":309}},{"type":"MultiPolygon","arcs":[[[311,1055,-1421,-1422,-1423,-1424,-1425,81,-1426,-1427,78,-1428,-1429,75,-1430,-1431,-1432,-1433,-1434,-1435,-1436,-1437,-1438,-1439,826,-1440]],[[-1441]]],"properties":{"id":310}},{"type":"Polygon","arcs":[[-1442,-1443,-1444,514,-1445]],"properties":{"id":272}},{"type":"MultiPolygon","arcs":[[[1445,1446,-1284]],[[-1448,-1449,1285,-1450,1281,-1451]]],"properties":{"id":273}},{"type":"Polygon","arcs":[[-1452,-1453,-1454,-1455,-1456,-1457,-1458,-1459,-1460,-1461]],"properties":{"id":274}},{"type":"Polygon","arcs":[[-1462,-1463,-1464,-1465,-1466]],"properties":{"id":275}},{"type":"Polygon","arcs":[[1126,-1467,-1468,-1469,-1470]],"properties":{"id":325}},{"type":"Polygon","arcs":[[981,-1471,-1472,-1473,1137]],"properties":{"id":326}},{"type":"Polygon","arcs":[[1107,379,687,-1474,1118,-1475,1468,-1476]],"properties":{"id":329}},{"type":"Polygon","arcs":[[-1477,1396,-1478,-1479,-1480,-1481]],"properties":{"id":330}},{"type":"Polygon","arcs":[[-1482,1075,-1483,-1484,-1485,-1486,1105]],"properties":{"id":331}},{"type":"Polygon","arcs":[[-1487,-1488,-1489,-1490,834,-1491]],"properties":{"id":332}},{"type":"Polygon","arcs":[[-1492,1169,-1493,1179,-1494,1146]],"properties":{"id":333}},{"type":"MultiPolygon","arcs":[[[-1495]],[[-1496]],[[1496,1497,1498,1499,1500]],[[-1502,-1503,-1504,-1505]],[[-1506,-1507,-1508,-1509,-1510]],[[-1511,-1512,-1513,-1514]],[[-1515,-1516,-1517,-1518,-1519,-1520,-1521,-1522]],[[-1523,-1524,-1525,-1526,-1527,-1528,-1529,-1530,-1531,-1532,-1533,-1534,-1535,-1536,-1537,-1538]],[[-1539]],[[-1540]],[[-1541]],[[-1542]],[[-1543]],[[-1544,1531,-1545,-1546,-1547,1523]],[[-1548]],[[-1549,-1550]],[[-1551]],[[-1552,-1553,1509,-1554,-1555,1506]],[[-1556,-1557,-1558,-1559,-1560]]],"properties":{"id":334}},{"type":"Polygon","arcs":[[-1561,-1562,-1563,1414,415,-1564,-1565]],"properties":{"id":335}},{"type":"MultiPolygon","arcs":[[[-1566]],[[-1567,1567,-1569,-1570,-1571,-1572,-1573,-1574,-1575,-1576,-1577,535,-1578,-1579,-1580,-1581,-1582,-1583,-1584,-1585,-1586]],[[-1587]]],"properties":{"id":336}},{"type":"Polygon","arcs":[[-1588,-1589,-1590,-1591,1268]],"properties":{"id":337}},{"type":"Polygon","arcs":[[537,-1592,-1593,-1594,-1595]],"properties":{"id":338}},{"type":"Polygon","arcs":[[-1596,494,5,1130,-1597,-1598]],"properties":{"id":339}},{"type":"Polygon","arcs":[[-1599,1589,-1600,-1601,-1602,1482,1074]],"properties":{"id":340}},{"type":"Polygon","arcs":[[-1603,-1604,-1605,-1606,-1607,-1608]],"properties":{"id":341}},{"type":"Polygon","arcs":[[-1609,1370,-1610,-1611,-1612,935,1072]],"properties":{"id":342}},{"type":"Polygon","arcs":[[1364,-1613,-1614,-1615,677]],"properties":{"id":343}},{"type":"Polygon","arcs":[[1143,-1616,-1617,-1618,293]],"properties":{"id":344}},{"type":"Polygon","arcs":[[753,-1619,-1620,-1621,529,-1622,815]],"properties":{"id":345}},{"type":"MultiPolygon","arcs":[[[-1623]],[[-1624,-1625,-1626,-1627,-1628,-1629,-1630,-1631,-1632]],[[-1633,-1634]]],"properties":{"id":346}},{"type":"Polygon","arcs":[[936,1611,-1635,-1636,1615,1142]],"properties":{"id":347}},{"type":"Polygon","arcs":[[-1637,-1638,498,-1639,-1640,329,-1641,793]],"properties":{"id":348}},{"type":"Polygon","arcs":[[-1642,533,-1643,-1644,-1645,-1646]],"properties":{"id":349}},{"type":"Polygon","arcs":[[-1647,-1648,-1649,-1650,819,-1651]],"properties":{"id":350}},{"type":"MultiPolygon","arcs":[[[-1652,-1653,-1654,-1655,-1656,-1657,-1658,-1659,-1660,-1661,-1662,-1663,-1664,-1665,-1666,-1667,-1668,-1669,-1670,-1671,-1672]]],"properties":{"id":351}},{"type":"Polygon","arcs":[[-1673,368,-1674,1441,-1675,435]],"properties":{"id":319}},{"type":"Polygon","arcs":[[1380,1379,-1676,-1677,39,-1678]],"properties":{"id":320}},{"type":"Polygon","arcs":[[-1679,1636,792,-1680,1134]],"properties":{"id":321}},{"type":"Polygon","arcs":[[-1681,-1682,991,-1683,-1684]],"properties":{"id":322}},{"type":"Polygon","arcs":[[-1685,1417,1150,-1686,1068]],"properties":{"id":323}},{"type":"Polygon","arcs":[[357,-1687,-1688,-1689,-1690,-1691,-1692,-1693,-1694,-1695,-1696,-1697]],"properties":{"id":324}},{"type":"Polygon","arcs":[[-1698,-1699,-1700,-1701,-1702,-1703]],"properties":{"id":23}},{"type":"Polygon","arcs":[[516,-1704,-1705,1,493,1416,-1706]],"properties":{"id":24}},{"type":"Polygon","arcs":[[342,327,-1707,353,-1708,-1709,1648,-1710]],"properties":{"id":25}},{"type":"Polygon","arcs":[[-1711,-1712,1149,1162,-1713]],"properties":{"id":26}},{"type":"MultiPolygon","arcs":[[[1358,-1714,-1715,-1716,-1717,-1718,-1719,-1720,-1721]]],"properties":{"id":27}},{"type":"Polygon","arcs":[[-1722,-1723,-1724,1078,93,-1725]],"properties":{"id":28}},{"type":"Polygon","arcs":[[-1726,385,-1727,-1728,-1729]],"properties":{"id":29}},{"type":"MultiPolygon","arcs":[[[-1730,-1731,46,-1732,44,-1733,-1734,-1735,40,1676]]],"properties":{"id":30}},{"type":"MultiPolygon","arcs":[[[1454,-1736,1164,-1737,-1738,-1739,-1740,-1741,-1742,-1743,-1744,-1745,-1746,-1747,-1748,-1749,-1750,-1751,-1752,-1753,-1754,-1755,-1756,-1757,-1758,-1759,-1760,-1761,-1762,-1763,-1764,-1765,-1766,-1767,-1768,-1769,-1770,-1771,-1772,-1773,-1774,-1775,-1776,-1777,-1778,-1779,-1780,-1781,-1782,-1783,-1784,-1785,-1786,-1787,-1788,-1789,-1790,-1791,-1792,-1793,-1794,-1795,-1796,-1797,-1798,-1799,-1800,-1801,-1802,-1803,-1804,-1805,-1806,-1807,-1808,-1809,-1810,-1811,-1812,-1813,-1814,-1815,-1816,-1817,-1818,-1819,-1820,-1821,-1822,-1823,-1824,-1825,-1826,-1827,-1828,-1829,-1830,-1831,-1832,-1833,-1834]],[[-1835,1628]],[[-1836]],[[-1837]],[[-1838]],[[-1839]],[[-1840]],[[-1841,-1842]],[[-1843,1830,-1844,1828,-1845]],[[-1846,-1847,-1848,-1849]],[[-1850,-1851,-1852,-1853,-1854]],[[-1855,-1856,-1857,-1858,-1859,-1860]],[[954,-1861,-1862,-1863,1633,-1864,-1865,-1866,-1867,-1868,-1869,-1870,-1871,-1872,-1873]],[[-1874,-1875,-1876,-1877,-1878,-1879,-1880,-1881,-1882,-1883,-1884,-1885,-1886,-1887,-1888,-1889,-1890,-1891,-1892,-1893,-1894,-1895,-1896,-1897,-1898,-1899]],[[-1900]],[[-1901,921]],[[-1902]],[[-1903]],[[-1904]],[[-1905]]],"properties":{"id":35}},{"type":"MultiPolygon","arcs":[[[710,-1906,-1907,-1908,-1909,-1910]],[[716,-1911,827,1438,-1912]],[[-1913]],[[-1914]]],"properties":{"id":36}},{"type":"Polygon","arcs":[[-1915,-1916,-1917,1251]],"properties":{"id":37}},{"type":"Polygon","arcs":[[1369,-1918,-1919,-1920,1698,-1921,1609]],"properties":{"id":31}},{"type":"Polygon","arcs":[[1707,352,338,-1922]],"properties":{"id":32}},{"type":"Polygon","arcs":[[-1923,484,1376,-1924,685,-1925,-1926]],"properties":{"id":33}},{"type":"Polygon","arcs":[[-1927,-1928,1721,-1929,1253,-1930]],"properties":{"id":34}},{"type":"Polygon","arcs":[[-1931,1063,315,1377,-1932,633,-1933,-1934]],"properties":{"id":38}},{"type":"Polygon","arcs":[[-1935,1135,1679,791,1079,1723]],"properties":{"id":39}},{"type":"Polygon","arcs":[[925,989,-1936,1574,-1937,1572,-1938,-1939,1569,-1940]],"properties":{"id":40}},{"type":"MultiPolygon","arcs":[[[-1941,-1942,-1943,-1944,-1945,-1946,-1947,-1948,-1949,-1950,-1951,-1952,-1953,-1954,445,-1955]]],"properties":{"id":41}},{"type":"Polygon","arcs":[[-1956,833,312,1439,825]],"properties":{"id":52}},{"type":"Polygon","arcs":[[536,1576,-1957,-1958,1591]],"properties":{"id":1}},{"type":"Polygon","arcs":[[-1959,-1960,1479,-1961,1914,1250,284]],"properties":{"id":2}},{"type":"Polygon","arcs":[[281,1058,-1962,-1963,-1964,-1965,-1966,-1967,-1968,-1969,-1970]],"properties":{"id":3}},{"type":"Polygon","arcs":[[-1971,-1972,1606,-1973,-1974,751]],"properties":{"id":4}},{"type":"Polygon","arcs":[[1469,1474,1121,-1975,-1976,1127]],"properties":{"id":5}},{"type":"Polygon","arcs":[[1471,-1977,-1978,-1979]],"properties":{"id":6}},{"type":"Polygon","arcs":[[-1980,703,-1981,354,1696,-1982,1982]],"properties":{"id":7}},{"type":"Polygon","arcs":[[1443,-1984,1265,-1985,1465,-1986,1703,515]],"properties":{"id":8}},{"type":"Polygon","arcs":[[-1987,362,-1988,1371,1608,1071,1061]],"properties":{"id":9}},{"type":"MultiPolygon","arcs":[[[-1989,-1990]],[[-1991,-1992,-1993,-1994]]],"properties":{"id":104}},{"type":"Polygon","arcs":[[-1995,1710,-1996,1452,294,1617]],"properties":{"id":10}},{"type":"Polygon","arcs":[[-1997,-1998,1613,-1999,1487,-2000]],"properties":{"id":11}},{"type":"Polygon","arcs":[[1386,-2001,1996,-2002,7]],"properties":{"id":12}},{"type":"Polygon","arcs":[[-2003,-2004,817,-2005,-2006,-2007]],"properties":{"id":13}},{"type":"Polygon","arcs":[[-2008,1112,-2009,-2010,783]],"properties":{"id":14}},{"type":"Polygon","arcs":[[680,437,-2011,799,805]],"properties":{"id":15}},{"type":"Polygon","arcs":[[389,55,1065,-2012,1086,939]],"properties":{"id":16}},{"type":"Polygon","arcs":[[1639,-2013,485,330]],"properties":{"id":17}},{"type":"Polygon","arcs":[[987,1246,-2014,-2015]],"properties":{"id":18}},{"type":"Polygon","arcs":[[-2016,790,-2017,-2018]],"properties":{"id":19}},{"type":"MultiPolygon","arcs":[[[-2019,-2020,-2021]],[[-2022]],[[-2023]],[[-2024]],[[-2025]],[[-2026]],[[-2027,-2028,-2029]],[[-2030,-2031,-2032,-2033,-2034]],[[-2035,712,-2036,-2037,-2038,-2039,-2040,272,-2041,270,-2042,-2043,-2044,-2045,-2046,-2047,-2048,-2049,-2050,-2051,2020,-2052,-2053,-2054,-2055,-2056,-2057,-2058,-2059,-2060,-2061,-2062,-2063,-2064,-2065,-2066,-2067,-2068,-2069]],[[-2070]],[[-2071]],[[-2072,-2073,-2074,-2075,-2076,-2077,-2078,-2079,-2080,-2081]],[[-2082]],[[-2083]],[[-2084,-2085,-2086,-2087]]],"properties":{"id":20}},{"type":"Polygon","arcs":[[690,-2088,806,797,-2089,-2090,429]],"properties":{"id":21}},{"type":"Polygon","arcs":[[-2091,1159,-2092,1399,480,1922,-2093]],"properties":{"id":22}},{"type":"Polygon","arcs":[[1682,990,306,-2094,-2095]],"properties":{"id":42}},{"type":"Polygon","arcs":[[-2096,1152,496,-2097,1407,-2098,1259]],"properties":{"id":43}},{"type":"Polygon","arcs":[[-2099,2013,1249,-2100,1680,-2101,1592,1957]],"properties":{"id":44}},{"type":"Polygon","arcs":[[1069,1685,1153,2095,1258,-2102]],"properties":{"id":45}},{"type":"Polygon","arcs":[[1737,-2103]],"properties":{"id":46}},{"type":"Polygon","arcs":[[-2104,-2105,2002,-2106,1101]],"properties":{"id":47}},{"type":"Polygon","arcs":[[1610,1920,1697,-2107,1634]],"properties":{"id":48}},{"type":"Polygon","arcs":[[1453,1995,1712,1165,1735]],"properties":{"id":49}},{"type":"Polygon","arcs":[[985,-2108,-2109,1564,1563,418,1093,1247]],"properties":{"id":50}},{"type":"Polygon","arcs":[[-2110,1480,1959,-2111,1699,1919]],"properties":{"id":51}},{"type":"Polygon","arcs":[[549,-2112,756,-2113,2103,1100,-2114,-2115]],"properties":{"id":53}},{"type":"Polygon","arcs":[[-2116,487,-2117,1124,-2118,1256,1114]],"properties":{"id":54}},{"type":"MultiPolygon","arcs":[[[-2119,-2120,-2121,-2122,-2123,-2124,-2125,-2126]],[[-2127]],[[-2128,-2129]],[[-2130,-2131]],[[-2132,452]],[[-2133]],[[-2134]],[[-2135,-2136,-2137]]],"properties":{"id":55}},{"type":"Polygon","arcs":[[1394,-2138,524,-2139]],"properties":{"id":81}},{"type":"MultiPolygon","arcs":[[[137,523,-2140,-2141,-2142,-2143,-2144]],[[-2145,148,-2146,-2147,823]],[[-2148,-2149,144,-2150,-2151,-2152,-2153]],[[-2154,139,-2155,-2156,-2157,-2158,-2159]],[[-2160]],[[-2161]],[[-2162,-2163,143,-2164,-2165,-2166]]],"properties":{"id":82}},{"type":"Polygon","arcs":[[1593,2100,1683,2094,-2167,-2168]],"properties":{"id":83}},{"type":"Polygon","arcs":[[1123,1070,2101,1257,2117]],"properties":{"id":84}},{"type":"Polygon","arcs":[[1596,1129,-2169,-2170,-2171]],"properties":{"id":85}},{"type":"MultiPolygon","arcs":[[[-2172,-2173,-2174,-2175,-2176,465]],[[-2177]],[[-2178,-2179,454,-2180,-2181]],[[-2182,-2183]],[[-2184,-2185]],[[2185,2186,2187]],[[2188,2189,2190]],[[-2192,-2193,-2194,-2195,-2196]],[[-2197,1231,-2198,-2199,2199,-2201,-2202,-2203,-2204,-2205,-2206,-2207,1206,-2208,1204,-2209,-2210,-2211,-2212,-2213,-2214,1200]],[[-2215,-2216,-2217,2217,-2219,-2220]],[[-2221,2184]],[[-2222,-2223,-2224,-2225,-2226,-2227,-2228]],[[-2229]],[[-2230]],[[-2231]],[[-2232,-2233,-2234]],[[-2235,2215,-2236]]],"properties":{"id":86}},{"type":"Polygon","arcs":[[1076,1481,1104,-2237,-2238]],"properties":{"id":87}},{"type":"Polygon","arcs":[[1681,2099,1248,1091,51,388,1360,992]],"properties":{"id":88}},{"type":"MultiPolygon","arcs":[[[-2239,-2240,-2241,422,1242]]],"properties":{"id":89}},{"type":"Polygon","arcs":[[1977,-2242,380,1095,-2243]],"properties":{"id":90}},{"type":"Polygon","arcs":[[1155,387,-2244,369,1672,434]],"properties":{"id":91}},{"type":"MultiPolygon","arcs":[[[-2245]],[[-2246,-2247,-2248,-2249,-2250,-2251]],[[-2252,-2253,-2254,-2255,-2256,-2257,-2258,-2259,-2260]],[[-2261]],[[-2262,-2263]],[[2263,-2248,2264,-2250,2265]],[[-2267]],[[-2268,-2269,-2270,-2271]],[[-2272,2253,-2273]],[[-2274,-2275,-2276,-2277]],[[-2278,-2279,-2280,-2281,-2282,-2283,-2284,-2285,-2286,-2287,-2288,-2289,-2290,-2291,-2292,-2293,37,-2294,-2295,-2296,-2297,-2298,-2299,-2300,-2301,-2302,-2303,-2304,-2305,-2306,-2307,-2308,-2309,-2310,-2311,-2312,-2313,-2314,-2315,-2316,-2317,-2318,-2319,-2320,-2321,-2322,2276,-2323,2274,-2324,-2325,-2326,-2327,2327,-2329,-2330,-2328,-2331,-2332,-2333,-2334,-2335]],[[-2336,-2337,-2338,-2339,-2340,-2341]],[[-2342]],[[-2343,-2344,-2345,-2346,-2347]],[[-2348,-2349,-2350,-2351,-2352,-2353,-2354,-2355,-2356,-2357,-2358,2304]],[[-2359,-2360,-2361,-2362,-2363,-2364]],[[-2365,-2366,-2367,-2368,2326,-2369]],[[-2370,-2371,-2372]],[[-2373,-2374,-2375,2298]]],"properties":{"id":92}},{"type":"MultiPolygon","arcs":[[[949,35,-2376,2376,-2378,-2379,-2380,-2381,-2382,1456,-2383,-1457,-2384,1840,-2385,-2386]]],"properties":{"id":93}},{"type":"MultiPolygon","arcs":[[[282,1969,-2387,-2388,-2389,-2390,-2391]],[[-2392,2389]]],"properties":{"id":94}},{"type":"Polygon","arcs":[[-2393,-2394,1515,-2395]],"properties":{"id":95}},{"type":"MultiPolygon","arcs":[[[-2396,-2397,-2398,1906]],[[-2399,-2400,-2401,-2402,-2403]],[[-2404,-2405,-2406,-2407,-2408,-2409]],[[-2410,-2411,-2412,-2413,-2414]],[[-2415,-2416,-2417]],[[1909,-2418,-2419,-2420,-2421,-2422,-2423,-2424,-2425,-2426,-2427,-2428,-2429,-2430,-2431,-2432,-2433,-2434,-2435,-2436,-2437,-2438,-2439,-2440,-2441,-2442,-2443,-2444,-2445,-2446,2406,-2447,2404,-2448,2448,-2450,2415,-2451,-2452,-2453,-2454,-2455,-2456,-2457,-2458,2400,-2459,-2460,231,-2461,2461,-2463,-2464,-2465,-2466,-2467,249,711]],[[-2468,-2469,-2470,-2471,-2472,-2473,-2474]],[[-2475,2432,-2476,2430,-2477,-2478,-2479,-2480,-2481,-2482,-2483,2435,-2484]],[[-2485,-2486,-2487,-2488,-2489,2442]],[[-2490,-2491,2473,-2492,-2493,2469]],[[-2494,2453,-2495,2451]]],"properties":{"id":96}},{"type":"Polygon","arcs":[[2001,1999,1486,-2496,8]],"properties":{"id":97}},{"type":"Polygon","arcs":[[-2497,-2498,-2499,-2500,1970,750,2111,548]],"properties":{"id":98}},{"type":"Polygon","arcs":[[53,1090,1413,-2501,1650,818]],"properties":{"id":99}},{"type":"Polygon","arcs":[[1264,90,1113,2007,782,-2502,1167]],"properties":{"id":100}},{"type":"Polygon","arcs":[[1397,1476,2109,1918,-2503]],"properties":{"id":56}},{"type":"Polygon","arcs":[[950,2385,-2504,-2505,-2506]],"properties":{"id":57}},{"type":"Polygon","arcs":[[1973,-2507,-2508,-2509,1618,752]],"properties":{"id":58}},{"type":"Polygon","arcs":[[-2510,2092,1925,-2511,1643]],"properties":{"id":59}},{"type":"Polygon","arcs":[[1601,-2512,-2513,1645,-2514,-2515,1483]],"properties":{"id":60}},{"type":"Polygon","arcs":[[3,-2516,1463,-2517,1466,1125]],"properties":{"id":61}},{"type":"MultiPolygon","arcs":[[[-2518]],[[1240,-2519,1992,-2520,1989,-2521]],[[-2522]]],"properties":{"id":62}},{"type":"Polygon","arcs":[[2498,-2523,1602,-2524]],"properties":{"id":63}},{"type":"Polygon","arcs":[[1927,-2525,1136,1934,1722]],"properties":{"id":64}},{"type":"MultiPolygon","arcs":[[[-2526,764,-2527,-2528]],[[-2529,-2530,-2531,-2532,-2533,768,-2534,-2535]]],"properties":{"id":65}},{"type":"Polygon","arcs":[[-2536,-2537,-2538,2113,1099,-2539]],"properties":{"id":66}},{"type":"Polygon","arcs":[[2110,1958,1262,-2540,1700]],"properties":{"id":67}},{"type":"Polygon","arcs":[[1102,2105,2006,-2541,1599,1588,-2542]],"properties":{"id":68}},{"type":"Polygon","arcs":[[2004,816,1621,528,1641,2512,-2543]],"properties":{"id":69}},{"type":"Polygon","arcs":[[2508,-2544,813,1156,-2545,1619]],"properties":{"id":70}},{"type":"MultiPolygon","arcs":[[[1675,1378,320,-2546,-2547,-2548,-2549,-2550,-2551,-2552,-2553,1729]],[[-2554,504,693]]],"properties":{"id":71}},{"type":"MultiPolygon","arcs":[[[-2555,2394,1514,-2556,-2557,-2558,-2559,-2560,-2561,-2562,-2563,-2564,-2565,-2566,-2567,-2568,-2569,-2570,-2571,-2572,-2573,-2574,-2575]],[[-2576,-2577,-2578]],[[-2579,-2580,-2581,-2582]],[[-2583,-2584,-2585]],[[-2586,-2587,2570]]],"properties":{"id":72}},{"type":"MultiPolygon","arcs":[[[-2588,-2589,-2590,-2591,-2592,-2593,-2594,-2595,-2596,-2597,-2598,1664,-2599,-2600,-2601,-2602,-2603,1656,-2604,-2605,-2606,-2607,-2608,-2609,-2610,-2611,-2612,-2613,2613,-2615,-2616,1951,-2617,-2618,-2619,-2620,1947,-2621,-2622]],[[-2623]],[[2604,-2624,-2625,-2626,-2627,-2628,-2629,2606,-2630]]],"properties":{"id":75}},{"type":"Polygon","arcs":[[946,1277,1448,-2631,1361]],"properties":{"id":76}},{"type":"Polygon","arcs":[[1271,490,1175,-2632,1405]],"properties":{"id":77}},{"type":"Polygon","arcs":[[1181,-2633,785,287,1411,1562,-2634,1184,-2635]],"properties":{"id":78}},{"type":"Polygon","arcs":[[-2636,1740,-2637,1560,2108,1898]],"properties":{"id":73}},{"type":"Polygon","arcs":[[365,-2638,1103,2541,1587,1267]],"properties":{"id":74}},{"type":"Polygon","arcs":[[361,-2639,1392,-2640,1367,1987]],"properties":{"id":79}},{"type":"Polygon","arcs":[[488,2115,1117,-2641,1176]],"properties":{"id":80}},{"type":"Polygon","arcs":[[386,1725,-2642,370,2243]],"properties":{"id":106}},{"type":"MultiPolygon","arcs":[[[-2643,2256,-2644,-2645,2645,-2647,2293,36,-2648,-2649,-2650,-2651,-2652,-2653,-2654,-2655,-2656]],[[-2657,-2658,-2659]],[[-2660]],[[-2661,-2662,2662,-2664]],[[-2665,-2666,2666,-2668,-2669,543]],[[-2670]],[[-2671]],[[-2672,2373,-2673,2295]],[[-2674,-2675,-2676]],[[-2677,-2678,2344,-2679]]],"properties":{"id":107}},{"type":"Polygon","arcs":[[2005,2542,2511,1600,2540]],"properties":{"id":108}},{"type":"MultiPolygon","arcs":[[[-2680,-2681]],[[-2682]],[[-2683]],[[-2684]],[[-2685,-2686,-2687]],[[-2688]],[[-2689]],[[-2690,2686]],[[-2691]],[[-2692]]],"properties":{"id":109}},{"type":"Polygon","arcs":[[1243,794,1640,328,1270,1082,1402]],"properties":{"id":110}},{"type":"Polygon","arcs":[[2,1704,1985,1464,2515]],"properties":{"id":111}},{"type":"Polygon","arcs":[[686,1923,1375,-2693,1119,1473]],"properties":{"id":112}},{"type":"Polygon","arcs":[[-2694,1138,1472,1978,2242,1094,-2695,373,1401]],"properties":{"id":113}},{"type":"Polygon","arcs":[[1728,-2696,2538,1098,2637,364,2641]],"properties":{"id":114}},{"type":"Polygon","arcs":[[2138,527,1387,786,2015,-2697,1477,1395]],"properties":{"id":115}},{"type":"Polygon","arcs":[[1687,-2698,1933,-2699,-2700]],"properties":{"id":116}},{"type":"Polygon","arcs":[[1984,1269,-2701,1077,2237,-2702,1461]],"properties":{"id":117}},{"type":"Polygon","arcs":[[784,2009,-2703,323,341,334]],"properties":{"id":136}},{"type":"Polygon","arcs":[[2701,2236,1108,1475,1467,2516,1462]],"properties":{"id":137}},{"type":"Polygon","arcs":[[326,1403,348,1706]],"properties":{"id":138}},{"type":"Polygon","arcs":[[1245,1404,324,2702,2008,1111,-1111]],"properties":{"id":139}},{"type":"Polygon","arcs":[[1489,-2704,1365,807,2087,689,835]],"properties":{"id":140}},{"type":"Polygon","arcs":[[1263,1254,1928,1724,92]],"properties":{"id":141}},{"type":"MultiPolygon","arcs":[[[-2705,-2706,-2707,2531,-2708,2529]],[[-2709]],[[-2710]]],"properties":{"id":142}},{"type":"Polygon","arcs":[[1485,1484,2513,1644,2510,1924,684,377,1106]],"properties":{"id":143}},{"type":"MultiPolygon","arcs":[[[-2711,-2712,-2713,-2714,-2715,-2716,-2717,-2718,-2719,-2720,-2721,-2722,-2723,-2724,-2725,-2726,-2727,-2728,-2729,-2730,-2731,-2732,-2733,-2734,-2735,-2736,-2737,-2738,2289,-2739,2287,-2740,-2741,-2742,2283,-2743,-2744,-2745,-2746,-2747,-2748,-2749,-2750,-2751,-2752,-2753,-2754,-2755,2755]],[[-2757,663,-2758,-2759,-2760,-2761,-2762,-2763,-2764,-2765,-2766,-2767,-2768,-2769,-2770,-2771]],[[-2772,-2773,-2774]],[[-2775,-2776,-2777,-2778,-2779,-2780]],[[-2781,2766,-2782,-2783,-2784,-2785,-2786,2769,-2787]],[[-2788,-2789,-2790,2750,-2791]],[[2791,2792,2793]],[[2340,-2795,-2796]],[[-2797,-2798,-2799]],[[-2800,-2801,2747]],[[-2802,-2803,-2804,-2805,-2806,-2807,-2808,-2809,-2810,-2811,1931,1384,-2812,-2813,-2814,-2815,-2816,-2817,-2818,-2819,-2820,-2821,-2822,-2823,-2824,-2825,-2826,-2827,-2828,-2829,-2830,-2831,-2832,-2833,-2834,-2835,-2836,-2837,-2838,-2839,-2840,-2841,-2842,-2843,-2844,-2845,-2846,-2847,-2848,-2849,-2850,-2851,-2852,-2853,-2854,-2855,-2856,-2857,-2858,-2859,-2860,2730,-2861,-2862,2727,-2863,-2864,-2865,-2866,-2867,2721,-2868,-2869,-2870,-2871,2716,-2872,-2873,2713,-2874,-2875,-2876,-2877,-2878,-2879,-2880,-2881,-2882,-2883,-2884,-2885,-2886,2797,-2887,-2888,-2889]],[[-2890,-2891,-2892]],[[-2893]],[[-2894,-2895,-2896,2777]],[[-2897,-2898,-2899,-2900,-2901]],[[-2902]],[[-2903]],[[-2904]],[[-2905]],[[-2906,-2907,-2908,-2909,-2910]],[[-2911,-2912,-2913,-2914]],[[-2915,2915,-2917,-2918]],[[-2919,-2920,-2921,-2922,-2923,-2924,-2925,-2926,-2927]],[[-2928,2345,2677]],[[-2929,2711,-2930]],[[2930,-2892,2931]]],"properties":{"id":144}},{"type":"Polygon","arcs":[[522,831,1955,824,-2933,2139]],"properties":{"id":145}},{"type":"Polygon","arcs":[[309,1359,1720,-2934,1056]],"properties":{"id":146}},{"type":"Polygon","arcs":[[-2935,2166,2093,314,832,520]],"properties":{"id":118}},{"type":"Polygon","arcs":[[-2936,-2937,-2938,-2939,-2940,1382,1381,1677,38,2292,2735,-2941,-2942,-2943,-2944,-2945,-2946,-2947,-2948,-2949,-2950,-2951,-2952,-2953,-2954,-2955,-2956,-2957,-2958,-2959,-2960,-2961,2831,-2962,2829,-2963,-2964,-2965,-2966,-2967,2822,-2968,2820,-2969,-2970]],"properties":{"id":119}},{"type":"Polygon","arcs":[[-2971,1597,2170,-2972]],"properties":{"id":120}},{"type":"Polygon","arcs":[[1604,-2973,979,809,-2974,-2975]],"properties":{"id":121}},{"type":"Polygon","arcs":[[396,539,-2976,518]],"properties":{"id":122}},{"type":"Polygon","arcs":[[2975,538,1594,2167,2934,519]],"properties":{"id":123}},{"type":"Polygon","arcs":[[2088,802,1419,-2977]],"properties":{"id":124}},{"type":"Polygon","arcs":[[2016,789,-2978,1929,1252,1916,-2979]],"properties":{"id":125}},{"type":"MultiPolygon","arcs":[[[-2980,1952,2615,-2981,-2982,-2983,2983,-2985,2121,-2986,2119]]],"properties":{"id":126}},{"type":"Polygon","arcs":[[1590,1598,1073,2700]],"properties":{"id":127}},{"type":"Polygon","arcs":[[1686,356,-2987,359,1059,1930,2697]],"properties":{"id":128}},{"type":"Polygon","arcs":[[2003,2104,2112,755,814]],"properties":{"id":129}},{"type":"Polygon","arcs":[[2537,-2988,545,2114]],"properties":{"id":130}},{"type":"MultiPolygon","arcs":[[[-2989]],[[-2990,-2991,-2992,-2993,-2994,-2995,-2996,-2997,-2998,534,394,769,2532,-2999,2999]]],"properties":{"id":131}},{"type":"Polygon","arcs":[[1620,2544,1161,530]],"properties":{"id":132}},{"type":"Polygon","arcs":[[1575,1935,988,2014,2098,1956]],"properties":{"id":133}},{"type":"Polygon","arcs":[[1133,836,691,499,1637,1678]],"properties":{"id":134}},{"type":"Polygon","arcs":[[2097,1410,-3001,1260]],"properties":{"id":135}},{"type":"Polygon","arcs":[[343,1709,1647,-3002,-3003]],"properties":{"id":101}},{"type":"Polygon","arcs":[[-3004,-3005,-3006,-3007,-3008,2392,2554,-3009,1961,1057,2933]],"properties":{"id":102}},{"type":"Polygon","arcs":[[1998,1612,1366,2703,1488]],"properties":{"id":103}},{"type":"Polygon","arcs":[[-3010,2698,1932,632]],"properties":{"id":105}},{"type":"Polygon","arcs":[[1642,532,1160,2090,2509]],"properties":{"id":183}},{"type":"Polygon","arcs":[[-3011,-3012,1824,-3013,1822,-3014,-3015,-3016,-3017,-3018,-3019,-3020,-3021,-3022,-3023,-3024,-3025,-3026,-3027,-3028,-3029,-3030,-3031,-3032,-3033,-3034,-3035,-3036,1792,-3037,-3038,1789,-3039,-3040,-3041,-3042,-3043,-3044,-3045,-3046,-3047,-3048,-3049,-3050,1771,-3051,-3052,-3053,-3054,-3055,-3056,-3057,1873,2107,984,923]],"properties":{"id":189}},{"type":"Polygon","arcs":[[547,-3058,2496]],"properties":{"id":190}},{"type":"Polygon","arcs":[[495,1595,2970,-3059,1408,2096]],"properties":{"id":191}},{"type":"MultiPolygon","arcs":[[[-3060,15]]],"properties":{"id":196}},{"type":"MultiPolygon","arcs":[[[-3061,-3062,-3063,-3064,-3065,-3066,-3067]],[[-3068,-3069]],[[-3070]],[[-3071,3068]],[[-3072,-3073,-3074,-3075]]],"properties":{"id":197}},{"type":"Polygon","arcs":[[1168,2501,781,2632,1180,1492]],"properties":{"id":198}},{"type":"Polygon","arcs":[[-3076,1182,2634,1183,2633,1561,2636,1739]],"properties":{"id":199}},{"type":"Polygon","arcs":[[1972,1605,2974,-3077,2506]],"properties":{"id":200}},{"type":"MultiPolygon","arcs":[[[-3078]],[[-3079,3008,2574,-3080,-3081,1966,-3082,-3083]],[[-3084]]],"properties":{"id":201}},{"type":"Polygon","arcs":[[430,2089,2976,1418,1684,1067]],"properties":{"id":202}},{"type":"Polygon","arcs":[[374,2694,1097,-3085,706]],"properties":{"id":203}},{"type":"Polygon","arcs":[[436,1674,1444,513,1705,1415,800,2010]],"properties":{"id":204}},{"type":"MultiPolygon","arcs":[[[-3086,1688,2699,3009,631,-3087,-3088,-3089,627,-3090,625,-3091,-3092,-3093,-3094,-3095,-3096,-3097,-3098,-3099,-3100,-3101,-3102,-3103,-3104,615,-3105,613,-3106,-3107,-3108,609,-3109,606,-3110,-3111,-3112,-3113,600,-3114,-3115,597,-3116,595,-3117,593,-3118,591,-3119,-3120,-3121,587,-3122,-3123,-3124,583,-3125,581,-3126,-3127,-3128,-3129,576,-3130,-3131,-3132,-3133,-3134,570,-3135,-3136,-3137,-3138,565,-3139,-3140,-3141,-3142,-3143,-3144,-3145,-3146,-3147,-3148,-3149,-3150,-3151,-3152,-3153]],[[-3154,-3155,-3156,-3157,-3158,-3159,-3160,-3161,-3162,-3163,-3164,-3165,-3166,-3167,-3168,-3169,-3170,-3171,650]],[[-3172,-3173]],[[-3174,-3175,-3176,-3177,-3178,-3179]],[[-3180]],[[-3181,-3182,-3183,-3184,-3185,-3186]],[[-3187,-3188,-3189,-3190,-3191,-3192,-3193]],[[653,-3194,-3195,-3196]],[[-3197,-3198,-3199,-3200,-3201,-3202,552,-3203,-3204,-3205,-3206,-3207,-3208,3181,-3209,-3210,-3211,-3212,-3213,-3214,-3215,-3216,-3217]],[[-3218,-3219,-3220]],[[-3221]],[[-3222,-3223,-3224,-3225]],[[-3226,-3227,-3228,-3229,-3230]],[[-3231,-3232,-3233]],[[-3234,-3235,-3236,-3237,-3238,3178]],[[-3239,-3240,-3241,-3242,3210,-3243]],[[-3223,3243,3244,3245]]],"properties":{"id":205}},{"type":"MultiPolygon","arcs":[[[-3247,-3248,-3249,-3250,1691,-3251,1689,3085]],[[-3252,-3253,-3254,-3255,-3256,-3257,-3258,3156,-3259,3259]],[[-3261,-3262,-3263]],[[-3264,3252,-3265]],[[-3266,3154]],[[-3267,3267]],[[-3269,3254,-3270,-3271,3256]],[[3218,-3272,-3273,-3274,-3275]]],"properties":{"id":206}},{"type":"Polygon","arcs":[[1163,1147,1493,1178,3075,1738,2102,1736]],"properties":{"id":207}},{"type":"Polygon","arcs":[[1412,290,336,344,3002,3001,1646,2500]],"properties":{"id":208}},{"type":"Polygon","arcs":[[2523,1607,1971,2499]],"properties":{"id":209}},{"type":"Polygon","arcs":[[10,-3276,1131,2524,1926,2977,788]],"properties":{"id":147}},{"type":"Polygon","arcs":[[3076,2973,808,2543,2507]],"properties":{"id":148}},{"type":"Polygon","arcs":[[363,1986,1060]],"properties":{"id":149}},{"type":"Polygon","arcs":[[-3277,1139,2693,1400,2091,1158]],"properties":{"id":150}},{"type":"Polygon","arcs":[[1638,502,1122,2116,486,2012]],"properties":{"id":151}},{"type":"Polygon","arcs":[[811,983,1140,3276,1157]],"properties":{"id":152}},{"type":"Polygon","arcs":[[9,2495,1490,838,1132,3275]],"properties":{"id":153}},{"type":"Polygon","arcs":[[1673,367,1266,1983,1442]],"properties":{"id":154}},{"type":"Polygon","arcs":[[2106,1702,-3278,1144,1711,1994,1616,1635]],"properties":{"id":155}},{"type":"Polygon","arcs":[[1727,-3279,2535,2695]],"properties":{"id":156}},{"type":"Polygon","arcs":[[1701,2539,1170,1491,1145,3277]],"properties":{"id":157}},{"type":"Polygon","arcs":[[1478,2696,2017,2978,1915,1960]],"properties":{"id":158}},{"type":"Polygon","arcs":[[1128,1975,-3280,2168]],"properties":{"id":159}},{"type":"Polygon","arcs":[[2639,1398,2502,1917,1368]],"properties":{"id":160}}]}},"arcs":[[[3103,5736],[1,-7]],[[2961,5992],[119,25],[23,-281]],[[2746,5944],[215,48]],[[2767,5590],[-7,80],[13,3],[-27,271]],[[2854,5562],[-10,9],[-3,25],[-10,-5],[-37,6],[-7,-7],[-20,0]],[[3104,5729],[-7,-12],[-41,-41],[6,-10],[-6,-42],[5,-24],[-1,-11],[3,-45],[-12,-7],[-11,12],[-6,13],[-24,-2],[-11,-8],[-13,8],[-15,-6],[-7,-10],[-13,-3],[-11,11],[-12,-1],[-20,-13],[-14,0],[-12,7],[-12,-1],[-16,18]],[[4832,8512],[307,-200]],[[4833,8466],[-1,46]],[[4867,8023],[-6,-7],[-22,42],[6,207],[-7,66],[-5,135]],[[5034,7839],[-25,9],[-25,103],[-68,132],[-49,-60]],[[5099,7817],[-65,22]],[[5139,8312],[-37,-437],[-3,-58]],[[6945,7647],[28,34],[13,-1],[4,-8],[20,22],[-12,17],[14,-2]],[[7008,7392],[-39,223],[-24,32]],[[7145,7366],[-2,14],[-16,4],[3,-9],[-22,-36],[-26,-36],[-13,4],[-4,10],[-9,0],[-10,14],[-20,16],[0,8],[11,7],[1,12],[-9,14],[-17,8],[-4,-4]],[[7161,7372],[-8,3],[-8,-9]],[[7196,7431],[-12,-16],[-4,-16],[-5,5],[-9,-12],[-5,-20]],[[7160,7583],[33,-141],[3,-11]],[[7116,7607],[44,-24]],[[7012,7709],[83,-92],[21,-10]],[[6877,8065],[3,-29]],[[6780,7977],[17,38],[21,72],[11,-5],[11,-13],[15,16],[7,-1],[3,-11],[9,1],[3,-9]],[[6769,7825],[11,152]],[[6877,7668],[4,12],[-6,17],[1,16],[-9,11],[4,8],[-5,10],[-2,28],[6,10],[-6,17],[-46,-14],[-9,7],[-3,-6],[-16,2],[-21,39]],[[6945,7647],[-68,21]],[[6880,8036],[9,-87],[73,-172],[50,-68]],[[6906,7300],[16,-40],[-21,-86]],[[6751,7294],[-2,-31],[157,37]],[[6742,7298],[9,-4]],[[6768,7106],[-8,10],[-7,2],[-12,17],[-10,53],[4,15],[7,95]],[[6770,7107],[-2,-1]],[[6771,7106],[-1,1]],[[6773,7102],[-2,4]],[[6775,7103],[-2,-1]],[[6778,7116],[-3,41],[0,-54]],[[6901,7174],[-63,-8],[-26,-43],[-12,-4],[-22,-3]],[[7678,8253],[15,-58],[18,-11],[29,-23],[18,-17],[4,-36]],[[7525,8225],[76,19],[77,9]],[[7488,8213],[37,12]],[[7501,8157],[-13,56]],[[7547,8053],[-2,9],[-36,72],[-8,23]],[[7548,8052],[-1,1]],[[7548,8050],[0,2]],[[7547,8047],[1,3]],[[7547,8045],[0,2]],[[7547,8040],[0,5]],[[7547,8039],[0,1]],[[7680,8097],[3,-15],[-9,12],[-8,-2],[-7,-15],[-10,0],[-12,-14],[-6,-24],[-5,1],[3,-16],[-15,2],[-5,8],[-2,-26],[-16,-2],[6,20],[-5,19],[13,8],[-4,12],[18,16],[-10,1],[3,9],[-9,-3],[-7,-26],[-6,-5],[-11,-21],[-13,6],[-12,-16],[-7,0],[0,13]],[[7680,8098],[0,-1]],[[7762,8108],[-10,6],[-9,-6],[-3,-22],[-17,0],[-4,15],[5,5],[0,17],[-5,5],[-10,-2],[2,-24],[-10,12],[-6,-12],[-7,3],[-8,-7]],[[7748,8069],[-1,-16],[-7,0],[8,16]],[[6517,4958],[29,-296]],[[6490,4934],[27,24]],[[6184,4671],[306,263]],[[6238,4506],[-54,165]],[[6265,4426],[-27,80]],[[6546,4662],[-67,-63],[-55,-40],[-159,-133]],[[7293,7627],[10,15],[14,13],[8,-4],[-3,20],[8,8],[0,11],[7,11],[7,25],[5,3],[-1,14],[6,9],[1,15],[13,-2],[5,6],[20,-12],[9,-10],[10,8],[4,-14],[-12,-3],[0,-18],[5,-7],[0,-20],[9,3],[-9,-11],[-3,-17],[-14,-16],[-7,-37],[-6,-4],[-2,-16],[5,-7],[22,3],[4,34],[21,22],[1,15],[6,11],[7,-5],[-8,-34],[0,-38],[-2,-13],[-5,1],[-11,-18],[-8,15],[-17,9],[-17,-9],[-21,-20],[0,-8],[-11,-18],[-11,1],[-1,-9],[-9,-5],[-10,-13]],[[7293,7617],[0,10]],[[7280,7597],[13,20]],[[7257,7547],[14,8],[10,17],[-1,25]],[[7312,7511],[-55,36]],[[7414,7733],[2,-15],[-7,7],[5,8]],[[7612,3140],[-3,-23],[-4,-42],[7,-34],[15,-32],[-2,-34]],[[7558,2828],[6,111],[14,26],[-6,13],[1,51],[20,26],[-5,15],[3,42],[19,37],[2,-9]],[[7651,2627],[-56,-17],[-47,77],[10,141]],[[7651,2627],[0,0]],[[7654,2627],[-3,0]],[[7660,2628],[-6,-1]],[[7719,2948],[4,4],[14,-22],[5,2],[5,-14],[6,3],[0,-18],[7,-12],[6,-22],[6,-5],[4,-18],[17,-11],[7,-16],[-6,-39],[-8,0],[-11,15],[-5,-4],[-8,12],[-12,2],[7,-8],[10,-33],[0,-7],[10,-20],[5,1],[11,-17],[-9,-18],[5,-21],[-2,-11],[7,-18],[-6,-12],[6,-17],[-14,7],[-1,17],[-12,14],[-12,30],[-20,14],[-11,15],[-5,16],[8,-2],[19,-33],[5,13],[-11,22],[-2,17],[-9,10],[-8,21],[-12,16],[4,-27],[-25,32],[-1,12],[-8,15],[6,20],[-5,0],[0,20],[-6,18],[-11,7],[8,-11],[4,-28],[-1,-14],[-13,-1],[-10,25],[-1,-27],[6,-30],[8,-13],[1,-9],[6,-1],[9,-25],[3,-20],[-4,-4],[0,-20],[8,-5],[2,-16],[-9,1],[5,-20],[8,2],[-3,-19],[13,-19],[8,-20],[1,-25],[-12,11],[-6,23],[-14,13],[-14,0],[-3,-9],[-9,9],[-3,-12],[9,-6]],[[7668,3023],[10,0],[2,-13],[14,-16],[7,1],[3,-9],[0,-20],[10,-24],[5,6]],[[7667,3022],[1,1]],[[7666,3016],[1,6]],[[7660,3005],[9,4],[-3,7]],[[7656,3002],[4,3]],[[7656,3002],[0,0]],[[7651,2987],[5,15]],[[7646,2981],[5,6]],[[7646,2978],[0,3]],[[7636,2971],[10,7]],[[7631,2973],[5,-2]],[[7630,2974],[1,-1]],[[7630,2980],[0,-6]],[[7629,2979],[1,1]],[[7627,2978],[2,1]],[[7627,2976],[0,2]],[[7626,2975],[1,1]],[[7625,2975],[1,0]],[[7625,2975],[0,0]],[[7701,2764],[5,-7],[-9,-7],[-4,13],[8,1]],[[5639,6735],[-10,-140]],[[5662,6903],[-23,-168]],[[5308,6822],[354,81]],[[5248,6719],[41,43],[19,60]],[[5357,6478],[-19,42],[-14,20],[-13,36],[-9,19],[4,10],[-1,31],[-21,13],[-21,27],[-4,12],[-14,26],[3,5]],[[5629,6595],[-58,-14],[-23,15],[-96,-24],[-50,-36],[-45,-58]],[[7788,5526],[12,-15]],[[7788,5526],[0,0]],[[7788,5524],[0,2]],[[7788,5522],[0,2]],[[7794,5510],[-6,12]],[[7796,5510],[-2,0]],[[7796,5511],[0,-1]],[[7800,5511],[-4,0]],[[7801,5509],[-1,2]],[[7800,5511],[1,-2]],[[7808,5522],[6,-9],[-11,5],[5,4]],[[7758,5561],[3,-3]],[[7757,5558],[1,3]],[[7756,5556],[1,2]],[[7757,5554],[-1,2]],[[7758,5555],[-1,-1]],[[7759,5556],[-1,-1]],[[7761,5558],[-2,-2]],[[7634,5551],[4,13],[7,-12],[6,13],[9,-6],[10,20],[0,13],[10,9],[10,-21],[19,-4],[5,7],[13,-14],[11,8],[0,19],[5,3],[10,-10],[8,-1]],[[7634,5548],[0,3]],[[7580,5490],[3,18],[8,5],[1,37],[9,-1],[10,-10],[10,2],[4,-7],[7,3],[2,11]],[[7578,5485],[2,5]],[[7576,5481],[2,4]],[[7576,5480],[0,1]],[[7590,5455],[-2,10],[-12,15]],[[7590,5443],[0,12]],[[7592,5391],[6,8],[-3,18],[0,19],[-5,7]],[[7601,5380],[-1,9],[-8,2]],[[7601,5378],[0,2]],[[7601,5372],[0,6]],[[7600,5366],[1,6]],[[7601,5364],[-1,2]],[[7603,5348],[-2,16]],[[7601,5343],[2,5]],[[7606,5329],[-5,14]],[[7606,5327],[0,2]],[[7606,5318],[0,9]],[[7608,5310],[-2,8]],[[7608,5310],[0,0]],[[7607,5307],[1,3]],[[7683,5188],[-35,38],[8,39],[-18,1],[-2,26],[-26,-8],[-4,2],[6,13],[-5,8]],[[7882,4959],[-11,-9],[-37,56],[-7,13],[0,10],[-144,159]],[[7883,4961],[-1,-2]],[[7901,4979],[-18,-18]],[[7901,4980],[0,-1]],[[7908,4986],[-7,-6]],[[7912,4990],[-4,-4]],[[7920,4998],[-8,-8]],[[7942,5019],[-22,-21]],[[7943,5020],[-1,-1]],[[7943,5021],[0,-1]],[[7944,5021],[-1,0]],[[7966,5042],[-22,-21]],[[7966,5132],[-7,-7],[9,-23],[0,-10],[7,-14],[-6,-8],[-3,-28]],[[7967,5131],[-1,1]],[[7968,5129],[-1,2]],[[7876,5370],[20,-43],[19,-51],[19,-42],[29,-43],[12,-27],[8,-4],[0,-9],[7,-16],[2,-39],[-12,-15],[-6,6],[-2,45],[-4,-3]],[[7868,5363],[8,7]],[[7874,5303],[7,-13],[-7,-5],[0,-18],[-5,-8],[0,-16],[-10,-8],[-11,6],[1,-10],[-14,6],[-5,-7],[4,-21],[-1,-11],[-6,-5],[3,-7],[5,24],[-5,21],[5,7],[13,-9],[6,10],[5,-5],[10,7],[0,11],[9,22],[-2,10],[6,5],[-5,11],[8,16],[-2,8],[-9,7],[2,20],[-8,12]],[[7874,5304],[0,-1]],[[7876,5306],[-2,-2]],[[7877,5308],[-1,-2]],[[7879,5308],[-2,0]],[[7862,5358],[5,2],[5,-11],[1,-22],[10,-10],[-4,-9]],[[7857,5359],[5,-1]],[[7859,5361],[-2,-2]],[[7859,5368],[0,-7]],[[7805,5483],[24,-25],[8,-20],[6,-24],[6,-2],[10,-44]],[[7805,5481],[0,2]],[[7804,5480],[1,1]],[[7801,5479],[3,1]],[[7800,5479],[1,0]],[[7799,5480],[1,-1]],[[7798,5482],[1,-2]],[[7796,5485],[2,-3]],[[7810,5503],[0,-14],[-6,3],[-8,-7]],[[7809,5505],[1,-2]],[[7808,5509],[1,-4]],[[7801,5509],[7,0]],[[7800,5511],[1,-2]],[[7796,5511],[4,0]],[[7796,5510],[0,1]],[[7788,5522],[6,-12]],[[7788,5526],[0,-4]],[[7772,5518],[16,8]],[[7771,5517],[1,1]],[[7769,5519],[2,-2]],[[7770,5522],[-1,-3]],[[7770,5523],[0,-1]],[[7757,5558],[1,19],[6,-5],[3,11],[5,-2],[13,-21],[-1,-22],[-5,-14],[-9,6],[-8,-6],[5,-13],[3,12]],[[7758,5561],[-1,-3]],[[7759,5562],[-1,-1]],[[7760,5561],[-1,1]],[[7761,5558],[-1,3]],[[7759,5556],[2,2]],[[7758,5555],[1,1]],[[7757,5554],[1,1]],[[7756,5556],[1,-2]],[[7761,5586],[5,-11],[-7,4],[-6,-17],[3,-6]],[[7761,5586],[0,2]],[[7859,5368],[0,16],[8,-23],[-5,-3]],[[7859,5361],[0,7]],[[7857,5359],[2,2]],[[7862,5358],[-5,1]],[[7808,5509],[2,-6]],[[7809,5505],[-1,4]],[[7810,5503],[-1,2]],[[7770,5523],[2,-5]],[[7769,5519],[1,3]],[[7771,5517],[-2,2]],[[7772,5518],[-1,-1]],[[7772,5518],[0,0]],[[7968,5129],[-2,3]],[[7967,5131],[1,-2]],[[7966,5132],[1,-1]],[[7798,5486],[3,-6]],[[7799,5483],[-1,3]],[[7799,5482],[0,1]],[[7801,5480],[-2,2]],[[7805,5481],[-1,-1]],[[7805,5483],[0,-2]],[[7804,5480],[1,3]],[[7879,5308],[-5,-5]],[[7876,5306],[1,2]],[[7874,5304],[2,2]],[[7801,5479],[-1,0]],[[7801,5480],[0,-1]],[[7799,5480],[2,0]],[[7799,5482],[0,-2]],[[7798,5486],[1,-3]],[[7796,5485],[2,1]],[[7798,5482],[-2,3]],[[7799,5480],[-1,2]],[[7800,5479],[-1,1]],[[8362,1977],[4,-6],[2,20],[6,3],[0,-14],[4,0],[-4,-19],[-10,-18],[-7,-23],[0,13],[6,16],[0,15],[-4,14]],[[8359,1978],[3,-1]],[[8496,2079],[3,-3]],[[8496,2075],[0,4]],[[8497,2069],[-1,6]],[[8499,2073],[-2,-4]],[[8499,2076],[0,-3]],[[8359,1881],[2,-5]],[[8359,1879],[0,2]],[[8359,1876],[0,3]],[[8359,1874],[0,2]],[[8360,1874],[-1,0]],[[8360,1875],[0,-1]],[[8361,1876],[-1,-1]],[[8360,1872],[0,2]],[[8361,1872],[-1,0]],[[8361,1876],[0,-4]],[[8360,1875],[1,1]],[[8288,2395],[10,25],[14,16],[22,40],[9,34],[9,49],[2,27],[6,35],[6,12],[39,-33],[10,12],[-1,27],[-8,7],[-1,33],[53,10],[8,-15],[2,-33],[-3,-2],[-17,-66],[5,-30],[14,-7],[11,30],[1,7],[35,-10]],[[8387,2046],[7,26],[12,59],[-77,37],[-24,164],[-17,63]],[[8386,2045],[1,1]],[[8386,2042],[0,3]],[[8408,2012],[-22,-34],[1,-14],[-6,-17],[-13,-14],[0,11],[19,46],[8,35],[-8,7],[-1,10]],[[8362,1879],[13,9],[-4,-12],[10,2],[1,17],[-6,4],[-11,-7],[-6,-9],[1,36],[21,18],[6,14],[5,20],[7,3],[0,21],[9,-5],[-2,-16],[-5,-8],[8,-13],[7,4],[3,26],[-7,-5],[0,24],[-4,10]],[[8362,1878],[0,1]],[[8361,1872],[1,6]],[[8360,1872],[1,0]],[[8359,1874],[1,-2]],[[8359,1879],[0,-3]],[[8522,2042],[13,34],[2,20],[2,-16],[-19,-47],[0,-9],[-22,-50],[-1,-4],[-30,-54],[-27,-28],[-10,-3],[-10,-9],[-20,0],[-65,-19],[-9,-8],[-1,16],[7,9],[16,-5],[11,12]],[[8499,2076],[4,7],[7,-24],[12,-17]],[[8499,2075],[0,1]],[[8499,2075],[0,0]],[[8499,2073],[0,2]],[[8499,2073],[0,0]],[[8497,2069],[2,4]],[[8496,2075],[1,-6]],[[8497,2134],[-9,-7],[-3,-13],[-10,2],[2,-13],[-6,-14],[0,-14],[15,7],[-3,22],[16,-1],[5,-13],[-8,-11]],[[8497,2134],[0,1]],[[8539,2274],[-10,3],[-7,-21],[-6,-2],[-2,-28],[-10,-16],[1,-18],[-9,-9],[-2,-32],[-10,6],[-6,26],[4,6],[-8,12],[0,29],[-6,16],[0,-13],[5,-7],[-2,-17],[2,-17],[4,-3],[1,-29],[16,-18],[3,-7]],[[8539,2276],[0,-2]],[[8542,2287],[-5,0],[2,-11]],[[8542,2288],[0,-1]],[[8541,2292],[1,-4]],[[8541,2298],[0,-6]],[[8541,2298],[0,0]],[[8541,2300],[0,-2]],[[8542,2300],[-1,0]],[[8514,2563],[21,-44],[14,-40],[-15,-49],[-4,-3],[2,-18],[-5,1],[-11,-9],[-22,-4],[-4,-17],[9,-10],[33,16],[3,-17],[3,-37],[5,-17],[-1,-15]],[[8522,2042],[-10,20],[-1,11],[-6,7],[4,15],[14,-39],[-1,-14]],[[7373,2764],[62,10],[-4,8],[2,15],[125,31]],[[7393,2648],[-20,116]],[[7437,2328],[-7,99],[-28,170],[-9,51]],[[7651,2627],[7,-3],[2,-18],[13,-26],[2,-11],[-12,-2],[0,-11],[12,-26],[0,-45],[-14,-11],[2,-21],[-8,3],[-9,-13],[0,-12],[10,-10],[3,-17],[-13,24],[-5,-21],[-14,30],[0,23],[3,2],[2,-22],[16,17],[-2,7],[-7,7],[-22,-4],[-6,5],[-19,-1],[-4,6],[-11,-3],[-8,-10],[-26,41],[-8,6],[-10,-2],[-4,-11],[-5,8],[-17,6],[-4,7],[-5,-30],[6,12],[10,7],[-11,-23],[-9,-25],[-4,21],[-7,-3],[7,-30],[16,6],[1,-10],[12,-9],[8,-11],[14,-3],[12,-11],[7,-27],[6,-32],[-4,-19],[-22,-27],[-11,10],[-12,30],[9,4],[-5,19],[-8,-1],[3,-13],[-12,6],[-1,7],[-4,-15],[5,-8],[0,-16],[15,-17],[-6,-8],[0,12],[-10,14],[-9,-4],[-10,-17],[-18,-4],[-13,10],[-8,14]],[[5693,7328],[94,-82]],[[5677,7037],[-23,210],[39,81]],[[5787,7246],[-34,-182],[-76,-27]],[[6043,5895],[187,3],[8,-37],[-3,-55]],[[6027,5806],[-7,15],[0,10],[-10,4],[-5,10],[1,26],[4,14],[9,11],[19,-10],[5,9]],[[6040,5494],[0,8],[16,21],[-2,15],[5,10],[0,47],[-3,5],[7,8],[-6,10],[9,7],[6,11],[11,-4],[2,9],[13,2],[-2,12],[2,16],[-12,18],[-7,1],[-2,16],[-9,4],[3,9],[-7,3],[-5,13],[-7,-3],[-1,15],[-8,2],[-5,25],[6,4],[-6,12],[-8,1],[-3,15]],[[6140,5494],[-100,0]],[[6235,5806],[-17,-115],[1,-201],[-79,4]],[[6648,7351],[40,-28],[54,-25]],[[6564,7242],[57,0],[6,20],[13,4],[-5,28],[8,28],[5,29]],[[6611,7116],[-15,2],[-6,8],[-8,18],[2,13],[-7,6],[-5,16],[-8,63]],[[6722,7020],[-10,8],[-10,-26],[-34,24],[-9,17],[0,13],[-24,19],[3,6],[-13,9],[3,9],[-9,7],[11,29],[-15,-7],[-4,-12]],[[6742,7041],[-1,-6],[-12,-2],[-9,14],[0,8],[-17,19],[-5,29],[0,-23],[5,-12],[14,-16],[0,-19],[5,-13]],[[6775,7077],[4,-12],[-4,-25],[-10,-19],[-23,20]],[[6775,7082],[0,-5]],[[6775,7103],[0,-21]],[[6773,7102],[2,1]],[[6772,7103],[1,-1]],[[6771,7104],[1,-1]],[[6771,7106],[0,-2]],[[6770,7107],[1,-1]],[[6768,7106],[2,1]],[[6991,4160],[4,3],[-2,19],[21,-10],[5,1],[6,20],[0,15],[7,4],[14,14],[9,-6],[9,3],[14,-8],[7,-11],[15,-5],[6,-9],[27,0],[9,-8],[19,50],[6,27],[-1,25],[1,22],[8,28],[11,14],[19,-4],[1,17],[21,-9],[0,10],[13,10],[-2,12],[7,2]],[[7010,4018],[6,20],[-4,37],[-6,-5],[-8,10],[0,40],[5,14],[-12,26]],[[7026,4015],[-16,3]],[[7283,3337],[-7,126],[14,75],[0,8],[-71,142],[4,22],[-1,20],[8,5],[5,14],[-5,3],[2,11],[-8,17],[11,20],[-10,13],[-1,28],[-7,12],[-123,104],[-4,18],[-8,13],[-26,0],[-6,15],[-18,22],[-6,-10]],[[7631,3431],[-317,-87],[-31,-7]],[[7635,3534],[20,-97],[-24,-6]],[[7465,4153],[41,-86],[37,-233],[-26,-10],[8,-31],[20,-38],[13,-6],[10,-24],[1,-27],[-3,-22],[13,-28],[-2,-12],[6,-9],[-1,-29],[6,-3],[5,-13],[5,4],[10,-5],[0,-9],[11,1],[11,-5],[5,-34]],[[7378,4318],[43,-75],[44,-90]],[[7245,4386],[110,-109],[23,41]],[[6913,8501],[102,-120],[26,-4]],[[6813,8301],[11,114],[89,86]],[[6877,8065],[21,24],[-16,69],[-71,126],[2,17]],[[6968,8024],[-2,11],[-14,-7],[-18,23],[-11,1],[-5,11],[-23,0],[-1,-29],[-14,2]],[[6969,8024],[-1,0]],[[7073,8246],[-27,-31],[-32,-17],[-2,-13],[-12,-24],[0,-28],[3,-3],[-8,-15],[0,-25],[-12,-25],[0,-13],[-14,-16],[0,-12]],[[7041,8377],[-17,-28],[-8,-30],[8,-15],[1,-13],[16,-11],[7,-13],[8,-2],[17,-19]],[[5655,5538],[-1,-155]],[[5586,5749],[14,-151],[13,-3],[42,-2],[0,-55]],[[5439,5695],[44,44],[92,-5],[11,15]],[[5424,5547],[-8,15],[-1,33],[4,11],[7,-5],[-9,29],[6,43],[12,-3],[1,-7],[14,12],[-4,11],[-7,9]],[[5590,5293],[-11,10],[-5,19],[-8,16],[-26,1],[-27,44],[-25,41],[-5,2],[-66,91],[7,11],[0,19]],[[5654,5383],[-34,-42],[-30,-48]],[[4945,6035],[27,-284]],[[4768,5865],[177,170]],[[4671,5586],[99,274],[-2,5]],[[4676,5468],[14,64],[-16,5],[-10,-7],[-1,14],[25,16],[-1,36],[-16,-10]],[[4972,5751],[-29,-29],[1,-20],[-19,-26],[-10,19],[-239,-227]],[[5914,5753],[18,9],[45,14],[50,30]],[[5866,5672],[-6,59],[54,22]],[[5939,5408],[0,2],[-73,262]],[[6040,5494],[-15,-20],[-10,-35],[-28,-37],[-5,4],[-5,-15],[-6,3],[-5,-7],[-1,11],[-12,-4],[-14,14]],[[5417,4669],[-77,-4]],[[5416,4973],[1,-304]],[[5338,4971],[78,2]],[[5340,4665],[-2,306]],[[5655,5538],[15,1],[24,8],[55,102],[39,27],[18,-1],[0,-7],[60,4]],[[5757,5404],[-4,6],[-52,-13],[-47,-14]],[[5927,5393],[-7,3],[-1,10],[-39,13],[-6,10],[-9,4],[-4,-12],[-13,-20],[-16,-3],[-4,14],[2,13],[-11,-11],[-4,8],[4,8],[-12,1],[-14,-7],[-5,6],[-5,-6],[-8,-23],[-10,5],[-8,-2]],[[5939,5408],[-11,1],[-1,-16]],[[6830,7489],[76,-189]],[[6761,7477],[24,-14],[23,6],[0,10],[22,10]],[[6751,7294],[8,108],[2,75]],[[5395,5450],[6,2],[23,-59],[14,-27],[6,-5],[10,-31],[15,-13],[15,-31],[10,-28],[18,-42],[15,-13],[6,-12],[15,-2],[21,16],[26,8]],[[5336,5324],[52,86],[11,21],[-4,19]],[[5336,5279],[0,45]],[[5338,4971],[-2,308]],[[5599,4978],[-183,-5]],[[5595,5213],[8,-12],[3,-11],[-7,-35],[0,-177]],[[6956,9853],[15,-23],[55,-89],[29,-136]],[[6822,9669],[24,94],[38,65],[72,25]],[[6972,9531],[-150,138]],[[7055,9605],[-7,8],[-19,5],[-18,-5],[-18,-12],[-8,0],[-11,-9],[-7,-20],[0,-21],[5,-20]],[[6654,9105],[-3,-14],[-14,-31],[-9,-15],[-3,-13],[-22,-47]],[[6469,9428],[139,-199],[8,-29],[11,-31],[13,-17],[13,-35],[1,-12]],[[6269,9075],[27,37],[22,14],[36,10],[117,-55],[-13,327],[11,20]],[[6316,8666],[-1,11],[-46,398]],[[6451,8830],[-17,14],[-19,2],[-29,14],[-13,-2],[-11,-16],[-9,-30],[-2,-46],[-11,-46],[-12,-35],[-12,-19]],[[6603,8985],[-97,5],[-5,5],[-3,-9],[-53,-68],[6,-88]],[[2613,8140],[-5,16],[0,38],[-9,19],[4,25],[18,17],[7,21],[13,24],[27,37],[12,8],[6,-1]],[[2669,7700],[5,14],[0,12],[-5,19],[-22,43],[-6,25],[-4,33],[0,16],[5,23],[10,34],[2,11],[21,66],[-1,51],[-3,17],[-7,25],[-2,22],[-10,17],[-26,17],[-13,-5]],[[2768,7721],[-99,-21]],[[2939,7755],[-171,-34]],[[2923,8124],[7,-18],[-2,-21],[12,-44],[7,-10],[9,-19],[3,-24],[-20,-233]],[[2839,8252],[1,-22],[4,-9],[-8,-13],[0,-24],[-17,-34],[7,-8],[22,8],[9,-13],[27,0],[15,-29],[13,2],[11,14]],[[2686,8344],[0,-11],[19,-36],[0,-36],[10,-14],[10,4],[27,24],[11,16],[10,5],[18,-1],[24,-7],[1,-18],[14,-23],[9,5]],[[972,5857],[-2,-112]],[[712,6138],[165,-176],[95,-105]],[[617,5718],[-3,71],[3,103],[95,246]],[[901,5594],[-107,-29],[-60,126],[-69,-15],[-10,15],[-21,9],[-17,18]],[[970,5745],[-15,-96],[3,-34],[-57,-7],[0,-14]],[[1944,6121],[2,-61],[52,10],[4,-119],[28,-1],[2,-106]],[[1790,5995],[12,53],[18,49],[124,24]],[[1941,5578],[6,49],[-100,235],[-16,4],[-9,8],[6,11],[1,14],[-9,26],[-2,21],[-4,10],[6,19],[-7,11],[-11,-1],[-12,10]],[[2032,5844],[-13,4],[-36,-211],[-13,-17],[-14,-34],[-15,-8]],[[75,5631],[29,-28],[98,-201],[21,17]],[[196,4990],[-141,-1],[-27,2],[-28,224],[75,416]],[[223,5419],[23,-106],[-24,-133],[-20,-166],[-6,-24]],[[3079,9027],[93,-526]],[[2790,9052],[155,-12],[134,-13]],[[2845,8746],[-55,306]],[[2855,8291],[9,26],[11,8],[8,17],[4,33],[-5,24],[-22,76],[9,27],[15,25],[29,37],[15,29],[0,19],[-16,46],[0,35],[-11,4],[-8,26],[-11,19],[-7,-3],[-5,-26],[-7,5],[-3,36],[-15,-8]],[[3172,8501],[-239,-114],[4,-82],[-82,-14]],[[6546,4662],[6,-72],[155,-45]],[[6409,4028],[-144,398]],[[6449,4039],[-40,-11]],[[6707,4545],[-69,-161],[-83,-177],[-106,-168]],[[7673,5598],[-4,-5],[0,-15],[-6,-12],[-12,2],[-3,-16],[-6,12],[-6,-2],[-2,-11]],[[7432,5781],[71,5],[99,-69],[67,-111],[4,-8]],[[7290,5639],[7,10],[48,55],[50,49],[37,28]],[[7307,5528],[-17,111]],[[7532,5275],[-3,18],[-11,0],[-4,21],[6,13],[-3,28],[-7,12],[-6,1],[-8,12],[0,17],[-7,8],[-14,-1],[-9,-6],[-14,7],[-6,8],[2,16],[-3,17],[-7,7],[0,28],[-5,-1],[-3,25],[-7,8],[-6,15],[-8,31],[-102,-31]],[[7606,5308],[-4,-7],[-6,7],[-6,-7],[3,-9],[-5,-16],[-14,0],[3,-8],[-8,-1],[2,-9],[-7,1],[9,-11],[-9,-6],[-16,37],[-4,2],[-4,-18],[-8,12]],[[7608,5310],[-2,-2]],[[7606,5318],[2,-8]],[[7606,5327],[0,-9]],[[7601,5343],[5,-14]],[[7603,5348],[-2,-5]],[[7601,5364],[2,-16]],[[7600,5366],[1,-2]],[[7601,5372],[-1,-6]],[[7601,5378],[0,-6]],[[7592,5391],[9,-11]],[[7590,5443],[6,-11],[-3,-16],[5,-17],[-6,-8]],[[7590,5455],[0,-12]],[[7576,5480],[12,-16],[2,-9]],[[7578,5485],[-2,-4]],[[7580,5490],[-2,-5]],[[7634,5548],[-4,-13],[-11,8],[-7,-2],[-12,10],[-10,-3],[-2,-37],[-7,-4],[-1,-17]],[[7634,5551],[0,-3]],[[6322,5698],[76,159],[40,32],[22,-3],[27,-7],[43,-61],[3,-7],[20,-25]],[[6444,5499],[-22,61],[-5,1],[-26,52],[-18,-2],[-6,16],[-9,-1],[-23,63],[-10,2],[-3,7]],[[6488,5596],[-5,-3],[-18,5],[-5,-31],[5,-48],[-21,-20]],[[6553,5786],[-10,-13],[-5,-26],[0,-13],[-6,-8],[0,-14],[-8,-11],[4,-8],[-9,-12],[3,-28],[-3,-35],[-6,-15],[-16,-17],[-9,10]],[[6553,5786],[0,0]],[[8125,1126],[0,12],[5,18],[10,20],[0,7],[11,14],[-1,9],[8,4],[11,28],[0,18],[11,16],[2,34],[-14,1],[-4,-4],[-5,10],[10,0],[12,18],[17,36],[12,11],[14,-3],[13,-28],[8,-28],[-4,-4],[-4,11],[-5,-27],[10,-1],[3,17],[13,-43],[1,-28],[-4,-19],[5,-35],[-5,-4],[-3,-17],[0,-20],[-6,-2],[-6,16],[-14,-3],[-1,-11],[-7,-14],[-2,-17],[11,-6],[0,-25],[-7,-13],[-13,-9],[1,-21]],[[8085,1027],[-19,193],[52,-114],[0,9],[7,11]],[[8205,1036],[-4,-5],[-116,-4]],[[8207,1043],[-2,-7]],[[8208,1044],[-1,-1]],[[8270,1047],[-15,41],[-1,17],[-6,11],[0,30],[3,-1],[2,-30],[10,-34],[12,-26],[-3,-7]],[[8272,1048],[-2,-1]],[[4223,6536],[12,-56]],[[4111,7053],[112,-517]],[[3895,6765],[216,288]],[[4091,6472],[-196,293]],[[4235,6480],[-144,-8]],[[3462,8712],[0,-2],[38,6],[3,-46],[39,8],[3,-47],[35,6],[12,-145]],[[3205,8318],[128,31],[-8,101],[29,8],[-5,49],[30,3],[-4,46],[29,10],[-7,62],[35,10],[-6,66],[36,8]],[[3211,8231],[-6,87]],[[3224,7947],[10,294],[1,7],[-14,5],[-10,-22]],[[3461,7934],[-7,0],[-230,13]],[[3592,8492],[-12,-3],[8,-29],[0,-23],[-2,-16],[-12,-8],[-1,-9],[7,-3],[-2,-12],[5,-9],[0,-30],[-5,-8],[-21,0],[-49,-15],[4,-39],[-8,-1],[-8,-8],[-2,-16],[-7,-5],[-13,3],[15,-151],[-8,7],[-14,4],[-2,-10],[-5,5],[-3,15],[-2,-13],[-7,-2],[-1,-40],[8,-57],[6,-85]],[[9842,3395],[-10,-28],[-1,-14],[8,-9],[7,6],[13,26],[8,23],[0,17],[6,27],[12,7],[4,32],[10,-4],[-1,12],[-6,-5],[0,9],[12,20],[12,-13],[-3,-10],[-11,2],[10,-11],[12,7],[-2,-7],[1,-26],[11,-16],[-3,-9],[9,2],[-1,-10],[-9,-2],[0,-10],[9,-6],[-4,-9],[-9,11],[-11,-16],[11,4],[8,-13],[12,22],[-5,1],[1,20],[7,11],[9,-12],[8,-2],[-4,34],[-3,9],[0,26]],[[9777,3430],[1,-5],[32,-10],[16,24],[16,-44]],[[9726,3361],[6,3],[7,14],[-2,6],[14,32],[16,7],[8,-4],[2,11]],[[9726,3360],[0,1]],[[9726,3357],[0,3]],[[9738,3337],[-3,13],[-9,7]],[[9739,3333],[-1,4]],[[9819,2990],[-30,40],[3,12],[12,26],[5,28],[4,9],[-35,102],[0,25],[-14,63],[-11,26],[-14,12]],[[9933,3260],[5,15],[-5,3],[-9,-16],[-1,-17],[12,-6],[1,-8],[15,-14],[-7,-13],[-5,15],[-9,0],[-3,-12],[-10,-3],[-2,-11],[-9,0],[1,12],[-5,9],[0,14],[-8,3],[-2,21],[6,3],[-3,13],[-8,4],[-4,15],[-5,-6],[-4,14],[24,6],[-5,19],[-5,2],[-9,-23],[-7,-1],[4,-19],[12,-15],[-14,-10],[-2,-8],[-10,-5],[-8,6],[1,-12],[8,0],[5,11],[13,-4],[8,-12],[3,-16],[-8,-13],[-8,-1],[-10,-22],[-4,2],[-7,-10],[-8,1],[0,15],[-9,3],[0,-10],[7,-1],[4,-11],[12,6],[11,-2],[2,15],[10,8],[12,-7],[2,-14],[8,-7],[-18,-20],[-8,-1],[1,12],[-6,-8],[7,-6],[-7,-27],[3,-22],[12,-23],[-7,-13],[4,-12],[-23,-13],[-14,1],[2,16],[-9,-10],[-15,-4],[-7,-13],[-2,-33]],[[9934,3259],[-1,1]],[[9934,3258],[0,1]],[[9983,3037],[-3,41],[-8,13],[0,31],[-17,27],[3,23],[11,1],[1,7],[-10,0],[-6,47],[-12,10],[-1,18],[9,10],[8,-4],[9,8],[-2,6],[-17,1],[-11,-9],[-3,-9]],[[9983,3036],[0,1]],[[9984,2958],[-1,49],[-3,23],[3,6]],[[9997,2955],[-13,3]],[[9962,3491],[3,-11],[2,-29],[4,-21],[5,-55],[0,-46],[5,-33],[3,-71],[4,-11],[-1,-27],[4,-21],[0,-54],[2,-18],[0,-63],[3,-14],[1,-62]],[[9959,3491],[3,0]],[[9934,3132],[11,-9],[6,-25],[-15,1],[0,13],[-14,7],[2,13],[8,-13],[2,7]],[[9934,3131],[0,1]],[[9934,3129],[0,2]],[[9934,3128],[0,1]],[[9934,3128],[0,0]],[[9934,3126],[0,2]],[[9924,3026],[5,-7],[-3,-18],[-8,-2],[-7,10],[13,17]],[[9899,3054],[2,-3],[-1,-29],[-8,29],[7,3]],[[9946,3482],[3,-17],[-10,-9],[5,28],[2,-2]],[[9938,3499],[-3,-19],[-5,21]],[[9930,3501],[8,-2]],[[9954,3487],[2,-14],[-4,-1],[2,15]],[[9934,3258],[-1,2]],[[9933,3260],[1,-1]],[[9726,3360],[0,-3]],[[9725,3361],[1,-1]],[[9726,3357],[-1,4]],[[9934,3126],[-4,4],[-3,16],[6,17],[0,18],[6,-8],[13,-1],[0,-26],[4,-32],[-18,18],[-4,0]],[[9934,3129],[0,-3]],[[9934,3131],[0,-2]],[[9934,3132],[0,-1]],[[9921,3504],[0,0]],[[9916,3513],[5,-9]],[[9917,3511],[-1,2]],[[9921,3504],[-4,7]],[[977,6165],[113,27],[1,-10],[-6,-8],[5,-39],[78,11],[5,-69],[150,32],[2,-24],[78,11]],[[972,5857],[5,308]],[[1223,5502],[-21,-8],[-7,3],[-15,292],[-210,-44]],[[1322,5521],[-100,30],[2,-20],[-6,-8],[5,-21]],[[1403,6096],[-81,-575]],[[4495,5759],[53,-136],[49,-58],[65,-5],[9,26]],[[4434,5750],[61,9]],[[4454,5143],[-7,61],[34,17],[-11,128],[-36,401]],[[4531,5049],[-27,-19],[-11,130],[-39,-17]],[[4674,5151],[-143,-102]],[[4766,5189],[-34,-23],[-5,21],[-53,-36]],[[4676,5468],[-6,-6],[6,-88],[33,23],[57,-208]],[[3270,5943],[1,1],[150,87],[11,-12],[11,17],[10,6],[6,-47],[29,4],[30,74],[72,18]],[[3103,5736],[104,23],[-7,5],[-4,23],[8,-1],[-9,25],[-2,23],[-3,4],[-1,26],[4,-6],[11,-1],[7,20],[6,-2],[4,-13],[6,5],[5,16],[8,1],[2,11],[-1,23],[9,17],[16,2],[4,6]],[[3120,5532],[-16,197]],[[3438,5474],[-15,0],[-4,-14],[-10,-1],[-17,6],[-6,11],[-8,-3],[-3,7],[-15,-3],[-17,5],[-7,-9],[-9,7],[1,12],[-6,12],[-7,-12],[-6,6],[-2,12],[-9,4],[-4,9],[-11,4],[-7,28],[-8,16],[-16,0],[-3,13],[-7,-7],[-5,9],[-5,-7],[-17,4],[-7,-10],[-12,-6],[-12,-22],[-41,-13],[-23,0]],[[3469,5718],[1,-29],[5,-9],[-6,-24],[6,-10],[-3,-20],[-11,-13],[-6,-19],[6,-14],[-6,-19],[9,-22],[-4,-5],[-7,-51],[-5,-11],[-10,2]],[[3590,6091],[-80,-178],[-22,-49],[-10,-15],[-11,-49],[0,-23],[4,-3],[-2,-56]],[[4551,6333],[-24,-32]],[[4432,6709],[37,8],[10,-47],[-11,-7],[6,-31],[-21,-13],[28,-122],[1,0],[25,-108],[27,11],[7,0],[-1,-23],[-7,-11],[18,-33]],[[4223,6536],[62,59],[49,26],[93,85],[5,3]],[[4315,6304],[-18,178],[-62,-2]],[[4527,6301],[-4,20],[-208,-17]],[[7216,7893],[1,-64],[2,-18],[-9,4],[-7,-23],[3,-4],[-7,-23],[-83,-158]],[[7189,7906],[27,-13]],[[7174,7914],[15,-8]],[[7153,7927],[21,-13]],[[7151,7927],[2,0]],[[7148,7927],[3,0]],[[7147,7925],[1,2]],[[7146,7923],[1,2]],[[7145,7922],[1,1]],[[6969,8024],[63,-45],[105,-54],[8,-3]],[[3169,7167],[-2,-10],[10,-15],[-5,-14],[4,-12],[7,-9],[-4,-16],[10,-16],[2,-13],[-7,-21],[4,-12],[-4,-10],[6,-12],[3,-35],[5,-16],[-8,-4],[3,-15],[6,-6],[-8,-3],[0,-21],[7,5],[0,-35],[9,-12],[0,-16],[12,-13],[-8,-17],[2,-5],[3,-25],[-5,-19],[5,-9],[-3,-13],[5,-10],[-8,-2],[3,-12],[-5,-14],[13,-15],[-1,-16]],[[2867,7092],[302,75]],[[2897,6750],[-13,145],[-17,197]],[[3220,6679],[-70,0],[-36,-7],[1,-7],[-35,-10],[-9,136],[-174,-41]],[[7606,5308],[1,-1]],[[7423,5171],[10,-1],[4,13],[20,11],[12,12],[15,3],[4,-8],[8,0],[15,-9],[6,9],[-8,21],[0,8],[23,45]],[[7452,4713],[-33,141],[12,13],[-13,8],[-5,15],[0,17],[5,13],[-1,9],[25,26],[-12,7],[8,21],[-16,81],[2,70],[-8,22],[7,15]],[[7525,4672],[-6,16],[1,8],[-14,17],[3,21],[-5,6],[-52,-27]],[[7548,4678],[-23,-6]],[[7631,4731],[-17,6],[-60,-17],[-10,-25],[4,-17]],[[7683,5188],[-86,-307],[35,-11],[8,-20],[4,-23],[7,-5],[8,-20],[-5,-14],[-10,0],[-3,-14],[-9,-22],[-1,-21]],[[5477,8868],[-8,-30],[-11,-21],[-13,-12],[-9,-21],[5,-65],[-6,-13],[52,-13],[16,-32],[-12,-33]],[[5175,8881],[59,-2],[243,-11]],[[5158,8546],[20,250],[-3,85]],[[5491,8628],[-42,-21],[-75,-36],[1,-21],[-3,-24],[-6,-16],[-5,14],[-5,1],[-3,-44],[-3,-12],[-11,-1],[3,-12],[-4,-15],[9,1],[3,-15],[-14,-9],[1,-15],[-20,-4],[-8,22],[-6,9],[-6,-5],[-2,-17],[-17,7],[-21,20],[-52,46],[-17,30],[-15,9],[-11,25],[-4,1]],[[1473,7488],[-13,-109]],[[1253,7575],[220,-87]],[[1182,6995],[20,153],[9,-4],[8,69],[-2,11],[-11,10],[6,7],[5,-7],[11,15],[-4,8],[0,13],[-8,20],[12,77],[-9,8],[19,129],[5,-3],[10,74]],[[1245,6969],[-63,26]],[[1410,7007],[-8,-49],[-149,62],[-8,-51]],[[1460,7379],[-50,-372]],[[7194,5552],[87,75],[9,12]],[[7150,5513],[44,39]],[[7220,5201],[-43,100],[-27,212]],[[7258,5115],[-38,86]],[[7300,5128],[-42,-13]],[[7307,5528],[-44,-11],[30,-205],[7,-184]],[[8149,8506],[2,-5],[-6,-24],[-8,-1],[-2,14],[14,16]],[[8111,8445],[2,-18],[-12,6],[10,12]],[[7965,8787],[15,29],[14,11],[8,-6],[2,-23],[7,-4],[10,5],[1,-21],[-9,-17],[1,-24],[-2,-6],[7,-27],[-1,-18],[-4,-7],[7,-11],[-8,4],[-1,-14],[6,-7],[-6,-10],[6,-17],[6,-6],[16,15],[-7,-11],[4,-10],[14,17],[2,-9],[19,1],[0,8],[10,-3],[9,8],[-6,-20],[7,-2],[0,-12],[-6,-10],[0,-12],[15,-15],[0,-9],[-10,-27],[0,-15],[13,-2],[-3,-22],[-11,-16],[-13,8],[-16,-5],[-24,-26],[-11,-19],[0,-8]],[[8026,8422],[-66,49],[-4,183],[9,133]],[[8110,8636],[-4,-14],[-10,3],[0,11],[13,9],[1,-9]],[[1831,9130],[26,-334],[-15,0],[5,-56]],[[1658,9143],[6,-1],[167,-12]],[[1595,8937],[-3,8],[0,35],[-6,23],[0,13],[5,14],[15,6],[12,-8],[8,13],[2,15],[11,7],[9,27],[8,7],[2,46]],[[1575,8629],[1,33],[3,12],[0,21],[-9,11],[-10,2],[-6,-18],[-13,0],[-13,-9],[-8,-12],[-13,23],[-14,9],[-11,14],[-16,31],[2,7],[17,0],[-2,25],[22,5],[12,-3],[5,4],[-6,37],[9,17],[9,3],[23,-10],[11,13],[15,4],[4,9],[2,23],[-6,14],[11,20],[4,15],[-3,8]],[[1847,8740],[-155,-5],[-3,-18],[-41,-1],[-3,-11],[-7,0],[-3,-9],[-59,-67],[-1,0]],[[7390,9177],[8,-13],[9,4],[2,8],[10,-6],[14,22],[2,-21],[8,-9],[2,8],[14,4],[5,-40],[3,-18],[8,-12],[-18,-9],[17,3],[10,-43],[-3,-13]],[[7383,9185],[7,-8]],[[7382,9182],[1,3]],[[7380,9179],[2,3]],[[7377,9175],[3,4]],[[7374,9171],[3,4]],[[7324,9167],[8,-9],[23,2],[19,11]],[[7316,9162],[8,5]],[[7315,9158],[1,4]],[[7314,9152],[1,6]],[[7312,9152],[2,0]],[[7311,9159],[1,-7]],[[7309,9160],[2,-1]],[[7308,9159],[1,1]],[[7307,9154],[1,5]],[[7307,9153],[0,1]],[[7306,9151],[1,2]],[[7303,9152],[3,-1]],[[7301,9170],[2,-18]],[[7296,9172],[5,-2]],[[7296,9171],[0,1]],[[7295,9164],[1,7]],[[7293,9162],[2,2]],[[7292,9161],[1,1]],[[7291,9159],[1,2]],[[7291,9154],[0,5]],[[7291,9152],[0,2]],[[7288,9151],[3,1]],[[7288,9154],[0,-3]],[[7282,9157],[6,-3]],[[7281,9160],[1,-3]],[[7280,9161],[1,-1]],[[7279,9163],[1,-2]],[[7278,9163],[1,0]],[[7276,9163],[2,0]],[[7274,9162],[2,1]],[[7274,9161],[0,1]],[[7274,9159],[0,2]],[[7274,9156],[0,3]],[[7277,9154],[-3,2]],[[7279,9151],[-2,3]],[[7279,9149],[0,2]],[[7276,9149],[3,0]],[[7274,9151],[2,-2]],[[7272,9154],[2,-3]],[[7271,9154],[1,0]],[[7267,9154],[4,0]],[[7267,9153],[0,1]],[[7269,9147],[-2,6]],[[7269,9145],[0,2]],[[7269,9144],[0,1]],[[7269,9141],[0,3]],[[7269,9139],[0,2]],[[7269,9138],[0,1]],[[7272,9139],[-3,-1]],[[7274,9142],[-2,-3]],[[7274,9143],[0,-1]],[[7274,9143],[0,0]],[[7274,9141],[0,2]],[[7274,9140],[0,1]],[[7274,9136],[0,4]],[[7271,9134],[3,2]],[[7269,9136],[2,-2]],[[7268,9136],[1,0]],[[7268,9131],[0,5]],[[7268,9130],[0,1]],[[7264,9130],[4,0]],[[7263,9131],[1,-1]],[[7264,9133],[-1,-2]],[[7263,9139],[1,-6]],[[7263,9141],[0,-2]],[[7262,9145],[1,-4]],[[7258,9139],[4,6]],[[7258,9137],[0,2]],[[7257,9135],[1,2]],[[7257,9130],[0,5]],[[7256,9126],[1,4]],[[7256,9125],[0,1]],[[7254,9124],[2,1]],[[7254,9124],[0,0]],[[7253,9121],[1,3]],[[7182,9079],[5,-4],[60,39],[6,7]],[[7038,8824],[47,77],[57,117],[40,61]],[[7114,8741],[-76,83]],[[7346,8920],[0,-3],[-30,22],[-14,-40],[-188,-158]],[[7346,8922],[0,-2]],[[7346,8926],[0,-4]],[[7348,8929],[-2,-3]],[[7350,8932],[-2,-3]],[[7350,8934],[0,-2]],[[7350,8935],[0,-1]],[[7367,8997],[-7,-7],[4,-6],[-3,-18],[-5,-7],[9,-7],[-1,-10],[-14,0],[0,-7]],[[7367,8998],[0,-1]],[[7366,9000],[1,-2]],[[7366,9004],[0,-4]],[[7479,9039],[-15,20],[-13,8],[-25,-7],[-19,1],[-9,-9],[13,2],[-5,-12],[-11,-6],[-8,-13],[-8,4],[-13,-18],[0,-5]],[[7481,9042],[-2,-3]],[[7481,9042],[4,0],[-3,-16],[-3,13]],[[7479,9039],[2,3]],[[7537,9188],[19,-88]],[[7500,9170],[37,18]],[[7499,9169],[1,1]],[[7496,9169],[3,0]],[[7495,9168],[1,1]],[[7494,9162],[1,6]],[[7494,9160],[0,2]],[[7523,9101],[-15,22],[1,8],[-8,5],[-7,24]],[[7521,9103],[2,-2]],[[7524,9107],[-3,-4]],[[7525,9103],[-1,4]],[[7525,9101],[0,2]],[[7525,9099],[0,2]],[[7529,9068],[-6,20],[2,11]],[[7556,9100],[-27,-32]],[[7525,9103],[0,-2]],[[7524,9107],[1,-4]],[[7521,9103],[3,4]],[[7523,9101],[-2,2]],[[7525,9099],[-2,2]],[[7482,9085],[-2,-1]],[[7482,9085],[0,0]],[[7481,9086],[1,-1]],[[7480,9084],[1,2]],[[7494,9168],[0,-6]],[[7493,9167],[1,1]],[[7494,9160],[-1,7]],[[7494,9160],[0,0]],[[3908,8965],[-17,-552]],[[3433,8998],[220,-14],[255,-19]],[[3462,8712],[-29,286]],[[3786,8397],[-7,-1],[-3,59],[-17,-4],[-9,85],[-158,-44]],[[3829,8397],[-43,0]],[[3829,8398],[0,-1]],[[3891,8413],[-62,-15]],[[1779,5952],[11,43]],[[1708,5389],[64,504],[7,59]],[[1824,5332],[-116,57]],[[1941,5578],[-46,-112],[-6,6],[-14,-5],[0,-18],[-13,-13],[-10,-1],[4,-28],[-2,-8],[-8,3],[-15,-10],[-7,-60]],[[4305,7311],[214,-317]],[[4188,7156],[117,155]],[[4111,7053],[77,103]],[[4519,6994],[-115,-162],[28,-123]],[[7222,7890],[6,-2],[-3,-14],[7,13],[5,-11],[0,14],[-10,12],[8,18],[8,-17],[8,-1],[5,-9],[2,-24],[11,-6],[-3,-9],[3,-14],[-10,-16],[3,-24],[4,-3],[13,40],[-3,10],[14,22],[3,-17],[10,3],[-5,-20],[-5,-2],[-5,-23],[9,-7],[8,21],[7,4],[0,11],[12,6],[14,21],[8,-5],[0,-21],[-10,4],[1,-12],[9,-2],[-3,-8],[3,-15],[-4,-8],[-10,2],[6,28],[-7,0],[-17,-53],[-24,-9],[6,-31],[-1,-8],[-8,0],[5,-20],[-5,-3],[1,-11],[12,-9],[2,-15],[-10,-2],[-6,-37],[6,-11]],[[7216,7893],[6,-3]],[[7257,7547],[-6,4],[-16,-7],[-75,39]],[[7292,7620],[-14,-20],[2,-3]],[[7523,7961],[7,-4],[4,-9],[5,7],[9,-22],[-8,-6],[-18,5],[1,29]],[[7569,7869],[8,-8],[1,-12],[-9,-15],[-10,3],[3,32],[7,0]],[[7486,7731],[9,-22],[-5,3],[-8,19],[4,0]],[[7293,7627],[0,-10]],[[7292,7620],[1,7]],[[7293,7617],[-1,3]],[[7204,9998],[30,1],[49,-23],[106,-133],[30,23],[19,25],[26,19],[15,2],[-2,-12],[0,-73],[0,-47],[4,-64],[0,-23],[8,-71],[4,-14],[-27,2],[-4,-8],[-9,3],[-2,-8],[-6,5],[1,12],[6,8],[1,13],[-5,25],[0,-29],[-10,-22],[-24,1],[-49,-33],[0,-5],[-16,-10],[-7,0],[-20,15],[-3,18],[-5,6],[-3,17],[1,10],[-4,11],[-6,-1],[-22,30],[-13,1],[-14,8],[-9,23],[-7,0]],[[7237,9700],[8,59],[-29,169],[-12,70]],[[7269,9664],[17,-8],[7,-26],[-12,-1],[-10,16],[-2,19]],[[7298,9633],[11,-9],[-2,-12],[-12,6],[3,15]],[[933,4921],[-32,673]],[[1264,4889],[-207,19],[-22,4],[-102,9]],[[1223,5502],[4,-8],[1,-20],[-4,-11],[0,-16],[7,-37],[16,-35],[-4,-19],[-24,-18],[-5,-11],[3,-12],[-3,-14],[-7,-6],[5,-73],[29,-144],[11,-21],[-11,-31],[9,-16],[9,-6],[4,-14],[-4,-37],[-4,-20],[9,-44]],[[8336,3221],[14,-8],[32,8],[-2,-14],[8,7],[-4,9],[23,16],[2,-11],[18,-4],[-3,-6],[19,-27],[19,-13],[0,-11],[-10,3],[-4,8],[-13,-5],[-17,8],[-8,-8],[19,3],[9,-4],[11,1],[-2,-9],[-22,-8],[-1,-4],[19,10],[14,-13],[8,-16],[9,6],[12,-7],[7,4],[-31,6],[-9,14],[-2,11],[9,-2],[4,7]],[[8208,2444],[1,20],[4,21],[-2,25],[25,53],[13,23],[12,28],[5,19],[6,47],[7,22],[4,28],[0,20],[-4,20],[0,18],[11,51],[-2,40],[40,315],[8,27]],[[8288,2395],[-80,49]],[[8721,3030],[-15,-35],[-192,-432]],[[8465,3174],[3,-11],[40,-27],[32,-18],[4,-6],[45,-25],[8,1],[-9,-26],[6,-9],[-1,20],[7,14],[5,-16],[26,-8],[4,-6],[19,-7],[25,-6],[12,-7],[30,-7]],[[8464,3172],[1,2]],[[8338,3343],[9,-17],[20,-21],[23,-30],[19,-19],[-17,-15],[-22,-4],[-11,-9],[-23,4]],[[8336,3232],[2,111]],[[6830,7489],[-2,6],[4,56],[21,17],[14,42],[-10,26],[4,17],[10,0],[6,15]],[[6951,7260],[-6,9],[7,8],[-7,8],[-18,48],[-21,-33]],[[6949,7260],[2,0]],[[6949,7254],[0,6]],[[6948,7253],[1,1]],[[6948,7249],[0,4]],[[6947,7249],[1,0]],[[6947,7248],[0,1]],[[6948,7246],[-1,2]],[[6949,7244],[-1,2]],[[7022,7242],[3,-17],[-16,19],[-8,1],[-8,-11],[-1,-9],[-14,-2],[-29,21]],[[7022,7241],[0,1]],[[7021,7240],[1,1]],[[7020,7239],[1,1]],[[7017,7240],[3,-1]],[[7017,7242],[0,-2]],[[7020,7242],[-3,0]],[[7021,7244],[-1,-2]],[[7021,7245],[0,-1]],[[7022,7245],[-1,0]],[[7008,7392],[4,-8],[-1,-18],[6,-2],[5,19],[9,-12],[-9,-11],[-1,-13],[6,-11],[13,-9],[9,-16],[-12,-1],[-7,-14],[23,11],[2,-15],[-5,-2],[-4,-29],[-3,-3],[-13,-30],[-8,17]],[[6986,7389],[22,3]],[[6986,7389],[-1,-2]],[[7008,7392],[-5,3],[-8,-7],[-10,-1]],[[7021,7245],[1,0]],[[7021,7244],[0,1]],[[7020,7242],[1,2]],[[7017,7242],[3,0]],[[7017,7240],[0,2]],[[7020,7239],[-3,1]],[[7021,7240],[-1,-1]],[[7022,7241],[-1,-1]],[[7022,7245],[0,-3]],[[1277,8609],[143,-20],[0,-10],[7,-4],[0,-22],[5,-3],[11,-16],[8,-3],[-3,-15],[15,-13],[26,7],[-4,11],[10,13],[9,-6],[16,-33],[5,16],[9,-14],[9,6],[0,24],[14,25],[3,-3],[20,0],[7,-3]],[[1216,8275],[46,-6],[15,340]],[[1210,8060],[-27,12],[41,73],[-8,130]],[[1502,7942],[-292,118]],[[1514,8030],[-12,-88]],[[1576,8471],[-62,-441]],[[1587,8546],[-11,-75]],[[7616,6079],[-9,25],[8,-2],[2,24],[-2,16],[10,3],[5,-5],[-3,-15],[13,-1],[-4,-21],[-1,-21],[14,-19],[1,-27],[5,-22],[12,-33],[20,-39],[16,-6],[9,-11],[5,-17],[14,-22],[14,-7],[13,-14],[7,9],[10,-18],[1,-13],[-15,18],[-9,-10],[1,-19],[-10,-9],[2,-12],[6,-12],[4,-35]],[[7617,6078],[-1,1]],[[7617,6077],[0,1]],[[7615,6070],[2,7]],[[7587,6040],[-4,4],[3,17],[-15,-1],[9,15],[30,1],[4,-14],[8,3],[-7,5]],[[7588,6038],[-1,2]],[[7588,6037],[0,1]],[[7577,6023],[11,14]],[[7571,5962],[0,8],[9,-6],[3,6],[14,-7],[5,8],[19,0],[13,-10],[9,-2],[11,12],[2,-6],[15,4],[-10,19],[-15,22],[-4,-16],[12,-11],[-1,-12],[-9,-11],[-7,0],[-13,11],[-16,3],[-21,-3],[-7,5],[0,21],[-7,-2],[-1,16],[5,12]],[[7571,5960],[0,2]],[[7572,5957],[-1,3]],[[7465,5818],[107,139]],[[7432,5781],[33,37]],[[7759,5767],[7,15],[1,13],[-7,-3],[-7,10],[9,6],[10,16],[7,-6],[1,-14],[-6,-5],[-2,-20],[4,-22],[-10,-10],[3,-36],[5,-10],[6,-43],[-3,-3],[8,-36],[-3,-19],[-5,-1],[2,-17],[-15,21],[5,12],[-18,3],[-3,12],[-13,-5],[-11,40],[-15,6],[-8,-10],[8,-9],[-3,12],[12,3],[6,-9],[9,-35],[8,4],[7,-10],[-10,-3],[-8,-12],[-4,-19],[-7,14],[-7,-1],[-8,-14],[-12,3],[-5,18],[-7,3],[-7,-8]],[[7756,5764],[3,3]],[[7756,5763],[0,1]],[[7755,5763],[1,0]],[[7755,5764],[0,-1]],[[7799,5548],[6,-16],[-9,1],[-2,19],[5,-4]],[[7868,5363],[-5,22],[-9,16],[2,9],[-14,16],[-2,17],[-10,25],[0,18],[-7,23],[1,6],[-13,30],[-13,13],[-7,-3],[-4,10],[11,12],[1,12],[5,0],[5,-20],[21,-62],[29,-93],[17,-44]],[[7824,5492],[1,-17],[-5,9],[4,8]],[[7615,6070],[1,9]],[[7617,6077],[-2,-7]],[[7616,6079],[1,-1]],[[5898,6240],[38,-14],[55,-37],[1,-23],[14,-24],[19,-12],[8,-1],[-3,-19],[29,-17]],[[5818,6151],[60,26],[20,63]],[[5816,6034],[5,51],[-3,66]],[[5914,5753],[13,60],[-22,15],[-1,23],[-9,10],[-6,-16],[-9,5],[-1,15],[-18,27],[5,4],[-15,17],[-7,3],[4,19],[-3,26],[-8,10],[-2,41],[-9,12],[-3,9],[-7,1]],[[6059,6093],[9,-14],[-5,-36],[0,-18],[4,-21],[-15,-27],[-17,-25],[-5,-28],[13,-21],[0,-8]],[[5151,8455],[28,-37],[0,-14],[6,-11],[9,-1],[-1,-18],[4,-4],[-3,-17],[5,-20],[20,-16],[4,-23],[11,-8],[0,-25],[5,-18],[6,-10],[1,-32],[7,-4],[-2,-13],[10,-19],[3,-13],[13,4],[3,-28],[7,7],[5,-9]],[[5139,8312],[12,143]],[[5218,7777],[-119,40]],[[5262,7951],[-24,-27],[-9,-20],[-5,-22],[-6,-6],[-2,-43],[-7,-11],[0,-15],[9,-30]],[[5292,8126],[-1,-18],[-11,-9],[-7,-11],[5,-17],[7,-5],[1,-18],[13,-10],[-12,-25],[-4,-19],[4,-33],[-25,-10]],[[4860,6492],[22,-5],[42,31],[-1,-9],[27,13],[5,20],[87,68],[9,-13],[-6,-7],[0,-10],[19,9],[-1,-13],[9,-8]],[[4849,6482],[3,12],[8,-2]],[[4951,6055],[-41,15],[-14,65],[-20,255],[-27,92]],[[5109,6121],[-84,-24],[-17,-19],[-20,0],[-37,-23]],[[5121,6283],[31,-73],[-32,-35],[-16,-42],[5,-12]],[[5072,6568],[-5,-41],[15,-45],[11,-38],[9,-117],[19,-44]],[[3929,7541],[-289,-399]],[[3697,7950],[232,-409]],[[3533,7728],[135,214],[29,8]],[[3334,6695],[0,25],[7,30],[-5,14],[3,24],[4,-2],[-4,24],[7,10],[-7,27],[-8,7],[3,10],[11,7],[-4,10],[0,15],[-4,4],[-1,31],[4,1],[4,26],[4,4],[-8,9],[-1,23],[-7,13],[7,11],[-5,14],[7,26],[-3,20],[10,9],[0,17],[5,3],[-2,20],[7,13],[3,22],[10,0],[4,11],[0,21],[10,5],[10,22],[5,0],[1,25],[3,-5],[5,13],[-6,11],[10,0],[0,8],[11,15],[-10,104],[-11,131],[11,16],[119,189]],[[3406,6745],[-10,-1],[-12,-15],[-13,-5],[-9,-19],[-4,5],[-3,-13],[-6,5],[-8,-12],[-7,5]],[[3640,7142],[-40,-135],[-29,30],[-19,-18],[-8,-24],[3,-16],[-10,-15],[-7,0],[-39,33],[-16,-42],[-5,4],[-5,17],[-7,2],[-10,-24],[-2,-15],[-13,-11],[-3,-19],[-4,-3],[6,-25],[-6,-15],[-10,8],[0,-58],[2,-15],[-4,-21],[4,-9],[-9,-6],[3,-17],[-6,-3]],[[3829,8397],[5,-7],[2,-22],[13,-21],[5,-18],[12,-7],[2,-10],[8,-194],[-15,-18],[85,-243],[12,-68],[-2,-29],[2,-17],[16,-28],[4,-19],[-3,-28],[4,-1],[5,-33],[-1,-21]],[[3829,8397],[0,0]],[[3697,7950],[29,241],[23,-31],[12,24],[-6,9],[23,56],[-11,10],[-7,-17],[-12,11],[-8,-19],[35,122],[11,20],[0,21]],[[3934,7546],[-5,-5]],[[3983,7613],[-49,-67]],[[580,7746],[356,-129]],[[498,7224],[59,454],[12,-3],[11,71]],[[619,7179],[-121,45]],[[820,7103],[-201,76]],[[878,7182],[-15,-95],[-43,16]],[[936,7617],[-25,-201],[-21,-136],[-12,-98]],[[1514,8030],[271,-98]],[[1500,7675],[31,257],[-29,10]],[[1798,7583],[-31,-19],[-267,111]],[[1785,7932],[0,-57],[4,-36],[13,-5],[-13,-109],[9,-142]],[[6182,4858],[2,-187]],[[5925,4698],[257,160]],[[5925,4491],[0,207]],[[6184,4671],[-212,-178],[-47,-2]],[[8079,4684],[11,-23],[16,-25],[0,-12],[-7,-6],[-8,6],[-7,14],[-14,9],[-15,-9],[-13,-13],[-16,-30],[-4,-15],[-8,-14],[-16,3],[-1,14],[10,7],[7,-9],[5,30],[24,37],[18,11],[6,12],[0,13]],[[8067,4684],[12,0]],[[7678,4190],[88,128],[79,181],[0,1]],[[7782,3388],[0,27],[4,16],[-2,9],[5,17],[-1,12],[3,22],[17,34],[6,32],[11,-2],[14,4],[6,20],[2,17],[12,17],[0,10],[20,34],[6,0],[-9,21],[-65,159],[-126,309],[-7,44]],[[8022,3156],[-5,14],[-5,27],[7,9],[9,17],[-1,18],[4,6],[-4,19],[1,37],[8,6],[29,107],[-42,5],[-241,-33]],[[8286,3451],[-2,-3],[-74,-143],[-105,-75],[-83,-74]],[[8072,4245],[10,-2],[11,11],[11,18],[5,14],[12,10],[31,5],[11,-18],[0,-9],[18,-13],[14,-22],[3,-17],[23,-23],[6,-11],[27,-25],[11,-6],[12,2],[-2,-20],[6,-14],[-3,-7],[-17,-6],[-5,-19],[0,-42],[19,-62],[23,-53],[-2,-34],[5,-27],[-3,-31],[2,-50],[17,-42],[1,-13],[-9,-20],[0,-23],[-6,-14],[0,-31],[-3,-19],[-10,8],[5,-10],[-5,-4],[-3,-25],[-12,-18],[-5,-41],[0,-19],[8,-46],[8,-26]],[[7845,4500],[35,-28],[5,-8],[13,-47],[17,-38],[4,4],[0,-20],[15,-11],[3,-16],[13,-9],[5,-16],[12,-7],[-4,-8],[22,-3],[13,2],[11,-14],[15,-2],[9,-17],[9,-10],[0,-29],[9,0],[4,-16],[-2,-19],[6,21],[-6,20],[-10,7],[-1,16],[-9,10],[-12,26],[-7,16],[-11,19],[0,15],[-11,25],[-2,12],[-5,11],[-5,25],[-10,34],[-14,21],[2,16],[7,-2],[6,-28],[6,-15],[23,-83],[8,-19],[6,-24],[21,-46],[8,-13],[16,-12],[13,5]],[[8006,4631],[-5,-1],[-7,-13],[-4,13],[3,22],[9,27],[6,-4],[-2,-44]],[[7548,4678],[10,-49],[14,-104],[10,-61],[62,-69],[19,-118]],[[7378,4318],[-6,11],[110,171],[12,74],[33,82],[-2,16]],[[7663,4277],[-36,-9],[-162,-115]],[[4432,7583],[28,-42],[125,197],[10,-4],[11,17],[21,-8],[6,-19],[14,-1]],[[4305,7311],[125,169],[-35,52],[37,51]],[[4675,7218],[-156,-224]],[[4680,7586],[-15,-52],[21,-71],[-1,-9],[2,-41],[10,-14],[0,-19],[9,-32],[-1,-17],[8,-23],[13,-6],[-3,-10],[-48,-74]],[[4647,7723],[0,-12],[55,-51],[-22,-74]],[[9114,4984],[-22,3],[-6,9],[-2,14],[6,27],[10,21],[22,33],[15,14],[13,8],[30,13],[18,3],[34,1],[49,-9],[18,-1],[29,-11],[15,-9]],[[9112,4988],[2,-4]],[[9106,4992],[6,-4]],[[9106,4993],[0,-1]],[[9107,4993],[-1,0]],[[9113,5022],[-9,-12],[3,-17]],[[9114,5022],[-1,0]],[[9122,4995],[-15,8],[7,19]],[[9123,4995],[-1,0]],[[9128,4986],[-5,9]],[[9129,4986],[-1,0]],[[9133,4991],[-4,-5]],[[9136,4995],[-3,-4]],[[9136,4997],[0,-2]],[[9137,4999],[-1,-2]],[[9138,4999],[-1,0]],[[9139,4999],[-1,0]],[[9140,4998],[-1,1]],[[9140,4997],[0,1]],[[9140,4995],[0,2]],[[9141,4993],[-1,2]],[[9142,4993],[-1,0]],[[9142,4992],[0,1]],[[9142,4991],[0,1]],[[9129,4985],[7,-3],[6,9]],[[9137,4958],[-14,23],[6,4]],[[9138,4957],[-1,1]],[[9139,4956],[-1,1]],[[9143,4951],[-4,5]],[[9145,4948],[-2,3]],[[9147,4945],[-2,3]],[[9147,4944],[0,1]],[[9148,4942],[-1,2]],[[9148,4941],[0,1]],[[9148,4939],[0,2]],[[9243,4781],[6,-7],[9,0],[0,11],[16,3],[11,7],[13,23],[8,24],[6,-6],[-15,-48],[-10,-17],[-13,-14],[-15,-11],[-12,-1],[-14,9],[-22,34],[-8,11],[-19,37],[-7,36],[-14,36],[-15,31]],[[9242,4783],[1,-2]],[[9242,4784],[0,-1]],[[9241,4786],[1,-2]],[[9240,4787],[1,-1]],[[9241,4786],[-1,1]],[[9243,4781],[-2,5]],[[9237,4783],[6,-2]],[[9202,4812],[12,-20],[19,-2],[4,-7]],[[9197,4818],[5,-6]],[[9196,4820],[1,-2]],[[9363,5003],[-12,6],[-12,0],[-22,-7],[-16,-9],[-18,-15],[-14,-20],[-9,-23],[-10,-10],[-18,-55],[1,-22],[-7,2],[-1,-32],[-11,-3],[1,-11],[-23,25],[4,-9]],[[9343,5100],[22,-71],[-2,-26]],[[9237,4783],[3,4]],[[9243,4781],[-6,2]],[[9243,4781],[0,0]],[[9242,4783],[1,-2]],[[9241,4785],[1,-1]],[[9241,4786],[0,-1]],[[9240,4787],[1,-1]],[[9107,4993],[9,-5],[21,-30]],[[9106,4993],[1,0]],[[9106,4992],[0,1]],[[9112,4988],[-6,4]],[[9114,4984],[-2,4]],[[9148,4939],[-30,36],[-4,9]],[[9148,4941],[0,-2]],[[9147,4944],[1,-2]],[[9145,4948],[2,-3]],[[9143,4951],[2,-3]],[[9139,4956],[4,-5]],[[9138,4957],[1,-1]],[[9137,4958],[1,-1]],[[9139,4999],[1,-1]],[[9137,4999],[2,0]],[[9136,4997],[1,2]],[[9133,4991],[3,4]],[[9140,4993],[-7,-2]],[[9140,4995],[0,-2]],[[9140,4997],[0,-2]],[[9196,4820],[6,-8]],[[9197,4818],[-1,2]],[[9202,4812],[-5,6]],[[9140,4993],[1,0]],[[9142,4991],[-2,2]],[[9142,4993],[0,-1]],[[6956,6451],[1,-20],[10,2],[9,8],[14,-1],[17,26],[12,-8],[-4,-16],[-20,-4],[-7,-11],[-5,4],[-14,-8],[5,-11],[11,16],[0,-14],[-6,-7],[-12,-4],[2,-13],[-8,-23],[-12,-5],[-2,-6],[-12,2],[2,5]],[[6953,6450],[3,1]],[[6864,6275],[10,3],[-2,27],[5,17],[5,0],[5,16],[4,-1],[4,16],[-7,0],[-6,38],[-11,30],[13,5],[45,-16],[-8,-4],[-2,-12],[11,3],[12,26],[-2,14],[13,13]],[[6754,5832],[-29,59],[111,94],[-23,80],[80,97],[3,7],[-29,43],[-3,63]],[[6846,5848],[-13,-5],[-26,-1],[-19,-9],[-30,3],[-4,-4]],[[7053,6038],[-7,5],[-10,-16],[-59,-23],[-23,-21],[-62,-6],[-33,-76],[0,-56],[-13,3]],[[7032,6162],[-2,-13],[-9,-9],[-14,4],[8,-9],[16,-3],[1,-5],[10,8],[8,-5],[5,-23],[15,-11],[7,3],[-6,-19],[-8,-2],[-4,-13],[9,2],[-7,-29],[-8,0]],[[6978,6225],[-4,-16],[5,-9],[11,12],[6,-2],[10,8],[10,-13],[21,11],[9,-11],[14,1],[15,16],[2,6],[16,9],[16,14],[3,12],[-3,17],[-5,17],[5,3],[7,-23],[7,-9],[-2,-53],[-3,-12],[1,-24],[-25,9],[-5,-10],[-10,-3],[1,-16],[9,-7],[11,3],[3,-14],[-5,-4],[-6,-29],[-5,-4],[-12,11],[-7,1],[4,14],[0,15],[-12,10],[-9,-1],[-10,12],[-9,-4]],[[6979,6226],[-1,-1]],[[6979,6226],[0,0]],[[6979,6224],[0,2]],[[6935,6368],[-1,-9],[-9,-3],[-6,-10],[6,-15],[5,-1],[13,-36],[16,-11],[5,-8],[21,-14],[13,-17],[2,-9],[-4,-24],[-17,13]],[[6935,6368],[2,-5]],[[6937,6363],[0,0]],[[6599,7954],[15,2],[4,12],[6,-1],[18,37],[6,5],[16,-3],[9,5],[3,15],[10,10],[34,-39],[7,-7],[53,-13]],[[6601,7817],[13,12],[-15,125]],[[6645,7636],[-44,181]],[[6698,7649],[-53,-13]],[[6769,7825],[-16,-34],[-7,0],[-36,-83],[-1,-13],[7,-17],[-14,-4],[-4,-25]],[[6150,3996],[219,53],[40,-21]],[[6175,3210],[-25,786]],[[6201,3210],[-26,0]],[[6202,3211],[-1,-1]],[[6203,3211],[-1,0]],[[6209,3212],[-6,-1]],[[6451,3466],[17,-205],[-259,-49]],[[6469,3848],[-47,16],[29,-398]],[[6449,4039],[20,-191]],[[6906,7300],[21,33],[18,-48],[7,-8],[-7,-8],[5,-13]],[[6887,7113],[14,61]],[[6930,7048],[-9,2],[2,8],[-15,4],[-9,28],[-12,23]],[[6944,7045],[-14,3]],[[6944,7045],[0,0]],[[6947,7002],[12,30],[-2,6],[-13,7]],[[6996,6987],[-6,18],[-14,2],[-12,-17],[-17,12]],[[6996,6987],[0,0]],[[6997,6986],[-1,1]],[[7009,6987],[-12,-1]],[[7012,6985],[-3,2]],[[7014,6983],[-2,2]],[[7022,6959],[-5,2],[0,20],[-3,2]],[[7026,6963],[-4,-4]],[[7027,6965],[-1,-2]],[[7027,6972],[0,-7]],[[7027,6972],[0,0]],[[7034,6978],[-7,-6]],[[7012,7220],[8,-12],[11,-1],[4,11],[13,18],[8,25],[4,25],[27,0],[7,-8],[1,-25],[-10,-2],[-21,-14],[-13,-17],[-13,-30],[-4,-21],[-14,-26],[-8,-32],[-4,-24],[0,-16],[4,-18],[7,-9],[6,1],[-1,-29],[2,-12],[8,-11],[0,-15]],[[7011,7220],[1,0]],[[6929,7246],[15,-1],[-14,-11],[5,-15],[26,2],[-7,4],[0,10],[9,-8],[11,-2],[2,-22],[9,-7],[7,9],[-11,-5],[-1,17],[8,-4],[9,8],[4,11],[7,4],[3,-16]],[[6929,7248],[0,-2]],[[6949,7244],[-10,18],[-10,-14]],[[6948,7246],[1,-2]],[[6947,7248],[1,-2]],[[6948,7249],[-1,0]],[[6947,7251],[1,-2]],[[6948,7253],[-1,-2]],[[6949,7254],[-1,-1]],[[6949,7255],[0,-1]],[[6950,7256],[-1,-1]],[[375,7271],[123,-47]],[[292,6823],[27,142],[56,306]],[[487,6817],[-195,6]],[[516,6817],[-29,0]],[[619,7179],[-4,-44],[-33,13],[-9,-90],[-33,2],[5,-84],[-24,1],[0,-56],[-12,0],[7,-104]],[[6698,5810],[24,11],[16,-1],[4,11],[12,1]],[[6800,5586],[-102,224]],[[6828,5525],[-28,61]],[[6888,5415],[-14,9],[-46,101]],[[6924,5619],[-16,-78],[-20,-126]],[[6846,5848],[7,-74],[48,-18],[29,-29],[2,-17],[-3,-10],[1,-18],[-8,-55],[2,-8]],[[6838,4481],[13,-119],[16,-17],[76,-99],[16,-24],[32,-62]],[[6836,4495],[2,-14]],[[6746,4531],[90,-36]],[[6813,3998],[0,0],[-82,216],[18,45],[7,51],[9,30],[-10,37],[1,20],[7,20],[2,20],[-6,27],[-8,15],[-5,52]],[[6833,3985],[-6,7],[-14,6]],[[6835,3984],[-2,1]],[[6838,3998],[-3,-14]],[[6838,4003],[0,-5]],[[6840,4005],[-2,-2]],[[6841,4007],[-1,-2]],[[6858,4002],[-2,5],[-15,0]],[[6864,3981],[1,6],[-7,15]],[[6864,3974],[0,7]],[[6865,3967],[-1,7]],[[6872,3953],[-7,14]],[[6874,3947],[-2,6]],[[6874,3946],[0,1]],[[6870,3942],[4,4]],[[6869,3943],[1,-1]],[[6869,3948],[0,-5]],[[6867,3949],[2,-1]],[[6862,3943],[5,6]],[[6861,3940],[1,3]],[[6859,3939],[2,1]],[[6861,3934],[-2,5]],[[6862,3934],[-1,0]],[[6860,3923],[6,2],[-4,9]],[[6857,3914],[3,9]],[[6855,3912],[2,2]],[[6856,3900],[-1,12]],[[6857,3898],[-1,2]],[[6860,3893],[-3,5]],[[6866,3888],[-6,5]],[[6870,3894],[-4,-6]],[[6870,3895],[0,-1]],[[6872,3895],[-2,0]],[[6872,3894],[0,1]],[[6872,3892],[0,2]],[[6870,3882],[2,10]],[[6871,3880],[-1,2]],[[6876,3887],[-5,-7]],[[6881,3891],[-5,-4]],[[6882,3891],[-1,0]],[[6885,3888],[-3,3]],[[6885,3883],[0,5]],[[6885,3878],[0,5]],[[6887,3876],[-2,2]],[[6894,3891],[-7,-15]],[[6898,3895],[-4,-4]],[[6900,3896],[-2,-1]],[[6901,3896],[-1,0]],[[6901,3895],[0,1]],[[6906,3893],[-5,2]],[[6917,3894],[-11,-1]],[[6918,3894],[-1,0]],[[6923,3896],[-5,-2]],[[6928,3903],[-5,-7]],[[6940,3913],[-10,-1],[-2,-9]],[[6942,3914],[-2,-1]],[[6943,3915],[-1,-1]],[[6945,3916],[-2,-1]],[[6947,3921],[-2,-5]],[[6952,3932],[-5,-11]],[[6954,3930],[-2,2]],[[7010,4018],[-7,-17],[-12,-41],[15,1],[3,-17],[-1,-19],[4,-9],[-7,-28],[-24,-13],[0,13],[-5,-3],[-9,36],[-9,-4],[-4,13]],[[7631,3431],[0,-23],[-4,-23],[-12,-28],[-3,-23],[5,-44],[2,-43],[3,-13],[0,-27],[3,-17],[-13,-50]],[[7211,3317],[40,11],[32,9]],[[7254,3150],[-43,167]],[[7373,2764],[-61,366],[-51,-14],[-7,34]],[[6654,9105],[19,-35]],[[6601,8713],[4,17],[-16,29],[2,26],[3,3],[-1,21],[-16,10],[0,17],[-6,7],[8,4],[5,27],[11,7],[-1,13],[7,17],[4,17],[-5,45],[3,12]],[[6765,8271],[-147,427],[-17,15]],[[6813,8301],[-48,-30]],[[6673,9070],[34,-68],[7,16],[6,-15],[-10,-13],[10,-25],[2,4],[140,-279],[51,-189]],[[5925,4063],[0,428]],[[6238,4506],[-186,-284],[-127,-159]],[[4091,6472],[29,-387]],[[3830,6307],[16,55],[34,73],[211,37]],[[3895,6046],[-17,26],[12,59],[-33,68],[22,93],[-49,15]],[[4002,6005],[-16,-5],[-58,-1],[-33,47]],[[4120,6085],[-23,-5],[-19,-88],[-64,9],[-12,4]],[[6601,8239],[164,32]],[[6599,7954],[-1,6],[17,182],[-14,97]],[[2343,6883],[89,22],[12,-118],[-2,0],[6,-30]],[[2151,6835],[192,48]],[[2159,6356],[-8,479]],[[2499,6384],[-14,0],[-14,-11],[-13,-18],[-16,1],[-8,13],[-9,-20],[-3,25],[-18,22],[-33,-18],[0,2],[-32,8],[0,9],[-180,-41]],[[2448,6757],[-9,-9],[-5,-17],[0,-13],[14,-1],[30,-10],[8,-11],[4,-25],[17,-24],[24,-22],[36,-15],[11,-3],[6,-15],[0,-19],[-6,-16],[-20,-13],[-17,-53],[-32,-71],[-8,-23],[-2,-13]],[[5105,6808],[117,-40],[26,-49]],[[5072,6568],[33,240]],[[5372,6447],[-147,-33],[-4,-21],[-8,-4],[-2,-22],[-13,-13],[-1,-15],[-76,-56]],[[5357,6478],[15,-31]],[[5061,5578],[35,16],[102,-1]],[[5093,5213],[-16,24],[-62,-45],[44,124],[-35,31],[31,66],[6,80],[-6,73],[6,12]],[[5336,5279],[-9,-10],[-15,-8],[-7,5],[-131,-101],[-81,48]],[[5198,5593],[98,-242],[3,-7],[11,4],[8,-18],[18,-6]],[[6044,3963],[106,33]],[[6108,3214],[-34,31],[-5,17],[2,31],[-9,9],[-1,19],[-7,15],[-7,0],[-7,8],[0,38],[4,13],[-1,20],[-23,90],[7,27],[27,49],[-20,54],[24,110],[-20,116],[6,102]],[[6175,3210],[-67,4]],[[6321,5233],[-1,51],[3,41],[12,11],[7,0],[-7,15],[0,19],[5,17],[12,11],[4,12],[88,89]],[[6490,4934],[-50,153],[-28,-51],[-91,182],[0,15]],[[6601,5029],[-84,-71]],[[6570,5430],[-3,-28],[5,-17],[0,-15],[4,-15],[23,-36],[9,-43],[7,-15],[5,-32],[1,-26],[-12,-54],[-11,-44],[0,-44],[3,-8],[0,-24]],[[6488,5596],[7,-62],[-1,-2],[13,-23],[26,-39],[-3,-22],[40,-18]],[[338,5653],[256,-14]],[[223,5419],[-15,70],[84,-6],[-4,101],[38,24],[-2,15],[16,0],[-2,30]],[[586,4955],[-121,12],[-259,23],[-10,0]],[[594,5639],[13,-235],[-39,-85],[18,-364]],[[2465,8551],[-50,-416],[37,6]],[[2183,8483],[282,68]],[[2178,8446],[-1,12],[6,25]],[[2224,8191],[-11,10],[-11,23],[-10,12],[0,17],[-9,40],[-8,5],[-7,-3],[-2,11],[6,20],[4,37],[5,14],[0,15],[-5,9],[6,40],[-4,5]],[[2343,7991],[-9,17],[-1,37],[-4,7],[-14,-3],[-17,11],[-17,-4],[-11,2],[-10,15],[-4,23],[1,45],[-22,19],[-11,31]],[[2452,8141],[-8,-49],[-35,-8],[-10,-82],[-56,-11]],[[2160,6309],[31,8],[10,-10],[14,1],[11,-7],[6,-11],[5,-24],[20,-6],[8,3],[1,-16],[7,-7],[-9,-22],[0,-22],[-8,-8],[52,-80],[-6,-11],[-8,-27],[4,-24],[0,-21],[-5,-44],[55,12]],[[1941,6194],[220,53],[-1,62]],[[1944,6121],[0,32],[-3,41]],[[2293,5738],[-261,106]],[[2348,5993],[-7,-54],[-57,-20],[4,-49],[1,-27],[6,-71],[-2,-34]],[[5454,6204],[20,7],[0,16],[-102,220]],[[5454,6204],[0,0]],[[5532,6207],[-6,-4],[-10,4],[-13,-3],[-15,-9],[-6,-10],[-4,5],[-24,14]],[[5601,6349],[-24,-103],[0,-52],[-9,1],[-11,18],[-17,0],[-8,-6]],[[5629,6595],[6,-42],[-2,-73],[-32,-131]],[[4084,5271],[7,4],[2,-20],[8,2],[-1,-8],[16,10],[-3,27],[8,5],[4,-47],[5,3],[-5,-17],[68,-53],[13,7],[6,-63],[6,1],[3,-27],[-11,-6],[3,-28],[9,4],[-1,-34]],[[3922,4767],[70,180],[23,82],[6,5],[10,-7],[4,11],[-4,35],[5,21],[11,3],[5,-5],[3,37],[16,92],[17,4],[-4,46]],[[4219,4753],[-219,6],[-78,8]],[[4221,5031],[-2,-44],[5,-46],[9,-20],[-2,-61],[-17,-82],[5,-25]],[[1870,5252],[364,-139]],[[1872,4856],[4,129],[-7,25],[-6,41],[9,33],[10,58],[-2,62],[-10,48]],[[2208,4846],[0,-3],[-115,3],[-4,-19],[8,-5],[6,-11],[0,-11],[-11,-26],[-2,-17],[-8,-4],[-6,10],[-10,-17],[6,-1],[2,-13],[7,-6],[-10,-21],[4,-26],[-13,-7],[-1,-27],[-141,-31],[11,238],[-59,4]],[[2234,5113],[-1,-45],[-6,-54],[0,-55],[-4,-21],[-5,-13],[-6,-67],[-4,-12]],[[4315,6304],[57,-563]],[[4148,5710],[-28,375]],[[4372,5741],[-224,-31]],[[2472,5370],[224,199],[2,-10],[7,-5],[5,15],[21,6],[20,18],[16,-3]],[[2562,5182],[-12,26],[-12,20],[-36,35],[-15,20],[-14,39],[-3,25],[2,23]],[[2558,5054],[7,18],[12,22],[1,15],[-4,34],[-5,22],[-7,17]],[[2705,4999],[-104,38],[-43,17]],[[2889,5154],[-192,-48],[8,-107]],[[2854,5562],[0,-3],[35,-405]],[[4961,7481],[27,-11],[1,-385]],[[4680,7586],[281,-105]],[[4713,7048],[-38,170]],[[4923,6942],[0,37],[-59,45],[-40,2],[-25,-9],[-86,31]],[[4967,6963],[-44,-21]],[[4989,7085],[-9,-6],[-13,-116]],[[410,6254],[8,366],[35,5],[6,118],[28,74]],[[623,6237],[-210,14],[-3,3]],[[631,6639],[-8,-402]],[[516,6817],[118,-2],[-3,-176]],[[6698,7649],[29,-6],[14,-55],[29,-25],[-4,-65],[-3,0],[-2,-21]],[[6668,7475],[-14,127],[-14,25],[5,9]],[[6648,7351],[26,125],[-6,-1]],[[6238,7172],[155,-112]],[[6195,7021],[5,18],[-13,8],[13,50],[19,-15],[10,41],[-3,2],[12,47]],[[6259,6740],[-6,1],[-10,15],[-10,25],[0,14],[-11,15],[1,10],[8,11],[-9,31],[-8,10],[24,90],[-24,17],[-10,36],[-9,6]],[[6378,6819],[-101,-65],[-3,-11],[-5,5],[-10,-8]],[[6442,6938],[-64,-119]],[[6393,7060],[24,-14],[4,-20],[6,-10],[0,-12],[9,-17],[-2,-26],[8,-23]],[[3617,6127],[80,0],[0,-21],[7,-10],[4,-35],[4,-22],[6,-1],[13,-26],[45,-155],[18,-157]],[[3590,6091],[9,21],[9,2],[0,-10],[12,-1],[-3,24]],[[3808,5575],[-160,-43],[-4,46],[-175,140]],[[3794,5700],[14,-125]],[[3079,9027],[236,-19],[118,-10]],[[3205,8318],[-33,183]],[[878,7182],[89,-9]],[[778,6885],[-5,42],[27,31],[20,145]],[[986,6510],[-56,126],[-33,-36],[-119,285]],[[1253,6718],[-264,-52],[-3,-156]],[[1245,6969],[8,-251]],[[967,7173],[94,-8],[-16,-115],[137,-55]],[[6442,6938],[13,-32],[27,-3],[24,-12],[5,-4],[26,-6],[15,-9]],[[6516,6781],[-18,-6],[-13,2],[-10,7],[-4,-11],[-35,18],[10,20],[-6,11],[-9,3],[-12,-11],[-7,1],[-7,-11],[-10,1],[-17,14]],[[6582,6812],[-13,-25],[-21,-8],[-10,1],[-12,-9],[-10,10]],[[6552,6872],[12,-4],[18,6],[-1,-8],[11,-3],[-1,-19],[-9,-32]],[[5880,6662],[-4,11],[15,9],[3,5],[11,-2],[0,22],[-8,41],[-3,41],[5,20]],[[5933,6501],[-11,84],[-23,54],[-8,-10],[-6,1],[0,20],[-5,12]],[[6069,6605],[-15,5],[-12,-56],[-21,-52],[-25,15],[-13,-1],[-12,-7],[-14,-22],[-2,-9],[-10,-6],[-12,29]],[[6052,6998],[-3,-13],[20,-380]],[[5964,7099],[94,-81],[-6,-20]],[[5899,6809],[0,19],[7,10],[-5,9],[7,10],[-3,14],[12,8],[-1,26],[8,17],[6,7],[4,18],[5,6],[8,-8],[0,11],[6,-5],[4,9],[13,1],[-2,14],[9,-2],[-1,26],[-5,-1],[-17,13],[8,13],[-8,2],[4,17],[-4,9],[-11,4],[-2,13],[21,20],[2,10]],[[5899,6810],[0,-1]],[[5899,6810],[0,0]],[[5899,6809],[9,-23],[9,8],[-2,19],[-14,-7],[-2,4]],[[4674,5151],[71,-424]],[[4523,4734],[-5,9],[-9,54],[1,29],[4,15],[3,27],[-3,2],[0,23],[19,7],[2,40],[-6,2],[0,26],[8,11],[1,20],[-7,50]],[[4745,4727],[-222,7]],[[6232,6584],[9,-3],[9,-10],[12,4],[5,-13],[10,13],[7,-5],[12,-30],[12,0],[13,6],[18,-6],[9,-11],[2,-23]],[[6073,6496],[159,88]],[[6126,6234],[-43,162],[-17,95],[7,5]],[[6164,6247],[-5,10],[-9,3],[6,27],[0,10],[-10,10],[-10,-27],[-14,-12],[4,-34]],[[6350,6506],[-6,7],[-11,-3],[-169,-263]],[[6161,6245],[-11,-18]],[[6150,6227],[5,16],[6,2]],[[9788,4440],[7,-27],[27,-88],[10,-43],[11,-40],[9,-45],[4,-10],[3,-24],[5,-16],[3,-21],[7,-27],[5,-35],[10,-46],[6,-43],[4,-12],[8,-49]],[[9564,4379],[108,34],[47,11],[65,14],[4,2]],[[9796,4097],[-18,-11],[-7,4],[-8,-6],[-8,15],[-12,-3],[6,-12],[11,-12],[-16,-7],[-11,6],[-12,15],[-19,34],[-5,14],[-6,30],[0,11],[6,12],[9,-36],[5,-4],[7,11],[-6,10],[6,27],[-2,21],[-8,13],[-2,-10],[-6,-4],[13,-2],[-15,-7],[-13,8],[-25,0],[-24,-10],[-16,-22],[-24,20],[6,9],[-1,8],[-7,-3],[-8,-14],[0,-23],[8,-7],[15,-1],[11,-14],[13,6],[-5,-18],[-19,-21],[-6,-11],[-4,-61],[2,-21],[-7,1],[-7,-11],[0,-17],[7,-34],[3,-36],[-6,19],[0,22],[-7,25],[0,37],[-5,76],[-2,77],[0,60],[-2,13],[-9,19],[0,69],[1,18],[-3,10]],[[9796,4098],[0,-1]],[[9794,4099],[2,-1]],[[9793,4100],[1,-1]],[[9776,4069],[4,9],[12,0],[7,19],[4,-5],[10,15],[-14,-7],[-5,10],[4,4],[-1,15],[-11,-5],[-6,-8],[13,-16]],[[9776,4067],[0,2]],[[9776,4002],[7,14],[-5,1],[1,15],[-12,6],[-1,29],[11,11],[-1,-11]],[[9775,4001],[1,1]],[[9775,3998],[0,3]],[[9780,3977],[-6,11],[1,10]],[[9774,3926],[-6,11],[17,22],[-5,18]],[[9774,3923],[0,3]],[[9775,3915],[-1,8]],[[9773,3913],[2,2]],[[9772,3915],[1,-2]],[[9769,3912],[3,3]],[[9770,3910],[-1,2]],[[9771,3910],[-1,0]],[[9773,3909],[-2,1]],[[9907,3914],[-64,-19],[-29,0],[-5,-7],[-21,1],[-4,6],[-11,0],[0,14]],[[9772,4008],[3,1]],[[9772,4007],[0,1]],[[9774,4005],[-2,2]],[[9775,4008],[-1,-3]],[[9775,4009],[0,-1]],[[9766,4017],[1,-2]],[[9765,4017],[1,0]],[[9766,4014],[-1,3]],[[9767,4015],[-1,-1]],[[9733,3978],[-7,10],[-9,21],[0,16],[5,7],[7,-3],[11,3],[8,10],[17,-5],[-4,-11],[-11,6],[5,-16],[11,-2]],[[9733,3977],[0,1]],[[9733,3977],[0,0]],[[9760,3977],[-16,-2],[-11,2]],[[9760,3977],[0,0]],[[9780,3977],[1,-11],[-9,0],[-12,11]],[[9775,3998],[-3,-10],[8,-11]],[[9776,4002],[-1,-1]],[[9774,4005],[2,-3]],[[9774,4005],[0,0]],[[9772,4007],[2,-2]],[[9772,4008],[0,-1]],[[9766,4014],[6,-6]],[[9599,3902],[11,-27],[-12,19],[1,8]],[[9766,3914],[3,13],[4,-11]],[[9773,3916],[-7,-2]],[[9765,4017],[-4,1]],[[9761,4019],[4,-2]],[[9761,4018],[0,1]],[[9796,4098],[-2,1]],[[9794,4099],[-1,1]],[[9793,4100],[3,-3]],[[7967,1315],[2,-5],[116,-283]],[[7811,996],[2,7],[1,31],[3,13],[8,13],[7,31],[8,25],[0,27],[12,13],[7,-1],[12,9],[6,12],[6,21],[19,-7],[15,6],[12,19],[1,13],[11,37],[2,24],[17,24],[7,2]],[[7985,619],[-5,33],[-10,17],[-10,13],[-7,24],[-9,15],[-6,37],[-1,23],[-15,4],[-7,16],[-8,-3],[-15,-28],[-16,41],[-22,76],[-24,59],[-19,50]],[[8110,635],[-78,-7],[-47,-9]],[[8085,1027],[16,-175],[9,-217]],[[5192,5964],[-11,114],[-4,16],[-58,-19],[-9,24],[-1,22]],[[5318,5960],[-61,30],[-65,-26]],[[5454,6204],[-8,9],[-25,0],[-68,-48],[-35,-205]],[[6828,5525],[-20,-82],[-20,-50],[30,-154],[-4,-23]],[[6570,5430],[12,-5],[12,2],[7,26],[8,-2],[1,11],[10,-4],[-1,-23],[100,53],[81,98]],[[6761,5169],[-160,-140]],[[6814,5216],[-53,-47]],[[5598,7409],[95,-81]],[[5474,7426],[124,-17]],[[5458,7310],[16,116]],[[5430,7094],[28,216]],[[5670,6960],[-38,20],[-3,17],[-7,2],[-4,-7],[-5,7],[-20,-6],[-9,13],[-20,0],[-20,4],[-25,-13],[-3,33],[-86,64]],[[5677,7037],[-7,-77]],[[4121,5653],[14,-200],[-63,-40],[12,-142]],[[4001,5623],[10,2],[110,28]],[[3827,5579],[65,16],[8,-79],[61,17],[-7,77],[47,13]],[[3825,5146],[2,433]],[[3821,4777],[4,369]],[[3922,4767],[-101,10]],[[5787,7246],[172,-144],[5,-3]],[[5662,6903],[8,57]],[[5880,6662],[-241,73]],[[2737,7225],[-37,-9]],[[2768,7721],[-10,-206],[-30,-109],[1,-99],[8,-82]],[[2588,7460],[6,24],[21,44],[6,5],[9,23],[0,37],[5,17],[2,30],[5,17],[9,11],[18,32]],[[2598,7190],[-4,16],[-15,111],[-4,39],[0,24],[7,53],[6,27]],[[2700,7216],[-102,-26]],[[4972,5751],[14,-114],[65,18],[10,-77]],[[5046,5164],[-199,-82],[-7,41],[-11,73],[-50,2],[-13,-9]],[[5093,5213],[-1,-19],[-46,-18],[0,-12]],[[7292,7436],[0,-10],[-13,-11],[-8,-16],[-20,20],[-17,-6],[1,18],[-6,8],[-12,-2],[-13,3],[-8,-9]],[[7312,7511],[-24,-63],[4,-12]],[[6201,3194],[2,-20],[-4,5],[-2,-22],[-7,-19],[-82,76]],[[6201,3210],[6,-9],[-6,-7]],[[6451,3466],[49,-4],[14,-161],[50,1]],[[6201,3194],[8,4],[-5,9],[5,5]],[[6456,2939],[-6,-6],[3,-12],[-8,-22],[-2,-27],[-12,-29],[-4,-21],[-16,-17],[-6,12],[-13,6],[-4,7],[7,2],[8,27],[9,7],[4,8],[-8,13],[-18,17],[-14,6],[14,8],[3,-11],[9,11],[-9,10],[-2,31],[16,16],[8,-10],[15,10],[4,17],[-2,13],[-7,14],[4,-19],[-3,-24],[-14,5],[-9,9],[-2,-14],[-15,-17],[1,-8],[-13,-12],[-15,-1],[2,-45],[3,-30],[-5,-31],[-97,239],[-53,50],[7,10],[2,17],[-10,2],[-4,-10],[-1,24],[3,2],[-2,28],[-3,0]],[[6471,3001],[-10,-26],[0,30],[-5,-3],[0,-31],[2,-11],[-5,-11],[3,-10]],[[6471,3002],[0,-1]],[[6461,3027],[10,-25]],[[6470,3026],[-9,1]],[[6471,3026],[-1,0]],[[6564,3302],[-8,-306],[-85,30]],[[6952,3932],[2,-2]],[[6947,3921],[5,11]],[[6945,3919],[2,2]],[[6945,3916],[0,3]],[[6943,3915],[2,1]],[[6942,3914],[1,1]],[[6940,3913],[2,1]],[[6928,3903],[5,10],[7,0]],[[6923,3896],[5,7]],[[6918,3894],[5,2]],[[6906,3893],[11,1]],[[6901,3895],[5,-2]],[[6901,3896],[0,-1]],[[6900,3896],[1,0]],[[6898,3895],[2,1]],[[6894,3891],[4,4]],[[6893,3889],[1,2]],[[6891,3887],[2,2]],[[6889,3882],[2,5]],[[6887,3876],[2,6]],[[6885,3878],[2,-2]],[[6885,3879],[0,-1]],[[6885,3881],[0,-2]],[[6885,3882],[0,-1]],[[6885,3883],[0,-1]],[[6885,3888],[0,-5]],[[6882,3891],[3,-3]],[[6876,3887],[5,4]],[[6871,3880],[5,7]],[[6872,3892],[-2,-10]],[[6872,3895],[0,-3]],[[6870,3895],[2,0]],[[6866,3888],[4,6]],[[6865,3888],[1,0]],[[6864,3888],[1,0]],[[6862,3889],[2,-1]],[[6862,3891],[0,-2]],[[6860,3893],[2,-2]],[[6857,3898],[3,-5]],[[6856,3900],[1,-2]],[[6855,3912],[1,-12]],[[6857,3914],[-2,-2]],[[6860,3923],[-3,-9]],[[6862,3934],[-2,-11]],[[6861,3934],[1,0]],[[6859,3939],[2,-5]],[[6860,3940],[-1,-1]],[[6861,3940],[-1,0]],[[6862,3943],[-1,-3]],[[6865,3946],[-3,-3]],[[6866,3947],[-1,-1]],[[6867,3949],[-1,-2]],[[6869,3948],[-2,1]],[[6869,3947],[0,1]],[[6869,3943],[0,4]],[[6870,3942],[-1,1]],[[6874,3946],[-4,-4]],[[6872,3953],[2,-6]],[[6865,3967],[7,-14]],[[6864,3970],[1,-3]],[[6864,3973],[0,-3]],[[6864,3974],[0,-1]],[[6864,3981],[0,-7]],[[6858,4002],[6,-21]],[[6841,4007],[15,-2],[2,-3]],[[6838,4003],[2,2]],[[6838,4000],[0,3]],[[6838,3998],[0,2]],[[6835,3984],[3,14]],[[6833,3985],[2,-1]],[[6758,3978],[-2,16],[26,2],[7,13],[8,2],[14,-14],[22,-12]],[[6727,3808],[4,37],[6,30],[6,19],[8,-2],[12,24],[0,24],[3,8],[-10,19],[2,11]],[[6971,3603],[-72,70],[-111,120],[-10,19],[-51,-4]],[[7026,4015],[28,-181],[11,-93],[-17,-27],[-16,-12],[-8,-20],[-22,-29],[-31,-50]],[[6707,4545],[39,-14]],[[6669,3704],[-5,11],[-10,3],[-3,12],[-2,28],[3,5],[-12,16],[-10,0],[-6,15],[-155,54]],[[6758,3978],[-2,-8],[8,-20],[-3,-14],[0,-15],[-3,-14],[-16,-14],[-6,-18],[-9,-50],[3,-12],[-14,-2],[-14,-10],[-4,-16],[0,-49],[-5,1],[-6,-39],[-13,7],[-5,-1]],[[6813,3998],[-13,13],[-10,0],[-10,-13],[-11,-3],[-4,3],[-10,-4],[3,-16]],[[3891,8413],[113,-10],[80,-143]],[[4207,7922],[-224,-309]],[[4084,8260],[29,-49],[-17,-11],[0,-19],[9,-15],[-9,-11],[-1,-27],[5,-10],[10,-7],[5,16],[9,-10],[-3,-15],[4,-11],[14,-5],[23,19],[5,-19],[-9,-18],[8,-4],[3,-13],[-32,-27],[70,-102]],[[6214,8585],[29,9],[18,-5],[6,2]],[[6156,8319],[36,16],[16,34],[8,49],[10,94],[-2,28],[-10,45]],[[6392,8080],[-236,239]],[[6519,8232],[-29,-36],[-46,-170],[-52,54]],[[6267,8591],[4,-5],[229,-240],[-1,-9],[-11,-5],[-3,-28],[-11,-10],[45,-62]],[[7967,1315],[20,0],[31,18],[13,21],[5,-6],[-15,-26],[5,-5],[7,13],[10,-20],[7,-1],[3,-30],[-5,-13],[8,-8],[4,-20],[5,7],[-5,6],[1,14],[6,4],[-1,26],[-8,24],[-3,21],[4,10],[-3,13],[-11,2],[-4,-15],[-6,4],[11,20],[4,1],[21,26],[38,39],[6,9],[12,-7],[5,-7],[3,-47],[0,-30],[-10,-34],[2,-17]],[[8127,1307],[-5,-8],[5,-24],[7,-6],[6,13],[21,17],[-18,-20],[-15,-27],[7,-17],[9,7],[0,14],[6,13],[3,-4],[-6,-28],[-9,-13],[-14,-28],[1,-16],[-8,-31],[0,-14],[8,-9]],[[1471,4873],[-161,11],[-46,5]],[[1468,5474],[30,-353],[-27,-248]],[[1322,5521],[146,-47]],[[7041,8377],[-1,15],[6,-1],[5,9],[9,1],[3,8],[-15,19],[-4,38],[2,16],[-6,14],[2,9],[42,47],[-24,142],[9,-7]],[[7165,8325],[-3,5],[-32,-23],[-30,-26],[-27,-35]],[[7200,8393],[-16,1],[-4,-5],[-5,-36],[-10,-28]],[[7199,8388],[1,5]],[[7200,8393],[-1,-5]],[[7240,8613],[-5,-3],[0,-42],[10,4],[9,-28],[-4,-4],[11,-23],[1,-27],[-24,-7],[-8,-17],[5,-14],[-1,-16],[-21,-14],[-9,1],[-8,-21],[4,-9]],[[7240,8614],[0,-1]],[[7069,8687],[82,-51],[42,41],[12,-57],[30,8],[5,-14]],[[4842,8902],[197,-14],[136,-7]],[[4832,8512],[10,390]],[[5158,8546],[-7,-91]],[[9343,5100],[27,-8],[9,-9],[17,-4],[14,-11],[33,-19],[10,-4],[38,-28],[53,-53],[13,-5],[36,-41],[7,-14],[30,-45],[20,-38],[26,-60],[7,-10],[6,-21],[11,-25],[10,-30],[4,-6],[7,-25],[9,-20],[18,-59],[21,-59],[3,-15],[16,-51]],[[9592,4611],[-1,-9],[-14,-11],[-10,6],[-9,-8],[-1,18],[-19,125],[-10,45],[-7,24],[-24,57],[-27,45],[-22,27],[-40,36],[-26,16],[-12,10],[-7,11]],[[9593,4610],[-1,1]],[[9564,4379],[1,30],[-1,85],[-3,58],[-5,29],[-4,5],[21,-3],[4,-15],[-1,19],[17,16],[0,7]],[[5953,8841],[-14,-31],[2,-24],[-13,-38],[6,-32],[9,-72],[5,-12],[6,32],[8,-16],[-6,-30]],[[5710,8853],[73,-3],[123,-6],[47,-3]],[[5603,8544],[21,-3],[18,11],[7,47],[14,-54],[49,52],[-5,8],[10,2],[-1,7],[16,4],[8,8],[-5,28],[-7,12],[14,4],[-6,64],[-5,27],[-6,11],[-10,-5],[-3,27],[-7,-2],[-4,10],[13,23],[-4,28]],[[5612,8347],[-14,130],[2,18],[3,49]],[[5821,8569],[-209,-222]],[[5923,8540],[-11,4],[-26,-8],[-8,8],[-6,17],[-8,-5],[8,-41],[-11,11],[-2,10],[-17,2],[-5,-5],[-1,9],[-15,27]],[[5956,8618],[-27,-7],[-11,-48],[6,-12],[-1,-11]],[[982,6403],[-5,-238]],[[749,6230],[51,130],[182,43]],[[712,6138],[37,92]],[[5198,5593],[-11,44],[14,12],[-22,42],[33,9],[-20,264]],[[5424,5547],[-29,-39],[0,-58]],[[5318,5960],[-8,-48],[53,-137],[32,-6],[-2,-12],[42,-1],[3,-6],[-2,-34],[5,-9],[-2,-12]],[[5089,4652],[0,59],[-4,138],[2,80],[5,86],[2,19],[-47,-18],[-1,148]],[[5340,4665],[-251,-13]],[[3449,5162],[214,-9]],[[3445,4791],[4,371]],[[3645,4784],[-17,1],[-183,6]],[[3663,5153],[0,-23],[3,-13],[-3,-35],[0,-35],[-2,-47],[-10,-21],[-1,-20],[-5,-15],[0,-20],[8,-21],[-2,-15],[-12,-22],[-2,-28],[9,-29],[-1,-25]],[[6235,5806],[3,1],[19,21],[12,-1],[16,-8]],[[6206,5123],[-45,170],[-2,25],[-9,33],[3,4],[-7,60],[7,14],[-4,27],[-1,30],[-8,8]],[[6321,5233],[-40,-7],[-9,-9],[-42,-33],[-24,-61]],[[6285,5819],[13,-30],[7,-5],[6,-31],[0,-24],[5,-4],[-1,-17],[7,-10]],[[3217,6451],[6,15],[7,2],[-1,-11],[6,2],[0,11],[-7,9],[7,0],[-5,12],[9,-5],[6,3],[12,29],[19,5],[0,15],[9,11],[12,-2],[0,46],[3,-10],[5,11],[-5,8],[5,16],[7,4],[-2,15],[7,14],[8,20],[9,4],[0,20]],[[3270,5943],[1,14],[-5,4],[5,31],[5,7],[-1,25],[3,5],[1,22],[-5,19],[-1,24],[5,3],[-4,10],[0,31],[-4,34],[-6,7],[5,5],[-3,12],[10,4],[0,26],[7,21],[-4,17],[-10,4],[-5,9],[2,27],[-3,9],[-11,5],[-6,9],[-16,10],[7,38],[0,22],[-12,8],[3,13],[-7,6],[3,21],[-7,6]],[[3620,6391],[21,-20],[-2,-15],[-10,-21],[-13,-16],[-2,-78],[-14,2],[4,-85],[13,-4],[0,-27]],[[3611,6390],[9,1]],[[3406,6745],[12,0],[8,-97],[7,2],[4,-43],[-8,-2],[14,-167],[36,21],[0,-12],[141,47],[-5,-18],[-1,-28],[2,-11],[-11,-13],[-1,-35],[7,1]],[[7627,2976],[-3,5],[3,28],[-15,32],[-7,34],[4,42],[3,23]],[[7627,2978],[0,-2]],[[7629,2979],[-2,-1]],[[7630,2980],[-1,-1]],[[7630,2974],[0,6]],[[7636,2971],[-5,2]],[[7646,2978],[-10,-7]],[[7651,2987],[-5,-6]],[[7656,3002],[-5,-15]],[[7660,3005],[-4,-3]],[[7666,3016],[2,-7],[-8,-4]],[[7667,3022],[-1,-6]],[[7668,3023],[-1,-1]],[[7893,2946],[12,9],[-10,14],[-9,-16],[4,-18],[-17,4],[0,5],[-12,18],[-8,2],[4,-11],[11,-9],[-6,-3],[12,-20],[-6,-4],[-12,11],[-6,11],[-13,7],[-22,2],[-2,11],[-20,7],[16,2],[6,14],[0,26],[14,16],[6,-10],[7,7],[-12,6],[-2,9],[-7,-12],[-4,19],[11,19],[7,2],[-2,12],[-15,29],[-8,-4],[-9,13],[4,5],[-1,29],[7,-2],[3,13],[21,-16],[9,10],[9,-5],[1,10],[10,0],[-1,-18],[5,-14],[11,-3],[-10,10],[-5,13],[0,17],[-24,-5],[0,-7],[-18,8],[-4,7],[-7,-14],[-12,0],[-3,8],[-1,-23],[-13,15],[-2,14],[-6,-3],[13,-28],[11,-16],[1,-8],[9,-15],[2,-28],[-9,-5],[8,-6],[-3,-10],[-10,15],[-6,1],[-3,13],[8,-7],[1,8],[-19,19],[-7,16],[6,-21],[-11,-7],[9,0],[8,-6],[0,-10],[6,-6],[-6,-21],[7,-2],[17,4],[5,-13],[-20,-14],[2,-7],[-6,-13],[-18,-10],[-7,11],[-12,-3],[-7,3],[18,-25],[1,-20],[14,-11],[-4,-11],[5,-17],[-6,-3],[-10,22],[-9,12],[-11,1],[-15,30],[2,22],[-5,-9],[-2,-26],[-9,3],[6,14],[0,10],[-14,17],[2,23],[3,-2],[5,24],[-5,25],[0,16],[5,20],[7,4],[1,30],[-14,16],[-4,15],[-5,-15],[-9,-9],[-5,19],[-5,-13],[10,-13],[9,4],[4,20],[11,-19],[3,-15],[-3,-18],[-5,-6],[-5,-17],[0,-27],[-5,-22],[-4,-46],[-5,6],[-5,20],[-14,2],[-3,-5]],[[7932,3043],[-15,-10],[-10,11],[-14,6],[0,-10],[5,-7],[7,7],[7,-9],[-1,-21],[8,-8],[10,0],[-3,-13],[12,-9],[6,10],[0,13],[6,-2],[9,-26],[12,-11],[18,-9],[3,-10],[-9,-4],[0,-7],[12,-10],[-6,-6],[-14,24],[-6,-8],[4,-7],[-12,1],[-8,7],[3,-11],[7,-3],[8,-14],[0,-15],[7,-7],[-6,-27],[-17,-34],[-9,-22],[-7,-13],[-12,-31],[-14,-24],[-6,-6],[22,40],[5,21],[19,36],[12,41],[-4,5],[-10,-8],[-14,7],[-10,11],[-10,22],[0,11],[-20,25],[-4,7]],[[8029,3144],[2,-21],[-3,-8],[2,-19],[11,-4],[0,-15],[12,-14],[0,-6],[-22,12],[-5,-8],[10,-11],[1,-9],[-15,3],[-10,-2],[-3,-28],[5,-1],[-3,-18],[6,-13],[-17,6],[2,12],[-12,-3],[0,5],[-11,17],[-13,2],[-5,26],[13,14],[0,17],[-6,6],[-12,-20],[-2,11],[-8,9],[9,1],[0,13],[5,7],[-14,-2],[2,-14],[-7,3],[-1,-14],[5,-1],[6,-17],[5,3],[7,-35],[-17,-5],[-6,-7],[-5,-17],[-6,14],[-2,24],[5,6]],[[8030,3143],[-1,1]],[[8031,3140],[-1,3]],[[8022,3156],[9,-16]],[[7635,3534],[83,-154],[64,8]],[[7992,2980],[8,-1],[-7,-11],[-1,12]],[[2990,7718],[200,-52]],[[2850,7253],[104,28],[36,437]],[[2867,7092],[-17,161]],[[3190,7666],[-1,-233],[-45,3],[6,-7],[-1,-11],[6,-10],[-5,-11],[-1,-32],[10,-24],[3,-17],[-5,-10],[1,-28],[-4,-7],[13,-15],[-1,-34],[5,-20],[-6,-14],[4,-29]],[[6470,3026],[-9,3]],[[6461,3029],[0,-2]],[[6627,3306],[3,-8],[10,-2],[5,13],[-1,-16],[9,-44],[1,-16],[5,-12],[-2,-28],[-7,14],[-5,-28],[-6,-12],[1,-9],[-6,-13],[-18,4],[2,-45],[-3,-22],[1,-15],[-34,-98],[-13,-4],[-4,-35],[-8,-22],[-5,-3],[-10,-20],[-9,-12],[-7,-23],[-17,-13],[-15,-25],[-19,16],[-14,-4],[8,-16],[-13,-3],[-8,-6],[-2,26],[8,21],[-4,11],[3,36],[10,-4],[-7,50]],[[6564,3302],[63,4]],[[6471,3002],[0,24]],[[6456,2939],[5,5],[0,15],[8,15],[3,-5],[3,23],[-4,9]],[[6611,7116],[4,12],[15,7],[-11,-29],[9,-7],[-3,-9],[13,-9],[-3,-6],[24,-19],[0,-13],[9,-17],[34,-24],[10,26],[12,-8]],[[6606,7051],[0,13],[7,15],[-2,17],[0,20]],[[6779,6863],[-23,6],[-14,-8],[-11,6],[-38,2],[-24,45],[-17,38],[2,9],[-10,26],[-5,-9],[-23,56],[-10,17]],[[6774,6968],[-18,-58],[14,-5],[9,-42]],[[6772,6990],[-3,2],[5,-24]],[[6772,6990],[0,0]],[[6771,6993],[1,-3]],[[6771,6995],[0,-2]],[[6770,6997],[1,-2]],[[6724,7020],[6,-4],[7,6],[11,-3],[3,-12],[19,-10]],[[2512,6354],[21,16],[20,39],[20,36],[30,15],[22,9],[12,-4],[57,10],[13,-10],[13,1]],[[2554,5903],[-20,8],[-19,19],[-8,13],[-3,31],[-12,26],[-16,16],[-5,10],[-1,28],[17,76],[19,51],[10,22],[22,30],[3,27],[-1,38],[-4,31],[-11,20],[-13,5]],[[2685,5931],[-131,-28]],[[2739,6448],[0,-10],[-16,-17],[-4,-10],[-14,-16],[-1,-32],[-5,-8],[-14,-6],[-31,-27],[8,-216],[23,-175]],[[2720,6466],[11,-4],[8,-14]],[[2457,5603],[-3,-39],[4,-29],[18,-33],[11,-29],[3,-16],[-1,-24],[-17,-63]],[[2297,5613],[160,-10]],[[2266,5266],[6,41],[2,26],[5,35],[-1,17],[3,20],[11,43],[-2,40],[1,9],[-7,14],[8,27],[3,24],[2,51]],[[2562,5182],[-9,-7],[-8,11],[-12,-4],[-5,-42],[-3,-1],[-15,14],[-8,2],[-10,-6],[-19,0],[-22,19],[-8,30],[5,10],[-4,18],[-7,4],[-17,-12],[-11,5],[-15,-2],[-9,-8],[-16,-6],[-5,-13],[-5,-24],[0,-33],[-8,-2],[-8,17],[0,8],[-8,27],[-8,7],[-11,38],[-13,1],[-3,17],[1,14],[-5,9],[-12,-6],[-18,-1]],[[232,6487],[14,75],[37,205],[9,56]],[[309,6254],[8,85],[-43,46],[1,75],[-43,27]],[[410,6254],[0,-3],[-101,3]],[[1870,5252],[-6,58],[-40,22]],[[2266,5266],[-32,-153]],[[2293,5738],[4,-125]],[[5821,8569],[34,-265],[10,-64],[4,-54],[10,-66],[22,-184]],[[5599,8100],[5,89],[5,106],[3,52]],[[5791,7807],[-143,178],[-10,96],[-39,19]],[[5871,7839],[-67,-48],[-13,16]],[[5901,7936],[12,-69],[-42,-28]],[[2159,6356],[1,-47]],[[2051,6810],[100,25]],[[1928,6694],[-2,86],[125,30]],[[1928,6693],[0,1]],[[1941,6194],[-13,499]],[[4603,8421],[-11,-433],[20,2],[-2,-39],[-19,3],[-1,-47],[70,-6]],[[4411,8258],[42,35],[6,-7],[43,30],[-2,7],[8,6],[2,-8],[26,17],[-2,6],[8,6],[-4,16],[65,55]],[[4267,7834],[11,22],[9,1],[36,62],[-12,19],[34,66],[78,213],[-12,41]],[[4432,7583],[-165,251]],[[4660,7901],[-13,-178]],[[6052,6998],[36,-21],[10,-4],[8,9],[5,17],[3,-2],[7,23],[45,16],[29,-20],[0,5]],[[6073,6496],[0,44],[-4,65]],[[6259,6740],[3,-28],[-4,-8],[2,-12],[-7,-24],[12,-4],[7,-9],[-10,-19],[-2,-11],[-13,-3],[-2,-18],[-14,-2],[1,-18]],[[6861,1707],[0,-40],[-4,7],[-2,27],[6,6]],[[6717,1735],[-6,-6],[-3,10],[9,2],[0,-6]],[[6855,1656],[1,1]],[[6856,1657],[-1,1]],[[6855,1658],[-2,2]],[[6853,1660],[0,1]],[[6853,1661],[2,-5]],[[6740,1681],[1,0]],[[6739,1674],[1,7]],[[6739,1675],[0,-1]],[[6741,1681],[-2,-6]],[[6732,1692],[3,5]],[[6732,1692],[0,0]],[[6734,1694],[-2,-2]],[[6735,1695],[-1,-1]],[[6735,1697],[0,-2]],[[6827,1658],[1,-4]],[[6826,1657],[1,1]],[[6827,1653],[-1,4]],[[6828,1654],[-1,-1]],[[6780,2680],[5,-58],[32,-66],[21,-65],[14,-51],[5,-39],[17,-46],[15,-35],[5,-25],[-5,-8],[5,-25],[0,-20],[-4,-32],[1,-39],[3,-34],[-7,-26],[-16,-26],[1,-18],[10,-26],[19,-56],[7,-25],[1,-19],[8,-49],[-6,-34],[3,-23],[-4,-11],[5,-50],[10,-49],[-19,-17],[13,-88],[18,-55]],[[6609,2169],[8,131],[6,35],[-3,20],[4,14],[38,270],[12,74],[24,0],[82,-33]],[[6804,1651],[-3,7],[0,-19],[-21,26],[-20,3],[-2,16],[-7,13],[-2,32],[-4,21],[-18,-11],[-11,31],[-9,20],[0,10],[-7,-3],[-5,7],[2,19],[-9,-6],[-8,7],[-11,-3],[-6,19],[-15,2],[8,-7],[2,-36],[11,-17],[3,-10],[19,-23],[12,-23],[4,0],[18,-38],[2,-31],[7,-4],[-5,-23],[-4,-6],[1,-25],[10,-14],[15,-2],[-15,-19],[-24,-2],[-9,-11],[-22,-11],[-7,-15],[0,-10],[-13,5],[-2,14],[-5,137],[-10,180],[-2,21],[-14,236],[-19,61]],[[6818,1692],[-4,0],[-2,-26],[-8,-15]],[[6866,1647],[-7,17],[5,-3],[3,58],[-1,14],[-8,27],[-5,26],[0,48],[-10,35],[-5,34],[-8,2],[-11,31],[-1,-40],[-9,14],[-6,0],[-8,24],[4,24],[1,47],[-1,12],[7,9],[3,16],[-3,9],[2,18],[-5,7],[6,4],[8,36],[-5,32],[11,10],[1,31],[7,34],[4,10],[-6,12],[4,12],[-4,21],[4,37],[-4,4],[4,16],[10,4],[4,-10],[4,8],[-8,2],[-10,-4],[-4,-20],[4,0],[-2,-11],[2,-20],[-4,-6],[2,-25],[-3,-10],[4,-8],[-4,-19],[-6,-11],[-1,-45],[-13,-9],[1,-23],[-9,0],[6,-9],[-2,-18],[-9,-18],[0,-45],[-5,-5],[0,-53],[5,-13],[-5,-33],[0,-24],[13,-22],[3,-23],[16,-57],[2,-18],[2,-31],[-8,-13],[0,-54]],[[6813,1630],[11,-7],[2,-13],[15,-14],[0,19],[2,14],[14,1],[2,7],[21,-11],[7,-26],[4,-31],[10,-7],[0,-11],[13,6],[-8,14],[2,12],[-21,34],[1,13],[-8,10],[-9,-3],[-5,10]],[[6812,1632],[1,-2]],[[6937,1565],[-14,-7],[-22,-21],[-9,-22],[0,-33],[9,-20],[-5,-17],[4,-16],[-6,-8],[-4,5],[-1,40],[-3,18],[6,23],[-18,31],[-17,20],[-35,23],[-27,5],[-17,7],[-33,3],[4,17],[12,-4],[19,11],[9,-1],[13,4],[10,9]],[[6826,1661],[19,-7],[0,19],[8,0],[0,-12]],[[6826,1658],[0,3]],[[6827,1658],[-1,0]],[[6828,1653],[-1,5]],[[6828,1654],[0,-1]],[[6828,1653],[0,1]],[[6827,1653],[1,0]],[[6824,1654],[3,-1]],[[6824,1653],[0,1]],[[6824,1651],[0,2]],[[6832,1636],[-8,15]],[[6832,1636],[0,0]],[[6855,1656],[-2,-12],[-16,-11],[-5,3]],[[6856,1657],[-1,-1]],[[6855,1658],[1,-1]],[[6853,1661],[2,-3]],[[6843,1810],[7,-9],[-3,-21],[-7,4],[1,26],[2,0]],[[6837,1722],[4,-8],[-3,-17],[-6,0],[5,25]],[[6764,1629],[1,-12],[-7,5],[6,7]],[[6835,1624],[2,-15],[-7,10],[5,5]],[[6848,1749],[-10,18],[5,9],[5,-27]],[[6824,1651],[-5,-4],[5,28],[2,-14]],[[6824,1654],[0,-1]],[[6826,1657],[-2,-3]],[[6826,1658],[0,-1]],[[6746,1674],[4,-14],[-4,-2],[0,16]],[[6712,1742],[-7,4],[6,10],[4,-11]],[[6715,1745],[-3,-3]],[[6777,1644],[-12,9],[4,7],[8,-16]],[[6735,1697],[3,-16],[-6,11]],[[6735,1697],[0,0]],[[6734,1694],[1,1]],[[6732,1692],[2,2]],[[6726,1708],[4,-9]],[[6726,1709],[0,-1]],[[6727,1699],[-1,10]],[[6727,1699],[0,0]],[[6730,1699],[-3,0]],[[6339,6165],[0,-1],[71,-95],[56,-91],[53,-30],[58,-87]],[[6338,6160],[1,5]],[[6285,5819],[53,331],[0,10]],[[6553,5786],[0,0]],[[6577,5861],[-5,-12],[7,-5],[-2,-12],[-10,-18],[-7,-22],[-7,-6]],[[7216,6239],[-2,-9],[-10,-9],[-15,3],[0,11],[21,16],[6,-12]],[[7090,6087],[0,-14],[11,7],[-4,10],[33,25],[12,16],[15,9],[-2,22],[7,-3],[29,3],[-9,9],[10,8],[0,20],[6,-7],[1,-22],[6,-8],[0,-13],[-12,-8],[-9,8],[-22,-15],[-4,-10],[0,-15],[4,-8],[10,-4],[-1,-17],[6,-13],[-1,-15],[13,-30],[-2,-7]],[[7090,6087],[-5,2]],[[7075,5951],[13,8],[6,12],[-1,13],[4,25],[12,12],[5,-13],[7,-6],[-5,31],[8,-1],[-22,21],[-17,1],[0,-8],[-10,5],[2,33],[8,5]],[[7075,5950],[0,1]],[[7074,5948],[1,2]],[[7073,5945],[1,3]],[[7073,5942],[0,3]],[[7072,5941],[1,1]],[[7050,5616],[21,314],[1,11]],[[7038,5415],[12,201]],[[7150,5513],[-112,-98]],[[7216,5968],[5,-4],[-27,-412]],[[7215,5968],[1,0]],[[7214,5968],[1,0]],[[7211,5967],[3,1]],[[7211,5967],[0,0]],[[7210,5969],[1,-2]],[[7208,5970],[2,-1]],[[7187,6014],[-2,-11],[3,-15],[8,-2],[-3,-8],[3,-15],[8,-11],[-3,12],[7,6]],[[7187,6015],[0,-1]],[[7225,6234],[9,-9],[-5,-5],[-8,7],[4,7]],[[2391,7484],[67,15],[3,-28],[22,5],[-1,5],[34,7],[5,-44],[67,16]],[[2268,7382],[121,31],[4,17],[-4,29],[2,25]],[[2354,7116],[-98,-23],[12,289]],[[2598,7190],[-12,3],[-103,-46],[-18,-1],[-2,-4],[-109,-26]],[[7051,5121],[82,46],[87,34]],[[7056,5023],[-5,98]],[[7243,4967],[-13,21],[-45,7],[-61,-34],[-34,30],[-34,32]],[[7258,5115],[-29,-9],[14,-139]],[[3120,5532],[25,-301]],[[2892,5124],[-3,30]],[[3145,5231],[-99,-22],[-10,-53],[-144,-32]],[[2354,7116],[-11,-233]],[[2110,7343],[158,39]],[[2064,7073],[11,263],[35,7]],[[2051,6810],[13,263]],[[1008,9191],[-9,-195]],[[603,8526],[126,686],[279,-21]],[[728,8514],[-125,12]],[[977,8490],[-249,24]],[[984,8681],[-7,-191]],[[999,8996],[-27,3],[-7,-154],[27,-3],[-8,-161]],[[6519,8232],[3,23],[9,21],[2,14],[4,33],[11,14],[16,-13],[16,-55],[21,-30]],[[6410,7904],[-4,9],[-10,1],[-3,10],[3,23],[-4,10],[6,9],[-25,39],[7,9],[3,26],[-2,24],[11,16]],[[6507,7729],[-77,139],[-6,6],[-14,30]],[[6601,7817],[-94,-88]],[[4251,8430],[-135,-128],[-32,-42]],[[4266,8937],[-15,-507]],[[3908,8965],[89,-6],[269,-22]],[[6453,7327],[74,64],[19,-20],[10,42],[18,12],[61,47],[33,3]],[[6474,7245],[11,24],[-15,27],[-6,2],[-11,29]],[[6564,7242],[-90,3]],[[1147,7922],[12,87],[42,-16],[9,67]],[[1123,7625],[4,28],[-18,8],[38,261]],[[1253,7575],[-130,50]],[[1500,7675],[-22,-189],[-5,2]],[[7043,6821],[-4,-12],[-7,0],[-3,17],[7,3],[7,-8]],[[7034,6978],[14,-13],[3,7],[17,-6],[4,-13],[-11,-6],[-5,-19],[0,-25],[5,-19],[10,-11],[0,18]],[[7027,6965],[7,13]],[[7026,6963],[1,2]],[[7022,6959],[4,4]],[[7067,6759],[-11,10],[-7,13],[0,22],[9,4],[1,-13],[5,20],[-5,7],[2,33],[-20,0],[-24,-19],[-6,0],[-23,20],[4,27],[8,3],[1,31],[-4,14],[12,12],[8,-1],[5,17]],[[7072,6767],[-5,-8]],[[7072,6888],[3,-15],[-5,-4],[5,-32],[8,-7],[1,-10],[-11,6],[-7,-23],[0,-15],[6,-21]],[[7072,6890],[0,-2]],[[7071,6891],[1,-1]],[[6980,6891],[7,-1],[-10,-44],[8,-25],[-6,-9]],[[6979,6812],[-27,2],[11,67],[17,10]],[[6412,7425],[44,85],[15,15],[4,9],[34,21],[-5,16],[5,5],[2,47],[-4,106]],[[6453,7327],[-11,21],[-5,2],[-8,21],[-24,40],[7,14]],[[4756,6605],[45,60],[17,-75],[31,-108]],[[4551,6333],[205,272]],[[4602,5968],[-75,333]],[[4768,5865],[-19,67],[-8,18],[-9,45],[-130,-27]],[[4951,6055],[-6,-20]],[[1460,7379],[308,-106]],[[1562,6735],[-2,13],[-10,10],[-11,31],[-4,5],[-1,26],[-9,32],[3,8],[-8,4],[8,19],[3,17],[-13,19],[-1,7],[-10,10],[-5,43],[-5,9],[3,39],[-90,-20]],[[1750,6661],[-27,-6],[-1,56],[-160,24]],[[1749,6706],[1,-45]],[[1768,7273],[-66,-14],[47,-553]],[[5986,5128],[121,4],[85,-47]],[[5716,4795],[189,37],[63,215],[18,81]],[[5711,4691],[5,104]],[[5925,4698],[-214,-7]],[[6192,5085],[-7,-34],[2,-79],[-7,-28],[2,-86]],[[9062,2839],[-4,4],[4,15],[18,-1],[-8,3],[-3,13],[4,14],[10,13],[7,-11],[-2,22],[14,24],[25,13],[-2,-9],[12,-1],[9,16],[3,14],[6,-1],[6,-16],[7,-5],[8,9],[4,-25],[9,8]],[[9033,2484],[37,263],[-3,78],[-5,14]],[[9033,2478],[0,6]],[[9032,2474],[1,4]],[[9292,2844],[-9,12],[-1,8],[-9,-5],[-4,-13],[-5,-1],[-1,-21],[-12,6],[-36,2],[-9,-26],[4,-3],[24,23],[15,0],[22,-9],[10,4],[9,-4],[8,-18],[10,0],[9,-17],[-2,-10],[-5,10],[-8,0],[4,-22],[13,12],[3,-23],[9,-20],[10,-8],[9,-14],[-8,-8],[0,-12],[-14,-12],[-5,5],[1,-18],[-11,-40],[-9,8],[-10,-4],[-10,-49],[-10,-11],[-4,-17],[-22,-32],[-5,-33],[4,-27],[-3,0],[-29,-13],[-32,-32],[2,32],[-3,-18],[-9,2],[-7,-11],[-6,16],[-9,-13],[0,-13],[14,0],[6,7],[0,10],[8,-3],[-1,-9],[5,-12],[-20,-5],[-44,-32],[-15,-14],[-16,-30],[-3,-11],[1,-15],[-15,-47],[-16,-6],[-5,17],[1,10],[-7,27],[3,11],[-3,26],[10,23],[20,-2],[-3,-10],[-19,-18],[9,-7],[11,0],[0,17],[5,12],[4,21],[12,18],[4,-16],[13,-1],[-14,8],[6,11],[22,-11],[2,20],[-2,27],[-5,11],[-7,1],[-3,-11],[-10,10],[-9,20],[-11,11],[0,18],[10,11],[0,11],[-8,-2],[-10,16],[0,-28],[9,0],[-6,-6],[3,-23],[-22,-8],[-23,20]],[[9200,2945],[15,-3],[4,-5],[12,9],[13,-16],[-3,-19],[35,-34],[8,-4],[12,-20],[-4,-9]],[[9199,2941],[1,4]],[[9199,2939],[0,2]],[[9198,2939],[1,0]],[[9198,2941],[0,-2]],[[9197,2942],[1,-1]],[[9198,2944],[-1,-2]],[[9199,2946],[-1,-2]],[[9199,2947],[0,-1]],[[9198,2948],[1,-1]],[[9197,2948],[1,0]],[[9195,2947],[2,1]],[[9193,2949],[2,-2]],[[9192,2949],[1,0]],[[9189,2949],[3,0]],[[9189,2938],[0,11]],[[2923,8124],[14,8],[3,13],[20,21],[21,33],[7,3],[3,14],[13,12],[-2,24],[10,10],[8,12],[5,22],[9,14],[24,0],[22,-24],[21,-36],[24,0],[11,-14],[17,13],[14,-1],[5,8],[9,1],[10,-6],[20,-20]],[[2990,7718],[4,49],[-55,-12]],[[3224,7947],[-5,-288],[-29,7]],[[7190,8198],[-14,4],[-18,45],[12,57],[-5,21]],[[7501,8157],[-9,-25],[-16,-5],[-4,-9],[-20,32],[-22,46],[-182,-1],[-58,3]],[[7199,8388],[1,0],[120,-77],[168,-98]],[[4756,6605],[-61,448],[18,-5]],[[4923,6942],[-33,-22],[-16,-76],[-12,-161],[-2,-191]],[[6793,4890],[122,34],[9,-79],[98,28]],[[6836,4495],[-43,395]],[[7045,4656],[1,-22],[-31,-21],[-34,-36],[-143,-96]],[[7022,4873],[5,-52],[18,-165]],[[3620,6391],[116,19],[-4,-23],[0,-15],[16,-2],[7,3],[2,-21],[46,17],[-3,-86],[30,24]],[[3895,6046],[-4,-32],[-17,-14],[-4,-104],[-9,9],[-19,37],[-34,-145],[5,-109],[-19,12]],[[6915,9371],[1,27],[6,24],[15,24],[24,27],[10,23],[3,20],[-2,15]],[[7061,9213],[-80,81],[-57,65],[-9,12]],[[7199,9393],[-24,-40],[-38,-30],[-33,-45],[-2,1],[-15,-20],[-14,-2],[-12,-44]],[[7155,9562],[7,-5],[-3,-15],[6,-19],[-6,-15],[2,-23],[38,-92]],[[7151,9570],[4,-8]],[[7151,9572],[0,-2]],[[7152,9578],[-1,-6]],[[7145,9584],[7,-6]],[[7143,9586],[2,-2]],[[7135,9606],[8,-20]],[[7055,9605],[22,-16],[31,2],[15,5],[12,10]],[[6335,7672],[-24,-100]],[[6129,7757],[8,-3],[62,39],[9,2],[38,-16],[21,0],[5,-9],[13,19],[21,-35],[7,-1],[9,-50],[13,-31]],[[6098,7647],[3,28],[21,38],[7,5],[0,39]],[[6175,7426],[-24,41],[-9,2],[-6,9],[-7,-2],[-8,12],[-12,-14],[-17,38],[-2,12],[10,8],[-7,18],[3,28],[0,32],[2,37]],[[6223,7387],[-14,5],[-11,-6],[-3,9],[-20,31]],[[6311,7572],[-31,-31],[-13,-40],[-14,-13],[-30,-101]],[[2917,6485],[-20,265]],[[2961,5992],[-44,493]],[[3220,6679],[7,-15],[0,-12],[6,-10],[-6,-17],[5,-13],[-7,-14],[7,-17],[-9,-5],[2,-17],[-5,-17],[2,-19],[-4,-3],[-5,-26],[-8,-10],[3,-17],[9,-16]],[[5595,5213],[-5,15],[1,10],[-6,19],[8,12],[-4,12],[1,12]],[[5599,4686],[0,292]],[[5711,4691],[-112,-5]],[[5757,5404],[-4,-36],[-3,-71],[-7,-92],[-15,-113],[-5,-67],[-6,1],[-1,-59],[3,0],[1,-117],[-4,-55]],[[6417,7114],[24,-9],[0,11],[29,-23],[30,-14],[26,-21],[-2,-2],[34,-27]],[[6393,7060],[24,54]],[[6558,7029],[-17,-39],[2,-21],[0,-22],[-8,-5],[12,-36],[5,-34]],[[6742,3424],[7,-20],[-3,-6],[-20,-4],[0,14],[-7,-16],[5,-24],[-3,-1],[-6,-24],[-9,-8],[-3,-25],[-5,-14],[-12,-15],[-6,-16],[-8,0],[2,8],[-3,29],[-7,7],[-3,21],[6,7],[2,13],[-2,51],[-3,15],[18,20],[11,28],[-3,16],[-11,-1],[-8,7],[1,20],[-8,15],[9,13],[0,12],[14,9],[4,14],[0,31],[-8,16],[0,23],[-6,16],[3,18],[10,11],[3,12],[-5,6],[4,23],[8,7],[1,52],[2,15],[6,6],[18,3]],[[6738,3418],[4,6]],[[6736,3417],[2,1]],[[6735,3418],[1,-1]],[[6732,3418],[3,0]],[[6732,3419],[0,-1]],[[6890,3469],[-145,5],[-13,-29],[0,-26]],[[6971,3603],[-81,-134]],[[5149,7133],[83,-53],[73,-73]],[[5098,6956],[6,42],[24,-9],[21,144]],[[5105,6808],[-4,1],[20,132],[-23,15]],[[5305,7007],[67,-65],[-77,-103],[13,-17]],[[2845,8746],[17,-99],[-140,-34],[-2,-4]],[[2564,9071],[226,-19]],[[2596,8582],[-21,85],[12,53],[-23,351]],[[2720,8609],[-7,2],[-117,-29]],[[7221,7943],[8,48],[0,95],[-39,112]],[[7547,8039],[-12,-6],[-12,-17],[-15,-11],[-12,-20],[-14,-13],[-17,-15],[-19,3],[-8,-11],[-10,6],[-14,-6],[-11,-16],[-8,6],[0,11],[-8,1],[-12,-13],[2,-12],[-5,1],[-13,-14],[-1,14],[-8,-3],[-7,13],[-8,-5],[-16,-29],[-7,-22],[-9,9],[-21,-6],[-5,14],[3,11],[7,6],[4,53],[-6,17],[-12,-7],[15,-17],[-7,-37],[-4,-7],[-10,0],[5,-7],[-4,-6],[-9,15],[-8,-3],[-12,15],[-16,-4],[-2,16]],[[7547,8045],[0,-5]],[[7548,8050],[-1,-3]],[[7548,8052],[0,-2]],[[7547,8053],[1,-1]],[[6582,6812],[12,-4],[7,14],[14,17],[-4,15],[3,10],[10,1],[15,-30],[13,-1],[4,-11],[1,-35],[-1,-32],[8,-15],[10,-5],[19,-1],[29,9],[42,30],[6,10],[5,29],[13,24],[15,0],[-9,17],[-15,5],[0,4]],[[6545,6600],[-10,19],[-19,-1],[-4,31],[7,10],[-24,62],[3,19],[18,41]],[[6524,6438],[36,-58],[14,17],[19,31],[10,25],[10,34],[26,66],[5,8],[4,-7],[10,6],[1,15],[7,26],[1,13],[7,16],[-2,16],[4,21],[12,17],[-5,18],[2,17],[-45,12],[-18,-17],[-16,-19],[-18,-32],[-14,-13],[2,-7],[-31,-43]],[[6451,6310],[34,70],[39,58]],[[6460,6295],[-9,15]],[[6581,6080],[-6,65],[-15,15],[-18,-19],[-29,50],[-9,19],[-6,3],[4,22],[-5,17],[1,14],[-8,7],[-17,-5],[-5,20],[-8,7]],[[6614,6091],[-8,0],[-10,-13],[-15,2]],[[6615,6092],[-1,-1]],[[6616,6094],[-1,-2]],[[6622,6103],[-6,-9]],[[6623,6108],[-1,-5]],[[6623,6114],[0,-6]],[[6624,6115],[-1,-1]],[[6625,6117],[-1,-2]],[[6625,6118],[0,-1]],[[6627,6118],[-2,0]],[[6628,6118],[-1,0]],[[6630,6119],[-2,-1]],[[6632,6119],[-2,0]],[[6633,6118],[-1,1]],[[6635,6118],[-2,0]],[[6638,6120],[-3,-2]],[[6653,6131],[-4,-7],[-11,-4]],[[6654,6134],[-1,-3]],[[6662,6154],[-8,-20]],[[6664,6158],[-2,-4]],[[6668,6165],[-4,-7]],[[6669,6167],[-1,-2]],[[6669,6168],[0,-1]],[[6669,6169],[0,-1]],[[6671,6172],[-2,-3]],[[6672,6174],[-1,-2]],[[6673,6176],[-1,-2]],[[6674,6177],[-1,-1]],[[6674,6178],[0,-1]],[[6678,6179],[-4,-1]],[[6679,6179],[-1,0]],[[6681,6179],[-2,0]],[[6682,6178],[-1,1]],[[6682,6177],[0,1]],[[6683,6176],[-1,1]],[[6686,6176],[-3,0]],[[6690,6177],[-4,-1]],[[6691,6176],[-1,1]],[[6692,6176],[-1,0]],[[6693,6172],[-1,4]],[[6693,6171],[0,1]],[[6693,6170],[0,1]],[[6696,6170],[-3,0]],[[6698,6172],[-2,-2]],[[6702,6177],[-4,-5]],[[6703,6179],[-1,-2]],[[6706,6184],[-3,-5]],[[6710,6189],[-4,-5]],[[6712,6191],[-2,-2]],[[6712,6196],[0,-5]],[[6716,6204],[-4,-8]],[[6717,6205],[-1,-1]],[[6717,6208],[0,-3]],[[6720,6213],[-3,-5]],[[6720,6213],[0,0]],[[6721,6215],[-1,-2]],[[6722,6215],[-1,0]],[[6725,6213],[-3,2]],[[6726,6213],[-1,0]],[[6727,6213],[-1,0]],[[6729,6212],[-2,1]],[[6731,6212],[-2,0]],[[6732,6213],[-1,-1]],[[6732,6219],[0,-6]],[[6732,6221],[0,-2]],[[6732,6226],[0,-5]],[[6732,6227],[0,-1]],[[6732,6229],[0,-2]],[[6734,6230],[-2,-1]],[[6738,6230],[-4,0]],[[6749,6226],[-11,4]],[[6755,6229],[-6,-3]],[[6756,6230],[-1,-1]],[[6763,6230],[-7,0]],[[6766,6233],[-3,-3]],[[6767,6234],[-1,-1]],[[6782,6238],[-15,-4]],[[6785,6238],[-3,0]],[[6790,6238],[-5,0]],[[6790,6238],[0,0]],[[6795,6242],[-5,-4]],[[6797,6242],[-2,0]],[[6799,6241],[-2,1]],[[6801,6240],[-2,1]],[[6803,6234],[-2,6]],[[6855,6392],[3,-13],[7,-8],[7,3],[5,-13],[-1,-29],[-9,-15],[-1,-30],[-8,-12],[-12,11],[-15,-6],[-5,-11],[5,-23],[-22,-28],[-6,16]],[[6853,6396],[2,-4]],[[6853,6397],[0,-1]],[[6853,6404],[0,-7]],[[6853,6406],[0,-2]],[[6945,6624],[2,19],[-3,7],[-21,-1],[-6,-12],[3,-17],[7,-10],[-12,5],[-14,-8],[-13,-16],[-27,3],[-10,-14],[0,-13],[11,-20],[14,-11],[4,-13],[10,-5],[0,-17],[-13,-21],[-18,24],[-9,-9],[10,-7],[-7,-44],[-5,-4],[0,23],[-12,2],[-3,-15],[10,-20],[9,5],[9,-4],[0,-15],[-8,-10]],[[6947,6624],[-2,0]],[[6774,6968],[4,-14],[12,-17],[19,-1],[3,-13],[7,11],[26,-6],[3,-24],[-30,9],[6,-8],[23,-5],[-9,-37],[-10,-3],[-9,-13],[-5,4],[-2,-24],[16,11],[14,-8],[3,-15],[-5,-14],[0,-15],[8,0],[-7,-11],[2,-18],[-17,-54],[-13,-13],[16,6],[18,52],[13,3],[-2,-9],[8,0],[-2,-18],[6,18],[2,-4],[-2,-20],[6,18],[3,-3],[-7,-16],[5,-5],[9,17],[30,-26],[1,-7],[-11,0],[4,-8],[10,1],[0,-6],[-43,-2],[-12,-23],[6,1],[4,12],[33,-2],[3,4],[31,0],[12,-17],[4,-19],[-11,-13]],[[7072,6767],[10,-10],[12,3],[10,-15],[5,-16],[0,-18],[3,-23],[-9,2],[-13,30],[-13,13],[0,9],[-10,9],[0,8]],[[7019,6593],[8,-1],[3,-8],[-6,-8],[0,-12],[5,-4],[-9,-27],[-5,3],[-1,30],[-9,10],[5,16],[9,1]],[[7174,6553],[13,-3],[0,-21],[-7,-4],[-5,11],[-1,17]],[[7146,6589],[18,-8],[-17,-12],[-5,10],[4,10]],[[7114,6500],[8,-5],[-14,-15],[-10,9],[10,2],[6,9]],[[7269,6686],[4,-21],[-6,-9],[-1,27],[3,3]],[[6788,6989],[5,-3],[-10,-22]],[[6783,6964],[-1,13],[6,12]],[[6853,6406],[5,-3],[-3,-11]],[[6853,6397],[0,7]],[[6855,6392],[-2,4]],[[7005,6976],[5,3]],[[7009,6976],[-4,0]],[[7010,6977],[-1,-1]],[[7010,6979],[0,-2]],[[6761,6230],[-8,-5]],[[6759,6230],[2,0]],[[6756,6230],[3,0]],[[6755,6229],[1,1]],[[6753,6225],[2,4]],[[7012,6797],[2,-1]],[[7012,6796],[0,1]],[[7014,6795],[-2,1]],[[7015,6794],[-1,1]],[[7015,6794],[0,0]],[[7014,6796],[1,-2]],[[7015,6794],[4,-24],[-14,-24],[-9,0],[-4,9],[-18,4],[-7,-34],[0,-19],[-4,-5],[-9,8],[-22,31],[-29,30],[5,27],[0,12],[-5,6],[-2,-12],[-13,-4],[-7,9],[-6,-9],[-11,11],[-2,25],[-5,5],[-1,14],[6,6],[4,27],[-4,31],[5,10],[20,4],[1,-9],[12,4],[1,-5],[20,22],[4,0],[14,37],[-4,9],[12,12]],[[7012,6797],[3,-3]],[[6979,6812],[3,-10],[15,0],[15,-5]],[[7010,6977],[4,-4],[3,-24],[-7,3],[-17,-13],[0,-24],[-3,-4],[-21,11],[-1,7],[-14,0],[-4,-21],[-15,-17],[9,4],[3,-17],[-7,-4],[5,-17],[6,10],[8,34],[5,2],[16,-12]],[[7009,6976],[1,1]],[[7005,6976],[4,0]],[[7010,6979],[-5,-3]],[[7010,6978],[0,1]],[[7014,6983],[-4,-5]],[[7012,6985],[2,-2]],[[7009,6987],[3,-2]],[[6997,6986],[12,1]],[[6996,6987],[1,-1]],[[6668,6164],[11,-21],[0,-46],[-46,-52],[10,-30],[-6,-1],[0,-10],[-7,-9],[-10,-20]],[[6664,6158],[4,6]],[[6662,6154],[2,4]],[[6654,6134],[8,20]],[[6653,6131],[1,3]],[[6638,6120],[11,3],[4,8]],[[6635,6118],[3,2]],[[6634,6118],[1,0]],[[6633,6118],[1,0]],[[6632,6119],[1,-1]],[[6630,6119],[2,0]],[[6628,6118],[2,1]],[[6627,6118],[1,0]],[[6625,6118],[2,0]],[[6625,6117],[0,1]],[[6624,6115],[1,2]],[[6623,6114],[1,1]],[[6623,6110],[0,4]],[[6623,6109],[0,1]],[[6623,6108],[0,1]],[[6622,6103],[1,5]],[[6616,6094],[6,9]],[[6615,6092],[1,2]],[[6614,6091],[1,1]],[[6581,6080],[9,-7],[18,9],[6,9]],[[6620,5975],[-33,49],[-6,56]],[[7103,6609],[6,-4],[-14,-26],[-8,-24],[-9,-36],[-1,-18],[-9,-2],[-4,-10],[-14,-8],[-4,5],[12,15],[8,28],[1,17],[10,27],[13,13],[5,19],[8,4]],[[6953,6450],[-6,27],[-12,-1],[-3,10],[1,17],[14,10],[7,19],[10,17],[10,3],[14,-6],[-2,-14],[-13,3],[-9,-18],[2,-11],[-14,-27],[4,-28]],[[7189,6595],[5,-19],[-7,-2],[-3,13],[-13,7],[1,9],[-2,18],[6,4],[13,-30]],[[7274,6635],[-5,-30],[-8,2],[6,13],[0,10],[7,5]],[[7324,6685],[3,-6],[-15,-8],[-1,6],[13,8]],[[7296,6663],[1,-7],[-14,-2],[-1,4],[14,5]],[[8059,2513],[-14,19],[-8,3],[-13,18],[-16,-14],[-2,-16],[-18,6],[-8,13],[-10,8],[-4,21],[13,22],[13,4],[19,-3],[6,-18],[2,-17],[10,-6],[11,3],[0,17],[5,4],[-3,11],[4,12],[-3,14],[10,-21],[13,1],[0,16],[11,4],[2,27],[-5,-6],[-9,11],[-9,-8],[-3,17],[7,1],[6,29],[-11,5],[-9,-17],[2,-11],[-8,-2],[-7,22],[5,14],[4,18],[-4,20],[-19,-1],[7,-13],[0,-11],[-14,-6],[0,-15],[-5,-6],[-12,-3],[0,-8],[-5,-15],[-21,-3],[-6,3],[-20,-3],[3,16],[10,7],[0,13],[16,10],[5,16],[12,-2],[-1,25],[20,9],[1,3],[20,0],[7,3],[12,18],[4,-16],[11,-12],[9,12],[14,0],[-15,6],[-5,-13],[-8,2],[-8,22],[17,6],[0,74],[5,24],[-8,38],[8,16],[2,17],[11,-10],[2,-23],[6,0],[-4,24],[-9,7],[8,1],[6,12],[7,-9],[-3,16],[-13,4],[-8,-7],[-8,-30],[-14,5],[-10,-3],[-18,-17],[-6,-17],[3,-37],[-7,-1],[-13,17],[10,14],[-1,25],[10,10],[25,13],[-10,24],[7,-1],[3,21],[8,-2],[-6,12],[11,14],[10,-1],[-2,8],[13,13],[40,18],[23,15],[24,22],[21,34],[9,22],[7,29],[14,32],[12,16],[14,11],[24,7],[66,-14]],[[8066,2516],[-7,-3]],[[8066,2517],[0,-1]],[[8075,2518],[-16,8],[10,5],[-3,15],[-10,13],[-1,-9],[-10,-11],[10,-15],[11,-7]],[[8208,2444],[-127,75],[-6,-1]],[[8286,3451],[21,-52],[11,-17],[20,-39]],[[8336,3232],[-15,5],[-48,11],[-13,-1],[-26,-14],[-18,-21],[-12,-25],[-12,-42],[-11,-26],[-19,-28],[-32,-28],[-42,-20],[-17,-10],[-21,-21],[-7,-10],[-6,15],[6,9],[5,18],[10,7],[1,18],[-11,15],[4,21],[12,3],[8,10],[8,3],[2,-10],[6,7],[-7,8],[-4,26],[3,14],[12,-7],[-6,-16],[4,-15],[8,1],[-3,14],[10,7],[-2,17],[-17,16],[-9,-10],[0,-11],[-6,-2],[-5,12],[-4,-17],[-19,14],[0,-10],[-6,-14],[-6,-5]],[[8023,2659],[0,-18],[5,-11],[0,-29],[-4,-1],[0,20],[-10,29],[-17,3],[3,10],[6,4],[8,-7],[12,24],[0,-18],[-3,-6]],[[8055,2863],[10,-7],[-12,-24],[-6,14],[3,-21],[3,-2],[-2,-12],[4,-20],[-7,4],[2,31],[-4,18],[1,14],[8,5]],[[5667,7632],[-69,-223]],[[5511,7752],[33,-26],[8,-25],[9,-16],[8,7],[17,-19],[8,14],[73,-55]],[[5474,7426],[-48,49],[71,237],[6,8],[8,32]],[[6154,8321],[2,-2]],[[6057,8002],[104,272],[-7,47]],[[6129,7757],[-2,14],[5,19],[2,20],[-8,5],[1,19],[-5,5],[-26,54],[11,41],[-14,27],[-15,13],[-24,24],[3,4]],[[6410,7904],[-36,-124],[-11,7],[-28,-115]],[[5599,4686],[-82,-12],[-100,-5]],[[1403,6096],[11,79],[6,-3]],[[1708,5389],[-240,85]],[[1669,6093],[110,-141]],[[1420,6172],[21,-6],[228,-73]],[[5159,7211],[40,295],[19,-16]],[[5149,7133],[10,78]],[[5430,7094],[-73,-29],[-52,-58]],[[5218,7490],[5,-4],[235,-176]],[[6673,9070],[30,0],[14,11],[13,-6],[16,4],[22,-13],[6,-11],[35,-1]],[[7114,8741],[-42,-36],[-3,-18]],[[6886,8966],[15,-81],[7,-19],[51,-1],[28,-4],[51,-37]],[[6809,9054],[77,-88]],[[4967,6963],[69,34],[62,-41]],[[7050,5616],[-73,-1],[-53,4]],[[7073,5942],[-1,-1]],[[7074,5948],[-1,-3]],[[7075,5950],[-1,-2]],[[7053,6038],[37,-18],[0,-47],[-19,-21],[4,-1]],[[9724,3348],[10,-12],[4,1]],[[9724,3348],[0,0]],[[9722,3348],[2,0]],[[9469,3178],[-1,9],[25,2],[44,34],[20,1],[21,22],[17,8],[9,-6],[30,20],[35,27],[53,53]],[[9431,3139],[9,11],[7,-1],[11,32],[3,-7],[8,4]],[[9428,3133],[3,6]],[[9427,3132],[1,1]],[[9427,3131],[0,1]],[[9428,3129],[-1,2]],[[9429,3129],[-1,0]],[[9432,3125],[-3,4]],[[9422,2839],[-34,229],[1,17],[39,32],[4,8]],[[9819,2989],[-92,-9],[-7,-6],[-4,-15],[-12,-3],[-6,12],[-10,5],[-13,-18],[-18,-14],[-12,-2],[-31,10],[-19,-2],[-10,-8],[-22,23],[-8,4],[-23,-11],[-6,-52],[-104,-64]],[[9819,2990],[0,-1]],[[9738,3337],[1,-4]],[[7663,4277],[15,-87]],[[6980,5360],[0,5],[58,50]],[[7051,5121],[5,3],[0,52],[-6,20],[1,24],[-5,30],[-6,4],[-1,13],[5,18],[-54,-16],[-10,91]],[[5912,7658],[-125,-412]],[[5871,7839],[5,-47],[18,-119],[18,-15]],[[5667,7632],[82,53],[25,81],[17,41]],[[7153,3033],[58,63],[-11,15],[1,10],[53,29]],[[7222,2651],[-4,17],[-8,7],[-17,107],[-40,251]],[[7223,2649],[-1,2]],[[7224,2648],[-1,1]],[[7227,2646],[-3,2]],[[7227,2645],[0,1]],[[7228,2640],[-1,5]],[[7234,2544],[-4,13],[2,30],[6,6],[1,21],[-9,7],[-2,19]],[[7393,2648],[-88,-77],[-71,-27]],[[1277,8639],[0,-30]],[[984,8681],[293,-42]],[[967,8306],[10,184]],[[1216,8275],[-249,31]],[[2505,4804],[-13,0],[-77,8],[-91,21],[-74,13],[-42,0]],[[2558,5054],[-8,-18],[-24,-70],[-16,-58],[-3,-20],[-3,-74],[1,-10]],[[145,6011],[52,281],[35,195]],[[272,5976],[-127,35]],[[309,6254],[14,-204],[-51,3],[0,-77]],[[7237,9700],[-2,-18]],[[6956,9853],[104,34],[43,39],[59,61],[42,11]],[[7234,9680],[0,-4],[-19,2],[-7,10],[-7,31],[-8,4],[-14,-13],[-15,-36],[-6,-9],[-5,-22],[-18,-37]],[[7234,9680],[1,2]],[[2737,7225],[88,21],[25,7]],[[2720,6466],[-7,97],[-8,-3],[15,245],[-2,0],[1,32],[3,1],[12,220],[-43,-7],[9,165]],[[2917,6485],[-43,-6],[-9,-10],[-13,-3],[-17,-15],[-15,25],[-4,-7],[-17,8],[-41,-25],[-9,6],[-10,-10]],[[6451,8830],[10,-124],[95,36],[45,-29]],[[6267,8591],[10,17],[8,7],[16,4],[7,12],[2,18],[6,17]],[[7567,412],[-33,47],[-23,37],[-15,34],[-9,17],[-21,47],[-9,14],[0,7],[9,16],[-1,10],[7,11],[38,0],[15,17],[14,3],[25,-16],[19,-18],[18,-13],[15,-3],[16,6],[22,27],[6,-14],[-5,-19],[-2,-31],[-22,2],[-14,4],[-6,-6],[-2,-14],[-2,-61],[10,-2]],[[7617,514],[-7,-15],[1,-89],[-44,28],[0,-26]],[[7661,645],[2,-3]],[[7664,638],[-3,7]],[[7664,641],[0,-3]],[[7663,642],[1,-1]],[[6417,7114],[48,107],[9,24]],[[6606,7051],[0,-10],[-8,-15],[-6,-2],[-10,-15],[-24,20]],[[4494,8924],[4,-47],[75,-123],[11,3],[6,-28],[16,-28],[4,-44],[-6,-207]],[[4266,8937],[145,-7],[83,-6]],[[4411,8258],[-49,-43],[-13,41],[5,5],[-8,31],[4,3],[-5,16],[-12,-2],[-54,105],[-28,2],[0,14]],[[4604,8450],[-1,-29]],[[4494,8924],[348,-22]],[[4833,8466],[-192,9],[-37,-25]],[[1865,8039],[203,50],[83,-25]],[[1785,7932],[0,87],[80,20]],[[1841,7563],[-43,20]],[[2094,7452],[-27,12],[1,7],[-160,67],[-2,-4],[-65,29]],[[2151,8064],[34,-11],[-85,-604],[-6,3]],[[5601,6349],[102,-65],[115,-133]],[[5685,5988],[-23,-7],[-30,11],[1,95],[-102,51],[1,69]],[[5816,6034],[-131,-46]],[[3533,7728],[-67,122],[-5,84]],[[6044,3963],[-119,-30],[0,130]],[[4495,5759],[53,137],[28,68],[26,4]],[[6925,5312],[-111,-96]],[[6888,5415],[22,-16],[-1,-40],[2,-17],[14,-30]],[[5292,8126],[7,13],[10,-8],[8,6],[244,-84]],[[5487,7893],[-115,46],[-23,-26],[-7,-11],[-10,-6],[-21,11],[-16,1],[-33,43]],[[5561,8053],[-25,-30],[-6,-27],[-4,-8],[-23,-31],[-1,-6],[-25,-13],[10,-45]],[[8851,2838],[0,20],[8,1],[11,-7],[0,-15],[-4,-5],[-4,12],[-9,-4]],[[8853,2839],[-2,-1]],[[8853,2840],[0,-1]],[[8920,2897],[2,-6],[-21,5],[-1,8],[13,1],[7,-8]],[[8865,2892],[15,-13],[-4,-6],[-12,7],[1,12]],[[8903,2925],[-6,-3],[-6,9],[9,3],[3,-9]],[[8920,2927],[-11,11],[10,-3],[1,-8]],[[8919,2378],[-7,-16],[-5,3],[12,13]],[[8674,2383],[5,-3]],[[8679,2378],[-1,-13],[-4,18]],[[8679,2380],[0,-2]],[[8858,2873],[1,-2]],[[8862,2867],[-4,6]],[[8861,2870],[1,-3]],[[8860,2870],[1,0]],[[8859,2871],[1,-1]],[[8721,3030],[22,-3],[20,-7],[23,-4],[45,-3],[35,-4],[45,-1]],[[8541,2297],[2,15],[-8,42],[-3,32],[-33,-16],[-9,10],[4,17],[22,4],[11,9],[5,-1],[-2,18],[4,3],[15,49],[-14,40],[-21,44]],[[8541,2295],[0,2]],[[8541,2292],[0,3]],[[8542,2288],[-1,4]],[[8542,2288],[0,0]],[[8539,2276],[3,11]],[[8669,2419],[-7,18],[6,28],[-7,11],[0,-26],[-14,1],[-5,-13],[-1,-21],[8,6],[1,19],[5,2],[7,-14],[-2,-30],[-13,-5],[-3,-19],[7,-16],[-9,2],[0,-14],[-10,-10],[-8,1],[-13,-14],[1,-11],[-24,-13],[3,-25],[-7,-5],[-1,-15],[14,-13],[-14,-13],[-5,-12],[-1,-15],[-7,-12],[-13,-40],[-1,-27],[-5,-10],[-17,-10],[-3,-8],[-4,10],[1,35],[6,3],[0,33],[-6,12],[1,-39],[-16,10],[1,-9],[-7,-3],[-3,10],[7,4],[-4,15],[4,35],[8,-1],[5,12],[0,14],[10,3],[-1,24],[6,10]],[[8674,2389],[-9,7],[-2,10],[6,13]],[[8679,2380],[-5,9]],[[8679,2378],[0,2]],[[8919,2378],[6,9],[-11,3],[4,-7],[-8,-3],[-1,-10],[-12,15],[0,-16],[-12,13],[-16,11],[-17,7],[-13,0],[-16,-6],[-19,-11],[-15,-18],[-11,-21],[1,-16],[-4,3],[1,21],[14,23],[23,20],[23,14],[-10,0],[10,8],[18,0],[-2,18],[-2,-15],[-11,0],[-20,-11],[-18,-20],[-13,25],[10,5],[-8,5],[-2,-10],[-5,3],[0,14],[11,13],[-11,11],[-5,-36],[11,-10],[8,-22],[-27,-35],[-8,0],[-5,-10],[-1,-14],[16,-14],[2,11],[8,-5],[-11,-22],[-4,-21],[-30,-32],[-20,-15],[-15,-8],[-20,-5],[-1,19],[9,4],[1,29],[5,4],[11,-21],[3,-17],[2,15],[-10,17],[4,17],[-5,26],[-10,0],[7,24],[-9,17],[-4,18],[-6,9]],[[9033,2484],[-3,14],[-13,-7],[0,-16],[10,4],[-3,-17],[9,-4],[1,-11],[-11,-7],[0,-23],[5,-17],[9,-10],[-2,-12],[-16,17],[-25,4],[-14,-3],[-17,-14],[-4,-21],[-34,-15],[-9,-11],[-8,6],[-8,26],[9,-6],[18,8],[-8,9]],[[9062,2838],[5,-13],[3,-78],[-37,-263]],[[8948,2839],[12,-10],[-5,17],[17,11],[22,-2],[3,-3],[20,1],[14,13],[9,1],[4,10],[17,-1],[3,-14],[-4,-13],[-6,-3],[8,-8]],[[8948,2839],[0,0]],[[8853,2840],[10,-1],[2,-9],[9,7],[0,10],[6,15],[16,-16],[10,0],[30,10],[7,-3],[5,-14]],[[8851,2838],[2,1]],[[8831,2852],[-6,-6],[10,-1],[8,-15],[8,8]],[[8831,2853],[0,-1]],[[8831,2853],[0,0]],[[8831,2853],[0,0]],[[8832,2856],[-1,-3]],[[8832,2857],[0,-1]],[[8833,2858],[-1,-1]],[[8836,2858],[-3,0]],[[8840,2864],[-4,-6]],[[8841,2866],[-1,-2]],[[8841,2869],[0,-3]],[[8842,2870],[-1,-1]],[[8858,2873],[-14,1],[-14,13],[12,-17]],[[8859,2871],[-1,2]],[[8861,2870],[-2,1]],[[8862,2867],[-1,3]],[[8911,3008],[40,-1],[17,1],[18,-8],[-20,3],[18,-7],[31,-29],[-7,2],[-19,18],[13,-20],[4,0],[24,-20],[2,-8],[-22,-13],[-13,12],[-2,21],[-5,0],[-10,-20],[-1,-18],[-19,6],[-12,18],[11,-24],[5,-6],[-21,0],[-9,16],[-6,22],[-13,8],[-6,-8],[-15,-9],[-18,4],[-2,11],[-8,8],[9,-23],[-24,-3],[-10,-7],[-15,4],[-3,-6],[-8,6],[-4,24],[-14,9],[-12,-23],[-12,4],[11,-11],[18,18],[7,-28],[9,-17],[11,-6],[-15,-18],[-9,8],[-19,-2],[20,-2],[3,-4],[-1,-21],[-8,9],[-4,13],[-4,-15],[12,-14],[-11,18],[3,9],[8,-20],[8,3],[-2,14],[9,0],[10,17],[9,-7],[10,1],[2,-10],[8,-3],[13,-15],[-9,-2]],[[8658,2349],[-3,-7],[0,-23],[4,-1],[-1,14],[21,6],[4,-6],[6,6],[-1,-35],[-17,-2],[-16,11],[3,-14],[6,-7],[-3,-11],[3,-11],[1,-23],[9,-9],[0,-11],[-23,6],[-17,-2],[-9,3],[-12,34],[-1,23],[4,0],[5,18],[8,-5],[4,7],[6,28],[3,-3],[10,18],[6,-4]],[[8624,2233],[6,-8],[11,3],[27,-6],[-16,0],[-28,-10],[-20,-9],[-9,6],[-8,11],[1,6],[8,-10],[16,10],[-3,-11],[5,-4],[1,14],[9,8]],[[8842,2870],[8,-7],[-6,-25]],[[8841,2866],[1,4]],[[8840,2864],[1,2]],[[8836,2858],[4,6]],[[8833,2858],[3,0]],[[8831,2852],[2,6]],[[8832,2852],[-1,0]],[[8833,2851],[-1,1]],[[8843,2839],[-10,12]],[[8844,2838],[-1,1]],[[8808,2962],[4,-7],[-3,-16],[-3,9],[2,14]],[[8869,2900],[11,-13],[-12,9],[1,4]],[[8843,2839],[1,-1]],[[8833,2851],[10,-12]],[[8832,2852],[1,-1]],[[8844,2838],[-2,-5],[-10,19]],[[3934,7546],[254,-390]],[[3864,6811],[-224,331]],[[3895,6765],[-31,46]],[[1253,6718],[4,-62],[18,-24],[10,-10],[20,-29],[11,5],[5,-10],[1,-24],[8,-7],[13,-27],[14,-8],[4,7],[16,-6],[7,17],[17,-39],[14,2],[0,12],[5,3],[5,26],[5,3]],[[982,6403],[4,107]],[[1430,6547],[-10,-375]],[[7269,4569],[-1,-49],[-4,-32],[-27,-17],[-3,-17],[11,-21],[-2,-10],[5,-12],[0,-20],[-3,-5]],[[7045,4656],[73,-31],[30,5],[19,8],[15,0],[14,7],[13,-9],[10,-18],[-1,-12],[10,-22],[2,-11],[12,-5],[17,2],[10,-1]],[[3808,5575],[19,4]],[[3449,5162],[-11,312]],[[3825,5146],[-162,7]],[[6925,5312],[55,48]],[[6793,4890],[-32,279]],[[7056,5023],[-15,-14],[-26,-57],[7,-79]],[[4002,6005],[-5,-14],[3,-24],[-1,-30],[-9,-11],[-6,-26],[51,-72],[-28,-110],[2,-13],[-10,-18],[-3,-21],[8,-29],[-3,-14]],[[6524,6438],[-39,63],[48,78],[12,21]],[[1910,8356],[5,33],[26,13],[16,-12],[30,-3],[16,3],[42,24],[20,-2],[13,-6],[24,-5],[26,9],[5,-2],[8,-16],[13,10],[-5,24],[6,15],[7,7],[16,-2]],[[1865,8039],[45,317]],[[2224,8191],[-63,-13],[-10,-114]],[[6412,7425],[-16,30],[-1,-22],[-4,-7],[-80,146]],[[6620,5975],[46,-96],[32,-69]],[[6577,5861],[11,14],[-1,31],[4,13],[-3,5],[6,27],[10,19],[16,5]],[[5901,7936],[57,49],[61,34],[38,-17]],[[6098,7647],[-99,2],[-87,9]],[[1587,8546],[-4,59],[-8,24]],[[1910,8356],[-265,83],[-69,32]],[[2081,8639],[16,-178],[86,22]],[[1847,8740],[5,-57],[4,0],[7,-107],[25,-3],[-2,-52],[18,-3],[1,-16],[39,10],[137,127]],[[4454,5143],[-233,-112]],[[4372,5741],[62,9]],[[4121,5653],[30,7],[-3,50]],[[9816,2897],[15,13],[11,18],[18,18],[6,0],[13,-13],[10,-3],[7,-9],[-2,-17],[-14,-5],[-5,-16],[-5,7],[3,25],[-15,7],[-12,-12],[10,-29],[12,-2],[15,1],[-1,-11],[-9,-5],[-10,-15],[-12,10],[-4,17],[-7,-5],[-2,-13],[13,-11],[3,-7],[19,3],[0,10],[9,-2],[1,-22],[3,1],[0,40],[7,10],[7,-8],[14,5],[21,-15],[12,-15],[3,-10],[-7,-8],[-5,-16],[-4,-29],[3,-6],[-2,-32],[7,-25],[0,-18],[8,-15],[1,-13],[-6,-31],[0,-22],[8,-14],[7,-30],[0,-15],[-5,-16],[-9,-76],[-19,-74],[-1,-29],[-3,1],[-5,-27],[-4,-3],[0,-15],[-12,-2],[-5,-12],[-16,-22],[-4,33],[8,11],[0,17],[5,-3],[13,14],[6,23],[7,3],[0,-11],[-7,-9],[6,-1],[5,14],[-5,13],[5,8],[4,17],[-1,13],[-12,1]],[[9693,2620],[-1,14],[11,33],[7,15],[11,128],[8,3],[16,-4],[10,6],[5,-3],[13,18],[5,0],[29,50],[9,9],[0,8]],[[9694,2618],[-1,2]],[[9694,2617],[0,1]],[[9694,2615],[0,2]],[[9805,2673],[3,10],[-11,-4],[-7,-13],[3,-10],[-11,-15],[4,-7],[-12,8],[-25,-2],[-6,16],[1,15],[9,2],[-2,9],[-10,-3],[1,-24],[-5,-9],[8,0],[6,-19],[-19,0],[-14,-13],[-24,1]],[[9805,2672],[0,1]],[[9911,2431],[9,9],[8,24],[2,21],[-4,2],[2,25],[11,13],[5,12],[-4,15],[10,6],[0,36],[-11,0],[1,19],[-7,-8],[-11,-5],[-4,-10],[10,4],[-1,-18],[-11,-26],[-12,-19],[-15,9],[-10,-7],[-15,4],[-8,8],[1,17],[16,-22],[15,7],[-7,22],[11,29],[3,1],[11,-16],[6,5],[-5,26],[4,12],[-5,13],[24,13],[-5,14],[0,12],[-6,-9],[5,-4],[-20,-19],[1,-26],[-11,-9],[-9,-1],[-11,8],[-8,-6],[-6,-15],[-27,27],[-3,10],[9,10],[6,17],[13,14],[4,-12],[6,13],[19,4],[14,7],[-3,21],[-5,-5],[-17,2],[-3,-9],[-11,4],[-8,-20],[-8,-7],[-10,-27],[-9,-5],[-2,-20],[5,-2],[27,-35],[1,-13],[-12,-18],[-5,1],[-22,45],[-11,15],[-21,23],[13,14],[5,21]],[[9862,2397],[1,26],[7,-2],[-5,19],[10,24],[13,12],[3,-12],[-9,-21],[0,-16],[4,-10],[-3,-27],[-4,-10],[-8,-1],[1,8],[-10,10]],[[9855,2376],[1,-1]],[[9856,2375],[6,-6],[9,1],[-1,-8],[-12,0],[-3,14]],[[9834,2240],[-1,-15],[6,18],[-4,3],[7,14],[1,68],[5,-2],[-1,15],[8,-20],[1,-23],[-4,-6],[-6,-36],[-2,-37],[-7,-34],[0,-65],[-2,-11],[0,-56],[4,-32],[-1,-36],[4,-46],[-1,-23],[-5,-17],[-20,-41],[-14,-16],[-18,0],[-9,12],[-8,38],[0,14],[4,19],[17,33],[19,23],[11,43],[7,34],[3,34],[0,63],[-3,44],[4,43],[5,-2]],[[9834,2240],[0,0]],[[9997,2955],[0,-68],[1,-40],[-5,-83],[-5,-34],[-11,-27],[4,24],[-3,23],[0,30],[7,16],[3,16],[0,20],[4,11],[-1,43],[-10,14],[-4,33],[7,25]],[[9930,2966],[6,-4],[-6,-32],[2,-19],[-12,3],[-19,21],[1,11],[11,5],[17,15]],[[9944,2789],[9,-18],[0,-10],[-12,-14],[-1,18],[4,24]],[[9855,2376],[1,-1]],[[9855,2375],[0,1]],[[9856,2375],[-1,0]],[[5477,8868],[233,-15]],[[5603,8544],[-52,-37],[-52,29],[-8,92]],[[7794,4613],[-30,2],[-8,28],[1,13],[-19,50],[-106,24],[-1,1]],[[7914,4848],[-7,-8],[2,-31],[-1,-28],[-3,-4],[2,-19],[-16,-14],[1,-14],[-5,-7],[4,-7],[11,-3],[-1,16],[6,-9],[4,-14],[4,-41],[-8,-16],[-21,-18],[-6,2],[-8,22],[-6,4],[-4,15],[0,38],[-14,-20],[-1,-10],[-9,3],[-3,14],[-3,-16],[-8,-14],[-6,2],[-2,-17],[-11,-2],[-5,-12],[-8,4],[2,-31]],[[7888,4957],[-1,-18],[-9,3],[8,-10],[2,19],[15,8],[3,-10],[-8,-17],[5,-16],[8,-4],[13,6],[1,-12],[7,-9],[11,-5],[17,-2],[0,-9],[-11,-15],[-9,-6],[-13,12],[-11,4],[-1,13],[-8,5],[-1,-10],[6,3],[-1,-11],[3,-28]],[[7888,4959],[0,-2]],[[7882,4959],[6,0]],[[7966,5042],[0,-32],[5,-44],[7,-41],[11,-43],[8,-21],[21,-48],[28,-48],[26,-70],[7,-11]],[[7944,5017],[0,4]],[[8067,4684],[-2,22],[-17,40],[-6,13],[-9,1],[-11,21],[-3,19],[-18,39],[-4,15],[-15,32],[-7,22],[-2,29],[-7,2],[-1,-8],[-14,-6],[-5,8],[3,9],[-5,12],[5,9],[1,27],[5,8],[-6,2],[-3,-17],[-8,14],[6,20]],[[7944,5017],[-8,-18],[10,-23],[-16,-24],[0,-10],[7,-17],[-8,3],[-3,20],[-9,2],[0,15],[-4,18]],[[7942,5019],[2,-2]],[[7921,4997],[-1,1]],[[7917,4992],[4,5]],[[7917,4991],[0,1]],[[7913,4983],[4,8]],[[7901,4979],[8,1],[7,-13],[-2,-13],[10,-14],[-3,-7],[-12,-3]],[[7888,4959],[-5,2]],[[7888,4957],[0,2]],[[7903,4932],[4,13],[-4,17],[-15,-5]],[[7906,4931],[-3,1]],[[7909,4930],[-3,1]],[[7940,4954],[-1,-20],[-5,12],[6,8]],[[7914,4925],[-2,-9],[-6,8],[8,1]],[[7921,4997],[-4,-5]],[[7920,4998],[1,-1]],[[7913,4983],[-1,7]],[[7917,4991],[-4,-8]],[[7917,4992],[0,-1]],[[7276,4709],[-3,-17],[-4,-82],[0,-41]],[[7243,4967],[25,-221],[6,-2],[2,-35]],[[2718,4821],[-13,178]],[[2922,4815],[-96,2],[-108,4]],[[2892,5124],[30,-309]],[[9909,3580],[7,2],[11,-7],[3,-20],[8,-23],[4,2],[1,-17],[-5,-18]],[[9905,3574],[4,6]],[[9904,3572],[1,2]],[[9903,3569],[1,3]],[[9930,3501],[-7,19],[-17,12],[1,23],[-4,14]],[[9941,3602],[9,-6],[6,4],[5,-25],[-5,7],[3,-33],[4,-15],[-9,6],[-5,48],[-8,14]],[[9954,3530],[6,-9]],[[9959,3491],[-1,29],[-4,10]],[[9961,3520],[1,-29]],[[9960,3521],[1,-1]],[[9892,3586],[1,9],[9,-3]],[[9902,3592],[-10,-6]],[[9921,3657],[7,9],[1,-11],[-8,-1]],[[9921,3654],[0,3]],[[9786,3478],[-1,-1]],[[9785,3477],[-2,-3]],[[9783,3474],[3,4]],[[9916,3513],[1,-2]],[[9917,3511],[4,-6]],[[9921,3505],[-5,8]],[[9785,3473],[-1,0]],[[9786,3478],[-1,-5]],[[9785,3477],[1,1]],[[9783,3474],[2,3]],[[9784,3473],[-1,1]],[[9773,3916],[2,-1]],[[9765,3791],[-6,80],[1,21],[6,22]],[[9790,3537],[-6,-19],[-8,2],[2,35],[0,46],[-6,91],[-3,57],[-4,42]],[[9790,3537],[0,1]],[[9787,3471],[5,8],[-3,11],[-9,-10],[1,-13],[-8,13],[-1,25],[12,3],[9,33],[-3,-3]],[[9777,3430],[-4,-9],[-11,5],[12,37],[13,8]],[[9778,3428],[-1,2]],[[9842,3395],[-16,44],[-16,-24],[-11,6],[-21,4],[0,3]],[[9939,3650],[-6,13],[3,15],[-9,13],[-8,-1],[-6,-19],[-1,-17],[-15,-24],[-11,2],[-8,-5],[-8,23],[-7,-6],[3,-12],[6,2],[9,-11],[-6,-20],[3,-21],[1,20],[6,-19],[-1,-12],[20,-19],[0,-24],[-20,-30],[1,-21],[-10,-12],[-6,1],[-9,-23],[-8,-6],[-8,-16],[2,-23],[-4,-3]],[[9936,3609],[4,18],[-1,23]],[[9907,3914],[0,-8],[12,-78],[9,-42],[2,-22],[13,-76],[4,-64],[-11,-15]],[[9771,3910],[2,-1]],[[9769,3912],[1,-2]],[[9769,3913],[0,-1]],[[9770,3914],[-1,-1]],[[9771,3915],[-1,-1]],[[9772,3915],[-1,0]],[[9773,3913],[-1,2]],[[9912,3641],[1,-2]],[[9912,3643],[0,-2]],[[9911,3641],[1,2]],[[9911,3641],[0,-1]],[[9936,3609],[1,-22],[-9,7],[-17,2],[-2,23],[8,8],[-7,2],[1,11]],[[9913,3639],[16,-18],[7,-12]],[[9921,3654],[7,-1],[5,-23],[-3,-7],[-14,14],[5,20]],[[9889,3586],[3,0]],[[9903,3569],[-13,3],[-1,14]],[[9904,3572],[-1,-3]],[[9905,3574],[-1,-2]],[[9909,3580],[-4,-6]],[[9904,3583],[5,-3]],[[9892,3586],[3,-10],[9,7]],[[9902,3592],[-7,3],[11,21],[3,-24],[-7,0]],[[9939,3650],[-2,-29],[-8,30],[10,-1]],[[9906,3640],[-1,-11],[8,-3],[-5,-6],[-6,8],[4,12]],[[9787,3471],[-3,2]],[[9785,3473],[2,-2]],[[9784,3473],[1,0]],[[9912,3643],[1,-4]],[[9913,3639],[-1,2]],[[2502,6360],[-59,-73],[-64,-282],[-31,-12]],[[2499,6384],[0,-16],[3,-8]],[[8208,1044],[8,-4],[-1,13],[6,11],[12,7],[0,10],[8,3],[7,-16],[-3,-4],[6,-13],[-5,-14],[-8,-4],[10,-13],[6,4],[6,-11],[-3,-11],[20,-6],[-4,-16],[11,-14],[17,6],[8,14],[3,-10],[11,6],[-23,14],[-6,-6],[0,13],[-13,17],[-7,26],[14,-26],[17,-21],[24,-20],[10,-4],[23,-3],[-1,-13],[6,-5],[-4,-12],[12,-14],[11,6],[6,-6],[-3,20],[14,-47],[-1,-11],[-8,7],[-22,-21],[-1,-7],[8,-27],[9,-13],[3,-11],[2,-43],[-3,-13],[2,-14],[-2,-35],[15,-27],[12,-4],[-4,-21],[-12,-15],[-15,-1],[17,-6],[31,6],[21,0],[12,7],[2,-6],[35,-1],[3,4],[-6,30],[-13,23],[-4,15],[-11,7],[-7,0],[-18,6],[-21,1],[-6,16],[-18,24],[3,4],[-1,17],[-6,10],[12,6],[5,14],[2,21],[-6,4],[-5,-19],[5,-8],[-5,-8],[-5,6],[0,22],[-16,41],[7,0],[18,-22],[12,-6],[17,0],[15,16],[4,15],[18,27],[23,31],[5,13],[10,4],[-11,-11],[-3,-20],[-5,-14],[-2,-23],[6,-31],[14,-15],[29,-2],[0,-47],[-9,-11],[1,-23],[5,-11],[-12,-8],[15,-7],[1,-16],[-16,0],[-3,-6],[4,-21],[5,-10],[12,-10],[6,10],[-1,23],[-4,14],[0,24],[-3,3],[3,23],[-3,21],[3,15],[-1,43],[-4,3],[6,21],[0,38],[4,31],[-4,13],[6,14],[0,17],[-4,9],[-6,-3],[-12,7],[5,21],[8,-6],[5,10],[0,13],[-12,3],[-6,-9],[-2,16],[-11,18],[-11,-4],[-14,-30],[-8,-24],[0,-32],[7,-33],[-7,0],[-1,71],[22,47],[6,8],[24,10],[10,0],[5,-28],[2,-41],[7,-60],[-3,-32],[0,-23],[-5,-41],[-1,-61],[2,-30],[0,-55],[3,-22],[-3,-34],[-10,-17],[-14,2],[-19,-1],[-6,3],[-29,0],[-69,-6],[-33,2],[-25,5],[-66,0],[-9,6],[16,3],[-6,8],[4,16],[-7,1],[14,26],[14,10],[-12,5],[-15,-25],[-7,11],[3,13],[-6,4],[1,11],[9,10],[10,27],[-11,-18],[-12,-10],[-1,45],[-12,-4],[7,-27],[-1,-34],[-11,27],[1,10],[-4,24],[-6,11],[3,40],[-3,-1],[-4,-22],[-1,-34],[-16,13],[11,-14],[4,-26],[11,-22],[-1,-9],[-10,3],[6,-24],[6,-3],[3,9],[3,-13],[-12,1],[-11,-4],[-14,27],[4,-18],[-6,-9],[-14,24],[-4,-4],[9,-16],[6,-38],[4,-3],[15,3],[32,0],[10,-4],[1,-7],[-43,4],[-70,-1],[-38,-5],[-1,6],[10,2],[2,19],[4,5],[-3,15],[5,36],[-5,1],[2,31],[-2,37],[-5,-48],[-2,-3],[0,-26],[6,-8],[-7,-8],[-6,11],[0,-10],[9,-11],[-5,-15],[3,-9],[-8,-5],[-6,16],[0,-23],[7,-14],[-11,0]],[[8207,1043],[1,1]],[[8205,1036],[2,7]],[[75,5631],[70,380]],[[272,5976],[0,-61],[3,-65],[-3,-2],[-1,-32],[6,1],[7,-161],[54,-3]],[[2839,8252],[16,39]],[[7679,8629],[6,-12],[0,-29],[-6,-13],[-12,-1],[-8,31],[15,13],[5,11]],[[7644,8608],[-8,-3],[-10,11],[1,9]],[[7645,8609],[-1,-1]],[[7645,8611],[0,-2]],[[7646,8613],[-1,-2]],[[7646,8614],[0,-1]],[[7627,8625],[19,-6],[0,-5]],[[7694,8563],[0,0]],[[7688,8558],[6,5]],[[7688,8557],[0,1]],[[7687,8554],[1,3]],[[7700,8538],[-5,-3],[0,17],[-8,2]],[[7704,8556],[-4,-18]],[[7695,8563],[9,-7]],[[7695,8563],[0,0]],[[7694,8563],[1,0]],[[7631,8529],[3,-18],[-3,-5],[-9,15],[9,8]],[[7649,8538],[0,-8],[-9,1],[6,12]],[[7646,8543],[3,-5]],[[7644,8608],[1,1]],[[7645,8611],[1,2]],[[7646,8614],[-2,-6]],[[7621,8648],[-4,0],[4,16],[0,-16]],[[7635,8574],[3,-3]],[[7632,8571],[3,3]],[[7637,8571],[-5,0]],[[7638,8571],[-1,0]],[[7688,8557],[-1,-3]],[[7687,8554],[1,4]],[[7610,8560],[-1,-1]],[[7610,8561],[0,-1]],[[7609,8560],[1,1]],[[7609,8559],[0,1]],[[7569,8671],[2,11],[16,17],[24,-12],[3,-12]],[[7551,8642],[6,11],[-3,15],[15,3]],[[7542,8637],[11,-6],[5,8],[-7,3]],[[7544,8625],[-2,12]],[[7538,8619],[7,-6],[6,12],[-7,0]],[[7538,8616],[0,3]],[[7538,8615],[0,1]],[[7537,8606],[1,9]],[[7538,8602],[-1,4]],[[7539,8601],[-1,1]],[[7540,8601],[-1,0]],[[7543,8599],[-3,2]],[[7543,8597],[0,2]],[[7543,8595],[0,2]],[[7480,8505],[7,32],[-5,4],[16,15],[7,16],[0,14],[12,4],[0,9],[26,-4]],[[7525,8225],[0,41],[-24,32],[-19,69],[-6,18],[0,20],[18,3],[-1,62],[-2,30],[-11,5]],[[7695,8519],[-1,-4],[-49,-137],[33,-125]],[[7695,8521],[0,-2]],[[7695,8525],[0,-4]],[[7695,8525],[0,0]],[[7695,8526],[0,-1]],[[7695,8527],[0,-1]],[[7646,8543],[10,15],[17,-1],[1,11],[10,-6],[-4,-17],[12,-4],[3,-14]],[[7649,8538],[-3,5]],[[7631,8474],[7,37],[-2,21],[12,-6],[1,12]],[[7632,8475],[-1,-1]],[[7637,8473],[-5,2]],[[7637,8472],[0,1]],[[7638,8465],[-1,7]],[[7639,8463],[-1,2]],[[7638,8461],[1,2]],[[7637,8460],[1,1]],[[7636,8461],[1,-1]],[[7636,8461],[0,0]],[[7632,8462],[4,-1]],[[7631,8469],[1,-7]],[[7612,8475],[0,11],[7,1],[6,11],[10,-1],[-8,-16],[4,-12]],[[7612,8474],[0,1]],[[7612,8472],[0,2]],[[7611,8469],[1,3]],[[7620,8497],[-11,-14],[-1,-23],[-7,-1],[-1,-11],[-14,8],[7,-11],[10,0],[-1,10],[8,3],[1,11]],[[7621,8498],[-1,-1]],[[7627,8543],[4,-8],[-9,-9],[-2,-14],[7,-4],[-6,-10]],[[7627,8542],[0,1]],[[7609,8559],[0,-11],[-14,-3],[2,-11],[-4,-11],[5,1],[-1,23],[13,1],[0,10],[7,2],[4,-11],[8,4],[-2,-11]],[[7610,8561],[-1,-1]],[[7601,8619],[11,11],[5,-19],[15,-21],[-2,-6],[-3,-23],[-6,0],[1,14],[-8,6],[-2,-21],[-2,0]],[[7591,8607],[5,-9],[1,19],[4,2]],[[7590,8608],[1,-1]],[[7590,8609],[0,-1]],[[7590,8609],[0,2]],[[7591,8612],[-1,-1]],[[7590,8611],[1,1]],[[7616,8665],[-2,-16],[-11,-15],[-1,-7],[-11,-5],[-1,-13]],[[7612,8669],[4,-4]],[[7612,8670],[0,-1]],[[7612,8674],[0,-4]],[[7614,8675],[-2,-1]],[[7636,8685],[-4,14],[7,7],[6,-17],[21,-14]],[[7634,8686],[2,-1]],[[7621,8670],[4,7],[-3,21],[5,6],[7,-18]],[[7669,8670],[1,-5],[-9,-21],[-5,2],[-7,-16],[-9,0],[-18,11],[-1,29]],[[7668,8671],[1,-1]],[[7666,8675],[2,-4]],[[7667,8635],[-11,-19],[-3,6],[14,13]],[[7711,8580],[-11,18],[4,3]],[[7711,8580],[0,0]],[[7713,8585],[-2,-5]],[[7709,8591],[4,-6]],[[7704,8601],[5,-10]],[[7632,8475],[5,-2]],[[7631,8474],[1,1]],[[7631,8469],[0,5]],[[7632,8462],[-1,7]],[[7636,8462],[-4,0]],[[7636,8461],[0,1]],[[7637,8460],[-1,1]],[[7638,8461],[-1,-1]],[[7639,8463],[-1,-2]],[[7638,8465],[1,-2]],[[7637,8472],[1,-7]],[[7614,8675],[7,-5]],[[7612,8674],[2,1]],[[7612,8670],[0,4]],[[7612,8669],[0,1]],[[7616,8665],[-4,4]],[[7621,8670],[-5,-5]],[[7593,8613],[-2,-6]],[[7591,8612],[2,1]],[[7590,8611],[1,1]],[[7590,8609],[0,2]],[[7591,8607],[-1,1]],[[7612,8472],[-1,-3]],[[7612,8475],[0,-3]],[[7611,8469],[1,6]],[[7697,8526],[-2,0]],[[7697,8528],[0,-2]],[[7695,8527],[2,1]],[[6780,7071],[0,18],[-2,27]],[[6780,7071],[0,-6]],[[6771,6995],[3,7],[0,26],[5,11],[1,26]],[[6770,6997],[1,-2]],[[6771,6995],[-1,2]],[[6771,6993],[0,2]],[[6772,6990],[-1,3]],[[6772,6990],[0,0]],[[6788,6989],[-13,-4],[5,13],[-8,-8]],[[6841,6989],[-14,-30],[-26,-1],[-18,6]],[[6887,7113],[0,-5],[-20,-69],[-21,-33],[-10,5],[-3,-14],[8,-8]],[[7501,2099],[5,10],[7,-3],[-3,-16],[-9,-7],[-3,-13],[0,-22],[-21,8],[-15,33],[-9,25],[-3,17],[-13,0],[3,-14],[-8,10],[-6,0],[-9,-14],[-1,-18],[-7,-15],[0,-32],[-3,-3],[-7,8],[-1,25],[-5,12],[-3,26],[-10,15],[-1,14],[-7,12],[10,-4],[-2,25],[-6,24],[-1,15],[-8,20],[-1,16],[1,41],[-4,14],[-10,13],[-15,11],[-7,10],[-8,2],[-7,9],[-7,-2],[1,-9],[-12,-38],[-8,-6],[-19,0],[-1,48],[-12,9],[3,32],[-7,15],[2,12],[-5,20],[-9,2],[-3,19],[-7,1],[-5,9],[4,11],[6,0],[-1,27],[5,3],[0,15],[-5,-2],[0,25]],[[7500,2096],[-2,-14],[5,8],[-2,9]],[[7378,2367],[-9,11],[1,-29],[5,-21],[-4,-7],[11,-9],[0,-9],[13,-5],[7,-11],[4,-23],[-2,-14],[10,-28],[5,-10],[-1,-42],[-4,1],[-5,-27],[5,-7],[0,-20],[5,14],[12,-1],[-4,27],[9,-24],[16,5],[6,32],[-10,-5],[0,10],[5,-4],[3,11],[6,-14],[7,-3],[0,30],[13,-30],[12,-11],[-6,-26],[12,-32]],[[7378,2365],[0,2]],[[7437,2328],[-6,11],[-10,-2],[3,-12],[-10,-3],[-3,17],[-7,7],[5,-25],[-3,-9],[-6,15],[-1,15],[5,6],[-2,18],[-3,-20],[-5,16],[-16,3]],[[7378,2365],[-3,-10],[-2,14],[5,-2]],[[6669,3156],[0,-1],[298,-114],[-6,-211]],[[6609,2169],[-6,7],[-4,47],[4,69],[14,28],[2,94],[5,101],[-122,47],[1,19],[-55,22],[1,31],[2,12],[18,29],[19,49],[12,20],[17,14],[0,6],[12,20],[6,-2],[11,10],[7,30],[-3,41],[1,10],[34,57],[11,5],[-2,20],[12,17],[2,8],[11,5],[6,21],[0,14],[13,20],[2,14],[-10,35],[2,12],[7,7],[1,15],[7,12],[2,-9],[9,18],[11,12]],[[6961,2830],[-152,-161],[-29,11]],[[8067,2516],[-4,-10],[-4,7]],[[8066,2516],[1,0]],[[8066,2516],[0,0]],[[8280,1992],[1,7]],[[8281,1992],[-1,0]],[[8281,1994],[0,-2]],[[8281,1998],[0,-4]],[[8281,1999],[0,-1]],[[8192,1994],[-1,0]],[[8192,1994],[0,0]],[[8193,1995],[-1,-1]],[[8193,1997],[0,-2]],[[8192,1994],[1,3]],[[8191,1994],[1,0]],[[8017,2308],[0,-3]],[[8016,2310],[1,-2]],[[8016,2308],[0,2]],[[8017,2308],[-1,0]],[[8017,2305],[0,3]],[[8216,2001],[1,0]],[[8216,1999],[0,2]],[[8217,2001],[-1,-2]],[[7999,2369],[8,-7],[4,-13],[7,2],[3,22],[-8,-18],[-4,11],[-7,-1],[0,13],[-9,34],[-15,-8],[0,-7],[-10,-3],[0,9],[7,6],[0,34],[10,-2],[9,6],[10,15],[13,-1],[-6,-15],[8,2],[0,14],[11,5],[6,-14],[-3,22],[10,4],[5,19],[0,8],[19,-1],[8,13]],[[8016,2310],[-9,-2],[-1,16],[-19,55],[14,-1],[-2,-9]],[[8017,2308],[-1,2]],[[8017,2308],[0,0]],[[8017,2305],[0,3]],[[8016,2308],[1,-3]],[[8004,2086],[-2,-28],[-10,35],[-2,28],[-15,60],[-3,15],[18,2],[5,-14],[-10,-12],[8,-24],[11,10],[-9,13],[9,4],[7,10],[-2,18],[10,0],[-5,13],[8,3],[5,13],[-23,-23],[-6,10],[-8,-13],[-5,12],[-10,0],[-1,12],[8,-2],[5,8],[2,23],[-1,17],[2,10],[16,14],[1,8],[9,0]],[[8003,2087],[1,-1]],[[8000,2087],[3,0]],[[7999,2093],[1,-6]],[[7999,2094],[0,-1]],[[7999,2095],[0,-1]],[[8000,2096],[-1,-1]],[[7999,2096],[1,0]],[[7998,2097],[1,-1]],[[7998,2099],[0,-2]],[[8004,2103],[-5,21],[-4,-3],[7,-13],[-4,-9]],[[8008,2096],[-4,7]],[[8008,2096],[0,0]],[[8009,2094],[-1,2]],[[8009,2093],[0,1]],[[8009,2092],[0,1]],[[8009,2086],[0,6]],[[8009,2085],[0,1]],[[8009,2076],[0,9]],[[8009,2073],[0,3]],[[8008,2073],[1,0]],[[8006,2075],[2,-2]],[[8193,1997],[4,21],[-6,-7],[-5,-17],[0,-20],[-9,-25],[-10,-2],[0,23],[-5,4],[0,-23],[6,-14],[-7,-12],[3,-17],[-2,-9],[5,-11],[-4,-3],[3,-48],[11,-2],[0,-8],[-11,6],[-26,0],[-6,-3],[-17,-19],[-11,7],[8,12],[6,28],[0,13],[-14,-43],[-11,-11],[-42,-14],[-29,-17],[-20,-24],[-10,-22],[-9,-26],[-8,-30],[-6,-14],[0,-23],[-4,-3],[-6,9],[-12,7],[-8,10],[1,20],[-7,2],[1,-15],[-6,-10],[-4,7],[-2,21],[6,20],[-8,4],[-1,-12],[5,-8],[-12,6],[0,10],[-12,3],[-10,8],[-6,-5],[-3,-20],[8,1],[-4,-17],[-8,0],[-2,13],[1,31],[14,20],[4,-14],[12,-10],[9,7],[5,14],[7,4],[-2,20],[5,12],[2,14],[8,-5],[-1,-12],[25,8],[0,13],[5,-3],[4,11],[0,16],[-9,3],[1,-13],[-9,-7],[3,26],[9,16],[-1,43],[-3,10],[3,17],[0,28],[14,11],[2,25],[16,9],[2,26],[9,1],[14,-18],[-5,16],[-19,7],[2,18],[-5,14],[7,19]],[[8192,1994],[1,1]],[[8191,1990],[1,4]],[[8191,1990],[0,-2]],[[8216,1999],[-3,-33],[-9,-29],[1,-21],[-3,-30],[-4,-8],[-2,-23],[8,-4],[-11,-13],[-15,-7],[-1,11],[5,3],[-3,17],[0,30],[-5,13],[7,22],[4,36],[3,4],[3,21]],[[8239,1865],[8,-8],[-33,-6],[-9,3],[4,4],[0,51],[3,38],[4,11],[3,23],[0,27],[-3,-7]],[[8239,1865],[0,0]],[[8238,1866],[1,-1]],[[8238,1868],[0,-2]],[[8267,1881],[1,-15],[-20,-8],[1,31],[6,41],[2,2],[1,32],[-3,2],[0,31],[-6,-7],[0,-23],[4,-7],[0,-20],[-6,-3],[3,-15],[-5,-19],[-10,3],[-4,16],[0,-16],[5,-7],[-1,-10],[7,-7],[-4,-14]],[[8281,1999],[-3,1],[-1,31],[0,-73],[-6,-11],[0,-21],[-6,-35],[2,-10]],[[8281,1998],[0,1]],[[8281,1994],[0,4]],[[8280,1992],[1,0]],[[8359,1978],[-6,26],[10,21],[0,13],[6,22],[-2,16],[-4,-30],[-11,-31],[2,-8],[-8,1],[3,31],[-2,12],[-19,-5],[-3,-4],[-2,-28],[-16,-34],[-1,18],[9,24],[2,29],[10,24],[-7,-7],[-7,-25],[-4,-28],[-6,-14],[-3,-31],[1,-14],[-5,-6],[-2,-14],[-7,-20],[-11,-13],[-1,27],[5,17],[1,19],[8,25],[-10,-11],[1,12]],[[8365,1975],[-3,2]],[[8365,1975],[1,0]],[[8379,2025],[-8,-25],[-7,1],[3,-9],[-1,-17]],[[8379,2024],[0,1]],[[8386,2042],[-7,-18]],[[8386,2045],[0,-3]],[[8387,2046],[-1,-1]],[[8300,1891],[8,-12],[11,-7],[4,-24],[-17,17],[-20,7],[-4,11],[10,23],[2,16],[10,18],[5,18],[-2,10],[14,36],[7,-3],[-6,-10],[0,-44],[-7,-7],[-3,-24],[-14,-27]],[[8301,1889],[-1,2]],[[8301,1886],[0,3]],[[8299,1886],[-8,-5],[0,14],[-6,-19],[12,2],[4,8]],[[8298,1889],[1,-3]],[[8298,1889],[0,0]],[[8298,1889],[0,0]],[[7998,2099],[4,3]],[[7999,2096],[-1,1]],[[7999,2095],[1,1]],[[8000,2087],[-1,8]],[[8003,2087],[-3,0]],[[8004,2086],[-1,1]],[[8009,2092],[-5,-6]],[[8009,2094],[0,-2]],[[8008,2096],[1,-2]],[[8002,2102],[6,-6]],[[8009,2085],[0,-9]],[[8009,2086],[0,-1]],[[8006,2075],[3,11]],[[8008,2073],[-2,2]],[[8009,2073],[-1,0]],[[8300,1891],[1,-2]],[[8298,1889],[2,2]],[[8299,1886],[-1,3]],[[8301,1886],[-2,0]],[[8238,1868],[1,-3]],[[8239,1865],[-1,1]],[[4867,8023],[16,-12],[8,-16],[18,-58],[-4,-5],[-2,-24],[-12,5],[-10,16],[-7,-6],[-5,13],[1,13],[-7,19],[-19,26],[-41,-50],[-9,0],[-22,10],[-10,-5],[-13,-24],[-7,-4],[-17,1],[-23,-4],[-23,15],[-18,-3],[-1,-29]],[[1395,9163],[-4,-235],[70,-11],[131,20],[3,0]],[[1325,9168],[70,-5]],[[1292,8966],[33,202]],[[1277,8639],[15,327]],[[6192,5085],[14,38]],[[5933,6501],[-27,-77],[-42,-53],[8,-77],[7,-10],[4,-38],[15,-6]],[[5923,8540],[5,-10],[6,-34],[5,-14],[9,-9],[19,-3],[14,-70],[86,-75],[7,-3],[8,-41],[9,3],[2,10],[0,30],[62,7],[-1,-10]],[[6944,7044],[9,-12],[-10,-9],[-10,-3],[-6,-27],[3,-3],[-3,-21],[-10,-23],[-13,-14],[-6,6],[-21,8],[-12,0],[-7,-11],[-5,12],[-7,5],[-10,-3],[-4,5],[3,12],[7,7],[4,14],[-5,2]],[[6944,7045],[0,-1]],[[6930,7048],[0,-7],[14,4]],[[890,8190],[7,66],[-12,98],[82,-48]],[[984,7771],[-65,25],[2,12],[-33,13],[38,121],[-67,25],[25,83],[-16,6],[14,46],[-17,7],[25,81]],[[1147,7922],[-107,31],[-56,-182]],[[1430,6547],[130,188],[2,0]],[[1750,6661],[9,-410],[-52,-92],[-38,-66]],[[1860,7292],[38,7],[-5,-110],[56,7],[-3,-110],[29,8],[0,-38],[89,17]],[[1768,7273],[92,19]],[[1928,6694],[-8,3],[-5,19],[-21,-3],[-6,9],[-11,0],[-2,12],[-9,-3],[-7,-25],[-3,10],[-19,3],[0,6],[-88,-19]],[[1928,6694],[0,0]],[[2685,5931],[61,13]],[[2457,5603],[-3,20],[0,55],[7,39],[9,27],[40,30],[9,9],[10,18],[24,29],[9,23],[0,21],[-8,29]],[[7677,501],[-5,-12],[-4,11],[9,1]],[[7664,641],[1,11],[-4,14],[9,31],[4,7],[6,32],[10,18],[4,11],[10,19],[14,8],[6,23],[9,14],[5,41],[4,16],[9,18],[6,24],[10,-1],[10,7],[11,22],[3,14],[10,6],[10,20]],[[7617,514],[12,-6],[0,10],[10,-2],[11,6],[3,-7],[-11,-6],[9,-6],[-2,-10],[5,-18],[5,12],[15,-5],[4,20],[5,-2],[2,-20],[9,8],[-4,11],[-34,10],[2,20],[5,4],[7,23],[-2,22],[2,20],[-4,10],[11,9],[-13,21]],[[7985,619],[-15,0],[-15,-4],[-36,-5],[-3,-2],[-44,-7],[-42,-8],[-46,-22],[-38,-23],[-23,-21],[-10,-15],[-2,-18],[-27,-23],[-18,-30],[-1,-25],[-9,-18],[8,-16],[-10,-34],[-13,-11],[-9,0],[-12,15],[-53,60]],[[7538,92],[2,-3],[24,-14],[0,-9],[-5,-27],[0,-18],[-5,-5],[-19,1],[-5,6],[-25,5],[-10,9],[-18,28],[5,14],[24,-1],[11,7],[5,8],[7,1],[6,17],[3,-19]],[[1008,9191],[317,-23]],[[1292,8966],[-293,30]],[[4989,7085],[83,161],[87,-35]],[[7577,6023],[-1,10],[-8,1],[0,17],[11,2],[8,-13]],[[7588,6038],[0,-1]],[[7587,6040],[1,-2]],[[7467,6208],[0,-4],[21,0],[18,-8],[17,-24],[10,3],[0,-8],[7,-10],[10,1],[4,-23],[-11,-4],[0,11],[-11,5],[-21,-11],[0,19],[5,0],[-8,22],[1,-39],[-3,-6],[7,-7],[11,4],[3,-15],[-13,-7],[11,-15],[9,7],[0,24],[13,-3],[-2,6],[14,19],[9,-4],[-2,-10],[5,-10],[6,2],[5,-15],[-8,-11],[0,-14],[-5,-6],[-5,-18],[2,-20],[-7,-5],[14,-17],[-5,-2],[1,-27],[8,3],[0,-18],[-8,0],[2,-11]],[[7462,6206],[5,2]],[[7414,6181],[10,-2],[6,17],[8,6],[10,-4],[5,7],[9,1]],[[7414,6181],[0,0]],[[7465,5818],[-39,75],[-36,161],[34,23],[0,8],[-21,16],[1,20],[-1,13],[4,7],[7,40]],[[7571,5960],[1,-3]],[[7571,5962],[0,-2]],[[2355,9088],[6,-84],[7,-18],[-2,-20],[-6,-3],[-6,-26],[9,0],[1,-30],[15,-24],[7,-30],[0,-14],[18,-11],[3,-10],[-4,-15],[12,-7],[-2,-10],[-8,-4],[0,-11],[8,-12],[1,-15],[25,-25],[5,-16],[10,-1],[18,-33],[-6,-24],[16,-7],[7,-17],[-4,-17],[7,-20],[3,3],[7,-17],[-3,-10]],[[2033,9114],[56,-4],[266,-22]],[[2081,8639],[-48,475]],[[2499,8560],[-34,-9]],[[6175,7426],[2,-10],[-36,-17],[-2,-3],[-5,-52],[-14,2],[-10,11],[-60,-105],[-48,-66],[-6,-32],[-6,-11],[-15,7],[-7,-4],[3,-28],[-7,-19]],[[2110,7343],[2,40],[-24,-4],[2,25],[17,4],[2,27],[-16,-5],[1,22]],[[2343,7991],[18,-11],[14,-14],[6,-27],[17,-26],[10,-45],[7,-26],[-35,-297],[-6,-66],[17,5]],[[1841,7563],[19,-271]],[[936,7617],[48,154]],[[1123,7625],[-28,-213],[-91,8],[-37,-247]],[[6969,8024],[0,0]],[[7146,7923],[-9,2],[-105,54],[-63,45]],[[7147,7925],[-1,-2]],[[7148,7927],[-1,-2]],[[7151,7927],[-3,0]],[[7153,7927],[-2,0]],[[7174,7914],[-21,13]],[[7221,7943],[-2,-12],[-9,22],[1,22],[-8,16],[2,19],[-6,-20],[-10,4],[-10,14],[2,38],[-4,1],[0,-39],[3,-12],[11,-12],[8,-3],[5,-24],[-6,-6],[-13,13],[-5,-18],[11,7],[5,-14],[10,5],[-3,-17],[-18,-13],[-11,0]],[[7189,7906],[7,4],[0,11],[12,-1],[14,-12],[0,-18]],[[6961,2830],[129,138]],[[6988,1633],[12,1],[7,-11],[-11,-10],[-16,-3],[-26,-8],[-14,-12],[-3,-25]],[[6973,1639],[15,-6]],[[6973,1637],[0,2]],[[6962,1632],[11,5]],[[6957,1626],[5,6]],[[6958,1623],[-1,3]],[[6957,1622],[1,1]],[[6945,1607],[8,0],[4,15]],[[7006,1653],[-14,0],[1,-7],[-20,5],[-4,-5],[-8,7],[-7,-7],[-1,-20],[-9,8],[-6,-11],[-4,-20],[11,4]],[[7007,1651],[-1,2]],[[7007,1647],[0,4]],[[7009,1644],[-2,3]],[[7011,1644],[-2,0]],[[7008,1637],[9,-13],[0,12],[-6,8]],[[7089,1766],[3,14],[-3,6],[5,11],[-14,3],[-1,7],[9,10],[1,20],[-10,-24],[-10,-9],[1,-10],[9,-14],[1,-14],[5,-7],[-7,-14],[-1,-17],[-9,0],[-2,7],[9,21],[-9,-7],[-5,11],[2,9],[7,-6],[5,9],[-24,4],[-7,10],[-5,29],[-8,5],[-5,-4],[-11,15],[2,-14],[-14,8],[0,12],[-7,-4],[2,45],[-5,3],[-3,22],[3,10],[-5,20],[-2,-57],[6,-5],[0,-17],[-6,7],[-3,-46],[12,-14],[7,-17],[14,26],[9,-9],[7,10],[6,-14],[3,-25],[-11,-26],[8,-13],[5,0],[0,20],[10,7],[3,-11],[-5,-8],[0,-20],[5,-3],[0,-17],[-10,-30],[2,-20],[-2,-18],[5,-7],[4,-23],[-7,-11],[-17,7],[-11,7],[-25,10],[7,1],[8,9],[-2,11]],[[7089,1763],[0,3]],[[7084,1766],[5,-3]],[[7182,1883],[-6,-5],[0,-26],[6,-12],[18,-60],[-15,9],[-21,-2],[-11,-7],[-6,-15],[-2,-41],[-16,-12],[-5,-8],[7,-38],[1,-30],[-6,-6],[-8,28],[0,29],[-7,32],[-10,12],[-13,7],[-4,28]],[[7190,2203],[1,-18],[5,-11],[-2,-24],[7,-20],[0,-24],[-6,-7],[-3,-19],[-1,-27],[-6,-21],[-16,-17],[-5,20],[-7,0],[-1,27],[-23,34],[-3,15],[-6,0],[-20,44],[3,-34],[4,-12],[-3,-12],[6,2],[-1,-10],[-14,5],[0,-28],[18,-20],[-4,-11],[11,-17],[-6,-21],[4,3],[5,18],[-9,17],[4,0],[-1,25],[10,-4],[6,6],[1,-30],[9,-38],[1,-13],[12,-23],[12,-18],[5,-11],[0,-38],[5,-8]],[[7090,2968],[-31,-338],[21,-183],[27,-51],[2,-21],[29,-97],[37,-39],[6,-27],[4,6],[5,-15]],[[7009,1644],[2,0]],[[7008,1637],[1,7]],[[7011,1644],[-3,-7]],[[6958,1624],[0,-1]],[[6957,1626],[1,-2]],[[6957,1622],[0,4]],[[6958,1623],[-1,-1]],[[7006,1653],[1,-2]],[[7007,1647],[-1,6]],[[7007,1651],[0,-4]],[[7084,1766],[5,0]],[[7089,1763],[-5,3]],[[9363,3148],[10,2],[23,19],[13,-3],[11,7],[7,-7],[22,6],[-2,-20],[-7,0],[-9,-13]],[[9359,3150],[0,-11],[8,-9],[-6,-16],[-1,-17],[5,6],[4,27],[-6,18]],[[9358,3150],[1,0]],[[9189,2938],[-9,-4],[-2,21],[-10,-7],[-9,14],[0,10],[-17,6],[-3,-12],[2,-13],[-21,3],[12,29],[9,11],[21,34],[26,28],[22,18],[46,32],[10,10],[7,-12],[17,6],[30,20],[11,11],[20,0],[7,7]],[[9189,2949],[-5,-10],[5,-1]],[[9192,2949],[-3,0]],[[9193,2949],[-1,0]],[[9195,2947],[-2,2]],[[9197,2948],[-2,-1]],[[9198,2948],[-1,0]],[[9199,2947],[-1,1]],[[9198,2944],[1,2]],[[9197,2942],[1,2]],[[9198,2941],[-1,1]],[[9199,2941],[-1,0]],[[9200,2945],[-1,-4]],[[9295,2521],[15,-11],[6,2],[-18,11],[0,3],[-18,-4],[0,-9],[-9,12],[0,13],[7,13],[0,9],[10,11],[7,20],[8,-5],[6,12],[-9,1],[19,27],[8,8],[6,-21],[-8,-8],[22,2],[8,11],[-5,23],[-17,-15],[0,7],[9,6],[2,16],[-9,-7],[0,8],[13,15],[0,9],[6,9],[-4,7],[4,17],[-4,0],[0,18],[-5,5],[-7,-6],[-10,8],[-5,19],[8,38],[-9,13],[-8,-19],[-9,17],[2,24],[-15,14]],[[9295,2519],[0,2]],[[9294,2519],[1,0]],[[9294,2518],[0,1]],[[9294,2516],[0,2]],[[9291,2517],[3,-1]],[[9290,2517],[1,0]],[[9288,2515],[2,2]],[[9286,2512],[2,3]],[[9251,2483],[4,2],[2,16],[16,12],[0,-17],[7,-1],[6,17]],[[9251,2483],[10,0]],[[9471,2531],[-24,-6],[-15,-12],[-24,-10],[-26,-4],[-20,6],[3,23],[5,4],[-2,12],[7,6],[-1,14],[8,10],[2,17],[10,30],[18,32],[14,3],[0,-10],[9,3],[-1,14],[9,22],[-5,21],[-14,0],[-3,-17],[-4,3],[4,-18],[-8,-1],[-6,-31],[-9,-10],[-9,-25],[-6,-27],[-11,-20],[2,-7],[-6,-8],[-9,-40],[-15,3],[-55,-14],[-28,-11]],[[9422,2839],[49,-308]],[[9429,3129],[3,-4]],[[9429,3129],[0,0]],[[9428,3129],[1,0]],[[9427,3131],[1,-2]],[[9428,3133],[-1,-1]],[[9431,3139],[-3,-6]],[[9253,2506],[0,11],[10,11],[0,-16],[-10,-6]],[[9286,2512],[9,9]],[[9288,2515],[-2,-3]],[[9290,2517],[-2,-2]],[[9291,2517],[-1,0]],[[9294,2516],[-3,1]],[[9294,2518],[0,-2]],[[9295,2519],[-1,0]],[[6669,3704],[12,-2],[7,-14],[-9,-11],[-5,-16],[5,-18],[1,-29],[7,-15],[0,-31],[-5,-11],[-9,-4],[-4,-18],[-13,-17],[8,-11],[5,-41],[3,-4],[-5,-20],[-8,-7],[-2,-31],[-4,-15],[4,-32],[-10,-30],[2,-10],[-9,-1],[-3,12],[-5,-1],[-2,15],[-7,-6],[4,-30]],[[5089,4652],[-252,-10],[-78,-9],[-1,46],[-3,48],[-10,0]],[[6059,6093],[0,8],[82,-4],[-15,137]],[[6150,6227],[-4,-16],[15,0],[0,-13],[11,15],[12,-13],[3,6],[5,-18],[14,-19],[23,12],[0,-23],[9,-17],[9,-3],[-2,31],[8,-15],[17,-17],[22,5],[4,15],[5,8],[15,-1],[11,4],[11,-8]],[[6164,6247],[-3,-2]],[[6581,6080],[0,0]],[[6339,6165],[6,30],[9,0],[10,-9],[8,5],[7,31],[16,-9],[8,5],[9,-5],[15,3],[9,9],[24,70]],[[2452,8141],[19,4],[16,-51],[15,-4],[28,1],[13,11],[6,-8],[1,-12],[13,-15],[7,5],[7,17],[29,4],[6,7],[3,25],[-2,15]],[[5953,8841],[109,-5],[21,-2],[77,1],[43,86],[30,90],[36,64]],[[6214,8585],[-14,-13],[-18,-32],[-36,107],[-159,-74],[-31,45]],[[4523,4734],[-54,2],[-167,11],[-83,6]],[[2686,8344],[2,20],[7,12],[-2,44],[4,8],[-7,4],[0,24],[8,12],[5,19],[-6,11],[0,24],[8,18],[15,5],[-1,25],[1,39]],[[7704,8556],[5,-11],[5,-1],[9,11],[0,-22],[3,-4],[3,23],[4,7],[10,3],[5,-18],[8,3],[-8,17],[0,13],[7,13],[-2,18],[-2,-19],[-8,-1],[-3,36],[8,19],[5,2],[12,-9],[12,-15],[28,-15],[22,-6],[3,-13],[10,-6],[0,11],[19,-34],[-6,-17],[-18,-4],[-17,0],[2,-28],[-11,7],[4,-15]],[[7700,8537],[0,1]],[[7700,8537],[0,0]],[[7700,8537],[-1,-1]],[[7695,8519],[11,-33],[-2,31],[2,11],[-7,8]],[[7830,8376],[0,-13],[12,6],[7,-4],[-1,-10],[6,1],[-2,-12],[7,-16],[8,2],[12,-13],[-13,-12],[1,-29],[-13,-5],[-3,-23],[-6,-8],[0,-21],[4,15],[5,-6],[2,-13],[-5,-10],[-7,1],[1,-14],[-5,-19],[-7,4],[-13,-21],[-14,-41],[-10,3],[-3,-7],[-12,-5],[-4,-14],[-15,0],[0,16]],[[7832,8375],[-2,1]],[[7811,8377],[8,11],[9,-4],[4,-9]],[[7810,8403],[-9,7],[-11,2],[6,-12],[-2,-25],[-15,-4],[8,-7],[1,-19],[4,0],[4,22],[5,9],[5,17],[10,-2],[-5,-14]],[[7810,8405],[0,-2]],[[7819,8454],[6,-29],[4,2],[1,-21],[-2,-9],[-8,-2],[-2,12],[-8,-2]],[[7814,8452],[5,2]],[[7813,8499],[-5,4],[-7,-7],[3,-14],[2,-33],[-10,-1],[5,-9],[13,13]],[[7813,8501],[0,-2]],[[7829,8511],[16,-3],[-10,-24],[-3,-20],[-13,-10]],[[7814,8452],[-4,5],[0,32],[10,2],[2,15],[7,5]],[[7819,8454],[-5,-2]],[[7712,8580],[7,5],[0,-8],[-7,3]],[[7867,8546],[-1,-11]],[[7866,8546],[1,0]],[[7866,8546],[0,-3]],[[7866,8535],[0,8]],[[7876,8679],[6,-7],[8,2],[-7,17],[8,-9],[7,44],[12,17],[5,-3],[1,16],[14,4],[14,26],[0,6],[11,13],[4,-10],[0,-16],[6,8]],[[8029,8420],[-6,-18],[-9,0],[-17,-20],[-8,-19],[4,-10],[-6,-2],[-3,-19],[6,-20],[0,-19],[-7,-20],[0,-12],[-11,-14],[-4,-17],[-15,-17],[-8,5],[-8,-12],[0,-13],[8,-13],[-13,-28],[-23,-14],[-7,1],[4,13],[-6,11],[8,6],[-2,20],[11,23],[7,0],[6,12],[0,17],[-9,18],[6,22],[-8,-2],[-2,15],[-5,2],[15,18],[-5,-20],[7,-10],[1,11],[9,17],[-7,9],[11,12],[3,16],[-14,-10],[7,15],[0,9],[-8,-7],[-10,-16],[-4,-16],[-7,4],[-10,-3],[7,-14],[-14,8],[-14,-1],[-15,20],[2,12],[-5,22],[3,3],[-5,17],[-7,-6],[1,-8],[-18,11],[3,9],[-3,23],[2,7],[-7,14],[2,9],[10,3],[3,10],[-1,24],[5,12],[7,-4],[-2,28],[7,7],[5,-27],[-7,-9],[8,-5],[-3,-30],[10,29],[3,30],[-10,-1],[0,15],[7,16],[0,11],[7,-9],[16,23],[-9,-4],[-15,1],[-1,20],[2,21],[7,20],[-7,-11],[-5,-23],[-1,-17],[-16,2],[1,34],[5,7],[-4,16],[13,22],[7,1],[2,16]],[[8029,8420],[-2,1]],[[8027,8421],[0,0]],[[8026,8422],[1,-1]],[[7834,8535],[6,-7],[2,-13],[-18,1],[1,13],[9,6]],[[7848,8538],[6,-1],[-6,-18],[-8,14],[8,5]],[[7697,8528],[-2,-7]],[[7695,8525],[2,1]],[[7867,8556],[0,-10]],[[7866,8547],[1,9]],[[7867,8546],[-1,1]],[[7713,8587],[-1,-7]],[[7713,8585],[0,2]],[[7712,8580],[-1,0]],[[7830,1585],[-2,-13],[-15,-14],[5,-3],[5,-20],[6,0],[-11,-18],[-5,-16],[-13,-7],[-4,-10],[-14,-4],[-11,2],[-24,-13],[-29,-50],[-9,-7],[-3,7],[-16,-4],[-10,3],[-7,-17],[0,-20],[10,-13],[4,-24],[-13,-31],[-19,-7],[-4,-13],[-24,-5],[-17,-39],[-22,-29],[-10,3],[-17,-2],[-14,24],[4,6],[-3,18],[-5,4],[1,26],[10,1],[3,10],[-3,23],[3,13],[16,12],[8,0],[9,9],[1,13],[14,35],[16,-7],[11,6],[11,21],[1,17],[6,8],[0,13],[20,3],[10,15],[4,-4],[15,27],[10,31],[13,11],[11,16],[8,4],[4,-10],[8,-1],[14,11],[10,27],[10,9],[3,25],[9,7],[12,-3],[-5,-11],[5,-4],[9,6]],[[7820,1632],[2,-33],[7,11],[0,9],[11,-13],[-5,-10],[-7,4],[-6,-8],[8,-7]],[[7505,1292],[9,-7],[2,-9],[14,-15],[10,-23],[-5,-17],[5,-6],[-5,-14],[-16,16],[-20,-4],[-20,-23],[-19,4],[-13,36],[8,45],[17,14],[10,-8],[14,-2],[9,13]],[[7220,1111],[5,-19],[5,-8],[-10,0],[0,21],[-6,3],[-5,-7],[-8,1],[-10,-18],[5,-10],[8,4],[2,-10],[10,12],[16,1],[13,-7],[14,0],[0,-10],[-12,1],[-8,12],[-18,-3],[-15,-26],[-5,-22],[-24,-22],[-34,-12],[-5,14],[5,21],[4,-13],[-2,-15],[12,11],[1,7],[11,10],[0,7],[-10,-13],[7,33],[1,17],[10,14],[14,0],[4,20],[8,20],[13,-4],[4,-10]],[[7820,1632],[-4,0],[-5,33],[9,8],[10,-2],[10,11],[5,-2],[-3,-16],[-8,-11],[-1,-14],[-8,-2],[0,-10],[-5,5]],[[7830,1585],[8,4],[6,20],[1,-6]],[[7845,1602],[2,-12],[-17,-5]],[[7845,1603],[0,-1]],[[7834,1633],[4,-7],[-11,3],[7,4]],[[7404,1239],[5,-18],[-2,-27],[1,-18],[11,-20],[5,0],[3,-21],[-18,-34],[-20,-20],[-15,-10],[-47,-8],[-10,5],[-43,-3],[-10,23],[5,6],[3,25],[5,6],[5,18],[11,-10],[19,-1],[5,3],[10,-7],[12,15],[3,10],[11,2],[6,15],[-13,-8],[-5,5],[17,5],[16,22],[11,3],[8,11],[0,12],[11,19]],[[7845,1603],[2,12],[-7,1],[3,17],[11,3],[22,-10],[14,11],[8,14],[8,-1],[0,-17],[7,0],[-2,-14],[-18,-24],[-12,-5],[-7,-11],[-6,4],[-1,16],[-13,-9],[-9,12]],[[7232,1251],[7,1],[1,-8],[-10,-7],[0,12],[-6,-1],[-2,-34],[-12,18],[-1,12],[7,21],[9,0],[7,-14]],[[7835,1581],[5,-5],[-8,-8],[3,13]],[[1872,4856],[-104,5],[-3,1],[-294,11]],[[623,6237],[126,-7]],[[617,5718],[3,-81],[-26,2]],[[2499,8560],[97,22]],[[5599,8100],[-14,-9],[-9,-20],[-15,-18]],[[6809,9054],[3,10],[15,35],[11,38],[10,18],[2,26],[7,8],[-2,15],[12,14],[14,39],[23,58],[7,30],[4,26]],[[7083,9186],[-29,-16],[-10,-10],[-15,-6],[-13,-15],[-47,-43],[-29,-31],[-21,-3],[-21,-14],[-21,6],[9,-88]],[[7061,9213],[22,-27]],[[2448,6757],[23,3],[20,-7],[30,-7],[23,1],[14,6],[15,22],[5,29],[-3,35],[-5,15],[-5,33],[0,14],[10,58],[8,30],[-13,43],[5,12],[9,3],[15,-12],[9,5],[5,13],[2,29],[-4,40],[-4,15],[-9,53]],[[2512,6354],[-10,6]],[[5586,5749],[18,21],[39,56],[61,75],[-10,63],[-9,24]],[[4207,7922],[60,-88]],[[7375,6178],[-14,-6],[-8,14],[-2,10],[10,14],[-2,5],[16,0],[0,-10],[9,17],[-1,11],[-8,12],[-10,6],[1,-12],[-11,-6],[-9,11],[7,7],[5,17],[-3,13],[-24,-7],[-21,5],[-4,-5],[-16,7],[27,4],[5,16],[-10,15],[0,28],[-6,11],[-1,15],[-10,12],[2,43],[4,20],[-13,10],[-2,10],[-13,-11],[-9,0],[-5,-9],[-14,-11],[-3,-10],[-17,-3],[-14,25],[-11,-10],[-4,11],[10,13],[16,-5],[10,13],[12,1],[24,-11],[6,2],[13,24],[22,0],[2,-15],[-4,-8],[7,-34],[32,-102],[24,-54],[9,-17],[19,-25],[5,5],[21,-9],[4,9],[10,-10],[10,-4],[3,9],[7,-2],[9,-19]],[[7375,6177],[0,1]],[[7414,6181],[-10,-10],[-11,4],[-8,14],[-2,-15],[-8,3]],[[7462,6206],[-11,11],[-30,-1],[-2,-15],[5,-15],[-10,-5]],[[7159,6363],[-7,-7],[-2,-23],[-4,20],[-8,1],[-14,-16],[-5,21],[7,9],[12,-5],[19,20],[5,14],[-2,28],[5,10],[14,3],[6,-5],[0,-19],[-8,-11],[-13,-10],[-5,-30]],[[7274,6425],[-5,-7],[-3,15],[8,-8]],[[7516,8822],[8,1],[1,-8],[12,2],[-4,-12],[10,-1],[13,-13],[0,-26],[8,-4],[3,-15],[4,13],[-12,5],[0,27],[-14,13],[-3,12],[7,-1],[15,8],[5,-9],[23,-2],[23,-19],[12,-18],[24,-1],[16,-11],[5,-10],[13,-8],[12,-18],[3,-10],[24,-45],[6,-14],[-1,-13]],[[7516,8820],[0,2]],[[7430,8731],[5,0],[13,29],[13,-4],[-2,-7],[18,16],[5,-1],[9,18],[9,0],[8,-7],[8,16],[0,29]],[[7430,8732],[0,-1]],[[7427,8734],[3,-2]],[[7408,8693],[11,12],[3,30],[5,-1]],[[7408,8692],[0,1]],[[7409,8669],[5,14],[-6,9]],[[7403,8667],[6,2]],[[7402,8665],[1,2]],[[7401,8662],[1,3]],[[7401,8661],[0,1]],[[7401,8658],[0,3]],[[7404,8652],[-3,6]],[[7400,8643],[4,9]],[[7383,8638],[17,5]],[[7383,8636],[0,2]],[[7383,8634],[0,2]],[[7385,8631],[-2,3]],[[7385,8630],[0,1]],[[7385,8628],[0,2]],[[7372,8623],[13,5]],[[7370,8617],[2,6]],[[7365,8609],[5,8]],[[7361,8601],[4,8]],[[7480,8505],[-13,6],[0,-10],[-7,-16],[0,-24],[-20,23],[-8,13],[9,12],[-1,32],[-5,9],[-11,0],[-7,-8],[-14,-1],[-14,-22],[-18,-7],[-3,-6],[-17,27],[10,68]],[[7543,8595],[-26,4],[0,-9],[-12,-4],[0,-14],[-7,-16],[-16,-15],[5,-4],[-7,-32]],[[7543,8597],[0,-2]],[[7540,8601],[3,-2]],[[7538,8602],[1,-1]],[[7537,8606],[1,-4]],[[7538,8615],[-1,-9]],[[7538,8619],[0,-3]],[[7544,8625],[7,-1],[-4,-10],[-9,5]],[[7542,8637],[2,-12]],[[7551,8642],[6,-3],[-10,-6],[-5,4]],[[7564,8672],[-11,-4],[1,-11],[-3,-15]],[[7566,8673],[-2,-1]],[[7569,8688],[-3,-15]],[[7572,8690],[-3,-2]],[[7572,8692],[0,-2]],[[7574,8695],[-2,-3]],[[7576,8696],[-2,-1]],[[7583,8708],[-7,-12]],[[7724,8630],[-8,17],[-15,17],[-11,8],[-21,22],[-13,6],[-13,18],[-11,8],[-10,1],[-7,-14],[-14,-2],[-3,-5],[-15,2]],[[7724,8630],[5,15]],[[7556,9100],[3,-20],[39,-141],[9,-16],[-4,-12],[5,-20],[-13,-12],[-8,-15],[-21,13],[3,38],[-13,16],[17,-10],[1,19],[5,4]],[[7550,8976],[1,-19],[-11,13],[-2,14],[-13,18],[3,12],[-3,32],[5,9],[-1,13]],[[7554,8983],[-6,6],[2,-13]],[[7553,8981],[1,2]],[[7554,8980],[-1,1]],[[7558,8964],[9,33],[-13,18],[-3,33],[-4,-26],[15,-20],[1,-13],[-9,-16],[0,7]],[[7558,8963],[0,1]],[[7558,8961],[0,2]],[[7559,8959],[-1,2]],[[7559,8954],[0,5]],[[7559,8952],[0,2]],[[7559,8949],[0,3]],[[7559,8947],[0,2]],[[7559,8946],[0,1]],[[7579,8944],[-5,8],[-5,-15],[-10,9]],[[7406,9035],[8,13],[16,-1],[-1,-12],[-7,4],[-8,-5]],[[7411,9034],[-5,1]],[[7414,9034],[-3,0]],[[7462,8938],[5,-5]],[[7462,8937],[0,1]],[[7466,8929],[-4,8]],[[7466,8930],[0,-1]],[[7467,8932],[-1,-2]],[[7467,8933],[0,-1]],[[7559,8952],[0,-3]],[[7559,8959],[0,-5]],[[7558,8959],[1,0]],[[7556,8958],[2,1]],[[7554,8957],[2,1]],[[7559,8946],[-5,11]],[[7559,8949],[0,-2]],[[7576,8696],[-7,-8]],[[7574,8695],[2,1]],[[7572,8692],[2,3]],[[7569,8688],[3,2]],[[7471,8956],[1,-2]],[[7472,8954],[-2,4]],[[7470,8958],[1,-2]],[[7669,8670],[-1,1]],[[7666,8675],[3,-5]],[[7426,9010],[1,-4]],[[7426,9009],[0,1]],[[7427,9006],[-1,3]],[[7564,8671],[0,1]],[[7566,8673],[-2,-2]],[[7350,8935],[18,8],[-2,10],[-10,6],[7,6],[2,20],[-4,9],[7,1],[-1,12],[11,15],[12,-5],[10,19],[6,-1]],[[7350,8932],[0,3]],[[7348,8929],[2,3]],[[7346,8926],[2,3]],[[7346,8925],[0,1]],[[7346,8922],[0,3]],[[7346,8920],[0,2]],[[7346,8917],[0,3]],[[7346,8917],[0,0]],[[7114,8741],[188,158],[14,40],[30,-22]],[[7240,8614],[0,0]],[[7242,8615],[-2,-1]],[[7243,8616],[-1,-1]],[[7245,8618],[-2,-2]],[[7249,8617],[-4,1]],[[7252,8614],[-3,3]],[[7254,8613],[-2,1]],[[7259,8613],[-5,0]],[[7269,8612],[-10,1]],[[7271,8612],[-2,0]],[[7273,8611],[-2,1]],[[7274,8610],[-1,1]],[[7280,8608],[-6,2]],[[7283,8610],[-3,-2]],[[7288,8610],[-5,0]],[[7290,8609],[-2,1]],[[7290,8608],[0,1]],[[7288,8598],[2,10]],[[7288,8595],[0,3]],[[7300,8584],[-12,11]],[[7301,8583],[-1,1]],[[7303,8581],[-2,2]],[[7307,8580],[-4,1]],[[7309,8581],[-2,-1]],[[7310,8582],[-1,-1]],[[7312,8585],[-2,-3]],[[7312,8586],[0,-1]],[[7314,8588],[-2,-2]],[[7314,8591],[0,-3]],[[7312,8595],[2,-4]],[[7330,8606],[-18,-11]],[[7332,8610],[-2,-4]],[[7332,8612],[0,-2]],[[7334,8612],[-2,0]],[[7335,8611],[-1,1]],[[7337,8607],[-2,4]],[[7338,8605],[-1,2]],[[7339,8602],[-1,3]],[[7342,8602],[-3,0]],[[7345,8604],[-3,-2]],[[7351,8606],[-6,-2]],[[7356,8607],[-5,-1]],[[7358,8604],[-2,3]],[[7359,8603],[-1,1]],[[7361,8602],[-2,1]],[[7365,8609],[-4,-7]],[[7370,8617],[-5,-8]],[[7372,8623],[-2,-6]],[[7385,8628],[-13,-5]],[[7385,8631],[0,-1]],[[7383,8634],[2,-3]],[[7383,8638],[0,-2]],[[7400,8643],[-15,0],[-2,-5]],[[7404,8652],[-4,-9]],[[7401,8658],[3,-6]],[[7401,8661],[0,-3]],[[7402,8665],[-1,-3]],[[7403,8667],[-1,-2]],[[7409,8669],[-6,-2]],[[7408,8692],[5,-15],[-4,-8]],[[7427,8734],[-6,2],[-2,-30],[-11,-13]],[[7430,8732],[-3,2]],[[7441,8906],[-3,-18],[10,-13],[-18,1],[8,-4],[2,-14],[8,1],[7,13],[12,2],[7,14],[-4,9],[14,2],[5,9],[0,12],[12,8],[21,1],[10,-10],[8,-28],[0,-18],[7,-7],[1,-17],[6,-9],[-1,-12],[-13,-2],[-5,22],[-6,-7],[-10,12],[-19,4],[6,-11],[10,0],[-22,-31],[10,2],[-3,-25],[-9,1],[-28,-34],[-13,6],[-10,-11],[-4,-19],[-7,-4]],[[7442,8910],[-1,-4]],[[7443,8913],[-1,-3]],[[7443,8914],[0,-1]],[[7443,8916],[0,-2]],[[7443,8918],[0,-2]],[[7430,9000],[7,-1],[1,9],[15,-8],[8,-15],[1,-35],[-5,-24],[5,-10],[-7,-3],[-2,-18],[-5,-7],[-6,3],[5,14],[0,15],[-4,-2]],[[7430,9001],[0,-1]],[[7430,9003],[0,-2]],[[7431,9004],[-1,-1]],[[7431,9006],[0,-2]],[[7427,9006],[4,0]],[[7426,9009],[1,-3]],[[7414,9034],[17,1],[2,-18],[-7,-7]],[[7411,9034],[3,0]],[[7406,9035],[5,-1]],[[7437,9041],[15,-15],[18,-7],[2,-20],[-11,3],[-10,9],[-13,3],[-6,13],[1,15]],[[7435,9042],[2,-1]],[[7433,9042],[2,0]],[[7450,9035],[-15,11],[8,9],[14,-2],[14,-18],[1,-12],[-22,12]],[[7467,8933],[5,1],[2,19],[7,7],[3,-17],[-10,-23],[-7,-2],[-1,11]],[[7467,8932],[0,1]],[[7466,8930],[1,2]],[[7470,8958],[-5,9],[-3,18],[12,3],[3,-21],[-3,-7]],[[7471,8956],[-1,2]],[[7472,8954],[-1,2]],[[7474,8959],[-2,-5]],[[7474,8960],[0,-1]],[[7510,8995],[17,-36],[-7,3],[-4,12],[-10,15],[4,6]],[[7466,8901],[-6,-12],[0,14],[6,-2]],[[7521,8832],[9,-8],[-13,2],[4,6]],[[7511,8799],[-6,-4],[1,16],[5,-12]],[[7431,9006],[-1,-6]],[[7431,9005],[0,1]],[[7431,9004],[0,1]],[[7430,9003],[1,1]],[[7430,9000],[0,3]],[[7550,8976],[4,7]],[[7554,8980],[-4,-4]],[[7553,8981],[1,-1]],[[7554,8983],[-1,-2]],[[7443,8909],[-2,-3]],[[7443,8909],[0,4]],[[7442,8910],[1,3]],[[7441,8906],[1,4]],[[7556,8958],[-2,-1]],[[7557,8958],[-1,0]],[[7558,8959],[-1,-1]],[[7558,8960],[0,-1]],[[7558,8961],[0,-1]],[[7558,8962],[0,-1]],[[7558,8963],[0,-1]],[[7558,8964],[0,-1]],[[7554,8957],[4,7]],[[7709,8591],[4,-4]],[[7516,8820],[-2,4]],[[7514,8824],[2,-2]],[[7437,9041],[-2,1]],[[7433,9042],[4,-1]],[[7794,4613],[4,-29],[-3,-10],[4,-15],[-17,2],[-10,9],[5,7],[-1,10],[-7,-5],[-7,4],[-2,-14],[0,-30],[-4,-8],[-10,-2],[-10,10],[-17,1],[4,-4],[12,3],[3,-7],[13,-3],[8,4],[1,29],[2,18],[15,-6],[-5,-10],[18,-10],[3,-10],[6,3],[-1,22],[3,28],[9,3],[15,-20],[3,-14],[-1,-44],[18,-25]],[[7211,3317],[-291,-77],[32,125],[-62,104]],[[7276,4709],[6,44],[84,-33],[12,-29],[31,-2],[43,24]],[[7249,8617],[5,-4]],[[7245,8618],[4,-1]],[[7243,8616],[2,2]],[[7240,8614],[3,2]],[[7240,8613],[0,1]],[[7361,8602],[0,-1]],[[7360,8602],[1,0]],[[7358,8604],[2,-2]],[[7356,8607],[2,-3]],[[7351,8606],[5,1]],[[7345,8604],[6,2]],[[7342,8602],[3,2]],[[7339,8602],[3,0]],[[7338,8605],[1,-3]],[[7337,8607],[1,-2]],[[7335,8611],[2,-4]],[[7332,8610],[3,1]],[[7330,8606],[2,4]],[[7312,8595],[14,4],[4,7]],[[7314,8591],[-2,4]],[[7314,8588],[0,3]],[[7312,8585],[2,3]],[[7310,8582],[2,3]],[[7307,8580],[3,2]],[[7303,8581],[4,-1]],[[7301,8583],[2,-2]],[[7288,8595],[12,-11]],[[7290,8608],[-2,-10]],[[7288,8610],[2,-2]],[[7283,8610],[5,0]],[[7280,8608],[3,2]],[[7274,8610],[6,-2]],[[7271,8612],[2,-1]],[[7259,8613],[10,-1]],[[7254,8613],[5,0]],[[3145,5231],[32,-430]],[[3177,4801],[-70,3],[-185,11]],[[375,7271],[228,1255]],[[735,8253],[-155,-507]],[[728,8514],[-35,-246],[42,-15]],[[7423,5171],[-12,10],[-8,-9],[-9,3],[-5,-19],[-19,-19],[-9,8],[-6,-15],[-6,-5],[-13,8],[-1,6],[-35,-11]],[[3864,6811],[-1,-15],[-6,-9],[-17,-6],[-8,-12],[-5,-21],[2,-27],[-2,-7],[-9,4],[1,-21],[-13,-7],[-7,11],[-16,-1],[-7,-12],[-9,-2],[-3,-8],[0,-20],[-12,-13],[3,-15],[-3,-9],[-11,-8],[-3,-12],[-12,-22],[3,-16],[-14,-23],[0,-17],[-6,-2],[-3,-15],[-9,-4],[-5,-14],[4,-23],[-10,-12],[-15,1],[-5,9],[3,14],[-18,17],[-20,1],[6,-32],[-26,-73]],[[5218,7490],[6,1],[-4,17],[2,17],[6,0],[-1,16],[10,21],[7,47],[0,23],[-14,16],[-6,-1],[-2,10],[14,43],[4,-3],[2,12],[-7,6],[1,11],[-8,4],[6,8],[-16,39]],[[5487,7893],[20,-138],[4,-3]],[[9819,2989],[-7,-30],[-1,-22],[-7,8],[-4,-8],[6,-10],[1,-26],[4,-11],[5,7]],[[9492,2615],[0,-11],[-6,-4],[4,-7],[-8,-35],[-4,-4],[-2,-25],[-5,2]],[[9491,2617],[1,-2]],[[9695,2614],[-22,-7],[-3,-6],[-20,-7],[-22,0],[8,16],[1,11],[-5,0],[0,-14],[-6,-15],[-8,-5],[2,13],[-3,11],[-6,-4],[6,-19],[1,-15],[-29,13],[-11,0],[-28,-7],[4,8],[-2,18],[-4,5],[-1,-14],[6,-8],[-4,-19],[-15,2],[-34,-14],[-4,-7],[-17,-5],[6,12],[7,34],[2,28],[-3,-2]],[[9695,2614],[-1,0]],[[9694,2617],[0,-3]],[[9693,2620],[1,-2]],[[6469,9428],[43,89],[50,45],[43,33],[46,-23],[142,-68],[29,165]],[[1831,9130],[202,-16]],[[7264,6311],[10,-14],[-22,4],[1,11],[11,-1]],[[7208,5970],[-12,-1],[0,13],[5,11],[-2,34],[7,15],[-7,-2],[-11,5],[0,31],[-9,-6],[-4,13],[4,19],[-7,23],[10,2],[5,-13],[6,2],[1,13],[12,9],[13,0],[4,24],[-4,0],[3,27],[15,-4],[3,8],[23,-7],[8,8],[8,-3],[-1,-10],[-9,-15],[0,-15],[12,-13],[7,-26],[8,-8],[7,-15],[13,8],[5,9],[8,53],[-12,18],[2,17],[-4,13],[4,18],[-7,1],[-9,18],[5,16],[8,4],[9,-11],[-3,-35],[14,-11],[8,17],[5,-5],[0,-36]],[[7210,5969],[-2,1]],[[7211,5967],[-1,2]],[[7211,5967],[0,0]],[[7214,5968],[-3,-1]],[[7215,5968],[-1,0]],[[7216,5968],[-1,0]],[[7217,5968],[-1,0]],[[7194,5552],[27,412],[-4,4]],[[7349,6182],[-1,-20],[7,-7],[-1,13],[5,4],[9,-6],[1,-16],[4,19],[14,-5],[3,7],[14,-4],[10,14]],[[7349,6182],[0,1]],[[3821,4777],[-20,2],[-156,5]],[[5927,5393],[-5,-20],[4,-3],[2,-16],[34,-117],[24,-109]],[[5927,5393],[0,0]],[[6735,3418],[-4,10],[1,17],[13,29],[145,-5]],[[6736,3417],[-1,1]],[[6738,3418],[-2,-1]],[[6742,3424],[-4,-6]],[[6669,3156],[14,6],[13,23],[-13,-13],[-3,2],[8,19],[-3,13],[-9,14],[7,7],[0,28],[8,11],[18,48],[0,9],[11,9],[14,-23],[-4,17],[1,15],[-4,15],[8,8],[9,-4],[14,-19],[-4,-26],[-5,1],[2,-15],[5,-5],[-3,-23],[6,2],[2,14],[-7,20],[6,11],[7,0],[8,13],[10,-14],[15,9],[-30,7],[-9,39],[-5,8],[2,33],[-4,-13],[-6,16],[-6,6]],[[7153,3033],[-63,-65]],[[7083,9186],[28,-34],[51,-58],[20,-15]],[[6803,6234],[-1,-7],[9,-11],[21,26],[1,8],[-5,14],[5,15],[13,4],[10,-12],[8,4]],[[6801,6240],[2,-6]],[[6797,6242],[2,-1]],[[6790,6238],[5,4]],[[6785,6238],[5,0]],[[6782,6238],[3,0]],[[6767,6234],[15,4]],[[6766,6233],[1,1]],[[6763,6230],[3,3]],[[6761,6230],[2,0]],[[6753,6225],[8,5]],[[6749,6226],[4,-1]],[[6738,6230],[11,-4]],[[6734,6230],[4,0]],[[6732,6226],[2,4]],[[6732,6221],[0,5]],[[6732,6219],[0,2]],[[6732,6213],[0,6]],[[6731,6212],[1,1]],[[6729,6212],[2,0]],[[6725,6213],[4,-1]],[[6722,6215],[3,-2]],[[6721,6215],[1,0]],[[6720,6213],[1,2]],[[6717,6208],[3,5]],[[6717,6205],[0,3]],[[6712,6196],[4,8]],[[6712,6191],[0,5]],[[6706,6184],[4,5]],[[6703,6179],[3,5]],[[6702,6177],[1,2]],[[6698,6172],[4,5]],[[6696,6170],[2,2]],[[6693,6171],[3,-1]],[[6693,6172],[0,-1]],[[6692,6176],[1,-4]],[[6690,6177],[2,-1]],[[6686,6176],[4,1]],[[6681,6179],[5,-3]],[[6679,6179],[2,0]],[[6674,6178],[4,1]],[[6673,6176],[1,2]],[[6672,6174],[1,2]],[[6671,6172],[1,2]],[[6669,6169],[2,3]],[[6668,6165],[1,4]],[[6668,6164],[0,1]],[[1395,9163],[260,-20],[3,0]],[[3445,4791],[-191,6],[-41,3],[-36,1]],[[7161,7372],[-4,-21],[-4,-30],[-1,-44],[5,-17],[19,2],[-12,-28],[8,-27],[9,-1],[6,7],[17,-5],[9,-10],[8,2],[9,-10],[0,-23],[4,-15],[17,0],[-11,-20],[-6,3],[-9,-6],[4,11],[-13,5],[-1,11],[-9,1],[-2,16],[-6,3],[-22,-19],[1,-21],[-5,7],[-13,-3],[-4,-8],[-3,55],[6,8],[1,26],[-2,13],[-12,36],[0,17],[3,71],[-3,8]],[[9580,230],[22,32],[20,47],[14,-8],[6,42],[23,2],[17,-1],[21,-8],[-4,-11],[1,-11],[7,21],[-12,7],[12,6],[28,23],[14,30],[12,-2],[-13,-8],[4,-27],[6,-14],[-1,-20],[7,20],[8,13],[-11,-1],[-2,14],[8,15],[5,-5],[19,1],[4,6],[-1,28],[-3,-9],[-16,-3],[-9,-10],[-3,11],[-9,9],[-8,14],[8,11],[-14,-10],[-12,39],[9,-4],[21,2],[20,13],[37,37],[7,15],[4,25],[-1,15],[-12,28],[-26,40],[-11,11],[-10,-3],[5,16],[8,-2],[5,9],[3,27],[-5,4],[-6,-13],[-8,-28],[-6,-2],[2,-14],[-12,-8],[-11,-34],[-3,-39],[-15,-5],[-4,-15],[6,-32],[-14,6],[-12,-9],[-7,-21],[0,-15],[4,-13],[-11,1],[-9,-8],[-6,-16],[-4,-24],[-7,6],[-10,-4],[-9,-22],[0,-12],[-16,-8],[-15,-4],[-7,-14],[-4,-18],[2,-18],[-5,14],[-5,-7],[-20,16],[-6,-2],[-1,13],[12,0],[21,12],[34,30],[12,18],[28,49],[9,13],[25,53],[13,34],[11,38],[15,75],[7,48],[2,27],[0,35],[-12,30],[-9,13],[-14,27],[-13,4],[-9,7],[-16,33],[-2,31],[20,-23],[16,-34],[29,-49],[18,-37],[18,-48],[16,-48],[29,-98],[15,-41],[21,-68],[10,-37],[10,-25],[34,-96],[21,-77],[5,-37],[0,-35],[-2,-20],[-11,-56],[-8,-32],[-10,-21],[-28,-13],[-19,-13],[-29,-16],[-29,-9],[-20,-1],[-23,3],[-31,8],[-14,6],[-24,4],[-13,3],[-15,0],[-22,5],[-54,0],[-16,-7],[-25,-20],[-12,0],[-33,9],[-21,12],[-24,16],[-18,10],[-33,9],[-13,12],[-22,12],[-7,7],[-22,11],[-38,33],[-12,6],[-42,37],[-5,2],[-41,42],[-10,5],[-27,26],[-1,11],[6,-8],[13,1],[15,-7],[0,-9],[17,-7],[0,-6],[-12,0],[14,-11],[1,-6],[23,-6],[7,9],[6,-3],[-1,-20],[19,21],[13,23],[-28,-30],[26,50],[0,21],[-6,22],[-9,12],[-22,-21],[-7,4],[0,16],[28,16],[-5,9],[7,9],[39,-18],[28,2],[11,5],[23,-5],[49,0],[59,4],[33,8],[18,16],[6,-27],[9,-7],[25,-10],[-4,-8],[-15,-7],[-1,-21],[9,0],[-3,-18],[10,-20],[10,-5],[-3,-15],[5,-7]],[[9578,210],[-5,18],[7,2]],[[9579,214],[-1,-4]],[[9581,213],[-2,1]],[[9580,210],[1,3]],[[9578,207],[2,3]],[[9578,208],[0,-1]],[[9047,431],[-3,-20],[20,-19],[12,0],[2,11],[-9,15],[-11,-13],[-5,1],[21,19],[22,-7],[30,-21],[10,-14],[5,-15],[-14,23],[-4,-1],[2,-27],[11,-5],[12,-19],[0,-8],[-11,-16],[-14,-4],[-20,4],[11,-7],[20,-24],[-8,5],[-47,45],[-21,32],[-8,18],[-17,26],[-2,10],[8,15],[8,-3]],[[9047,432],[0,-1]],[[8977,584],[17,2],[14,-9],[0,-6],[-15,-21],[-5,3],[-14,-10],[-12,24],[-10,-4],[14,-16],[4,1],[12,-9],[-17,2],[-16,22],[-5,18],[6,10],[27,-7]],[[9047,432],[11,-4],[4,-10],[-15,13]],[[9578,207],[1,7]],[[9580,210],[-2,-3]],[[9581,213],[-1,-3]],[[9579,214],[2,-1]],[[6350,6506],[3,-43],[16,-11],[5,3],[14,-3],[7,-16],[0,-26],[11,-16],[5,-26],[0,-14],[6,-10],[5,0],[15,-16],[4,14],[5,-1],[5,-14],[0,-17]],[[890,8190],[-155,63]],[[7230,2410],[5,-8],[7,5],[5,-8],[-10,-7],[-12,11],[5,7]],[[7153,3033],[40,-251],[17,-107],[8,-7],[5,-19]],[[7228,2640],[2,-37],[-7,-17],[2,-54],[-12,-2],[1,-8],[9,-4],[0,-29],[-8,-32],[-1,-26],[3,-5],[-1,-34],[2,-19],[7,-12],[-7,-1],[9,-19],[0,-15],[6,-2],[2,-19],[0,-24],[5,-24],[12,-12],[6,-22],[5,-4],[4,-28],[5,-13],[2,-27],[-5,-14],[11,-27],[-4,-9],[-5,6],[-20,7],[-6,9],[-5,38],[-5,22],[-10,20],[3,8],[-7,11],[-4,18],[-24,-10],[0,-18],[-3,-9]],[[7227,2645],[1,-5]],[[7224,2648],[3,-2]],[[7223,2649],[1,-1]],[[7250,2312],[1,-15],[-6,6],[5,9]],[[933,4921],[-171,16],[-176,18]],[[7199,9393],[33,61],[20,6],[7,-16],[13,-9],[44,24],[32,22],[61,-34],[21,23]],[[7254,9124],[-1,-3]],[[7254,9124],[0,0]],[[7256,9125],[-2,-1]],[[7257,9130],[-1,-4]],[[7258,9137],[-1,-2]],[[7259,9146],[-1,-9]],[[7259,9148],[0,-2]],[[7262,9148],[-3,0]],[[7262,9147],[0,1]],[[7262,9145],[0,2]],[[7263,9141],[-1,4]],[[7263,9139],[0,2]],[[7264,9138],[-1,1]],[[7264,9137],[0,1]],[[7264,9133],[0,4]],[[7263,9131],[1,2]],[[7264,9130],[-1,1]],[[7268,9130],[-4,0]],[[7268,9136],[0,-5]],[[7271,9134],[-2,2]],[[7274,9136],[-3,-2]],[[7274,9140],[0,-4]],[[7274,9143],[0,-2]],[[7272,9139],[2,3]],[[7269,9138],[3,1]],[[7269,9141],[0,-3]],[[7269,9144],[0,-3]],[[7269,9147],[0,-2]],[[7267,9153],[2,-6]],[[7271,9154],[-4,0]],[[7274,9151],[-2,3]],[[7279,9149],[-3,0]],[[7277,9154],[2,-3]],[[7274,9156],[3,-2]],[[7274,9159],[0,-3]],[[7274,9162],[0,-1]],[[7276,9163],[-2,-1]],[[7278,9163],[-2,0]],[[7280,9161],[-1,2]],[[7282,9157],[-1,3]],[[7288,9154],[-6,3]],[[7288,9151],[0,3]],[[7291,9152],[-3,-1]],[[7291,9159],[0,-5]],[[7292,9161],[-1,-2]],[[7293,9162],[-1,-1]],[[7295,9164],[-2,-2]],[[7296,9171],[-1,-7]],[[7301,9170],[-5,2]],[[7303,9152],[-2,18]],[[7306,9151],[-3,1]],[[7307,9153],[-1,-2]],[[7308,9159],[-1,-5]],[[7309,9160],[-1,-1]],[[7311,9159],[-2,1]],[[7312,9152],[-1,7]],[[7314,9152],[-2,0]],[[7315,9158],[-1,-6]],[[7316,9162],[-1,-4]],[[7340,9204],[-14,-1],[-10,-7],[-13,7],[7,18],[-9,7],[-3,16],[-17,6],[0,-12],[-15,-17],[-7,5],[-5,-6],[0,-13],[-9,-8],[5,21],[-10,-3],[7,-21],[9,9],[-2,13],[7,6],[6,-5],[15,17],[0,12],[10,-8],[5,3],[3,-18],[9,-7],[-7,-15],[5,-10],[5,-24],[9,2],[-5,-9]],[[7340,9206],[0,-2]],[[7351,9276],[0,-10],[7,0],[5,-9],[12,-2],[4,-5],[-18,-4],[-19,-19],[-2,-21]],[[7351,9269],[0,7]],[[7486,9397],[2,-12],[-12,1],[4,6],[-5,10],[-13,0],[10,-6],[5,5],[-2,-17],[11,-2],[4,-31],[-11,-14],[2,-34],[-19,-28],[8,3],[12,-22],[-5,-20],[4,-35],[-7,4],[-21,28],[-21,5],[-18,9],[-24,-2],[-15,13],[-9,0],[-7,10],[-8,1]],[[7488,9410],[-2,-13]],[[7462,9458],[0,-12],[22,-20],[4,-16]],[[7430,9470],[8,3],[5,-6],[14,2],[5,-11]],[[7499,9544],[0,-22],[7,-38],[-5,-11],[5,-26],[2,-54],[3,-40],[6,-27],[3,-31],[7,-36],[8,-50],[2,-21]],[[7482,9527],[17,17]],[[7476,9519],[4,-18],[11,-5],[2,15],[-7,2],[-4,14]],[[7462,9504],[14,15]],[[7462,9501],[0,3]],[[7462,9495],[0,6]],[[7462,9489],[0,6]],[[7464,9461],[-4,15],[2,13]],[[7462,9458],[2,3]],[[7495,9399],[-9,32],[-24,27]],[[7496,9175],[5,14],[-2,25],[5,7],[-10,12],[1,15],[-3,27],[-15,-1],[-1,6],[9,12],[1,43],[8,17],[-6,23],[7,4],[0,20]],[[7496,9173],[0,2]],[[7496,9174],[0,-1]],[[7496,9173],[0,1]],[[7496,9172],[0,1]],[[7496,9169],[0,3]],[[7499,9169],[-3,0]],[[7500,9170],[-1,-1]],[[7489,9401],[6,-13],[-7,-10],[-2,19]],[[7486,9397],[3,4]],[[7462,9203],[8,-5],[2,-11],[-6,3]],[[7462,9201],[0,2]],[[7464,9198],[-2,3]],[[7465,9196],[-1,2]],[[7466,9191],[-1,5]],[[7466,9190],[0,1]],[[7488,9260],[-11,12],[7,-2],[4,-10]],[[7451,9213],[6,-13]],[[7451,9211],[0,2]],[[7452,9209],[-1,2]],[[7455,9205],[-3,4]],[[7456,9203],[-1,2]],[[7457,9200],[-1,3]],[[7428,9226],[-1,-2]],[[7418,9232],[10,-6]],[[7419,9231],[-1,1]],[[7419,9230],[0,1]],[[7422,9228],[-3,2]],[[7424,9225],[-2,3]],[[7427,9224],[-3,1]],[[7496,9172],[0,-3]],[[7496,9173],[0,-1]],[[7495,9168],[1,5]],[[7324,9167],[-2,6],[-10,-2],[-1,15],[16,12],[17,1],[11,33],[12,11],[11,0],[12,-7],[24,2],[4,-6]],[[7374,9170],[-19,-10],[-23,-2],[-8,9]],[[7374,9171],[0,-1]],[[7377,9175],[-3,-4]],[[7380,9179],[-3,-4]],[[7382,9182],[-2,-3]],[[7390,9177],[0,8],[-7,0]],[[7457,9200],[2,-18],[-11,-7],[-10,0],[0,16],[-8,4],[-1,-8],[-10,-11],[-11,6],[-1,-12],[-12,-4],[-5,11]],[[7456,9203],[1,-3]],[[7455,9205],[1,-2]],[[7452,9209],[3,-4]],[[7451,9211],[1,-2]],[[7433,9223],[18,-10]],[[7433,9222],[0,1]],[[7432,9222],[1,0]],[[7428,9223],[4,-1]],[[7424,9225],[4,-2]],[[7422,9228],[2,-3]],[[7419,9230],[3,-2]],[[7419,9231],[0,-1]],[[7418,9232],[1,-1]],[[7456,9498],[2,-23],[-15,0]],[[7447,9488],[9,10]],[[7443,9475],[4,13]],[[7481,9429],[-14,17],[14,-12],[0,-5]],[[7495,9215],[1,5]],[[7495,9217],[0,-2]],[[7496,9218],[-1,-1]],[[7496,9220],[0,-2]],[[7462,9489],[-4,10]],[[7462,9495],[0,-6]],[[7462,9501],[0,-6]],[[7461,9503],[1,-2]],[[7458,9499],[3,4]],[[7443,9485],[0,-10]],[[7442,9483],[1,2]],[[7443,9475],[-1,8]],[[7465,9196],[1,-5]],[[7464,9198],[1,-2]],[[7462,9200],[2,-2]],[[7462,9193],[0,7]],[[7466,9190],[-4,3]],[[7428,9226],[5,-3]],[[7427,9224],[1,2]],[[7428,9223],[-1,1]],[[7432,9222],[-4,1]],[[7433,9223],[0,-1]],[[7495,9217],[1,1]],[[7496,9218],[0,2]],[[7496,9220],[-1,-5]],[[7143,9586],[-3,10],[8,10],[0,12],[11,15],[2,29],[11,16],[12,30],[12,6],[5,-11],[4,-23],[13,-10],[9,4],[26,-11],[15,-22],[13,-26],[9,-3],[12,-23],[5,-16],[13,-16],[36,-24],[8,-23],[11,-11],[10,-18],[28,-2],[3,6],[14,-15]],[[7145,9584],[-2,2]],[[7152,9578],[-7,6]],[[7151,9572],[1,6]],[[7155,9562],[-4,8]],[[7459,9524],[-2,6],[10,21],[5,-8],[5,-21]],[[7459,9522],[0,2]],[[7458,9519],[1,3]],[[7459,9519],[-1,0]],[[7460,9510],[-1,9]],[[7459,9509],[1,1]],[[7462,9504],[-3,5]],[[7476,9520],[0,-1]],[[7476,9520],[1,2]],[[7450,9496],[-2,0]],[[7453,9499],[-3,-3]],[[7448,9496],[5,3]],[[7459,9522],[-3,-2]],[[7456,9520],[3,4]],[[7482,9527],[-5,21],[-11,9],[-1,17],[2,8],[10,5],[9,-3],[-9,-8],[14,-13],[8,6],[0,-25]],[[7433,9473],[-14,9],[3,14],[-6,5],[3,20],[12,8],[7,-1],[0,-15],[5,-8],[-5,-26]],[[7433,9473],[5,6]],[[7459,9519],[1,-9]],[[7456,9520],[2,-1]],[[7459,9509],[-9,7],[6,4]],[[7453,9499],[3,-1]],[[7450,9496],[3,3]],[[7448,9496],[2,0]],[[7447,9488],[1,8]],[[4961,7481],[33,267],[12,14],[28,77]],[[631,6639],[21,0],[-1,9],[8,1],[0,13],[96,-6],[-1,80],[-3,27],[4,26],[6,12],[9,5],[5,16],[-7,-5],[0,21],[-3,9],[6,27],[-3,-1],[-1,22],[3,10],[8,-20]],[[6238,7172],[4,33],[-9,64],[-10,118]],[[2355,9088],[209,-17]],[[2718,4821],[-50,-12],[-65,-12],[-28,-33],[-68,4],[-2,36]]]}
[null,{"rpa":"OCPC","pop":{"2000":14605,"2010":15985,"2017":16521,"2020":16867,"2025":16993,"2030":17397,"2035":17698},"county":"Plymouth","hh":{"2000":5263,"2010":6080,"2017":6470,"2020":6604,"2025":6650,"2030":6730,"2035":6840},"emp":{"2000":4205,"2010":3812,"2017":3988,"2020":4185,"2025":4234,"2030":4334,"2035":4440},"_id":"1","name":"Abington"},{"rpa":"MAPC","pop":{"2000":20331,"2010":21924,"2017":21817,"2020":22037,"2025":22467,"2030":22898,"2035":23308},"county":"Middlesex","hh":{"2000":7495,"2010":8187,"2017":8636,"2020":8778,"2025":9033,"2030":9287,"2035":9455},"emp":{"2000":11090,"2010":9650,"2017":10229,"2020":10477,"2025":10376,"2030":10276,"2035":10259},"_id":"2","name":"Acton"},{"rpa":"SRPEDD","pop":{"2000":10161,"2010":10303,"2017":10800,"2020":11020,"2025":11380,"2030":11870,"2035":12040},"county":"Bristol","hh":{"2000":3793,"2010":3934,"2017":4180,"2020":4300,"2025":4460,"2030":4670,"2035":4760},"emp":{"2000":1924,"2010":1108,"2017":1280,"2020":1310,"2025":1340,"2030":1400,"2035":1410},"_id":"3","name":"Acushnet"},{"rpa":"BRPC","pop":{"2000":8809,"2010":8485,"2017":8516,"2020":8529,"2025":8555,"2030":8574,"2035":8600},"county":"Berkshire","hh":{"2000":3992,"2010":3907,"2017":3925,"2020":3932,"2025":3946,"2030":3960,"2035":3974},"emp":{"2000":2141,"2010":1730,"2017":1732,"2020":1735,"2025":1744,"2030":1752,"2035":1761},"_id":"4","name":"Adams"},{"rpa":"PVPC","pop":{"2000":28144,"2010":28438,"2017":29145,"2020":29328,"2025":29603,"2030":29879,"2035":30108},"county":"Hampden","hh":{"2000":11260,"2010":11664,"2017":12225,"2020":12352,"2025":12600,"2030":12760,"2035":12896},"emp":{"2000":11545,"2010":11624,"2017":11939,"2020":12170,"2025":12263,"2030":12309,"2035":12355},"_id":"5","name":"Agawam"},{"rpa":"BRPC","pop":{"2000":399,"2010":494,"2017":496,"2020":497,"2025":498,"2030":499,"2035":501},"county":"Berkshire","hh":{"2000":171,"2010":223,"2017":223,"2020":223,"2025":223,"2030":223,"2035":224},"emp":{"2000":28,"2010":34,"2017":34,"2020":34,"2025":34,"2030":35,"2035":35},"_id":"6","name":"Alford"},{"rpa":"MVPC","pop":{"2000":16450,"2010":16283,"2017":16700,"2020":17000,"2025":17450,"2030":17900,"2035":18200},"county":"Essex","hh":{"2000":6380,"2010":6642,"2017":6900,"2020":7050,"2025":7300,"2030":7540,"2035":7680},"emp":{"2000":4777,"2010":4612,"2017":4801,"2020":4846,"2025":4853,"2030":4862,"2035":4872},"_id":"7","name":"Amesbury"},{"rpa":"PVPC","pop":{"2000":34874,"2010":37819,"2017":38779,"2020":39031,"2025":39411,"2030":39792,"2035":40112},"county":"Hampshire","hh":{"2000":9174,"2010":9259,"2017":9712,"2020":9817,"2025":10050,"2030":10160,"2035":10300},"emp":{"2000":12415,"2010":14677,"2017":15023,"2020":15291,"2025":15369,"2030":15389,"2035":15408},"_id":"8","name":"Amherst"},{"rpa":"MVPC","pop":{"2000":31247,"2010":33201,"2017":34120,"2020":34650,"2025":35500,"2030":36500,"2035":37400},"county":"Essex","hh":{"2000":11305,"2010":11851,"2017":12300,"2020":12540,"2025":12930,"2030":13370,"2035":13750},"emp":{"2000":34262,"2010":32011,"2017":35672,"2020":37002,"2025":38688,"2030":40354,"2035":42008},"_id":"9","name":"Andover"},{"rpa":"MAPC","pop":{"2000":42389,"2010":42844,"2017":41470,"2020":41282,"2025":41449,"2030":41617,"2035":42173},"county":"Middlesex","hh":{"2000":19011,"2010":18969,"2017":20022,"2020":20177,"2025":20586,"2030":20994,"2035":21264},"emp":{"2000":8614,"2010":7797,"2017":7964,"2020":8035,"2025":8035,"2030":8035,"2035":8035},"_id":"10","name":"Arlington"},{"rpa":"MRPC","pop":{"2000":5546,"2010":6081,"2017":6170,"2020":6250,"2025":6350,"2030":6450,"2035":6560},"county":"Worcester","hh":{"2000":1929,"2010":2148,"2017":2190,"2020":2240,"2025":2300,"2030":2350,"2035":2400},"emp":{"2000":1008,"2010":1020,"2017":1040,"2020":1050,"2025":1060,"2030":1080,"2035":1090},"_id":"11","name":"Ashburnham"},{"rpa":"MRPC","pop":{"2000":2845,"2010":3074,"2017":3120,"2020":3160,"2025":3210,"2030":3260,"2035":3310},"county":"Middlesex","hh":{"2000":978,"2010":1105,"2017":1130,"2020":1150,"2025":1180,"2030":1210,"2035":1240},"emp":{"2000":229,"2010":290,"2017":290,"2020":300,"2025":300,"2030":300,"2035":310},"_id":"12","name":"Ashby"},{"rpa":"FRCOG","pop":{"2000":1800,"2010":1737,"2017":1790,"2020":1810,"2025":1820,"2030":1860,"2035":1870},"county":"Franklin","hh":{"2000":741,"2010":760,"2017":783,"2020":790,"2025":797,"2030":815,"2035":820},"emp":{"2000":224,"2010":246,"2017":248,"2020":253,"2025":258,"2030":264,"2035":269},"_id":"13","name":"Ashfield"},{"rpa":"MAPC","pop":{"2000":14674,"2010":16593,"2017":17020,"2020":17698,"2025":18170,"2030":18642,"2035":19153},"county":"Middlesex","hh":{"2000":5720,"2010":6385,"2017":7499,"2020":7863,"2025":8209,"2030":8555,"2035":8782},"emp":{"2000":4467,"2010":4996,"2017":5097,"2020":5140,"2025":5070,"2030":5000,"2035":4962},"_id":"14","name":"Ashland"},{"rpa":"MRPC","pop":{"2000":11299,"2010":11584,"2017":11760,"2020":11900,"2025":12100,"2030":12300,"2035":12490},"county":"Worcester","hh":{"2000":4487,"2010":4656,"2017":4750,"2020":4850,"2025":4980,"2030":5100,"2035":5200},"emp":{"2000":3708,"2010":3490,"2017":3560,"2020":3600,"2025":3650,"2030":3690,"2035":3740},"_id":"15","name":"Athol"},{"rpa":"SRPEDD","pop":{"2000":42068,"2010":43593,"2017":45410,"2020":46330,"2025":46440,"2030":46770,"2035":47230},"county":"Bristol","hh":{"2000":16019,"2010":16884,"2017":17810,"2020":18330,"2025":18400,"2030":18660,"2035":18930},"emp":{"2000":22607,"2010":16598,"2017":17560,"2020":17930,"2025":18430,"2030":19170,"2035":19420},"_id":"16","name":"Attleboro"},{"rpa":"CMRPC","pop":{"2000":15901,"2010":16188,"2017":16540,"2020":16780,"2025":17130,"2030":17620,"2035":18190},"county":"Worcester","hh":{"2000":6346,"2010":6542,"2017":6680,"2020":6820,"2025":7010,"2030":7120,"2035":7480},"emp":{"2000":11600,"2010":9940,"2017":10250,"2020":10450,"2025":10630,"2030":10750,"2035":10840},"_id":"17","name":"Auburn"},{"rpa":"OCPC","pop":{"2000":4443,"2010":4356,"2017":4421,"2020":4517,"2025":4550,"2030":4600,"2035":4636},"county":"Norfolk","hh":{"2000":1705,"2010":1709,"2017":1715,"2020":1774,"2025":1774,"2030":1784,"2035":1794},"emp":{"2000":6859,"2010":5080,"2017":5227,"2020":5335,"2025":5634,"2030":5684,"2035":5740},"_id":"18","name":"Avon"},{"rpa":"MRPC","pop":{"2000":7287,"2010":7427,"2017":7540,"2020":7630,"2025":7760,"2030":7880,"2035":8010},"county":"Middlesex","hh":{"2000":2982,"2010":3118,"2017":3180,"2020":3250,"2025":3330,"2030":3410,"2035":3480},"emp":{"2000":6006,"2010":8410,"2017":8570,"2020":8680,"2025":8780,"2030":8890,"2035":8990},"_id":"19","name":"Ayer"},{"rpa":"CCC","pop":{"2000":47821,"2010":45193,"2017":47840,"2020":48970,"2025":50640,"2030":52720,"2035":54600},"county":"Barnstable","hh":{"2000":19626,"2010":19225,"2017":20510,"2020":21040,"2025":22120,"2030":23000,"2035":23890},"emp":{"2000":27558,"2010":26090,"2017":26940,"2020":27830,"2025":27960,"2030":28110,"2035":28260},"_id":"20","name":"Barnstable"},{"rpa":"CMRPC","pop":{"2000":5113,"2010":5398,"2017":5550,"2020":5630,"2025":5740,"2030":5900,"2035":6100},"county":"Worcester","hh":{"2000":1889,"2010":2025,"2017":2130,"2020":2190,"2025":2250,"2030":2330,"2035":2420},"emp":{"2000":1094,"2010":1230,"2017":1250,"2020":1510,"2025":1520,"2030":1530,"2035":1530},"_id":"21","name":"Barre"},{"rpa":"BRPC","pop":{"2000":1755,"2010":1779,"2017":1785,"2020":1788,"2025":1794,"2030":1798,"2035":1803},"county":"Berkshire","hh":{"2000":692,"2010":763,"2017":767,"2020":768,"2025":771,"2030":773,"2035":776},"emp":{"2000":324,"2010":370,"2017":371,"2020":371,"2025":373,"2030":375,"2035":377},"_id":"22","name":"Becket"},{"rpa":"MAPC","pop":{"2000":12595,"2010":13320,"2017":13792,"2020":13755,"2025":13916,"2030":14077,"2035":14373},"county":"Middlesex","hh":{"2000":4621,"2010":5130,"2017":6091,"2020":6167,"2025":6378,"2030":6589,"2035":6728},"emp":{"2000":20171,"2010":21564,"2017":22528,"2020":22940,"2025":22823,"2030":22705,"2035":22697},"_id":"23","name":"Bedford"},{"rpa":"PVPC","pop":{"2000":12968,"2010":14649,"2017":15215,"2020":15398,"2025":15689,"2030":15983,"2035":16254},"county":"Hampshire","hh":{"2000":4886,"2010":5595,"2017":5943,"2020":6046,"2025":6230,"2030":6360,"2035":6485},"emp":{"2000":1817,"2010":2609,"2017":2726,"2020":2798,"2025":2853,"2030":2897,"2035":2942},"_id":"24","name":"Belchertown"},{"rpa":"MAPC","pop":{"2000":15314,"2010":16332,"2017":15597,"2020":15456,"2025":15427,"2030":15398,"2035":15590},"county":"Norfolk","hh":{"2000":5557,"2010":6155,"2017":6269,"2020":6306,"2025":6427,"2030":6548,"2035":6627},"emp":{"2000":5033,"2010":5386,"2017":5509,"2020":5561,"2025":5402,"2030":5242,"2035":5161},"_id":"25","name":"Bellingham"},{"rpa":"MAPC","pop":{"2000":24194,"2010":24729,"2017":24201,"2020":24380,"2025":24732,"2030":25083,"2035":25444},"county":"Middlesex","hh":{"2000":9732,"2010":9651,"2017":10158,"2020":10296,"2025":10527,"2030":10759,"2035":10911},"emp":{"2000":6318,"2010":6263,"2017":6406,"2020":6468,"2025":6454,"2030":6441,"2035":6437},"_id":"26","name":"Belmont"},{"rpa":"SRPEDD","pop":{"2000":5749,"2010":6411,"2017":6760,"2020":7370,"2025":7390,"2030":7410,"2035":7800},"county":"Bristol","hh":{"2000":1843,"2010":2109,"2017":2250,"2020":2480,"2025":2490,"2030":2500,"2035":2650},"emp":{"2000":499,"2010":527,"2017":590,"2020":600,"2025":620,"2030":640,"2035":670},"_id":"27","name":"Berkley"},{"rpa":"CMRPC","pop":{"2000":2380,"2010":2866,"2017":3070,"2020":3140,"2025":3230,"2030":3360,"2035":3480},"county":"Worcester","hh":{"2000":872,"2010":1125,"2017":1180,"2020":1230,"2025":1260,"2030":1330,"2035":1380},"emp":{"2000":631,"2010":480,"2017":590,"2020":600,"2025":620,"2030":620,"2035":630},"_id":"28","name":"Berlin"},{"rpa":"FRCOG","pop":{"2000":2155,"2010":2129,"2017":2200,"2020":2220,"2025":2230,"2030":2270,"2035":2300},"county":"Franklin","hh":{"2000":848,"2010":890,"2017":917,"2020":930,"2025":933,"2030":954,"2035":966},"emp":{"2000":466,"2010":340,"2017":343,"2020":349,"2025":356,"2030":364,"2035":372},"_id":"29","name":"Bernardston"},{"rpa":"MAPC","pop":{"2000":39862,"2010":39502,"2017":40147,"2020":40345,"2025":40963,"2030":41580,"2035":42300},"county":"Essex","hh":{"2000":15750,"2010":15850,"2017":17121,"2020":17360,"2025":17858,"2030":18357,"2035":18686},"emp":{"2000":18965,"2010":21569,"2017":22322,"2020":22645,"2025":22404,"2030":22164,"2035":22052},"_id":"30","name":"Beverly"},{"rpa":"NMCOG","pop":{"2000":38981,"2010":40243,"2017":40430,"2020":40690,"2025":41340,"2030":41810,"2035":42560},"county":"Middlesex","hh":{"2000":12919,"2010":14034,"2017":14200,"2020":14350,"2025":14700,"2030":14950,"2035":15250},"emp":{"2000":26632,"2010":20583,"2017":22310,"2020":22620,"2025":22590,"2030":22810,"2035":22810},"_id":"31","name":"Billerica"},{"rpa":"CMRPC","pop":{"2000":8804,"2010":9026,"2017":9360,"2020":9530,"2025":9770,"2030":10110,"2035":10440},"county":"Worcester","hh":{"2000":3235,"2010":3403,"2017":3490,"2020":3590,"2025":3710,"2030":3870,"2035":4020},"emp":{"2000":1154,"2010":1030,"2017":1040,"2020":1050,"2025":1050,"2030":1060,"2035":1060},"_id":"32","name":"Blackstone"},{"rpa":"PVPC","pop":{"2000":1214,"2010":1233,"2017":1263,"2020":1271,"2025":1282,"2030":1293,"2035":1303},"county":"Hampden","hh":{"2000":456,"2010":492,"2017":515,"2020":521,"2025":530,"2030":537,"2035":543},"emp":{"2000":144,"2010":222,"2017":241,"2020":251,"2025":263,"2030":273,"2035":284},"_id":"33","name":"Blandford"},{"rpa":"MAPC","pop":{"2000":4148,"2010":4897,"2017":4981,"2020":5134,"2025":5330,"2030":5526,"2035":5681},"county":"Worcester","hh":{"2000":1424,"2010":1670,"2017":1786,"2020":1850,"2025":1935,"2030":2020,"2035":2076},"emp":{"2000":2388,"2010":1457,"2017":1508,"2020":1530,"2025":1476,"2030":1421,"2035":1400},"_id":"34","name":"Bolton"},{"rpa":"MAPC","pop":{"2000":589141,"2010":617594,"2017":671574,"2020":681570,"2025":697933,"2030":714296,"2035":727719},"county":"Suffolk","hh":{"2000":239528,"2010":252699,"2017":274254,"2020":278986,"2025":287298,"2030":295607,"2035":302017},"emp":{"2000":584005,"2010":545079,"2017":568956,"2020":579187,"2025":588235,"2030":597282,"2035":603393},"_id":"35","name":"Boston"},{"rpa":"CCC","pop":{"2000":18721,"2010":19754,"2017":20940,"2020":21440,"2025":22190,"2030":23110,"2035":23950},"county":"Barnstable","hh":{"2000":7439,"2010":7866,"2017":8470,"2020":8720,"2025":9220,"2030":9630,"2035":10050},"emp":{"2000":7077,"2010":7300,"2017":8800,"2020":9620,"2025":10550,"2030":11460,"2035":12360},"_id":"36","name":"Bourne"},{"rpa":"MAPC","pop":{"2000":4868,"2010":4996,"2017":5458,"2020":5569,"2025":5703,"2030":5837,"2035":5919},"county":"Middlesex","hh":{"2000":1853,"2010":1949,"2017":2098,"2020":2138,"2025":2185,"2030":2232,"2035":2263},"emp":{"2000":2248,"2010":3881,"2017":4032,"2020":4097,"2025":4031,"2030":3966,"2035":3944},"_id":"37","name":"Boxborough"},{"rpa":"MVPC","pop":{"2000":7921,"2010":7965,"2017":8370,"2020":8850,"2025":9350,"2030":9900,"2035":10600},"county":"Essex","hh":{"2000":2568,"2010":2688,"2017":2850,"2020":3020,"2025":3220,"2030":3450,"2035":3700},"emp":{"2000":910,"2010":1018,"2017":1051,"2020":1057,"2025":1052,"2030":1048,"2035":1044},"_id":"38","name":"Boxford"},{"rpa":"CMRPC","pop":{"2000":4008,"2010":4355,"2017":4510,"2020":4590,"2025":4700,"2030":4850,"2035":5040},"county":"Worcester","hh":{"2000":1573,"2010":1698,"2017":1810,"2020":1870,"2025":1930,"2030":2000,"2035":2080},"emp":{"2000":1348,"2010":1800,"2017":1910,"2020":1960,"2025":2000,"2030":2040,"2035":2060},"_id":"39","name":"Boylston"},{"rpa":"MAPC","pop":{"2000":33828,"2010":35744,"2017":35863,"2020":36053,"2025":36675,"2030":37297,"2035":38085},"county":"Norfolk","hh":{"2000":12652,"2010":13736,"2017":14963,"2020":15202,"2025":15718,"2030":16234,"2035":16563},"emp":{"2000":31671,"2010":26221,"2017":27295,"2020":27755,"2025":27539,"2030":27323,"2035":27207},"_id":"40","name":"Braintree"},{"rpa":"CCC","pop":{"2000":10094,"2010":9820,"2017":10820,"2020":11240,"2025":11900,"2030":12660,"2035":13370},"county":"Barnstable","hh":{"2000":4124,"2010":4383,"2017":5020,"2020":5280,"2025":5770,"2030":6220,"2035":6660},"emp":{"2000":2434,"2010":2640,"2017":2790,"2020":2900,"2025":2960,"2030":3010,"2035":3070},"_id":"41","name":"Brewster"},{"rpa":"OCPC","pop":{"2000":25185,"2010":26563,"2017":27442,"2020":27997,"2025":28200,"2030":28674,"2035":29370},"county":"Plymouth","hh":{"2000":7526,"2010":7995,"2017":8478,"2020":8634,"2025":8720,"2030":8873,"2035":9256},"emp":{"2000":7211,"2010":7780,"2017":8176,"2020":8460,"2025":8684,"2030":8934,"2035":9040},"_id":"42","name":"Bridgewater"},{"rpa":"PVPC","pop":{"2000":3339,"2010":3609,"2017":3781,"2020":3841,"2025":3937,"2030":4034,"2035":4126},"county":"Hampden","hh":{"2000":1250,"2010":1429,"2017":1530,"2020":1560,"2025":1613,"2030":1658,"2035":1702},"emp":{"2000":482,"2010":538,"2017":553,"2020":563,"2025":568,"2030":570,"2035":572},"_id":"43","name":"Brimfield"},{"rpa":"OCPC","pop":{"2000":94304,"2010":93810,"2017":95520,"2020":96080,"2025":98083,"2030":98577,"2035":99076},"county":"Plymouth","hh":{"2000":33675,"2010":33303,"2017":34045,"2020":34449,"2025":35229,"2030":35400,"2035":35474},"emp":{"2000":37754,"2010":36800,"2017":38752,"2020":39635,"2025":40334,"2030":41534,"2035":42040},"_id":"44","name":"Brockton"},{"rpa":"CMRPC","pop":{"2000":3051,"2010":3390,"2017":3480,"2020":3530,"2025":3600,"2030":3700,"2035":3810},"county":"Worcester","hh":{"2000":1204,"2010":1375,"2017":1410,"2020":1450,"2025":1490,"2030":1540,"2035":1590},"emp":{"2000":470,"2010":460,"2017":470,"2020":470,"2025":470,"2030":470,"2035":470},"_id":"45","name":"Brookfield"},{"rpa":"MAPC","pop":{"2000":57107,"2010":58732,"2017":57073,"2020":57248,"2025":58052,"2030":58856,"2035":59499},"county":"Norfolk","hh":{"2000":25594,"2010":25092,"2017":26203,"2020":26345,"2025":26796,"2030":27247,"2035":27543},"emp":{"2000":16441,"2010":17164,"2017":17507,"2020":17653,"2025":17619,"2030":17585,"2035":17584},"_id":"46","name":"Brookline"},{"rpa":"FRCOG","pop":{"2000":1991,"2010":1902,"2017":1960,"2020":1980,"2025":2000,"2030":2030,"2035":2050},"county":"Franklin","hh":{"2000":772,"2010":823,"2017":848,"2020":860,"2025":863,"2030":882,"2035":893},"emp":{"2000":516,"2010":369,"2017":372,"2020":379,"2025":386,"2030":395,"2035":403},"_id":"47","name":"Buckland"},{"rpa":"MAPC","pop":{"2000":22876,"2010":24498,"2017":25710,"2020":25657,"2025":26194,"2030":26731,"2035":27392},"county":"Middlesex","hh":{"2000":8289,"2010":9269,"2017":10481,"2020":10635,"2025":11123,"2030":11611,"2035":11899},"emp":{"2000":39352,"2010":37223,"2017":38712,"2020":39349,"2025":38841,"2030":38333,"2035":38104},"_id":"48","name":"Burlington"},{"rpa":"MAPC","pop":{"2000":101355,"2010":105162,"2017":113627,"2020":115407,"2025":118469,"2030":121531,"2035":123300},"county":"Middlesex","hh":{"2000":42615,"2010":44032,"2017":48335,"2020":49280,"2025":50987,"2030":52695,"2035":53537},"emp":{"2000":115631,"2010":103015,"2017":110900,"2020":114280,"2025":117097,"2030":119914,"2035":119953},"_id":"49","name":"Cambridge"},{"rpa":"MAPC","pop":{"2000":20775,"2010":21561,"2017":22377,"2020":22333,"2025":22474,"2030":22614,"2035":23056},"county":"Norfolk","hh":{"2000":7952,"2010":8378,"2017":9630,"2020":9773,"2025":10085,"2030":10397,"2035":10600},"emp":{"2000":20982,"2010":23146,"2017":23755,"2020":24016,"2025":23746,"2030":23476,"2035":23316},"_id":"50","name":"Canton"},{"rpa":"MAPC","pop":{"2000":4717,"2010":4852,"2017":5048,"2020":5109,"2025":5167,"2030":5224,"2035":5294},"county":"Middlesex","hh":{"2000":1618,"2010":1695,"2017":1818,"2020":1851,"2025":1887,"2030":1924,"2035":1949},"emp":{"2000":906,"2010":583,"2017":577,"2020":575,"2025":555,"2030":536,"2035":534},"_id":"51","name":"Carlisle"},{"rpa":"SRPEDD","pop":{"2000":11163,"2010":11509,"2017":12520,"2020":12780,"2025":13210,"2030":13960,"2035":14420},"county":"Plymouth","hh":{"2000":3984,"2010":4297,"2017":4730,"2020":4870,"2025":5050,"2030":5380,"2035":5570},"emp":{"2000":1923,"2010":2665,"2017":2930,"2020":2990,"2025":3080,"2030":3210,"2035":3310},"_id":"52","name":"Carver"},{"rpa":"FRCOG","pop":{"2000":1358,"2010":1266,"2017":1310,"2020":1320,"2025":1330,"2030":1350,"2035":1370},"county":"Franklin","hh":{"2000":524,"2010":561,"2017":578,"2020":578,"2025":578,"2030":596,"2035":609},"emp":{"2000":325,"2010":407,"2017":411,"2020":418,"2025":426,"2030":436,"2035":445},"_id":"53","name":"Charlemont"},{"rpa":"CMRPC","pop":{"2000":11263,"2010":12981,"2017":13600,"2020":13910,"2025":14330,"2030":14930,"2035":15650},"county":"Worcester","hh":{"2000":3788,"2010":4608,"2017":5100,"2020":5330,"2025":5590,"2030":5800,"2035":6210},"emp":{"2000":2678,"2010":3740,"2017":4000,"2020":4350,"2025":4450,"2030":4520,"2035":4570},"_id":"54","name":"Charlton"},{"rpa":"CCC","pop":{"2000":6625,"2010":6125,"2017":6570,"2020":6770,"2025":7050,"2030":7400,"2035":7720},"county":"Barnstable","hh":{"2000":3160,"2010":3085,"2017":3320,"2020":3420,"2025":3610,"2030":3770,"2035":3930},"emp":{"2000":2977,"2010":2920,"2017":3000,"2020":3080,"2025":3090,"2030":3090,"2035":3090},"_id":"55","name":"Chatham"},{"rpa":"NMCOG","pop":{"2000":33858,"2010":33802,"2017":34280,"2020":34750,"2025":35260,"2030":35880,"2035":36480},"county":"Middlesex","hh":{"2000":12812,"2010":13313,"2017":13650,"2020":13900,"2025":14180,"2030":14550,"2035":14850},"emp":{"2000":22801,"2010":20736,"2017":22600,"2020":23200,"2025":23520,"2030":23710,"2035":23920},"_id":"56","name":"Chelmsford"},{"rpa":"MAPC","pop":{"2000":35080,"2010":35177,"2017":39564,"2020":40424,"2025":41813,"2030":43202,"2035":43905},"county":"Suffolk","hh":{"2000":11888,"2010":11831,"2017":13461,"2020":13696,"2025":14048,"2030":14401,"2035":14633},"emp":{"2000":13126,"2010":13393,"2017":14499,"2020":14973,"2025":14973,"2030":14973,"2035":14973},"_id":"57","name":"Chelsea"},{"rpa":"BRPC","pop":{"2000":3401,"2010":3235,"2017":3247,"2020":3252,"2025":3262,"2030":3269,"2035":3279},"county":"Berkshire","hh":{"2000":1367,"2010":1403,"2017":1409,"2020":1412,"2025":1417,"2030":1422,"2035":1427},"emp":{"2000":332,"2010":537,"2017":538,"2020":539,"2025":542,"2030":544,"2035":547},"_id":"58","name":"Cheshire"},{"rpa":"PVPC","pop":{"2000":1308,"2010":1337,"2017":1371,"2020":1379,"2025":1392,"2030":1406,"2035":1417},"county":"Hampden","hh":{"2000":500,"2010":543,"2017":569,"2020":575,"2025":586,"2030":594,"2035":601},"emp":{"2000":114,"2010":109,"2017":116,"2020":120,"2025":123,"2030":127,"2035":130},"_id":"59","name":"Chester"},{"rpa":"PVPC","pop":{"2000":1201,"2010":1222,"2017":1285,"2020":1307,"2025":1342,"2030":1378,"2035":1413},"county":"Hampshire","hh":{"2000":447,"2010":511,"2017":548,"2020":559,"2025":579,"2030":596,"2035":613},"emp":{"2000":124,"2010":123,"2017":126,"2020":128,"2025":129,"2030":130,"2035":130},"_id":"60","name":"Chesterfield"},{"rpa":"PVPC","pop":{"2000":54653,"2010":55298,"2017":56408,"2020":56649,"2025":56988,"2030":57325,"2035":57570},"county":"Hampden","hh":{"2000":23117,"2010":23739,"2017":24777,"2020":24990,"2025":25329,"2030":25627,"2035":25854},"emp":{"2000":21213,"2010":18931,"2017":19639,"2020":20105,"2025":20401,"2030":20621,"2035":20843},"_id":"61","name":"Chicopee"},{"rpa":"MVC","pop":{"2000":843,"2010":866,"2017":906,"2020":943,"2025":979,"2030":1021,"2035":1047},"county":"Dukes","hh":{"2000":382,"2010":398,"2017":419,"2020":438,"2025":459,"2030":481,"2035":497},"emp":{"2000":303,"2010":292,"2017":304,"2020":327,"2025":334,"2030":338,"2035":342},"_id":"62","name":"Chilmark"},{"rpa":"BRPC","pop":{"2000":1686,"2010":1702,"2017":1708,"2020":1711,"2025":1716,"2030":1720,"2035":1725},"county":"Berkshire","hh":{"2000":659,"2010":675,"2017":678,"2020":679,"2025":682,"2030":684,"2035":687},"emp":{"2000":237,"2010":181,"2017":181,"2020":182,"2025":183,"2030":183,"2035":184},"_id":"63","name":"Clarksburg"},{"rpa":"MRPC","pop":{"2000":13435,"2010":13606,"2017":13800,"2020":13980,"2025":14210,"2030":14440,"2035":14670},"county":"Worcester","hh":{"2000":5597,"2010":5831,"2017":5950,"2020":6080,"2025":6230,"2030":6380,"2035":6510},"emp":{"2000":4886,"2010":4360,"2017":4440,"2020":4500,"2025":4550,"2030":4610,"2035":4660},"_id":"64","name":"Clinton"},{"rpa":"MAPC","pop":{"2000":7261,"2010":7542,"2017":7911,"2020":8112,"2025":8196,"2030":8281,"2035":8390},"county":"Norfolk","hh":{"2000":2673,"2010":2722,"2017":3102,"2020":3198,"2025":3264,"2030":3330,"2035":3374},"emp":{"2000":2358,"2010":2470,"2017":2504,"2020":2519,"2025":2502,"2030":2485,"2035":2480},"_id":"65","name":"Cohasset"},{"rpa":"FRCOG","pop":{"2000":1813,"2010":1671,"2017":1720,"2020":1740,"2025":1750,"2030":1780,"2035":1800},"county":"Franklin","hh":{"2000":686,"2010":683,"2017":704,"2020":720,"2025":716,"2030":732,"2035":741},"emp":{"2000":293,"2010":192,"2017":194,"2020":197,"2025":201,"2030":206,"2035":210},"_id":"66","name":"Colrain"},{"rpa":"MAPC","pop":{"2000":16993,"2010":17668,"2017":18273,"2020":18565,"2025":18891,"2030":19216,"2035":19577},"county":"Middlesex","hh":{"2000":5948,"2010":6484,"2017":6789,"2020":6961,"2025":7190,"2030":7419,"2035":7570},"emp":{"2000":12946,"2010":11528,"2017":12338,"2020":12685,"2025":12574,"2030":12464,"2035":12448},"_id":"67","name":"Concord"},{"rpa":"FRCOG","pop":{"2000":1809,"2010":1897,"2017":1960,"2020":1980,"2025":1990,"2030":2030,"2035":2050},"county":"Franklin","hh":{"2000":692,"2010":770,"2017":794,"2020":800,"2025":808,"2030":825,"2035":835},"emp":{"2000":169,"2010":209,"2017":211,"2020":215,"2025":219,"2030":224,"2035":229},"_id":"68","name":"Conway"},{"rpa":"PVPC","pop":{"2000":978,"2010":872,"2017":893,"2020":898,"2025":906,"2030":913,"2035":920},"county":"Hampshire","hh":{"2000":382,"2010":404,"2017":423,"2020":427,"2025":435,"2030":440,"2035":445},"emp":{"2000":210,"2010":207,"2017":213,"2020":217,"2025":218,"2030":219,"2035":220},"_id":"69","name":"Cummington"},{"rpa":"BRPC","pop":{"2000":6892,"2010":6756,"2017":6781,"2020":6791,"2025":6812,"2030":6827,"2035":6848},"county":"Berkshire","hh":{"2000":2712,"2010":2737,"2017":2750,"2020":2755,"2025":2764,"2030":2774,"2035":2784},"emp":{"2000":2190,"2010":1980,"2017":1983,"2020":1987,"2025":1996,"2030":2006,"2035":2016},"_id":"70","name":"Dalton"},{"rpa":"MAPC","pop":{"2000":25212,"2010":26493,"2017":27595,"2020":27690,"2025":28175,"2030":28661,"2035":29222},"county":"Essex","hh":{"2000":9555,"2010":10615,"2017":11389,"2020":11529,"2025":11873,"2030":12217,"2035":12444},"emp":{"2000":22175,"2010":24990,"2017":25662,"2020":25950,"2025":25600,"2030":25245,"2035":25107},"_id":"71","name":"Danvers"},{"rpa":"SRPEDD","pop":{"2000":30666,"2010":34032,"2017":35810,"2020":36700,"2025":37770,"2030":40330,"2035":41700},"county":"Bristol","hh":{"2000":10555,"2010":11237,"2017":11980,"2020":12370,"2025":12790,"2030":13720,"2035":14250},"emp":{"2000":13348,"2010":15228,"2017":16260,"2020":16600,"2025":17130,"2030":17820,"2035":18530},"_id":"72","name":"Dartmouth"},{"rpa":"MAPC","pop":{"2000":23464,"2010":24729,"2017":25045,"2020":25097,"2025":25731,"2030":26366,"2035":27039},"county":"Norfolk","hh":{"2000":8654,"2010":9651,"2017":9939,"2020":10070,"2025":10495,"2030":10921,"2035":11200},"emp":{"2000":14971,"2010":14433,"2017":14935,"2020":15150,"2025":14950,"2030":14750,"2035":14719},"_id":"73","name":"Dedham"},{"rpa":"FRCOG","pop":{"2000":4750,"2010":5125,"2017":5290,"2020":5340,"2025":5380,"2030":5470,"2035":5530},"county":"Franklin","hh":{"2000":1965,"2010":2053,"2017":2116,"2020":2161,"2025":2193,"2030":2250,"2035":2287},"emp":{"2000":3868,"2010":4442,"2017":4476,"2020":4562,"2025":4648,"2030":4752,"2035":4855},"_id":"74","name":"Deerfield"},{"rpa":"CCC","pop":{"2000":15973,"2010":14207,"2017":14720,"2020":14930,"2025":15230,"2030":15650,"2035":16010},"county":"Barnstable","hh":{"2000":7504,"2010":6928,"2017":7020,"2020":7060,"2025":7180,"2030":7240,"2035":7300},"emp":{"2000":4682,"2010":4580,"2017":4930,"2020":5180,"2025":5340,"2030":5510,"2035":5670},"_id":"75","name":"Dennis"},{"rpa":"SRPEDD","pop":{"2000":6175,"2010":7086,"2017":7170,"2020":7440,"2025":7980,"2030":8270,"2035":8830},"county":"Bristol","hh":{"2000":2201,"2010":2472,"2017":2530,"2020":2650,"2025":2850,"2030":2970,"2035":3190},"emp":{"2000":2086,"2010":1746,"2017":1840,"2020":1880,"2025":1940,"2030":2010,"2035":2040},"_id":"76","name":"Dighton"},{"rpa":"CMRPC","pop":{"2000":7045,"2010":8471,"2017":8840,"2020":9000,"2025":9230,"2030":9550,"2035":9860},"county":"Worcester","hh":{"2000":2476,"2010":3000,"2017":3350,"2020":3500,"2025":3690,"2030":3860,"2035":4000},"emp":{"2000":836,"2010":830,"2017":870,"2020":890,"2025":910,"2030":920,"2035":930},"_id":"77","name":"Douglas"},{"rpa":"MAPC","pop":{"2000":5558,"2010":5589,"2017":5747,"2020":5747,"2025":5786,"2030":5824,"2035":5869},"county":"Norfolk","hh":{"2000":1849,"2010":1869,"2017":1995,"2020":2002,"2025":2024,"2030":2047,"2035":2062},"emp":{"2000":828,"2010":737,"2017":715,"2020":706,"2025":682,"2030":657,"2035":652},"_id":"78","name":"Dover"},{"rpa":"NMCOG","pop":{"2000":28562,"2010":29457,"2017":31060,"2020":32080,"2025":33140,"2030":34630,"2035":36160},"county":"Middlesex","hh":{"2000":10451,"2010":10956,"2017":11580,"2020":12000,"2025":12490,"2030":13150,"2035":13770},"emp":{"2000":4730,"2010":4826,"2017":5470,"2020":5720,"2025":5970,"2030":6210,"2035":6420},"_id":"79","name":"Dracut"},{"rpa":"CMRPC","pop":{"2000":10036,"2010":11390,"2017":11710,"2020":11880,"2025":12120,"2030":12470,"2035":12830},"county":"Worcester","hh":{"2000":3737,"2010":4062,"2017":4370,"2020":4480,"2025":4620,"2030":4780,"2035":4780},"emp":{"2000":2813,"2010":2720,"2017":2830,"2020":2860,"2025":2880,"2030":2890,"2035":2900},"_id":"80","name":"Dudley"},{"rpa":"NMCOG","pop":{"2000":2829,"2010":3179,"2017":3520,"2020":3560,"2025":3950,"2030":4370,"2035":4800},"county":"Middlesex","hh":{"2000":923,"2010":1063,"2017":1190,"2020":1210,"2025":1350,"2030":1500,"2035":1650},"emp":{"2000":234,"2010":255,"2017":310,"2020":320,"2025":350,"2030":360,"2035":390},"_id":"81","name":"Dunstable"},{"rpa":"MAPC","pop":{"2000":14248,"2010":15059,"2017":14682,"2020":14789,"2025":14986,"2030":15183,"2035":15439},"county":"Plymouth","hh":{"2000":4946,"2010":5344,"2017":5447,"2020":5537,"2025":5686,"2030":5834,"2035":5931},"emp":{"2000":2602,"2010":2725,"2017":2858,"2020":2915,"2025":2822,"2030":2729,"2035":2713},"_id":"82","name":"Duxbury"},{"rpa":"OCPC","pop":{"2000":12974,"2010":13794,"2017":14720,"2020":14878,"2025":15118,"2030":15593,"2035":16553},"county":"Plymouth","hh":{"2000":4344,"2010":4750,"2017":5094,"2020":5190,"2025":5369,"2030":5553,"2035":5884},"emp":{"2000":3422,"2010":2540,"2017":2661,"2020":2788,"2025":2863,"2030":2924,"2035":2951},"_id":"83","name":"East Bridgewater"},{"rpa":"CMRPC","pop":{"2000":2097,"2010":2183,"2017":2210,"2020":2240,"2025":2280,"2030":2340,"2035":2450},"county":"Worcester","hh":{"2000":778,"2010":828,"2017":840,"2020":860,"2025":880,"2030":930,"2035":970},"emp":{"2000":365,"2010":420,"2017":430,"2020":430,"2025":430,"2030":430,"2035":430},"_id":"84","name":"East Brookfield"},{"rpa":"PVPC","pop":{"2000":14100,"2010":15720,"2017":16240,"2020":16398,"2025":16645,"2030":16894,"2035":17119},"county":"Hampden","hh":{"2000":5248,"2010":5851,"2017":6183,"2020":6269,"2025":6450,"2030":6544,"2035":6660},"emp":{"2000":9131,"2010":7897,"2017":8111,"2020":8268,"2025":8331,"2030":8363,"2035":8394},"_id":"85","name":"East Longmeadow"},{"rpa":"CCC","pop":{"2000":5453,"2010":4956,"2017":5200,"2020":5300,"2025":5450,"2030":5650,"2035":5820},"county":"Barnstable","hh":{"2000":2396,"2010":2388,"2017":2480,"2020":2510,"2025":2600,"2030":2660,"2035":2720},"emp":{"2000":1064,"2010":1160,"2017":1220,"2020":1270,"2025":1290,"2030":1320,"2035":1340},"_id":"86","name":"Eastham"},{"rpa":"PVPC","pop":{"2000":15994,"2010":16053,"2017":16450,"2020":16553,"2025":16707,"2030":16861,"2035":16989},"county":"Hampshire","hh":{"2000":6854,"2010":7224,"2017":7571,"2020":7649,"2025":7788,"2030":7891,"2035":7984},"emp":{"2000":4788,"2010":4324,"2017":4494,"2020":4603,"2025":4677,"2030":4733,"2035":4789},"_id":"87","name":"Easthampton"},{"rpa":"OCPC","pop":{"2000":22299,"2010":23112,"2017":23420,"2020":23667,"2025":24069,"2030":24559,"2035":25376},"county":"Bristol","hh":{"2000":7489,"2010":7865,"2017":7949,"2020":8005,"2025":8224,"2030":8417,"2035":8751},"emp":{"2000":9347,"2010":9330,"2017":9799,"2020":10210,"2025":10410,"2030":10661,"2035":10815},"_id":"88","name":"Easton"},{"rpa":"MVC","pop":{"2000":3779,"2010":4067,"2017":4255,"2020":4427,"2025":4600,"2030":4796,"2035":4919},"county":"Dukes","hh":{"2000":1582,"2010":1794,"2017":1887,"2020":1972,"2025":2070,"2030":2167,"2035":2242},"emp":{"2000":2004,"2010":2355,"2017":2446,"2020":2630,"2025":2691,"2030":2722,"2035":2752},"_id":"89","name":"Edgartown"},{"rpa":"BRPC","pop":{"2000":1345,"2010":1225,"2017":1229,"2020":1231,"2025":1235,"2030":1238,"2035":1242},"county":"Berkshire","hh":{"2000":609,"2010":563,"2017":566,"2020":566,"2025":569,"2030":571,"2035":573},"emp":{"2000":269,"2010":294,"2017":294,"2020":295,"2025":296,"2030":298,"2035":299},"_id":"90","name":"Egremont"},{"rpa":"FRCOG","pop":{"2000":1467,"2010":1800,"2017":1860,"2020":1870,"2025":1890,"2030":1920,"2035":1940},"county":"Franklin","hh":{"2000":600,"2010":745,"2017":768,"2020":768,"2025":781,"2030":799,"2035":808},"emp":{"2000":437,"2010":277,"2017":279,"2020":284,"2025":289,"2030":296,"2035":302},"_id":"91","name":"Erving"},{"rpa":"MAPC","pop":{"2000":3267,"2010":3504,"2017":3406,"2020":3427,"2025":3475,"2030":3521,"2035":3569},"county":"Essex","hh":{"2000":1313,"2010":1402,"2017":1420,"2020":1435,"2025":1465,"2030":1494,"2035":1514},"emp":{"2000":1460,"2010":1106,"2017":1147,"2020":1165,"2025":1132,"2030":1099,"2035":1080},"_id":"92","name":"Essex"},{"rpa":"MAPC","pop":{"2000":38037,"2010":41667,"2017":38580,"2020":38628,"2025":39163,"2030":39698,"2035":40237},"county":"Middlesex","hh":{"2000":15435,"2010":15543,"2017":16572,"2020":16677,"2025":17019,"2030":17361,"2035":17586},"emp":{"2000":10410,"2010":12771,"2017":12857,"2020":12894,"2025":12894,"2030":12894,"2035":12894},"_id":"93","name":"Everett"},{"rpa":"SRPEDD","pop":{"2000":16159,"2010":15873,"2017":16760,"2020":17100,"2025":17680,"2030":18150,"2035":18750},"county":"Bristol","hh":{"2000":6622,"2010":6672,"2017":7140,"2020":7340,"2025":7620,"2030":7860,"2035":8150},"emp":{"2000":7109,"2010":6022,"2017":5930,"2020":6050,"2025":6210,"2030":6460,"2035":6510},"_id":"94","name":"Fairhaven"},{"rpa":"SRPEDD","pop":{"2000":91938,"2010":88857,"2017":92230,"2020":94030,"2025":97200,"2030":99830,"2035":102740},"county":"Bristol","hh":{"2000":38759,"2010":38457,"2017":40430,"2020":41560,"2025":43130,"2030":44520,"2035":46010},"emp":{"2000":40307,"2010":34005,"2017":35020,"2020":35750,"2025":36760,"2030":38230,"2035":38750},"_id":"95","name":"Fall River"},{"rpa":"CCC","pop":{"2000":32660,"2010":31531,"2017":33730,"2020":34660,"2025":36080,"2030":37780,"2035":39340},"county":"Barnstable","hh":{"2000":13859,"2010":14069,"2017":15240,"2020":15730,"2025":16690,"2030":17500,"2035":18310},"emp":{"2000":14442,"2010":14250,"2017":14690,"2020":15160,"2025":15220,"2030":15280,"2035":15350},"_id":"96","name":"Falmouth"},{"rpa":"MRPC","pop":{"2000":39102,"2010":40318,"2017":40920,"2020":41430,"2025":42120,"2030":42800,"2035":43480},"county":"Worcester","hh":{"2000":14943,"2010":15165,"2017":15490,"2020":15800,"2025":16220,"2030":16600,"2035":16940},"emp":{"2000":14738,"2010":12570,"2017":12810,"2020":12960,"2025":13130,"2030":13290,"2035":13450},"_id":"97","name":"Fitchburg"},{"rpa":"BRPC","pop":{"2000":676,"2010":752,"2017":755,"2020":756,"2025":758,"2030":760,"2035":762},"county":"Berkshire","hh":{"2000":265,"2010":308,"2017":309,"2020":309,"2025":309,"2030":310,"2035":311},"emp":{"2000":81,"2010":74,"2017":75,"2020":75,"2025":75,"2030":75,"2035":76},"_id":"98","name":"Florida"},{"rpa":"MAPC","pop":{"2000":16246,"2010":16865,"2017":17202,"2020":17216,"2025":17483,"2030":17749,"2035":18100},"county":"Norfolk","hh":{"2000":6141,"2010":6504,"2017":7013,"2020":7087,"2025":7297,"2030":7507,"2035":7656},"emp":{"2000":9472,"2010":10879,"2017":11660,"2020":11995,"2025":12814,"2030":13633,"2035":13706},"_id":"99","name":"Foxborough"},{"rpa":"MAPC","pop":{"2000":66910,"2010":68318,"2017":68037,"2020":68272,"2025":69301,"2030":70329,"2035":71288},"county":"Middlesex","hh":{"2000":26153,"2010":26173,"2017":27918,"2020":28155,"2025":28776,"2030":29397,"2035":29805},"emp":{"2000":45893,"2010":43809,"2017":46186,"2020":47204,"2025":47031,"2030":46858,"2035":46829},"_id":"100","name":"Framingham"},{"rpa":"MAPC","pop":{"2000":29560,"2010":31635,"2017":32597,"2020":32735,"2025":33533,"2030":34331,"2035":35078},"county":"Norfolk","hh":{"2000":10152,"2010":10995,"2017":12226,"2020":12380,"2025":12854,"2030":13328,"2035":13640},"emp":{"2000":15793,"2010":13684,"2017":14890,"2020":15408,"2025":15938,"2030":16468,"2035":16320},"_id":"101","name":"Franklin"},{"rpa":"SRPEDD","pop":{"2000":8472,"2010":8870,"2017":9440,"2020":9730,"2025":9790,"2030":9910,"2035":10460},"county":"Bristol","hh":{"2000":2932,"2010":3162,"2017":3410,"2020":3540,"2025":3580,"2030":3640,"2035":3860},"emp":{"2000":2107,"2010":3872,"2017":4340,"2020":4430,"2025":4590,"2030":4770,"2035":5070},"_id":"102","name":"Freetown"},{"rpa":"MRPC","pop":{"2000":20770,"2010":20228,"2017":20530,"2020":20790,"2025":21130,"2030":21470,"2035":21800},"county":"Worcester","hh":{"2000":8282,"2010":8224,"2017":8400,"2020":8570,"2025":8790,"2030":9000,"2035":9180},"emp":{"2000":8434,"2010":8350,"2017":8510,"2020":8620,"2025":8730,"2030":8830,"2035":8940},"_id":"103","name":"Gardner"},{"rpa":"MVC","pop":{"2000":344,"2010":311,"2017":325,"2020":339,"2025":352,"2030":367,"2035":376},"county":"Dukes","hh":{"2000":141,"2010":145,"2017":153,"2020":159,"2025":167,"2030":175,"2035":181},"emp":{"2000":0,"2010":82,"2017":86,"2020":92,"2025":94,"2030":95,"2035":96},"_id":"104","name":"Aquinnah"},{"rpa":"MVPC","pop":{"2000":7377,"2010":8183,"2017":8540,"2020":8700,"2025":9100,"2030":9600,"2035":10000},"county":"Essex","hh":{"2000":2566,"2010":2937,"2017":3100,"2020":3180,"2025":3370,"2030":3610,"2035":3770},"emp":{"2000":2433,"2010":2212,"2017":2584,"2020":2727,"2025":2926,"2030":3123,"2035":3317},"_id":"105","name":"Georgetown"},{"rpa":"FRCOG","pop":{"2000":1363,"2010":1500,"2017":1550,"2020":1560,"2025":1570,"2030":1600,"2035":1620},"county":"Franklin","hh":{"2000":537,"2010":568,"2017":585,"2020":585,"2025":585,"2030":609,"2035":616},"emp":{"2000":184,"2010":293,"2017":295,"2020":301,"2025":306,"2030":313,"2035":320},"_id":"106","name":"Gill"},{"rpa":"MAPC","pop":{"2000":30273,"2010":28789,"2017":31024,"2020":31175,"2025":31646,"2030":32117,"2035":32627},"county":"Essex","hh":{"2000":12592,"2010":12486,"2017":13536,"2020":13697,"2025":14037,"2030":14378,"2035":14602},"emp":{"2000":12386,"2010":9865,"2017":10479,"2020":10742,"2025":10699,"2030":10656,"2035":10633},"_id":"107","name":"Gloucester"},{"rpa":"PVPC","pop":{"2000":921,"2010":1054,"2017":1081,"2020":1089,"2025":1100,"2030":1111,"2035":1120},"county":"Hampshire","hh":{"2000":365,"2010":416,"2017":436,"2020":441,"2025":450,"2030":456,"2035":462},"emp":{"2000":91,"2010":157,"2017":165,"2020":170,"2025":174,"2030":177,"2035":180},"_id":"108","name":"Goshen"},{"rpa":"MVC","pop":{"2000":86,"2010":75,"2017":78,"2020":82,"2025":85,"2030":88,"2035":91},"county":"Dukes","hh":{"2000":46,"2010":39,"2017":41,"2020":43,"2025":45,"2030":47,"2035":47},"emp":{"2000":0,"2010":43,"2017":45,"2020":48,"2025":49,"2030":50,"2035":51},"_id":"109","name":"Gosnold"},{"rpa":"CMRPC","pop":{"2000":14894,"2010":17765,"2017":18830,"2020":19260,"2025":19850,"2030":20970,"2035":22210},"county":"Worcester","hh":{"2000":5694,"2010":6892,"2017":7620,"2020":7900,"2025":8240,"2030":8670,"2035":9330},"emp":{"2000":4368,"2010":4100,"2017":4230,"2020":4310,"2025":4380,"2030":4430,"2035":4470},"_id":"110","name":"Grafton"},{"rpa":"PVPC","pop":{"2000":6132,"2010":6240,"2017":6443,"2020":6504,"2025":6600,"2030":6696,"2035":6783},"county":"Hampshire","hh":{"2000":2247,"2010":2374,"2017":2507,"2020":2541,"2025":2601,"2030":2650,"2035":2695},"emp":{"2000":887,"2010":751,"2017":783,"2020":803,"2025":818,"2030":829,"2035":841},"_id":"111","name":"Granby"},{"rpa":"PVPC","pop":{"2000":1521,"2010":1566,"2017":1604,"2020":1614,"2025":1629,"2030":1643,"2035":1655},"county":"Hampden","hh":{"2000":556,"2010":608,"2017":637,"2020":643,"2025":655,"2030":663,"2035":671},"emp":{"2000":151,"2010":157,"2017":161,"2020":164,"2025":166,"2030":166,"2035":167},"_id":"112","name":"Granville"},{"rpa":"BRPC","pop":{"2000":7527,"2010":7104,"2017":7130,"2020":7141,"2025":7163,"2030":7179,"2035":7200},"county":"Berkshire","hh":{"2000":3008,"2010":2879,"2017":2892,"2020":2897,"2025":2908,"2030":2918,"2035":2928},"emp":{"2000":4677,"2010":4952,"2017":4961,"2020":4969,"2025":4993,"2030":5017,"2035":5042},"_id":"113","name":"Great Barrington"},{"rpa":"FRCOG","pop":{"2000":18168,"2010":17456,"2017":18000,"2020":18200,"2025":18300,"2030":18600,"2035":18800},"county":"Franklin","hh":{"2000":7939,"2010":7852,"2017":8103,"2020":8220,"2025":8291,"2030":8404,"2035":8575},"emp":{"2000":10503,"2010":9739,"2017":9814,"2020":10003,"2025":10192,"2030":10418,"2035":10645},"_id":"114","name":"Greenfield"},{"rpa":"MRPC","pop":{"2000":9547,"2010":10646,"2017":10800,"2020":10940,"2025":11120,"2030":11280,"2035":11480},"county":"Middlesex","hh":{"2000":3268,"2010":3753,"2017":3830,"2020":3910,"2025":4010,"2030":4100,"2035":4190},"emp":{"2000":2988,"2010":3280,"2017":3350,"2020":3390,"2025":3430,"2030":3470,"2035":3510},"_id":"115","name":"Groton"},{"rpa":"MVPC","pop":{"2000":6038,"2010":6459,"2017":6860,"2020":7100,"2025":7500,"2030":7900,"2035":8200},"county":"Essex","hh":{"2000":2058,"2010":2346,"2017":2550,"2020":2650,"2025":2820,"2030":3000,"2035":3120},"emp":{"2000":1098,"2010":1114,"2017":1356,"2020":1452,"2025":1590,"2030":1726,"2035":1861},"_id":"116","name":"Groveland"},{"rpa":"PVPC","pop":{"2000":4793,"2010":5250,"2017":5386,"2020":5423,"2025":5478,"2030":5533,"2035":5580},"county":"Hampshire","hh":{"2000":1895,"2010":2107,"2017":2211,"2020":2235,"2025":2277,"2030":2309,"2035":2338},"emp":{"2000":4453,"2010":5287,"2017":5632,"2020":5830,"2025":6022,"2030":6193,"2035":6366},"_id":"117","name":"Hadley"},{"rpa":"OCPC","pop":{"2000":7500,"2010":7518,"2017":7770,"2020":8021,"2025":8134,"2030":8595,"2035":8716},"county":"Plymouth","hh":{"2000":2758,"2010":2863,"2017":2949,"2020":3071,"2025":3125,"2030":3312,"2035":3402},"emp":{"2000":1099,"2010":1175,"2017":1216,"2020":1312,"2025":1359,"2030":1369,"2035":1384},"_id":"118","name":"Halifax"},{"rpa":"MAPC","pop":{"2000":8315,"2010":7764,"2017":8361,"2020":8392,"2025":8529,"2030":8666,"2035":8790},"county":"Essex","hh":{"2000":2668,"2010":2692,"2017":3003,"2020":3028,"2025":3097,"2030":3165,"2035":3210},"emp":{"2000":1399,"2010":1481,"2017":1503,"2020":1512,"2025":1498,"2030":1483,"2035":1481},"_id":"119","name":"Hamilton"},{"rpa":"PVPC","pop":{"2000":5171,"2010":5139,"2017":5290,"2020":5334,"2025":5401,"2030":5469,"2035":5528},"county":"Hampden","hh":{"2000":1818,"2010":1898,"2017":1999,"2020":2023,"2025":2067,"2030":2101,"2035":2133},"emp":{"2000":761,"2010":818,"2017":841,"2020":857,"2025":863,"2030":867,"2035":870},"_id":"120","name":"Hampden"},{"rpa":"BRPC","pop":{"2000":721,"2010":717,"2017":720,"2020":721,"2025":723,"2030":725,"2035":727},"county":"Berkshire","hh":{"2000":296,"2010":299,"2017":300,"2020":300,"2025":300,"2030":300,"2035":301},"emp":{"2000":334,"2010":464,"2017":465,"2020":465,"2025":468,"2030":470,"2035":472},"_id":"121","name":"Hancock"},{"rpa":"MAPC","pop":{"2000":13164,"2010":13879,"2017":14041,"2020":13976,"2025":14082,"2030":14187,"2035":14415},"county":"Plymouth","hh":{"2000":4349,"2010":4709,"2017":5159,"2020":5201,"2025":5340,"2030":5479,"2035":5570},"emp":{"2000":7120,"2010":6721,"2017":6949,"2020":7047,"2025":6846,"2030":6645,"2035":6560},"_id":"122","name":"Hanover"},{"rpa":"OCPC","pop":{"2000":9495,"2010":10209,"2017":10502,"2020":10888,"2025":11183,"2030":12073,"2035":12576},"county":"Plymouth","hh":{"2000":3123,"2010":3468,"2017":3679,"2020":3782,"2025":3928,"2030":4220,"2035":4595},"emp":{"2000":1839,"2010":1512,"2017":1569,"2020":1676,"2025":1734,"2030":1748,"2035":1766},"_id":"123","name":"Hanson"},{"rpa":"CMRPC","pop":{"2000":2622,"2010":2990,"2017":3050,"2020":3100,"2025":3170,"2030":3260,"2035":3360},"county":"Worcester","hh":{"2000":997,"2010":1094,"2017":1150,"2020":1150,"2025":1190,"2030":1220,"2035":1270},"emp":{"2000":322,"2010":390,"2017":410,"2020":410,"2025":410,"2030":410,"2035":410},"_id":"124","name":"Hardwick"},{"rpa":"MRPC","pop":{"2000":5981,"2010":6520,"2017":6620,"2020":6700,"2025":6810,"2030":6920,"2035":7030},"county":"Worcester","hh":{"2000":1809,"2010":1893,"2017":1930,"2020":1970,"2025":2030,"2030":2070,"2035":2110},"emp":{"2000":1041,"2010":910,"2017":930,"2020":940,"2025":950,"2030":970,"2035":980},"_id":"125","name":"Harvard"},{"rpa":"CCC","pop":{"2000":12386,"2010":12243,"2017":13270,"2020":13700,"2025":14370,"2030":15150,"2035":15880},"county":"Barnstable","hh":{"2000":5471,"2010":5623,"2017":6220,"2020":6470,"2025":6940,"2030":7360,"2035":7770},"emp":{"2000":3285,"2010":3680,"2017":3950,"2020":4140,"2025":4270,"2030":4390,"2035":4510},"_id":"126","name":"Harwich"},{"rpa":"PVPC","pop":{"2000":3249,"2010":3279,"2017":3361,"2020":3382,"2025":3414,"2030":3447,"2035":3473},"county":"Hampshire","hh":{"2000":1381,"2010":1483,"2017":1555,"2020":1571,"2025":1600,"2030":1621,"2035":1640},"emp":{"2000":2968,"2010":1957,"2017":2023,"2020":2068,"2025":2093,"2030":2111,"2035":2128},"_id":"127","name":"Hatfield"},{"rpa":"MVPC","pop":{"2000":58969,"2010":60879,"2017":63400,"2020":64400,"2025":66400,"2030":68550,"2035":70500},"county":"Essex","hh":{"2000":22976,"2010":24150,"2017":25400,"2020":25830,"2025":26880,"2030":27920,"2035":28700},"emp":{"2000":19163,"2010":18008,"2017":18997,"2020":19282,"2025":19485,"2030":19691,"2035":19901},"_id":"128","name":"Haverhill"},{"rpa":"FRCOG","pop":{"2000":336,"2010":337,"2017":350,"2020":350,"2025":360,"2030":365,"2035":370},"county":"Franklin","hh":{"2000":137,"2010":128,"2017":132,"2020":132,"2025":134,"2030":137,"2035":139},"emp":{"2000":13,"2010":19,"2017":19,"2020":20,"2025":20,"2030":20,"2035":21},"_id":"129","name":"Hawley"},{"rpa":"FRCOG","pop":{"2000":805,"2010":706,"2017":730,"2020":730,"2025":740,"2030":760,"2035":770},"county":"Franklin","hh":{"2000":292,"2010":302,"2017":311,"2020":311,"2025":317,"2030":324,"2035":328},"emp":{"2000":64,"2010":64,"2017":65,"2020":66,"2025":67,"2030":69,"2035":70},"_id":"130","name":"Heath"},{"rpa":"MAPC","pop":{"2000":19882,"2010":22157,"2017":25580,"2020":26513,"2025":26539,"2030":26565,"2035":27016},"county":"Plymouth","hh":{"2000":7189,"2010":8465,"2017":10217,"2020":10702,"2025":10995,"2030":11287,"2035":11480},"emp":{"2000":11727,"2010":11790,"2017":12494,"2020":12796,"2025":12562,"2030":12328,"2035":12233},"_id":"131","name":"Hingham"},{"rpa":"BRPC","pop":{"2000":1872,"2010":2032,"2017":2039,"2020":2043,"2025":2049,"2030":2053,"2035":2060},"county":"Berkshire","hh":{"2000":739,"2010":868,"2017":872,"2020":874,"2025":877,"2030":880,"2035":883},"emp":{"2000":201,"2010":308,"2017":308,"2020":309,"2025":310,"2030":312,"2035":313},"_id":"132","name":"Hinsdale"},{"rpa":"MAPC","pop":{"2000":10785,"2010":10791,"2017":10684,"2020":10638,"2025":10789,"2030":10941,"2035":11204},"county":"Norfolk","hh":{"2000":4076,"2010":4102,"2017":4579,"2020":4636,"2025":4820,"2030":5005,"2035":5126},"emp":{"2000":2784,"2010":2628,"2017":2776,"2020":2839,"2025":2818,"2030":2797,"2035":2783},"_id":"133","name":"Holbrook"},{"rpa":"CMRPC","pop":{"2000":15621,"2010":17346,"2017":18000,"2020":18320,"2025":18780,"2030":19440,"2035":20080},"county":"Worcester","hh":{"2000":5715,"2010":6394,"2017":6890,"2020":7100,"2025":7340,"2030":7520,"2035":7900},"emp":{"2000":3711,"2010":3520,"2017":3630,"2020":3700,"2025":3760,"2030":3800,"2035":3830},"_id":"134","name":"Holden"},{"rpa":"PVPC","pop":{"2000":2407,"2010":2481,"2017":2561,"2020":2586,"2025":2623,"2030":2661,"2035":2696},"county":"Hampden","hh":{"2000":898,"2010":994,"2017":1049,"2020":1063,"2025":1088,"2030":1108,"2035":1127},"emp":{"2000":131,"2010":147,"2017":151,"2020":154,"2025":155,"2030":155,"2035":156},"_id":"135","name":"Holland"},{"rpa":"MAPC","pop":{"2000":13801,"2010":13547,"2017":15022,"2020":15351,"2025":15447,"2030":15543,"2035":15726},"county":"Middlesex","hh":{"2000":4795,"2010":4940,"2017":5473,"2020":5634,"2025":5731,"2030":5828,"2035":5892},"emp":{"2000":5149,"2010":5235,"2017":5377,"2020":5438,"2025":5418,"2030":5399,"2035":5233},"_id":"136","name":"Holliston"},{"rpa":"PVPC","pop":{"2000":39838,"2010":39880,"2017":40729,"2020":40924,"2025":41205,"2030":41484,"2035":41698},"county":"Hampden","hh":{"2000":14967,"2010":15361,"2017":16044,"2020":16187,"2025":16441,"2030":16617,"2035":16773},"emp":{"2000":24160,"2010":21084,"2017":21814,"2020":22307,"2025":22593,"2030":22796,"2035":23000},"_id":"137","name":"Holyoke"},{"rpa":"CMRPC","pop":{"2000":5907,"2010":5911,"2017":6080,"2020":6180,"2025":6300,"2030":6480,"2035":6660},"county":"Worcester","hh":{"2000":2240,"2010":2194,"2017":2340,"2020":2390,"2025":2460,"2030":2540,"2035":2620},"emp":{"2000":1726,"2010":1620,"2017":1630,"2020":1650,"2025":1660,"2030":1670,"2035":1670},"_id":"138","name":"Hopedale"},{"rpa":"MAPC","pop":{"2000":13346,"2010":14925,"2017":15788,"2020":16253,"2025":16586,"2030":16919,"2035":17159},"county":"Middlesex","hh":{"2000":4444,"2010":4957,"2017":5440,"2020":5602,"2025":5719,"2030":5837,"2035":5914},"emp":{"2000":5983,"2010":9274,"2017":9900,"2020":10170,"2025":9793,"2030":9415,"2035":9115},"_id":"139","name":"Hopkinton"},{"rpa":"MRPC","pop":{"2000":3909,"2010":4382,"2017":4450,"2020":4500,"2025":4580,"2030":4650,"2035":4730},"county":"Worcester","hh":{"2000":1308,"2010":1566,"2017":1600,"2020":1630,"2025":1670,"2030":1710,"2035":1750},"emp":{"2000":597,"2010":500,"2017":510,"2020":520,"2025":530,"2030":530,"2035":540},"_id":"140","name":"Hubbardston"},{"rpa":"MAPC","pop":{"2000":18113,"2010":19063,"2017":20115,"2020":20137,"2025":20477,"2030":20817,"2035":21298},"county":"Middlesex","hh":{"2000":6990,"2010":7528,"2017":8730,"2020":8866,"2025":9209,"2030":9552,"2035":9778},"emp":{"2000":9652,"2010":9820,"2017":10454,"2020":10726,"2025":10614,"2030":10503,"2035":10419},"_id":"141","name":"Hudson"},{"rpa":"MAPC","pop":{"2000":11050,"2010":10293,"2017":11032,"2020":10971,"2025":11031,"2030":11090,"2035":11288},"county":"Plymouth","hh":{"2000":4522,"2010":4630,"2017":4850,"2020":4898,"2025":5037,"2030":5176,"2035":5268},"emp":{"2000":1322,"2010":1125,"2017":1156,"2020":1169,"2025":1169,"2030":1169,"2035":1169},"_id":"142","name":"Hull"},{"rpa":"PVPC","pop":{"2000":2174,"2010":2180,"2017":2275,"2020":2306,"2025":2357,"2030":2409,"2035":2457},"county":"Hampshire","hh":{"2000":809,"2010":868,"2017":926,"2020":942,"2025":971,"2030":996,"2035":1020},"emp":{"2000":400,"2010":418,"2017":430,"2020":438,"2025":441,"2030":443,"2035":445},"_id":"143","name":"Huntington"},{"rpa":"MAPC","pop":{"2000":12987,"2010":13175,"2017":13445,"2020":13432,"2025":13528,"2030":13624,"2035":13795},"county":"Essex","hh":{"2000":5290,"2010":5462,"2017":5846,"2020":5892,"2025":6004,"2030":6115,"2035":6188},"emp":{"2000":3927,"2010":4667,"2017":4825,"2020":4893,"2025":4820,"2030":4748,"2035":4697},"_id":"144","name":"Ipswich"},{"rpa":"OCPC","pop":{"2000":11780,"2010":12629,"2017":12770,"2020":13030,"2025":13283,"2030":14213,"2035":14418},"county":"Plymouth","hh":{"2000":4248,"2010":4665,"2017":4688,"2020":4833,"2025":5013,"2030":5276,"2035":5434},"emp":{"2000":5318,"2010":5100,"2017":5176,"2020":5285,"2025":5684,"2030":5734,"2035":5790},"_id":"145","name":"Kingston"},{"rpa":"SRPEDD","pop":{"2000":9821,"2010":10602,"2017":11050,"2020":11280,"2025":11910,"2030":12430,"2035":13000},"county":"Plymouth","hh":{"2000":3292,"2010":3725,"2017":3930,"2020":4050,"2025":4330,"2030":4500,"2035":4720},"emp":{"2000":2960,"2010":2990,"2017":3390,"2020":3460,"2025":3560,"2030":3710,"2035":3820},"_id":"146","name":"Lakeville"},{"rpa":"MRPC","pop":{"2000":7380,"2010":8055,"2017":8180,"2020":8280,"2025":8410,"2030":8550,"2035":8690},"county":"Worcester","hh":{"2000":2049,"2010":2409,"2017":2460,"2020":2510,"2025":2570,"2030":2640,"2035":2700},"emp":{"2000":2823,"2010":2120,"2017":2160,"2020":2190,"2025":2220,"2030":2240,"2035":2270},"_id":"147","name":"Lancaster"},{"rpa":"BRPC","pop":{"2000":2990,"2010":3091,"2017":3102,"2020":3107,"2025":3116,"2030":3124,"2035":3133},"county":"Berkshire","hh":{"2000":1203,"2010":1291,"2017":1297,"2020":1299,"2025":1304,"2030":1308,"2035":1313},"emp":{"2000":1756,"2010":1777,"2017":1780,"2020":1783,"2025":1792,"2030":1800,"2035":1809},"_id":"148","name":"Lanesborough"},{"rpa":"MVPC","pop":{"2000":72043,"2010":76377,"2017":76800,"2020":77200,"2025":77600,"2030":77900,"2035":78000},"county":"Essex","hh":{"2000":24463,"2010":25181,"2017":25500,"2020":25650,"2025":25850,"2030":26000,"2035":26050},"emp":{"2000":23631,"2010":23039,"2017":22967,"2020":22753,"2025":22082,"2030":21431,"2035":20800},"_id":"149","name":"Lawrence"},{"rpa":"BRPC","pop":{"2000":5985,"2010":5943,"2017":5965,"2020":5974,"2025":5992,"2030":6006,"2035":6024},"county":"Berkshire","hh":{"2000":2442,"2010":2560,"2017":2572,"2020":2576,"2025":2586,"2030":2595,"2035":2604},"emp":{"2000":3579,"2010":3848,"2017":3854,"2020":3860,"2025":3879,"2030":3898,"2035":3917},"_id":"150","name":"Lee"},{"rpa":"CMRPC","pop":{"2000":10471,"2010":10970,"2017":11290,"2020":11460,"2025":11700,"2030":12040,"2035":12360},"county":"Worcester","hh":{"2000":3683,"2010":4021,"2017":4000,"2020":4090,"2025":4220,"2030":4380,"2035":4520},"emp":{"2000":2122,"2010":2290,"2017":2320,"2020":2350,"2025":2370,"2030":2380,"2035":2390},"_id":"151","name":"Leicester"},{"rpa":"BRPC","pop":{"2000":5077,"2010":5025,"2017":5043,"2020":5051,"2025":5066,"2030":5078,"2035":5093},"county":"Berkshire","hh":{"2000":2212,"2010":2283,"2017":2294,"2020":2298,"2025":2306,"2030":2314,"2035":2322},"emp":{"2000":3713,"2010":4013,"2017":4019,"2020":4026,"2025":4046,"2030":4065,"2035":4085},"_id":"152","name":"Lenox"},{"rpa":"MRPC","pop":{"2000":41303,"2010":40759,"2017":41370,"2020":41900,"2025":42570,"2030":43260,"2035":43930},"county":"Worcester","hh":{"2000":16491,"2010":16767,"2017":17130,"2020":17480,"2025":17930,"2030":18350,"2035":18720},"emp":{"2000":18896,"2010":17990,"2017":18340,"2020":18570,"2025":18800,"2030":19030,"2035":19260},"_id":"153","name":"Leominster"},{"rpa":"FRCOG","pop":{"2000":1663,"2010":1851,"2017":1910,"2020":1930,"2025":1940,"2030":1980,"2035":2000},"county":"Franklin","hh":{"2000":632,"2010":762,"2017":785,"2020":790,"2025":799,"2030":817,"2035":827},"emp":{"2000":170,"2010":196,"2017":198,"2020":201,"2025":205,"2030":210,"2035":214},"_id":"154","name":"Leverett"},{"rpa":"MAPC","pop":{"2000":30355,"2010":31394,"2017":31089,"2020":31089,"2025":31537,"2030":31985,"2035":32545},"county":"Middlesex","hh":{"2000":11110,"2010":11530,"2017":12416,"2020":12526,"2025":12890,"2030":13255,"2035":13494},"emp":{"2000":21523,"2010":19287,"2017":21461,"2020":22392,"2025":21970,"2030":21548,"2035":21696},"_id":"155","name":"Lexington"},{"rpa":"FRCOG","pop":{"2000":772,"2010":711,"2017":730,"2020":730,"2025":750,"2030":760,"2035":770},"county":"Franklin","hh":{"2000":277,"2010":288,"2017":297,"2020":297,"2025":302,"2030":309,"2035":312},"emp":{"2000":27,"2010":65,"2017":66,"2020":67,"2025":68,"2030":70,"2035":71},"_id":"156","name":"Leyden"},{"rpa":"MAPC","pop":{"2000":8056,"2010":6362,"2017":8765,"2020":8803,"2025":8917,"2030":9031,"2035":9139},"county":"Middlesex","hh":{"2000":2790,"2010":2404,"2017":3120,"2020":3145,"2025":3205,"2030":3265,"2035":3304},"emp":{"2000":1876,"2010":1681,"2017":1781,"2020":1824,"2025":1810,"2030":1795,"2035":1793},"_id":"157","name":"Lincoln"},{"rpa":"MAPC","pop":{"2000":8184,"2010":8924,"2017":9423,"2020":9590,"2025":9937,"2030":10284,"2035":10595},"county":"Middlesex","hh":{"2000":2960,"2010":3297,"2017":3800,"2020":3907,"2025":4103,"2030":4298,"2035":4426},"emp":{"2000":6189,"2010":5247,"2017":5450,"2020":5537,"2025":5413,"2030":5289,"2035":5219},"_id":"158","name":"Littleton"},{"rpa":"PVPC","pop":{"2000":15633,"2010":15784,"2017":16011,"2020":16040,"2025":16070,"2030":16098,"2035":16100},"county":"Hampden","hh":{"2000":5734,"2010":5741,"2017":5952,"2020":5980,"2025":6009,"2030":6036,"2035":6036},"emp":{"2000":3310,"2010":3363,"2017":3400,"2020":3443,"2025":3429,"2030":3402,"2035":3375},"_id":"159","name":"Longmeadow"},{"rpa":"NMCOG","pop":{"2000":105167,"2010":106519,"2017":106650,"2020":106920,"2025":108220,"2030":109820,"2035":111360},"county":"Middlesex","hh":{"2000":37887,"2010":38470,"2017":38530,"2020":38650,"2025":39370,"2030":39920,"2035":40650},"emp":{"2000":34705,"2010":33204,"2017":35980,"2020":36520,"2025":36680,"2030":37460,"2035":37960},"_id":"160","name":"Lowell"},{"rpa":"PVPC","pop":{"2000":21209,"2010":21103,"2017":21748,"2020":21936,"2025":22229,"2030":22524,"2035":22785},"county":"Hampden","hh":{"2000":7659,"2010":8080,"2017":8516,"2020":8625,"2025":8817,"2030":8970,"2035":9111},"emp":{"2000":5896,"2010":6406,"2017":6580,"2020":6707,"2025":6758,"2030":6784,"2035":6809},"_id":"161","name":"Ludlow"},{"rpa":"MRPC","pop":{"2000":9401,"2010":10086,"2017":10240,"2020":10360,"2025":10530,"2030":10710,"2035":10880},"county":"Worcester","hh":{"2000":3535,"2010":3835,"2017":3920,"2020":4000,"2025":4100,"2030":4200,"2035":4280},"emp":{"2000":2385,"2010":2280,"2017":2330,"2020":2360,"2025":2380,"2030":2410,"2035":2440},"_id":"162","name":"Lunenburg"},{"rpa":"MAPC","pop":{"2000":89050,"2010":90329,"2017":89638,"2020":90354,"2025":93016,"2030":95680,"2035":98976},"county":"Essex","hh":{"2000":33511,"2010":33310,"2017":34160,"2020":34405,"2025":35333,"2030":36261,"2035":37459},"emp":{"2000":25214,"2010":22557,"2017":23037,"2020":23242,"2025":23615,"2030":23989,"2035":24810},"_id":"163","name":"Lynn"},{"rpa":"MAPC","pop":{"2000":11542,"2010":11596,"2017":12516,"2020":12699,"2025":12910,"2030":13122,"2035":13395},"county":"Essex","hh":{"2000":4186,"2010":4179,"2017":4944,"2020":5070,"2025":5237,"2030":5404,"2035":5514},"emp":{"2000":5055,"2010":5493,"2017":6202,"2020":6506,"2025":6358,"2030":6210,"2035":6163},"_id":"164","name":"Lynnfield"},{"rpa":"MAPC","pop":{"2000":56340,"2010":59450,"2017":57464,"2020":57904,"2025":59159,"2030":60414,"2035":61450},"county":"Middlesex","hh":{"2000":23009,"2010":23673,"2017":24573,"2020":24872,"2025":25583,"2030":26294,"2035":26761},"emp":{"2000":17517,"2010":15031,"2017":15102,"2020":15133,"2025":15133,"2030":15133,"2035":15133},"_id":"165","name":"Malden"},{"rpa":"MAPC","pop":{"2000":5228,"2010":5136,"2017":5206,"2020":5196,"2025":5242,"2030":5287,"2035":5366},"county":"Essex","hh":{"2000":2168,"2010":2147,"2017":2350,"2020":2369,"2025":2424,"2030":2479,"2035":2514},"emp":{"2000":1584,"2010":1698,"2017":1788,"2020":1826,"2025":1806,"2030":1785,"2035":1779},"_id":"166","name":"Manchester"},{"rpa":"SRPEDD","pop":{"2000":22414,"2010":23184,"2017":24250,"2020":24740,"2025":25570,"2030":26030,"2035":27010},"county":"Bristol","hh":{"2000":7942,"2010":8399,"2017":8900,"2020":9150,"2025":9500,"2030":9710,"2035":10130},"emp":{"2000":12346,"2010":10992,"2017":11580,"2020":11820,"2025":12150,"2030":12630,"2035":12810},"_id":"167","name":"Mansfield"},{"rpa":"MAPC","pop":{"2000":20377,"2010":19808,"2017":20154,"2020":20202,"2025":20508,"2030":20814,"2035":21109},"county":"Essex","hh":{"2000":8541,"2010":8144,"2017":8755,"2020":8819,"2025":9006,"2030":9193,"2035":9316},"emp":{"2000":5112,"2010":4619,"2017":4742,"2020":4795,"2025":4793,"2030":4791,"2035":4790},"_id":"168","name":"Marblehead"},{"rpa":"SRPEDD","pop":{"2000":5123,"2010":4907,"2017":5390,"2020":5500,"2025":5530,"2030":5550,"2035":5690},"county":"Plymouth","hh":{"2000":1996,"2010":1896,"2017":2110,"2020":2170,"2025":2190,"2030":2200,"2035":2280},"emp":{"2000":2063,"2010":2219,"2017":2130,"2020":2170,"2025":2230,"2030":2320,"2035":2330},"_id":"169","name":"Marion"},{"rpa":"MAPC","pop":{"2000":36255,"2010":38499,"2017":38723,"2020":38740,"2025":39326,"2030":39912,"2035":40576},"county":"Middlesex","hh":{"2000":14501,"2010":15395,"2017":16430,"2020":16570,"2025":17010,"2030":17450,"2035":17740},"emp":{"2000":28871,"2010":32715,"2017":35205,"2020":36272,"2025":35438,"2030":34603,"2035":34178},"_id":"170","name":"Marlborough"},{"rpa":"MAPC","pop":{"2000":24324,"2010":25132,"2017":25534,"2020":25761,"2025":26099,"2030":26438,"2035":26858},"county":"Plymouth","hh":{"2000":8905,"2010":9526,"2017":9875,"2020":10047,"2025":10294,"2030":10542,"2035":10705},"emp":{"2000":4896,"2010":5225,"2017":5723,"2020":5937,"2025":5761,"2030":5586,"2035":5507},"_id":"171","name":"Marshfield"},{"rpa":"CCC","pop":{"2000":12946,"2010":14006,"2017":15560,"2020":16220,"2025":17250,"2030":18420,"2035":19520},"county":"Barnstable","hh":{"2000":5256,"2010":6118,"2017":7130,"2020":7560,"2025":8350,"2030":9060,"2035":9770},"emp":{"2000":3311,"2010":4590,"2017":5050,"2020":5350,"2025":5590,"2030":5830,"2035":6060},"_id":"172","name":"Mashpee"},{"rpa":"SRPEDD","pop":{"2000":6268,"2010":6045,"2017":6780,"2020":6920,"2025":7150,"2030":7330,"2035":7610},"county":"Plymouth","hh":{"2000":2532,"2010":2505,"2017":2850,"2020":2930,"2025":3040,"2030":3130,"2035":3260},"emp":{"2000":1828,"2010":1694,"2017":1750,"2020":1790,"2025":1840,"2030":1910,"2035":1920},"_id":"173","name":"Mattapoisett"},{"rpa":"MAPC","pop":{"2000":10433,"2010":10106,"2017":10731,"2020":10750,"2025":10983,"2030":11216,"2035":11460},"county":"Middlesex","hh":{"2000":4292,"2010":4239,"2017":4717,"2020":4770,"2025":4943,"2030":5116,"2035":5230},"emp":{"2000":4963,"2010":4400,"2017":4562,"2020":4632,"2025":4611,"2030":4590,"2035":4585},"_id":"174","name":"Maynard"},{"rpa":"MAPC","pop":{"2000":12273,"2010":12024,"2017":12415,"2020":12451,"2025":12669,"2030":12886,"2035":13078},"county":"Norfolk","hh":{"2000":4002,"2010":4117,"2017":4284,"2020":4316,"2025":4417,"2030":4520,"2035":4586},"emp":{"2000":3485,"2010":2761,"2017":2903,"2020":2963,"2025":2928,"2030":2892,"2035":2874},"_id":"175","name":"Medfield"},{"rpa":"MAPC","pop":{"2000":55765,"2010":56173,"2017":55546,"2020":55482,"2025":56227,"2030":56973,"2035":57914},"county":"Middlesex","hh":{"2000":22067,"2010":22810,"2017":23754,"2020":23979,"2025":24683,"2030":25387,"2035":25820},"emp":{"2000":20277,"2010":17906,"2017":18600,"2020":18898,"2025":19113,"2030":19328,"2035":19327},"_id":"176","name":"Medford"},{"rpa":"MAPC","pop":{"2000":12448,"2010":12752,"2017":13010,"2020":13032,"2025":13136,"2030":13241,"2035":13405},"county":"Norfolk","hh":{"2000":4182,"2010":4435,"2017":4726,"2020":4774,"2025":4861,"2030":4948,"2035":5005},"emp":{"2000":2751,"2010":3513,"2017":3587,"2020":3618,"2025":3499,"2030":3379,"2035":3336},"_id":"177","name":"Medway"},{"rpa":"MAPC","pop":{"2000":27134,"2010":26983,"2017":27493,"2020":27634,"2025":27910,"2030":28185,"2035":28596},"county":"Middlesex","hh":{"2000":10982,"2010":11213,"2017":12050,"2020":12237,"2025":12533,"2030":12829,"2035":13016},"emp":{"2000":6546,"2010":6273,"2017":6370,"2020":6412,"2025":6440,"2030":6469,"2035":6468},"_id":"178","name":"Melrose"},{"rpa":"CMRPC","pop":{"2000":5286,"2010":5839,"2017":6060,"2020":6170,"2025":6320,"2030":6550,"2035":6740},"county":"Worcester","hh":{"2000":1815,"2010":2022,"2017":2230,"2020":2330,"2025":2420,"2030":2550,"2035":2540},"emp":{"2000":1415,"2010":1280,"2017":1300,"2020":1310,"2025":1310,"2030":1320,"2035":1320},"_id":"179","name":"Mendon"},{"rpa":"MVPC","pop":{"2000":6138,"2010":6338,"2017":6500,"2020":6600,"2025":6800,"2030":7100,"2035":7500},"county":"Essex","hh":{"2000":2233,"2010":2417,"2017":2510,"2020":2560,"2025":2660,"2030":2810,"2035":3000},"emp":{"2000":957,"2010":766,"2017":847,"2020":876,"2025":912,"2030":950,"2035":983},"_id":"180","name":"Merrimac"},{"rpa":"MVPC","pop":{"2000":43789,"2010":47255,"2017":48360,"2020":48850,"2025":49750,"2030":50500,"2035":51500},"county":"Essex","hh":{"2000":16532,"2010":17529,"2017":18050,"2020":18310,"2025":18730,"2030":19080,"2035":19580},"emp":{"2000":14172,"2010":14684,"2017":15722,"2020":16054,"2025":16380,"2030":16706,"2035":17033},"_id":"181","name":"Methuen"},{"rpa":"SRPEDD","pop":{"2000":19941,"2010":23116,"2017":23680,"2020":24060,"2025":24810,"2030":25300,"2035":26100},"county":"Plymouth","hh":{"2000":6981,"2010":8468,"2017":8790,"2020":9000,"2025":9320,"2030":9550,"2035":9890},"emp":{"2000":7730,"2010":8169,"2017":8890,"2020":9070,"2025":9360,"2030":9740,"2035":10040},"_id":"182","name":"Middleborough"},{"rpa":"PVPC","pop":{"2000":542,"2010":521,"2017":534,"2020":537,"2025":542,"2030":547,"2035":551},"county":"Hampshire","hh":{"2000":213,"2010":218,"2017":228,"2020":231,"2025":235,"2030":238,"2035":241},"emp":{"2000":40,"2010":39,"2017":40,"2020":41,"2025":42,"2030":42,"2035":42},"_id":"183","name":"Middlefield"},{"rpa":"MAPC","pop":{"2000":7744,"2010":8987,"2017":9538,"2020":9651,"2025":10100,"2030":10550,"2035":10880},"county":"Essex","hh":{"2000":2305,"2010":2898,"2017":3210,"2020":3265,"2025":3453,"2030":3641,"2035":3765},"emp":{"2000":4927,"2010":4288,"2017":4398,"2020":4445,"2025":4342,"2030":4238,"2035":4176},"_id":"184","name":"Middleton"},{"rpa":"MAPC","pop":{"2000":26799,"2010":27999,"2017":28584,"2020":28933,"2025":29516,"2030":30098,"2035":30653},"county":"Worcester","hh":{"2000":10420,"2010":10872,"2017":11521,"2020":11742,"2025":12101,"2030":12459,"2035":12694},"emp":{"2000":13774,"2010":14781,"2017":15522,"2020":15840,"2025":15895,"2030":15950,"2035":16166},"_id":"185","name":"Milford"},{"rpa":"CMRPC","pop":{"2000":12784,"2010":13261,"2017":13770,"2020":14020,"2025":14380,"2030":14880,"2035":15340},"county":"Worcester","hh":{"2000":4927,"2010":5294,"2017":5410,"2020":5560,"2025":5740,"2030":5870,"2035":6180},"emp":{"2000":3667,"2010":5050,"2017":5290,"2020":5350,"2025":5390,"2030":5420,"2035":5440},"_id":"186","name":"Millbury"},{"rpa":"MAPC","pop":{"2000":7902,"2010":7891,"2017":8110,"2020":8127,"2025":8187,"2030":8246,"2035":8345},"county":"Norfolk","hh":{"2000":3004,"2010":3030,"2017":3301,"2020":3338,"2025":3411,"2030":3484,"2035":3525},"emp":{"2000":2188,"2010":1983,"2017":2053,"2020":2083,"2025":2021,"2030":1959,"2035":1930},"_id":"187","name":"Millis"},{"rpa":"CMRPC","pop":{"2000":2724,"2010":3190,"2017":3310,"2020":3370,"2025":3460,"2030":3580,"2035":3690},"county":"Worcester","hh":{"2000":923,"2010":1094,"2017":1180,"2020":1220,"2025":1270,"2030":1380,"2035":1320},"emp":{"2000":190,"2010":270,"2017":280,"2020":280,"2025":280,"2030":280,"2035":280},"_id":"188","name":"Millville"},{"rpa":"MAPC","pop":{"2000":26062,"2010":27003,"2017":26312,"2020":26317,"2025":26513,"2030":26708,"2035":27000},"county":"Norfolk","hh":{"2000":8982,"2010":9274,"2017":9233,"2020":9292,"2025":9440,"2030":9588,"2035":9693},"emp":{"2000":6055,"2010":4988,"2017":5107,"2020":5158,"2025":5078,"2030":4997,"2035":4990},"_id":"189","name":"Milton"},{"rpa":"FRCOG","pop":{"2000":93,"2010":121,"2017":120,"2020":120,"2025":130,"2030":130,"2035":135},"county":"Franklin","hh":{"2000":43,"2010":57,"2017":57,"2020":57,"2025":60,"2030":60,"2035":62},"emp":{"2000":38,"2010":18,"2017":18,"2020":19,"2025":19,"2030":19,"2035":20},"_id":"190","name":"Monroe"},{"rpa":"PVPC","pop":{"2000":8359,"2010":8560,"2017":8893,"2020":9001,"2025":9172,"2030":9346,"2035":9506},"county":"Hampden","hh":{"2000":3095,"2010":3279,"2017":3484,"2020":3541,"2025":3640,"2030":3723,"2035":3803},"emp":{"2000":1375,"2010":1290,"2017":1325,"2020":1350,"2025":1361,"2030":1366,"2035":1371},"_id":"191","name":"Monson"},{"rpa":"FRCOG","pop":{"2000":8489,"2010":8437,"2017":8700,"2020":8780,"2025":8850,"2030":9010,"2035":9100},"county":"Franklin","hh":{"2000":3616,"2010":3694,"2017":3808,"2020":3810,"2025":3874,"2030":3970,"2035":4008},"emp":{"2000":2746,"2010":2832,"2017":2854,"2020":2909,"2025":2964,"2030":3030,"2035":3096},"_id":"192","name":"Montague"},{"rpa":"BRPC","pop":{"2000":934,"2010":961,"2017":964,"2020":966,"2025":966,"2030":971,"2035":974},"county":"Berkshire","hh":{"2000":387,"2010":426,"2017":427,"2020":428,"2025":428,"2030":432,"2035":433},"emp":{"2000":171,"2010":142,"2017":142,"2020":142,"2025":143,"2030":144,"2035":144},"_id":"193","name":"Monterey"},{"rpa":"PVPC","pop":{"2000":654,"2010":838,"2017":871,"2020":881,"2025":898,"2030":915,"2035":930},"county":"Hampden","hh":{"2000":253,"2010":330,"2017":350,"2020":356,"2025":366,"2030":374,"2035":382},"emp":{"2000":52,"2010":26,"2017":27,"2020":27,"2025":28,"2030":28,"2035":28},"_id":"194","name":"Montgomery"},{"rpa":"BRPC","pop":{"2000":130,"2010":167,"2017":168,"2020":168,"2025":168,"2030":169,"2035":169},"county":"Berkshire","hh":{"2000":64,"2010":74,"2017":74,"2020":74,"2025":74,"2030":74,"2035":74},"emp":{"2000":36,"2010":13,"2017":13,"2020":13,"2025":13,"2030":13,"2035":13},"_id":"195","name":"Mount Washington"},{"rpa":"MAPC","pop":{"2000":3632,"2010":3410,"2017":3612,"2020":3597,"2025":3640,"2030":3682,"2035":3758},"county":"Essex","hh":{"2000":1629,"2010":1540,"2017":1735,"2020":1753,"2025":1811,"2030":1868,"2035":1906},"emp":{"2000":5707,"2010":412,"2017":412,"2020":412,"2025":412,"2030":412,"2035":412},"_id":"196","name":"Nahant"},{"rpa":"NPEDC","pop":{"2000":9520,"2010":10172,"2017":11503,"2020":12086,"2025":13090,"2030":14012,"2035":15005},"county":"Nantucket","hh":{"2000":3699,"2010":4229,"2017":4794,"2020":5022,"2025":5412,"2030":5781,"2035":6165},"emp":{"2000":369,"2010":5731,"2017":5990,"2020":6444,"2025":6691,"2030":7038,"2035":7270},"_id":"197","name":"Nantucket"},{"rpa":"MAPC","pop":{"2000":32170,"2010":33006,"2017":33314,"2020":33741,"2025":34482,"2030":35223,"2035":36125},"county":"Middlesex","hh":{"2000":13080,"2010":13406,"2017":15100,"2020":15480,"2025":16132,"2030":16785,"2035":17214},"emp":{"2000":24160,"2010":24218,"2017":25488,"2020":26032,"2025":25760,"2030":25488,"2035":25400},"_id":"198","name":"Natick"},{"rpa":"MAPC","pop":{"2000":28911,"2010":28886,"2017":28991,"2020":29013,"2025":29533,"2030":30054,"2035":30627},"county":"Norfolk","hh":{"2000":10612,"2010":10341,"2017":11405,"2020":11516,"2025":11877,"2030":12238,"2035":12475},"emp":{"2000":18316,"2010":20260,"2017":21406,"2020":21898,"2025":21534,"2030":21171,"2035":21033},"_id":"199","name":"Needham"},{"rpa":"BRPC","pop":{"2000":247,"2010":228,"2017":229,"2020":229,"2025":230,"2030":230,"2035":231},"county":"Berkshire","hh":{"2000":94,"2010":95,"2017":95,"2020":95,"2025":95,"2030":95,"2035":95},"emp":{"2000":110,"2010":36,"2017":36,"2020":36,"2025":37,"2030":37,"2035":37},"_id":"200","name":"New Ashford"},{"rpa":"SRPEDD","pop":{"2000":93768,"2010":95072,"2017":96330,"2020":96970,"2025":98480,"2030":101490,"2035":103180},"county":"Bristol","hh":{"2000":38178,"2010":38761,"2017":39780,"2020":40380,"2025":41160,"2030":42620,"2035":43530},"emp":{"2000":37156,"2010":36147,"2017":35090,"2020":35830,"2025":36770,"2030":38240,"2035":38470},"_id":"201","name":"New Bedford"},{"rpa":"CMRPC","pop":{"2000":927,"2010":999,"2017":1030,"2020":1050,"2025":1070,"2030":1110,"2035":1130},"county":"Worcester","hh":{"2000":318,"2010":370,"2017":370,"2020":380,"2025":390,"2030":410,"2035":420},"emp":{"2000":148,"2010":210,"2017":220,"2020":220,"2025":220,"2030":220,"2035":220},"_id":"202","name":"New Braintree"},{"rpa":"BRPC","pop":{"2000":1494,"2010":1509,"2017":1515,"2020":1517,"2025":1521,"2030":1525,"2035":1529},"county":"Berkshire","hh":{"2000":582,"2010":630,"2017":633,"2020":633,"2025":636,"2030":639,"2035":641},"emp":{"2000":390,"2010":422,"2017":422,"2020":423,"2025":425,"2030":427,"2035":429},"_id":"203","name":"New Marlborough"},{"rpa":"FRCOG","pop":{"2000":929,"2010":990,"2017":1020,"2020":1030,"2025":1040,"2030":1060,"2035":1070},"county":"Franklin","hh":{"2000":379,"2010":404,"2017":416,"2020":420,"2025":424,"2030":433,"2035":438},"emp":{"2000":154,"2010":148,"2017":149,"2020":152,"2025":155,"2030":158,"2035":162},"_id":"204","name":"New Salem"},{"rpa":"MVPC","pop":{"2000":6717,"2010":6666,"2017":7100,"2020":7300,"2025":7850,"2030":8250,"2035":8600},"county":"Essex","hh":{"2000":2514,"2010":2594,"2017":2800,"2020":2890,"2025":3150,"2030":3350,"2035":3520},"emp":{"2000":1142,"2010":1459,"2017":1722,"2020":1824,"2025":1967,"2030":2109,"2035":2249},"_id":"205","name":"Newbury"},{"rpa":"MVPC","pop":{"2000":17189,"2010":17416,"2017":17650,"2020":17750,"2025":17850,"2030":17950,"2035":18000},"county":"Essex","hh":{"2000":7519,"2010":7622,"2017":7800,"2020":7860,"2025":7910,"2030":7970,"2035":8000},"emp":{"2000":10155,"2010":10445,"2017":11523,"2020":11906,"2025":12374,"2030":12839,"2035":13300},"_id":"206","name":"Newburyport"},{"rpa":"MAPC","pop":{"2000":83829,"2010":85146,"2017":85006,"2020":85003,"2025":85318,"2030":85634,"2035":86306},"county":"Middlesex","hh":{"2000":31201,"2010":31168,"2017":33006,"2020":33219,"2025":33704,"2030":34189,"2035":34482},"emp":{"2000":48118,"2010":47779,"2017":49806,"2020":50675,"2025":50411,"2030":50147,"2035":49962},"_id":"207","name":"Newton"},{"rpa":"MAPC","pop":{"2000":10460,"2010":11227,"2017":11304,"2020":11327,"2025":11480,"2030":11632,"2035":11769},"county":"Norfolk","hh":{"2000":2818,"2010":3049,"2017":3132,"2020":3155,"2025":3230,"2030":3306,"2035":3355},"emp":{"2000":3033,"2010":3212,"2017":3340,"2020":3395,"2025":3293,"2030":3192,"2035":3164},"_id":"208","name":"Norfolk"},{"rpa":"BRPC","pop":{"2000":14681,"2010":13708,"2017":13758,"2020":13779,"2025":13821,"2030":13852,"2035":13894},"county":"Berkshire","hh":{"2000":6311,"2010":5868,"2017":5895,"2020":5906,"2025":5926,"2030":5947,"2035":5968},"emp":{"2000":6059,"2010":6236,"2017":6247,"2020":6257,"2025":6287,"2030":6318,"2035":6349},"_id":"209","name":"North Adams"},{"rpa":"MVPC","pop":{"2000":27202,"2010":28352,"2017":29400,"2020":30000,"2025":31200,"2030":32200,"2035":33500},"county":"Essex","hh":{"2000":9724,"2010":10516,"2017":11100,"2020":11430,"2025":12050,"2030":12550,"2035":13120},"emp":{"2000":19274,"2010":13149,"2017":13879,"2020":14091,"2025":14244,"2030":14400,"2035":14559},"_id":"210","name":"North Andover"},{"rpa":"SRPEDD","pop":{"2000":27143,"2010":28712,"2017":28950,"2020":29540,"2025":31590,"2030":33510,"2035":35330},"county":"Bristol","hh":{"2000":10391,"2010":10943,"2017":11170,"2020":11500,"2025":12340,"2030":13170,"2035":13980},"emp":{"2000":12974,"2010":11175,"2017":11680,"2020":11920,"2025":12260,"2030":12750,"2035":12970},"_id":"211","name":"North Attleborough"},{"rpa":"CMRPC","pop":{"2000":4683,"2010":4680,"2017":4810,"2020":4880,"2025":4980,"2030":5130,"2035":5280},"county":"Worcester","hh":{"2000":1811,"2010":1862,"2017":1870,"2020":1910,"2025":1950,"2030":2020,"2035":2090},"emp":{"2000":1179,"2010":910,"2017":920,"2020":980,"2025":980,"2030":990,"2035":990},"_id":"212","name":"North Brookfield"},{"rpa":"MAPC","pop":{"2000":13837,"2010":14892,"2017":14463,"2020":14470,"2025":14682,"2030":14894,"2035":15130},"county":"Middlesex","hh":{"2000":4795,"2010":5439,"2017":5406,"2020":5450,"2025":5590,"2030":5730,"2035":5822},"emp":{"2000":6327,"2010":8418,"2017":8436,"2020":8445,"2025":8144,"2030":7843,"2035":7623},"_id":"213","name":"North Reading"},{"rpa":"PVPC","pop":{"2000":28978,"2010":28549,"2017":29145,"2020":29280,"2025":29472,"2030":29663,"2035":29807},"county":"Hampshire","hh":{"2000":11880,"2010":12000,"2017":12533,"2020":12644,"2025":12835,"2030":12978,"2035":13099},"emp":{"2000":17700,"2010":18060,"2017":18429,"2020":18734,"2025":18789,"2030":18772,"2035":18754},"_id":"214","name":"Northampton"},{"rpa":"CMRPC","pop":{"2000":14013,"2010":14155,"2017":14820,"2020":15150,"2025":15620,"2030":16290,"2035":16990},"county":"Worcester","hh":{"2000":4906,"2010":5110,"2017":5360,"2020":5530,"2025":5770,"2030":5900,"2035":6280},"emp":{"2000":6528,"2010":5800,"2017":7090,"2020":7270,"2025":7430,"2030":7560,"2035":7640},"_id":"215","name":"Northborough"},{"rpa":"CMRPC","pop":{"2000":13182,"2010":15707,"2017":16450,"2020":16810,"2025":17330,"2030":18070,"2035":18870},"county":"Worcester","hh":{"2000":4800,"2010":5896,"2017":6200,"2020":6430,"2025":6690,"2030":6900,"2035":7350},"emp":{"2000":4445,"2010":5320,"2017":5510,"2020":5660,"2025":5790,"2030":5880,"2035":5950},"_id":"216","name":"Northbridge"},{"rpa":"FRCOG","pop":{"2000":2951,"2010":3032,"2017":3130,"2020":3160,"2025":3180,"2030":3240,"2035":3270},"county":"Franklin","hh":{"2000":1158,"2010":1226,"2017":1264,"2020":1290,"2025":1306,"2030":1314,"2035":1330},"emp":{"2000":1173,"2010":892,"2017":899,"2020":916,"2025":934,"2030":954,"2035":975},"_id":"217","name":"Northfield"},{"rpa":"SRPEDD","pop":{"2000":18036,"2010":19031,"2017":20100,"2020":20510,"2025":20590,"2030":21100,"2035":21550},"county":"Bristol","hh":{"2000":5872,"2010":6416,"2017":6860,"2020":7060,"2025":7120,"2030":7330,"2035":7520},"emp":{"2000":6112,"2010":5971,"2017":6310,"2020":6450,"2025":6640,"2030":6900,"2035":7060},"_id":"218","name":"Norton"},{"rpa":"MAPC","pop":{"2000":9765,"2010":10506,"2017":10361,"2020":10353,"2025":10390,"2030":10426,"2035":10528},"county":"Plymouth","hh":{"2000":3250,"2010":3553,"2017":3650,"2020":3678,"2025":3735,"2030":3791,"2035":3828},"emp":{"2000":8463,"2010":8344,"2017":8729,"2020":8893,"2025":8701,"2030":8508,"2035":8422},"_id":"219","name":"Norwell"},{"rpa":"MAPC","pop":{"2000":28587,"2010":28602,"2017":28483,"2020":28432,"2025":28810,"2030":29188,"2035":29728},"county":"Norfolk","hh":{"2000":11623,"2010":11917,"2017":12417,"2020":12535,"2025":12920,"2030":13305,"2035":13558},"emp":{"2000":24644,"2010":23811,"2017":24732,"2020":25126,"2025":25126,"2030":25126,"2035":25126},"_id":"220","name":"Norwood"},{"rpa":"MVC","pop":{"2000":3713,"2010":4527,"2017":4736,"2020":4928,"2025":5120,"2030":5339,"2035":5476},"county":"Dukes","hh":{"2000":1590,"2010":1989,"2017":2092,"2020":2187,"2025":2295,"2030":2403,"2035":2484},"emp":{"2000":1848,"2010":1625,"2017":1688,"2020":1815,"2025":1857,"2030":1878,"2035":1899},"_id":"221","name":"Oak Bluffs"},{"rpa":"CMRPC","pop":{"2000":1673,"2010":1902,"2017":1950,"2020":1980,"2025":2020,"2030":2080,"2035":2140},"county":"Worcester","hh":{"2000":578,"2010":685,"2017":690,"2020":710,"2025":740,"2030":770,"2035":800},"emp":{"2000":130,"2010":210,"2017":220,"2020":220,"2025":220,"2030":220,"2035":220},"_id":"222","name":"Oakham"},{"rpa":"FRCOG","pop":{"2000":7518,"2010":7839,"2017":8080,"2020":8160,"2025":8230,"2030":8370,"2035":8460},"county":"Franklin","hh":{"2000":3045,"2010":3172,"2017":3270,"2020":3300,"2025":3357,"2030":3400,"2035":3441},"emp":{"2000":2151,"2010":1939,"2017":1954,"2020":1992,"2025":2029,"2030":2075,"2035":2120},"_id":"223","name":"Orange"},{"rpa":"CCC","pop":{"2000":6341,"2010":5890,"2017":6240,"2020":6390,"2025":6610,"2030":6890,"2035":7140},"county":"Barnstable","hh":{"2000":3087,"2010":2950,"2017":3110,"2020":3170,"2025":3310,"2030":3420,"2035":3530},"emp":{"2000":4391,"2010":4070,"2017":4250,"2020":4410,"2025":4470,"2030":4520,"2035":4580},"_id":"224","name":"Orleans"},{"rpa":"BRPC","pop":{"2000":1365,"2010":1612,"2017":1618,"2020":1620,"2025":1625,"2030":1629,"2035":1634},"county":"Berkshire","hh":{"2000":567,"2010":708,"2017":711,"2020":711,"2025":715,"2030":718,"2035":720},"emp":{"2000":281,"2010":339,"2017":340,"2020":340,"2025":342,"2030":344,"2035":345},"_id":"225","name":"Otis"},{"rpa":"CMRPC","pop":{"2000":13352,"2010":13709,"2017":14140,"2020":14400,"2025":14760,"2030":14760,"2035":14870},"county":"Worcester","hh":{"2000":5058,"2010":5272,"2017":5450,"2020":5590,"2025":5780,"2030":5780,"2035":5870},"emp":{"2000":3338,"2010":3760,"2017":3900,"2020":3980,"2025":4040,"2030":4090,"2035":4120},"_id":"226","name":"Oxford"},{"rpa":"PVPC","pop":{"2000":12497,"2010":12140,"2017":12523,"2020":12637,"2025":12814,"2030":12993,"2035":13153},"county":"Hampden","hh":{"2000":5078,"2010":5099,"2017":5376,"2020":5446,"2025":5569,"2030":5666,"2035":5758},"emp":{"2000":5467,"2010":4967,"2017":5091,"2020":5185,"2025":5217,"2030":5229,"2035":5241},"_id":"227","name":"Palmer"},{"rpa":"CMRPC","pop":{"2000":4386,"2010":4806,"2017":4950,"2020":5030,"2025":5130,"2030":5280,"2035":5410},"county":"Worcester","hh":{"2000":1428,"2010":1546,"2017":1640,"2020":1680,"2025":1740,"2030":1860,"2035":1860},"emp":{"2000":663,"2010":850,"2017":940,"2020":950,"2025":950,"2030":960,"2035":960},"_id":"228","name":"Paxton"},{"rpa":"MAPC","pop":{"2000":48129,"2010":51251,"2017":51342,"2020":51288,"2025":51900,"2030":52511,"2035":53376},"county":"Essex","hh":{"2000":18581,"2010":21313,"2017":21679,"2020":21872,"2025":22449,"2030":23026,"2035":23405},"emp":{"2000":27063,"2010":23028,"2017":23976,"2020":24383,"2025":23906,"2030":23429,"2035":23231},"_id":"229","name":"Peabody"},{"rpa":"PVPC","pop":{"2000":1403,"2010":1321,"2017":1353,"2020":1361,"2025":1374,"2030":1386,"2035":1396},"county":"Hampshire","hh":{"2000":545,"2010":549,"2017":575,"2020":581,"2025":591,"2030":599,"2035":606},"emp":{"2000":176,"2010":155,"2017":159,"2020":162,"2025":164,"2030":164,"2035":165},"_id":"230","name":"Pelham"},{"rpa":"MAPC/OCPC","pop":{"2000":16927,"2010":17837,"2017":18928,"2020":18925,"2025":19259,"2030":19592,"2035":19978},"county":"Plymouth","hh":{"2000":5750,"2010":6298,"2017":6823,"2020":6888,"2025":7104,"2030":7321,"2035":7463},"emp":{"2000":5280,"2010":6340,"2017":6479,"2020":6539,"2025":6406,"2030":6272,"2035":6226},"_id":"231","name":"Pembroke"},{"rpa":"NMCOG","pop":{"2000":11142,"2010":11497,"2017":12600,"2020":13070,"2025":13680,"2030":14660,"2035":15360},"county":"Middlesex","hh":{"2000":3847,"2010":4197,"2017":4660,"2020":4850,"2025":5130,"2030":5500,"2035":5800},"emp":{"2000":1571,"2010":1379,"2017":1640,"2020":1750,"2025":1950,"2030":2170,"2035":2300},"_id":"232","name":"Pepperell"},{"rpa":"BRPC","pop":{"2000":821,"2010":847,"2017":850,"2020":851,"2025":854,"2030":856,"2035":858},"county":"Berkshire","hh":{"2000":295,"2010":336,"2017":337,"2020":337,"2025":339,"2030":340,"2035":340},"emp":{"2000":32,"2010":31,"2017":31,"2020":31,"2025":31,"2030":32,"2035":32},"_id":"233","name":"Peru"},{"rpa":"MRPC","pop":{"2000":1180,"2010":1234,"2017":1250,"2020":1270,"2025":1290,"2030":1320,"2035":1340},"county":"Worcester","hh":{"2000":438,"2010":493,"2017":500,"2020":510,"2025":520,"2030":540,"2035":550},"emp":{"2000":142,"2010":130,"2017":130,"2020":130,"2025":130,"2030":140,"2035":140},"_id":"234","name":"Petersham"},{"rpa":"MRPC","pop":{"2000":1621,"2010":1682,"2017":1700,"2020":1730,"2025":1750,"2030":1790,"2035":1810},"county":"Worcester","hh":{"2000":580,"2010":633,"2017":640,"2020":660,"2025":670,"2030":690,"2035":700},"emp":{"2000":175,"2010":170,"2017":170,"2020":170,"2025":180,"2030":180,"2035":180},"_id":"235","name":"Phillipston"},{"rpa":"BRPC","pop":{"2000":45793,"2010":44737,"2017":44903,"2020":44967,"2025":45108,"2030":45207,"2035":45347},"county":"Berkshire","hh":{"2000":19704,"2010":19653,"2017":19749,"2020":19794,"2025":19865,"2030":19940,"2035":20013},"emp":{"2000":26695,"2010":25411,"2017":25454,"2020":25495,"2025":25619,"2030":25744,"2035":25871},"_id":"236","name":"Pittsfield"},{"rpa":"PVPC","pop":{"2000":589,"2010":648,"2017":665,"2020":669,"2025":676,"2030":682,"2035":688},"county":"Hampshire","hh":{"2000":243,"2010":269,"2017":282,"2020":285,"2025":291,"2030":295,"2035":298},"emp":{"2000":110,"2010":40,"2017":41,"2020":42,"2025":43,"2030":43,"2035":43},"_id":"237","name":"Plainfield"},{"rpa":"SRPEDD","pop":{"2000":7683,"2010":8264,"2017":8630,"2020":8800,"2025":9790,"2030":10730,"2035":11280},"county":"Norfolk","hh":{"2000":3009,"2010":3303,"2017":3490,"2020":3590,"2025":4010,"2030":4420,"2035":4670},"emp":{"2000":3005,"2010":3574,"2017":4290,"2020":4380,"2025":4520,"2030":4700,"2035":4910},"_id":"238","name":"Plainville"},{"rpa":"OCPC","pop":{"2000":51701,"2010":56468,"2017":63842,"2020":65354,"2025":68250,"2030":69281,"2035":71057},"county":"Plymouth","hh":{"2000":18423,"2010":21269,"2017":24028,"2020":24151,"2025":25530,"2030":26142,"2035":26836},"emp":{"2000":19100,"2010":22869,"2017":24106,"2020":24888,"2025":25768,"2030":26721,"2035":26759},"_id":"239","name":"Plymouth"},{"rpa":"OCPC","pop":{"2000":2637,"2010":2820,"2017":2920,"2020":3180,"2025":3283,"2030":3773,"2035":3876},"county":"Plymouth","hh":{"2000":854,"2010":1006,"2017":1053,"2020":1226,"2025":1262,"2030":1472,"2035":1512},"emp":{"2000":267,"2010":384,"2017":1076,"2020":1235,"2025":1234,"2030":1234,"2035":1240},"_id":"240","name":"Plympton"},{"rpa":"CMRPC","pop":{"2000":3353,"2010":3413,"2017":3520,"2020":3590,"2025":3680,"2030":3810,"2035":3930},"county":"Worcester","hh":{"2000":1166,"2010":1279,"2017":1320,"2020":1360,"2025":1410,"2030":1470,"2035":1520},"emp":{"2000":759,"2010":740,"2017":750,"2020":750,"2025":750,"2030":760,"2035":760},"_id":"241","name":"Princeton"},{"rpa":"CCC","pop":{"2000":3431,"2010":2942,"2017":3240,"2020":3370,"2025":3570,"2030":3800,"2035":4010},"county":"Barnstable","hh":{"2000":1837,"2010":1765,"2017":1940,"2020":2010,"2025":2160,"2030":2280,"2035":2400},"emp":{"2000":2363,"2010":2420,"2017":2440,"2020":2500,"2025":2470,"2030":2440,"2035":2420},"_id":"242","name":"Provincetown"},{"rpa":"MAPC","pop":{"2000":88025,"2010":92271,"2017":92040,"2020":92216,"2025":93244,"2030":94272,"2035":95563},"county":"Norfolk","hh":{"2000":38883,"2010":40658,"2017":42807,"2020":43252,"2025":44303,"2030":45354,"2035":46015},"emp":{"2000":47240,"2010":48046,"2017":49665,"2020":50359,"2025":51155,"2030":51951,"2035":51860},"_id":"243","name":"Quincy"},{"rpa":"MAPC","pop":{"2000":30963,"2010":32112,"2017":31409,"2020":31507,"2025":32224,"2030":32941,"2035":33618},"county":"Norfolk","hh":{"2000":11313,"2010":11551,"2017":12341,"2020":12468,"2025":12878,"2030":13288,"2035":13558},"emp":{"2000":10425,"2010":7734,"2017":8225,"2020":8435,"2025":8432,"2030":8429,"2035":8429},"_id":"244","name":"Randolph"},{"rpa":"SRPEDD","pop":{"2000":11739,"2010":13383,"2017":14200,"2020":14490,"2025":14980,"2030":16260,"2035":17140},"county":"Bristol","hh":{"2000":4143,"2010":4875,"2017":5240,"2020":5390,"2025":5590,"2030":6100,"2035":6460},"emp":{"2000":6891,"2010":8605,"2017":8690,"2020":8870,"2025":9140,"2030":9500,"2035":9870},"_id":"245","name":"Raynham"},{"rpa":"MAPC","pop":{"2000":23708,"2010":24747,"2017":24139,"2020":24323,"2025":24755,"2030":25187,"2035":25687},"county":"Middlesex","hh":{"2000":8688,"2010":9305,"2017":9543,"2020":9707,"2025":10026,"2030":10346,"2035":10556},"emp":{"2000":7459,"2010":6417,"2017":6727,"2020":6860,"2025":6777,"2030":6695,"2035":6649},"_id":"246","name":"Reading"},{"rpa":"SRPEDD","pop":{"2000":10172,"2010":11608,"2017":11980,"2020":12220,"2025":12850,"2030":14520,"2035":15280},"county":"Bristol","hh":{"2000":3523,"2010":4101,"2017":4290,"2020":4410,"2025":4660,"2030":5280,"2035":5590},"emp":{"2000":1510,"2010":1630,"2017":1690,"2020":1730,"2025":1780,"2030":1850,"2035":1870},"_id":"247","name":"Rehoboth"},{"rpa":"MAPC","pop":{"2000":47283,"2010":51755,"2017":53519,"2020":54152,"2025":55199,"2030":56245,"2035":57167},"county":"Suffolk","hh":{"2000":19463,"2010":20454,"2017":23171,"2020":23603,"2025":24244,"2030":24886,"2035":25308},"emp":{"2000":8780,"2010":8873,"2017":9684,"2020":10031,"2025":10031,"2030":10031,"2035":10031},"_id":"248","name":"Revere"},{"rpa":"BRPC","pop":{"2000":1604,"2010":1475,"2017":1480,"2020":1483,"2025":1487,"2030":1491,"2035":1495},"county":"Berkshire","hh":{"2000":643,"2010":657,"2017":660,"2020":661,"2025":664,"2030":666,"2035":668},"emp":{"2000":191,"2010":238,"2017":239,"2020":239,"2025":240,"2030":242,"2035":243},"_id":"249","name":"Richmond"},{"rpa":"SRPEDD","pop":{"2000":4581,"2010":5232,"2017":5530,"2020":5880,"2025":6540,"2030":6600,"2035":7170},"county":"Plymouth","hh":{"2000":1575,"2010":1813,"2017":1940,"2020":2080,"2025":2320,"2030":2360,"2035":2570},"emp":{"2000":980,"2010":787,"2017":750,"2020":760,"2025":790,"2030":820,"2035":830},"_id":"250","name":"Rochester"},{"rpa":"MAPC","pop":{"2000":17670,"2010":17489,"2017":18185,"2020":18185,"2025":18422,"2030":18658,"2035":19035},"county":"Plymouth","hh":{"2000":6539,"2010":6697,"2017":7287,"2020":7364,"2025":7614,"2030":7864,"2035":8029},"emp":{"2000":8148,"2010":8003,"2017":8151,"2020":8214,"2025":8041,"2030":7869,"2035":7773},"_id":"251","name":"Rockland"},{"rpa":"MAPC","pop":{"2000":7767,"2010":6952,"2017":7775,"2020":7802,"2025":7918,"2030":8033,"2035":8120},"county":"Essex","hh":{"2000":3490,"2010":3213,"2017":3550,"2020":3568,"2025":3628,"2030":3688,"2035":3728},"emp":{"2000":1451,"2010":915,"2017":926,"2020":931,"2025":919,"2030":906,"2035":903},"_id":"252","name":"Rockport"},{"rpa":"FRCOG","pop":{"2000":351,"2010":393,"2017":400,"2020":400,"2025":420,"2030":425,"2035":430},"county":"Franklin","hh":{"2000":154,"2010":167,"2017":172,"2020":172,"2025":185,"2030":179,"2035":181},"emp":{"2000":128,"2010":113,"2017":114,"2020":116,"2025":118,"2030":121,"2035":123},"_id":"253","name":"Rowe"},{"rpa":"MVPC","pop":{"2000":5500,"2010":5856,"2017":6000,"2020":6100,"2025":6450,"2030":6900,"2035":7500},"county":"Essex","hh":{"2000":1958,"2010":2155,"2017":2230,"2020":2280,"2025":2440,"2030":2640,"2035":2900},"emp":{"2000":2399,"2010":2649,"2017":2882,"2020":2962,"2025":3052,"2030":3142,"2035":3232},"_id":"254","name":"Rowley"},{"rpa":"MRPC","pop":{"2000":1254,"2010":1258,"2017":1280,"2020":1300,"2025":1320,"2030":1350,"2035":1370},"county":"Worcester","hh":{"2000":449,"2010":498,"2017":510,"2020":520,"2025":530,"2030":550,"2035":560},"emp":{"2000":157,"2010":120,"2017":120,"2020":120,"2025":130,"2030":130,"2035":130},"_id":"255","name":"Royalston"},{"rpa":"PVPC","pop":{"2000":1657,"2010":1775,"2017":1845,"2020":1868,"2025":1905,"2030":1942,"2035":1976},"county":"Hampden","hh":{"2000":611,"2010":656,"2017":698,"2020":710,"2025":730,"2030":747,"2035":764},"emp":{"2000":267,"2010":181,"2017":188,"2020":193,"2025":196,"2030":198,"2035":200},"_id":"256","name":"Russell"},{"rpa":"CMRPC","pop":{"2000":6353,"2010":7973,"2017":8550,"2020":8750,"2025":9020,"2030":9400,"2035":9680},"county":"Worcester","hh":{"2000":2253,"2010":2791,"2017":3330,"2020":3480,"2025":3700,"2030":3880,"2035":4020},"emp":{"2000":1015,"2010":1060,"2017":1100,"2020":1120,"2025":1140,"2030":1150,"2035":1160},"_id":"257","name":"Rutland"},{"rpa":"MAPC","pop":{"2000":40407,"2010":41340,"2017":41914,"2020":42111,"2025":42921,"2030":43731,"2035":44518},"county":"Essex","hh":{"2000":17492,"2010":17842,"2017":18772,"2020":18980,"2025":19531,"2030":20082,"2035":20443},"emp":{"2000":18056,"2010":18379,"2017":18735,"2020":18887,"2025":18721,"2030":18555,"2035":18521},"_id":"258","name":"Salem"},{"rpa":"MVPC","pop":{"2000":7827,"2010":8283,"2017":8750,"2020":8900,"2025":9300,"2030":9700,"2035":10100},"county":"Essex","hh":{"2000":3082,"2010":3441,"2017":3700,"2020":3770,"2025":3980,"2030":4180,"2035":4370},"emp":{"2000":2774,"2010":2795,"2017":3221,"2020":3382,"2025":3603,"2030":3821,"2035":4037},"_id":"259","name":"Salisbury"},{"rpa":"BRPC","pop":{"2000":824,"2010":915,"2017":918,"2020":920,"2025":923,"2030":925,"2035":927},"county":"Berkshire","hh":{"2000":327,"2010":377,"2017":378,"2020":378,"2025":380,"2030":380,"2035":381},"emp":{"2000":193,"2010":138,"2017":138,"2020":138,"2025":139,"2030":140,"2035":140},"_id":"260","name":"Sandisfield"},{"rpa":"CCC","pop":{"2000":20136,"2010":20675,"2017":21630,"2020":22040,"2025":22620,"2030":23390,"2035":24060},"county":"Barnstable","hh":{"2000":7335,"2010":7776,"2017":8180,"2020":8350,"2025":8700,"2030":8970,"2035":9250},"emp":{"2000":4817,"2010":5090,"2017":5280,"2020":5460,"2025":5500,"2030":5540,"2035":5580},"_id":"261","name":"Sandwich"},{"rpa":"MAPC","pop":{"2000":26078,"2010":26628,"2017":27982,"2020":27942,"2025":28325,"2030":28709,"2035":29281},"county":"Essex","hh":{"2000":9975,"2010":10318,"2017":11552,"2020":11667,"2025":12040,"2030":12414,"2035":12659},"emp":{"2000":11131,"2010":10079,"2017":10523,"2020":10714,"2025":10664,"2030":10614,"2035":10592},"_id":"262","name":"Saugus"},{"rpa":"BRPC","pop":{"2000":705,"2010":692,"2017":695,"2020":696,"2025":698,"2030":699,"2035":701},"county":"Berkshire","hh":{"2000":287,"2010":298,"2017":299,"2020":299,"2025":300,"2030":300,"2035":301},"emp":{"2000":63,"2010":48,"2017":48,"2020":48,"2025":49,"2030":49,"2035":49},"_id":"263","name":"Savoy"},{"rpa":"MAPC","pop":{"2000":17863,"2010":18133,"2017":18522,"2020":18586,"2025":18690,"2030":18795,"2035":19070},"county":"Plymouth","hh":{"2000":6694,"2010":6859,"2017":7620,"2020":7735,"2025":7910,"2030":8084,"2035":8199},"emp":{"2000":2989,"2010":3152,"2017":3239,"2020":3276,"2025":3248,"2030":3220,"2035":3215},"_id":"264","name":"Scituate"},{"rpa":"SRPEDD","pop":{"2000":13425,"2010":13722,"2017":14430,"2020":15020,"2025":15120,"2030":15300,"2035":16040},"county":"Bristol","hh":{"2000":4843,"2010":5071,"2017":5400,"2020":5670,"2025":5730,"2030":5830,"2035":6130},"emp":{"2000":8288,"2010":7781,"2017":8490,"2020":8670,"2025":8920,"2030":9270,"2035":9410},"_id":"265","name":"Seekonk"},{"rpa":"MAPC","pop":{"2000":17408,"2010":17612,"2017":18118,"2020":18115,"2025":18459,"2030":18803,"2035":19087},"county":"Norfolk","hh":{"2000":5934,"2010":6219,"2017":6478,"2020":6529,"2025":6694,"2030":6859,"2035":6961},"emp":{"2000":3418,"2010":3349,"2017":3424,"2020":3456,"2025":3414,"2030":3372,"2035":3328},"_id":"266","name":"Sharon"},{"rpa":"BRPC","pop":{"2000":3335,"2010":3257,"2017":3269,"2020":3274,"2025":3284,"2030":3291,"2035":3301},"county":"Berkshire","hh":{"2000":1369,"2010":1424,"2017":1431,"2020":1433,"2025":1438,"2030":1443,"2035":1448},"emp":{"2000":1274,"2010":1335,"2017":1337,"2020":1340,"2025":1346,"2030":1353,"2035":1359},"_id":"267","name":"Sheffield"},{"rpa":"FRCOG","pop":{"2000":2058,"2010":1893,"2017":1950,"2020":1970,"2025":1990,"2030":2020,"2035":2040},"county":"Franklin","hh":{"2000":834,"2010":849,"2017":875,"2020":880,"2025":890,"2030":917,"2035":921},"emp":{"2000":744,"2010":747,"2017":753,"2020":768,"2025":782,"2030":799,"2035":817},"_id":"268","name":"Shelburne"},{"rpa":"MAPC","pop":{"2000":4200,"2010":4119,"2017":4261,"2020":4243,"2025":4266,"2030":4290,"2035":4348},"county":"Middlesex","hh":{"2000":1423,"2010":1438,"2017":1613,"2020":1624,"2025":1658,"2030":1692,"2035":1714},"emp":{"2000":522,"2010":637,"2017":653,"2020":660,"2025":637,"2030":614,"2035":608},"_id":"269","name":"Sherborn"},{"rpa":"MRPC","pop":{"2000":6373,"2010":7211,"2017":7320,"2020":7400,"2025":7530,"2030":7650,"2035":7780},"county":"Middlesex","hh":{"2000":2067,"2010":2264,"2017":2310,"2020":2360,"2025":2430,"2030":2480,"2035":2530},"emp":{"2000":2114,"2010":2140,"2017":2180,"2020":2210,"2025":2230,"2030":2260,"2035":2290},"_id":"270","name":"Shirley"},{"rpa":"CMRPC","pop":{"2000":31640,"2010":35608,"2017":36970,"2020":37640,"2025":38590,"2030":39950,"2035":41230},"county":"Worcester","hh":{"2000":12366,"2010":13424,"2017":14770,"2020":15290,"2025":15790,"2030":16470,"2035":16120},"emp":{"2000":13757,"2010":13010,"2017":13650,"2020":14410,"2025":14740,"2030":14990,"2035":15160},"_id":"271","name":"Shrewsbury"},{"rpa":"FRCOG","pop":{"2000":1810,"2010":1771,"2017":1830,"2020":1840,"2025":1860,"2030":1890,"2035":1910},"county":"Franklin","hh":{"2000":662,"2010":714,"2017":736,"2020":740,"2025":756,"2030":765,"2035":775},"emp":{"2000":141,"2010":148,"2017":149,"2020":152,"2025":155,"2030":158,"2035":162},"_id":"272","name":"Shutesbury"},{"rpa":"SRPEDD","pop":{"2000":18234,"2010":18165,"2017":18560,"2020":18940,"2025":19040,"2030":19080,"2035":19110},"county":"Bristol","hh":{"2000":6987,"2010":7087,"2017":7330,"2020":7550,"2025":7610,"2030":7640,"2035":7650},"emp":{"2000":4215,"2010":4445,"2017":4420,"2020":4520,"2025":4640,"2030":4830,"2035":4920},"_id":"273","name":"Somerset"},{"rpa":"MAPC","pop":{"2000":77478,"2010":75754,"2017":80346,"2020":81844,"2025":83685,"2030":85526,"2035":88045},"county":"Middlesex","hh":{"2000":31555,"2010":32105,"2017":33583,"2020":34400,"2025":35436,"2030":36472,"2035":37544},"emp":{"2000":23220,"2010":20435,"2017":25050,"2020":27028,"2025":29591,"2030":32154,"2035":35564},"_id":"274","name":"Somerville"},{"rpa":"PVPC","pop":{"2000":17196,"2010":17514,"2017":17885,"2020":17970,"2025":18092,"2030":18213,"2035":18306},"county":"Hampshire","hh":{"2000":6586,"2010":6793,"2017":7095,"2020":7157,"2025":7269,"2030":7347,"2035":7415},"emp":{"2000":4847,"2010":4425,"2017":4544,"2020":4633,"2025":4668,"2030":4685,"2035":4703},"_id":"275","name":"South Hadley"},{"rpa":"PVPC","pop":{"2000":5387,"2010":5792,"2017":6065,"2020":6158,"2025":6309,"2030":6462,"2035":6606},"county":"Hampshire","hh":{"2000":1985,"2010":2249,"2017":2408,"2020":2455,"2025":2536,"2030":2608,"2035":2677},"emp":{"2000":1049,"2010":1081,"2017":1110,"2020":1132,"2025":1140,"2030":1145,"2035":1149},"_id":"276","name":"Southampton"},{"rpa":"MAPC","pop":{"2000":8781,"2010":9767,"2017":9958,"2020":10040,"2025":10336,"2030":10632,"2035":10868},"county":"Worcester","hh":{"2000":2952,"2010":3332,"2017":3568,"2020":3613,"2025":3741,"2030":3869,"2035":3953},"emp":{"2000":6278,"2010":6527,"2017":7865,"2020":8439,"2025":8131,"2030":7823,"2035":7688},"_id":"277","name":"Southborough"},{"rpa":"CMRPC","pop":{"2000":17214,"2010":16719,"2017":17090,"2020":17350,"2025":17720,"2030":17720,"2035":18000},"county":"Worcester","hh":{"2000":7077,"2010":6866,"2017":7040,"2020":7170,"2025":7360,"2030":7360,"2035":7500},"emp":{"2000":6310,"2010":5820,"2017":5860,"2020":5930,"2025":5970,"2030":5990,"2035":6010},"_id":"278","name":"Southbridge"},{"rpa":"PVPC","pop":{"2000":8835,"2010":9502,"2017":9906,"2020":10041,"2025":10257,"2030":10475,"2035":10679},"county":"Hampden","hh":{"2000":3318,"2010":3710,"2017":3954,"2020":4024,"2025":4160,"2030":4250,"2035":4350},"emp":{"2000":2538,"2010":2523,"2017":2583,"2020":2629,"2025":2643,"2030":2646,"2035":2650},"_id":"279","name":"Southwick"},{"rpa":"CMRPC","pop":{"2000":11691,"2010":11688,"2017":12050,"2020":12270,"2025":12570,"2030":13010,"2035":13490},"county":"Worcester","hh":{"2000":4583,"2010":4744,"2017":4790,"2020":4900,"2025":5060,"2030":5160,"2035":5480},"emp":{"2000":3564,"2010":3090,"2017":3110,"2020":3150,"2025":3170,"2030":3180,"2035":3190},"_id":"280","name":"Spencer"},{"rpa":"PVPC","pop":{"2000":152082,"2010":153060,"2017":155922,"2020":156496,"2025":157281,"2030":158053,"2035":158571},"county":"Hampden","hh":{"2000":57130,"2010":56752,"2017":59112,"2020":59567,"2025":60350,"2030":60904,"2035":61351},"emp":{"2000":78593,"2010":74640,"2017":76381,"2020":77739,"2025":78124,"2030":78213,"2035":78300},"_id":"281","name":"Springfield"},{"rpa":"MRPC","pop":{"2000":7257,"2010":7808,"2017":7920,"2020":8020,"2025":8160,"2030":8290,"2035":8420},"county":"Worcester","hh":{"2000":2573,"2010":2810,"2017":2870,"2020":2930,"2025":3000,"2030":3080,"2035":3140},"emp":{"2000":2061,"2010":2430,"2017":2470,"2020":2500,"2025":2540,"2030":2570,"2035":2600},"_id":"282","name":"Sterling"},{"rpa":"BRPC","pop":{"2000":2276,"2010":1947,"2017":1954,"2020":1957,"2025":1963,"2030":1967,"2035":1973},"county":"Berkshire","hh":{"2000":991,"2010":919,"2017":923,"2020":925,"2025":928,"2030":931,"2035":935},"emp":{"2000":1441,"2010":1576,"2017":1578,"2020":1581,"2025":1589,"2030":1596,"2035":1604},"_id":"283","name":"Stockbridge"},{"rpa":"MAPC","pop":{"2000":22219,"2010":21437,"2017":21841,"2020":21907,"2025":22497,"2030":23087,"2035":23716},"county":"Middlesex","hh":{"2000":9050,"2010":8994,"2017":9749,"2020":9893,"2025":10364,"2030":10835,"2035":11144},"emp":{"2000":8034,"2010":7757,"2017":8151,"2020":8320,"2025":8292,"2030":8264,"2035":8252},"_id":"284","name":"Stoneham"},{"rpa":"MAPC/OCPC","pop":{"2000":27149,"2010":26962,"2017":27474,"2020":27561,"2025":28341,"2030":29120,"2035":29927},"county":"Norfolk","hh":{"2000":10254,"2010":10295,"2017":11040,"2020":11200,"2025":11696,"2030":12192,"2035":12521},"emp":{"2000":12457,"2010":12691,"2017":13331,"2020":13605,"2025":13585,"2030":13566,"2035":13444},"_id":"285","name":"Stoughton"},{"rpa":"MAPC","pop":{"2000":5902,"2010":6590,"2017":7741,"2020":7807,"2025":7828,"2030":7849,"2035":7942},"county":"Middlesex","hh":{"2000":2082,"2010":2429,"2017":2944,"2020":3001,"2025":3055,"2030":3109,"2035":3145},"emp":{"2000":2212,"2010":2005,"2017":2075,"2020":2105,"2025":2028,"2030":1950,"2035":1908},"_id":"286","name":"Stow"},{"rpa":"CMRPC","pop":{"2000":7837,"2010":9268,"2017":9700,"2020":9920,"2025":10220,"2030":11660,"2035":12570},"county":"Worcester","hh":{"2000":3066,"2010":3611,"2017":3970,"2020":4100,"2025":4260,"2030":4780,"2035":5290},"emp":{"2000":4867,"2010":4470,"2017":4700,"2020":4790,"2025":4870,"2030":4920,"2035":4960},"_id":"287","name":"Sturbridge"},{"rpa":"MAPC","pop":{"2000":16841,"2010":17659,"2017":18224,"2020":18405,"2025":18860,"2030":19316,"2035":19766},"county":"Middlesex","hh":{"2000":5504,"2010":5771,"2017":6598,"2020":6724,"2025":6983,"2030":7243,"2035":7413},"emp":{"2000":6492,"2010":7830,"2017":7982,"2020":8047,"2025":7882,"2030":7716,"2035":7663},"_id":"288","name":"Sudbury"},{"rpa":"FRCOG","pop":{"2000":3777,"2010":3684,"2017":3800,"2020":3840,"2025":3870,"2030":3930,"2035":3970},"county":"Franklin","hh":{"2000":1633,"2010":1648,"2017":1699,"2020":1700,"2025":1729,"2030":1766,"2035":1788},"emp":{"2000":618,"2010":866,"2017":873,"2020":890,"2025":908,"2030":926,"2035":947},"_id":"289","name":"Sunderland"},{"rpa":"CMRPC","pop":{"2000":8250,"2010":8963,"2017":9300,"2020":9470,"2025":9700,"2030":10040,"2035":10360},"county":"Worcester","hh":{"2000":2811,"2010":3213,"2017":3440,"2020":3580,"2025":3720,"2030":3890,"2035":4030},"emp":{"2000":1465,"2010":2110,"2017":2250,"2020":2300,"2025":2350,"2030":2390,"2035":2420},"_id":"290","name":"Sutton"},{"rpa":"MAPC","pop":{"2000":14412,"2010":13787,"2017":14187,"2020":14223,"2025":14432,"2030":14641,"2035":14862},"county":"Essex","hh":{"2000":5719,"2010":5520,"2017":5905,"2020":5957,"2025":6096,"2030":6236,"2035":6327},"emp":{"2000":3434,"2010":3549,"2017":3664,"2020":3713,"2025":3643,"2030":3573,"2035":3554},"_id":"291","name":"Swampscott"},{"rpa":"SRPEDD","pop":{"2000":15901,"2010":15865,"2017":16830,"2020":17170,"2025":17750,"2030":18010,"2035":18390},"county":"Bristol","hh":{"2000":5888,"2010":6079,"2017":6530,"2020":6720,"2025":6970,"2030":7110,"2035":7290},"emp":{"2000":5577,"2010":5142,"2017":5510,"2020":5630,"2025":5790,"2030":6020,"2035":6180},"_id":"292","name":"Swansea"},{"rpa":"SRPEDD","pop":{"2000":55976,"2010":55874,"2017":58070,"2020":59250,"2025":61250,"2030":63170,"2035":65540},"county":"Bristol","hh":{"2000":22045,"2010":22332,"2017":23510,"2020":24190,"2025":25100,"2030":26010,"2035":27110},"emp":{"2000":24329,"2010":24118,"2017":25500,"2020":26040,"2025":26820,"2030":27890,"2035":28460},"_id":"293","name":"Taunton"},{"rpa":"MRPC","pop":{"2000":6799,"2010":8013,"2017":8130,"2020":8230,"2025":8370,"2030":8510,"2035":8640},"county":"Worcester","hh":{"2000":2411,"2010":2882,"2017":2940,"2020":3000,"2025":3080,"2030":3150,"2035":3220},"emp":{"2000":1692,"2010":1740,"2017":1770,"2020":1790,"2025":1810,"2030":1830,"2035":1850},"_id":"294","name":"Templeton"},{"rpa":"NMCOG","pop":{"2000":28851,"2010":28961,"2017":29600,"2020":30000,"2025":31020,"2030":31820,"2035":32640},"county":"Middlesex","hh":{"2000":9964,"2010":10492,"2017":10800,"2020":10980,"2025":11450,"2030":11800,"2035":12150},"emp":{"2000":17266,"2010":15213,"2017":16750,"2020":17190,"2025":17610,"2030":18050,"2035":18400},"_id":"295","name":"Tewksbury"},{"rpa":"MVC","pop":{"2000":3755,"2010":3949,"2017":4132,"2020":4299,"2025":4466,"2030":4657,"2035":4777},"county":"Dukes","hh":{"2000":1646,"2010":1806,"2017":1900,"2020":1985,"2025":2083,"2030":2182,"2035":2255},"emp":{"2000":2329,"2010":2486,"2017":2583,"2020":2777,"2025":2841,"2030":2874,"2035":2906},"_id":"296","name":"Tisbury"},{"rpa":"PVPC","pop":{"2000":426,"2010":485,"2017":497,"2020":501,"2025":505,"2030":510,"2035":514},"county":"Hampden","hh":{"2000":169,"2010":197,"2017":207,"2020":209,"2025":213,"2030":216,"2035":218},"emp":{"2000":52,"2010":37,"2017":38,"2020":39,"2025":40,"2030":40,"2035":40},"_id":"297","name":"Tolland"},{"rpa":"MAPC","pop":{"2000":6141,"2010":6085,"2017":6110,"2020":6083,"2025":6107,"2030":6130,"2035":6199},"county":"Essex","hh":{"2000":2099,"2010":2090,"2017":2257,"2020":2269,"2025":2308,"2030":2347,"2035":2373},"emp":{"2000":2897,"2010":1934,"2017":1998,"2020":2026,"2025":1951,"2030":1876,"2035":1848},"_id":"298","name":"Topsfield"},{"rpa":"MRPC","pop":{"2000":9198,"2010":8926,"2017":9060,"2020":9170,"2025":9320,"2030":9470,"2035":9630},"county":"Middlesex","hh":{"2000":3110,"2010":3240,"2017":3310,"2020":3380,"2025":3460,"2030":3550,"2035":3620},"emp":{"2000":2249,"2010":2140,"2017":2180,"2020":2210,"2025":2230,"2030":2260,"2035":2290},"_id":"299","name":"Townsend"},{"rpa":"CCC","pop":{"2000":2087,"2010":2003,"2017":2390,"2020":2560,"2025":2830,"2030":3120,"2035":3400},"county":"Barnstable","hh":{"2000":907,"2010":984,"2017":1270,"2020":1390,"2025":1610,"2030":1810,"2035":2010},"emp":{"2000":519,"2010":540,"2017":600,"2020":630,"2025":660,"2030":690,"2035":720},"_id":"300","name":"Truro"},{"rpa":"NMCOG","pop":{"2000":11081,"2010":11292,"2017":12010,"2020":12470,"2025":13070,"2030":13740,"2035":14400},"county":"Middlesex","hh":{"2000":3731,"2010":3999,"2017":4370,"2020":4550,"2025":4800,"2030":5080,"2035":5350},"emp":{"2000":4293,"2010":4123,"2017":4810,"2020":5040,"2025":5160,"2030":5380,"2035":5650},"_id":"301","name":"Tyngsborough"},{"rpa":"BRPC","pop":{"2000":350,"2010":327,"2017":328,"2020":329,"2025":330,"2030":330,"2035":331},"county":"Berkshire","hh":{"2000":133,"2010":138,"2017":138,"2020":138,"2025":138,"2030":138,"2035":138},"emp":{"2000":30,"2010":0,"2017":0,"2020":0,"2025":0,"2030":0,"2035":0},"_id":"302","name":"Tyringham"},{"rpa":"CMRPC","pop":{"2000":5642,"2010":7542,"2017":7880,"2020":8030,"2025":8230,"2030":8520,"2035":8850},"county":"Worcester","hh":{"2000":2042,"2010":2733,"2017":3050,"2020":3180,"2025":3290,"2030":3550,"2035":3440},"emp":{"2000":1010,"2010":1010,"2017":1020,"2020":1030,"2025":1030,"2030":1040,"2035":1040},"_id":"303","name":"Upton"},{"rpa":"CMRPC","pop":{"2000":11156,"2010":13457,"2017":14260,"2020":14580,"2025":15030,"2030":15950,"2035":16990},"county":"Worcester","hh":{"2000":3988,"2010":5056,"2017":5410,"2020":5600,"2025":5860,"2030":6180,"2035":6710},"emp":{"2000":2690,"2010":3080,"2017":3120,"2020":3160,"2025":3180,"2030":3190,"2035":3200},"_id":"304","name":"Uxbridge"},{"rpa":"MAPC","pop":{"2000":24804,"2010":24932,"2017":25495,"2020":25570,"2025":26125,"2030":26680,"2035":27253},"county":"Middlesex","hh":{"2000":9747,"2010":9994,"2017":10551,"2020":10680,"2025":11053,"2030":11426,"2035":11670},"emp":{"2000":15084,"2010":14091,"2017":14401,"2020":14534,"2025":14326,"2030":14118,"2035":14054},"_id":"305","name":"Wakefield"},{"rpa":"PVPC","pop":{"2000":1737,"2010":1838,"2017":1935,"2020":1970,"2025":2026,"2030":2082,"2035":2136},"county":"Hampden","hh":{"2000":660,"2010":736,"2017":792,"2020":809,"2025":838,"2030":864,"2035":890},"emp":{"2000":138,"2010":150,"2017":154,"2020":157,"2025":158,"2030":158,"2035":159},"_id":"306","name":"Wales"},{"rpa":"MAPC","pop":{"2000":22824,"2010":24070,"2017":23723,"2020":23756,"2025":23970,"2030":24184,"2035":24580},"county":"Norfolk","hh":{"2000":8060,"2010":8730,"2017":9116,"2020":9239,"2025":9486,"2030":9733,"2035":9895},"emp":{"2000":9608,"2010":10376,"2017":10570,"2020":10653,"2025":10516,"2030":10379,"2035":10308},"_id":"307","name":"Walpole"},{"rpa":"MAPC","pop":{"2000":59226,"2010":60632,"2017":60890,"2020":60891,"2025":61570,"2030":62249,"2035":63049},"county":"Middlesex","hh":{"2000":23207,"2010":23690,"2017":24244,"2020":24415,"2025":24970,"2030":25525,"2035":25890},"emp":{"2000":64860,"2010":54248,"2017":57149,"2020":58392,"2025":57014,"2030":55636,"2035":55241},"_id":"308","name":"Waltham"},{"rpa":"PVPC","pop":{"2000":9707,"2010":9872,"2017":10252,"2020":10374,"2025":10569,"2030":10765,"2035":10947},"county":"Hampshire","hh":{"2000":4027,"2010":4120,"2017":4371,"2020":4439,"2025":4570,"2030":4658,"2035":4754},"emp":{"2000":2755,"2010":2718,"2017":2791,"2020":2845,"2025":2867,"2030":2877,"2035":2888},"_id":"309","name":"Ware"},{"rpa":"SRPEDD","pop":{"2000":20335,"2010":21822,"2017":22210,"2020":22660,"2025":24780,"2030":25480,"2035":26160},"county":"Plymouth","hh":{"2000":8200,"2010":9071,"2017":9350,"2020":9620,"2025":10560,"2030":10910,"2035":11250},"emp":{"2000":6603,"2010":8758,"2017":8930,"2020":9120,"2025":9380,"2030":9760,"2035":9940},"_id":"310","name":"Wareham"},{"rpa":"CMRPC","pop":{"2000":4776,"2010":5135,"2017":5330,"2020":5430,"2025":5570,"2030":5770,"2035":5940},"county":"Worcester","hh":{"2000":1889,"2010":2021,"2017":2160,"2020":2220,"2025":2300,"2030":2390,"2035":2470},"emp":{"2000":1220,"2010":600,"2017":600,"2020":600,"2025":600,"2030":600,"2035":600},"_id":"311","name":"Warren"},{"rpa":"FRCOG","pop":{"2000":750,"2010":780,"2017":800,"2020":800,"2025":820,"2030":840,"2035":845},"county":"Franklin","hh":{"2000":293,"2010":329,"2017":339,"2020":339,"2025":345,"2030":353,"2035":357},"emp":{"2000":166,"2010":66,"2017":64,"2020":66,"2025":67,"2030":69,"2035":70},"_id":"312","name":"Warwick"},{"rpa":"BRPC","pop":{"2000":544,"2010":538,"2017":540,"2020":541,"2025":542,"2030":544,"2035":545},"county":"Berkshire","hh":{"2000":203,"2010":225,"2017":225,"2020":225,"2025":225,"2030":226,"2035":226},"emp":{"2000":133,"2010":79,"2017":80,"2020":80,"2025":80,"2030":81,"2035":81},"_id":"313","name":"Washington"},{"rpa":"MAPC","pop":{"2000":32986,"2010":31915,"2017":32895,"2020":32739,"2025":32944,"2030":33148,"2035":33641},"county":"Middlesex","hh":{"2000":14629,"2010":14709,"2017":16223,"2020":16342,"2025":16720,"2030":17097,"2035":17345},"emp":{"2000":19621,"2010":18334,"2017":18851,"2020":19072,"2025":19072,"2030":19072,"2035":19072},"_id":"314","name":"Watertown"},{"rpa":"MAPC","pop":{"2000":13100,"2010":12994,"2017":13967,"2020":14138,"2025":14522,"2030":14905,"2035":15244},"county":"Middlesex","hh":{"2000":4625,"2010":4808,"2017":5330,"2020":5429,"2025":5629,"2030":5828,"2035":5960},"emp":{"2000":3885,"2010":2880,"2017":2985,"2020":3030,"2025":2937,"2030":2844,"2035":2813},"_id":"315","name":"Wayland"},{"rpa":"CMRPC","pop":{"2000":16415,"2010":16767,"2017":17130,"2020":17390,"2025":17750,"2030":17750,"2035":17850},"county":"Worcester","hh":{"2000":6905,"2010":7088,"2017":7220,"2020":7360,"2025":7550,"2030":7550,"2035":7610},"emp":{"2000":6286,"2010":6690,"2017":6900,"2020":7040,"2025":7160,"2030":7240,"2035":7300},"_id":"316","name":"Webster"},{"rpa":"MAPC","pop":{"2000":26613,"2010":27982,"2017":27589,"2020":27610,"2025":27839,"2030":28068,"2035":28302},"county":"Norfolk","hh":{"2000":8594,"2010":8695,"2017":9315,"2020":9361,"2025":9500,"2030":9641,"2035":9733},"emp":{"2000":19267,"2010":16735,"2017":17520,"2020":17856,"2025":17751,"2030":17646,"2035":17629},"_id":"317","name":"Wellesley"},{"rpa":"CCC","pop":{"2000":2749,"2010":2750,"2017":3230,"2020":3430,"2025":3760,"2030":4110,"2035":4450},"county":"Barnstable","hh":{"2000":1301,"2010":1366,"2017":1710,"2020":1850,"2025":2110,"2030":2350,"2035":2590},"emp":{"2000":1018,"2010":1070,"2017":1220,"2020":1320,"2025":1400,"2030":1490,"2035":1580},"_id":"318","name":"Wellfleet"},{"rpa":"FRCOG","pop":{"2000":986,"2010":848,"2017":870,"2020":880,"2025":890,"2030":910,"2035":920},"county":"Franklin","hh":{"2000":378,"2010":391,"2017":403,"2020":410,"2025":410,"2030":419,"2035":424},"emp":{"2000":187,"2010":148,"2017":149,"2020":152,"2025":155,"2030":158,"2035":162},"_id":"319","name":"Wendell"},{"rpa":"MAPC","pop":{"2000":4440,"2010":4875,"2017":5055,"2020":5163,"2025":5207,"2030":5252,"2035":5301},"county":"Essex","hh":{"2000":1285,"2010":1358,"2017":1341,"2020":1354,"2025":1384,"2030":1413,"2035":1433},"emp":{"2000":1287,"2010":1494,"2017":1518,"2020":1529,"2025":1505,"2030":1481,"2035":1478},"_id":"320","name":"Wenham"},{"rpa":"CMRPC","pop":{"2000":7481,"2010":7669,"2017":7950,"2020":8090,"2025":8300,"2030":8590,"2035":8860},"county":"Worcester","hh":{"2000":2413,"2010":2616,"2017":2620,"2020":2710,"2025":2800,"2030":2910,"2035":3010},"emp":{"2000":3618,"2010":3730,"2017":3850,"2020":3930,"2025":3990,"2030":4040,"2035":4070},"_id":"321","name":"West Boylston"},{"rpa":"OCPC","pop":{"2000":6634,"2010":6916,"2017":7125,"2020":7280,"2025":7293,"2030":7798,"2035":8316},"county":"Plymouth","hh":{"2000":2444,"2010":2571,"2017":2616,"2020":2694,"2025":2700,"2030":2936,"2035":3149},"emp":{"2000":6906,"2010":5860,"2017":6176,"2020":6424,"2025":6566,"2030":6707,"2035":6760},"_id":"322","name":"West Bridgewater"},{"rpa":"CMRPC","pop":{"2000":3804,"2010":3701,"2017":3790,"2020":3850,"2025":3930,"2030":4050,"2035":4160},"county":"Worcester","hh":{"2000":1362,"2010":1479,"2017":1460,"2020":1500,"2025":1530,"2030":1570,"2035":1630},"emp":{"2000":901,"2010":830,"2017":840,"2020":850,"2025":850,"2030":860,"2035":860},"_id":"323","name":"West Brookfield"},{"rpa":"MVPC","pop":{"2000":4149,"2010":4235,"2017":4450,"2020":4600,"2025":4900,"2030":5150,"2035":5400},"county":"Essex","hh":{"2000":1392,"2010":1508,"2017":1610,"2020":1680,"2025":1810,"2030":1930,"2035":2040},"emp":{"2000":705,"2010":739,"2017":776,"2020":786,"2025":792,"2030":798,"2035":804},"_id":"324","name":"West Newbury"},{"rpa":"PVPC","pop":{"2000":27899,"2010":28391,"2017":28932,"2020":29043,"2025":29195,"2030":29346,"2035":29450},"county":"Hampden","hh":{"2000":11823,"2010":12124,"2017":12642,"2020":12746,"2025":12898,"2030":13048,"2035":13150},"emp":{"2000":18497,"2010":16858,"2017":17249,"2020":17555,"2025":17640,"2030":17659,"2035":17677},"_id":"325","name":"West Springfield"},{"rpa":"BRPC","pop":{"2000":1416,"2010":1306,"2017":1311,"2020":1313,"2025":1317,"2030":1320,"2035":1324},"county":"Berkshire","hh":{"2000":601,"2010":593,"2017":596,"2020":596,"2025":599,"2030":601,"2035":603},"emp":{"2000":278,"2010":250,"2017":250,"2020":250,"2025":252,"2030":253,"2035":254},"_id":"326","name":"West Stockbridge"},{"rpa":"MVC","pop":{"2000":2467,"2010":2740,"2017":2867,"2020":2983,"2025":3099,"2030":3231,"2035":3314},"county":"Dukes","hh":{"2000":1034,"2010":1197,"2017":1259,"2020":1316,"2025":1381,"2030":1446,"2035":1495},"emp":{"2000":578,"2010":816,"2017":848,"2020":911,"2025":933,"2030":943,"2035":954},"_id":"327","name":"West Tisbury"},{"rpa":"CMRPC","pop":{"2000":17997,"2010":18272,"2017":18850,"2020":19190,"2025":19680,"2030":20370,"2035":21100},"county":"Worcester","hh":{"2000":6534,"2010":6924,"2017":7100,"2020":7380,"2025":7650,"2030":8070,"2035":8500},"emp":{"2000":25052,"2010":23610,"2017":24770,"2020":26320,"2025":26930,"2030":27390,"2035":27690},"_id":"328","name":"Westborough"},{"rpa":"PVPC","pop":{"2000":40072,"2010":41094,"2017":42367,"2020":42743,"2025":43326,"2030":43914,"2035":44437},"county":"Hampden","hh":{"2000":14797,"2010":15335,"2017":16172,"2020":16383,"2025":16754,"2030":17049,"2035":17370},"emp":{"2000":16281,"2010":16673,"2017":17012,"2020":17293,"2025":17343,"2030":17326,"2035":17309},"_id":"329","name":"Westfield"},{"rpa":"NMCOG","pop":{"2000":20754,"2010":21951,"2017":22850,"2020":23460,"2025":24320,"2030":25270,"2035":26240},"county":"Middlesex","hh":{"2000":6808,"2010":7498,"2017":8020,"2020":8310,"2025":8630,"2030":9050,"2035":9430},"emp":{"2000":11485,"2010":11681,"2017":13130,"2020":13640,"2025":14170,"2030":14850,"2035":15150},"_id":"330","name":"Westford"},{"rpa":"PVPC","pop":{"2000":1468,"2010":1607,"2017":1681,"2020":1706,"2025":1746,"2030":1787,"2035":1826},"county":"Hampshire","hh":{"2000":542,"2010":623,"2017":666,"2020":679,"2025":701,"2030":720,"2035":739},"emp":{"2000":238,"2010":290,"2017":297,"2020":303,"2025":306,"2030":307,"2035":308},"_id":"331","name":"Westhampton"},{"rpa":"MRPC","pop":{"2000":6907,"2010":7277,"2017":7390,"2020":7480,"2025":7600,"2030":7720,"2035":7850},"county":"Worcester","hh":{"2000":2529,"2010":2716,"2017":2770,"2020":2830,"2025":2900,"2030":2970,"2035":3030},"emp":{"2000":3641,"2010":2410,"2017":2460,"2020":2490,"2025":2520,"2030":2550,"2035":2580},"_id":"332","name":"Westminster"},{"rpa":"MAPC","pop":{"2000":11469,"2010":11261,"2017":13292,"2020":13348,"2025":13569,"2030":13790,"2035":14023},"county":"Middlesex","hh":{"2000":3718,"2010":3776,"2017":4810,"2020":4868,"2025":5007,"2030":5145,"2035":5236},"emp":{"2000":3006,"2010":4149,"2017":4204,"2020":4228,"2025":4092,"2030":3957,"2035":3946},"_id":"333","name":"Weston"},{"rpa":"SRPEDD","pop":{"2000":14183,"2010":15532,"2017":16130,"2020":16550,"2025":18430,"2030":19610,"2035":21450},"county":"Bristol","hh":{"2000":5386,"2010":6154,"2017":6470,"2020":6700,"2025":7480,"2030":8010,"2035":8800},"emp":{"2000":3032,"2010":3432,"2017":3160,"2020":3230,"2025":3310,"2030":3450,"2035":3480},"_id":"334","name":"Westport"},{"rpa":"MAPC","pop":{"2000":14117,"2010":14618,"2017":14758,"2020":14920,"2025":15497,"2030":16074,"2035":16553},"county":"Norfolk","hh":{"2000":5122,"2010":5249,"2017":5926,"2020":6060,"2025":6399,"2030":6737,"2035":6939},"emp":{"2000":10543,"2010":9796,"2017":10570,"2020":10902,"2025":11802,"2030":12703,"2035":12671},"_id":"335","name":"Westwood"},{"rpa":"MAPC","pop":{"2000":53988,"2010":53743,"2017":59027,"2020":61102,"2025":62069,"2030":63037,"2035":64343},"county":"Norfolk","hh":{"2000":22028,"2010":22435,"2017":25965,"2020":27138,"2025":28010,"2030":28882,"2035":29455},"emp":{"2000":16830,"2010":18275,"2017":21325,"2020":22631,"2025":22643,"2030":22655,"2035":22652},"_id":"336","name":"Weymouth"},{"rpa":"FRCOG","pop":{"2000":1573,"2010":1496,"2017":1540,"2020":1560,"2025":1570,"2030":1600,"2035":1610},"county":"Franklin","hh":{"2000":629,"2010":626,"2017":640,"2020":650,"2025":657,"2030":671,"2035":679},"emp":{"2000":2193,"2010":1025,"2017":1033,"2020":1053,"2025":1073,"2030":1096,"2035":1120},"_id":"337","name":"Whately"},{"rpa":"OCPC","pop":{"2000":13882,"2010":14489,"2017":14624,"2020":14755,"2025":14961,"2030":15155,"2035":15427},"county":"Plymouth","hh":{"2000":4999,"2010":5300,"2017":5336,"2020":5399,"2025":5475,"2030":5572,"2035":5789},"emp":{"2000":2953,"2010":3126,"2017":3268,"2020":3427,"2025":3502,"2030":3578,"2035":3608},"_id":"338","name":"Whitman"},{"rpa":"PVPC","pop":{"2000":13473,"2010":14219,"2017":14630,"2020":14747,"2025":14927,"2030":15108,"2035":15267},"county":"Hampden","hh":{"2000":4891,"2010":5309,"2017":5587,"2020":5655,"2025":5775,"2030":5868,"2035":5955},"emp":{"2000":4163,"2010":4493,"2017":4615,"2020":4704,"2025":4740,"2030":4758,"2035":4776},"_id":"339","name":"Wilbraham"},{"rpa":"PVPC","pop":{"2000":2427,"2010":2482,"2017":2569,"2020":2597,"2025":2640,"2030":2683,"2035":2723},"county":"Hampshire","hh":{"2000":1027,"2010":1118,"2017":1182,"2020":1199,"2025":1228,"2030":1252,"2035":1274},"emp":{"2000":509,"2010":553,"2017":568,"2020":579,"2025":583,"2030":586,"2035":588},"_id":"340","name":"Williamsburg"},{"rpa":"BRPC","pop":{"2000":8424,"2010":7754,"2017":7782,"2020":7794,"2025":7818,"2030":7836,"2035":7859},"county":"Berkshire","hh":{"2000":2753,"2010":2542,"2017":2554,"2020":2558,"2025":2567,"2030":2576,"2035":2585},"emp":{"2000":4315,"2010":4001,"2017":4007,"2020":4014,"2025":4033,"2030":4053,"2035":4073},"_id":"341","name":"Williamstown"},{"rpa":"MAPC","pop":{"2000":21363,"2010":22325,"2017":22675,"2020":22761,"2025":23333,"2030":23905,"2035":24514},"county":"Middlesex","hh":{"2000":7027,"2010":7532,"2017":8031,"2020":8151,"2025":8493,"2030":8834,"2035":9059},"emp":{"2000":21735,"2010":18939,"2017":19568,"2020":19837,"2025":19240,"2030":18644,"2035":18162},"_id":"342","name":"Wilmington"},{"rpa":"MRPC","pop":{"2000":9611,"2010":10300,"2017":10450,"2020":10580,"2025":10760,"2030":10930,"2035":11100},"county":"Worcester","hh":{"2000":3447,"2010":3810,"2017":3890,"2020":3970,"2025":4070,"2030":4170,"2035":4250},"emp":{"2000":1843,"2010":1650,"2017":1680,"2020":1700,"2025":1720,"2030":1740,"2035":1760},"_id":"343","name":"Winchendon"},{"rpa":"MAPC","pop":{"2000":20810,"2010":21374,"2017":21535,"2020":21512,"2025":21803,"2030":22094,"2035":22475},"county":"Middlesex","hh":{"2000":7715,"2010":7645,"2017":8634,"2020":8706,"2025":8941,"2030":9176,"2035":9331},"emp":{"2000":7641,"2010":8409,"2017":8709,"2020":8837,"2025":8822,"2030":8807,"2035":8805},"_id":"344","name":"Winchester"},{"rpa":"BRPC","pop":{"2000":875,"2010":899,"2017":902,"2020":904,"2025":906,"2030":908,"2035":911},"county":"Berkshire","hh":{"2000":328,"2010":369,"2017":371,"2020":371,"2025":371,"2030":372,"2035":374},"emp":{"2000":53,"2010":43,"2017":43,"2020":43,"2025":44,"2030":44,"2035":44},"_id":"345","name":"Windsor"},{"rpa":"MAPC","pop":{"2000":18303,"2010":17497,"2017":17630,"2020":17601,"2025":17665,"2030":17729,"2035":17911},"county":"Suffolk","hh":{"2000":7843,"2010":7783,"2017":8216,"2020":8272,"2025":8400,"2030":8528,"2035":8612},"emp":{"2000":2473,"2010":1885,"2017":1894,"2020":1898,"2025":1898,"2030":1898,"2035":1898},"_id":"346","name":"Winthrop"},{"rpa":"MAPC","pop":{"2000":37258,"2010":38120,"2017":38838,"2020":38736,"2025":39157,"2030":39578,"2035":40335},"county":"Middlesex","hh":{"2000":14997,"2010":15524,"2017":16916,"2020":17087,"2025":17609,"2030":18132,"2035":18475},"emp":{"2000":41217,"2010":38807,"2017":41073,"2020":42044,"2025":41815,"2030":41586,"2035":41495},"_id":"347","name":"Woburn"},{"rpa":"CMRPC","pop":{"2000":172648,"2010":181045,"2017":186220,"2020":189040,"2025":193010,"2030":198660,"2035":204010},"county":"Worcester","hh":{"2000":67028,"2010":68613,"2017":72670,"2020":74040,"2025":76040,"2030":78250,"2035":80750},"emp":{"2000":101386,"2010":95920,"2017":98950,"2020":102410,"2025":104120,"2030":105400,"2035":106250},"_id":"348","name":"Worcester"},{"rpa":"PVPC","pop":{"2000":1270,"2010":1156,"2017":1212,"2020":1232,"2025":1263,"2030":1295,"2035":1325},"county":"Hampshire","hh":{"2000":503,"2010":522,"2017":558,"2020":568,"2025":587,"2030":602,"2035":618},"emp":{"2000":197,"2010":193,"2017":198,"2020":202,"2025":204,"2030":204,"2035":205},"_id":"349","name":"Worthington"},{"rpa":"MAPC","pop":{"2000":10554,"2010":10955,"2017":11545,"2020":11660,"2025":12029,"2030":12400,"2035":12675},"county":"Norfolk","hh":{"2000":3402,"2010":3703,"2017":3859,"2020":3911,"2025":4060,"2030":4208,"2035":4306},"emp":{"2000":4887,"2010":6275,"2017":6456,"2020":6533,"2025":6357,"2030":6180,"2035":6142},"_id":"350","name":"Wrentham"},{"rpa":"CCC","pop":{"2000":24807,"2010":23793,"2017":24620,"2020":24980,"2025":25460,"2030":26150,"2035":26730},"county":"Barnstable","hh":{"2000":11520,"2010":11229,"2017":11380,"2020":11440,"2025":11630,"2030":11730,"2035":11820},"emp":{"2000":8799,"2010":8500,"2017":8840,"2020":9150,"2025":9230,"2030":9320,"2035":9410},"_id":"351","name":"Yarmouth"}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment