Skip to content

Instantly share code, notes, and snippets.

@shawnbot
Last active August 29, 2015 13:56
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 shawnbot/9240915 to your computer and use it in GitHub Desktop.
Save shawnbot/9240915 to your computer and use it in GitHub Desktop.
Uniformly scaled geo thumbnails

This example shows how to use d3 to create uniformly scaled geographic feature thumbnails. There are two interesting features of SVG at play here:

  1. The viewBox attribute is used to "zoom in" to the individual states.
  2. The use element is used to redraw a common background states path into each thumbnail, reducing DOM overhead.

The other nice thing here is that we didn't have to define the SVG elements' size in JavaScript, so they can be sized exclusively in CSS. The viewBox attribute tells the browser to fit the given rectangle within the SVG element's bounds. You can also use the preserveAspectRatio attribute to change how the viewBox fits within its bounds.

<!DOCTYPE html>
<html>
<head>
<title>d3 geo thumbnails</title>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<style>
svg.thumb {
width: 90px;
height: 94px;
display: block;
float: left;
margin: 5px 0 0 5px;
}
path {
vector-effect: non-scaling-stroke;
stroke-width: 1;
}
.thumb .bg,
.thumb use {
fill: #ddd;
stroke: #ccc;
}
.thumb .fg {
fill: #8cba3d;
stroke: none;
}
</style>
</head>
<body>
<div id="thumbnails"></div>
<svg id="shared">
</svg>
<script>
var root = d3.select("#thumbnails"),
proj = d3.geo.albersUsa(),
path = d3.geo.path()
.projection(proj),
// how much space to give the features from
// the edge of their container
margin = 10;
d3.json("us-states.json", function(error, topology) {
var collection = topojson.feature(topology, topology.objects["states"]);
// draw the whole collection once to a path in the shared <defs>
d3.select("#shared")
.append("defs")
.append("path")
.datum(collection)
.attr("id", "states-bg")
.attr("d", path);
// sort the states by name
collection.features.sort(function(a, b) {
return d3.ascending(a.properties.name, b.properties.name);
});
// filter out the territories & DC
var states = collection.features.filter(function(d) {
return +d.id <= 70 && d.id != 11;
});
var svg = root.selectAll(".thumb")
.data(states)
.enter()
.append("svg")
.attr("id", function(d) {
return d.properties.name;
})
.attr("class", "thumb")
.attr("viewBox", function(d) {
// get the projected bounds
var bounds = path.bounds(d),
width = bounds[1][0] - bounds[0][0],
height = bounds[1][1] - bounds[0][1],
// get the proportion of the bounds' longest side
// to the container's shortest side
scale = Math.max(width, height) / Math.min(this.offsetWidth, this.offsetHeight),
// and multiply the desired margin by this
m = margin * scale;
return [
bounds[0][0] - m,
bounds[0][1] - m,
width + m * 2,
height + m * 2
].join(" ");
});
// place the shared states path here
svg.append("use")
.attr("xlink:href", "#states-bg");
// and draw the individual states on top
svg.append("path")
.attr("class", "fg")
.attr("d", path);
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"states":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","id":"02","properties":{"name":"Alaska"},"arcs":[[[0]],[[1]],[[2]],[[-4,4,-6,6,7,8,9,-11,11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22,23,-25,25]],[[26]],[[27]],[[28]],[[29]],[[30,31]],[[32,33]],[[34]],[[35]],[[36]],[[-38,38]],[[39,40,41]],[[42]],[[43,-40,44]],[[45,46,47,48]],[[49,50,51]],[[-31,52,53,54,55,56,57,58]],[[59]],[[60,61,62,63,64,65,66,67,68,69]],[[70]],[[71,72,73,74,75,76,77,78,79,80]],[[81,82,83,84]],[[85,-79,86,87,-76,88,-74,89,-72,90,-84,91,92,93]],[[94,95]],[[96]],[[97,98,99,100,101,102]],[[103,104,105,-107,107,-109,109]],[[110,111,112,113,114,115,116,117]],[[118,119,120]],[[121,-101,122,123,124,125,126,127,-115,128,129,130,-111,110,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,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,-173,198,199,200,-169,201]],[[202,203,204,205,206,207,208,209,210,211,-212,-211,212,213,214,215,216,217,218,219,220,221,222,-182,223,-224,224,-179,225,-177,226,227,228]],[[229]],[[-231,231,232,233,234,235,236,237,238,239,240,241,242,-164,243,-162,244,245,-159,246,-157,247,-155,248,-153,249,-151,250,-149,251,252,-146,253,254,255,256,-195,257,-193,258,259,260,261,-188,262,263,264,265,266,267,-218,268,269,-215,270,271,211,272,-210,273,-208,274,275,-205,276,277,278,-68,279,-66,280,281,282,283,284,-286,286,-288,288,289,-291,291,-293,293]]]},{"type":"MultiPolygon","id":"15","properties":{"name":"Hawaii"},"arcs":[[[294]],[[295]],[[296]],[[297]],[[298]],[[299]],[[300]]]},{"type":"MultiPolygon","id":"72","properties":{"name":"Puerto Rico"},"arcs":[[[301]]]},{"type":"Polygon","id":"01","properties":{"name":"Alabama"},"arcs":[[302,303,304,305,306,-307,306,307,308,309,310,311,312,313,314,315]]},{"type":"Polygon","id":"05","properties":{"name":"Arkansas"},"arcs":[[316,317,-318,317,318,319,320,321,322,323,324,-325,324,325,326,327,328,329,-330,330,331,332,333,-334,334,335,336,337,338,339,340,-341,340,341,342,343,344,345,346,347,348,349,350,-351,351,352,353,354,355,356,357,-358,357,358,359,360,361,362,-361,363,364,365,366,367,-368,368,369,370,371,372,-373,372,373,374,-375,374,-375,374,375,376,377,-378,377,378,379]]},{"type":"Polygon","id":"04","properties":{"name":"Arizona"},"arcs":[[380,381,382,383,384,385,386,387,388,389,390,391,392,393]]},{"type":"MultiPolygon","id":"06","properties":{"name":"California"},"arcs":[[[394]],[[395]],[[396]],[[397]],[[398,-389,-388,-387,-386,-385,-384,-383,399,400]]]},{"type":"Polygon","id":"08","properties":{"name":"Colorado"},"arcs":[[401,402,403,404,405,406]]},{"type":"Polygon","id":"09","properties":{"name":"Connecticut"},"arcs":[[407,408,409,410,-411,411,-412,410,412,-413,-411,411,413,414]]},{"type":"Polygon","id":"11","properties":{"name":"District of Columbia"},"arcs":[[415,416,417,418,419,420,-421,420,-421,420,421,422,423,424,425,-416]]},{"type":"Polygon","id":"10","properties":{"name":"Delaware"},"arcs":[[426,427,428,429,430,431,432,433,-427]]},{"type":"MultiPolygon","id":"12","properties":{"name":"Florida"},"arcs":[[[434,435,436,437,438,439,440,-441,441,442,443,444,445,446,447,448,449,450,451]],[[-453,453,-455,454,-455,454,455,-457,-458,458,459,460,-312,461,462,-309,-308,-307,306,-307,-306,-305,463,464,-465,464,465,466,467,468,-469,468,469,470,-471,470,471,472,-473,472,473,474,-475,474,475,476,477,478,479,480,-481,480,-481,481,482,483,484,485,486,487,-486,485,488,489,490,491,492,-493,492,493,494,495,496,-498,498,499,-501,501,502,-504,504,505,-507,507,508,-510,-511,511,-513,513,514,-516,516,517,518,438,-439,519,520,521,-435,434,-522,522,-451,523,-449,448,-524,524,525,526,527,-444,528,-442,440,529]]]},{"type":"MultiPolygon","id":"13","properties":{"name":"Georgia"},"arcs":[[[530,531,532,533,534,535,536,537,538]],[[-540,540,541,-543,543,-545,545,546,537,-538,-537,547,-535,-534,548,-532,-531,549,-551,551,-553,553,-555,555,-557,557,558,559,560,494,-495,494,-495,-494,-493,492,-493,-492,-491,-490,-489,-486,485,-488,-487,-486,-485,-484,-483,-482,480,-481,480,-481,-480,-479,-478,-477,-476,-475,474,-475,-474,-473,472,-473,-472,-471,470,-471,-470,-469,468,-469,-468,-467,-466,-465,464,-465,-464,-304,-303,561,562,563,564,-565,564,565,-566,565,566,-567,566,567,568,-569,568,569,570,571,572,573,-574,574,575,576,-577,576,577,578,579,580,581,582,583,584,585,586,-587,586,587,588,589,-590,589,590,591,-592,591,-592,592,593,594,-595,594,595,596,597,598,599,600,-601,600,601,602,603,604,605,606,-607,607,608,-609,608,609,610,-611,610,611,612,-613,612,613,614,-615,614,615,616,-617,616,617,618,-619,618,619,620,-621,620,621,622,-623,622,623,624,625,626,627,-628,627,628,629,-630,629,630,-631,630,631,632,-633,633,634,635,-636,635,636,637,638,639,640,-638,637,641,642,-644,-645,645,-647,647,-649,649,-651,651,-653,653]]]},{"type":"Polygon","id":"19","properties":{"name":"Iowa"},"arcs":[[654,655,656,657,658,659,-660,660,661,-662,661,662,663,-664,663,664,-665,664,665,666,667,668,669,-670,670,671,672,673,674,675,676,677,678,679,-680,679,680,681,682,683,684,-685,684,685,686,687]]},{"type":"Polygon","id":"16","properties":{"name":"Idaho"},"arcs":[[688,689,690,691,-692,691,692,693,694,695,-696,695,696,697,698,699,700,701,-702,701,702,703,704,705,706,707,-708,707,708,709,710,711,712,-713,712,713,714,715,-716,715,716,717,-718,717,718,-719,718,719,720,721,722,723,-724,723,724,725,726,727,728,-729,728,729,730,731,732,733,-734,733,734,735,736,-737,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,-752,751,752,753,-754,753,754,755,756,757,758,-759,759,760,761,762,763,764,765,766,767,-768,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790]]},{"type":"Polygon","id":"17","properties":{"name":"Illinois"},"arcs":[[791,792,793,794,795,796,797,-798,797,798,799,-800,799,800,801,802,803,804,805,806,807,-805,808,-807,809,810,-811,810,811,812,813,814,815,816,817,818,-819,818,819,820,821,822,823,824,825,826,-827,826,827,-828,-827,826,827,828,829,830,831,832,833,834,835,836,-835,837,838,839,-840,839,840,841,-660,-659,-658,-657,842]]},{"type":"Polygon","id":"18","properties":{"name":"Indiana"},"arcs":[[843,844,845,846,847,848,849,850,851,852,853,854,855,856,-857,856,857,858,859,-860,859,860,861,862,-863,862,863,864,865,866,-825,-824,-823,-822,-821,-820,-819,818,-819,-818,-817,-816,-815,-814,-813,-812,-811,810,-811,-810,806,-809,804,-808,-807,-806,-805,-804,-803,-802,-801,-800,799,-800,-799,-798,797,-798,-797,-796,-795,-794,-793,867,868]]},{"type":"Polygon","id":"20","properties":{"name":"Kansas"},"arcs":[[869,870,-871,870,871,872,873,874,875,876,877,878,879,880,-403,881,882]]},{"type":"Polygon","id":"21","properties":{"name":"Kentucky"},"arcs":[[883,884,885,886,-887,886,887,888,-889,888,889,890,891,-892,891,892,893,894,895,-896,895,896,897,898,899,-900,900,901,902,-903,902,903,904,905,-906,905,-906,905,906,907,-908,907,908,909,-910,909,910,911,-912,911,912,913,914,915,-916,915,916,917,918,-919,918,919,920,-921,920,921,922,923,924,925,-926,925,-926,925,926,927,928,929,930,931,932,933,-836,-835,-834,-833,-832,-831,-830,-829,-828,-827,826,827,-828,-827,826,-827,-826,-867,-866,-865,-864,-863,862,-863,-862,-861,-860,859,-860,-859,-858,-857,856,-857,-856,-855,-854,-853,-852,-851,-850,-849,-848,-847,-846,-845,934,935,936,-937,936,937,938]]},{"type":"MultiPolygon","id":"22","properties":{"name":"Louisiana"},"arcs":[[[939,940,941]],[[-943,943,-945,945,946,947,-940,948,949,950,-951,950,951,952,953,954,-955,954,955,956,-957,956,957,-958,957,958,959,-960,959,960,-961,960,961,962,963,964,965,-966,965,966,967,-968,967,968,969,-970,969,970,971,972,-973,972,973,974,975,-976,975,976,977,-978,977,978,979,980,-981,980,981,982,983,984,-985,984,-985,984,985,986,987,988,-989,988,989,990,-991,990,991,992,993,994,-995,994,995,996,-997,996,-997,997,998,-999,998,999,1000,-1001,1000,1001,1002,-1003,1002,1003,-356,1004,1005,1006,1007,1008,-1009,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,-1021,1020,1021,1022,1023,1024,1025,1026,-1027,1026,1027,1028,-1029,1028,1029,1030,-1031,1031,1032,1033,1034,1035,1036,-1037,1037,1038,-1039,1038,1039,1040,-1041,-1040,1039,1041,1042,1043,-1044,1043,1044,1045,-1046,1045,1046,1047,-1048,1047,1048,1049,-1050,1049,1050,1051,-1052,1051,1052,1053,1054,-1055,1054,1055,1056,-1057,1056,1057,1058,-1059,1059,1060,1061,-1062,1061,-1062,1061,1062,1063,-1064,1063,1064,1065,-1066,1065,1066,1067,-1068,1067,1068,1069,-1070,1069,-1070,1069,1070,1071,-1072,1071,1072,1073,1074]]]},{"type":"MultiPolygon","id":"25","properties":{"name":"Massachusetts"},"arcs":[[[1075]],[[1076]],[[1077,1078,1079,1080,1081,1082,1083,1084,1085,-415,1086,1087,1088,1089,1090,1091,1092]]]},{"type":"MultiPolygon","id":"24","properties":{"name":"Maryland"},"arcs":[[[1093,1094,1095,1096,-1098,1097,-1098,1097,-1098,1097,1098,1099,1100,1101,1102,1103,415,-426,1104,1105,-1106,1105,1106,1107,-1108,1107,1108,1109,-1110,1109,1110,1111,-1112,1111,1112,1113,1114,1115,1116,1117,1118,1119,-1120,1120,1121,1122,1123,1124,1125,1126,1127,1128,-1129,1128,1129,1130,1131,1132,1133,-1134,1133,1134,1135,-1136,1135,1136,1137,1138,1139,1140,1141,1142,1143,-1138,1144,1145,-1146,1145,1146,1147,1148,-1149,1148,1149,1150,1151,-1152,1151,1152,1153,1154,1155,-1156,1155,1156,1157,-1158,1157,1158,1159,1160,1161,1162,1163,-433,1164]]]},{"type":"MultiPolygon","id":"23","properties":{"name":"Maine"},"arcs":[[[1165]],[[1166,-1167,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181]]]},{"type":"MultiPolygon","id":"26","properties":{"name":"Michigan"},"arcs":[[[1182]],[[1183,-869,1184]],[[1185]],[[1186,1187,1188,-1189,1189,1190,1191,1192,1193,1194,1195,-1197,1197,1198,-1199,1198,-1199,1199,1200,1201,1202,-1203,1203,1204,1205,1206,-1207,1206,1207,1208,-1209,1208,1209,1210,1211,1212,1213,1214,1215,-1216,1215,1216,1217,-1218,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,-1227,1226,1227,1228,1229,1230,1231,-1232,1231,-1229,1232,1233,1234,1235,1236,1237,1238,-1239,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254]],[[1192,-1193,-1192,1255,-1190,1188,1256,-1187,1257,-1254,1258,-1252,1259,-1250,1260,-1248,1261,-1246,-1245,1262,-1243,1263]],[[1264]]]},{"type":"Polygon","id":"27","properties":{"name":"Minnesota"},"arcs":[[1265,1266,-1267,1267,1268,-1269,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,-1279,1278,1279,1280,-1281,1280,1281,1282,1283,1284,1285,1286,-688,1287,1288,1289,-1290,1289,1290,1291,1292,-1293,1293,1294,1295,-1296,1295,1296,-1297,1296,1297,1298,-1299,1298,1299,-1300,1299,1300,1301,-1302,1301,1302,1303,-1304,1303,1304,1305,-1306,1306,1307,-1308,1308,1309,1310,1311,1312,-1313,1312,1313,1314,-1315,1314,1315,1316,1317,1318,1319,1320,1321,-1322,1322,1323,1324,-1325,-1324,1323,1325,1326,1327,-1328,1328,1329,1330,1331,1332,-1333,1332,1333,1334,-1335,1334,1335,1336,-1337,1336,-1337,1337,1338,-1339,1338,1339,1340,1341,1342,-1343,1342,1343,-1344,1343,1344,1345,1346,-1347,1347,1348,-1349,1348,1349,-1350,1349,1350,-1351,1350,1351,1352,-1353,1352,1353,1354,-1355,1354,1355,-1356,1355,1356,1357,1358,-1359,1358,1359,1360,-1361,1360,1361,1362,-1363,1362,1363,1364,1365,-1366,1366,-1367,1366,1367,1368,1369,1370,1371,1372,-1373,1372,1373,1374,1375,-1376,1376,1377,1378,1379,-1380,1379,1380,1381,-1382,1382,1383,1384,-1385,1384,1385,1386,-1387,1386,1387,1388,-1389,1388,1389,1390,-1391,1390,1391,1392,1393,-1394,1394,1395,-1396,1395,1396,1397,1398,1399,-1400,1400,1401,1402,-1403,1403,1404,1405,1406,-1407,1407,1408,-1409,1408,1409,1410,-1411,1410,1411,1412,-1413,1412,1413,1414,-1415,1415,1416,1417,1418,1419,1420]]},{"type":"Polygon","id":"29","properties":{"name":"Missouri"},"arcs":[[-842,-841,-840,839,-840,-839,-838,834,-837,-934,1421,1422,1423,-380,-379,-378,377,-378,-377,-376,-375,374,-375,374,-375,-374,-373,372,-373,-372,1424,-880,-879,-878,-877,-876,-875,-874,-873,-872,-871,870,-871,-870,1425,1426,-666,-665,664,-665,-664,663,-664,-663,-662,661,-662,-661,659]]},{"type":"Polygon","id":"28","properties":{"name":"Mississippi"},"arcs":[[-315,1427,-1074,1073,-1074,1073,-1074,-1073,-1072,1071,-1072,-1071,-1070,1069,-1070,1069,-1070,-1069,-1068,1067,-1068,-1067,-1066,1065,-1066,-1065,-1064,1063,-1064,-1063,-1062,1061,-1062,1061,-1062,-1061,-1060,1058,-1059,-1058,-1057,1056,-1057,-1056,-1055,1054,-1055,-1054,-1053,-1052,1051,-1052,-1051,-1050,1049,-1050,-1049,-1048,1047,-1048,-1047,-1046,1045,-1046,-1045,-1044,1043,-1044,-1043,-1042,-1040,1039,1040,-1041,-1040,-1039,1038,-1039,-1038,1036,-1037,-1036,-1035,-1034,-1033,-1032,1030,-1031,-1030,-1029,1028,-1029,-1028,-1027,1026,-1027,-1026,-1025,-1024,-1023,-1022,-1021,1020,-1021,-1020,-1019,-1018,-1017,-1016,-1015,-1014,-1013,-1012,-1011,-1010,1008,-1009,-1008,-1007,-1006,-1005,-355,-354,-353,-352,350,-351,-350,-349,-348,-347,-346,-345,-344,-343,-342,-341,340,-341,-340,-339,-338,-337,-336,-335,333,-334,-333,-332,-331,329,-330,-329,-328,-327,1428]]},{"type":"Polygon","id":"30","properties":{"name":"Montana"},"arcs":[[1429,1430,1431,1432,-1433,1432,1433,-776,-775,-774,-773,-772,-771,-770,-769,-768,767,-768,-767,-766,-765,-764,-763,-762,-761,-760,758,-759,-758,-757,-756,-755,-754,753,-754,-753,-752,751,-752,-751,-750,-749,-748,-747,-746,-745,-744,-743,-742,-741,-740,-739,-738,-737,736,-737,-736,-735,-734,733,-734,-733,-732,-731,-730,-729,728,-729,-728,-727,-726,-725,-724,723,-724,-723,-722,-721,-720,-719,718,-719,-718,717,-718,-717,-716,715,-716,-715,-714,-713,712,-713,-712,-711,-710,-709,-708,707,-708,-707,-706,-705,-704,-703,-702,701,-702,-701,-700,-699,-698,-697,-696,695,-696,-695,-694,-693,-692,691,-692,-691,-690,-689,1434]]},{"type":"MultiPolygon","id":"37","properties":{"name":"North Carolina"},"arcs":[[[1435,1436,-1437,1436,1437,1438,1439,1440,1441,1442,1443,-1444,1443,1444,1445,-1446,1445,1446,1447,1448,-1449,1448,1449,1450,-1451,1450,1451,1452,-563,1453,1454,1455,1456,-1457,1456,1457,1458,1459,-1460,1459,1460,1461,1462,1463,1464,-1465,1464,1465,1466,1467,-1468,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,-1477,1476,1477,1478,1479,1480,1481,1482,1483]]]},{"type":"Polygon","id":"38","properties":{"name":"North Dakota"},"arcs":[[-1420,-1419,-1418,-1417,-1416,1414,-1415,-1414,-1413,1412,-1413,-1412,-1411,1410,-1411,-1410,-1409,1408,-1409,-1408,1406,-1407,-1406,-1405,-1404,1402,-1403,-1402,-1401,1399,-1400,-1399,-1398,-1397,-1396,1395,-1396,-1395,1393,-1394,-1393,-1392,-1391,1390,-1391,-1390,-1389,1388,-1389,-1388,-1387,1386,-1387,-1386,-1385,1384,-1385,-1384,-1383,1381,-1382,-1381,-1380,1379,-1380,-1379,-1378,-1377,1375,-1376,-1375,-1374,-1373,1372,-1373,-1372,-1371,-1370,-1369,-1368,-1367,1366,-1367,1365,-1366,-1365,-1364,-1363,1362,-1363,-1362,-1361,1360,-1361,-1360,-1359,1358,-1359,-1358,-1357,-1356,1355,-1356,-1355,1354,-1355,-1354,-1353,1352,-1353,-1352,-1351,1350,-1351,-1350,1349,-1350,-1349,1348,-1349,-1348,1346,-1347,-1346,-1345,-1344,1343,-1344,-1343,1342,-1343,-1342,-1341,-1340,-1339,1338,-1339,-1338,1336,-1337,1336,-1337,-1336,-1335,1334,-1335,-1334,-1333,1332,-1333,-1332,-1331,-1330,-1329,1327,-1328,-1327,-1326,-1324,1323,1324,-1325,-1324,-1323,1321,-1322,-1321,-1320,-1319,-1318,-1317,-1316,-1315,1314,-1315,-1314,-1313,1312,-1313,-1312,-1311,-1310,-1309,1307,-1308,-1307,1305,-1306,-1305,-1304,1303,-1304,-1303,-1302,1301,-1302,-1301,-1300,1299,-1300,-1299,1298,-1299,-1298,-1297,1296,-1297,-1296,1295,-1296,-1295,-1294,1292,-1293,-1292,-1291,-1290,1289,-1290,-1289,1484,1485,-1486,1485,1486,1487,1488,-1430,1489]]},{"type":"Polygon","id":"31","properties":{"name":"Nebraska"},"arcs":[[-677,-676,-675,-674,-673,-672,-671,669,-670,-669,-668,-667,-1427,-1426,-883,-882,-402,1490,1491,1492,1493,1494,1495]]},{"type":"Polygon","id":"33","properties":{"name":"New Hampshire"},"arcs":[[1496,1497,1174,-1175,1498,-1171,1499,-1169,1500,1166,1501,-1092,-1091,-1090,-1089,1502,1503,-1504,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,-1514,1513,1514,1515,1516,1517,1518,-1519,1518,1519,1520,1521,1179,-1180,-1179,-1178,-1177,-1176,-1175,-1174]]},{"type":"Polygon","id":"34","properties":{"name":"New Jersey"},"arcs":[[-431,1522,-429,1523,1524,1525,1526,1527,1528,-1529,1528,1529,1530,1531,1532,1533,-1534,1533,1534,1535,1536,-1537,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561]]},{"type":"Polygon","id":"35","properties":{"name":"New Mexico"},"arcs":[[1562,1563,1564,-1565,1564,1565,1566,1567,-1568,1567,1568,1569,1570,-381,-405]]},{"type":"Polygon","id":"32","properties":{"name":"Nevada"},"arcs":[[1571,-393,-392,-391,-390,-399,1572,-779]]},{"type":"MultiPolygon","id":"36","properties":{"name":"New York"},"arcs":[[[1573,1574,1575,-1561,-1560,1576,-1558,1577,-1556,1578,1579,1580,1551,1581,1582]],[[-1575,1583,1584,1585,1586,1587,-1588,1587,1588,1589,1590]],[[1591,-1589,1588,-1589,-1588,1592,-1586,1593,1594,-1548,1595,1596,-1545,1597,-1543,1598,-1541,-1540,1599,1600,1601,1602,1603,-1604,1603,1604,1605,-1606,1605,1606,1607,-1608,1607,1608,1609,1610,1611,1612,-1613,1612,1613,1614,1615,1616,1617,1618,1619,-1620,1619,-1620,1619,1620,1621,-1087,-414,-412,410,412,1622]]]},{"type":"Polygon","id":"39","properties":{"name":"Ohio"},"arcs":[[1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,-884,-939,-938,-937,936,-937,-936,-935,844,-845,-844,-1184,1633,1634]]},{"type":"Polygon","id":"40","properties":{"name":"Oklahoma"},"arcs":[[-1425,-371,1635,1636,-1637,1637,1638,1637,1639,1640,1636,1641,1642,1643,1644,-1645,1645,1646,1647,1648,1649,1650,1651,1652,-1651,1653,1654,1655,-1656,1656,1657,-1658,1658,1659,1660,1661,1662,1663,-1664,1664,-1662,1665,1666,1667,1668,-1669,1669,-1670,1670,1671,-1669,1669,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,-1691,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,-1702,1704,1705,1706,1707,-1708,1707,1708,1709,1710,1711,-1712,1711,1712,1713,-1714,1713,1714,1715,1716,-1717,1716,1717,1718,-1719,1718,1719,1720,-1721,1720,1721,1722,1723,1724,1725,-1726,1725,1726,1727,1728,1729,-1730,1729,1730,1731,1732,1733,-1734,1733,1734,1735,-1736,1735,1736,1737,1738,1739,-1740,1739,1740,1741,1742,1743,1744,-1563,-404,-881]]},{"type":"Polygon","id":"41","properties":{"name":"Oregon"},"arcs":[[1745,1746,1747,1748,-789,-788,-787,-786,-785,-784,-783,-782,-781,-780,-1573,-401,1749]]},{"type":"Polygon","id":"42","properties":{"name":"Pennsylvania"},"arcs":[[-1539,-1538,-1537,1536,-1537,-1536,-1535,-1534,1533,-1534,-1533,-1532,1750,1751,-1529,1752,-1527,1753,1754,1755,426,-434,-1164,1756,-1624,-1635,1757,-1614,-1613,1612,-1613,-1612,-1611,-1610,-1609,-1608,1607,-1608,-1607,-1606,1605,-1606,-1605,-1604,1603,-1604,-1603,-1602,-1601,-1600]]},{"type":"MultiPolygon","id":"44","properties":{"name":"Rhode Island"},"arcs":[[[1082,1758,1759,1760,1761,-409,-408,-1086,-1085,-1084,-1083]]]},{"type":"MultiPolygon","id":"45","properties":{"name":"South Carolina"},"arcs":[[[1762,1763,1764,1765,1766,1767,1768,1769,1770]],[[1771,1772,1773,1774,-1770,1775,-1768,1776,-1766,-1765,1777,-1763,1778,1779,1780,1781,1782,-1772]],[[-1774,1783,1771,1784,-1782,1785,1786,1787,1788,-1790,1790,-1792,1792,1793,-640,1794,637,-638,-637,-636,635,-636,-635,-634,632,-633,-632,-631,630,-631,-630,629,-630,-629,-628,627,-628,-627,-626,-625,-624,-623,622,-623,-622,-621,620,-621,-620,-619,618,-619,-618,-617,616,-617,-616,-615,614,-615,-614,-613,612,-613,-612,-611,610,-611,-610,-609,608,-609,-608,606,-607,-606,-605,-604,-603,-602,-601,600,-601,-600,-599,-598,-597,-596,-595,594,-595,-594,-593,591,-592,591,-592,-591,-590,589,-590,-589,-588,-587,586,-587,-586,-585,-584,-583,-582,-581,-580,-579,-578,-577,576,-577,-576,-575,573,-574,-573,-572,-571,-570,-569,568,-569,-568,-567,566,-567,-566,565,-566,-565,564,-565,-564,-1453,-1452,-1451,1450,-1451,-1450,-1449,1448,-1449,-1448,-1447,-1446,1445,-1446,-1445,-1444,1443,-1444,-1443,-1442,-1441,-1440,-1439,-1438,-1437,1795,1796,-1797,1797]]]},{"type":"Polygon","id":"46","properties":{"name":"South Dakota"},"arcs":[[-1288,-687,-686,-685,684,-685,-684,-683,-682,-681,-680,679,-680,-679,-678,-1496,-1495,-1494,-1493,-1492,1798,-1431,-1489,-1488,-1487,-1486,1485,-1486,-1485]]},{"type":"Polygon","id":"47","properties":{"name":"Tennessee"},"arcs":[[1799,-1481,-1480,-1479,-1478,-1477,1476,-1477,-1476,-1475,-1474,-1473,-1472,-1471,-1470,-1469,-1468,1467,-1468,-1467,-1466,-1465,1464,-1465,-1464,-1463,-1462,-1461,-1460,1459,-1460,-1459,-1458,-1457,1456,-1457,-1456,-1455,-1454,-562,-316,-1429,-326,-325,324,-325,-324,-323,-322,-321,-320,-319,-318,317,-318,-317,-1424,1800,-1422,-933]]},{"type":"MultiPolygon","id":"48","properties":{"name":"Texas"},"arcs":[[[1801]],[[1802,-1570,-1569,-1568,1567,-1568,-1567,-1566,-1565,1564,-1565,-1564,-1745,-1744,-1743,-1742,-1741,-1740,1739,-1740,-1739,-1738,-1737,-1736,1735,-1736,-1735,-1734,1733,-1734,-1733,-1732,-1731,-1730,1729,-1730,-1729,-1728,-1727,-1726,1725,-1726,-1725,-1724,-1723,-1722,-1721,1720,-1721,-1720,-1719,1718,-1719,-1718,-1717,1716,-1717,-1716,-1715,-1714,1713,-1714,-1713,-1712,1711,-1712,-1711,-1710,-1709,-1708,1707,-1708,-1707,-1706,-1705,1701,-1704,-1703,-1702,-1701,-1700,-1699,-1698,-1697,-1696,-1695,-1694,-1693,-1692,-1691,1690,-1691,-1690,-1689,-1688,-1687,-1686,-1685,-1684,-1683,-1682,-1681,-1680,-1679,-1678,-1677,-1676,-1675,-1674,-1673,-1670,1668,-1672,-1671,1669,-1670,1668,-1669,-1668,-1667,-1666,1661,-1665,1663,-1664,-1663,-1662,-1661,-1660,-1659,1657,-1658,-1657,1655,-1656,-1655,-1654,1650,-1653,-1652,-1651,-1650,-1649,-1648,-1647,-1646,1644,-1645,-1644,-1643,-1642,-1637,-1641,-1640,-1638,-1639,-1638,1636,-1637,-1636,-370,-369,367,-368,-367,-366,-365,-364,360,-363,-362,-361,-360,-359,-358,357,-358,-357,-1004,-1003,1002,-1003,-1002,-1001,1000,-1001,-1000,-999,998,-999,-998,996,-997,996,-997,-996,-995,994,-995,-994,-993,-992,-991,990,-991,-990,-989,988,-989,-988,-987,-986,-985,984,-985,984,-985,-984,-983,-982,-981,980,-981,-980,-979,-978,977,-978,-977,-976,975,-976,-975,-974,-973,972,-973,-972,-971,-970,969,-970,-969,-968,967,-968,-967,-966,965,-966,-965,-964,-963,-962,-961,960,-961,-960,959,-960,-959,-958,957,-958,-957,956,-957,-956,-955,954,-955,-954,-953,-952,-951,950,-951,-950,1803]]]},{"type":"Polygon","id":"49","properties":{"name":"Utah"},"arcs":[[1804,-406,-394,-1572,-778]]},{"type":"MultiPolygon","id":"51","properties":{"name":"Virginia"},"arcs":[[[-1096,1805,-1094,1806]],[[1807,1808,-1483,-1482,-1800,-932,-931,-930,-929,-928,-927,-926,925,-926,925,-926,-925,-924,-923,-922,-921,920,-921,-920,-919,918,-919,-918,-917,-916,915,-916,-915,-914,1809,1810,-1811,1810,1811,1812,-1813,1812,1813,1814,1815,1816,-1817,1816,1817,1818,1819,-1820,1819,-1820,1819,1820,1821,1822,1823,-1824,1823,1824,1825,1826,1827,-1828,1827,1828,1829,-1830,1829,1830,1831,-1832,1831,1832,1833,1834,1835,1109,-1110,-1109,-1108,1107,-1108,-1107,-1106,1105,-1106,-1105,-425,1836,-423,1837,-421,-420,1838,-418,-417,-416,-1104,1839,1840,1841,-1100,1842]]]},{"type":"Polygon","id":"50","properties":{"name":"Vermont"},"arcs":[[-1521,-1520,-1519,1518,-1519,-1518,-1517,-1516,-1515,-1514,1513,-1514,-1513,-1512,-1511,-1510,-1509,-1508,-1507,-1506,-1505,-1504,1503,-1504,-1503,-1088,-1622,-1621,-1620,1619,-1620,1619,-1620,-1619,-1618,-1617,-1616,1843]]},{"type":"MultiPolygon","id":"53","properties":{"name":"Washington"},"arcs":[[[1844,1845]],[[-790,-1749,-1748,-1747,-1746,1846,1847,1848,-1850,1850,1851,1852,1853,1854]]]},{"type":"Polygon","id":"55","properties":{"name":"Wisconsin"},"arcs":[[-1241,-1240,-1239,1238,-1239,-1238,-1237,-1236,-1235,-1234,-1233,1228,-1232,1231,-1232,-1231,-1230,-1229,-1228,-1227,1226,-1227,-1226,-1225,-1224,-1223,-1222,-1221,-1220,-1219,-1218,1217,-1218,-1217,-1216,1215,-1216,-1215,-1214,-1213,-1212,-1211,-1210,-1209,1208,-1209,-1208,-1207,1206,-1207,-1206,-1205,-1204,1202,-1203,-1202,-1201,-1200,1198,1855,-843,-656,-655,-1287,-1286,-1285,-1284,-1283,-1282,-1281,1280,-1281,-1280,-1279,1278,-1279,-1278,-1277,-1276,-1275,1856,-1273,1857,1858,1857,-1858,1859,-1270,-1269,1860,1861,-1267,1266,1862]]},{"type":"Polygon","id":"54","properties":{"name":"West Virginia"},"arcs":[[-1163,-1162,-1161,-1160,-1159,-1158,1157,-1158,-1157,-1156,1155,-1156,-1155,-1154,-1153,-1152,1151,-1152,-1151,-1150,-1149,1148,-1149,-1148,-1147,-1146,1145,-1146,-1145,1137,-1144,-1143,-1142,-1141,-1140,-1139,-1138,-1137,-1136,1135,-1136,-1135,-1134,1133,-1134,-1133,-1132,-1131,-1130,-1129,1128,-1129,-1128,-1127,-1126,-1125,-1124,-1123,-1122,-1121,1119,-1120,-1119,-1118,-1117,-1116,-1115,-1114,-1113,-1112,1111,-1112,-1111,-1110,-1836,-1835,-1834,-1833,-1832,1831,-1832,-1831,-1830,1829,-1830,-1829,-1828,1827,-1828,-1827,-1826,-1825,-1824,1823,-1824,-1823,-1822,-1821,-1820,1819,-1820,1819,-1820,-1819,-1818,-1817,1816,-1817,-1816,-1815,-1814,-1813,1812,-1813,-1812,-1811,1810,-1811,-1810,-913,-912,911,-912,-911,-910,909,-910,-909,-908,907,-908,-907,-906,905,-906,905,-906,-905,-904,-903,902,-903,-902,-901,899,-900,-899,-898,-897,-896,895,-896,-895,-894,-893,-892,891,-892,-891,-890,-889,888,-889,-888,-887,886,-887,-886,-885,-884,883,-1633,-1632,-1631,-1630,-1629,-1628,-1627,-1626,-1625,-1624,1623,-1757]]},{"type":"Polygon","id":"56","properties":{"name":"Wyoming"},"arcs":[[-1799,-1491,-407,-1805,-777,-1434,-1433,1432,-1433,-1432]]},{"type":"Polygon","id":"78","properties":{"name":"U.S. Virgin Islands"},"arcs":[[1863]]}]}},"arcs":[[[9969,6322],[6,-4],[8,-37],[-14,41]],[[29,6375],[12,-20],[-9,-18],[-7,25],[4,13]],[[54,6336],[-13,-2],[13,20],[0,-18]],[[76,6359],[0,2]],[[76,6359],[0,-2]],[[76,6352],[0,5]],[[76,6352],[0,-2]],[[76,6350],[0,-1]],[[76,6349],[0,-3]],[[76,6346],[0,-2]],[[76,6343],[0,1]],[[76,6343],[-9,-15],[-4,6],[2,49],[11,-22]],[[9995,6395],[4,-10],[-5,-19],[1,29]],[[9939,6414],[0,-39],[-12,-8],[9,24],[3,23]],[[157,6418],[0,-10],[14,-4],[-14,-8],[-15,14],[15,8]],[[186,6462],[5,-11],[-10,-14],[5,25]],[[139,6468],[5,-17],[-6,-18],[2,-25],[-6,4],[-10,-20],[-10,8],[12,10],[8,17],[0,33],[5,8]],[[9831,6485],[-1,-28],[-10,8],[11,20]],[[235,6519],[3,-18],[-6,-7],[3,25]],[[261,6556],[1,-22],[-8,15],[7,7]],[[9805,6576],[9,-2],[5,-18],[-4,-18],[-12,-3],[1,19],[-9,5],[10,17]],[[280,6545],[9,39],[-2,21],[13,19],[-1,26],[8,29],[10,-10],[-3,-23],[-10,-21],[-6,-39],[-9,-27],[-9,-14]],[[357,6716],[0,-4]],[[357,6712],[2,-1]],[[359,6709],[0,2]],[[359,6709],[-8,-13],[-4,-30],[-21,-30],[-11,-8],[3,18],[10,6],[6,23],[-1,18],[8,17],[-8,20],[4,25],[11,9],[2,-34],[9,29],[-9,-52],[7,9]],[[375,6787],[-10,-16],[1,31],[9,-15]],[[375,6787],[0,25],[8,-11],[-8,-14]],[[1335,6949],[0,-24],[-7,16],[7,8]],[[438,6919],[3,-17],[-9,-26],[-10,4],[-9,-13],[-1,-20],[-14,-8],[-3,36],[5,5],[8,54],[5,-7],[10,27],[12,2],[3,-37]],[[1291,6983],[0,-1]],[[1291,6982],[3,-30],[-6,1],[3,30]],[[1292,6919],[2,-31],[-13,51],[-3,23],[4,35]],[[1282,6997],[5,-68],[5,-10]],[[1328,6994],[2,-44],[-6,-2],[4,46]],[[537,6995],[-6,-47],[-5,-12],[11,59]],[[1278,6999],[-6,-12],[0,23],[6,-11]],[[518,7012],[0,1]],[[518,7012],[3,-30],[-12,2],[0,31],[9,-2]],[[1320,7017],[0,-1]],[[1320,7016],[1,-3]],[[1321,7013],[-1,-40],[-2,9],[0,44],[2,-9]],[[1269,7104],[7,-15],[-9,-4],[2,19]],[[1321,7013],[-1,3]],[[1320,7017],[-2,13],[5,29],[-3,14],[5,45],[10,8],[8,-55],[-4,-74],[-4,-13],[-5,13],[-2,45],[-1,-39],[-6,10]],[[1273,7165],[3,-2]],[[1276,7163],[1,-1]],[[1277,7162],[0,-26],[-14,-18],[3,29],[6,16]],[[1272,7163],[1,2]],[[1302,7188],[4,-18]],[[1306,7170],[3,-7]],[[1309,7163],[-1,-32],[-6,-13],[-2,28],[-6,3],[0,30],[8,9]],[[1291,6983],[-9,14]],[[1282,6997],[-4,2]],[[1278,6999],[0,21],[10,-6],[-7,20],[4,31],[-8,-11],[-4,13],[8,42],[-4,12],[0,41]],[[1277,7162],[-1,1]],[[1276,7163],[-3,2]],[[1273,7165],[-1,-2]],[[1272,7163],[-3,5],[-2,32],[14,-5],[4,-27],[-3,-21],[9,-10],[9,-38],[5,-69],[9,-51],[-1,-86],[-8,2],[0,30],[-9,17],[3,28],[-8,12]],[[1294,7218],[1,-34],[-12,10],[2,20],[9,4]],[[1306,7170],[-4,18]],[[1302,7188],[0,36],[8,-22]],[[1310,7202],[1,0]],[[1311,7202],[2,-2]],[[1313,7200],[1,-10]],[[1314,7190],[0,-4]],[[1314,7186],[1,-6]],[[1315,7180],[0,-2]],[[1315,7178],[-6,-15]],[[1309,7163],[-3,7]],[[687,7245],[3,-2],[-10,-34],[-2,13],[9,23]],[[1287,7251],[0,1]],[[1287,7252],[0,10]],[[1287,7262],[0,4]],[[1287,7266],[0,4]],[[1287,7270],[0,2]],[[1287,7272],[-1,6]],[[1286,7278],[0,3]],[[1286,7281],[0,3]],[[1286,7284],[1,3]],[[1287,7287],[4,-5],[6,-41],[-10,-12],[0,22]],[[1264,7261],[2,-5]],[[1266,7256],[0,-1]],[[1266,7255],[0,-1]],[[1266,7254],[-5,-5],[-2,-99],[-5,26],[0,-36],[-4,6],[0,67],[7,-3],[-10,51],[-2,33],[12,4],[7,-37]],[[1287,7287],[-1,-3]],[[1286,7281],[0,-3]],[[1286,7278],[1,-6]],[[1287,7270],[0,-4]],[[1287,7262],[0,-10]],[[1287,7251],[-5,-28],[-15,-7],[-1,38]],[[1266,7255],[0,1]],[[1266,7256],[-2,5]],[[1264,7261],[2,27],[-9,46],[25,-12],[5,-35]],[[720,7356],[0,3]],[[720,7359],[12,-12],[-13,-26],[1,35]],[[1209,7384],[3,-22],[-1,-39],[-5,-4],[0,64],[3,1]],[[1211,7393],[1,4]],[[1212,7397],[2,7]],[[1214,7404],[1,4]],[[1215,7408],[0,1]],[[1215,7409],[0,1]],[[1215,7410],[1,12],[12,-26],[6,1],[0,-26],[5,-97],[0,-98],[-3,-1],[-7,69],[-8,34],[-2,31],[5,14],[-10,41],[-3,29]],[[720,7359],[0,-3]],[[720,7356],[-11,-47],[0,-16],[-13,-19],[6,59],[-15,11],[3,-15],[7,13],[-1,-35],[-10,12],[0,37],[-5,14],[0,34],[12,40],[8,-6],[5,-49],[0,41],[5,8],[-10,18],[5,26],[17,-13]],[[723,7469],[0,2]],[[723,7474],[0,-3]],[[723,7474],[-2,7]],[[721,7482],[0,-1]],[[721,7482],[-1,20],[14,-10],[-4,-15],[13,11],[1,-54],[8,3],[-5,-38],[-17,10],[9,-13],[-1,-21],[-18,-16]],[[1192,7508],[0,-1]],[[1192,7507],[0,-3]],[[1192,7504],[0,-9]],[[1192,7495],[-1,-6]],[[1191,7489],[0,-2]],[[1191,7487],[-1,-6]],[[1190,7481],[0,-2]],[[1190,7479],[-3,46],[5,-17]],[[725,7524],[1,-8]],[[726,7516],[3,-8]],[[729,7508],[-13,14],[9,2]],[[1215,7410],[0,-1]],[[1215,7408],[-1,-4]],[[1214,7404],[-2,-7]],[[1212,7397],[-1,-4]],[[1211,7393],[-5,0],[-8,43],[0,16],[-8,27]],[[1190,7479],[0,2]],[[1190,7481],[1,6]],[[1191,7489],[1,6]],[[1192,7495],[0,9]],[[1192,7504],[0,3]],[[1192,7507],[-2,25],[8,15],[4,-7],[5,20],[9,-28],[15,-20],[2,-106],[-4,-1],[-19,49],[5,-44]],[[1233,7571],[5,-35],[15,0],[8,-94],[-12,80],[0,-41],[5,-40],[5,-9],[0,-55],[-12,-40],[-7,-8],[-1,36],[5,56],[-4,-6],[-7,156]],[[729,7508],[-3,8]],[[726,7516],[-1,8]],[[725,7524],[-4,17],[11,-4],[-6,26],[8,-6],[-2,25],[11,11],[6,-22],[8,0],[-4,-37],[-11,-5],[-8,-23],[-5,2]],[[738,7613],[9,10],[-4,-29],[-5,19]],[[513,7656],[-5,-42],[-5,-6],[0,27],[10,21]],[[891,7943],[4,-21],[-14,-53],[1,-17],[-12,-16],[6,42],[9,24],[6,41]],[[361,7959],[3,-20],[11,-5],[0,-49],[3,-24],[-21,-14],[-9,4],[-20,41],[0,31],[14,-5],[9,31],[10,10]],[[914,7966],[4,-24],[-13,-20],[-2,21],[2,26],[9,-3]],[[870,7927],[7,41],[-3,-56],[-4,15]],[[172,7991],[1,-17],[14,-32],[-6,-4],[-11,34],[2,19]],[[412,7987],[-3,-3]],[[409,7984],[-1,-1]],[[408,7983],[0,-1]],[[408,7982],[0,-3]],[[408,7979],[0,-1]],[[408,7978],[0,-2]],[[408,7976],[1,-1]],[[409,7975],[0,-1]],[[409,7974],[0,-2]],[[409,7972],[0,-3]],[[409,7969],[-1,-2]],[[408,7967],[0,-1]],[[408,7966],[-1,-1]],[[407,7965],[-2,0]],[[405,7965],[0,-2]],[[405,7963],[0,-2]],[[405,7961],[0,-2]],[[405,7959],[2,-3]],[[407,7956],[0,-1]],[[407,7955],[0,-2]],[[407,7953],[0,-2]],[[407,7951],[-3,-2]],[[404,7949],[-1,-14]],[[403,7935],[0,-1]],[[403,7934],[-13,21],[4,25],[-11,-5],[11,32],[-1,18],[11,22],[-1,-15],[11,-7],[-2,-38]],[[403,8394],[0,-1]],[[403,8393],[1,1]],[[404,8394],[1,1]],[[405,8395],[3,0]],[[408,8395],[0,-1]],[[408,8394],[-9,-26],[-1,31],[5,-5]],[[413,8440],[1,-7]],[[414,8433],[2,-1]],[[416,8432],[0,-2]],[[416,8430],[0,-3]],[[416,8427],[0,-3]],[[416,8424],[1,-1]],[[417,8423],[0,1]],[[417,8424],[0,2]],[[417,8426],[0,-1]],[[417,8425],[1,-19]],[[418,8406],[0,-2]],[[418,8404],[1,-4]],[[419,8400],[3,-5]],[[422,8395],[0,-1]],[[422,8394],[0,-24]],[[422,8370],[0,-2]],[[422,8368],[1,-9]],[[423,8359],[3,-8]],[[426,8351],[0,-2]],[[426,8349],[0,-3]],[[426,8346],[0,-1]],[[426,8345],[0,1]],[[426,8346],[-9,38],[-8,6]],[[409,8390],[-1,4]],[[408,8395],[-3,0]],[[405,8395],[-1,-1]],[[404,8394],[-1,-1]],[[403,8394],[-5,8],[5,40],[10,-2]],[[432,8453],[0,-2]],[[432,8451],[-5,-11]],[[427,8440],[0,-1]],[[427,8439],[0,-5]],[[427,8434],[0,-4]],[[427,8430],[0,-1]],[[427,8429],[0,-2]],[[427,8427],[0,-2]],[[427,8425],[0,-1]],[[427,8424],[0,-1]],[[427,8425],[-1,-1]],[[426,8424],[0,-2]],[[426,8422],[0,-2]],[[426,8420],[-2,-2]],[[424,8418],[-1,1]],[[423,8419],[0,1]],[[423,8420],[-1,1]],[[422,8421],[-4,-3]],[[418,8418],[-1,5]],[[417,8423],[0,2]],[[417,8425],[0,1]],[[417,8424],[0,-1]],[[417,8424],[-1,0]],[[416,8427],[0,3]],[[416,8432],[-2,1]],[[414,8433],[-1,7]],[[413,8440],[-8,9],[4,27],[9,10],[17,-23],[-3,-10]],[[208,8583],[5,-35],[16,-5],[10,22],[13,-17],[0,-24],[15,-18],[23,-13],[-4,-28],[-14,6],[-5,-38],[-10,31],[-27,58],[-16,-27],[-9,10],[-1,43],[4,35]],[[870,8042],[0,-1]],[[870,8042],[-1,4]],[[869,8046],[0,1]],[[869,8047],[-2,2]],[[867,8049],[-1,3]],[[866,8052],[-18,-25],[3,-14],[10,7],[0,-29],[8,-35],[-12,-31],[5,-20]],[[862,7905],[-1,-3]],[[861,7902],[0,-1]],[[861,7901],[-4,3],[-1,-35],[-28,7],[-6,-45],[-3,38],[-1,-45],[-4,4],[-9,-45],[-14,-11],[-5,-34],[-6,-8],[-8,12],[-5,-19],[-10,15],[1,34],[14,7],[14,61],[-15,-30],[-12,20],[4,54],[9,37],[4,30],[-4,64],[10,10],[19,47],[4,-22],[10,8],[19,-13],[-15,23],[-9,25],[9,43],[14,18],[-10,3],[-8,-21],[-1,-23],[-22,0],[-10,-15],[-2,-24],[-18,-25],[1,-38],[-4,8],[-12,-47],[2,-21],[-9,-31],[-11,4],[10,-26],[-2,-35],[-16,-10],[7,-26],[-12,-12],[-10,-21],[1,-21],[-11,-11],[-1,-61],[15,2],[9,-24],[-3,-38],[-14,-22],[-1,-42],[-6,-46],[-10,-20],[-12,1],[-4,-31],[-6,-6],[1,-18],[-9,9],[-3,-44],[-8,4],[-14,-45],[1,-18],[-2,-44],[-7,9],[0,-25],[-19,-11],[0,-42],[-10,9],[-7,-26],[7,6],[-1,-17],[-14,-2],[-4,-21],[9,-11],[-9,-55],[-9,4],[-1,-17],[-18,-14],[-2,-50],[-1,48],[-9,-3],[-2,-20],[-11,-9],[0,-30],[-6,-10],[-7,14],[-10,-31],[-6,6],[0,19],[6,14],[-10,7],[-3,-40],[-6,-55],[-8,-13],[-6,3],[-1,37],[-7,-54],[-3,-4],[-4,29],[-6,9],[5,-36],[-11,-18]],[[438,6919],[6,60],[10,3],[1,23],[6,8],[4,38],[15,58],[14,17],[12,-2],[6,-41],[0,27],[14,-4],[-9,16],[5,64],[14,47],[14,21],[13,33],[7,-7],[-1,41],[10,53],[18,52],[3,98],[6,15],[-5,24],[2,37],[12,41],[2,45],[-5,-22],[-29,-43],[-9,43],[0,33],[-10,-58],[5,-43],[-10,-10],[-9,66],[-9,27],[-2,-24],[-16,28],[2,22],[-14,-35],[-13,-17],[-4,-24],[-7,-17],[-13,19],[8,0],[0,65],[6,21],[-10,4],[1,43],[6,18],[-6,60],[-9,48],[1,26],[-10,23],[3,-60],[-23,-33],[-23,1],[0,26],[-6,17],[-9,44]],[[403,7934],[0,1]],[[403,7935],[1,14]],[[404,7949],[3,2]],[[407,7953],[0,2]],[[407,7956],[-2,3]],[[405,7959],[0,2]],[[405,7963],[0,2]],[[407,7965],[1,1]],[[408,7967],[1,2]],[[409,7972],[0,2]],[[409,7975],[-1,1]],[[408,7978],[0,1]],[[408,7979],[0,3]],[[408,7983],[1,1]],[[409,7984],[3,3]],[[412,7987],[9,34],[6,-2],[0,-33],[10,30],[-10,36],[-22,-14],[-1,15],[-12,-5],[2,31],[-10,20],[-6,-16],[0,33],[-7,6],[0,42],[-9,-7],[-1,26],[11,10],[-8,24],[12,6],[-4,40],[17,82],[9,5],[11,40]],[[409,8390],[17,-45]],[[426,8346],[0,3]],[[426,8351],[-3,8]],[[423,8359],[-1,9]],[[422,8368],[0,2]],[[422,8370],[0,24]],[[422,8395],[-3,5]],[[419,8400],[-1,4]],[[418,8404],[0,2]],[[418,8406],[0,12]],[[418,8418],[4,3]],[[422,8421],[1,-1]],[[423,8419],[1,-1]],[[424,8418],[2,2]],[[426,8422],[0,2]],[[426,8424],[1,0]],[[427,8423],[0,2]],[[427,8427],[0,2]],[[427,8430],[0,4]],[[427,8434],[0,5]],[[427,8440],[5,11]],[[432,8451],[0,2]],[[432,8453],[17,-4],[10,29],[11,48],[5,-9],[27,14],[10,47],[-5,84],[-13,41],[-1,18],[10,-6],[9,41],[-11,39],[-8,-30],[-8,3],[-12,-18],[-12,-29],[-6,-35],[-1,31],[-10,27],[-4,-14],[9,-12],[-3,-21],[-14,32],[-19,-2],[-19,-23],[-34,27],[-8,24],[0,38],[-12,45],[11,-6],[1,21],[13,0],[10,-36],[9,21],[-18,4],[-4,20],[-35,22],[-18,42],[14,20],[-1,12],[38,70],[12,-14],[8,9],[-10,12],[2,20],[22,19],[15,30],[18,2],[-1,-64],[-7,-7],[12,-28],[19,5],[16,-11],[8,6],[9,-17],[6,49],[17,4],[-5,16],[-16,11],[-6,-8],[1,31],[-10,41],[-6,-2],[-4,32],[10,6],[7,-29],[-2,-28],[13,-35],[13,10],[10,-24],[15,4],[0,45],[-11,-8],[-13,10],[-10,-22],[-12,33],[5,45],[-3,21],[-22,-13],[-32,24],[-2,57],[-8,35],[-30,72],[-22,26],[-15,38],[9,41],[1,59],[28,-3],[25,13],[18,29],[14,53],[3,66],[16,48],[14,58],[5,-17],[25,26],[21,48],[7,-65],[2,61],[-9,7],[16,39],[5,-12],[27,7],[18,14],[11,23],[19,64],[18,-31],[13,-1],[1,-20],[-13,-18],[3,-25],[10,-1],[0,22],[10,30],[17,-22],[-2,-31],[13,-11],[5,21],[23,8],[25,-16],[-6,-37],[19,-16],[-4,-21],[36,3],[-3,-20],[24,29],[13,2],[46,-54],[21,-13],[32,3],[16,-32],[18,-5],[18,22],[34,-6],[15,-38],[14,-13],[9,-27],[12,3],[0,-1740],[12,-15],[3,15],[13,-21],[7,27],[18,4],[-4,-51],[15,-33],[3,-31],[27,-92],[5,-62],[16,47],[8,1],[6,80],[24,37],[13,-43],[-3,-26],[5,-27],[7,-7],[9,-38],[1,-22],[14,-36],[13,-56],[-3,-8],[25,-165],[9,-53],[-4,-23],[9,-8],[-1,-32],[6,-13],[2,-39],[7,3],[13,-39],[9,-6],[9,-23],[1,-19],[9,-4],[2,-43],[-3,-19],[1,-44],[4,-50],[-10,-68],[-12,-29],[-5,7],[-1,51],[6,0],[5,29],[-13,-27],[-2,23],[6,16],[-1,96],[-8,32],[-5,4],[-15,-25],[5,-17],[-5,-46],[-6,6],[-4,36],[6,9],[3,69],[11,6],[-10,5]],[[1315,7180],[-1,6]],[[1314,7190],[-1,10]],[[1313,7200],[-2,2]],[[1311,7202],[-1,0]],[[1310,7202],[-8,31],[3,28],[-14,33],[-3,31],[-19,29],[2,18],[9,9],[-8,12],[-5,60],[14,-24],[-12,36],[-5,4],[-10,75],[-5,8]],[[1249,7552],[-1,3]],[[1248,7556],[0,-1]],[[1248,7556],[-1,1]],[[1247,7559],[0,-2]],[[1247,7559],[-2,3]],[[1245,7562],[-1,2]],[[1244,7565],[0,-1]],[[1244,7565],[0,3]],[[1244,7569],[0,-1]],[[1244,7569],[-5,3],[-8,47],[0,34],[-5,6],[-2,53],[-4,26],[-9,4],[8,-29],[0,-35],[9,-96],[-2,-34],[-6,8],[-14,36],[-6,70],[-3,-15],[-19,37],[-4,-10],[13,-14],[-1,-10],[10,-27],[5,-47],[-9,-14],[-9,8],[-1,-22],[-5,32],[-6,-2],[-16,43],[-7,51],[-16,43],[-38,79],[11,28],[-4,38],[6,5],[3,-60],[1,48],[-9,35],[-5,-41],[-14,-24],[-18,7],[-15,27],[1,24],[-10,-9],[-23,22],[-25,-5],[-12,-11],[-10,27],[-9,7],[-8,23],[3,57],[-15,-50],[-4,14],[-14,8],[8,23],[-8,20],[-9,-12],[6,22],[-17,-10],[10,18],[-10,15],[0,45],[-5,-28],[-29,-16]],[[649,483],[6,-29],[5,-4],[9,-39],[0,-31],[9,-35],[0,-12],[-10,-37],[-5,-6],[-9,-58],[-6,21],[0,66],[-5,71],[6,37],[-1,21],[1,35]],[[616,606],[5,-13],[0,-18],[-5,-2],[0,33]],[[628,624],[2,-24],[8,8],[7,-27],[-4,-31],[-8,-10],[-2,39],[-6,12],[3,33]],[[610,659],[15,-18],[-5,-13],[-12,8],[2,23]],[[589,751],[4,-32],[0,-19],[5,-27],[-12,1],[-4,53],[4,0],[3,24]],[[531,805],[0,-23],[-5,-18],[0,21],[5,20]],[[550,848],[3,-10],[-2,-45],[-7,-8],[-5,32],[6,29],[5,2]],[[3122,157],[9,-9],[9,4],[17,-12],[5,-14],[1,-23],[-5,-16],[-3,-31],[-7,-8],[-9,10],[-14,-10],[-7,4],[1,63],[-2,15],[5,27]],[[2606,3222],[1,-55],[3,-63],[1,-66],[3,-69],[3,-136],[6,-94]],[[2623,2739],[2,-32],[-4,-14],[-2,-85],[2,-9],[-1,-89],[3,-29]],[[2623,2481],[-35,-2]],[[2588,2479],[-4,1]],[[2584,2480],[0,-1]],[[2584,2479],[-34,1],[0,-34],[4,-21]],[[2554,2425],[2,-4],[-1,-41]],[[2555,2380],[1,-2]],[[2556,2378],[-1,-9]],[[2555,2369],[0,-1]],[[2555,2368],[-2,-14]],[[2553,2354],[-7,-11],[-4,25],[-1,64],[-2,-3],[-3,-71],[-8,8]],[[2528,2366],[0,90],[-1,2],[0,124],[-1,3],[0,88],[1,0],[3,167],[4,264],[2,53],[0,50],[-2,16]],[[2534,3223],[3,3],[43,-3],[26,-1]],[[2492,3411],[0,-21]],[[2492,3390],[0,1]],[[2492,3391],[-5,-28]],[[2487,3363],[-1,-16]],[[2486,3347],[-4,-43]],[[2482,3304],[0,-2]],[[2482,3302],[0,2]],[[2482,3304],[-3,-31],[2,-8]],[[2481,3265],[0,-2]],[[2481,3263],[1,-9],[-7,-31]],[[2475,3223],[-1,-25]],[[2474,3198],[-2,-4]],[[2472,3194],[-3,-16]],[[2469,3178],[0,1]],[[2469,3178],[-1,-9]],[[2468,3169],[2,0]],[[2470,3169],[-2,-2]],[[2468,3167],[0,2]],[[2468,3167],[0,-50],[-3,-10]],[[2465,3107],[0,-2]],[[2465,3105],[0,2]],[[2465,3107],[-4,-16]],[[2461,3091],[-3,-8]],[[2458,3083],[1,-9]],[[2459,3074],[0,-2]],[[2459,3072],[-1,-4]],[[2458,3068],[0,-11]],[[2458,3057],[-3,-19]],[[2455,3038],[-1,-41]],[[2454,2997],[-1,0]],[[2453,2997],[-1,1]],[[2452,2998],[1,-22]],[[2453,2976],[-2,-31]],[[2451,2945],[0,-1]],[[2451,2944],[0,1]],[[2451,2944],[0,-13]],[[2451,2931],[2,-4]],[[2453,2927],[0,-28]],[[2453,2899],[-2,-46]],[[2451,2853],[-25,0],[-55,3]],[[2371,2856],[0,99]],[[2371,2955],[0,1]],[[2371,2956],[-5,5]],[[2366,2961],[-1,-4]],[[2365,2957],[0,4]],[[2365,2961],[1,0]],[[2366,2961],[-1,0]],[[2365,2957],[-1,-1]],[[2364,2956],[-1,0]],[[2363,2956],[-2,3]],[[2361,2959],[0,1]],[[2361,2960],[0,-1]],[[2361,2960],[-2,4]],[[2359,2964],[0,8]],[[2359,2972],[0,226],[1,0],[0,120],[-4,119],[-1,66]],[[2355,3503],[39,0],[54,0],[31,0],[1,-14]],[[2480,3489],[0,-1]],[[2480,3488],[1,-1]],[[2481,3487],[0,-2]],[[2481,3485],[-1,-32]],[[2480,3453],[-2,-3]],[[2478,3450],[0,-2]],[[2478,3448],[-1,-3]],[[2477,3445],[-4,-34],[19,0]],[[1953,3596],[0,-1054]],[[1953,2542],[-58,0],[-45,97],[-22,45],[-7,17],[-30,57],[4,42]],[[1795,2800],[0,5]],[[1795,2805],[5,0],[1,43]],[[1801,2848],[-3,10]],[[1798,2858],[-1,0]],[[1797,2858],[-1,72]],[[1796,2930],[4,23],[0,77],[3,29]],[[1803,3059],[6,15],[1,24],[-7,24],[-1,50],[-5,27],[0,25]],[[1797,3224],[1,23],[0,53],[-2,8],[-2,123],[4,6]],[[1798,3437],[2,2]],[[1800,3439],[2,-3]],[[1802,3436],[8,-20],[4,31],[0,95],[-2,56]],[[1812,3598],[31,0],[70,-2],[40,0]],[[1687,2858],[6,-32],[-4,0],[-2,32]],[[1687,2941],[6,-10],[1,-23],[-5,6],[-2,27]],[[1646,3046],[3,-19],[-5,-8],[-3,22],[5,5]],[[1650,3053],[10,-15],[-9,-3],[-1,18]],[[1647,4527],[0,-558],[13,-58],[42,-196],[3,-17],[39,-192],[2,-19],[38,-195],[13,-68]],[[1795,2800],[-68,-34],[0,27],[-3,-2],[0,63],[-7,60],[-7,39],[-11,40],[-7,-3],[0,32],[-3,24],[-9,-4],[-11,25],[-1,23],[-9,27],[-8,-2],[-4,10],[-12,-2],[-5,18],[1,60],[-1,51],[-7,13],[0,43],[-5,5],[-7,58],[-4,16],[-1,26],[-11,51],[-2,61],[5,26],[-3,41],[-7,-1],[-8,39],[0,37],[-2,24],[0,53],[2,4],[2,-41],[7,-18],[-1,31],[-8,53],[5,21],[9,-1],[-2,16],[-4,-17],[-8,18],[-2,-5],[-2,-54],[-11,43],[0,40],[-10,53],[-12,66],[2,33],[-4,46],[1,69],[-9,71],[-7,30],[0,61],[3,22],[4,44],[-1,42],[1,18],[0,58],[-4,35],[0,45]],[[1529,4527],[27,0],[32,3],[28,-3],[31,0]],[[2092,4342],[56,0],[0,-186]],[[2148,4156],[0,-560]],[[2148,3596],[-27,0]],[[2121,3596],[-58,0],[-50,0],[-60,0]],[[1953,3596],[0,746]],[[1953,4342],[37,0],[67,0],[35,0]],[[2991,4530],[0,-111],[-1,0]],[[2990,4419],[-1,-17]],[[2989,4402],[-14,-11],[-18,-5],[-3,-16],[-15,-27]],[[2939,4343],[0,-1]],[[2939,4343],[0,1]],[[2939,4342],[0,-3]],[[2939,4344],[-2,11],[6,23],[0,159]],[[2943,4537],[47,-5],[1,-2]],[[2845,3934],[0,2]],[[2845,3936],[0,1]],[[2845,3937],[0,2]],[[2845,3939],[0,1]],[[2845,3940],[0,4]],[[2845,3944],[0,1]],[[2845,3945],[-1,2]],[[2844,3947],[0,3]],[[2844,3950],[-1,2]],[[2843,3952],[-1,6]],[[2842,3958],[3,11],[3,-24],[-3,-9]],[[2890,4120],[-1,0]],[[2889,4120],[-1,-9]],[[2888,4111],[0,-2]],[[2888,4109],[-1,-9]],[[2887,4100],[0,-1]],[[2887,4099],[-3,-13],[1,-35],[5,-29],[0,-43],[3,-29],[6,-21],[-3,-40],[4,8],[-1,-29]],[[2899,3868],[-17,0],[-1,45],[-2,191]],[[2879,4104],[6,21],[4,-5]],[[2744,1980],[0,2]],[[2744,1982],[0,1]],[[2744,1983],[0,14]],[[2744,1997],[1,3]],[[2745,2000],[0,-1]],[[2745,1999],[1,-64],[2,-29]],[[2748,1906],[0,-1]],[[2748,1906],[0,1]],[[2748,1907],[-1,11]],[[2747,1918],[0,3]],[[2747,1921],[-1,10]],[[2746,1931],[0,3]],[[2746,1934],[-1,13]],[[2745,1947],[0,5]],[[2745,1952],[0,2]],[[2745,1954],[0,2]],[[2745,1956],[0,2]],[[2745,1958],[-1,22]],[[2752,1417],[0,1]],[[2752,1417],[-1,-17]],[[2751,1398],[0,2]],[[2751,1400],[-1,-10]],[[2750,1389],[0,1]],[[2750,1388],[0,1]],[[2750,1388],[0,2]],[[2750,1390],[-4,8],[-12,-11],[-2,23],[5,-4],[-7,27],[-5,84],[-9,14],[-5,53],[0,43],[-6,21],[0,66],[-4,12],[1,-23],[-4,4],[-4,35],[-4,89],[5,80],[-8,16],[-1,-18],[4,-12],[-1,-31],[-6,26],[1,55],[4,56],[0,55],[-4,81],[-7,1],[-4,47],[-6,22],[0,25],[-5,29],[-11,50],[-8,0],[-5,-33],[-11,-33],[-13,-12],[0,31],[-5,20],[-1,23],[-22,57],[6,4],[-4,15],[-7,3],[-2,-18],[-12,-1],[-4,11],[-3,-22],[-7,-4]],[[2553,2354],[2,14]],[[2555,2369],[1,9]],[[2556,2378],[-1,2]],[[2623,2481],[3,-54],[69,-25],[5,-1],[1,-36]],[[2701,2365],[0,-1]],[[2701,2364],[1,-2]],[[2702,2362],[1,0]],[[2703,2362],[1,0]],[[2704,2362],[0,-1]],[[2704,2361],[1,0]],[[2705,2361],[0,1]],[[2705,2362],[1,22]],[[2706,2384],[0,1]],[[2706,2385],[-1,32]],[[2705,2417],[0,1]],[[2705,2418],[0,16]],[[2705,2434],[1,6]],[[2706,2440],[1,0]],[[2707,2440],[1,7]],[[2708,2447],[1,-1]],[[2709,2446],[0,1]],[[2709,2446],[3,-6]],[[2712,2440],[1,-4]],[[2713,2436],[1,-2]],[[2714,2434],[1,-2]],[[2715,2432],[0,2]],[[2715,2434],[1,-2]],[[2716,2432],[-1,2]],[[2715,2434],[1,0]],[[2716,2434],[0,-2]],[[2716,2432],[0,-1]],[[2716,2431],[1,0]],[[2717,2431],[0,-1]],[[2717,2430],[1,0]],[[2718,2430],[0,-1]],[[2718,2429],[3,-1]],[[2721,2428],[1,-56],[-7,-18],[0,-62],[2,-1],[1,-50],[-3,-23],[1,-61],[3,12],[-4,20],[0,29],[4,21],[-1,53],[-2,4],[1,70],[5,-2]],[[2722,2348],[0,16]],[[2722,2348],[0,-3]],[[2722,2345],[0,-2]],[[2722,2339],[0,4]],[[2722,2339],[1,-2]],[[2723,2337],[0,-2]],[[2723,2333],[0,2]],[[2723,2333],[0,-6]],[[2723,2327],[0,-4]],[[2723,2321],[0,2]],[[2723,2321],[1,-4]],[[2724,2317],[0,-4]],[[2724,2307],[0,6]],[[2724,2305],[0,2]],[[2724,2305],[0,-2]],[[2724,2298],[0,5]],[[2724,2298],[1,-2]],[[2725,2296],[0,-4]],[[2725,2286],[0,6]],[[2725,2286],[1,-4]],[[2726,2282],[0,-6]],[[2726,2276],[0,-23],[6,-70],[2,-47],[6,-71],[6,-31],[-1,-34]],[[2745,2000],[-1,-3]],[[2744,1997],[0,-14]],[[2744,1983],[0,-1]],[[2744,1983],[1,-25]],[[2745,1956],[0,-2]],[[2745,1956],[-3,29],[0,47],[-3,6],[2,-45],[4,-46]],[[2745,1947],[1,-13]],[[2746,1934],[0,-3]],[[2746,1931],[1,-10]],[[2747,1918],[1,-11]],[[2748,1905],[4,-46],[1,-47],[6,-63],[2,-35],[0,-76],[-2,-50],[0,-47],[-2,-37],[-4,-32],[-1,-54]],[[2722,2517],[0,4]],[[2722,2521],[0,5]],[[2722,2526],[1,0]],[[2723,2526],[0,3]],[[2723,2529],[0,1]],[[2723,2530],[0,4]],[[2723,2534],[0,3]],[[2723,2537],[0,1]],[[2723,2538],[4,-4],[-5,-17]],[[2727,2575],[0,3]],[[2727,2575],[-1,-4]],[[2726,2571],[-1,-1]],[[2725,2565],[0,5]],[[2725,2565],[1,-2]],[[2726,2562],[0,1]],[[2726,2562],[-1,3]],[[2725,2565],[-2,-28]],[[2723,2534],[0,-4]],[[2723,2526],[-1,0]],[[2722,2517],[-2,-25],[2,-19]],[[2722,2469],[0,4]],[[2722,2469],[-1,-3]],[[2721,2464],[0,2]],[[2721,2464],[-1,-1]],[[2720,2456],[0,7]],[[2720,2456],[1,-2]],[[2721,2451],[0,3]],[[2721,2451],[0,-15]],[[2721,2436],[0,-1]],[[2721,2435],[-3,-6]],[[2718,2429],[0,1]],[[2606,3222],[36,1]],[[2642,3223],[33,1]],[[2675,3224],[0,-7]],[[2675,3217],[0,-2]],[[2675,3215],[0,-1]],[[2675,3214],[0,-1]],[[2675,3213],[-1,-3]],[[2674,3210],[0,-1]],[[2674,3209],[-1,-5]],[[2673,3204],[-1,-2]],[[2672,3202],[-1,-5]],[[2671,3197],[0,-1]],[[2671,3196],[0,1]],[[2671,3196],[0,-5]],[[2671,3191],[-1,0]],[[2670,3191],[0,-2]],[[2670,3189],[0,-8]],[[2670,3181],[-1,-16],[8,-35]],[[2677,3130],[1,-2]],[[2678,3128],[1,0]],[[2679,3128],[1,0]],[[2680,3128],[1,0]],[[2681,3128],[2,-23]],[[2683,3105],[7,-71],[8,-31],[5,-40]],[[2703,2963],[6,-26],[-1,-15]],[[2708,2922],[0,-2]],[[2708,2920],[1,-4]],[[2709,2916],[0,-1]],[[2709,2915],[0,-4]],[[2709,2911],[1,0]],[[2710,2911],[0,-3]],[[2710,2911],[0,-3]],[[2710,2908],[1,-5]],[[2711,2903],[0,-2]],[[2711,2901],[1,-7]],[[2712,2894],[1,-1]],[[2713,2893],[-1,1]],[[2712,2894],[1,-1]],[[2713,2893],[0,-6]],[[2713,2887],[0,-1]],[[2713,2886],[2,-12]],[[2715,2874],[2,-4]],[[2717,2870],[0,-1]],[[2717,2869],[1,-6]],[[2718,2863],[1,0]],[[2719,2863],[-1,0]],[[2719,2863],[0,-1]],[[2719,2862],[0,-1]],[[2719,2861],[1,-5]],[[2720,2856],[0,-2]],[[2720,2854],[0,-8]],[[2720,2846],[0,-1]],[[2720,2845],[1,-11]],[[2721,2834],[0,-1]],[[2721,2833],[0,-3]],[[2721,2830],[0,-1]],[[2721,2829],[1,-5]],[[2722,2824],[0,-1]],[[2722,2823],[0,-10]],[[2722,2813],[0,-1]],[[2722,2812],[1,-4]],[[2723,2808],[0,-1]],[[2723,2807],[0,-18]],[[2723,2789],[0,-5]],[[2723,2784],[1,-8]],[[2724,2776],[0,-1]],[[2724,2775],[0,-1]],[[2724,2774],[2,-3]],[[2726,2771],[0,-1]],[[2726,2770],[0,-2]],[[2726,2768],[3,-17]],[[2729,2751],[0,-1]],[[2729,2751],[0,-1]],[[2729,2750],[1,-19]],[[2730,2731],[0,-1]],[[2730,2730],[1,-42]],[[2731,2688],[0,-2]],[[2731,2686],[1,-1]],[[2732,2685],[0,-1]],[[2732,2684],[-1,2]],[[2731,2686],[2,-4]],[[2733,2682],[2,-41],[-5,-2]],[[2730,2637],[0,2]],[[2730,2633],[0,4]],[[2730,2633],[-1,0]],[[2729,2628],[0,5]],[[2729,2628],[1,-1]],[[2730,2625],[0,2]],[[2730,2625],[-1,-2]],[[2729,2621],[0,2]],[[2729,2621],[1,-2]],[[2730,2616],[0,3]],[[2730,2616],[-3,-38]],[[2450,4807],[0,-29],[4,-21],[-3,-16],[0,-33],[3,-42]],[[2454,4666],[10,-20],[2,-24]],[[2466,4622],[6,-32],[0,-18],[7,-21],[0,-49],[-4,-20],[-1,-32],[-10,-24],[-6,-5]],[[2458,4421],[-4,-1],[-1,-38],[4,-17],[0,-37],[-7,-53]],[[2450,4275],[-5,-8],[-1,-40]],[[2444,4227],[0,-1]],[[2444,4227],[-1,1]],[[2443,4228],[0,-1]],[[2443,4227],[-1,1]],[[2442,4228],[0,2]],[[2442,4230],[0,1]],[[2442,4231],[-7,39],[-38,-6],[-29,-2],[-45,3]],[[2323,4265],[-4,111]],[[2319,4376],[0,16]],[[2319,4392],[0,2]],[[2319,4394],[0,-2]],[[2319,4394],[-1,34]],[[2318,4428],[-2,12]],[[2316,4440],[-1,-3]],[[2315,4437],[-2,16],[1,41],[-2,30]],[[2312,4524],[-2,6]],[[2310,4530],[-1,6]],[[2309,4536],[-5,83]],[[2304,4619],[-1,1]],[[2303,4620],[-1,22]],[[2302,4642],[0,1]],[[2302,4643],[-1,10]],[[2301,4653],[-1,27]],[[2300,4680],[1,3]],[[2301,4683],[0,3]],[[2301,4686],[0,1]],[[2301,4687],[1,36]],[[2302,4723],[2,2],[-4,82],[4,0]],[[2304,4807],[23,0],[69,0],[54,0]],[[1758,5831],[0,-192],[4,-23]],[[1762,5616],[2,-16]],[[1764,5600],[1,-7]],[[1765,5593],[0,-1]],[[1765,5592],[2,-34]],[[1767,5558],[1,-8]],[[1768,5550],[1,-1]],[[1769,5549],[0,-1]],[[1769,5548],[-1,-4]],[[1768,5544],[-3,-7]],[[1765,5537],[4,-8]],[[1769,5529],[2,-4]],[[1771,5525],[3,-13]],[[1774,5512],[0,-1]],[[1774,5511],[2,-3]],[[1776,5508],[1,0]],[[1777,5508],[9,-54]],[[1786,5454],[4,-31]],[[1790,5423],[3,-5]],[[1793,5418],[0,-1]],[[1793,5417],[1,-5]],[[1794,5412],[0,-10]],[[1794,5402],[3,-6]],[[1797,5396],[1,-4]],[[1798,5392],[0,1]],[[1798,5393],[2,0]],[[1800,5393],[2,-4]],[[1802,5389],[0,2]],[[1802,5391],[1,3]],[[1803,5394],[0,2]],[[1803,5396],[0,1]],[[1803,5397],[2,0]],[[1805,5397],[-2,-32]],[[1803,5365],[-1,-42]],[[1802,5323],[-1,-20]],[[1801,5303],[0,1]],[[1801,5304],[0,-1]],[[1801,5303],[1,-33]],[[1802,5270],[1,0]],[[1803,5270],[0,-24],[-3,-4],[-2,-51]],[[1798,5191],[0,-1]],[[1798,5190],[2,2]],[[1800,5192],[1,-1]],[[1801,5191],[1,0]],[[1802,5191],[1,-9]],[[1803,5182],[0,-2]],[[1803,5180],[6,7]],[[1809,5187],[1,3]],[[1810,5190],[0,1]],[[1810,5191],[5,26]],[[1815,5217],[1,-1]],[[1816,5216],[3,-15]],[[1819,5201],[1,-6]],[[1820,5195],[0,-11]],[[1820,5184],[4,-46]],[[1824,5138],[5,-40]],[[1829,5098],[2,-41]],[[1831,5057],[5,-4]],[[1836,5053],[2,-8]],[[1838,5045],[3,-18],[1,-40]],[[1842,4987],[4,-12]],[[1846,4975],[1,-6]],[[1847,4969],[3,22]],[[1850,4991],[0,1]],[[1850,4992],[0,2]],[[1850,4994],[0,-2]],[[1850,4992],[3,-1]],[[1853,4991],[4,-4]],[[1857,4987],[2,-1]],[[1859,4986],[0,-2]],[[1859,4984],[0,2]],[[1859,4984],[1,0]],[[1860,4984],[2,22],[4,-6]],[[1866,5000],[2,-2]],[[1868,4998],[1,2]],[[1869,5000],[2,0]],[[1871,5000],[3,5]],[[1874,5005],[2,-10]],[[1876,4995],[2,5]],[[1878,5000],[0,2]],[[1878,5002],[1,3]],[[1879,5005],[1,-1]],[[1880,5004],[3,-4]],[[1883,5000],[2,21]],[[1885,5021],[2,13]],[[1887,5034],[1,2]],[[1888,5036],[2,-15]],[[1890,5021],[7,-32]],[[1897,4989],[0,-462]],[[1897,4527],[-61,0],[-22,0]],[[1814,4527],[-45,0],[-38,0]],[[1731,4527],[0,348],[1,22]],[[1732,4897],[0,39]],[[1732,4936],[-2,9]],[[1730,4945],[-3,7]],[[1727,4952],[0,-3]],[[1727,4949],[-2,42],[11,90]],[[1736,5081],[4,66],[6,46],[-5,40]],[[1741,5233],[-2,7]],[[1739,5240],[-1,0]],[[1738,5240],[-4,32]],[[1734,5272],[-4,64],[0,495]],[[1730,5831],[28,0]],[[2545,4620],[-1,-51],[5,-37],[3,-58]],[[2552,4474],[0,-439]],[[2552,4035],[-1,-19]],[[2551,4016],[-2,-18]],[[2549,3998],[3,-46]],[[2552,3952],[0,-2]],[[2552,3950],[0,-1]],[[2552,3949],[0,-4]],[[2552,3945],[0,-1]],[[2552,3944],[1,-18]],[[2553,3926],[-4,-34]],[[2549,3892],[-6,-53]],[[2543,3839],[-1,0]],[[2542,3839],[0,-3]],[[2542,3836],[-1,-2]],[[2541,3834],[0,2]],[[2541,3836],[1,0]],[[2542,3839],[-1,-3]],[[2541,3834],[-1,-3]],[[2540,3831],[0,-3]],[[2540,3828],[1,-13]],[[2541,3815],[0,-7]],[[2541,3808],[-2,-8]],[[2539,3800],[1,0]],[[2540,3800],[-2,-11]],[[2538,3789],[0,-19]],[[2538,3770],[0,-7]],[[2538,3763],[0,1]],[[2538,3764],[-1,0]],[[2537,3764],[1,-13]],[[2538,3751],[-1,0]],[[2537,3751],[0,-4]],[[2537,3747],[1,0]],[[2538,3747],[0,-1]],[[2538,3746],[-3,-19],[2,-38]],[[2537,3689],[0,-1]],[[2537,3688],[0,-2]],[[2537,3686],[-5,-4]],[[2532,3682],[-3,-8]],[[2529,3674],[-1,1]],[[2528,3675],[-3,-29]],[[2525,3646],[2,-34],[-4,0],[-10,26]],[[2513,3638],[-7,-37]],[[2506,3601],[0,-2]],[[2506,3599],[2,-6]],[[2508,3593],[-2,6]],[[2506,3601],[-2,8]],[[2504,3609],[-3,-6],[-3,41]],[[2498,3644],[0,1]],[[2498,3645],[2,22],[-3,24],[0,37],[-4,19],[-8,13],[-12,65],[0,25],[5,42],[2,52],[-9,19]],[[2471,3963],[-6,-10],[-1,55],[-2,19],[-8,26],[-9,52],[-4,91],[3,30]],[[2466,4622],[46,-2],[33,0]],[[2628,4471],[0,-481]],[[2628,3990],[0,-1]],[[2628,3989],[-2,-5],[2,-47]],[[2628,3937],[-2,-7]],[[2626,3930],[-9,-18],[-6,9],[0,-40],[-6,-18],[-3,-29]],[[2602,3834],[-5,-25],[0,-24],[-7,1]],[[2590,3786],[-5,33]],[[2585,3819],[0,-11]],[[2585,3808],[-1,-4]],[[2584,3804],[-4,-13],[0,-23]],[[2580,3768],[-3,-13]],[[2577,3755],[-1,12]],[[2576,3767],[-3,7]],[[2573,3774],[0,2]],[[2573,3776],[-1,5]],[[2572,3781],[-3,-9]],[[2569,3772],[0,-2]],[[2569,3770],[-5,-26]],[[2564,3744],[-6,21]],[[2558,3765],[0,2]],[[2558,3767],[-5,0]],[[2553,3767],[-5,-2]],[[2548,3765],[-7,2],[-2,-21]],[[2539,3746],[-1,0]],[[2552,4474],[6,-16],[5,2],[9,24]],[[2572,4484],[52,-2],[4,-11]],[[2336,4156],[2,-10]],[[2338,4146],[0,-1]],[[2338,4145],[1,-7]],[[2339,4138],[1,0]],[[2340,4138],[5,-1]],[[2345,4137],[3,-24]],[[2348,4113],[-3,-4],[-4,-41],[5,-26]],[[2346,4042],[1,0]],[[2347,4042],[2,-34],[4,-5]],[[2353,4003],[2,-5]],[[2355,3998],[0,-402]],[[2355,3596],[-57,0],[-61,0],[-89,0]],[[2148,4156],[16,0]],[[2164,4156],[60,0],[50,0],[62,0]],[[2690,3862],[0,-4]],[[2690,3858],[0,-28]],[[2690,3830],[-1,-25],[3,-21]],[[2692,3784],[0,-1]],[[2692,3783],[1,-2]],[[2693,3781],[0,-1]],[[2693,3780],[0,-7]],[[2693,3773],[0,-5]],[[2693,3768],[0,-1]],[[2693,3767],[2,-18]],[[2695,3749],[2,-10]],[[2697,3739],[1,-11]],[[2698,3728],[0,-1]],[[2698,3727],[0,-4]],[[2698,3723],[1,-3]],[[2699,3720],[2,-8]],[[2701,3712],[0,3]],[[2701,3712],[1,0]],[[2702,3712],[0,-1]],[[2702,3711],[0,-1]],[[2702,3710],[0,-3]],[[2702,3707],[1,-5]],[[2703,3702],[0,-2]],[[2703,3700],[1,0]],[[2704,3700],[0,-1]],[[2704,3699],[1,0]],[[2705,3699],[0,-1]],[[2705,3698],[1,-2]],[[2706,3696],[0,2]],[[2706,3698],[1,0]],[[2707,3698],[-14,-58]],[[2693,3640],[-2,-4]],[[2691,3636],[0,-1]],[[2691,3635],[-3,-10]],[[2688,3625],[-2,-13]],[[2686,3612],[0,-1]],[[2686,3611],[0,-5]],[[2686,3606],[0,-2]],[[2686,3604],[-1,-3]],[[2685,3601],[-1,-2]],[[2684,3599],[-1,-1]],[[2683,3598],[0,-3]],[[2683,3595],[0,-2]],[[2683,3593],[-1,0]],[[2682,3593],[-4,-23]],[[2678,3570],[-4,-22]],[[2674,3548],[-6,-8]],[[2668,3540],[-7,-13]],[[2661,3527],[-1,-5]],[[2660,3522],[-24,0],[-22,5],[-9,-1],[-24,6],[-38,-3],[-6,9],[1,-35],[-38,0]],[[2500,3503],[1,24],[5,-6],[2,72]],[[2628,3990],[11,-3],[5,-32],[0,-21],[9,-8]],[[2653,3926],[7,-26],[1,11],[14,-11],[3,18]],[[2678,3918],[0,1]],[[2678,3919],[1,0]],[[2679,3919],[3,5],[1,-35],[7,-27]],[[2427,2217],[0,1]],[[2427,2218],[1,4]],[[2428,2222],[8,-8],[-2,-16],[-7,19]],[[2452,2149],[0,-1]],[[2452,2149],[0,3]],[[2452,2153],[0,-1]],[[2452,2153],[0,2]],[[2452,2155],[0,17],[-9,38],[-2,-4],[-3,41],[-5,-2],[0,16],[-5,2],[-6,-16],[6,-25]],[[2428,2222],[-1,-4]],[[2427,2217],[-6,-9],[-11,8],[-16,37],[-9,-2],[-8,-14]],[[2377,2237],[-3,17],[6,50]],[[2380,2304],[0,3]],[[2380,2307],[0,4]],[[2380,2311],[0,12]],[[2380,2323],[0,6]],[[2380,2329],[0,2]],[[2380,2331],[0,2]],[[2380,2333],[0,2]],[[2380,2335],[0,1]],[[2380,2336],[0,12]],[[2380,2348],[0,1]],[[2380,2349],[0,1]],[[2380,2350],[-1,0]],[[2379,2350],[0,8]],[[2379,2358],[1,14]],[[2380,2372],[0,1]],[[2380,2373],[0,1]],[[2380,2374],[0,10]],[[2380,2384],[0,1]],[[2380,2385],[0,4]],[[2380,2389],[0,1]],[[2380,2390],[1,15]],[[2381,2405],[2,30]],[[2383,2435],[0,1]],[[2383,2436],[1,27]],[[2384,2463],[1,3]],[[2385,2466],[0,1]],[[2385,2467],[0,5]],[[2385,2472],[0,1]],[[2385,2473],[-1,8]],[[2384,2481],[-1,41]],[[2383,2522],[0,2]],[[2383,2524],[-1,9]],[[2382,2533],[0,16]],[[2382,2549],[-2,16]],[[2380,2565],[0,1]],[[2380,2566],[-1,5]],[[2379,2571],[0,7]],[[2379,2578],[-2,7]],[[2377,2585],[0,1]],[[2377,2586],[0,18]],[[2377,2604],[0,2]],[[2377,2606],[0,6]],[[2377,2612],[-1,17]],[[2376,2629],[-1,14]],[[2375,2643],[0,1]],[[2375,2644],[0,1]],[[2375,2645],[0,2]],[[2375,2645],[-1,0]],[[2374,2645],[0,2]],[[2374,2647],[-1,5]],[[2373,2652],[0,1]],[[2373,2653],[-2,12]],[[2371,2665],[0,1]],[[2371,2666],[0,190]],[[2451,2853],[3,-23],[-1,-27]],[[2453,2803],[-1,-27]],[[2452,2776],[3,9]],[[2455,2785],[-1,-19]],[[2454,2766],[0,-2]],[[2454,2766],[1,-19]],[[2455,2747],[1,3]],[[2456,2750],[3,-16]],[[2459,2734],[-2,-13]],[[2457,2721],[-1,-14]],[[2456,2707],[-2,2]],[[2454,2709],[-2,-4]],[[2452,2705],[1,-16]],[[2453,2689],[1,1]],[[2454,2690],[0,9]],[[2454,2699],[-1,-34],[-3,-10]],[[2450,2655],[0,-2]],[[2450,2653],[-2,-14]],[[2448,2639],[-1,1]],[[2447,2640],[-6,-60],[-1,-29]],[[2440,2551],[1,-21],[-3,-50],[53,1],[-1,-17]],[[2490,2464],[0,-2]],[[2490,2462],[0,-2]],[[2490,2460],[0,-1]],[[2490,2459],[0,-1]],[[2490,2458],[0,-4]],[[2490,2454],[0,-2]],[[2490,2454],[-1,-2]],[[2489,2452],[1,0]],[[2490,2452],[-1,0]],[[2489,2452],[0,-5]],[[2489,2447],[0,-1]],[[2489,2446],[0,1]],[[2489,2446],[0,-2]],[[2489,2444],[0,-1]],[[2489,2443],[0,-1]],[[2489,2442],[0,-2]],[[2489,2442],[0,-2]],[[2489,2440],[-1,-2]],[[2488,2438],[0,-2]],[[2488,2436],[0,-1]],[[2488,2435],[0,-1]],[[2488,2434],[0,-2]],[[2488,2432],[0,-1]],[[2488,2431],[0,-2]],[[2488,2429],[0,-1]],[[2488,2428],[0,-5]],[[2488,2423],[0,-1]],[[2488,2422],[0,-3]],[[2488,2419],[0,-2]],[[2488,2417],[0,-2]],[[2488,2415],[0,-5]],[[2488,2410],[0,-1]],[[2488,2409],[1,-3]],[[2489,2406],[0,-1]],[[2489,2406],[0,-1]],[[2489,2405],[0,-4]],[[2489,2401],[0,-2]],[[2489,2399],[0,-2]],[[2489,2397],[0,-2]],[[2489,2395],[1,-4]],[[2490,2391],[0,-1]],[[2490,2390],[0,-1]],[[2490,2389],[0,-1]],[[2490,2388],[1,-1]],[[2491,2387],[0,-1]],[[2491,2386],[2,-25]],[[2493,2361],[0,-1]],[[2493,2360],[4,-31]],[[2497,2329],[0,-1]],[[2497,2328],[-4,-7],[-5,-38],[7,-12],[0,23],[4,12],[2,-51],[-7,-9],[-3,-24],[5,-42],[11,-13],[2,-27],[-2,-30],[-6,-5],[3,37],[-6,2],[0,24],[-9,12],[-2,20],[-10,10],[5,-18],[-1,-45],[-4,-23],[-1,26],[-4,18],[-5,-1],[-1,-25],[-8,-10],[3,17],[-6,12],[-3,-13]],[[3040,4408],[2,-19],[-5,-2],[3,21]],[[3024,4426],[4,-19],[-10,-7],[6,26]],[[3009,4442],[0,-8]],[[3009,4434],[0,8]],[[3009,4442],[-2,26]],[[3007,4468],[-1,9]],[[3006,4477],[0,-3]],[[3006,4474],[0,3]],[[3006,4477],[-1,5]],[[3005,4482],[-3,26]],[[3002,4508],[0,24],[-11,-2]],[[2943,4537],[7,130]],[[2950,4667],[22,-3]],[[2972,4664],[33,-6],[4,22]],[[3009,4680],[2,-1]],[[3011,4679],[6,11]],[[3017,4690],[1,1]],[[3018,4691],[1,-35],[5,-10],[-8,-19],[-3,-50],[6,-2],[6,-57],[1,-31],[4,-8],[11,13],[1,-28],[-14,-9],[-5,-16],[0,40],[-14,-37]],[[2891,3786],[-7,-6]],[[2884,3780],[-1,-2]],[[2883,3778],[0,-2]],[[2883,3776],[-6,-4],[-1,54],[-4,3],[-8,47],[8,11],[-4,34],[-4,-3],[4,32],[-1,14]],[[2867,3965],[0,-1]],[[2867,3964],[2,26],[-3,5],[2,32],[6,21],[0,26],[-7,-37],[-5,-10],[0,-19],[-5,0],[5,-30],[-3,-31],[1,-97],[4,-32],[-6,-7],[-5,30],[-7,6],[-1,26],[-6,-21],[-1,27]],[[2838,3879],[0,2]],[[2838,3881],[4,24]],[[2842,3905],[0,3]],[[2842,3908],[3,22]],[[2845,3930],[0,4]],[[2842,3958],[-1,5]],[[2841,3963],[0,1]],[[2841,3964],[-2,1]],[[2839,3965],[0,1]],[[2839,3966],[-8,24],[2,21],[-7,18]],[[2826,4029],[0,1]],[[2826,4030],[-2,18]],[[2824,4048],[0,1]],[[2824,4049],[0,7]],[[2824,4056],[0,5]],[[2824,4061],[-2,8]],[[2822,4069],[0,8]],[[2822,4077],[-1,6]],[[2821,4083],[0,-1]],[[2821,4082],[-1,0]],[[2820,4082],[0,2]],[[2820,4082],[-1,0]],[[2819,4082],[-1,0]],[[2818,4082],[-4,17],[-4,-14]],[[2810,4085],[-2,3]],[[2808,4088],[0,-2]],[[2808,4086],[-1,-1]],[[2807,4085],[-1,0]],[[2806,4085],[0,-13]],[[2806,4072],[0,-1]],[[2806,4071],[-1,0]],[[2805,4071],[-1,-4]],[[2804,4067],[-3,2]],[[2801,4069],[-3,5]],[[2798,4074],[0,1]],[[2798,4075],[-1,2]],[[2797,4077],[0,2]],[[2797,4079],[-1,3]],[[2796,4082],[0,1]],[[2796,4083],[1,0]],[[2797,4083],[0,2]],[[2797,4085],[-1,0]],[[2796,4085],[0,1]],[[2796,4086],[0,-1]],[[2796,4085],[0,-2]],[[2796,4082],[-1,1]],[[2795,4083],[0,-1]],[[2795,4082],[0,-7]],[[2795,4075],[-1,-4]],[[2794,4071],[0,-2]],[[2794,4069],[-3,-18]],[[2791,4051],[-3,8]],[[2788,4059],[0,-1]],[[2788,4058],[-1,0]],[[2787,4058],[-1,-11]],[[2786,4047],[-1,-4]],[[2785,4043],[0,-1]],[[2785,4042],[-2,-5]],[[2783,4037],[0,-2]],[[2783,4035],[0,-3]],[[2783,4032],[-2,-8]],[[2781,4024],[-3,-13]],[[2778,4011],[-1,-3]],[[2777,4008],[-1,0],[1,96]],[[2777,4104],[41,0],[61,0]],[[2899,3868],[-2,-42],[-2,4],[-4,-44]],[[3086,4979],[4,2],[1,-26],[-6,-9],[1,33]],[[3020,4729],[0,-1]],[[3020,4729],[-1,2]],[[3019,4731],[0,2]],[[3019,4733],[-1,2]],[[3018,4735],[0,1]],[[3018,4736],[0,1]],[[3018,4737],[0,2]],[[3018,4739],[-1,1]],[[3017,4740],[0,3]],[[3017,4743],[0,17]],[[3017,4760],[-3,17]],[[3014,4777],[0,25]],[[3014,4802],[-1,25],[0,127],[-1,0],[0,106],[-2,80]],[[3010,5140],[0,3]],[[3010,5143],[7,-13],[1,36],[5,-10],[-2,32],[9,33],[3,28],[-1,40],[3,49],[4,11],[1,44],[22,151],[5,-5],[0,-35],[4,-12],[15,20],[4,13],[12,-51],[0,-261],[10,-14],[-1,-67],[4,-22],[5,6],[6,-65],[-6,-27],[-12,-9],[0,-13],[-8,-2],[-6,-37],[-1,24],[-7,-8]],[[3086,4979],[-5,-4],[1,-33],[-9,42],[-7,-50],[1,-21],[-4,-25],[-7,9],[-2,-27],[-2,26],[-5,-10],[-1,-37],[-6,3],[0,19],[-5,-12],[0,-40],[-5,-7],[0,-23],[-5,-13],[-3,-49],[-2,2]],[[2608,5225],[1,-27],[-4,-3],[3,30]],[[2665,4478],[-37,-7]],[[2572,4484],[7,31],[8,78],[2,42],[0,79],[-6,64],[-3,65],[3,15],[-2,58],[7,54],[0,62],[5,8],[0,29],[8,10],[5,35],[-1,-71],[4,0],[3,28],[0,66],[5,17],[7,2],[-4,19],[0,26],[4,26],[8,1],[5,-19],[8,-4],[3,-28],[18,-29],[4,-56],[-4,-18],[4,-9],[-1,-103],[-6,-16],[0,-28],[-10,-33],[-1,-39],[7,-23],[6,21],[6,52],[10,17],[8,-43],[0,-34],[3,-58],[0,-35],[3,-36],[-2,-8],[-1,-56],[-8,7],[-2,-49],[-8,-29],[-1,-45],[-4,-12],[-4,-37]],[[2663,5258],[-9,11],[9,18],[0,-29]],[[2525,5480],[0,-4]],[[2525,5476],[1,-11]],[[2526,5465],[0,1]],[[2526,5465],[0,-3]],[[2526,5462],[1,-3]],[[2527,5459],[0,-4]],[[2527,5455],[0,-1]],[[2527,5454],[-1,-39],[6,31],[10,-4],[8,-19],[6,-54],[17,-7],[5,-10],[3,21],[9,24],[18,1],[14,16],[0,-52],[7,-6],[14,3]],[[2643,5359],[0,-2]],[[2643,5357],[1,-9]],[[2644,5344],[0,4]],[[2644,5344],[0,-41],[3,3],[6,-39],[-22,12],[-2,-36],[-6,31],[-15,16],[-3,-23],[-18,-5],[-2,-29],[-5,-8],[-7,23],[-5,-32],[-1,27],[-9,-79],[-8,-58]],[[2550,5106],[0,-1]],[[2550,5106],[-1,0]],[[2549,5106],[-2,8],[2,42],[-3,-5]],[[2546,5151],[-3,0]],[[2543,5151],[0,4]],[[2543,5151],[0,4]],[[2543,5155],[1,37]],[[2544,5192],[-2,35]],[[2542,5227],[0,1]],[[2542,5228],[-5,18]],[[2537,5246],[0,2]],[[2537,5248],[-2,13]],[[2535,5261],[-1,1]],[[2534,5262],[-1,0]],[[2533,5262],[-1,3]],[[2532,5265],[-1,0]],[[2531,5265],[-1,0]],[[2530,5265],[0,1]],[[2530,5266],[-5,9]],[[2525,5275],[0,2]],[[2525,5277],[-1,-2]],[[2524,5275],[-1,0]],[[2523,5275],[-1,-5]],[[2522,5270],[-1,0]],[[2521,5270],[-1,3]],[[2520,5273],[0,2]],[[2520,5275],[-1,0]],[[2519,5275],[-1,3]],[[2518,5278],[0,-3]],[[2518,5275],[-1,2]],[[2517,5277],[0,1]],[[2517,5278],[1,0]],[[2518,5278],[-1,1]],[[2517,5279],[0,-1]],[[2517,5277],[-8,22],[-24,29]],[[2485,5328],[-5,7],[-3,32]],[[2477,5367],[-1,0]],[[2476,5367],[0,2]],[[2476,5369],[-1,1]],[[2475,5370],[-1,5]],[[2474,5375],[0,-2]],[[2474,5373],[-1,0]],[[2473,5373],[-1,5]],[[2472,5378],[11,20],[7,28],[10,3],[22,73]],[[2522,5502],[0,-2]],[[2522,5500],[0,-1]],[[2522,5499],[0,-4]],[[2522,5495],[0,-3]],[[2522,5492],[-1,-1]],[[2521,5491],[0,-2]],[[2521,5489],[1,-2]],[[2522,5487],[0,-1]],[[2522,5486],[0,-2]],[[2522,5484],[0,-2]],[[2522,5482],[1,0]],[[2523,5482],[1,-1]],[[2524,5481],[1,-1]],[[2527,5459],[-1,3]],[[2526,5466],[-1,10]],[[2525,5480],[-1,1]],[[2523,5482],[-1,0]],[[2522,5484],[0,2]],[[2522,5487],[-1,2]],[[2521,5491],[1,1]],[[2522,5499],[0,1]],[[2522,5502],[4,19],[12,27],[9,-6],[-18,-68],[-2,-19]],[[2521,5669],[2,-16],[-18,-37],[1,16],[15,37]],[[2426,5409],[1,-4]],[[2427,5405],[0,-1]],[[2427,5405],[-1,3]],[[2426,5408],[0,1]],[[2426,5409],[0,1]],[[2426,5410],[-2,0]],[[2424,5410],[0,-1]],[[2424,5409],[0,-2]],[[2424,5407],[-2,-10]],[[2422,5397],[0,-3]],[[2422,5394],[-2,0]],[[2420,5394],[0,-108],[-4,-9]],[[2416,5277],[-6,-16]],[[2410,5261],[0,-2]],[[2410,5259],[-7,-43],[0,-24],[5,-4],[2,-27],[-3,-18],[-1,-98],[5,-30]],[[2411,5015],[0,-1]],[[2411,5014],[1,-2]],[[2412,5012],[1,-5]],[[2413,5007],[3,-2]],[[2416,5005],[1,0]],[[2417,5005],[13,-42],[1,-26],[10,-33]],[[2441,4904],[7,-31],[2,-66]],[[2304,4807],[0,336],[-7,20],[-4,46],[7,27],[1,25]],[[2301,5261],[-1,57]],[[2300,5318],[0,1]],[[2300,5319],[0,14]],[[2300,5333],[-1,0]],[[2299,5333],[1,0]],[[2299,5333],[0,5]],[[2299,5338],[-2,10]],[[2297,5348],[0,1]],[[2297,5349],[0,2]],[[2297,5351],[-1,8]],[[2296,5359],[0,1]],[[2296,5360],[0,1]],[[2296,5361],[0,8]],[[2296,5369],[0,1]],[[2296,5370],[0,2]],[[2296,5372],[0,1]],[[2296,5373],[-1,0]],[[2295,5373],[1,0]],[[2295,5373],[1,2]],[[2296,5375],[0,-2]],[[2296,5375],[-1,2]],[[2295,5377],[0,3]],[[2295,5380],[0,1]],[[2295,5381],[0,2]],[[2295,5383],[0,1]],[[2295,5384],[0,2]],[[2295,5386],[0,2]],[[2295,5388],[-1,1]],[[2294,5389],[0,17]],[[2294,5406],[1,3]],[[2295,5409],[0,1]],[[2295,5410],[0,2]],[[2295,5412],[-1,2]],[[2294,5414],[1,0]],[[2294,5414],[0,1]],[[2294,5415],[1,0]],[[2295,5415],[0,-1]],[[2295,5415],[-1,2]],[[2294,5417],[0,1]],[[2294,5418],[0,-1]],[[2294,5418],[0,8]],[[2294,5426],[1,3]],[[2295,5429],[0,2]],[[2295,5431],[0,6]],[[2295,5437],[0,1]],[[2295,5438],[0,3]],[[2295,5441],[0,1]],[[2295,5442],[0,3]],[[2295,5445],[0,1]],[[2295,5445],[-1,0]],[[2294,5445],[0,1]],[[2294,5446],[0,6]],[[2294,5452],[0,16]],[[2294,5468],[-1,2]],[[2293,5470],[0,1]],[[2293,5471],[0,2]],[[2293,5473],[0,2]],[[2293,5475],[1,1]],[[2294,5476],[-1,-1]],[[2294,5476],[-1,16]],[[2293,5492],[0,2]],[[2293,5494],[0,2]],[[2293,5496],[0,1]],[[2293,5497],[0,2]],[[2293,5499],[0,1]],[[2293,5500],[0,2]],[[2293,5502],[0,1]],[[2293,5503],[0,1]],[[2293,5504],[0,1]],[[2293,5505],[0,2]],[[2293,5507],[0,1]],[[2293,5508],[0,8]],[[2293,5516],[0,1]],[[2293,5517],[0,3]],[[2293,5520],[0,1]],[[2293,5521],[0,6]],[[2293,5527],[0,1]],[[2293,5528],[0,-1]],[[2293,5528],[0,1]],[[2293,5529],[0,5]],[[2293,5534],[-1,3]],[[2292,5537],[1,7]],[[2293,5544],[-1,5]],[[2292,5549],[1,5]],[[2293,5554],[0,1]],[[2293,5555],[0,3]],[[2293,5558],[-1,2]],[[2292,5560],[1,-2]],[[2292,5560],[1,6]],[[2293,5566],[-2,21]],[[2291,5587],[0,2]],[[2291,5589],[0,1]],[[2291,5590],[0,2]],[[2291,5592],[0,1]],[[2291,5592],[0,1]],[[2291,5593],[-1,6]],[[2290,5599],[0,1]],[[2290,5600],[-1,7]],[[2289,5607],[0,1]],[[2289,5608],[-4,61]],[[2285,5669],[0,2]],[[2285,5671],[0,13]],[[2285,5684],[0,1]],[[2285,5685],[0,10]],[[2285,5695],[0,1]],[[2285,5696],[0,-1]],[[2285,5696],[0,4]],[[2285,5700],[0,1]],[[2285,5701],[0,21]],[[2285,5722],[-1,0]],[[2284,5722],[1,2]],[[2285,5724],[0,-2]],[[2285,5724],[0,1]],[[2285,5725],[0,1]],[[2285,5726],[0,-1]],[[2285,5726],[0,1]],[[2285,5727],[0,8]],[[2285,5735],[0,2]],[[2285,5737],[0,-2]],[[2285,5737],[-1,16]],[[2284,5753],[0,1]],[[2284,5754],[1,5]],[[2285,5759],[0,2]],[[2285,5761],[0,1]],[[2285,5762],[0,1]],[[2285,5763],[1,4]],[[2286,5767],[0,2]],[[2286,5767],[0,2]],[[2286,5769],[-2,25]],[[2284,5794],[0,9]],[[2284,5803],[-1,5]],[[2283,5808],[-1,23]],[[2282,5831],[58,0],[0,70],[6,-2],[4,-23],[3,-88],[12,-21],[12,-5],[5,-21],[12,23],[13,-18],[2,-20],[5,1],[3,-42],[3,26],[6,1],[2,-22],[8,-8],[4,-29],[8,6],[12,31],[2,-27],[18,3],[4,-18],[13,-3],[-16,-37],[-18,-34],[-12,-45],[-2,-18],[-15,-64],[-9,-26],[1,-12]],[[2500,3503],[-2,0]],[[2498,3503],[-2,0]],[[2496,3503],[0,-45],[-4,0],[3,-24],[-3,-23]],[[2355,3503],[0,93]],[[2336,4156],[-3,5],[-2,41],[-5,10],[-2,40]],[[2324,4252],[-1,13]],[[2528,2366],[-10,-8],[-2,14],[-14,-23],[-5,-21]],[[2475,3223],[59,0]],[[2092,5831],[0,-569]],[[2092,5262],[0,-176]],[[2092,5086],[-20,0]],[[2072,5086],[0,1]],[[2072,5087],[-33,-2],[-69,2],[-63,-2],[-10,2],[0,-98]],[[1758,5831],[45,0],[66,0],[59,0],[37,0],[40,0],[50,0],[37,0]],[[2802,3014],[0,2]],[[2802,3016],[0,1]],[[2802,3017],[-5,24],[-26,148],[-31,2],[0,22],[-7,39],[-36,8]],[[2697,3260],[-1,0]],[[2696,3260],[-2,-1]],[[2694,3259],[0,-2]],[[2694,3257],[-2,-2]],[[2692,3255],[-1,-1]],[[2691,3254],[0,-2]],[[2691,3252],[-1,0]],[[2690,3252],[0,-1]],[[2690,3251],[-2,-2]],[[2688,3249],[-1,-5]],[[2687,3244],[0,-1]],[[2687,3243],[-1,0]],[[2686,3243],[0,-1]],[[2686,3242],[-1,-3]],[[2685,3239],[-10,-15]],[[2642,3223],[0,40],[5,8]],[[2647,3271],[1,1]],[[2648,3272],[4,38]],[[2652,3310],[0,2]],[[2652,3312],[6,17]],[[2658,3329],[3,0]],[[2661,3329],[0,2]],[[2661,3331],[2,-2]],[[2663,3329],[7,20]],[[2670,3349],[1,8]],[[2671,3357],[3,9]],[[2674,3366],[0,2]],[[2674,3368],[3,3]],[[2677,3371],[1,0]],[[2678,3371],[0,-1]],[[2678,3370],[11,53]],[[2689,3423],[0,-15]],[[2689,3408],[5,5],[4,23]],[[2698,3436],[1,0]],[[2699,3436],[1,4]],[[2700,3440],[2,-3]],[[2702,3437],[3,-3]],[[2705,3434],[4,34]],[[2709,3468],[0,1]],[[2709,3469],[3,8]],[[2712,3477],[1,-3]],[[2713,3474],[1,0]],[[2714,3474],[1,47]],[[2715,3521],[9,-3]],[[2724,3518],[33,-7],[28,0],[63,2],[25,1]],[[2873,3514],[1,-32],[5,-55],[-9,31],[2,-21],[-15,-24],[-4,-13],[19,10],[0,-58],[2,40],[5,11],[2,-21],[-1,-50],[-4,0],[-4,-38],[-5,-5],[-10,8],[-13,21],[16,-34],[-4,-23],[2,-18],[-6,-23],[-6,16],[2,-21],[7,7],[11,-8],[-9,-41],[-15,-9],[-7,-18],[-11,-68],[-5,-45],[-17,-19]],[[2301,5261],[-65,0]],[[2236,5261],[0,1]],[[2236,5262],[-51,0],[-37,0]],[[2148,5262],[-3,0]],[[2145,5262],[-53,0]],[[2092,5831],[53,0],[32,0],[48,0],[57,0]],[[2092,4342],[0,373]],[[2092,4715],[55,-1],[49,0],[51,0],[2,-13]],[[2249,4701],[10,-30],[18,17]],[[2277,4688],[3,0]],[[2280,4688],[17,-37],[4,-27]],[[2301,4624],[3,-5]],[[3018,4739],[0,-2]],[[3018,4737],[-1,3]],[[3017,4740],[1,-4]],[[3018,4735],[1,-2]],[[3019,4731],[1,-2]],[[3020,4728],[-2,-37]],[[2972,4664],[-1,7]],[[2971,4671],[0,1]],[[2971,4672],[-1,35],[3,21],[1,94],[6,40],[2,40]],[[2982,4902],[1,3]],[[2983,4905],[1,13]],[[2984,4918],[-1,32]],[[2983,4950],[1,10]],[[2984,4960],[2,3]],[[2986,4963],[6,13]],[[2992,4976],[3,13]],[[2995,4989],[1,3]],[[2996,4992],[0,2]],[[2996,4994],[1,12]],[[2997,5006],[0,6]],[[2997,5012],[0,4]],[[2997,5016],[-2,26],[3,32]],[[2998,5074],[0,2]],[[2998,5076],[1,12]],[[2999,5088],[0,1]],[[2999,5089],[1,41],[10,10]],[[2887,4100],[1,9]],[[2888,4111],[7,19]],[[2895,4130],[1,3]],[[2896,4133],[2,4]],[[2898,4137],[0,5]],[[2898,4142],[0,4]],[[2898,4146],[0,2]],[[2898,4148],[1,3]],[[2899,4151],[1,3]],[[2900,4154],[7,25]],[[2907,4179],[-7,76],[-4,15]],[[2896,4270],[0,2]],[[2896,4272],[1,28]],[[2897,4300],[1,43],[4,15]],[[2902,4358],[0,2]],[[2902,4360],[7,47]],[[2909,4407],[1,1]],[[2910,4408],[22,-65]],[[2932,4343],[0,-10]],[[2932,4333],[-1,-12]],[[2931,4321],[0,-3]],[[2931,4318],[-1,-8]],[[2930,4310],[0,-3]],[[2930,4307],[0,-1]],[[2930,4306],[-1,-5]],[[2929,4301],[0,-7]],[[2929,4294],[-2,-17]],[[2927,4277],[-1,-1]],[[2926,4276],[-2,0]],[[2924,4276],[0,-1]],[[2924,4275],[0,-2]],[[2924,4273],[0,-3]],[[2924,4270],[0,-2]],[[2924,4268],[0,-1]],[[2924,4267],[-1,-3]],[[2923,4264],[0,-4]],[[2923,4260],[-1,-3]],[[2922,4257],[0,-5]],[[2922,4252],[0,-3]],[[2922,4249],[8,-17],[-2,-78],[-4,-33],[0,-27],[-6,-25],[0,-34],[-8,-32],[-3,-37],[-5,-9],[2,46],[-7,0],[-10,58],[0,38]],[[2121,3596],[0,-93]],[[2121,3503],[-1,0],[0,-837],[-39,0],[-61,0],[0,-4]],[[2020,2662],[0,-1]],[[2020,2661],[0,-4]],[[2020,2657],[0,-4]],[[2020,2653],[0,-1]],[[2020,2652],[3,-23]],[[2023,2629],[0,-3]],[[2023,2626],[-48,0],[0,-83],[-22,-1]],[[1814,4527],[0,-614],[-2,-1],[0,-314]],[[1647,4527],[42,0],[42,0]],[[2927,4277],[1,-7]],[[2928,4270],[0,-1]],[[2928,4269],[-6,-20]],[[2922,4257],[1,3]],[[2923,4264],[1,3]],[[2924,4268],[0,2]],[[2924,4270],[0,3]],[[2924,4273],[0,3]],[[2924,4275],[2,1]],[[2926,4276],[1,1]],[[2928,4270],[1,16]],[[2929,4286],[1,2]],[[2930,4288],[0,8]],[[2930,4296],[1,4]],[[2931,4300],[0,1]],[[2931,4301],[0,1]],[[2931,4302],[1,0]],[[2932,4302],[7,21],[12,2],[3,9],[30,8],[-10,-27],[-14,-22],[-27,-29],[-5,5]],[[2932,4302],[-1,0]],[[2931,4300],[-1,-4]],[[2930,4288],[-1,-2]],[[2929,4286],[0,8]],[[2929,4301],[1,5]],[[2930,4306],[0,1]],[[2930,4310],[1,8]],[[2931,4321],[1,12]],[[2910,4408],[-3,16]],[[2907,4424],[-1,0]],[[2906,4424],[-3,7]],[[2903,4431],[-3,26]],[[2900,4457],[0,1]],[[2900,4458],[-1,27]],[[2899,4485],[0,1]],[[2899,4486],[-2,14]],[[2897,4500],[0,1]],[[2897,4501],[-1,2]],[[2896,4503],[-1,0]],[[2895,4503],[-1,0]],[[2894,4503],[-1,15]],[[2893,4518],[0,1]],[[2893,4519],[-2,8],[-39,0],[-34,0],[-49,0],[0,50]],[[2769,4577],[17,53],[2,25],[6,16],[-1,54],[-5,4],[0,35],[15,19],[22,-6],[5,-20],[5,9],[17,6],[10,40],[6,3],[0,41],[-3,20],[5,4],[-2,33],[-6,8],[7,32],[6,12],[18,93],[9,26],[25,1],[21,4]],[[2948,5089],[-2,-31]],[[2946,5058],[0,-38]],[[2946,5020],[3,-43],[-3,-40],[0,-117]],[[2946,4820],[1,10]],[[2947,4830],[0,1]],[[2947,4831],[3,-11],[0,-106],[-1,-31]],[[2949,4683],[1,-16]],[[2939,4339],[-7,-37]],[[2748,4275],[0,-2]],[[2748,4273],[-2,-3]],[[2746,4270],[-1,-66],[-3,-19],[-2,-45]],[[2740,4140],[-2,-55],[-7,-32],[-7,-19]],[[2724,4034],[-6,-13]],[[2718,4021],[-3,0],[-3,-37]],[[2712,3984],[-1,-26]],[[2711,3958],[-4,11]],[[2707,3969],[-5,-19],[-2,-57]],[[2700,3893],[-2,-25],[-8,-10]],[[2665,4478],[0,-7],[21,-34],[-8,-13],[10,2],[4,-13],[11,21],[11,-1],[9,41],[11,27],[14,23]],[[2748,4524],[0,-249]],[[2359,2972],[-1,-1]],[[2358,2971],[0,1]],[[2358,2971],[0,-3]],[[2358,2968],[0,3]],[[2358,2968],[-1,1]],[[2357,2969],[1,2]],[[2358,2972],[-1,-3]],[[2357,2969],[-1,3]],[[2356,2972],[0,4]],[[2356,2976],[0,-4]],[[2356,2976],[0,1]],[[2356,2977],[-1,0]],[[2355,2977],[-1,0]],[[2354,2977],[-1,3]],[[2353,2980],[-1,0]],[[2352,2980],[0,4]],[[2352,2984],[0,1]],[[2352,2985],[0,-1]],[[2352,2980],[-1,5]],[[2351,2985],[0,3]],[[2351,2988],[0,-3]],[[2351,2988],[-1,0]],[[2350,2988],[0,2]],[[2350,2988],[-1,2]],[[2349,2990],[-3,13]],[[2346,3003],[0,3]],[[2346,3006],[0,-1]],[[2346,3005],[0,-1]],[[2346,3004],[0,-1]],[[2346,3004],[0,1]],[[2346,3006],[-1,5]],[[2345,3011],[-1,2]],[[2344,3013],[-2,8]],[[2342,3021],[0,-1]],[[2342,3021],[0,2]],[[2342,3021],[0,-4]],[[2342,3017],[0,3]],[[2342,3023],[-1,-1]],[[2341,3022],[-3,8]],[[2338,3030],[-1,-8]],[[2337,3022],[0,-1]],[[2337,3021],[0,1]],[[2337,3022],[-1,-6]],[[2336,3016],[-1,1]],[[2335,3017],[0,-1]],[[2335,3016],[-4,1]],[[2331,3017],[-1,0]],[[2330,3017],[-1,0]],[[2329,3017],[-8,-8]],[[2321,3009],[-3,4]],[[2318,3013],[-1,0]],[[2317,3013],[-1,-2]],[[2316,3011],[-2,-2]],[[2314,3009],[-1,-3]],[[2313,3006],[-5,-10]],[[2308,2996],[0,-1]],[[2308,2995],[-6,2],[-4,25],[-3,-14],[-5,22]],[[2290,3030],[-1,-3]],[[2289,3027],[0,2]],[[2289,3029],[0,-2]],[[2289,3027],[-2,-18]],[[2287,3009],[-2,-23]],[[2285,2986],[-2,7]],[[2283,2993],[-2,21]],[[2281,3014],[-1,2]],[[2280,3016],[-1,-4]],[[2279,3012],[0,1]],[[2279,3013],[0,1]],[[2279,3014],[0,-1]],[[2279,3012],[-6,9]],[[2273,3021],[-1,0]],[[2272,3021],[-5,2]],[[2267,3023],[0,-1]],[[2267,3022],[-1,-3]],[[2266,3019],[0,-3]],[[2266,3016],[-4,0]],[[2262,3016],[0,1]],[[2262,3017],[0,21],[-4,7]],[[2258,3045],[0,1]],[[2258,3046],[0,21],[-4,-5]],[[2254,3062],[-1,0]],[[2253,3062],[0,2]],[[2253,3064],[-3,0]],[[2250,3064],[0,-2]],[[2250,3062],[-1,-4]],[[2249,3058],[0,-1]],[[2249,3057],[0,-3]],[[2249,3054],[-5,13]],[[2244,3067],[-3,-3]],[[2241,3064],[-4,4]],[[2237,3068],[0,-1]],[[2237,3067],[-3,10]],[[2234,3077],[-1,1]],[[2233,3078],[-1,0]],[[2232,3078],[0,-1]],[[2232,3077],[-3,1]],[[2229,3078],[-2,23]],[[2227,3101],[-1,6]],[[2226,3107],[0,2]],[[2226,3109],[-1,3]],[[2225,3112],[0,2]],[[2225,3114],[-1,2]],[[2224,3116],[-3,-7]],[[2221,3109],[-1,0]],[[2220,3109],[0,2]],[[2220,3111],[-3,5]],[[2217,3116],[-2,-7]],[[2215,3109],[-1,0]],[[2214,3109],[-8,35]],[[2206,3144],[-1,-2],[0,361],[-50,0],[-34,0]],[[1557,5304],[11,-23],[3,-74],[4,-8]],[[1575,5199],[8,-11],[14,29],[7,4],[16,-13]],[[1620,5208],[11,17],[11,-4],[5,17],[9,8],[19,27],[49,0]],[[1724,5273],[10,-1]],[[1529,4527],[-3,20],[-2,41],[0,63],[-3,40],[3,23],[0,61],[4,6],[4,81],[1,101],[2,108],[2,32],[0,122],[1,73],[13,17],[6,-11]],[[2900,4154],[-1,-3]],[[2899,4151],[-1,-3]],[[2898,4146],[0,-4]],[[2898,4137],[-2,-4]],[[2896,4133],[-1,-3]],[[2895,4130],[-5,-10]],[[2777,4104],[-29,0],[0,169]],[[2748,4524],[21,53]],[[3006,4477],[0,-3]],[[3006,4474],[0,-12]],[[3006,4462],[-1,20]],[[3005,4482],[-4,-17],[-1,-52],[-11,-11]],[[2744,2723],[0,8]],[[2744,2731],[-1,3]],[[2743,2734],[0,1]],[[2743,2735],[0,9]],[[2743,2744],[1,3]],[[2744,2747],[0,3]],[[2744,2750],[-1,1]],[[2743,2751],[0,9]],[[2743,2760],[6,-21],[-5,-16]],[[2741,2767],[0,-1]],[[2741,2766],[1,0]],[[2742,2766],[1,-3]],[[2743,2763],[0,-3]],[[2743,2751],[1,-1]],[[2744,2747],[-1,-3]],[[2743,2734],[1,-3]],[[2744,2723],[-4,16]],[[2740,2739],[-1,16]],[[2739,2755],[1,4]],[[2740,2759],[0,5]],[[2740,2764],[1,2]],[[2742,2766],[-1,1]],[[2741,2766],[-1,-2]],[[2740,2759],[-1,-4]],[[2739,2755],[1,-16]],[[2740,2739],[1,-24]],[[2741,2715],[-1,-6]],[[2740,2704],[0,5]],[[2740,2704],[0,-2]],[[2740,2700],[0,2]],[[2740,2700],[-7,-18]],[[2733,2682],[-1,2]],[[2732,2685],[-1,3]],[[2802,3016],[0,-2]],[[2802,3014],[0,2]],[[2802,3014],[-6,-18],[-10,-64],[-1,-47],[-7,-29],[-4,1],[-12,-77],[-8,-21],[-11,4]],[[2092,4715],[0,371]],[[2660,3522],[55,-1]],[[2496,3503],[2,0]],[[2300,1975],[5,8],[-12,-49],[1,22],[6,19]],[[2278,1804],[-7,-23],[5,-3],[-3,-75],[2,-7],[4,-81],[1,-47],[4,-25],[-6,-10],[0,-13],[-6,17],[-1,17],[-18,11],[-5,25],[-6,3],[-4,25],[-8,5],[-3,62],[-7,53],[1,37],[-2,8],[-1,66],[-10,35],[-1,35],[-4,29],[-4,8],[-4,37],[-1,39],[-3,12],[-1,31],[-3,16],[-1,39],[-3,25],[-6,20],[-2,21],[-5,10],[0,19],[-6,26],[-7,-1],[-16,22],[-3,-21],[-8,-4],[-4,-49],[-1,-50],[-4,-6],[-3,-37],[-5,-2],[-13,54],[-7,8],[-15,69],[-4,52],[0,53],[-5,37],[0,22],[-9,46],[-2,-2],[-14,68],[-6,44],[-6,12],[-5,53],[-4,7]],[[2377,2237],[-6,-2],[-12,-29],[-2,8],[-7,-8],[3,43],[-5,-16],[-5,12],[1,-41],[3,-3],[0,-36],[-7,-21],[-2,-37],[-4,-22],[-17,-41],[-12,-11],[-7,21],[1,-24],[6,-21],[-8,-25],[-3,7],[0,-31],[-4,-14],[-7,2],[0,-17],[5,12],[-4,-50],[-6,-3],[3,-26],[-3,-60]],[[1897,4527],[0,-185],[56,0]],[[2883,3778],[1,2]],[[2891,3786],[-8,-66],[-4,-50],[-3,-6],[-1,-44],[-2,13],[2,69],[7,54],[1,20]],[[2877,3514],[-1,0]],[[2876,3514],[-3,0]],[[2707,3698],[1,-4]],[[2708,3694],[0,-2]],[[2708,3692],[-1,-9]],[[2707,3683],[0,-1]],[[2707,3682],[2,-20]],[[2709,3662],[1,-8]],[[2710,3654],[1,-3]],[[2711,3651],[0,-2]],[[2711,3649],[1,0]],[[2712,3649],[1,0]],[[2713,3649],[0,-1]],[[2713,3648],[6,-10]],[[2719,3638],[1,6]],[[2720,3644],[4,15],[4,-18],[8,10],[12,35],[1,-11],[7,36],[-1,28]],[[2755,3739],[0,2]],[[2755,3741],[4,24]],[[2759,3765],[0,3]],[[2759,3768],[5,31],[0,19],[5,30]],[[2769,3848],[0,2]],[[2769,3850],[2,28]],[[2771,3878],[0,1]],[[2771,3879],[1,14],[10,-33]],[[2782,3860],[0,2]],[[2782,3862],[9,78],[3,-14],[4,31]],[[2798,3957],[0,-4]],[[2798,3953],[3,12]],[[2801,3965],[5,29],[2,62],[15,-62],[3,35]],[[2843,3952],[1,-2]],[[2844,3947],[1,-2]],[[2845,3940],[0,-1]],[[2845,3930],[-3,-22]],[[2842,3908],[0,-3]],[[2842,3905],[-4,-24]],[[2838,3879],[-1,-31],[8,10],[1,-32],[7,-24],[4,7],[1,-25],[8,-16],[-2,-54],[-6,-2],[7,-13],[-6,-3],[8,-19],[-1,-20],[-6,10],[5,-45],[0,-22],[-13,33],[8,-56],[5,-10],[-1,24],[10,-8],[3,-69]],[[2948,5089],[51,0]],[[1574,5721],[1,1]],[[1575,5722],[3,-24],[-7,-13],[5,-25],[6,-8],[0,-25],[-7,21],[0,27],[-4,8],[3,38]],[[1557,5304],[-6,20],[-11,-6],[-2,60],[-5,45],[8,29],[-10,18],[-2,43],[-2,12],[-3,70],[-7,48],[-1,75],[22,-43],[19,-8],[4,7],[9,-18],[4,-37],[-4,-5],[-4,-35],[12,45],[-3,-61],[3,-15]],[[1578,5548],[-2,-14]],[[1576,5534],[0,-1]],[[1576,5531],[0,2]],[[1576,5531],[0,-4]],[[1576,5527],[0,-3]],[[1576,5524],[0,-17],[-10,5],[0,-25],[7,-11],[3,41],[7,4],[-3,90],[5,41],[-3,11],[-2,43],[-5,16]],[[1575,5722],[-1,-1]],[[1574,5721],[5,11],[-1,56],[-7,7],[0,37],[40,-1],[33,0],[45,0],[41,0]],[[2550,5105],[0,-21],[-6,-7],[-6,-73],[3,-5],[10,59],[5,3],[4,56],[6,-14],[-12,-95],[-2,-59],[-5,-56],[0,-60],[-5,-52],[0,-67],[2,-7],[1,-87]],[[2422,5397],[2,10]],[[2424,5409],[0,1]],[[2424,5410],[0,-1]],[[2424,5409],[2,1]],[[2426,5408],[1,-3]],[[2427,5405],[0,-1]],[[2427,5404],[6,-3],[23,46],[6,-1],[-5,-65],[8,13],[7,-16]],[[3186,19],[6,-4],[-9,-14],[3,18]]],"transform":{"scale":[0.03589617161716172,0.005372018681745461],"translate":[-179.1473399999999,17.674395666227213]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment