Skip to content

Instantly share code, notes, and snippets.

@Fil
Last active November 22, 2016 22:42
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 Fil/0d04ed3e416b684b3bb7813c6a2e0761 to your computer and use it in GitHub Desktop.
Save Fil/0d04ed3e416b684b3bb7813c6a2e0761 to your computer and use it in GitHub Desktop.
Dynamic Simplification IV + map slant [UNLISTED]
license: gpl-3.0

Adding a slant transform to the projection pipeline, thanks @mbostock!

8><------------

This map dynamically simplifies the geometry in response to zooming, so that the smallest displayed detail is approximately one square pixel. Use the mousewheel, or pinch on touch devices, to zoom.

forked from mbostock's block: Dynamic Simplification IV + map slant

<!DOCTYPE html>
<canvas width="960" height="500"></canvas>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://unpkg.com/topojson-client@2"></script>
<script src="https://unpkg.com/topojson-simplify@2"></script>
<script>
var canvas = d3.select("canvas"),
context = canvas.node().getContext("2d"),
width = canvas.property("width"),
height = canvas.property("height");
var land,
borders;
var minZ, // minimum area threshold for simplification
transform = d3.geoIdentity().clipExtent([[0, 0], [width, height]]),
simplify = d3.geoTransform({point: function(x, y, z) { if (z >= minZ) this.stream.point(x, y); }}),
slant = d3.geoTransform({point: function(x, y) { this.stream.point(x-y/2, y); }});
var zoom = d3.zoom()
.scaleExtent([1 / (1 << 5), 1 << 2])
.on("zoom", zoomed);
context.fillStyle = "#bbb";
context.strokeStyle = "#fff";
context.lineJoin = "round";
context.lineCap = "round";
var path = d3.geoPath()
.projection({stream: function(s) { return simplify.stream(slant.stream(transform.stream(s))); }})
.context(context);
d3.json("us-states.json", function(error, us) {
if (error) throw error;
topojson.presimplify(us);
land = topojson.feature(us, us.objects.states);
borders = topojson.mesh(us, us.objects.states, function(a, b) { return a !== b; });
// An arbitrary scale and center point to set the initial view.
// This projection is baked into the TopoJSON file,
// but is used here to compute the desired zoom translate.
var scale = 0.05, point = d3.geoMercator()
.translate([0, 0])
.scale(4000)
([-75.959, 38.250]);
canvas
.call(zoom)
.call(zoom.transform, d3.zoomIdentity
.translate(width / 2, height / 2)
.scale(scale)
.translate(-point[0], -point[1]));
});
function zoomed(d) {
var t = d3.event.transform;
minZ = 50 / (t.k * t.k);
transform.translate([t.x, t.y]).scale(t.k);
context.clearRect(0, 0, width, height);
context.beginPath();
path(land);
context.fill();
context.beginPath();
path(borders);
context.stroke();
}
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.2505799989768104,0.05981249429127265],"translate":[-12506.843716758947,-7235.143282868895]},"objects":{"states":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","id":"02","arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[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]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[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]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[222]],[[223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]],[[270]],[[271]],[[272]],[[273]],[[274]],[[275]],[[276]],[[277]],[[278]],[[279]],[[280]],[[281]],[[282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]],[[292]],[[293]],[[294]],[[295]],[[296]],[[297]],[[298]],[[299]],[[300]],[[301]],[[302]],[[303,304]],[[305]],[[306]],[[307]],[[308]],[[309]],[[310]],[[311]],[[312]],[[313]],[[314]],[[315]],[[316]],[[317]],[[318]],[[319]],[[320]],[[321]],[[322]],[[323]],[[324]],[[325]],[[326]],[[327]],[[328]],[[329]],[[330]],[[331]],[[332]],[[333]],[[334]],[[335]],[[336]],[[337]],[[338]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[350]],[[351]],[[352]],[[353]],[[354]],[[355]],[[356]],[[357]],[[358]],[[359]],[[360]],[[361]],[[362]],[[363]],[[364]],[[365]],[[366]],[[367]],[[368]],[[369]],[[370]],[[371]],[[372]],[[373]],[[374]],[[375]],[[376]],[[377]],[[378]],[[379]],[[380]],[[381]],[[382]],[[383]],[[384]],[[385]],[[386]],[[387]],[[388]],[[389]],[[390]],[[391]],[[392]],[[393]],[[394]],[[395]],[[396]],[[397]],[[398]],[[399]],[[400]],[[401]],[[402]],[[403]],[[404]],[[405]],[[406]],[[407,408,409,410]],[[411]],[[412]],[[413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]],[[420]],[[421]],[[422]],[[423]],[[424]],[[425]],[[426]],[[427]],[[428]],[[429]],[[430]],[[431]],[[432]],[[433]],[[434]],[[435]],[[436]],[[437]],[[438]],[[439]],[[440]],[[441]],[[442]],[[443]],[[444]],[[445]],[[446]],[[447]],[[448]],[[449]],[[450]],[[451]],[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]],[[461]],[[462]],[[463]],[[464]],[[465]],[[466]],[[467]],[[468]],[[469]],[[470]],[[471]],[[472]],[[473]],[[474]],[[475]],[[476]],[[477]],[[478]],[[479]],[[480]],[[481]],[[482,483]],[[484]],[[485]],[[486]],[[487]],[[488]],[[489]],[[490]],[[491]],[[492]],[[493]],[[494]],[[495]],[[496]],[[497]],[[498]],[[499]],[[500]],[[501]],[[502]],[[503]],[[504]],[[505]],[[506]],[[507]],[[508]],[[509]],[[510]],[[511]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[520]],[[521]],[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532]],[[533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[539]],[[540]],[[541]],[[542]],[[543]],[[544]],[[545]],[[546]],[[547]],[[548]],[[549]],[[550]],[[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]],[[665]],[[666]],[[667]],[[668]],[[669]],[[670]],[[671]],[[672]],[[673]],[[674]],[[675]],[[676]],[[677]],[[678]],[[679]],[[680]],[[681]],[[682]],[[683]],[[684]],[[685]],[[686]],[[687]],[[688]],[[689]],[[690]],[[691]],[[692]],[[693]],[[694]],[[695]],[[696]],[[697]],[[698]],[[699]],[[700]],[[701]],[[702]],[[703]],[[704]],[[705]],[[706]],[[707]],[[708]],[[709]],[[710]],[[711]],[[712]],[[713]],[[714]],[[715]],[[716]],[[717]],[[718]],[[719]],[[720]],[[721,722,723,724,725,726,727,728,729,730,731]]]},{"type":"MultiPolygon","id":"15","arcs":[[[732]],[[733]],[[734]],[[735]],[[736]],[[737]],[[738]],[[739]],[[740]]]},{"type":"MultiPolygon","id":"72","arcs":[[[741,742,743]],[[744]],[[745]],[[746]],[[747]]]},{"type":"MultiPolygon","id":"01","arcs":[[[748]],[[749,750]],[[751]],[[752]],[[753]],[[754]],[[755]],[[756,757,758,759,760,761]]]},{"type":"Polygon","id":"05","arcs":[[762,763,764,765,766,767]]},{"type":"Polygon","id":"04","arcs":[[768,769,770,771,772]]},{"type":"MultiPolygon","id":"06","arcs":[[[773]],[[774]],[[775]],[[776]],[[777]],[[778]],[[779]],[[780]],[[781]],[[782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790,-771,791,792,793,794,795,796,797,798,799,800,801,802]]]},{"type":"Polygon","id":"08","arcs":[[803,804,805,806,807,808]]},{"type":"MultiPolygon","id":"09","arcs":[[[809]],[[810,811,812,813]]]},{"type":"MultiPolygon","id":"11","arcs":[[[814,815,816,817,818,819,820,821]],[[822,823,824]]]},{"type":"MultiPolygon","id":"10","arcs":[[[825,826]],[[827,828,829,830,831]]]},{"type":"MultiPolygon","id":"12","arcs":[[[832]],[[833]],[[834]],[[835]],[[836]],[[837]],[[838]],[[839]],[[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,-872]],[[880,881,-875,882,883,884]],[[885,886,887,888,889,-891,891,892]],[[893]],[[894,895,896]],[[897,898,899,900,901,902,903,904,905,906]],[[907]],[[908]],[[909,910]],[[911,912,913]],[[914,915,916]],[[917,918,919,920]],[[921]],[[922,923,924]],[[925,926,927]],[[928]],[[929]],[[930,931,932]],[[933,934,935,936]],[[-935,937,938,939]],[[940,941,942,943,944,945,946,947,948,949,950]],[[951,952,953,954,955,956]],[[957]],[[958]],[[959]],[[960,961,962,963,964,965,966,967,968]],[[969]],[[970,971,972,973]],[[974,975,976,977,978,979]],[[980,981,982,983,984,-978,985,986,987,988,989,990]],[[991]],[[992]],[[993]],[[994,995]],[[996]],[[997]],[[998,999,1000,1001,1002]],[[1003,-1001,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,-1044,1044,1045]],[[1046]],[[1047]],[[1048,1049,1050]],[[1051,1052]],[[1053,1054,1055,1056,1057,1058,1059,1060]],[[1061]],[[1062]],[[1063]],[[1064]],[[1065]],[[1066]],[[1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078]],[[1079]],[[1080]],[[1081]],[[1082]],[[-751,1083]],[[1084,1085,1086,1087,1088,1089,1090,1091,1092,1093]],[[1094]],[[1095]],[[1096]],[[1097,1098,1099,1100]],[[1101,1102,1103]],[[1104,1105,-1101,1106,-1103,1107]],[[1108]],[[1109]],[[1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122]],[[1123,1124,1125,1126,1127,1128]],[[1129,1130,-905,1131,1132,1133,1134,1135,1136,1137,1138,-869,1139,1140,-866,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,-1163,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,-942,1174,1175,1176,1177,1178,1179,-968,1180,-966,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,-1016,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,-758,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,-1115,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,-1072,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260]]]},{"type":"MultiPolygon","id":"13","arcs":[[[1261]],[[1262]],[[1263]],[[1264]],[[1265,1266,1267]],[[1268]],[[1269]],[[1270,1271]],[[1272]],[[1273]],[[1274,1275]],[[1276]],[[1277]],[[1278,1279]],[[1280]],[[1281]],[[1282]],[[1283]],[[1284]],[[1285]],[[1286]],[[1287]],[[1288,1289]],[[1290]],[[1291,1292,1293,1294,1295,1296]],[[1297]],[[1298,1299,1300,1301,1302,1303,1304]],[[1305]],[[1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,-1215,-757,1319,1320,1321,1322,1323,1324,1325]]]},{"type":"Polygon","id":"19","arcs":[[1326,1327,1328,1329,1330,1331]]},{"type":"Polygon","id":"16","arcs":[[1332,1333,1334,1335,1336,1337,1338]]},{"type":"Polygon","id":"17","arcs":[[1339,1340,1341,1342,-1328,1343]]},{"type":"Polygon","id":"18","arcs":[[1348,1349,-1341,-1347,1350,1351]]},{"type":"Polygon","id":"20","arcs":[[1353,1354,-805,1355]]},{"type":"MultiPolygon","id":"21","arcs":[[[1356,1357]],[[1358,1359,1360,1361,-1342,-1350,1362]]]},{"type":"MultiPolygon","id":"22","arcs":[[[1363]],[[1364]],[[1365]],[[1366]],[[1367]],[[1368]],[[1369,1370]],[[1371]],[[1372,1373,1374]],[[1375]],[[1376]],[[1377]],[[1378]],[[1379]],[[1380]],[[1381]],[[1382]],[[1383]],[[1384]],[[1385]],[[1386]],[[1387]],[[1388]],[[1389]],[[1390]],[[1391]],[[1392]],[[1393]],[[1394]],[[1395]],[[1396]],[[1397]],[[1398,1399]],[[1400]],[[1401]],[[1402]],[[1403]],[[1404]],[[1405]],[[1406]],[[1407]],[[1408]],[[1409]],[[1410]],[[1411]],[[1412]],[[1413]],[[1414,1415]],[[1416]],[[1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,-765,1440,1441]]]},{"type":"MultiPolygon","id":"25","arcs":[[[1442]],[[1443]],[[1444]],[[1445]],[[1446]],[[1447]],[[1448]],[[1449]],[[1450]],[[1451]],[[1452]],[[1453]],[[1454,1455,1456,1457,-814,1458,1459,1460,1461]]]},{"type":"MultiPolygon","id":"24","arcs":[[[1462,1463,1464,1465,1466,1467]],[[1468,1469,1470,-1466]],[[1471,1472,1473]],[[1474]],[[1475,1476]],[[1477]],[[1478,-1477]],[[1479]],[[1480]],[[1481,1482]],[[1483]],[[1484,1485,1486]],[[1487]],[[-829,1488]],[[1489]],[[1490]],[[1491]],[[1492]],[[1493]],[[1494]],[[1495]],[[1496,1497,1498,1499,1500,1501,1502,1503,1504,-825,1505,1506,1507,-831,1508]]]},{"type":"MultiPolygon","id":"23","arcs":[[[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]],[[1545]],[[1546]],[[1547]],[[1548]],[[1549]],[[1550]],[[1551]],[[1552]],[[1553]],[[1554]],[[1555]],[[1556]],[[1557,1558]],[[1559]],[[1560]],[[1561]],[[1562]],[[1563]],[[1564]],[[1565]],[[1566]],[[1567]],[[1568]],[[1569]],[[1570]],[[1571]],[[1572]],[[1573,1574,1575,1576,1577,1578,1579]]]},{"type":"MultiPolygon","id":"26","arcs":[[[1580]],[[1581]],[[1582,-1584,1584]],[[1585]],[[1586]],[[1587]],[[1588]],[[1589]],[[1590]],[[1591]],[[1592]],[[1593]],[[1594]],[[1595]],[[1596]],[[1597]],[[1598,-1352,1599]],[[1600]],[[1601]],[[1602]],[[1603]],[[1604]],[[1605]],[[1606]],[[1607]],[[1608]],[[1609,1610]],[[1611]],[[1612]],[[1613,1614,1615]],[[1616,1617]],[[1618]],[[1619,1620,1621,1622,1623,1624,1625,1626]],[[1627]],[[1628,1629,1630]],[[1631]],[[1632]]]},{"type":"MultiPolygon","id":"27","arcs":[[[1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,-1332,1671,1672,1673]]]},{"type":"Polygon","id":"29","arcs":[[-1343,-1362,1682,-1358,1683,-768,1684,-1354,1685,-1329]]},{"type":"MultiPolygon","id":"28","arcs":[[[1686]],[[1687]],[[1688]],[[1689]],[[1690]],[[1691]],[[1692]],[[-761,1693,-1441,-764,1694]]]},{"type":"Polygon","id":"30","arcs":[[1695,1696,1697,-1339,1698]]},{"type":"MultiPolygon","id":"37","arcs":[[[1699,1700,1701,1702]],[[1703,1704]],[[1705,-1705]],[[1706]],[[1707]],[[1708]],[[1709]],[[1710]],[[1711]],[[1712]],[[1713]],[[1714]],[[1715]],[[1716]],[[1717]],[[1718,1719,1720]],[[1721]],[[1722]],[[1723]],[[1724]],[[1725]],[[1726]],[[1727]],[[1728]],[[1729]],[[1730]],[[1731]],[[1732]],[[1733]],[[1734]],[[1735]],[[1736,1737,1738,1739]],[[1740,1741,1742,1743]],[[1744,1745,1746,-1748,1748,1749,1750,1751,1752,1753,1754,-1321,1755,1756,1757,1758]]]},{"type":"Polygon","id":"38","arcs":[[-1673,1759,-1696,1760]]},{"type":"Polygon","id":"31","arcs":[[-1330,-1686,-1356,-804,1761,1762]]},{"type":"MultiPolygon","id":"33","arcs":[[[1763]],[[1764,-1461,1765,1766,1767]]]},{"type":"MultiPolygon","id":"34","arcs":[[[1768]],[[1769]],[[1770]],[[1771]],[[1772]],[[1773]],[[1774,-1776,1776,-827,1777,1778,1779,1780,1781,1782,1783]]]},{"type":"Polygon","id":"35","arcs":[[1784,1785,1786,-769,-807]]},{"type":"Polygon","id":"32","arcs":[[1787,-772,-791,1788,-1335]]},{"type":"MultiPolygon","id":"36","arcs":[[[1789]],[[1790]],[[1791]],[[1792]],[[1793]],[[1794]],[[1795]],[[1796]],[[1797]],[[1798]],[[1799]],[[1800]],[[1801]],[[1802]],[[1803]],[[1804]],[[1805]],[[1806]],[[1807]],[[1808]],[[1809]],[[1810,-1780,1811,1812,1813,1814,1815,-1459,-813,1816,1817]]]},{"type":"MultiPolygon","id":"39","arcs":[[[1823,1824,1825,1826]],[[1827]],[[1828]],[[1829]],[[1830]],[[1831,-1363,-1349,-1599,1832,-1834,1834,-1836,1836,1837,1838,1839,1840,1841,1842]]]},{"type":"Polygon","id":"40","arcs":[[-1685,-767,1845,-1785,-806,-1355]]},{"type":"MultiPolygon","id":"41","arcs":[[[1846,1847,1848,1849,1850]],[[1851,-1849,1852,1853,1854]],[[1855]],[[1856]],[[1857,1858]],[[1859]],[[1860]],[[1861]],[[1862]],[[1863]],[[1864,1865,1866,-1336,-1789,-803,1867,-1847,1868,1869,-1855,1870,1871,1872,1873,1874]],[[1875]],[[1876]],[[1877]],[[1878]],[[1879]],[[1880]]]},{"type":"MultiPolygon","id":"42","arcs":[[[-1779,1881,-832,-1508,1882,-1843,1883,-1812]]]},{"type":"MultiPolygon","id":"44","arcs":[[[1885]],[[1886]],[[1887]],[[1888]],[[1889,-1456]],[[1890,-811,-1458]]]},{"type":"MultiPolygon","id":"45","arcs":[[[1891]],[[1892]],[[1893,1894]],[[1895,1896]],[[1897,1898,1899,1900,1901,1902,1903]],[[1904]],[[1905]],[[1906]],[[1907]],[[1908,1909,1910]],[[-1910,1911,1912]],[[1913]],[[1914]],[[1915]],[[1916]],[[1917]],[[1918]],[[1919]],[[1920]],[[1921]],[[1922]],[[1923]],[[1924,1925]],[[1926]],[[1927]],[[1928]],[[1929]],[[1930]],[[1931]],[[1932]],[[1933,1934]],[[1935]],[[1936]],[[1937]],[[-1700,1938,1939]],[[1940,-1753,1941]],[[1942,1943,1944,1945,-1947,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,-1322,-1755,1959,1960,1961]]]},{"type":"Polygon","id":"46","arcs":[[-1672,-1331,-1763,1962,-1697,-1760]]},{"type":"Polygon","id":"47","arcs":[[1963,-1756,-1320,-762,-1695,-763,-1684,-1357,-1683,-1361]]},{"type":"MultiPolygon","id":"48","arcs":[[[1964]],[[1965]],[[1966,1967]],[[1968]],[[1969]],[[1970]],[[1971]],[[1972,1973,1974,1975,1976]],[[1977,1978]],[[1979]],[[1980,1981,1982,1983]],[[1984]],[[1985]],[[1986]],[[1987,1988,1989]],[[1990]],[[1991]],[[1992]],[[1993]],[[1994]],[[1995]],[[1996]],[[1997]],[[1998]],[[1999]],[[2000]],[[2001]],[[2002]],[[2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,-1786,-1846,-766,-1440,2015]]]},{"type":"Polygon","id":"49","arcs":[[2016,-808,-773,-1788,-1334]]},{"type":"MultiPolygon","id":"51","arcs":[[[2017,-1743,2018]],[[2019]],[[2020]],[[2021]],[[2022]],[[2023]],[[2024]],[[2025]],[[2026]],[[2027]],[[2028]],[[2029]],[[2030]],[[2031]],[[2032]],[[2033]],[[2034]],[[2035]],[[2036]],[[2037,2038]],[[2039]],[[2040,2041]],[[2042]],[[2043,-1470]],[[2044]],[[2045,2046,2047,2048,2049,2050,2051,-1498,2052]],[[-1485,2053]],[[2054,2055,-1740,2056,-1741,2057,-1757,-1964,-1360,2058,-1506,-824,2059,2060,2061,-821,2062,-819,2063,2064,2065,2066,2067]]]},{"type":"Polygon","id":"50","arcs":[[-1766,-1460,-1816,2068]]},{"type":"MultiPolygon","id":"53","arcs":[[[2069]],[[2070]],[[2071]],[[2072]],[[2073]],[[2074]],[[2075]],[[2076]],[[2077]],[[2078]],[[2079]],[[2080]],[[2081]],[[2082]],[[2083]],[[2084]],[[2085]],[[2086]],[[2087]],[[2088]],[[2089]],[[2090]],[[2091]],[[2092]],[[2093]],[[2094]],[[2095]],[[2096]],[[2097]],[[2098]],[[2099]],[[2100]],[[2101]],[[2102]],[[2103,2104]],[[2105,2106,-1337,-1867,2107,2108,2109,2110]]]},{"type":"MultiPolygon","id":"55","arcs":[[[2114]],[[2115]],[[2116]],[[2117]],[[2118]],[[2119]],[[2120]],[[2121]],[[2122]],[[-1626,2123,-1344,-1327,-1671,2124]],[[2125]],[[2126]],[[2127]],[[2128]],[[2129]],[[2130]],[[2131]],[[2132]],[[2133]],[[2134]],[[2135]],[[2136]]]},{"type":"Polygon","id":"54","arcs":[[-1507,-2059,-1359,-1832,-1883]]},{"type":"Polygon","id":"56","arcs":[[-1963,-1762,-809,-2017,-1333,-1698]]},{"type":"MultiPolygon","id":"78","arcs":[[[2138]],[[2139]],[[2140]]]}]}},"arcs":[[[12,50976],[7,35],[0,43],[6,18],[-9,9],[-2,37],[-9,12],[-4,-21],[2,-59],[-3,-26],[9,-45],[3,-3]],[[54,50811],[7,13],[6,80],[-15,-6],[2,21],[-4,18],[-7,22],[0,-67],[4,-38],[-4,-27],[4,-30],[5,-4],[2,18]],[[241,50637],[-2,17],[-5,-13],[7,-4]],[[83,50461],[9,18],[9,12],[6,-2],[5,11],[2,24],[-24,-1],[-7,-62]],[[30,50466],[-5,2],[0,-27],[5,9],[0,16]],[[159,50406],[2,14],[-7,28],[-4,-33],[9,-9]],[[141,50391],[7,15],[-1,27],[-6,9],[-3,-14],[-4,12],[-6,-20],[0,-18],[13,-11]],[[99698,50337],[11,20],[7,-24],[0,19],[7,19],[-1,-16],[5,-3],[3,15],[10,18],[5,-10],[10,14],[5,18],[-1,33],[10,19],[5,-19],[6,14],[-1,17],[5,44],[4,9],[1,22],[5,17],[4,-2],[2,26],[10,46],[11,20],[7,19],[8,-4],[0,39],[3,-1],[5,22],[-2,17],[5,8],[-1,14],[10,18],[4,-18],[5,9],[-6,16],[2,19],[13,-26],[11,7],[9,-14],[2,48],[8,-3],[8,23],[-5,13],[-16,13],[-2,-11],[2,-26],[-13,18],[-6,14],[-4,-6],[-13,11],[-6,16],[-8,-22],[5,-44],[-6,-17],[-10,-7],[-2,-31],[-8,-10],[-7,-20],[-5,-28],[-10,-22],[-1,-20],[-6,-17],[0,-22],[-18,-65],[1,-14],[-10,-31],[-7,2],[-1,-16],[-7,-10],[0,-18],[-4,15],[-6,-32],[-9,0],[-7,11],[-6,-8],[-1,-23],[-7,3],[-10,-23],[-5,-21],[-14,-24],[-2,-37],[4,2],[3,-33],[7,1],[6,30]],[[648,50028],[4,17],[-6,-5],[2,-12]],[[659,50011],[-2,16],[-5,-5],[7,-11]],[[99568,49981],[5,13],[16,7],[1,19],[6,4],[4,37],[3,4],[3,28],[-14,1],[-11,-63],[-12,-18],[-6,-41],[5,9]],[[94,49972],[11,26],[5,25],[4,49],[-4,37],[0,13],[-5,17],[-11,3],[-9,-40],[-9,-30],[3,-63],[8,-34],[7,-3]],[[904,49961],[-7,-9],[7,-2],[0,11]],[[797,49920],[0,46],[-6,9],[-11,-5],[-3,18],[14,-3],[-3,35],[9,-28],[5,15],[-3,21],[1,25],[-3,2],[5,28],[-7,15],[0,54],[-4,-25],[-5,-12],[2,29],[0,15],[-9,17],[-8,-35],[-3,18],[-4,0],[0,-26],[2,-48],[-2,-4],[0,-23],[-3,-12],[0,-50],[7,-8],[-7,-10],[-2,-15],[0,-36],[7,-13],[11,-1],[5,13],[4,-16],[7,-7],[4,17]],[[826,49884],[4,5],[1,22],[8,20],[-2,44],[9,-10],[-2,-15],[4,-13],[9,4],[0,12],[11,4],[3,27],[4,49],[-6,-42],[-5,-2],[-2,17],[-7,-4],[-13,-17],[9,51],[0,21],[-7,-17],[-7,-7],[2,-15],[-2,-30],[-6,40],[0,24],[4,32],[-2,13],[-7,-35],[4,-29],[-11,-18],[-4,3],[-4,-25],[4,-27],[4,2],[1,-16],[-5,-41],[4,-26],[7,-1]],[[879,49829],[1,13],[-9,20],[2,22],[7,-8],[0,15],[8,-26],[3,18],[-5,23],[3,7],[-3,41],[-4,-8],[-7,-23],[-7,-8],[-8,11],[-1,-25],[-4,0],[-9,-18],[13,-37],[7,-4],[5,-11],[8,-2]],[[294,49815],[9,14],[3,-11],[4,13],[6,-7],[3,9],[11,-14],[2,29],[14,46],[-5,25],[0,23],[5,-1],[4,21],[4,-16],[5,13],[-2,25],[4,9],[7,-8],[2,-15],[9,-11],[6,22],[7,13],[14,-35],[15,-10],[5,-12],[-5,47],[-6,23],[-9,11],[-9,-7],[-9,13],[-9,29],[-9,14],[11,35],[-9,12],[-2,22],[-5,23],[-2,34],[7,26],[-5,-3],[-2,34],[-8,18],[-9,-22],[2,17],[-5,12],[-4,39],[4,67],[3,25],[0,16],[-7,-5],[0,-16],[-7,-16],[2,-27],[-4,-34],[-7,-1],[-4,23],[-2,-20],[-5,-6],[-4,-18],[0,-17],[-5,9],[-4,-9],[-2,17],[-11,-30],[4,-31],[-2,-21],[4,-5],[18,8],[6,-26],[5,5],[11,-15],[2,-56],[0,-24],[-6,-24],[-7,-2],[-4,-24],[-5,2],[-4,22],[-5,-9],[-2,-22],[-7,-13],[2,-17],[-8,-20],[-3,-17],[-4,0],[-11,-30],[-9,-17],[-5,-25],[0,-22],[9,-45],[14,-24],[15,-5]],[[477,49815],[2,40],[-7,16],[-4,-18],[4,-51],[5,13]],[[848,49794],[-2,-15],[5,-3],[-3,18]],[[541,50211],[-11,20],[0,18],[-9,17],[-6,-7],[0,-26],[-5,3],[-6,-34],[-9,-37],[-14,7],[0,15],[-7,-6],[-10,39],[-7,4],[-2,-9],[-7,18],[-22,-10],[-7,35],[2,51],[-11,-7],[0,-47],[-5,-10],[1,-27],[-5,5],[2,-17],[9,-14],[9,-38],[7,22],[9,2],[6,13],[11,-7],[1,-34],[4,8],[9,-14],[0,-16],[16,-4],[19,-43],[5,3],[11,-12],[5,-20],[8,-7],[9,-43],[-2,-30],[2,-6],[0,-55],[2,-26],[0,-91],[5,-23],[13,3],[3,16],[4,-6],[15,52],[1,27],[-7,20],[2,43],[-18,52],[-2,36],[2,36],[5,15],[-2,16],[2,12],[-3,12],[-2,23],[3,30],[-5,39],[-4,1],[2,17],[-14,-8],[0,-31],[-4,18],[2,17]],[[864,49796],[-2,-2],[0,-27],[6,-17],[1,37],[-5,9]],[[833,49745],[4,14],[-7,0],[3,-14]],[[933,49755],[4,52],[5,-7],[0,19],[-7,5],[-7,-9],[-6,-31],[-11,-10],[2,-13],[7,-11],[2,11],[4,-19],[5,-2],[2,15]],[[851,49741],[0,18],[-12,3],[0,-18],[10,-11],[2,8]],[[877,49763],[-4,-2],[-2,-28],[8,9],[-2,21]],[[99405,49737],[17,20],[-6,2],[-9,15],[-8,-19],[3,-41],[3,23]],[[962,49729],[7,-13],[4,16],[-16,20],[-2,36],[-7,-16],[1,-49],[4,-13],[9,19]],[[99602,49739],[-9,26],[-1,-25],[7,-8],[0,-23],[3,30]],[[99637,49687],[6,1],[19,36],[6,30],[0,13],[-6,36],[-6,17],[-2,26],[-11,8],[-9,-61],[-9,-21],[7,-18],[-4,-48],[3,-14],[6,-5]],[[99588,49716],[-5,7],[-5,-16],[5,-17],[5,26]],[[1035,49701],[-6,5],[-3,-16],[9,11]],[[904,49676],[5,18],[-1,-22],[12,8],[6,-8],[3,18],[-12,19],[-8,-2],[2,13],[-2,12],[-18,-17],[-3,-21],[3,-15],[9,-7],[4,4]],[[715,49657],[7,19],[0,57],[-3,41],[5,24],[-2,38],[-5,-12],[4,-35],[-6,-36],[-2,22],[2,22],[-2,14],[4,11],[-13,24],[-2,35],[0,46],[-7,1],[4,11],[12,0],[-1,28],[5,5],[6,-18],[9,22],[5,35],[-2,-48],[4,-17],[9,-7],[4,48],[3,-37],[4,22],[0,37],[-2,33],[4,21],[-6,33],[6,28],[0,22],[-6,4],[-2,18],[-7,-3],[0,-24],[-7,-30],[-6,9],[-3,46],[-6,28],[2,20],[-9,36],[-5,-43],[-8,17],[4,22],[-7,8],[-6,-13],[-9,18],[0,-14],[-5,5],[-6,37],[0,41],[4,9],[-2,30],[-9,-14],[-7,5],[-6,40],[-7,-48],[7,-21],[-7,-15],[-2,-51],[4,-24],[-2,-41],[-2,-11],[-3,37],[-6,35],[0,38],[-5,10],[-6,34],[-3,61],[-6,33],[-11,-17],[-3,-12],[0,-43],[3,-10],[-2,-49],[15,-68],[9,-7],[4,-31],[5,-6],[-3,-50],[5,4],[4,22],[5,-14],[-7,-4],[3,-14],[-5,-17],[5,-8],[6,-20],[-15,20],[-9,-15],[0,-31],[-3,-6],[1,-32],[11,-7],[-1,-13],[3,-14],[7,56],[10,6],[0,21],[16,-11],[5,10],[6,-16],[-4,-17],[-9,-3],[-7,-46],[-2,-34],[7,-39],[4,24],[4,-15],[5,15],[-4,-42],[-7,-19],[0,14],[-11,-49],[-5,-46],[5,-49],[6,-25],[14,-8],[15,30],[9,-9],[5,-65],[11,-19]],[[99963,49614],[7,26],[8,14],[3,35],[6,20],[9,4],[3,13],[-3,37],[-8,4],[0,27],[3,13],[-4,30],[-7,7],[-11,19],[-6,39],[-10,4],[-9,-34],[-9,-2],[-8,-16],[-1,-22],[-9,-19],[-2,-41],[4,-4],[-2,-72],[15,-4],[9,-50],[8,-15],[6,4],[0,-15],[8,-2]],[[1298,49616],[4,17],[-6,6],[0,-37],[2,14]],[[99544,49563],[8,31],[1,39],[4,24],[-5,22],[-12,9],[-1,-12],[-9,-10],[2,-11],[-2,-55],[1,-21],[7,6],[-1,-19],[7,-3]],[[839,49450],[10,4],[6,9],[7,0],[4,40],[9,20],[-2,44],[6,29],[5,-11],[-2,22],[-5,8],[-4,-17],[-2,29],[-5,-9],[-2,22],[-4,13],[2,15],[4,-5],[5,37],[-9,23],[-9,-1],[-2,-46],[-7,0],[-5,-13],[-6,8],[-9,-8],[2,-26],[-6,-47],[-3,-44],[2,-27],[7,-26],[0,-25],[5,-3],[4,-28],[4,13]],[[99395,49411],[7,24],[9,19],[-2,14],[4,29],[-3,30],[-9,13],[3,44],[-5,6],[-5,30],[-3,2],[-1,26],[-6,11],[2,42],[-2,9],[-5,-17],[-6,26],[3,25],[10,13],[8,-8],[0,56],[-6,-7],[-2,15],[-6,-17],[-1,32],[-4,-19],[-6,-3],[-3,-23],[-3,15],[-6,-14],[-1,14],[4,9],[-2,32],[-9,-29],[4,-18],[-1,-14],[-8,22],[-5,-6],[-17,50],[-5,41],[1,73],[-2,26],[-7,1],[-2,-27],[-13,-51],[-8,-23],[-2,13],[-3,-34],[9,-28],[3,7],[7,-31],[6,4],[5,-25],[6,4],[-2,-22],[5,-22],[1,-19],[8,-26],[14,0],[4,-11],[12,-1],[4,-15],[-2,-23],[5,-16],[0,-74],[8,-33],[4,-27],[-1,-37],[4,-9],[1,-26],[11,-30],[2,8]],[[1567,49374],[0,20],[-9,46],[2,8],[7,-9],[2,26],[3,22],[2,-20],[6,-22],[5,0],[-2,22],[4,1],[4,-22],[5,-2],[2,28],[7,-14],[7,23],[2,20],[7,-25],[6,21],[5,-35],[4,-5],[7,6],[4,24],[9,-6],[4,-26],[9,13],[1,17],[4,-4],[-2,-22],[6,-4],[5,20],[7,1],[2,16],[4,-16],[7,-4],[7,9],[13,4],[0,11],[-13,4],[-3,16],[-9,8],[-15,-10],[-11,30],[-7,5],[-11,-7],[-5,-13],[-2,19],[-9,0],[-2,-12],[-2,23],[-7,2],[-6,-8],[-16,36],[-2,-30],[-3,-6],[3,40],[-9,-17],[-3,5],[-4,-10],[-7,1],[-6,25],[4,16],[-4,7],[-7,-19],[-9,6],[-4,-18],[0,-28],[-13,5],[-14,-14],[-5,14],[1,-26],[-3,-16],[-4,21],[-4,-1],[-7,22],[-5,-8],[-11,4],[-9,23],[-13,-26],[-5,11],[-4,-20],[-4,7],[-5,-34],[0,-26],[-4,8],[-7,-44],[-4,16],[-5,-5],[-6,-28],[2,-17],[-5,-11],[3,-11],[6,13],[5,-2],[0,13],[15,-9],[2,4],[12,-30],[4,15],[-5,44],[9,-11],[0,15],[7,-33],[4,12],[-2,26],[5,1],[4,31],[0,-32],[7,-29],[0,-17],[11,-5],[7,16],[4,-22],[4,2],[7,-22],[9,-10],[9,27],[0,-19],[4,33],[1,-16],[8,-21],[7,-5]],[[1260,49322],[-2,20],[-7,0],[9,-20]],[[1015,49358],[-6,-8],[-1,-23],[3,-16],[7,26],[-3,21]],[[98922,48954],[11,8],[4,17],[-6,43],[-11,2],[-4,-15],[-1,-21],[-4,-12],[-1,-26],[12,4]],[[1872,48926],[7,-2],[-2,18],[8,24],[7,-7],[7,7],[6,19],[2,50],[-4,16],[-7,17],[-2,12],[-13,27],[-5,29],[-9,-12],[-11,35],[-8,3],[-7,31],[-3,-17],[-17,5],[-7,-22],[4,-65],[5,-14],[2,-38],[7,-23],[-2,-21],[11,-13],[2,-11],[11,-15],[5,-26],[6,-15],[7,8]],[[1394,48867],[2,22],[11,14],[7,17],[6,44],[3,4],[8,59],[7,32],[0,37],[-7,33],[-2,20],[-6,1],[0,48],[-7,37],[-5,2],[-15,-11],[-5,13],[-9,-19],[-4,41],[2,40],[5,17],[8,11],[5,34],[11,35],[2,22],[-2,22],[2,17],[-4,13],[-4,-23],[-7,-18],[2,-11],[-9,17],[-4,25],[-2,-17],[-10,-4],[1,14],[-1,30],[-17,-9],[0,-28],[-9,4],[0,-25],[-5,4],[-6,24],[-11,7],[-14,-7],[0,25],[9,-12],[11,2],[0,18],[-7,-3],[5,22],[-5,8],[1,27],[-5,12],[-2,33],[-2,-15],[-7,0],[-4,-67],[-3,26],[-6,-9],[-3,6],[-8,-47],[-3,12],[5,40],[11,48],[-4,4],[-7,-39],[-5,-1],[-6,-29],[-3,17],[7,28],[5,7],[-3,22],[-6,-1],[0,-17],[-9,-4],[-7,39],[-2,-14],[-5,25],[-6,-35],[-3,-29],[-2,11],[0,31],[-7,-2],[5,28],[-5,23],[-6,5],[-4,-19],[-7,-16],[2,-13],[-15,7],[-12,-24],[-6,-4],[-12,22],[-11,-9],[-2,33],[-4,-17],[-7,-10],[-4,15],[4,9],[0,25],[-20,-7],[-2,20],[-16,-22],[-9,-3],[-9,15],[-9,-19],[-4,7],[-9,-13],[-9,22],[2,-13],[-6,-9],[4,-16],[7,18],[2,-27],[5,4],[4,-25],[7,21],[13,-6],[-4,-11],[2,-18],[11,-13],[11,1],[2,21],[-6,22],[0,11],[11,-11],[7,-32],[8,21],[-2,-32],[5,-42],[8,1],[3,36],[2,-4],[9,-41],[7,15],[2,-20],[-3,-28],[7,-30],[0,33],[2,34],[3,-33],[11,-8],[-2,11],[6,10],[9,-6],[7,28],[4,-21],[3,-3],[4,-22],[-5,-26],[11,1],[0,25],[12,-11],[11,11],[-2,-15],[8,3],[5,18],[4,-8],[-11,-28],[5,-8],[-2,-29],[4,-10],[2,12],[20,1],[9,18],[-9,-29],[-13,-18],[-2,-36],[2,-18],[13,19],[7,-23],[6,0],[5,34],[9,-6],[2,-26],[-13,-39],[-2,-31],[13,2],[4,-6],[11,17],[7,51],[2,-47],[3,5],[6,-14],[-2,-22],[5,17],[9,-49],[6,-8],[0,-46],[-2,-10],[-7,5],[-11,-8],[11,-28],[0,-12],[-15,12],[-3,-29],[0,-21],[7,-5],[4,-27],[-8,6],[-11,43],[4,9],[6,42],[-15,3],[0,-19],[-4,-7],[-5,11],[-13,-30],[-2,-19],[8,-24],[5,12],[11,0],[2,16],[11,-29],[3,-30],[-3,-37],[0,-26],[12,0],[4,-16],[0,-30],[4,9],[12,-14],[8,-25],[12,-1]],[[98319,48685],[7,12],[-5,21],[-5,5],[-13,61],[0,30],[4,26],[-2,19],[4,2],[0,41],[2,4],[0,51],[2,26],[-5,0],[-4,-15],[-12,17],[-3,-6],[1,-24],[-10,-14],[2,-34],[-6,9],[-2,-16],[-8,-2],[-2,22],[-4,-4],[-9,16],[-11,1],[-8,-19],[-7,6],[-4,-23],[-11,-5],[7,-55],[12,-1],[4,-38],[10,24],[7,0],[7,-12],[5,-52],[11,-8],[2,12],[4,-55],[5,-10],[4,23],[5,-7],[7,-26],[10,6],[9,-8]],[[2210,48781],[-4,28],[-11,-9],[-5,-19],[-2,22],[-4,0],[-1,-32],[0,-64],[7,-32],[9,-22],[16,60],[-5,68]],[[2237,48590],[-7,10],[-9,-8],[3,-31],[4,-19],[9,16],[0,32]],[[2364,48329],[8,2],[7,11],[13,34],[1,42],[-14,97],[-15,14],[-3,-18],[-8,9],[-7,25],[-18,88],[-7,-31],[-8,-2],[2,-23],[0,-59],[4,-28],[2,-41],[12,-11],[6,-14],[5,-31],[-2,-9],[4,-20],[9,3],[4,-8],[2,-28],[3,-2]],[[98421,48259],[9,12],[3,41],[-15,-5],[-10,-17],[-3,-13],[7,-10],[4,-25],[5,17]],[[98378,48229],[12,13],[-1,9],[6,17],[-4,8],[-9,-4],[-8,-47],[4,4]],[[98356,48183],[14,31],[1,19],[-7,-11],[-4,6],[-5,-17],[-4,-28],[5,0]],[[2517,48158],[5,17],[11,18],[-2,69],[-5,25],[-7,7],[-13,-13],[-6,11],[-3,-11],[2,-22],[0,-34],[3,-41],[-2,-22],[17,-4]],[[2782,48138],[-11,38],[-7,-1],[11,-35],[7,-2]],[[2802,48068],[-6,21],[2,-21],[4,0]],[[2615,47957],[4,-2],[3,16],[4,-12],[5,7],[0,20],[8,10],[1,37],[-5,37],[4,15],[-4,24],[-7,16],[5,47],[-7,11],[-6,-11],[-5,-40],[-4,-21],[-9,8],[-2,-17],[-7,-3],[-4,-19],[-5,1],[-2,22],[-13,50],[-5,-7],[-5,7],[-11,-33],[0,-32],[-4,-16],[7,-49],[15,-7],[11,19],[9,-10],[-2,-37],[4,-13],[11,6],[10,-9],[2,-23],[4,8]],[[2535,47894],[11,24],[2,-6],[0,65],[-6,26],[-9,19],[-13,-32],[-5,-52],[7,-18],[2,-26],[11,0]],[[2978,47779],[-2,14],[0,-29],[2,15]],[[98064,47744],[10,1],[11,21],[-2,19],[7,0],[7,17],[7,-31],[8,-16],[6,0],[14,22],[8,-18],[13,29],[5,41],[-5,30],[-7,18],[1,16],[9,0],[-2,19],[5,0],[3,-22],[7,-26],[10,-11],[2,10],[-4,14],[2,17],[4,-19],[9,11],[3,13],[-1,54],[-10,24],[0,30],[7,11],[14,-2],[10,7],[9,19],[6,-10],[-3,32],[2,13],[-5,0],[-11,-13],[-17,19],[0,32],[-5,-10],[2,-19],[-9,-19],[-10,-44],[-6,15],[1,26],[-6,8],[0,18],[-7,0],[0,30],[4,9],[-1,21],[-8,-9],[-1,18],[-8,0],[-2,-18],[-8,-22],[0,-30],[-4,-19],[-16,36],[-2,30],[-3,10],[-6,40],[-10,41],[-7,9],[0,-29],[-4,-26],[0,-28],[-7,-20],[-8,20],[-4,-24],[-4,7],[0,23],[-5,12],[-10,-27],[-5,2],[6,-40],[3,-66],[-1,-28],[9,-39],[-2,-19],[-10,30],[-7,-12],[-4,13],[-13,-6],[-13,28],[-2,-15],[4,-11],[0,-35],[6,-30],[-3,-26],[-14,13],[-6,-6],[-5,15],[-13,12],[-2,-23],[-8,18],[-6,-22],[15,-38],[2,-21],[12,-13],[2,-20],[16,-39],[8,-30],[12,1],[12,11],[5,-23],[7,-5],[7,17],[10,7]],[[2853,47753],[2,-35],[1,11],[-3,24]],[[2642,47703],[-2,33],[2,14],[-5,7],[-4,32],[0,38],[-9,21],[-4,-8],[0,-28],[-3,0],[-2,-23],[2,-62],[5,-29],[4,5],[3,-18],[8,-8],[5,26]],[[2615,47586],[5,34],[0,30],[-16,-17],[4,-6],[3,-39],[4,-2]],[[3419,46849],[2,2],[0,38],[-2,21],[-3,-7],[0,-35],[3,-19]],[[2802,48068],[7,-7],[4,-38],[-4,-21],[18,-8],[11,-27],[2,-48],[-5,-12],[3,-41],[13,13],[11,-24],[4,2],[3,-24],[-5,-13],[3,-36],[-5,-26],[5,-29],[-1,-13],[5,-2],[13,-25],[-2,-27],[4,1],[7,-69],[0,-22],[-11,-37],[2,-36],[-2,-31],[3,-36],[4,4],[2,-38],[13,-51],[5,-5],[4,-43],[7,0],[5,-11],[8,-50],[0,-23],[5,-6],[6,12],[1,17],[10,17],[10,-10],[4,-29],[9,-1],[6,36],[14,-13],[6,17],[5,-22],[-2,-17],[4,-18],[0,-22],[-9,-1],[2,-29],[-6,-25],[-9,-1],[-5,-14],[1,-16],[6,-5],[7,-93],[-5,-21],[-2,-33],[2,-17],[14,-79],[2,-34],[5,4],[11,-28],[13,-46],[4,-30],[12,-11],[8,-18],[3,5],[6,-17],[11,-13],[3,12],[9,-3],[9,-22],[8,8],[5,21],[-2,23],[8,23],[11,13],[23,5],[7,-6],[2,32],[0,26],[-7,35],[-7,30],[-6,43],[4,44],[0,55],[-9,36],[-6,8],[-3,20],[-4,1],[-14,32],[-19,64],[-3,1],[-15,28],[-2,24],[-11,13],[-16,27],[-5,3],[-13,23],[-7,29],[-2,18],[-7,35],[5,9],[-7,17],[0,29],[-2,35],[-5,-31],[-2,52],[3,20],[-9,20],[-14,74],[-4,56],[-7,18],[-4,23],[0,-23],[-5,0],[-4,34],[-9,-7],[-7,17],[-9,31],[-2,28],[-9,37],[-9,16],[3,35],[-5,-35],[-6,6],[2,22],[-3,16],[-11,-27],[-7,19],[3,35],[6,17],[1,26],[-10,3],[-4,-34],[-4,-3],[-5,22],[-7,2],[-4,23],[-11,39],[-2,-5],[-11,31],[-5,-4],[-4,24],[-7,-15],[-4,26],[-5,16],[2,9],[-8,17],[-5,-7]],[[3636,46093],[-2,13],[-11,41],[2,26],[7,13],[-5,22],[5,19],[-5,14],[-10,1],[-3,-14],[-6,16],[11,42],[-7,9],[4,17],[-8,11],[-7,-9],[0,19],[6,31],[-10,-9],[-9,-48],[-5,-4],[-4,-30],[0,-35],[-3,-33],[3,-26],[6,35],[3,-35],[6,-24],[3,18],[0,41],[6,-16],[2,-32],[-2,-41],[7,-20],[4,16],[0,-18],[5,-14],[6,6],[5,-23],[6,21]],[[3652,46059],[-6,1],[6,-18],[0,17]],[[3505,45980],[-2,-8],[5,-12],[-3,20]],[[3523,45958],[-5,9],[-4,26],[2,9],[-6,13],[-2,31],[-3,-19],[7,-38],[-2,-13],[0,-18],[9,-29],[4,16],[0,13]],[[3630,45799],[11,39],[-2,24],[-9,11],[-22,-9],[0,-52],[2,-13],[4,16],[0,-30],[3,-3],[13,17]],[[3479,45755],[8,14],[9,47],[2,50],[-8,9],[-2,24],[-5,35],[2,15],[-4,7],[6,7],[3,32],[-5,21],[0,16],[7,9],[4,-27],[5,6],[-2,49],[-9,47],[8,4],[7,-49],[5,-18],[2,-30],[4,6],[14,-50],[4,-2],[2,33],[0,-28],[5,-29],[-2,-24],[2,-47],[7,4],[0,-48],[4,-36],[7,-38],[4,22],[0,43],[-6,35],[4,29],[2,-11],[7,6],[6,-37],[5,3],[4,-36],[5,20],[0,50],[4,11],[-2,44],[5,-5],[2,-36],[8,18],[-4,13],[0,40],[-9,8],[3,37],[-5,10],[-18,14],[-4,-10],[-2,-34],[-3,25],[0,40],[-8,25],[-3,28],[-11,9],[7,35],[-18,42],[-13,-7],[-9,11],[2,13],[7,-9],[9,15],[-12,48],[-13,21],[-11,7],[18,7],[-2,19],[-10,19],[3,22],[11,-18],[2,19],[-4,34],[4,-14],[5,-34],[-1,-21],[7,-15],[5,23],[-3,42],[5,-29],[0,-60],[15,-44],[5,22],[0,35],[7,-3],[-1,28],[3,-12],[-3,-44],[1,-44],[6,-27],[5,2],[4,55],[0,17],[-4,39],[6,-11],[7,7],[5,19],[2,42],[-7,5],[2,22],[-9,9],[0,17],[-8,-17],[-3,32],[-4,1],[-2,-39],[-2,6],[0,25],[-7,-16],[0,52],[-7,-20],[0,19],[-7,34],[-4,-25],[-4,11],[-7,-19],[2,34],[-2,8],[-7,-33],[-4,-6],[4,38],[-6,20],[8,20],[3,23],[2,39],[-7,-39],[-7,-17],[-2,74],[-4,28],[-7,-12],[7,62],[-5,-11],[-6,-33],[-3,-54],[-2,2],[-7,-43],[0,52],[3,17],[6,70],[-4,17],[-14,-35],[-2,-24],[-4,25],[13,34],[7,42],[-4,24],[-7,-7],[-2,-22],[-7,7],[-5,-16],[-4,-47],[-4,2],[-3,-29],[0,-42],[-6,14],[2,47],[4,14],[-4,26],[4,11],[0,24],[7,20],[2,45],[-4,12],[2,27],[-5,0],[-6,-19],[0,-25],[-7,-8],[0,63],[-7,-19],[-2,-18],[3,-24],[-3,-11],[-2,25],[-7,-46],[-4,67],[0,30],[-9,-12],[-2,-20],[4,-10],[0,-20],[-8,12],[4,-23],[-4,0],[-5,28],[2,33],[-4,31],[-7,-7],[4,-35],[0,-10],[-8,-5],[-7,10],[6,-18],[3,-29],[-14,38],[1,35],[-3,14],[-11,13],[-4,13],[-5,-19],[-6,18],[-5,40],[-9,-2],[-4,28],[-5,-3],[-2,12],[-13,10],[-5,76],[-11,3],[-9,-20],[-6,22],[-14,21],[2,24],[-4,13],[-7,41],[-2,47],[-4,-3],[-3,-22],[-6,-15],[-7,2],[-7,-23],[-6,9],[-3,71],[-4,-9],[-5,9],[-4,-22],[-11,-30],[-9,-3],[-2,7],[-7,-22],[-9,7],[0,-31],[-8,-4],[-5,-20],[0,-13],[9,-8],[7,-32],[11,-33],[0,-11],[6,-9],[0,-11],[11,-39],[5,2],[2,20],[5,-32],[2,3],[0,33],[6,-18],[5,5],[2,18],[2,-7],[-4,-33],[6,-4],[0,-26],[7,7],[3,19],[9,4],[8,24],[-2,-24],[-7,-34],[-2,16],[-6,-19],[4,0],[13,-23],[3,-46],[15,23],[5,36],[4,0],[-4,-62],[4,-2],[2,27],[14,53],[2,-1],[-5,-98],[7,17],[7,30],[-2,-34],[13,0],[-2,-13],[-12,-15],[3,-15],[0,-14],[6,7],[14,24],[6,4],[3,-22],[8,12],[3,-12],[-9,-21],[0,-18],[7,0],[-3,-34],[-8,-13],[2,-14],[6,0],[23,27],[9,-11],[2,-24],[9,0],[6,-9],[5,5],[-5,-25],[-7,16],[-10,4],[-5,22],[-5,-5],[-4,-26],[-9,-17],[-2,-27],[4,-16],[-4,-6],[-5,-52],[-2,-29],[5,-6],[2,-20],[9,-13],[4,2],[3,15],[6,13],[2,25],[3,19],[2,-38],[-4,-34],[9,14],[6,1],[-4,-32],[-5,-25],[-11,-23],[0,-39],[5,-38],[17,-26],[9,4],[9,-8],[9,4],[-2,24],[11,62],[0,83],[9,-53],[4,24],[0,17],[7,24],[-2,-37],[2,-9],[-5,-35],[-4,-52],[-4,-30],[6,-2],[9,32],[7,0],[4,-17],[-9,-4],[-6,-22],[8,-13],[7,12],[14,-4],[-5,-23],[-11,-1],[-4,-12],[-7,2],[-11,-14],[-13,8],[4,-29],[-4,-13],[-3,8],[-9,-8],[-13,-35],[-4,4],[-7,39],[-7,-4],[-6,-45],[-9,-16],[-5,-22],[5,3],[11,41],[7,-7],[-3,-17],[-7,-2],[1,-22],[-12,-39],[-15,-17],[-3,-35],[3,-39],[6,3],[5,-25],[4,-40],[5,-56],[9,-9],[8,-60],[5,11],[11,-18],[0,-19],[11,-9],[7,-22],[11,30],[2,-9],[5,10],[-2,-18],[4,-19],[20,-47],[5,27],[-1,8],[-2,44],[5,17],[4,-60],[7,-33],[7,2]],[[3801,45720],[-13,12],[-7,-29],[2,-15],[14,-41],[0,26],[9,21],[-5,26]],[[3848,45605],[4,-10],[14,-1],[2,22],[4,9],[3,34],[-3,13],[-4,-16],[-5,0],[-2,39],[-2,8],[-5,-13],[-2,-27],[-4,-20],[-9,-5],[-13,0],[-12,13],[-8,-19],[13,-16],[16,0],[6,-26],[7,15]],[[3941,45508],[7,8],[11,-4],[4,16],[1,25],[-2,20],[-5,4],[0,21],[-4,35],[-9,-12],[-3,17],[-6,-2],[-3,14],[-4,-12],[-16,-4],[-8,-26],[-5,24],[-4,-14],[-14,-15],[5,-52],[4,-9],[7,16],[4,-37],[7,8],[5,22],[0,-17],[6,-9],[9,17],[5,29],[2,-34],[13,13],[-7,-42]],[[3993,45414],[-7,14],[2,-22],[5,8]],[[3683,45343],[2,19],[7,-9],[7,3],[0,50],[-3,11],[5,36],[9,10],[9,-44],[-2,23],[4,0],[14,27],[2,24],[-11,24],[-9,-6],[-5,8],[25,37],[4,-19],[2,8],[12,-24],[4,26],[-5,17],[-2,33],[-11,6],[-13,50],[-7,-21],[-5,2],[-4,-14],[-7,0],[0,38],[-6,24],[-2,33],[-7,-8],[2,-43],[-13,-17],[-5,16],[-6,-21],[-3,25],[-15,28],[-4,-28],[2,-34],[-5,-25],[-6,-13],[-5,-54],[4,-17],[-2,-13],[2,-23],[5,-12],[-2,-42],[4,-14],[13,-17],[5,-24],[0,-19],[4,2],[3,-19],[8,4],[5,-15],[2,11]],[[3999,45337],[7,1],[-2,28],[-5,-10],[-7,13],[-2,15],[-8,9],[-3,13],[-6,-20],[8,-13],[11,-28],[7,-8]],[[3808,45195],[0,26],[-7,-1],[-4,36],[-11,21],[0,29],[6,6],[-2,42],[5,-9],[8,19],[12,-5],[6,14],[5,-13],[6,17],[2,22],[-4,30],[-6,-9],[-18,5],[-1,26],[3,17],[-5,-4],[-4,15],[0,16],[-7,-11],[-6,15],[6,18],[-4,43],[-3,12],[-11,-22],[-2,4],[-9,-40],[2,-19],[5,-16],[5,-43],[-5,-6],[-4,-18],[-3,-26],[9,-26],[7,-33],[-4,-28],[-5,-6],[-4,24],[-12,11],[-4,-29],[2,-40],[7,-29],[7,-11],[-3,-29],[9,7],[2,54],[7,-8],[2,-40],[3,8],[4,-18],[5,-7],[13,9]],[[4644,45041],[5,14],[-11,5],[-5,-15],[7,-11],[4,7]],[[4564,45012],[-2,9],[4,21],[-6,-8],[-2,-19],[4,-13],[2,10]],[[4653,44969],[12,2],[-3,15],[2,28],[3,6],[9,-8],[-7,44],[-2,-26],[-11,16],[-3,-13],[-11,-64],[3,-23],[8,23]],[[4546,44928],[9,43],[1,46],[-5,-11],[-2,-29],[-11,-40],[4,1],[0,-23],[4,13]],[[4556,44804],[6,6],[20,43],[0,20],[9,-9],[0,27],[5,-19],[4,18],[7,-13],[4,7],[-4,15],[6,25],[9,8],[-2,15],[5,17],[-5,11],[7,55],[-9,-20],[-7,-2],[-2,-19],[-3,9],[3,18],[-3,5],[-6,-22],[-5,17],[12,29],[-9,-8],[-7,-18],[-2,-20],[-7,9],[-11,-33],[-4,3],[-5,-18],[-2,9],[-5,-35],[-11,-48],[2,-20],[5,-8],[-5,-31],[0,-20],[3,18],[2,-17],[5,-4]],[[4676,44490],[0,40],[-3,8],[-2,-22],[5,-26]],[[13496,44311],[5,4],[0,32],[-9,-39],[-5,-39],[3,-9],[4,12],[2,39]],[[13505,44252],[7,56],[-2,29],[-5,-7],[-4,-19],[4,-30],[-5,23],[-6,-40],[11,-12]],[[13045,44271],[-3,9],[0,-38],[3,29]],[[13047,44243],[-5,-2],[-2,-21],[7,-4],[0,27]],[[13024,44207],[2,18],[-6,-21],[4,-23],[0,26]],[[13015,44207],[-4,-23],[0,-17],[5,-11],[0,35],[-1,16]],[[13492,44167],[-7,9],[4,-33],[3,24]],[[5466,44259],[-5,17],[-4,-13],[-5,6],[-7,-9],[5,-22],[-2,-54],[-4,-19],[2,-33],[8,-2],[9,50],[7,22],[0,32],[-4,25]],[[12864,44116],[5,7],[-9,26],[-2,-21],[6,-12]],[[12708,44108],[5,35],[-2,20],[4,36],[-2,33],[-9,-22],[3,-35],[-3,-63],[4,-4]],[[5419,44112],[-5,8],[0,22],[-9,1],[-2,24],[-6,1],[0,18],[-9,-4],[-5,-33],[5,-6],[4,-22],[4,13],[5,-31],[7,-13],[11,22]],[[13046,44102],[-4,-26],[4,8],[0,18]],[[13342,44043],[-11,13],[0,-18],[11,-10],[0,15]],[[13140,44039],[-6,-18],[1,-9],[5,13],[0,14]],[[13023,43994],[-5,3],[0,-32],[5,29]],[[4533,43986],[-6,-15],[2,-8],[4,23]],[[5521,43971],[-4,13],[0,-19],[7,-11],[-3,17]],[[12933,43920],[-7,16],[0,14],[5,12],[2,-24],[2,5],[5,-15],[4,39],[5,-13],[0,32],[7,5],[-5,-16],[5,-2],[4,38],[0,19],[-7,-4],[-2,25],[7,20],[0,31],[-5,-17],[-2,-20],[-2,29],[-5,-16],[-4,13],[7,17],[4,18],[-5,6],[12,14],[2,19],[-2,20],[4,8],[2,32],[-4,17],[-3,31],[-11,-31],[-2,-32],[-4,-28],[-2,-39],[-9,-26],[0,-35],[-11,-9],[-5,-26],[-4,-48],[2,-17],[-3,-36],[1,-21],[4,44],[-2,-52],[6,-7],[7,20],[10,-35],[-1,25]],[[13256,43898],[-6,5],[-3,-9],[9,4]],[[5537,43906],[7,28],[6,-14],[5,1],[-1,64],[-8,40],[-9,24],[-11,-3],[-5,-47],[7,-47],[-2,-15],[7,-7],[2,15],[4,-15],[-5,-11],[-13,-3],[13,-39],[5,11],[-2,18]],[[5321,43910],[-2,-2],[-2,-35],[6,8],[-2,29]],[[13251,43888],[-6,-13],[5,-8],[1,21]],[[4656,43860],[4,18],[-5,-6],[1,-12]],[[12895,43873],[0,12],[-6,-14],[2,-13],[4,15]],[[13262,43871],[-3,4],[0,-24],[4,4],[-1,16]],[[12897,43856],[-2,11],[-4,-25],[4,-14],[2,28]],[[12902,43855],[-4,1],[0,-31],[4,17],[0,13]],[[4695,43804],[10,8],[6,38],[-2,67],[2,20],[0,73],[-9,23],[-2,38],[0,15],[-7,28],[-4,7],[-9,-14],[-4,-36],[-5,-21],[-4,2],[0,-28],[-9,-17],[2,-9],[-2,-31],[0,-34],[-3,-12],[14,-30],[7,-52],[9,-35],[10,0]],[[12937,43816],[-2,16],[-4,-29],[4,-5],[2,18]],[[12906,43811],[-2,6],[-6,-23],[8,17]],[[13322,43785],[5,5],[2,20],[-9,18],[2,-43]],[[13274,43846],[-3,-3],[-2,-26],[-6,-35],[2,-9],[7,7],[2,15],[0,51]],[[13345,43768],[-3,35],[1,27],[4,8],[-2,18],[4,30],[-4,9],[-2,33],[-10,5],[1,14],[8,-5],[6,-21],[4,0],[9,16],[-7,40],[-9,25],[7,13],[-7,6],[-3,-15],[-8,2],[-18,59],[-2,-20],[-5,3],[-4,-17],[2,-64],[7,-22],[0,-23],[-5,14],[-4,55],[-14,-24],[0,-37],[-4,14],[-5,1],[-6,-34],[0,-32],[5,-19],[9,-17],[3,9],[7,-4],[-1,-16],[6,-13],[-2,31],[6,-27],[9,0],[-2,9],[2,26],[9,-22],[11,-61],[7,-9]],[[13143,43769],[-5,-22],[2,0],[3,22]],[[4814,43799],[-5,13],[-4,-56],[-5,-36],[3,-5],[11,66],[0,18]],[[13345,43699],[2,18],[-4,28],[-7,-6],[6,-9],[3,-31]],[[4284,43665],[9,11],[20,5],[-2,9],[6,13],[11,1],[5,20],[2,-34],[-11,-1],[3,-11],[17,-9],[5,-6],[6,14],[14,8],[4,25],[-7,-19],[-13,-3],[-2,-12],[-3,17],[0,27],[3,27],[8,16],[3,19],[7,26],[6,26],[7,70],[0,20],[4,32],[2,33],[-4,19],[-2,44],[4,49],[7,31],[2,66],[12,75],[19,2],[5,-10],[7,4],[9,-39],[4,20],[7,6],[4,35],[7,25],[2,35],[2,56],[5,5],[6,-14],[2,42],[-6,16],[-9,3],[-5,-13],[-10,5],[6,-35],[4,0],[0,-27],[-4,6],[-11,-13],[-7,2],[-4,10],[-2,30],[-3,5],[-2,-34],[-7,-1],[3,-34],[-9,17],[0,14],[-12,-53],[0,-44],[-8,-16],[-11,19],[-11,54],[6,47],[-4,75],[-13,-4],[-8,13],[-1,28],[-14,15],[-4,-2],[-5,45],[-4,-13],[-11,-12],[-9,-16],[-27,-16],[-13,0],[-7,8],[-13,-2],[-14,8],[-7,-5],[-35,23],[-25,42],[-13,25],[-9,28],[-11,52],[-9,30],[-2,33],[4,11],[-6,14],[2,38],[-4,39],[-18,66],[-11,25],[-12,10],[-6,0],[-13,17],[-9,8],[-11,22],[-9,-5],[-7,-14],[-13,13],[-16,-19],[-7,-22],[-6,-6],[-2,-29],[-7,-23],[0,-47],[-7,-14],[-4,-22],[4,-11],[-2,-35],[-7,-27],[-2,-23],[0,-68],[-2,-27],[4,-38],[5,-13],[11,-13],[6,-35],[7,0],[7,-32],[13,9],[9,-21],[4,-22],[18,-158],[5,-32],[2,-52],[9,-52],[9,-89],[-2,-51],[4,-26],[9,-11],[0,-11],[9,-47],[7,4],[8,-24],[5,7],[11,29],[9,43],[24,-21],[0,20],[5,-19],[2,4],[6,30],[-4,-62],[-17,30],[2,-16],[19,-31],[12,-56],[11,-38],[2,22],[4,-5],[12,-2],[9,-11],[9,-21],[10,-35],[20,-87],[10,6],[11,-15],[11,-22],[2,5]],[[5386,43743],[-5,2],[-7,-70],[3,-19],[0,25],[6,16],[3,46]],[[5526,43646],[6,6],[-2,19],[-9,-26],[5,1]],[[5497,43662],[9,-19],[11,9],[2,26],[-4,25],[-10,-21],[-2,43],[5,-1],[4,17],[0,22],[5,4],[4,45],[-2,14],[-9,8],[-4,26],[-9,13],[-3,18],[-6,2],[-3,-15],[5,-22],[-4,-32],[4,-25],[11,22],[0,-39],[-6,-19],[2,-48],[4,-7],[-4,-18],[-5,12],[-4,32],[-7,18],[-2,-20],[5,-15],[2,-39],[6,-5],[-6,-26],[0,-8],[11,23]],[[12880,43658],[-2,2],[-2,-37],[2,1],[2,34]],[[4796,43686],[-2,12],[-7,-51],[0,-28],[4,5],[-2,19],[5,19],[2,24]],[[5479,43610],[4,16],[-6,-5],[2,-11]],[[5403,43632],[-2,13],[-5,-11],[-4,15],[-9,-16],[5,-48],[4,-1],[7,23],[4,25]],[[13358,43556],[3,-4],[4,43],[-2,17],[-5,20],[3,43],[-5,0],[-8,-28],[-3,-17],[2,-44],[2,5],[9,-35]],[[4900,43650],[-6,5],[-9,-25],[6,-35],[-6,-59],[9,29],[9,43],[0,30],[-3,12]],[[4805,43549],[9,7],[0,30],[-3,16],[-11,-38],[-2,-17],[5,-13],[2,15]],[[5410,43591],[-7,-19],[5,-16],[0,-32],[6,-13],[2,10],[-2,54],[-4,16]],[[12935,43487],[5,29],[4,1],[-4,38],[-6,-22],[-3,-25],[4,-21]],[[13214,43486],[-4,-5],[4,-13],[0,18]],[[4829,43410],[5,16],[9,2],[4,24],[5,-9],[4,16],[-5,1],[2,27],[7,-1],[7,18],[11,12],[0,47],[-6,0],[-5,15],[0,52],[-4,-17],[-5,-3],[-2,29],[-4,7],[0,14],[-9,-9],[-3,-25],[-6,-22],[2,-35],[7,-26],[2,-36],[-2,-12],[2,-15],[-7,-37],[-9,9],[7,24],[-2,28],[-3,26],[-4,41],[0,-29],[-11,-30],[-7,3],[-4,-30],[2,-12],[-2,-34],[6,8],[5,-11],[0,-15],[13,-11]],[[12894,43413],[-5,12],[0,-19],[5,7]],[[5432,43423],[-6,-13],[2,-24],[4,37]],[[12904,43385],[5,34],[11,24],[2,21],[9,35],[0,33],[3,37],[3,3],[0,27],[7,82],[-1,36],[-8,17],[-6,26],[-3,-13],[-1,16],[1,22],[-4,-4],[-5,-42],[3,-3],[-2,-20],[-5,17],[-4,-51],[-1,4],[3,53],[-2,11],[-7,-16],[-11,-18],[-5,-21],[12,-33],[2,-30],[6,-15],[3,-22],[0,-17],[-5,21],[0,-18],[-6,1],[-7,-15],[-2,-34],[4,-12],[-2,-31],[-2,7],[-3,-41],[0,-13],[8,-5],[1,-17],[7,-35],[2,-1]],[[4965,43326],[-5,6],[-2,22],[7,37],[0,24],[-5,32],[-9,-14],[-10,-34],[-1,-14],[-8,-20],[6,-41],[7,-7],[9,15],[4,-15],[7,9]],[[12894,43320],[-5,4],[2,26],[-3,1],[1,72],[-3,5],[-1,-50],[-3,32],[-7,9],[0,-24],[-4,5],[5,-24],[-1,-35],[3,-15],[7,4],[4,-22],[5,12]],[[5472,43310],[-2,37],[-7,21],[2,23],[-2,30],[3,16],[4,-20],[4,2],[-2,20],[3,17],[-5,-4],[0,16],[5,21],[-5,30],[-4,-11],[-5,5],[5,17],[0,48],[-1,26],[5,20],[-2,15],[7,2],[2,32],[-7,16],[-7,-35],[-2,-34],[-6,-22],[-3,14],[2,70],[-6,0],[-5,-19],[1,-25],[-5,9],[2,17],[-5,14],[0,19],[-4,-24],[0,-48],[3,-25],[10,-1],[3,-14],[-11,-25],[0,-17],[-7,-22],[2,-22],[9,13],[9,42],[7,14],[2,-22],[-9,-33],[2,-15],[-4,-11],[4,-12],[5,10],[6,-8],[-4,-19],[-9,-6],[-5,-31],[9,18],[3,-22],[-5,-9],[0,-24],[-2,-45],[4,-13],[3,29],[8,-23],[0,-34],[3,-25],[4,13],[0,24]],[[4907,43259],[-6,53],[1,14],[-4,30],[-6,-15],[-7,14],[-5,23],[-13,-19],[-4,10],[-1,-35],[3,-35],[7,-26],[11,8],[22,-36],[2,14]],[[12827,43276],[1,15],[-4,12],[4,20],[-9,28],[3,11],[7,-32],[4,39],[-5,11],[0,19],[5,-9],[4,18],[1,30],[-10,5],[0,21],[9,-5],[-4,23],[5,3],[4,15],[6,-6],[6,18],[-3,27],[4,26],[-1,30],[4,11],[6,39],[-11,-26],[-7,-33],[-11,-14],[-6,19],[19,9],[-8,8],[0,15],[6,10],[0,32],[3,-20],[5,13],[-3,17],[-18,1],[4,23],[7,-13],[5,21],[-3,36],[3,7],[4,-42],[7,8],[-3,30],[5,-1],[5,-16],[2,17],[0,32],[-2,16],[2,10],[2,43],[-2,28],[-7,1],[2,15],[5,6],[8,-29],[5,26],[-5,8],[-1,19],[4,-13],[6,13],[-4,8],[-2,20],[8,35],[10,0],[0,28],[11,48],[-11,22],[2,11],[11,-13],[9,32],[5,24],[-5,2],[-5,24],[5,-3],[9,19],[-4,3],[6,31],[-4,2],[8,41],[-9,-1],[5,31],[-11,-5],[4,15],[14,19],[-1,37],[1,18],[-7,4],[2,13],[9,17],[5,30],[-5,10],[-5,-14],[-6,14],[-7,-23],[2,-17],[-4,-19],[-2,11],[-9,2],[-4,-45],[1,28],[-8,19],[-9,-53],[3,-23],[-5,-16],[4,-18],[11,15],[2,-13],[-15,-18],[-5,-45],[-6,-16],[-9,-10],[-7,-34],[2,-21],[5,-13],[2,4],[7,-47],[-7,-9],[-13,35],[-9,-22],[0,-20],[-5,-8],[5,-13],[2,-29],[-11,1],[4,-19],[5,-8],[4,8],[3,-19],[-1,-12],[-6,18],[-13,-5],[-2,-24],[-5,-5],[11,-8],[9,-22],[-3,-11],[-8,18],[-12,1],[-8,-21],[2,-15],[14,-12],[2,13],[4,-14],[-18,-20],[-4,11],[-11,-2],[2,-49],[-3,-18],[7,-33],[-7,-40],[1,-28],[-7,-4],[-5,-15],[-2,-44],[13,17],[-2,-18],[-4,-7],[-11,-31],[-2,-23],[4,-25],[7,0],[9,9],[13,0],[-4,-17],[-9,-13],[6,-27],[7,17],[2,-9],[-4,-17],[-7,-9],[-7,29],[-9,6],[-4,-19],[12,-11],[-8,-18],[-8,-51],[16,32],[1,-15],[-4,-6],[0,-24],[-11,-5],[0,-13],[14,-21],[6,8],[2,-22],[-7,-2],[0,-15],[-6,7],[4,-15],[-9,-3],[0,-45],[2,-18],[9,4],[14,-38],[2,-1],[5,38]],[[12855,43246],[0,21],[-11,2],[0,-36],[5,0],[6,13]],[[13300,43287],[-4,-1],[-11,-54],[15,20],[3,15],[-3,20]],[[13278,43265],[0,26],[12,43],[4,11],[4,-15],[5,13],[8,51],[11,32],[0,17],[-6,-1],[-7,-47],[-6,-10],[10,58],[0,42],[3,41],[-7,24],[5,23],[-5,5],[0,19],[5,15],[2,40],[-2,38],[-5,27],[0,19],[-15,14],[-9,-7],[-7,9],[-5,-28],[-1,-68],[-9,-26],[-1,-50],[-3,26],[-5,20],[2,17],[4,-7],[5,59],[-2,22],[-9,11],[-7,18],[4,6],[-4,32],[-2,-22],[-9,-29],[-3,-30],[8,-13],[0,-27],[4,-17],[5,-69],[-6,-4],[3,-54],[7,-13],[9,23],[0,-29],[4,-9],[-2,-22],[-5,-14],[-2,-25],[-8,-4],[-5,-11],[11,-7],[-5,-17],[0,-18],[-4,-35],[-2,-32],[2,-44],[2,-2],[1,-45],[6,10],[6,18],[10,25],[-12,-42],[-4,-33],[4,7],[7,37],[9,10],[2,18]],[[5485,43191],[1,15],[-7,6],[0,-14],[6,-7]],[[5377,43243],[0,33],[-1,23],[-15,8],[-2,12],[4,10],[0,18],[5,5],[-3,12],[-4,57],[0,44],[6,12],[3,26],[4,-52],[-2,-39],[5,-8],[11,17],[-5,18],[3,6],[-5,33],[2,2],[-2,36],[-9,-21],[5,48],[-3,25],[-4,12],[-5,-25],[-8,-6],[-3,-34],[-8,-3],[4,29],[-3,31],[-6,-16],[2,33],[7,5],[4,40],[-4,7],[-11,-11],[-7,-14],[-2,25],[6,11],[1,20],[-3,26],[-6,21],[-7,1],[-2,42],[-7,18],[-2,11],[-9,13],[-2,35],[2,38],[-11,11],[-7,15],[-2,17],[4,49],[-9,26],[5,29],[-11,26],[-3,-52],[-4,-14],[2,-56],[-2,-22],[4,4],[5,-13],[7,15],[6,-26],[-4,-43],[6,-13],[5,-32],[0,-17],[5,-35],[6,-18],[0,-15],[9,-16],[-4,-32],[-11,19],[-3,-11],[-9,-8],[3,-39],[8,-1],[5,18],[2,-11],[-2,-25],[-4,-13],[-16,-29],[0,-13],[6,-31],[12,26],[17,53],[3,-7],[-7,-30],[-2,4],[-11,-76],[2,-28],[2,-16],[9,28],[4,20],[3,33],[0,18],[9,-9],[2,28],[7,-15],[6,-20],[0,-14],[-6,14],[-5,-5],[2,-27],[-4,-14],[6,-30],[-6,2],[-5,-32],[-4,-20],[0,-24],[-5,-15],[11,-7],[7,18],[3,26],[4,9],[2,31],[5,1],[0,-22],[-5,-84],[12,15],[-1,-29],[5,-8],[-5,-16],[-4,-40],[6,6],[3,-14],[6,-60],[3,-9],[6,24],[3,37]],[[13403,43158],[4,28],[-5,-13],[1,-15]],[[4506,43254],[-4,-3],[22,-128],[0,13],[-7,57],[-10,46],[-1,15]],[[13249,43147],[-4,4],[-11,-30],[-3,-35],[5,12],[13,49]],[[5317,43072],[6,32],[4,6],[-2,33],[-11,-9],[-8,0],[0,-30],[-3,-11],[5,-17],[9,-4]],[[12759,43064],[6,5],[6,31],[-2,25],[4,20],[-11,63],[6,4],[7,-34],[5,30],[0,-32],[6,31],[14,5],[-9,21],[0,36],[-9,60],[-13,5],[-1,13],[-6,7],[-6,-41],[-8,-7],[-4,28],[-11,8],[-2,-14],[-7,-60],[2,-55],[12,6],[4,-32],[-7,4],[-7,-27],[1,-32],[6,-33],[12,12],[2,-8],[-3,-12],[1,-17],[4,2],[8,-12]],[[5239,43032],[4,11],[-7,43],[7,-8],[2,47],[3,30],[-3,27],[0,22],[-4,69],[-2,-21],[-11,-7],[0,-28],[-3,-30],[-6,-6],[-1,19],[-6,-32],[-4,-1],[-5,17],[-11,-34],[-5,-29],[9,-28],[-2,-7],[4,-44],[5,0],[2,19],[11,20],[5,-7],[4,-20],[14,-22]],[[12857,43034],[-6,-13],[4,-13],[2,26]],[[13425,43126],[-2,0],[0,-37],[-3,-20],[-1,-43],[2,-27],[8,-4],[5,91],[-9,40]],[[12824,42960],[-7,22],[-4,-14],[9,-14],[2,6]],[[13085,42947],[-3,13],[-6,-13],[9,0]],[[5136,42948],[14,11],[4,31],[-2,14],[2,38],[-5,61],[1,-23],[-3,-2],[-4,30],[-5,9],[7,39],[5,0],[6,-22],[5,-37],[2,16],[6,-15],[-2,-29],[-4,-8],[0,-14],[13,-58],[-2,-11],[9,2],[7,20],[0,45],[-3,22],[-10,27],[0,17],[-5,19],[0,26],[4,22],[0,30],[5,26],[6,15],[-2,33],[-6,-5],[-5,16],[4,11],[7,-5],[11,17],[-2,34],[5,28],[8,8],[-4,18],[-9,0],[-4,-13],[-7,-6],[-2,23],[6,12],[5,-5],[4,17],[-7,66],[-4,6],[2,-20],[-2,-26],[-4,-12],[-5,10],[-4,21],[-2,-27],[-7,19],[-4,-33],[-7,10],[-7,-27],[-2,-41],[7,-26],[-7,-16],[-4,20],[2,13],[-9,-7],[-9,13],[-2,20],[-2,48],[-3,6],[-4,59],[-5,13],[0,-52],[3,-13],[-1,-32],[-4,-4],[2,-21],[-7,-43],[-4,-5],[2,-25],[3,-48],[-1,-35],[-4,-36],[5,-57],[-5,-33],[5,17],[2,-21],[-3,7],[0,-42],[5,-22],[7,-9],[-7,-1],[7,-51],[13,-26],[7,-35],[4,14]],[[4589,42921],[-2,25],[-7,0],[-11,31],[-18,36],[-18,58],[0,-13],[16,-52],[11,-24],[11,-35],[11,-26],[7,0]],[[13184,42915],[5,15],[-2,12],[13,35],[4,27],[7,26],[14,56],[4,31],[3,-1],[10,53],[0,24],[-9,0],[-6,-38],[-7,-1],[4,22],[-1,41],[4,26],[0,17],[-5,-1],[2,39],[-1,14],[-10,-5],[-6,-38],[-7,-27],[-2,23],[9,41],[-2,28],[4,4],[5,35],[-3,13],[2,44],[-9,20],[-2,19],[5,-4],[-2,45],[-5,-15],[-4,-26],[-2,-27],[-2,1],[-3,-24],[0,-22],[-4,11],[-2,-65],[-3,-33],[0,-36],[-2,-53],[-4,-15],[-3,-85],[5,-69],[-3,-35],[-4,-17],[9,-2],[5,6],[-7,-48],[2,-48],[6,7]],[[12735,42903],[7,16],[-2,50],[-2,24],[-5,1],[-2,-49],[4,-42]],[[12699,42925],[18,-8],[7,13],[5,26],[-1,35],[-4,21],[-9,5],[-4,-22],[-12,4],[3,14],[6,-2],[5,28],[-9,46],[-7,-20],[-6,-28],[2,-24],[-4,2],[0,24],[-3,15],[-2,37],[2,6],[3,-33],[6,17],[0,36],[-6,38],[2,18],[-2,46],[-3,28],[0,34],[-4,-3],[-5,-44],[0,-17],[-6,-7],[-3,-34],[7,-43],[-7,18],[-4,-8],[2,-30],[7,-13],[4,7],[-1,-38],[6,-40],[-12,-25],[7,-37],[5,19],[4,-28],[0,-45],[5,-22],[4,0],[4,34]],[[4462,42882],[4,34],[-2,45],[-6,4],[-5,-17],[-4,-27],[2,-32],[11,-7]],[[12684,42877],[-9,40],[-4,-5],[4,-30],[9,-5]],[[12787,42850],[6,21],[-2,31],[-5,40],[-7,-8],[-6,18],[-5,-2],[-2,-43],[7,-44],[14,-13]],[[13100,42856],[4,17],[-8,1],[-1,-18],[5,0]],[[13440,42869],[3,9],[-2,73],[-5,-88],[5,-37],[-1,43]],[[5263,42830],[7,0],[2,20],[-2,41],[4,-22],[5,4],[6,-25],[0,25],[11,-21],[-6,69],[4,35],[0,26],[-2,20],[-4,-7],[2,-22],[-5,-17],[-11,7],[2,-16],[-11,-24],[-6,6],[-2,32],[-12,7],[-9,-61],[7,-43],[16,-38],[4,4]],[[12951,42834],[-4,-17],[6,-13],[2,24],[-4,6]],[[12813,42778],[-2,20],[-5,-18],[0,-33],[7,31]],[[13035,42730],[5,15],[5,29],[-12,-13],[-4,-16],[6,3],[0,-18]],[[5319,42743],[-3,-13],[7,-19],[-4,32]],[[4876,42726],[-7,3],[3,-27],[4,24]],[[12735,42774],[3,52],[-1,25],[-7,22],[-23,22],[-5,-1],[-3,-27],[-15,-21],[4,-29],[5,-15],[4,5],[5,-16],[4,-32],[0,-25],[4,-41],[3,4],[6,22],[9,20],[7,35]],[[13196,42669],[4,30],[-2,34],[-13,41],[-5,-14],[0,-34],[4,-9],[-1,-30],[10,-22],[3,4]],[[5227,42645],[7,15],[-4,12],[-3,-16],[-6,-6],[6,-5]],[[12655,42635],[21,8],[4,42],[4,-39],[11,26],[-2,62],[-7,25],[-6,8],[-3,43],[0,27],[-7,36],[-8,-30],[-7,-9],[-5,-27],[-6,6],[-13,46],[-3,-14],[7,-11],[2,-17],[4,-57],[5,-23],[13,-26],[-4,-21],[-9,-6],[0,-26],[7,-30],[2,7]],[[12808,42645],[-4,-6],[2,-18],[2,24]],[[13213,42676],[-3,-20],[1,-26],[5,-10],[0,17],[-3,19],[0,20]],[[12757,42604],[2,25],[3,-22],[6,40],[-2,21],[9,0],[3,17],[-1,61],[-9,54],[-3,-15],[-6,36],[-2,31],[-6,-32],[-7,-12],[-2,-40],[2,-12],[-11,-45],[-3,-29],[3,-26],[0,-30],[5,-5],[4,-17],[5,13],[10,-13]],[[12828,42561],[0,58],[-4,-20],[2,-44],[2,6]],[[12684,42573],[-5,-19],[5,-3],[0,22]],[[12819,42615],[5,-13],[2,15],[-6,17],[-1,53],[-6,3],[-2,-38],[2,-36],[7,-42],[2,-32],[-3,73]],[[12688,42565],[-4,-22],[6,8],[-2,14]],[[12662,42576],[-5,5],[-4,-17],[0,-25],[6,-6],[3,43]],[[12828,42532],[5,-8],[5,15],[-5,19],[-5,-26]],[[12677,42525],[-2,1],[2,-26],[0,25]],[[12700,42442],[4,-3],[-11,65],[-2,-15],[4,-31],[-4,16],[0,-28],[9,-4]],[[12744,42469],[-9,-18],[4,-9],[5,27]],[[12700,42442],[-2,-16],[1,-27],[-6,11],[-7,-41],[9,5],[9,28],[-4,40]],[[12744,42313],[-4,-4],[2,-19],[2,23]],[[5503,42306],[3,-28],[0,-53],[4,-40],[4,-3],[7,15],[0,15],[-18,94]],[[12755,42119],[-6,-4],[2,-16],[4,20]],[[5528,42126],[4,9],[-2,30],[7,13],[-3,26],[-8,30],[0,-47],[-5,-10],[-4,-30],[-5,12],[-2,-16],[4,-28],[7,-17],[5,-3],[2,31]],[[12697,42055],[5,1],[18,56],[-3,39],[9,-6],[16,3],[2,-9],[12,30],[4,-17],[-3,-9],[7,-6],[-4,-20],[6,4],[5,17],[-3,20],[-6,5],[3,18],[-3,30],[-5,11],[-2,-7],[-9,31],[-8,6],[-3,-17],[-7,-1],[-11,-43],[-1,-35],[-3,31],[-9,-13],[-2,12],[6,7],[5,20],[2,32],[5,23],[-1,56],[-9,22],[-8,-7],[-9,-14],[-16,-49],[-2,-41],[-5,-23],[1,-14],[-9,-34],[13,-22],[-4,-16],[4,-44],[7,-19],[2,13],[7,56],[0,-58],[6,-19]],[[5515,42086],[-5,-19],[2,-16],[3,35]],[[13184,42034],[-4,-6],[0,-17],[5,11],[-1,12]],[[13227,42002],[-9,19],[-4,-15],[13,-4]],[[12667,42017],[-3,-24],[4,0],[-1,24]],[[5588,42050],[-7,28],[-7,-9],[-4,-15],[-9,-9],[9,-51],[2,-27],[10,20],[4,22],[-4,13],[6,28]],[[13047,41982],[-2,39],[-3,-43],[2,-14],[3,18]],[[12748,41964],[-2,-17],[5,-5],[-3,22]],[[12722,41946],[-2,15],[-4,-1],[0,-25],[6,11]],[[5672,41954],[3,-2],[8,19],[-2,20],[3,31],[8,2],[5,34],[-5,16],[-4,-3],[2,-23],[-6,-6],[-5,10],[-4,-20],[-7,-2],[3,-30],[-7,-13],[0,17],[-7,7],[-7,35],[2,22],[-4,14],[2,13],[7,1],[-5,17],[-8,-9],[-3,-39],[2,-26],[5,-23],[-4,-25],[8,-28],[3,6],[9,-19],[-1,-20],[5,5],[4,19]],[[6569,42208],[-2,27],[-6,20],[-10,-39],[-8,-3],[-9,13],[-7,-7],[0,-28],[-2,-5],[4,-19],[-2,-20],[-9,-22],[11,-25],[14,-41],[4,-22],[2,-56],[3,-25],[11,-26],[6,5],[3,23],[-5,79],[0,36],[4,47],[3,69],[-5,19]],[[12764,41920],[-7,32],[3,-31],[4,-1]],[[13027,41908],[6,5],[7,20],[0,65],[-8,27],[-3,-40],[-5,-20],[3,-26],[-3,-30],[3,-1]],[[13047,41913],[4,7],[-5,27],[-4,-9],[-4,-35],[9,10]],[[13049,41898],[5,2],[-3,17],[-2,-19]],[[13236,41913],[4,0],[4,17],[1,21],[6,43],[-2,23],[-20,-11],[-4,-19],[-5,-1],[2,-44],[5,-34],[7,-17],[2,22]],[[12724,41907],[-5,-12],[5,-4],[0,16]],[[12773,41893],[4,-2],[5,18],[-5,56],[0,39],[3,-9],[0,-15],[7,-9],[1,-19],[7,39],[-2,22],[2,19],[1,52],[-5,28],[0,23],[-5,47],[-13,-53],[-4,-34],[-3,-9],[-1,-21],[-5,-4],[-3,-26],[5,2],[4,-41],[-7,-27],[3,-23],[9,-24],[-5,0],[5,-36],[2,7]],[[13029,41882],[6,16],[-6,2],[0,-18]],[[12502,41896],[2,58],[4,-25],[5,8],[0,-29],[6,-6],[2,23],[7,-39],[7,-8],[9,8],[-2,40],[-12,11],[-6,24],[-4,8],[-12,63],[-7,5],[1,30],[-3,13],[-2,-21],[-11,-7],[-5,-13],[0,-22],[9,-35],[9,-8],[-4,-16],[-9,2],[-11,-58],[9,-41],[2,34],[4,18],[9,-44],[5,-8],[-2,35]],[[12780,41878],[-3,-13],[3,-6],[0,19]],[[12613,41843],[6,11],[2,57],[-3,13],[4,11],[-1,30],[-6,6],[7,18],[-5,20],[0,20],[-7,6],[-6,-6],[-7,-44],[2,-30],[-6,-12],[0,-48],[2,-17],[7,-4],[6,-29],[5,-2]],[[12542,41852],[-3,-5],[2,-23],[5,11],[-4,17]],[[5109,41883],[1,29],[-9,-25],[-3,0],[-10,20],[-14,15],[6,-26],[14,-7],[13,-89],[-2,42],[4,41]],[[12771,41874],[-2,17],[-7,-15],[4,-37],[-4,-15],[4,-24],[5,48],[0,26]],[[12771,41813],[-3,-9],[3,-15],[0,24]],[[13347,41812],[13,60],[7,31],[13,92],[14,74],[2,27],[4,33],[2,40],[-8,30],[6,-10],[10,63],[2,29],[9,49],[2,26],[-2,25],[7,44],[1,52],[2,16],[-4,37],[0,22],[-6,-6],[0,30],[4,8],[6,-15],[3,26],[-3,5],[-2,38],[-4,-8],[-5,-39],[0,63],[-2,31],[3,13],[-1,32],[-4,20],[3,2],[-3,55],[2,9],[1,73],[-3,6],[4,22],[0,26],[3,26],[-5,28],[-4,-11],[-3,-40],[-6,-5],[-2,15],[2,44],[2,16],[-2,26],[4,22],[-4,-6],[0,26],[-7,31],[3,32],[-3,22],[0,41],[-2,33],[-7,24],[-4,32],[-7,-4],[-6,9],[0,43],[-2,21],[-3,-8],[-4,18],[-9,3],[-14,-32],[-4,-39],[-5,-2],[2,-17],[-11,-17],[14,-32],[15,-82],[3,-74],[4,-40],[4,-12],[-4,-39],[0,-26],[-4,0],[-6,-28],[1,40],[-6,-16],[-12,28],[3,22],[0,32],[6,27],[3,41],[-5,18],[-4,32],[0,25],[-3,18],[-6,5],[-2,21],[-5,-39],[2,38],[-6,9],[-2,-25],[-9,22],[-4,-5],[-12,-31],[-2,5],[-3,-39],[0,-26],[17,-53],[8,-17],[-2,-47],[13,-32],[5,16],[-1,-36],[14,-80],[0,-21],[-3,14],[1,-70],[-4,-30],[0,-31],[-7,-74],[-3,-18],[1,-48],[-3,-60],[-4,-17],[0,-79],[0,-25],[-3,34],[1,24],[0,78],[4,48],[0,57],[6,52],[-1,63],[6,52],[-4,9],[-2,69],[-12,48],[-6,33],[-4,13],[4,23],[-4,27],[-10,16],[-4,-12],[-5,37],[0,-22],[9,-37],[2,-40],[0,-35],[-6,-34],[-3,-56],[-4,-22],[4,-41],[-4,18],[-2,-42],[7,-28],[2,-50],[6,-22],[-4,-26],[0,31],[-5,26],[-6,19],[2,-26],[-4,16],[-5,-5],[0,28],[-6,41],[2,40],[8,52],[-2,26],[3,2],[6,22],[2,35],[1,34],[-1,24],[-8,51],[-7,26],[0,54],[-7,7],[-4,-23],[-6,-11],[-3,-18],[-14,-48],[-8,-8],[-9,-27],[-7,-43],[0,-21],[5,-19],[-4,2],[-8,-14],[-2,-21],[-17,-60],[1,-46],[8,-20],[1,9],[12,-57],[6,-21],[5,-35],[2,-50],[7,-15],[8,56],[0,-56],[-2,-18],[7,-35],[-5,7],[0,-26],[18,18],[-4,-16],[-5,4],[-4,-21],[-11,-9],[-9,-15],[-7,-39],[2,-33],[3,-15],[0,-63],[7,-22],[2,8],[4,-17],[9,11],[-2,-15],[0,-39],[5,-13],[6,-4],[0,13],[18,-9],[6,-15],[-18,11],[-8,-15],[-12,23],[-4,-1],[0,30],[-4,2],[0,17],[-7,13],[-2,-24],[-3,-7],[-3,-38],[1,-20],[7,-34],[7,-16],[2,-14],[7,5],[7,13],[13,-37],[6,11],[0,16],[9,-33],[9,-9],[-2,-11],[-11,-24],[0,-23],[-5,9],[2,27],[-4,11],[-7,-3],[-7,14],[-8,3],[-4,-21],[-7,-8],[-7,22],[0,-54],[-2,-46],[15,-6],[9,13],[4,-5],[16,6],[9,-9],[7,14],[9,3],[0,-10],[6,-21],[-8,-2],[-1,17],[-10,-4],[4,-18],[-17,-4],[0,-35],[-9,-45],[-3,-25],[4,-30],[9,13],[14,-13],[9,-40],[4,-6],[13,7],[7,-4],[6,-45],[1,10],[7,-9],[13,-35],[9,2],[4,41]],[[12544,41761],[4,7],[-4,22],[0,-29]],[[12764,41733],[-4,17],[-3,26],[-9,28],[-1,50],[6,-2],[0,42],[-5,39],[-8,-31],[6,-20],[-7,-13],[0,43],[-4,-21],[4,-36],[-2,-33],[3,-29],[9,-19],[2,-26],[6,-15],[7,0]],[[12749,41748],[-2,-22],[4,-6],[-2,28]],[[12738,41735],[4,17],[-2,-30],[4,17],[-2,43],[-5,17],[-4,31],[0,20],[-5,-8],[-2,-20],[-6,3],[-5,-16],[11,-54],[-6,-16],[8,-6],[1,-14],[9,7],[0,9]],[[13294,41817],[-7,4],[-11,35],[-3,22],[-11,9],[-6,-5],[-2,-23],[-9,17],[-3,-15],[7,-13],[5,-23],[37,-105],[3,-3],[6,33],[0,45],[-6,22]],[[5023,41709],[-2,-9],[6,-13],[3,11],[-7,11]],[[5050,41713],[0,-14],[10,-21],[-10,35]],[[5061,41658],[-9,15],[2,-13],[7,-2]],[[12965,41647],[4,5],[-4,12],[0,-17]],[[5101,41648],[4,20],[-13,-18],[-11,17],[-11,2],[24,-27],[7,6]],[[12960,41637],[-2,5],[0,-26],[4,-13],[-2,34]],[[12877,41676],[-2,6],[-9,-10],[1,-35],[-3,-50],[9,-1],[4,23],[0,67]],[[6256,41580],[0,20],[4,30],[-4,2],[6,16],[-4,8],[2,35],[-7,2],[1,-21],[-10,-8],[-6,-27],[2,-11],[7,8],[0,-14],[8,-1],[0,-19],[-4,-7],[4,-25],[1,12]],[[12984,41587],[-4,-5],[4,-22],[0,27]],[[6247,41555],[-3,4],[2,-24],[1,20]],[[13107,41534],[-3,-9],[3,-9],[0,18]],[[13127,41535],[2,-2],[6,32],[1,51],[4,39],[-2,41],[-4,8],[-3,42],[-7,10],[3,-23],[-3,-37],[1,-32],[-4,12],[-5,-16],[0,-44],[9,-97],[2,16]],[[6264,41532],[-4,0],[-2,-23],[6,23]],[[12840,41450],[5,5],[1,19],[5,-9],[0,17],[9,48],[2,26],[-2,22],[-23,2],[-2,-50],[5,-45],[0,-35]],[[12888,41439],[1,33],[-4,24],[-5,-15],[4,-21],[2,5],[2,-26]],[[12877,41408],[3,3],[4,28],[-4,9],[-3,30],[-4,-35],[4,-15],[0,-20]],[[12888,41439],[-6,-33],[9,18],[-3,15]],[[5866,41402],[-7,28],[-4,-11],[-5,5],[-1,-15],[13,0],[2,-18],[2,11]],[[12738,41370],[8,4],[10,15],[4,14],[2,-21],[13,18],[-2,100],[-2,13],[-6,-14],[-14,25],[-5,19],[3,5],[10,-26],[9,-2],[1,26],[-1,15],[3,4],[4,22],[-4,34],[6,24],[-4,16],[2,20],[-9,-7],[0,21],[-10,33],[0,-33],[-3,0],[0,-52],[-6,22],[-23,37],[0,-60],[-4,-22],[0,32],[-1,25],[-13,83],[-7,5],[-8,15],[-5,61],[-2,-50],[-4,-11],[-9,42],[6,25],[5,11],[-3,19],[-12,4],[-10,36],[-2,-36],[-9,10],[-2,-22],[-3,-2],[-6,18],[-4,-50],[-1,-29],[3,-3],[-2,-21],[8,-13],[1,-32],[8,-42],[3,-40],[4,-7],[7,-35],[0,-43],[11,-32],[18,1],[4,17],[7,3],[-3,-14],[17,6],[1,-27],[-4,-8],[-16,-5],[-15,-20],[-2,-10],[-1,-33],[5,-13],[0,-20],[20,49],[13,-8],[5,-26],[4,-5],[4,-30],[8,-25]],[[12711,41396],[0,-28],[2,12],[-2,16]],[[12720,41361],[2,20],[-2,30],[-5,28],[-7,9],[-11,-10],[3,-21],[8,-19],[5,4],[7,-8],[-3,-26],[3,-7]],[[12884,41364],[2,16],[-9,-15],[-2,-11],[3,-15],[6,25]],[[12871,41367],[-2,-12],[4,-14],[-2,26]],[[12707,41330],[1,12],[0,41],[-6,-24],[0,-29],[5,0]],[[12860,41345],[2,42],[-7,0],[-2,-41],[2,-29],[5,28]],[[12840,41291],[-3,-11],[3,-20],[2,16],[-2,15]],[[6235,41241],[-4,7],[-2,63],[7,27],[0,43],[-3,26],[-7,-16],[-2,-24],[2,-25],[-2,-33],[3,-31],[2,-39],[6,2]],[[13158,41265],[-3,-13],[0,-17],[3,30]],[[12855,41204],[14,5],[7,25],[0,23],[-5,28],[-11,-12],[-5,-17],[2,-27],[-2,-25]],[[12867,41142],[0,43],[-7,8],[-5,-32],[3,-31],[6,-2],[3,14]],[[5968,41122],[-2,20],[-4,-12],[6,-8]],[[5730,41133],[-6,9],[0,-36],[6,-6],[0,33]],[[12597,41116],[-9,-13],[3,-33],[4,13],[2,33]],[[13020,41003],[9,65],[-3,47],[0,24],[3,26],[-6,60],[-1,27],[-6,25],[-9,-3],[-14,28],[0,18],[5,-3],[4,-21],[7,8],[-2,12],[9,0],[6,-12],[7,-65],[3,-4],[15,81],[-2,17],[8,-20],[7,3],[7,-8],[2,21],[13,34],[11,62],[7,30],[0,23],[4,-1],[3,19],[-9,41],[0,-33],[-3,3],[-2,32],[2,13],[-10,4],[-5,-31],[-2,14],[-3,-23],[-4,-68],[-8,-26],[4,28],[5,53],[0,36],[1,28],[9,18],[2,24],[-8,4],[2,15],[6,1],[7,66],[0,18],[-6,26],[6,4],[7,60],[0,30],[-5,28],[-8,-1],[-5,-21],[-2,-37],[4,-59],[-4,-28],[2,27],[-5,110],[-6,21],[-6,-25],[-5,-1],[-2,22],[-9,14],[-5,-2],[-4,12],[-5,-32],[-6,-19],[-3,-26],[-9,1],[-6,-32],[5,10],[4,-14],[-11,-27],[7,2],[0,-39],[4,-4],[9,-33],[4,-32],[-5,-13],[1,17],[-7,20],[-5,-25],[-6,8],[2,21],[-11,-35],[2,-41],[7,-18],[-4,-96],[-1,-67],[1,-41],[2,-1],[-1,-29],[-2,13],[-2,72],[2,76],[-2,34],[-4,31],[-7,-22],[-7,-4],[0,-26],[-4,-18],[-5,-45],[0,-27],[-4,-10],[2,-26],[-7,4],[5,30],[9,125],[-3,15],[-6,-35],[-4,16],[-3,-12],[0,37],[-6,24],[-7,-4],[-4,-48],[-9,-62],[0,-34],[-3,-22],[-1,-21],[1,-29],[-1,-15],[12,39],[-3,-23],[-3,-42],[-3,-33],[7,-21],[-9,-29],[9,-43],[12,12],[11,-16],[2,-45],[2,-8],[2,-41],[4,-37],[10,-22],[-4,-17],[1,-23],[3,-13],[4,5],[9,-9],[11,-29],[7,11],[2,22]],[[12877,41676],[0,-11],[9,-4],[5,16],[2,-26],[2,-5],[3,28],[4,17],[2,-22],[5,9],[9,50],[13,28],[4,42],[8,32],[15,46],[6,28],[-2,39],[9,26],[0,-8],[6,30],[-4,8],[11,25],[20,135],[-4,34],[-2,32],[4,25],[7,35],[2,34],[-4,13],[-5,-17],[-2,14],[7,35],[-5,27],[-9,7],[-2,-29],[-7,-13],[-4,11],[-6,-28],[-5,0],[2,22],[20,45],[7,33],[0,-18],[4,-13],[4,9],[5,-13],[0,52],[-4,34],[2,34],[5,-39],[2,5],[-1,-35],[5,-20],[0,-31],[9,4],[7,35],[4,91],[-4,18],[6,2],[2,33],[7,45],[2,28],[-2,27],[7,-22],[4,2],[5,28],[15,37],[9,54],[0,17],[4,8],[1,25],[-7,14],[-4,-4],[-12,-39],[-6,-43],[-5,-5],[-7,-25],[-22,-40],[-18,-48],[-9,-17],[-10,-62],[0,-25],[-9,-9],[-4,-31],[-3,-2],[0,65],[-6,2],[3,31],[-4,13],[5,2],[11,30],[-9,31],[2,8],[-7,30],[-6,33],[2,9],[-11,17],[-2,23],[-5,-20],[-4,8],[-5,47],[-4,7],[7,9],[2,49],[-16,97],[-6,45],[4,3],[7,-44],[4,-39],[4,-9],[7,-49],[0,-38],[7,-37],[7,-16],[8,6],[3,-33],[2,-34],[7,-18],[2,-18],[0,64],[7,-36],[2,26],[4,-25],[4,6],[3,-15],[11,-11],[2,46],[2,8],[2,30],[7,1],[3,-10],[4,22],[2,-14],[5,11],[9,52],[-10,12],[-2,-18],[-6,6],[0,-27],[-5,16],[0,30],[-28,16],[-5,23],[-5,54],[-6,40],[2,30],[6,11],[-2,7],[5,15],[2,45],[4,12],[0,-29],[-4,-35],[-9,-47],[2,-29],[3,-21],[4,17],[5,-2],[0,-50],[4,-26],[9,-3],[4,18],[-4,12],[4,17],[5,-3],[0,22],[3,34],[1,40],[-2,21],[2,30],[5,-4],[-3,-25],[1,-13],[-3,-40],[2,-78],[3,-15],[6,24],[3,-20],[7,6],[4,-22],[6,7],[0,38],[5,10],[-2,20],[6,4],[-2,17],[5,7],[0,23],[6,-29],[7,7],[-2,17],[6,30],[-2,46],[7,42],[-11,13],[0,14],[11,-19],[5,36],[4,1],[0,30],[-5,24],[-8,6],[2,26],[-7,3],[-13,-17],[-4,-16],[-3,4],[-14,-30],[5,28],[-18,-15],[-24,2],[-9,-9],[-5,7],[18,22],[4,34],[0,-30],[9,-10],[9,10],[7,-5],[3,10],[0,29],[-16,79],[-3,44],[3,34],[-2,44],[6,-9],[-2,-36],[0,-66],[6,-33],[3,-13],[5,-30],[4,0],[0,-44],[9,4],[-5,55],[-4,-3],[6,31],[-1,18],[4,15],[-3,-43],[5,-1],[3,-25],[4,-5],[4,14],[9,-4],[4,33],[0,28],[3,-26],[4,16],[7,-9],[6,-41],[-4,-9],[4,-9],[0,-41],[5,-28],[9,-35],[9,39],[-1,26],[3,27],[-2,43],[2,26],[4,34],[-4,33],[-9,10],[2,16],[-4,3],[-5,55],[-13,6],[0,10],[18,0],[4,-10],[5,8],[0,20],[-12,36],[-2,10],[-9,8],[-4,-56],[-11,-20],[-4,-21],[-3,12],[-6,-13],[-7,14],[9,1],[2,22],[2,-14],[4,16],[7,11],[7,56],[2,18],[-17,4],[0,5],[15,21],[3,40],[-16,6],[-3,26],[-13,27],[-5,0],[-6,-14],[3,-30],[-8,-20],[-2,-28],[-11,-8],[4,19],[3,-4],[9,41],[-1,19],[-4,-26],[-6,4],[11,52],[5,10],[-5,13],[-12,-2],[3,19],[-9,9],[9,0],[11,-23],[11,5],[9,-2],[2,31],[-11,47],[-5,35],[0,24],[5,-22],[9,-60],[7,-20],[-1,-33],[3,-17],[6,4],[0,39],[5,12],[-2,-26],[0,-42],[6,-10],[2,-20],[6,0],[1,-32],[7,5],[4,-13],[7,5],[-4,21],[0,18],[4,30],[0,40],[-7,-22],[-6,8],[0,20],[7,-20],[0,21],[-9,19],[-3,-7],[-6,27],[0,22],[9,-32],[4,3],[7,-33],[8,31],[0,19],[-4,13],[-2,52],[4,12],[0,44],[-8,-5],[-7,-16],[-9,20],[-9,-21],[-5,9],[1,11],[8,1],[5,15],[-3,12],[7,10],[-7,28],[7,-15],[-4,52],[3,3],[6,-60],[13,37],[5,39],[-3,14],[-6,-7],[7,24],[4,32],[-7,9],[-15,-10],[-5,-23],[-9,0],[9,24],[2,17],[25,5],[-7,22],[-11,-7],[7,24],[-5,17],[0,26],[5,12],[0,26],[-7,40],[0,43],[-2,-20],[-18,-5],[-6,-37],[-14,-47],[0,6],[14,78],[-7,26],[-7,-5],[0,-31],[-4,6],[-5,-9],[-2,-37],[-6,14],[-1,-48],[-4,-4],[6,-17],[-4,-34],[-3,69],[-6,17],[-5,5],[0,26],[-6,-14],[2,-20],[-5,-39],[1,-42],[8,-42],[3,20],[2,-32],[9,25],[0,-29],[-2,-41],[-4,23],[-5,-11],[-9,67],[0,-34],[-2,12],[-12,-31],[-4,10],[2,-26],[5,-5],[9,-34],[7,13],[1,-19],[-1,-30],[-3,6],[-16,-35],[-2,-18],[14,18],[6,-5],[-9,-6],[2,-20],[7,-31],[-4,-8],[-4,22],[-3,35],[-4,-1],[2,-32],[-7,5],[-2,-21],[2,-12],[2,-30],[-8,11],[-4,-27],[3,-26],[-2,-20],[9,55],[3,-4],[-3,-25],[-6,-17],[-7,-47],[0,-81],[6,-15],[-3,-13],[-1,-48],[4,-49],[-2,-29],[-2,9],[-4,73],[0,50],[-3,54],[1,55],[-1,33],[0,51],[5,31],[-5,-5],[0,-25],[-4,35],[-5,-10],[-1,18],[-5,-8],[-2,20],[-5,-17],[-4,-35],[15,-42],[-2,-66],[7,-15],[-3,-17],[-2,19],[-9,-50],[0,90],[-4,-5],[-7,26],[9,-5],[-6,42],[0,-15],[-7,16],[-5,-20],[-4,-35],[-6,-22],[2,-13],[-3,-8],[2,-22],[3,10],[2,31],[3,-19],[4,4],[6,-18],[-9,-4],[0,-35],[8,-30],[-1,-18],[-7,27],[-6,-7],[2,-30],[9,-27],[9,19],[9,-14],[4,-17],[-4,-17],[4,-38],[-4,4],[-1,33],[-4,7],[-13,-5],[-2,-17],[2,-36],[11,-48],[-13,-9],[4,-20],[-5,-4],[-8,52],[-7,68],[0,26],[-4,3],[0,-54],[4,-6],[-4,-24],[8,-93],[5,-29],[4,-32],[-6,-7],[-3,-39],[-4,-14],[0,-26],[-7,-21],[-4,-58],[4,-42],[7,-1],[7,-25],[2,17],[9,-8],[-13,-16],[-9,1],[-9,25],[0,24],[-3,48],[-6,-1],[7,23],[2,29],[11,78],[-2,52],[-7,2],[-4,13],[-7,0],[-14,-39],[-4,-26],[-9,-11],[3,-25],[-12,-25],[0,-36],[3,-31],[-5,-51],[5,-22],[-3,-12],[-2,21],[-2,-15],[-6,18],[-5,36],[4,12],[-4,23],[-7,13],[-4,-8],[-5,19],[-7,-9],[-4,23],[-11,27],[-5,-9],[-2,-36],[2,-17],[5,-4],[4,-16],[7,-4],[7,-42],[7,-6],[2,-24],[-5,14],[-4,-9],[-9,5],[-7,12],[-20,-11],[-5,-20],[-1,14],[4,17],[-3,10],[-6,-22],[2,-10],[-11,-11],[-7,12],[-9,-1],[-9,-16],[3,-43],[-3,-6],[-9,-44],[0,-33],[14,-4],[-11,-9],[2,-24],[9,-30],[6,-6],[7,10],[7,33],[0,-19],[7,-12],[15,22],[7,21],[4,18],[9,8],[5,-22],[20,19],[15,-20],[-9,-11],[-6,4],[-16,-23],[0,6],[-13,-26],[-9,-44],[4,-34],[-11,-9],[-2,-17],[13,-22],[5,-13],[7,-8],[-12,-10],[-9,18],[-9,-9],[-6,-19],[0,-22],[-7,24],[2,-19],[-4,-5],[9,-15],[-3,-17],[1,-57],[7,-39],[1,-18],[5,-34],[-2,-31],[9,-48],[6,0],[3,-26],[8,-31],[12,1],[4,11],[2,-17],[-11,-16],[-10,5],[-8,50],[-4,1],[0,-25],[-6,-3],[-5,23],[-3,-12],[-9,16],[-8,28],[-3,-14],[1,27],[-3,16],[-7,-12],[-6,22],[-5,-9],[-8,8],[0,-14],[-18,-31],[0,-11],[-14,-32],[-6,-59],[0,-40],[4,5],[2,-24],[1,16],[10,-42],[-11,-7],[0,-16],[0,-67],[3,-3],[11,60],[7,-8],[-4,-15],[1,-29],[-4,-25],[4,-9],[0,-24],[3,14],[-1,19],[1,17],[6,-27],[-2,26],[2,14],[5,-30],[8,-2],[-1,-16],[4,-9],[5,-62],[6,-16],[2,-24],[5,3],[8,-28],[-6,-26],[2,-12],[-2,-17],[2,-11],[0,-34],[5,-35],[-5,-17],[-11,14],[9,7],[-3,30],[-11,-2],[-1,-23],[-7,-21],[-3,-52],[1,-34],[-5,-14],[0,-30],[-4,-17],[6,-2],[7,18],[-7,-38],[5,-7],[-5,-10],[-2,-57],[4,-10],[0,-33],[-4,-37],[2,-20],[-4,-17],[-5,-46],[5,-81],[2,-61],[-5,-26],[-9,-1],[-8,-11],[-1,21],[-17,-15],[-11,-2],[-3,24],[-4,-38],[4,-9],[-8,-5],[-9,-15],[0,-37],[-3,6],[-1,26],[-8,-2],[0,24],[-6,-1],[0,-25],[-4,-2],[-1,-28],[-6,-3],[-2,-30],[2,-46],[-5,-43],[-4,-40],[9,-19],[2,-15],[-7,-24],[-1,27],[-5,-29],[2,-35],[9,22],[0,22],[6,15],[-2,14],[5,16],[4,-28],[-9,-41],[0,-25],[-7,-32],[5,-28],[9,17],[27,13],[6,26],[4,-5],[3,18],[13,-21],[14,-5],[9,21],[-9,25],[-1,31],[5,32],[-5,35],[3,3],[4,-22],[5,1],[-6,-47],[6,-49],[7,-8],[2,-15],[7,2],[2,17],[4,0],[6,-21],[9,15],[-2,6],[7,38],[2,49],[-6,-18],[2,34],[4,21],[5,-29],[0,25],[-5,9],[3,15],[4,-5],[2,25],[5,-7],[7,11],[1,52],[-4,63],[4,-13],[9,39],[-4,44],[-2,-5],[-2,35],[-5,35],[-2,-11],[0,45],[-4,22],[-5,-43],[-7,-14],[0,23],[4,29],[5,27],[0,13],[7,41],[-3,22],[9,35],[3,-22],[6,1],[7,-23],[5,23],[4,-3],[2,15],[-2,59],[4,17],[5,-6],[6,-22]],[[5942,40996],[6,37],[-6,2],[0,24],[-9,-18],[-2,-25],[-9,0],[-5,-25],[7,-9],[7,-36],[7,-8],[6,25],[-2,33]],[[12633,40839],[4,22],[0,17],[-6,5],[-3,-13],[0,-39],[5,8]],[[12560,40820],[-3,14],[-4,-18],[2,-27],[5,31]],[[13011,40822],[9,16],[3,19],[-3,38],[3,11],[-10,-15],[-4,22],[2,12],[-11,10],[-4,38],[-10,-9],[-6,3],[-2,-72],[2,-32],[7,-20],[-1,-15],[9,-33],[5,-6],[11,33]],[[12566,40835],[-2,0],[-11,-72],[4,-7],[3,30],[6,38],[0,11]],[[12938,40763],[11,24],[2,16],[7,23],[2,13],[-4,39],[6,13],[-7,26],[-9,53],[0,42],[5,29],[2,52],[-2,44],[-16,33],[-17,10],[-27,46],[-5,-52],[-13,-31],[-5,-52],[-4,-4],[-11,-31],[-9,-17],[-7,-26],[0,-45],[3,-11],[5,-48],[6,-31],[-3,0],[7,-40],[-1,-16],[4,-16],[11,14],[-1,-20],[1,-39],[8,-9],[16,0],[7,26],[7,12],[10,-25],[14,-15],[7,13]],[[12551,40803],[-3,14],[-4,-53],[2,-20],[4,13],[1,46]],[[12828,40744],[-2,13],[-4,-13],[6,0]],[[12840,40743],[-2,9],[-9,-11],[7,-20],[4,22]],[[12962,40687],[9,28],[4,33],[-2,17],[-6,5],[-9,-27],[-5,-23],[0,-29],[9,-4]],[[13082,41329],[-2,-18],[-9,-11],[-13,-20],[-9,-47],[-5,-12],[-6,-75],[-5,-24],[5,-48],[0,-43],[2,-35],[-4,-16],[0,-21],[-3,-40],[5,-33],[2,-8],[0,-41],[-8,-39],[-3,-41],[0,-28],[-2,-16],[0,-32],[6,6],[7,34],[16,18],[8,30],[5,56],[-2,25],[8,69],[7,22],[5,37],[11,18],[-2,-13],[6,-13],[5,-35],[11,17],[4,17],[5,8],[9,67],[0,43],[4,45],[4,25],[5,60],[4,44],[3,35],[-5,13],[-4,-5],[-11,11],[-5,-15],[-2,-35],[-8,-39],[0,13],[10,90],[0,40],[-4,63],[-2,2],[-5,-30],[-2,51],[-5,9],[-4,-30],[-2,-38],[-7,-50],[-5,-16],[0,18],[5,17],[-5,22],[-4,-24],[-4,-15],[0,-11],[-5,-8]],[[12640,40725],[-3,29],[-4,-25],[-5,-3],[-6,-48],[2,-17],[11,38],[5,26]],[[5973,40665],[-7,21],[-2,-4],[5,-39],[4,22]],[[12973,40633],[2,2],[0,54],[-9,-11],[-1,-40],[8,-5]],[[12983,40637],[-3,-9],[4,-21],[3,14],[-4,16]],[[12840,40594],[-5,-20],[2,-7],[3,27]],[[13009,40630],[-7,-13],[0,-53],[9,6],[2,24],[-2,26],[-2,10]],[[12980,40609],[-2,-9],[9,-72],[4,9],[-4,56],[-7,16]],[[7039,40522],[4,29],[-6,39],[-16,36],[-2,20],[-11,11],[-3,-10],[-9,5],[-2,16],[-13,-8],[-7,1],[-6,-13],[6,-31],[11,-34],[3,-20],[4,28],[5,-43],[6,4],[14,-21],[4,4],[0,32],[4,-10],[0,-19],[3,-12],[11,-4]],[[6985,40487],[9,56],[-7,-34],[-2,-22]],[[6102,40494],[5,10],[22,-19],[4,9],[11,-4],[5,5],[13,49],[9,12],[7,29],[-9,2],[-2,-22],[-11,-9],[-14,3],[-5,-7],[-6,21],[-5,27],[-8,-6],[-3,11],[-13,-12],[-5,14],[-13,-11],[-4,13],[-2,-28],[4,-13],[4,-31],[16,-55],[0,12]],[[12860,40461],[2,12],[0,39],[4,26],[-2,40],[-6,-17],[2,35],[2,16],[-2,27],[-9,-9],[-6,-13],[-7,-63],[-2,-58],[10,-13],[2,-9],[12,-13]],[[6872,40447],[22,31],[2,18],[-6,-2],[4,22],[2,32],[-9,28],[3,-28],[-7,20],[-6,5],[8,-29],[-2,-10],[4,-29],[-4,3],[-2,-43],[-13,-17],[-10,20],[-2,86],[3,26],[4,-19],[4,51],[5,-3],[0,19],[5,-23],[-1,30],[-15,17],[-14,24],[-17,44],[-5,23],[-13,79],[-11,42],[-9,-3],[-7,-37],[0,-21],[7,-64],[2,-13],[9,-65],[11,-54],[18,-53],[15,-64],[7,-23],[11,-21],[7,1]],[[12495,40469],[-3,-12],[3,-18],[0,30]],[[13024,40446],[-2,28],[-6,34],[-3,0],[-4,-43],[0,-8],[15,-23],[0,12]],[[6985,40487],[-4,0],[-4,52],[2,18],[6,-5],[0,13],[-6,17],[-5,22],[2,-28],[-4,-2],[-2,41],[-7,22],[2,10],[-7,1],[-17,33],[-15,-24],[-5,0],[-11,-16],[-5,-28],[7,-35],[-5,7],[-2,-13],[5,-15],[0,-22],[2,-22],[13,-53],[18,-38],[11,20],[14,-11],[11,-18],[4,43],[2,31]],[[12498,40428],[-5,-2],[2,-19],[3,21]],[[2620,40417],[11,1],[11,11],[13,2],[5,8],[6,-14],[3,13],[11,-13],[6,3],[9,23],[-4,19],[0,15],[-7,20],[-7,12],[-8,59],[-5,7],[-18,-14],[-6,-22],[0,-34],[-3,-27],[-20,-17],[-4,-30],[-7,-26],[7,-8],[7,12]],[[6053,40348],[7,13],[-2,17],[-7,-6],[2,-24]],[[12811,40313],[-2,15],[-3,-24],[5,9]],[[12984,40292],[-4,23],[-3,-2],[1,-21],[6,0]],[[12974,40320],[-3,-3],[0,-39],[4,21],[-1,21]],[[13016,40316],[4,2],[9,-22],[4,16],[9,5],[5,-21],[-5,60],[-4,22],[-5,4],[-11,40],[-9,13],[-9,0],[-11,-13],[-2,-22],[9,-1],[-9,-9],[-5,18],[-8,-22],[-1,-23],[10,-71],[-3,-25],[5,0],[15,33],[12,16]],[[13044,40361],[3,-62],[4,-23],[9,-19],[-4,22],[0,34],[-12,48]],[[6963,40278],[3,-26],[2,12],[-5,14]],[[5519,40238],[11,-35],[0,13],[-11,22]],[[6996,40202],[3,1],[0,67],[-7,6],[-4,-13],[-7,-2],[-13,-19],[2,-21],[4,10],[5,-5],[11,-45],[6,21]],[[7034,40187],[0,-10],[5,-22],[2,13],[-7,19]],[[12239,40159],[-2,32],[2,9],[0,20],[-5,15],[0,-22],[-4,28],[-4,-21],[-3,14],[-1,-14],[6,-22],[-5,2],[7,-32],[9,-9]],[[12221,40169],[2,10],[-6,8],[2,-35],[2,17]],[[12655,40160],[4,-12],[0,30],[-8,9],[-1,-14],[5,-13]],[[7050,40150],[-4,-15],[4,-4],[0,19]],[[12285,40165],[0,-31],[7,-10],[1,14],[-5,23],[-3,4]],[[12214,40148],[8,-26]],[[12222,40122],[1,9],[-9,30],[0,-13]],[[12214,40148],[-4,-11],[6,-9],[-2,20]],[[6207,40033],[2,28],[-3,-10],[1,-18]],[[12204,40064],[-5,27],[-3,-73],[3,4],[6,33],[-1,9]],[[12651,40048],[-3,-9],[5,-23],[5,14],[-7,18]],[[12188,40066],[-2,-7],[6,-26],[0,11],[-4,22]],[[12222,40122],[-1,-9],[5,-27],[-4,6],[3,-18],[14,-35],[6,-30],[3,35],[-3,65],[-8,26],[-12,25],[1,-31],[4,-29],[-8,22]],[[12880,40005],[0,11],[13,19],[5,-5],[9,9],[6,50],[11,42],[1,26],[4,30],[-2,22],[7,13],[3,17],[6,-1],[1,13],[-1,22],[10,12],[5,19],[-1,24],[3,-24],[2,9],[-2,41],[6,38],[1,37],[8,-9],[5,19],[3,-8],[1,52],[-13,45],[-9,22],[-9,2],[-6,28],[0,11],[-7,9],[-7,-28],[-7,-54],[0,36],[-8,16],[7,0],[9,60],[-5,17],[-7,-3],[-4,17],[-10,11],[-17,-30],[-6,19],[-8,-17],[-6,-2],[-3,-39],[1,-75],[-3,-19],[-2,-59],[7,-54],[6,-18],[3,14],[6,-14],[-4,-53],[-6,-33],[1,-18],[-4,-35],[0,-35],[4,-8],[-4,-55],[-5,-45],[0,-18],[-4,-15],[-2,-45],[7,-14],[0,-17],[6,-10],[5,28]],[[12194,39992],[-6,19],[-5,-9],[0,-19],[5,-22],[6,31]],[[12168,39973],[-3,5],[0,-23],[3,1],[0,17]],[[12173,39996],[-3,-36],[6,3],[-3,33]],[[12493,39948],[-5,-9],[1,-13],[4,22]],[[12150,39892],[6,17],[3,-4],[-3,24],[-1,-13],[-7,35],[0,-22],[-5,1],[-2,-21],[5,-31],[4,14]],[[12600,39879],[-5,-5],[-4,-32],[9,37]],[[12179,39835],[0,22],[-5,-24],[5,2]],[[12569,39822],[-10,-27],[2,-3],[8,30]],[[7126,39830],[-9,17],[-5,-32],[5,-15],[13,-13],[2,12],[-6,31]],[[12618,39799],[-8,-30],[9,22],[-1,8]],[[6961,39765],[-2,17],[-5,-10],[7,-7]],[[12582,39781],[-4,2],[-6,-22],[3,0],[7,20]],[[12615,40137],[2,-17],[-4,-16],[2,-22],[-2,-27],[-3,-7],[-1,-39],[8,-4],[5,17],[0,17],[6,5],[-4,28],[11,-20],[6,0],[3,18],[9,4],[-2,43],[-5,38],[-2,4],[0,37],[2,9],[-2,41],[-2,1],[0,51],[4,-20],[4,8],[1,38],[4,2],[0,29],[-4,22],[2,23],[11,48],[-5,25],[-2,1],[-4,44],[-3,17],[-9,-1],[-6,-38],[0,-13],[-4,-23],[4,-12],[-7,-2],[0,19],[-4,-10],[0,-20],[-3,-9],[-4,9],[-13,-20],[-3,11],[-6,-13],[4,34],[7,-16],[4,29],[9,30],[0,41],[-9,4],[-6,-17],[-7,20],[9,-5],[5,11],[4,21],[-2,12],[0,36],[-5,-1],[-2,26],[-9,-16],[-2,30],[-8,-10],[-1,17],[5,24],[6,6],[9,-6],[9,41],[-2,39],[6,13],[-1,33],[-5,-9],[-2,-17],[-9,13],[-9,-5],[0,12],[11,1],[9,76],[-7,13],[-5,-28],[1,26],[-5,34],[5,5],[11,39],[0,-17],[9,57],[2,33],[-9,31],[4,34],[-6,25],[-12,-69],[-10,-74],[-3,-7],[-6,-39],[2,35],[-3,18],[3,32],[-6,37],[4,21],[-3,92],[5,11],[-2,-35],[6,-11],[0,-22],[7,13],[6,-1],[9,113],[-4,36],[-4,12],[-2,-25],[-7,5],[-3,15],[1,26],[-3,-15],[0,24],[5,0],[4,54],[-4,11],[4,23],[-2,14],[-7,9],[3,25],[-1,53],[-4,26],[-13,-5],[-5,-43],[-2,-22],[6,-66],[-2,-17],[2,-21],[-3,-31],[6,-8],[0,-10],[-6,6],[1,-14],[-8,-27],[-1,-68],[5,-40],[-2,-86],[-4,-13],[-1,-31],[-4,27],[2,16],[0,47],[-2,6],[2,80],[-4,20],[0,-22],[-5,11],[2,-52],[-6,-13],[-3,5],[7,13],[-4,18],[2,33],[-2,16],[7,0],[-3,38],[4,25],[-4,23],[4,18],[-6,2],[0,16],[-16,-15],[-4,-12],[-2,-26],[-2,18],[2,26],[4,4],[-4,29],[8,15],[-2,46],[9,-44],[3,9],[8,-3],[-4,74],[7,29],[-2,23],[-7,9],[0,15],[-3,-30],[-6,-2],[9,60],[4,17],[-4,65],[-2,35],[-7,-26],[0,-17],[-6,-18],[1,-22],[5,-16],[-2,-17],[-9,-1],[-11,-26],[2,-43],[4,-19],[-2,-24],[-11,-13],[-2,-36],[13,-25],[2,-36],[-6,-6],[-7,-24],[0,-47],[2,-18],[-4,-17],[2,-13],[-4,-42],[-1,-46],[9,-8],[2,39],[8,26],[-1,-30],[-6,-23],[2,-29],[4,-22],[2,-43],[3,-5],[4,34],[7,18],[-2,-19],[-3,-5],[-2,-32],[2,-30],[-4,-5],[-15,37],[-3,20],[5,-7],[0,22],[-7,10],[-2,-9],[-5,14],[-4,-13],[0,-36],[9,-3],[0,-9],[-7,-50],[0,-29],[7,-30],[11,16],[-2,-30],[-3,-36],[3,3],[0,-36],[-5,-22],[5,-27],[2,19],[11,20],[0,-43],[-4,-12],[4,-25],[4,41],[0,28],[3,7],[2,40],[-5,27],[-2,33],[2,9],[7,-42],[5,13],[-1,-24],[0,-37],[3,-17],[7,38],[4,-13],[2,21],[4,6],[-2,48],[3,51],[0,-49],[4,4],[0,-54],[-2,-24],[4,-52],[-11,-63],[3,-22],[-3,-15],[-4,0],[-1,-31],[3,-8],[4,17],[5,-6],[2,26],[3,-44],[-5,-27],[-7,-22],[0,-68],[-5,4],[0,26],[-4,-10],[2,66],[-2,23],[-6,-16],[0,26],[-3,16],[-4,-39],[-5,-16],[0,-17],[-4,-7],[-5,-45],[-13,-39],[-13,0],[-5,14],[-1,-23],[15,-59],[8,-11],[1,-15],[11,-21],[6,6],[-6,-15],[4,-27],[5,-1],[2,-12],[11,5],[-2,31],[2,6],[4,-39],[5,-11],[-3,-15],[-14,-11],[-12,43],[-16,30],[-4,36],[-7,-7],[-2,-29],[2,-17],[-2,-13],[1,-30],[4,-13],[4,17],[7,-24],[7,-32],[-8,-22],[0,-14],[-6,17],[0,32],[-8,16],[-3,19],[-7,13],[-7,-59],[-6,-13],[-2,-37],[-3,-39],[11,-13],[0,-9],[-13,11],[-2,-15],[0,-22],[2,-57],[-2,-63],[-3,-25],[-2,-73],[3,-38],[6,-13],[2,15],[3,-16],[4,17],[2,48],[11,18],[6,39],[-5,39],[2,4],[4,-35],[0,-34],[-4,-24],[0,-32],[-12,-32],[1,-12],[-3,-13],[-2,-44],[5,-27],[5,10],[0,-18],[8,0],[11,35],[25,101],[5,-9],[6,13],[-5,-35],[-2,-1],[2,-33],[-4,-22],[-20,-39],[6,-16],[-9,-39],[0,20],[-4,-1],[-6,-28],[6,-10],[7,11],[14,40],[6,-5],[13,41],[7,8],[11,34],[6,1],[3,28],[3,103],[6,-37],[3,23],[1,34],[-4,12],[-5,-9],[-4,9],[4,26],[5,0],[6,-29],[3,7],[4,41],[2,44],[2,8],[-8,44],[4,5],[-9,56],[3,35],[-3,8],[3,31],[-7,39],[-11,0],[-9,22],[13,-2],[2,30],[9,-37],[7,-58],[0,-29],[5,-44],[6,1],[4,-13],[5,-42],[0,-30]],[[12604,39730],[5,5],[-5,16],[-5,-25],[5,4]],[[12546,39728],[-7,-7],[0,-17],[7,24]],[[12199,39592],[5,15],[-7,4],[2,-19]],[[12907,39621],[1,26],[-6,-22],[-4,-35],[-1,-26],[5,-12],[5,35],[-5,21],[5,13]],[[6309,39500],[6,31],[-8,4],[-3,-11],[5,-24]],[[2435,39483],[4,9],[-6,7],[2,-16]],[[12203,39492],[-6,0],[-1,-18],[7,18]],[[12610,39387],[17,30],[28,18],[6,22],[7,13],[14,11],[9,-7],[8,30],[8,7],[4,17],[9,-2],[4,18],[20,38],[9,3],[11,-11],[-5,26],[6,9],[0,17],[-5,-4],[5,22],[3,-10],[1,35],[6,87],[5,9],[2,-30],[-7,-62],[-7,-81],[3,-26],[13,15],[9,2],[7,-7],[28,10],[16,86],[2,24],[8,9],[8,47],[5,77],[0,15],[4,21],[0,35],[4,47],[-6,13],[-3,27],[-6,12],[-11,-57],[-7,-4],[13,32],[0,37],[5,19],[0,64],[4,44],[5,21],[0,118],[7,42],[-7,80],[-14,49],[-4,-2],[-9,-27],[0,-33],[-16,-80],[-9,-28],[-11,-50],[-7,-50],[1,-10],[-7,-44],[0,-17],[4,-13],[-6,-3],[0,-18],[-9,-75],[-2,41],[-11,-175],[-7,-3],[4,42],[3,-13],[2,40],[0,60],[4,23],[-6,9],[0,-27],[-3,-5],[-9,-52],[-4,14],[9,61],[4,39],[-4,13],[2,21],[-4,17],[8,29],[0,28],[3,18],[11,-10],[2,-27],[3,-8],[1,28],[8,67],[-3,28],[-2,8],[0,31],[-4,13],[-3,-4],[3,69],[8,-34],[11,48],[0,-15],[9,4],[12,39],[1,33],[-6,10],[-11,-49],[-5,12],[9,44],[7,13],[5,21],[6,117],[-5,-16],[-10,-2],[-1,27],[5,9],[-4,18],[2,26],[2,4],[-7,35],[0,17],[-13,38],[-15,-22],[4,-11],[-7,-24],[-6,17],[-7,-24],[-5,27],[-9,-9],[-2,-40],[-7,-17],[-9,11],[-6,-21],[0,67],[4,22],[-2,13],[-18,13],[-4,25],[-14,-1],[-10,5],[-12,-12],[-4,6],[-2,-21],[2,-24],[-3,-52],[1,-23],[-3,-60],[0,-33],[5,-15],[3,-37],[-3,1],[-6,-26],[-5,2],[9,-28],[2,1],[4,-26],[-4,0],[2,-15],[-7,-8],[0,-25],[-1,-37],[-5,2],[-3,-80],[-4,-12],[4,-12],[-2,-17],[5,-19],[-1,-16],[6,-35],[-6,14],[1,-31],[-3,-43],[5,-3],[-5,-11],[7,-18],[-7,-30],[3,-21],[9,-1],[0,-10],[-7,-19],[3,-10],[-5,-27],[5,-13],[-3,-37],[-5,-2],[3,34],[-5,23],[-15,36],[-1,-13],[5,-31],[-9,14],[-13,-29],[2,-26],[5,1],[-7,-21],[-5,0],[-2,20],[-2,-9],[4,-23],[-2,-22],[-4,26],[-7,-53],[2,-12],[-2,-23],[4,1],[7,48],[10,-4],[3,10],[7,-24],[2,13],[7,5],[-2,-16],[11,-6],[-5,-13],[-19,-4],[-7,-13],[0,-9],[-11,-37],[-4,-43],[-12,-52],[-6,-16],[-3,-30],[-6,-20],[-7,-17],[0,-15],[-11,-31],[6,-7],[3,-32],[-3,-10],[0,-29],[7,-22],[14,2],[9,-28],[2,-18],[8,-4]],[[12176,39364],[1,9],[0,31],[-3,1],[-6,-27],[2,-30],[6,16]],[[12166,39381],[-1,-7],[3,-30],[-2,37]],[[12805,39382],[-6,-39],[3,-14],[3,19],[0,34]],[[12183,39296],[-1,26],[-5,-14],[6,-12]],[[12143,39226],[3,16],[-5,15],[-2,-18],[4,-13]],[[12504,39239],[2,18],[-7,-9],[0,-17],[5,-9],[0,17]],[[7226,39163],[0,48],[2,-28],[6,-10],[5,23],[0,26],[-15,68],[4,15],[2,-22],[18,-50],[2,-12],[16,-30],[2,5],[-4,28],[2,15],[-9,53],[-2,43],[6,22],[-2,-31],[2,-28],[9,-52],[-2,-16],[11,9],[2,-22],[7,-21],[11,2],[2,23],[3,1],[4,22],[5,-7],[6,14],[2,19],[-11,56],[-4,-5],[-7,18],[-4,-6],[-12,5],[-6,-33],[0,21],[-9,38],[-9,1],[0,24],[-9,14],[-4,-21],[-11,13],[-11,40],[-1,31],[5,38],[0,22],[-7,35],[-2,25],[-9,1],[-4,18],[-9,11],[-2,-22],[-7,-15],[6,-39],[0,-35],[-10,-18],[8,-28],[5,-46],[6,-21],[0,-22],[-15,61],[-14,35],[-2,-42],[9,-28],[11,-37],[-6,-6],[-9,10],[2,-30],[9,-35],[6,-7],[0,-19],[12,-50],[4,-39],[-4,17],[-1,-21],[9,-28],[3,12],[7,-15],[2,15]],[[12161,39156],[4,31],[9,37],[0,14],[-9,-12],[0,12],[-6,25],[-7,-2],[5,31],[-9,-10],[-3,-21],[5,-43],[5,-7],[1,-29],[-4,-17],[0,40],[-6,20],[1,-75],[3,-39],[11,45]],[[12173,39074],[10,-8],[7,12],[-2,5],[0,42],[-5,45],[-6,32],[-4,1],[-16,-81],[-1,-22],[5,-10],[5,-30],[7,14]],[[12713,39133],[-3,-7],[-4,-32],[0,-35],[5,35],[2,39]],[[2515,39086],[-4,0],[-5,35],[-4,34],[-2,63],[-3,22],[-6,6],[-16,49],[0,20],[-7,42],[3,-41],[-7,-21],[4,-8],[-4,-23],[-7,-3],[-7,22],[-2,-20],[-17,-11],[0,-67],[8,-30],[5,9],[6,-8],[1,-16],[11,-14],[4,14],[7,4],[13,-13],[16,-27],[6,-17],[2,-26],[7,-10],[-2,35]],[[12573,38974],[5,5],[-3,12],[-2,-17]],[[12330,39014],[-4,-2],[0,-38],[7,-5],[2,18],[-5,27]],[[12579,38965],[-6,0],[2,-15],[4,15]],[[12622,38998],[-4,2],[-3,-30],[3,-39],[4,19],[0,48]],[[12633,38953],[0,16],[-5,5],[-4,-19],[2,-31],[5,15],[2,14]],[[12121,38952],[4,1],[14,104],[2,52],[-7,0],[-6,-15],[-3,-22],[-4,-6],[-6,-42],[0,-16],[-8,-70],[1,-33],[4,8],[9,39]],[[6313,38909],[-4,5],[4,-35],[0,30]],[[12088,38860],[6,47],[3,-38],[8,34],[-2,28],[5,43],[0,30],[6,27],[2,2],[1,37],[10,47],[0,26],[5,43],[-4,32],[5,32],[-1,28],[2,12],[3,-21],[6,9],[0,35],[-4,9],[0,39],[0,34],[-6,36],[-3,24],[2,26],[-2,24],[-9,30],[3,34],[-12,-12],[-13,25],[-9,-3],[-5,25],[-10,5],[-5,13],[-9,-19],[2,-39],[-2,-27],[4,-28],[-2,-20],[2,-43],[-2,-7],[2,-40],[5,-7],[0,-18],[5,-14],[8,-4],[5,-18],[2,-18],[-2,-28],[6,-9],[0,-19],[-4,-16],[6,-15],[-11,-2],[-4,-15],[-6,15],[-7,-1],[-1,-14],[5,-66],[-2,-36],[6,-24],[-1,-31],[-8,24],[-2,26],[-7,13],[-4,-8],[13,-61],[0,-14],[-6,-17],[4,-6],[2,-53],[3,-20],[-5,-27],[-6,-12],[4,-34],[13,-6],[3,8],[0,36],[4,27],[-2,-59],[7,-16]],[[6365,38882],[-5,10],[-7,-9],[5,-26],[7,25]],[[6369,38840],[-5,-6],[-2,-18],[3,-11],[6,12],[-2,23]],[[6376,38796],[-7,-10],[5,-16],[4,9],[-2,17]],[[7479,38813],[-4,-4],[7,-43],[0,-18],[9,17],[-3,29],[-9,19]],[[12058,38717],[-6,1],[-5,12],[1,-32],[10,19]],[[12622,38660],[-4,-8],[0,-19],[4,27]],[[12413,38583],[6,7],[-6,6],[-5,-13],[5,0]],[[12431,38553],[-9,-28],[1,-17],[9,40],[-1,5]],[[7048,38447],[7,14],[-3,26],[3,74],[-3,113],[-4,-8],[-7,-36],[0,-39],[-2,-38],[-2,-57],[4,-2],[0,-50],[-2,-26],[2,-13],[5,12],[2,30]],[[12285,40165],[5,0],[11,-30],[-6,-18],[-5,-39],[-2,27],[-14,73],[-6,13],[-9,65],[-18,40],[-4,-32],[0,-13],[9,-20],[6,17],[1,-9],[-7,-17],[-5,-39],[4,-44],[9,-4],[14,-57],[4,-13],[3,-39],[19,-36],[-17,8],[-6,27],[-8,49],[-4,7],[-7,40],[0,-51],[-4,-16],[2,-56],[7,-32],[11,19],[3,-17],[-5,1],[-5,-17],[5,-30],[-7,26],[-13,30],[-1,-18],[0,-39],[-2,40],[1,34],[-7,14],[-1,17],[-10,31],[-9,16],[-4,-1],[1,-15],[-4,-33],[-6,-6],[-3,-22],[7,-6],[0,-26],[-7,26],[-6,-7],[-1,-39],[3,-5],[-5,-17],[0,-28],[3,-4],[-1,-59],[5,6],[7,26],[4,-12],[-5,-16],[-2,-26],[5,4],[2,29],[2,-26],[7,32],[-11,37],[-4,32],[4,9],[4,-37],[2,7],[8,-37],[10,-11],[3,-19],[6,-9],[4,-20],[18,-36],[-4,-4],[-11,27],[-16,18],[-7,28],[-8,6],[-12,-69],[-6,-41],[-9,-8],[-2,-18],[4,2],[4,-31],[-4,-9],[7,-34],[2,9],[7,-2],[5,15],[1,-15],[5,18],[4,34],[9,23],[7,-5],[-11,-19],[-7,-37],[-8,-26],[6,-8],[7,-36],[-7,12],[-2,-21],[11,-7],[7,-36],[6,5],[7,31],[9,69],[6,-11],[-6,-17],[-4,-33],[4,-10],[-14,-42],[0,-13],[-7,-9],[-8,30],[-2,-12],[-7,-6],[-2,-16],[-5,3],[-9,-16],[-6,-33],[-3,-33],[-6,-30],[0,-18],[4,-42],[5,-9],[-2,-39],[11,-33],[15,6],[2,-19],[-7,-21],[-6,4],[-6,-20],[-5,8],[4,30],[-9,21],[-4,39],[-7,-24],[-1,-33],[4,-43],[10,-22],[0,-64],[5,-29],[3,-35],[-7,19],[-14,-6],[-4,9],[-6,-5],[-7,-15],[-7,1],[-3,23],[-8,17],[-5,0],[0,-28],[-13,-86],[17,18],[-8,-25],[-14,-31],[-6,-34],[-7,-28],[-4,-30],[-2,-8],[2,-36],[4,10],[3,-14],[15,3],[13,15],[7,-1],[5,12],[10,5],[-1,-20],[-8,-6],[-4,-11],[-11,-13],[-4,-14],[-5,-34],[-2,34],[-5,-4],[0,-19],[5,-28],[11,-16],[4,-20],[0,-22],[-4,-5],[2,-16],[7,-8],[0,-77],[-3,-51],[5,-1],[14,-67],[10,-36],[7,-16],[0,13],[9,-6],[9,17],[3,22],[6,9],[3,43],[4,19],[-3,34],[-17,35],[-14,52],[5,43],[7,-56],[6,-31],[13,-18],[5,15],[-6,15],[4,11],[11,-22],[-2,-13],[6,-13],[9,-5],[7,49],[6,13],[-15,41],[-2,45],[4,3],[0,-28],[7,-22],[7,-7],[4,14],[7,6],[8,22],[7,11],[-2,26],[11,5],[2,14],[5,4],[4,-48],[7,-12],[11,8],[9,-4],[9,28],[9,-7],[-3,21],[3,19],[-3,16],[5,30],[3,56],[3,15],[-3,74],[1,18],[-6,11],[-3,-24],[1,-15],[-9,-18],[-7,-41],[-5,-19],[-8,-44],[-5,-24],[-2,11],[15,76],[-2,20],[-9,-27],[-9,-3],[-10,-16],[-16,19],[2,14],[9,-14],[11,6],[-2,20],[9,-11],[6,17],[0,9],[-6,18],[-11,60],[0,48],[4,12],[3,-16],[0,-61],[8,-30],[5,20],[0,62],[6,25],[16,-22],[6,47],[-10,11],[-3,11],[13,-6],[0,38],[-8,-4],[0,13],[7,22],[2,30],[4,0],[7,66],[-9,16],[-5,44],[1,7],[9,-47],[1,18],[-6,13],[2,21],[9,-25],[-5,21],[7,19],[-2,21],[4,34],[-6,19],[-3,-13],[-8,20],[13,19],[7,-13],[4,67],[-4,1],[4,19],[0,17],[-7,2],[9,13],[0,20],[3,25],[-1,52],[-6,21],[2,13],[5,-3],[1,18],[-4,20],[5,2],[2,43],[2,13],[-9,0],[5,24],[6,1],[2,23],[0,43],[-2,3],[2,21],[-1,23],[1,18],[-4,0],[-15,-28],[-4,-16],[-5,5],[6,18],[5,4],[7,22],[13,20],[-2,15],[6,15],[4,74],[0,30],[-13,-3],[-6,-18],[-5,-3],[3,18],[6,13],[7,2],[9,13],[5,67],[-8,8],[2,9],[7,-5],[0,45],[3,61],[2,28],[-3,28],[3,31],[-3,28],[1,36],[-1,60],[1,54],[-4,32],[-3,-32],[0,-31],[-6,-89],[1,50],[-1,96],[-7,-13],[-12,-10],[-6,23],[9,-9],[11,12],[6,23],[0,22],[3,7],[0,44],[5,29],[-3,89],[-18,-13],[-7,0],[-2,11],[25,11],[4,9],[2,52],[-11,34],[-6,8],[-5,-12],[-4,26],[4,-8],[13,-2],[9,-17],[0,58],[-2,22],[-11,56],[-6,12],[-12,43],[-2,26],[20,-73],[9,-22],[3,5],[1,34],[-1,26],[-12,18],[4,5],[5,-10],[-7,32],[1,39],[-3,34],[11,-49],[5,10],[0,18],[-7,22],[-3,69],[3,26],[-6,73],[-3,-21],[-6,2],[-1,-16],[5,-22],[2,-33],[-5,-22],[3,-28],[-7,13],[-5,31],[-10,-12],[-4,-17],[6,-13],[-9,0],[-5,-18],[5,-17],[4,-56],[3,6],[0,-25],[-9,32],[-3,25],[-4,-23],[4,-8],[-9,-33],[1,-22],[11,-44],[0,-26],[-7,24],[-5,40],[3,-59],[6,-24],[-4,-5],[6,-41],[1,-41],[-1,-13],[-2,44],[-4,15],[-2,41],[-3,33],[-6,-3],[2,-28],[4,-9],[-4,-26],[-2,18],[-2,78],[-3,0],[-4,-24],[0,-52],[4,-2],[-2,-31],[-4,22],[-3,-19],[0,-26],[3,-33],[-3,-13],[-2,43],[-7,-9],[3,-60],[-2,-22],[8,-39],[5,-18],[-2,-18],[-5,23],[-6,43],[-4,9],[-3,-19],[0,-25],[-6,-40],[3,-27],[3,11],[6,-1],[1,-19],[-10,0],[1,-63],[-7,83],[-2,-30],[-5,-37],[2,-37],[-1,-38],[-5,15],[-5,-15],[0,-20],[5,-27],[9,32],[-4,-35],[-9,-31],[2,-26],[8,-30],[5,35],[4,25],[3,-25],[-7,-18],[0,-25],[4,26],[0,-15],[8,6],[3,39],[1,-21],[-7,-31],[3,-8],[10,-77],[5,-12],[4,10],[-2,-34],[0,-27],[6,-13],[5,0],[-4,-13],[-5,9],[3,-30],[13,-100],[-5,20],[-11,80],[-2,26],[-5,35],[-8,65],[-7,34],[-5,-28],[-6,-11],[6,-96],[2,-13],[1,-51],[6,-5],[-7,-15],[-6,72],[-2,61],[-7,67],[-6,32],[-7,5],[-6,20],[-5,-1],[-3,-34],[0,-56],[2,-14],[-8,-3],[2,-23],[0,-41],[9,-31],[4,-44],[12,-10],[4,-15],[-3,-18]],[[12001,38398],[0,-32],[4,28],[-4,4]],[[12155,38318],[0,8],[-14,-27],[0,-12],[7,-15],[8,40],[-1,6]],[[11970,38230],[-3,16],[-4,-26],[0,-12],[7,22]],[[7010,38209],[-7,-26],[5,-5],[2,31]],[[7028,38092],[-3,-17],[5,2],[-2,15]],[[12101,38070],[6,-4],[14,46],[2,22],[5,19],[6,12],[0,23],[-7,23],[-8,-12],[-11,-68],[-5,-11],[-4,-29],[0,-25],[2,4]],[[12733,38087],[-5,-4],[-4,-22],[4,-1],[5,27]],[[11965,38048],[5,22],[4,-1],[9,23],[-2,30],[-7,17],[0,30],[-4,43],[-9,-42],[-3,-30],[-4,0],[-2,-27],[4,-18],[9,-5],[0,-42]],[[11955,38043],[1,29],[-4,26],[-5,1],[2,-24],[-6,-26],[6,-23],[6,17]],[[7188,38040],[-7,0],[0,-63],[5,2],[6,33],[1,19],[-5,9]],[[12684,37968],[-8,-15],[0,-17],[6,10],[2,22]],[[11947,37946],[3,33],[-5,41],[-6,-8],[-1,-33],[-6,-6],[2,-29],[9,11],[3,-25],[1,16]],[[7452,37917],[-4,10],[2,-23],[5,-9],[-3,22]],[[7500,37901],[-12,51],[-11,21],[2,-27],[14,-39],[-3,0],[1,-21],[9,15]],[[7466,37949],[-4,-40],[6,-34],[3,4],[6,24],[-2,23],[-9,23]],[[7386,37695],[-5,13],[-4,-12],[7,-10],[2,9]],[[12526,37707],[2,-4],[5,37],[-3,-6],[3,32],[13,78],[5,64],[-5,19],[-4,-26],[-3,-36],[-9,-38],[-6,-67],[5,10],[0,-13],[-12,-100],[4,-2],[5,33],[0,19]],[[12508,37683],[-4,-8],[2,-24],[2,32]],[[12535,37600],[4,51],[-4,-20],[0,-31]],[[12506,37526],[4,0],[2,18],[5,16],[4,-1],[8,44],[-5,-21],[-3,49],[-8,0],[-7,-27],[-7,-58],[0,-24],[7,4]],[[7264,37531],[2,13],[-7,-13],[0,-15],[5,15]],[[7272,37516],[5,7],[-2,16],[-9,-21],[6,-2]],[[7442,37513],[2,23],[4,8],[-4,22],[-7,-4],[9,19],[2,-7],[7,17],[7,-4],[11,22],[-3,31],[-4,6],[-4,33],[-5,-5],[-9,-34],[-6,3],[-14,-25],[-4,-22],[-7,18],[0,-18],[15,-65],[-6,2],[2,-20],[7,5],[7,-40],[6,14],[-6,21]],[[7159,37505],[16,39],[6,30],[4,1],[3,26],[9,26],[8,9],[1,21],[8,31],[1,30],[8,42],[1,32],[4,54],[-2,23],[-3,-16],[-13,-10],[-5,-30],[-11,-1],[1,-37],[6,-15],[-26,-21],[0,-21],[-12,-11],[-8,-19],[-1,-11],[-13,-52],[-6,-50],[4,-31],[0,-44],[4,-12],[11,-13],[5,30]],[[7362,37444],[-3,46],[-4,-4],[2,21],[0,41],[-4,30],[-9,14],[-9,-18],[-3,-23],[-6,-2],[-3,-49],[3,-23],[15,-17],[11,6],[3,-17],[7,-5]],[[7319,37469],[-2,-30],[5,3],[1,14],[-4,13]],[[7212,37435],[5,-6],[6,11],[5,39],[13,17],[5,21],[2,26],[11,12],[7,15],[9,-1],[7,39],[4,17],[2,-12],[-4,-21],[0,-27],[4,-10],[-7,-11],[2,-13],[12,9],[6,-10],[12,36],[13,16],[13,31],[2,22],[-6,33],[-12,23],[-6,27],[0,17],[9,-34],[2,21],[-5,5],[-2,22],[-6,15],[-3,35],[1,15],[-3,35],[3,12],[0,27],[-3,30],[-2,2],[2,52],[9,42],[7,15],[2,-9],[-4,-90],[2,-47],[0,-27],[2,-58],[5,-28],[11,-37],[0,16],[9,19],[0,35],[2,30],[4,-8],[2,-39],[3,-16],[-1,-22],[5,-40],[7,-20],[2,28],[4,9],[3,-16],[4,24],[-2,40],[4,-1],[0,-80],[-2,-26],[-4,-20],[2,-42],[7,-8],[2,16],[4,-24],[0,35],[9,32],[7,-33],[9,13],[9,27],[0,7],[4,40],[9,13],[0,17],[7,12],[-7,31],[-5,1],[3,52],[8,-21],[8,-9],[2,-18],[4,5],[-2,30],[9,-5],[-9,45],[-7,17],[-18,32],[-9,42],[0,32],[-6,13],[0,15],[-7,29],[4,-35],[-13,33],[-4,42],[9,13],[15,-55],[9,-18],[-7,43],[3,16],[-3,28],[3,13],[-3,25],[-11,36],[7,21],[4,-8],[7,-32],[13,-47],[-8,88],[2,6],[-7,70],[-4,18],[2,15],[6,8],[3,-6],[6,-31],[18,-30],[0,-11],[7,-18],[-2,18],[4,21],[5,-14],[8,-7],[5,25],[11,-8],[3,-14],[8,4],[4,13],[-4,15],[0,25],[4,27],[-4,4],[-9,42],[-2,21],[-7,22],[-8,41],[-9,18],[-9,106],[0,63],[2,18],[-9,25],[-7,-22],[-13,-10],[-9,4],[-2,16],[-9,8],[9,-34],[2,-39],[-7,-26],[-4,4],[0,22],[-6,52],[-5,-24],[-9,-20],[-5,13],[-8,-62],[-7,4],[-7,21],[-7,-6],[-6,-29],[-2,3],[-1,-27],[-6,-31],[-9,1],[-7,21],[-9,-5],[-6,-26],[-9,-7],[-5,22],[-6,-1],[0,-23],[-9,-16],[-4,20],[6,31],[5,-11],[11,36],[-2,11],[-12,16],[-6,-7],[-9,11],[-3,-7],[-6,9],[6,2],[3,13],[-9,46],[-7,24],[13,-33],[3,-13],[9,-22],[2,-13],[6,11],[5,-15],[7,7],[11,-11],[6,13],[5,-9],[7,22],[6,4],[12,52],[-1,16],[3,21],[11,9],[2,15],[11,2],[2,7],[0,26],[5,20],[0,50],[-7,24],[-4,31],[4,5],[-7,48],[-15,69],[0,-51],[-4,-22],[-7,-4],[-11,62],[0,7],[-9,29],[-3,-16],[-8,-4],[4,-31],[0,-21],[-4,-11],[-9,28],[-2,-36],[-5,-23],[7,-38],[7,-20],[-7,-6],[-3,14],[-17,31],[-5,-3],[0,-21],[-8,-2],[-5,13],[-13,21],[-7,30],[-2,-13],[-12,-8],[-2,-30],[2,-33],[-2,-15],[-4,42],[0,52],[-9,6],[2,13],[5,-4],[6,13],[11,4],[5,24],[7,-15],[6,4],[11,-17],[11,37],[7,49],[0,21],[-15,40],[-9,8],[-5,25],[-7,10],[-24,-5],[-2,-12],[-9,-5],[-4,14],[-3,-21],[-11,3],[2,23],[-4,17],[-5,-9],[-4,31],[-9,21],[-11,-43],[-4,-4],[0,24],[6,6],[3,51],[-7,9],[-5,27],[-6,56],[-11,31],[-7,-58],[4,-16],[0,-59],[-4,-20],[-16,14],[3,30],[13,-17],[-2,24],[-7,63],[9,82],[0,26],[-2,30],[-23,-58],[-6,11],[-16,7],[-2,-8],[-3,22],[3,10],[-7,17],[-7,-4],[-9,38],[9,-25],[14,17],[7,-11],[6,14],[7,-9],[4,15],[0,25],[-9,31],[-6,-2],[-9,20],[0,19],[7,-24],[8,15],[5,-8],[6,6],[9,35],[-4,21],[0,35],[-9,14],[-4,19],[0,37],[-7,-4],[-13,10],[-5,-21],[2,-15],[0,-55],[-4,50],[0,44],[2,42],[-4,26],[-7,26],[-11,15],[-2,26],[6,21],[3,-26],[17,-22],[2,20],[-8,46],[-18,13],[-5,23],[0,-20],[-6,-10],[-11,41],[2,18],[-4,29],[-7,36],[-7,16],[2,27],[-11,12],[-4,30],[-5,10],[-13,1],[-5,-41],[-8,9],[-12,29],[-8,7],[-3,-7],[5,-80],[2,-4],[7,-52],[8,-76],[7,-20],[7,6],[5,-28],[1,-28],[8,-65],[8,-8],[11,-29],[5,0],[11,-39],[2,-31],[11,-56],[7,-18],[0,-18],[-13,31],[-3,26],[-8,25],[0,-37],[9,-74],[-5,-14],[-2,-27],[-2,27],[-9,109],[-9,28],[-13,1],[1,-68],[0,-22],[3,-19],[2,-29],[9,-63],[0,-30],[11,-46],[20,-58],[4,-37],[12,-10],[0,-8],[-9,-9],[-3,-39],[-6,8],[-3,32],[-1,26],[-10,24],[-8,2],[-5,48],[-4,10],[-3,22],[-11,41],[-15,98],[-7,39],[-7,59],[-6,7],[-7,-57],[-5,-6],[5,-39],[7,-40],[-3,-44],[5,-1],[4,-59],[9,-22],[5,-23],[9,-13],[4,-21],[5,-9],[-14,4],[-2,-16],[-4,12],[0,-31],[-5,26],[-9,9],[-9,-38],[-9,-21],[-11,10],[-11,-38],[-4,28],[-12,15],[-4,-7],[-11,-2],[-11,11],[-5,41],[-6,9],[-5,-22],[-9,6],[-6,26],[0,35],[6,57],[7,17],[2,20],[5,10],[4,-13],[5,12],[6,-20],[7,-35],[5,-48],[4,-28],[9,-15],[13,-2],[9,7],[11,-14],[4,18],[7,-31],[5,12],[0,39],[0,35],[-5,40],[2,14],[-2,15],[0,28],[-4,41],[-5,-19],[0,64],[-11,21],[5,12],[7,37],[-3,13],[9,14],[-6,24],[-12,6],[-6,17],[-3,-14],[-11,0],[0,10],[11,29],[2,27],[-2,26],[-6,3],[-3,-20],[-4,7],[2,44],[-8,23],[0,-71],[1,-14],[-6,-12],[2,28],[0,91],[2,4],[11,-43],[2,-19],[5,10],[-2,22],[-7,15],[-2,17],[-11,29],[2,-41],[0,-62],[-4,-56],[-5,-21],[-7,-14],[5,-37],[11,26],[5,-19],[2,-17],[-11,-13],[-7,4],[-9,36],[-4,-34],[-7,-18],[-14,-30],[-11,-15],[-8,-4],[0,-24],[2,-59],[0,-85],[2,-17],[-4,-54],[2,-55],[-2,-41],[0,-46],[-3,-59],[-9,-51],[-2,-43],[-6,-38],[-7,-27],[-18,8],[4,-20],[-2,-14],[-9,0],[-6,22],[-2,-10],[-10,-8],[-4,-17],[4,-17],[1,20],[6,-8],[2,-25],[-4,-6],[5,-29],[-1,-17],[-9,-15],[-6,-34],[6,-38],[3,-1],[2,25],[11,15],[4,-6],[5,32],[-4,-61],[-5,-8],[5,-72],[0,-42],[-5,0],[7,-56],[11,-31],[2,23],[2,-35],[-4,-11],[-2,24],[0,-32],[4,-46],[5,-31],[11,-17],[9,-39],[0,10],[9,23],[2,41],[2,-41],[-4,-31],[2,-21],[-5,3],[5,-74],[26,31],[1,10],[6,-8],[-15,-30],[6,-18],[13,-69],[9,-14],[3,-18],[-5,-22],[14,6],[2,-6],[11,1],[2,-22],[7,-27],[6,6],[3,-9],[4,13],[14,7],[13,14],[16,-7],[2,16],[4,-5],[3,32],[4,15],[0,45],[0,43],[4,48],[-6,35],[-32,31],[0,16],[5,-8],[7,9],[13,-19],[5,2],[2,-15],[13,-2],[4,9],[3,34],[0,69],[2,27],[2,44],[-2,30],[4,43],[7,21],[5,40],[6,22],[4,39],[7,39],[-2,20],[5,22],[0,19],[6,29],[7,17],[7,0],[8,21],[5,1],[9,32],[2,-10],[-2,-31],[-9,-7],[-3,-23],[-13,-7],[-6,-20],[0,-26],[-3,-11],[-6,-54],[-2,-50],[-3,-13],[-6,-59],[0,-54],[0,-111],[-2,-45],[2,-5],[0,-41],[-5,-15],[-4,-50],[2,-27],[5,0],[-3,22],[5,3],[0,20],[6,-4],[2,23],[11,25],[5,-1],[11,21],[5,-8],[-7,-37],[-11,-5],[-14,-37],[-2,-28],[-6,-18],[-9,-52],[-9,-37],[2,-36],[5,-11],[9,8],[13,-8],[8,11],[1,-7],[6,15],[14,8],[4,-3],[4,17],[5,42],[4,49],[5,-24],[4,26],[3,-2],[0,-34],[-5,-9],[-2,-42],[-9,-39],[-5,-10],[-4,-19],[-9,-29],[-6,-3],[-27,-49],[-5,0],[-11,-20],[-11,10],[2,-13],[-6,-19],[0,-15],[-5,-32],[2,-20],[0,-98],[-2,-46],[11,-26],[0,-22],[11,-12],[1,-26],[0,-26],[9,-1],[4,-13],[6,5],[3,-18],[6,-4],[0,-24],[7,-19],[5,26],[15,15],[9,-7],[-2,40],[-9,-1],[11,50],[7,0],[8,18],[5,76],[2,73],[-2,7],[-2,61],[4,46],[0,24],[7,89],[-2,8],[9,92],[-2,-135],[-5,-52],[0,-36],[13,36],[7,7],[4,22],[0,-14],[-8,-46],[-5,-17],[-4,-30],[-3,0],[1,-35],[4,-48],[4,17],[9,5],[2,-9],[7,16],[5,21],[0,45],[4,42],[9,24],[6,-10],[3,-31],[-5,-65],[-11,-16],[-4,-28],[-9,-31],[-7,-2],[-6,-13],[-5,-52],[-2,-46],[4,-13],[7,7],[13,28],[14,37],[11,15],[2,-6],[11,22],[5,-10],[2,12],[11,15],[-2,22],[-5,99],[5,11],[4,51],[5,3],[-2,-34],[-5,-37],[5,-72],[-1,-100],[2,0],[-6,-75],[-5,-43],[-4,-58],[7,9],[11,26],[4,28],[11,21],[2,23],[10,35],[10,21],[-4,-30],[-9,-19],[-2,-51],[-4,-8],[-7,-35],[0,-11],[-11,-43],[0,-17],[-7,-12],[-2,-30],[-9,-11],[-11,-38],[-2,-42],[-5,-11],[0,-26],[4,-9],[7,6]],[[7310,37418],[5,20],[-7,6],[-4,-26],[6,0]],[[6739,37414],[2,8],[-9,1],[-9,20],[0,-13],[9,-12],[-3,-8],[7,-9],[3,13]],[[12108,37322],[4,-4],[7,31],[-7,-10],[-4,-17]],[[6872,37288],[5,0],[-5,21],[-2,-10],[-5,15],[-2,-35],[4,-10],[5,19]],[[11881,37210],[8,-6],[8,71],[3,-5],[1,33],[9,17],[9,37],[6,43],[-9,26],[0,44],[-4,57],[3,12],[1,42],[-4,31],[-5,48],[-7,67],[-6,35],[-2,-27],[4,-28],[-6,13],[-2,-30],[4,-21],[-5,-25],[-11,-4],[3,-32],[6,-18],[-5,-20],[-6,9],[-2,35],[-5,-15],[-4,17],[-2,-41],[6,-13],[0,-28],[-6,-7],[9,-48],[2,-87],[-2,13],[-7,-19],[3,-72],[-1,-28],[2,-16],[0,-23],[3,1],[2,-32],[9,-6]],[[12550,37238],[-6,-2],[-6,-18],[0,-22],[10,9],[2,33]],[[7228,37200],[9,30],[13,-7],[2,-7],[7,13],[2,36],[9,49],[2,48],[3,-6],[15,19],[14,43],[2,39],[-9,9],[-9,-9],[-5,-11],[-11,-13],[-13,-6],[-9,-40],[-7,-17],[-15,-11],[-5,-36],[0,-33],[-11,-28],[-2,-24],[-4,-4],[4,44],[9,36],[-4,9],[-12,-9],[-20,25],[-4,-36],[-11,-8],[4,-38],[9,-27],[4,-23],[7,-11],[-2,-28],[4,-20],[3,-34],[11,-17],[4,8],[16,95]],[[11907,37031],[3,2],[4,42],[-4,6],[-3,-50]],[[11912,36983],[-5,14],[0,-16],[5,2]],[[6089,36970],[6,9],[3,17],[-9,-5],[0,-21]],[[12012,36970],[-8,-21],[6,-9],[2,30]],[[12281,36970],[-2,18],[5,19],[-7,-6],[-2,-18],[-7,-21],[3,-9],[6,16],[-3,-39],[0,-23],[5,57],[2,6]],[[11921,36918],[-5,-5],[0,-19],[5,24]],[[11923,36897],[-5,-9],[0,-18],[5,27]],[[12375,36883],[-1,-31],[3,13],[-2,18]],[[7620,36855],[2,33],[-2,43],[0,28],[-3,51],[-17,47],[-2,-26],[4,-5],[-7,-14],[-2,-61],[5,-16],[2,-26],[-2,-25],[2,-23],[4,0],[6,-28],[10,22]],[[11930,36833],[4,-6],[5,9],[0,19],[-3,5],[5,26],[-9,32],[-13,-52],[2,-27],[9,22],[0,-28]],[[11916,36853],[-4,3],[-3,-33],[7,10],[0,20]],[[12108,37322],[-3,4],[5,33],[-7,-10],[9,26],[9,-5],[4,13],[-4,55],[-7,14],[-13,-17],[-7,-34],[-4,20],[-5,1],[-6,22],[0,9]],[[12079,37453],[-9,-6],[11,22],[12,-20],[6,21],[9,15],[0,13],[7,-6],[1,31],[-4,16],[4,7],[5,-20],[-2,-57],[13,-16],[5,-22],[0,-18],[4,-19],[2,-65],[4,-4],[0,-29],[14,-27],[0,-35],[4,5],[0,14],[5,-24],[7,-3],[-3,-14],[2,-30],[-8,-46],[13,-15],[4,-17],[7,23],[7,13],[6,21]],[[12205,37161],[-2,18],[2,15],[5,-7],[7,40],[6,-18],[11,11],[3,-3],[8,13],[7,-5],[11,4],[5,-6],[7,19],[2,22],[-14,17],[12,2],[13,14],[4,-1],[16,24],[9,58],[2,39],[5,60],[-7,5],[0,45],[4,4],[0,37],[-2,32],[-2,-5],[-5,34],[-10,24],[-3,13],[9,50],[9,32],[-11,-26],[-3,-21],[-13,-52],[-4,4],[-11,-35],[-7,-9],[-14,-47],[-17,-35],[0,29],[8,14],[1,18],[7,13],[1,48],[9,29],[16,16],[2,18],[5,21],[2,-6],[2,26],[0,19],[11,1],[1,14],[-5,13],[8,7],[7,23],[2,23],[-11,11],[-11,44],[-11,-3],[-2,13],[-5,-19],[-6,13],[-15,-5],[-9,14],[-8,-9],[-17,-51],[-9,-17],[-5,-17],[-15,-74],[-13,-35],[-18,-18],[-3,-25],[-10,-36],[-13,-6],[-9,-23],[-7,-22],[-18,-32],[-5,-17],[-9,-12],[-10,-40],[-5,-26],[-14,-34],[-6,-9],[0,16],[17,44],[8,42],[-3,53],[7,-13],[6,38],[3,-32],[2,17],[7,13],[0,30],[6,-27],[16,36],[6,29],[8,2],[6,24],[-15,24],[-8,16],[1,14],[8,-6],[18,-33],[0,15],[7,2],[-2,14],[7,8],[-10,38],[-11,22],[2,13],[10,-9],[4,-29],[6,-7],[21,32],[4,30],[13,26],[1,22],[-5,32],[-11,2],[-5,11],[11,4],[9,-15],[3,2],[8,34],[3,26],[-4,8],[-19,5],[-12,7],[-1,11],[10,4],[10,-10],[5,23],[8,-19],[9,-12],[8,-1],[8,20],[2,13],[2,48],[3,-1],[4,-47],[12,-26],[9,4],[4,9],[4,-62],[9,23],[7,-10],[7,23],[6,-14],[7,-30],[6,9],[5,-5],[4,43],[0,79],[5,17],[0,18],[-5,30],[5,29],[-9,-18],[13,50],[2,22],[5,31],[4,90],[-2,107],[4,50],[5,22],[-4,-4],[2,30],[-3,17],[-10,-53],[-3,22],[-11,-44],[-2,-21],[-12,-39],[-4,1],[10,47],[6,24],[11,48],[7,46],[-9,15],[-18,-8],[-15,19],[-5,-14],[-14,-12],[-9,-59],[-6,-11],[-9,-32],[0,-18],[-5,-6],[-6,-23],[-18,-52],[-4,-17],[-9,-23],[-7,-31],[-11,-19],[-7,-27],[-17,-41],[-10,-41],[-6,-11],[0,-11],[-7,-17],[-15,-67],[-9,-16],[-14,-44],[-18,-52],[-9,-18],[-6,-25],[-6,-1],[-3,27],[9,9],[12,47],[3,-6],[10,37],[0,26],[-9,-24],[-1,5],[3,32],[9,24],[2,20],[-4,10],[-1,-25],[-8,39],[-16,37],[4,17],[9,-20],[8,-11],[10,0],[2,18],[5,20],[0,23],[-4,14],[4,8],[2,-17],[12,19],[12,42],[5,13],[2,24],[-7,32],[-8,-24],[-5,7],[-2,22],[-7,10],[-4,35],[7,-11],[10,-34],[7,26],[7,11],[0,41],[-7,21],[0,13],[7,5],[2,35],[3,16],[1,31],[-4,48],[-13,20],[-14,-24],[5,26],[7,13],[4,17],[-7,27],[0,13],[-6,8],[-11,-4],[4,26],[5,13],[-2,19],[-3,-13],[-5,11],[-1,20],[-5,11],[-7,-20],[-1,11],[-5,-5],[0,-19],[-4,-12],[-12,1],[-9,-13],[-4,-66],[-3,10],[-6,-35],[-14,-54],[-8,-11],[2,-22],[-13,-69],[-5,-29],[5,0],[-3,-19],[5,0],[8,30],[5,8],[11,36],[7,46],[11,22],[11,44],[-2,-56],[-11,-13],[-3,-26],[-4,0],[-7,-46],[-1,-32],[-8,4],[-4,-22],[6,-26],[1,-27],[-9,29],[-3,19],[-6,-13],[0,-14],[11,-48],[6,-7],[7,21],[-4,-35],[3,-8],[-8,-25],[-8,6],[-9,-19],[15,39],[-15,61],[-7,-15],[-8,-59],[1,-20],[-4,5],[-5,-35],[2,-25],[3,13],[6,-38],[3,6],[-2,-35],[-9,42],[0,-36],[-4,-17],[3,-32],[-4,6],[-4,29],[0,37],[2,32],[-6,-4],[-9,-51],[1,-30],[-1,-27],[6,27],[3,-62],[4,0],[-3,-21],[-9,-21],[12,-9],[-3,-17],[-8,17],[-2,-1],[-7,-35],[-1,-42],[-6,16],[0,-43],[2,-27],[-2,-29],[-4,61],[-4,5],[-5,-40],[6,-21],[2,-23],[-8,19],[-3,24],[-6,-3],[-3,16],[-4,-53]],[[11934,37885],[-9,-33],[-4,-5],[0,-56],[-5,1],[2,-23],[-6,3],[-2,33],[-7,8],[3,-36],[-3,-20],[4,-28],[2,-24],[5,-45],[2,-43],[7,-29],[7,15],[15,49],[1,-18],[-19,-55],[-6,-9],[-2,-32],[-3,-21],[2,-47],[5,-58],[9,40],[9,23],[4,30],[11,48],[7,24],[16,89],[13,60],[6,5],[7,34],[7,21],[2,-11],[-15,-53],[-5,-9],[-13,-64],[2,-20],[-5,-9],[-8,-34],[-5,-37],[-11,-45],[0,-25],[-16,-53],[-2,-31],[-6,-25],[-2,-27],[-9,-38],[-7,-9],[-6,-28],[-5,-32],[-1,-45],[-4,-32],[5,-10],[6,-26],[8,-6],[3,-21],[7,22],[5,33],[9,19],[2,30],[5,4],[-5,-48],[-4,-16],[0,-27],[9,-12],[-10,-18],[-4,4],[-2,-30],[-7,-44],[0,-31],[-4,-23],[2,-25],[6,5],[2,22],[14,-28],[2,58],[4,4],[5,36],[1,51],[6,6],[4,33],[-2,58],[2,48],[5,17],[8,16],[7,-1],[5,24],[4,-15],[-20,-45],[-5,-26],[0,-40],[5,-37],[-4,-29],[-3,-45],[-4,-6],[7,-50],[13,-39],[-7,-11],[5,-11],[13,14],[7,1],[9,46],[9,27],[13,17],[-5,-26],[0,-35],[18,-87],[11,-13],[10,-38],[1,-23],[9,-24],[5,3],[4,45],[3,-2],[6,60],[7,19],[9,17],[11,-14],[7,44],[9,15],[2,-9],[2,22],[5,7],[0,28],[6,-13],[9,39],[-5,32],[-4,2],[3,52],[-7,72],[-7,15],[-4,-6],[-3,58],[-6,16],[0,17],[-3,10],[-22,-21],[-13,16],[-11,-8],[2,23],[6,15],[3,22],[4,-11],[-2,-26],[7,-17],[9,12]],[[6928,36792],[-5,-1],[7,-21],[-2,22]],[[11887,36792],[-7,-26],[0,-19],[7,45]],[[12010,36749],[0,72],[-5,-5],[-10,37],[-12,-13],[-6,-33],[15,-54],[4,4],[14,-39],[0,31]],[[7459,36705],[-4,13],[0,-18],[4,5]],[[12392,36692],[0,-23],[5,-5],[-5,28]],[[12428,36662],[12,30],[12,50],[1,15],[24,83],[7,42],[15,56],[5,28],[2,26],[-7,8],[-18,-17],[-13,-35],[-9,-10],[-4,-12],[-11,-10],[-7,11],[0,17],[-22,-26],[-12,-43],[-8,-54],[-4,-16],[-3,-26],[3,-45],[6,-18],[11,-6],[2,-31],[5,-13],[11,5],[2,-9]],[[7321,36682],[14,15],[-3,10],[3,20],[6,6],[5,67],[-11,-17],[-3,-15],[-15,-22],[-9,0],[-5,-67],[10,-18],[8,21]],[[12384,36653],[-2,-13],[1,-17],[1,30]],[[12121,36579],[13,29],[5,19],[11,38],[-5,34],[-29,-3],[-8,-5],[-9,-42],[-5,-36],[7,-21],[11,-13],[9,0]],[[7501,36568],[1,16],[-5,-13],[4,-3]],[[12326,36653],[0,16],[4,49],[5,-5],[-1,-45],[-6,-69],[2,-7],[5,59],[6,23],[2,-4],[11,44],[1,55],[6,36],[7,16],[0,27],[6,57],[7,16],[-2,79],[4,42],[-1,13],[4,20],[14,-6],[8,-25],[13,0],[-2,-43],[5,4],[9,31],[13,11],[6,-7],[11,15],[12,41],[9,9],[0,35],[6,39],[5,17],[-2,-23],[-7,-42],[0,-19],[7,-24],[8,4],[3,-13],[9,-1],[8,-21],[8,16],[-1,28],[4,32],[-2,16],[-17,4],[8,17],[7,46],[-2,39],[11,45],[7,47],[7,36],[2,50],[-3,16],[3,33],[7,23],[9,61],[4,13],[2,21],[6,53],[-3,6],[6,55],[0,21],[13,47],[3,41],[4,25],[-2,44],[4,67],[3,10],[-3,22],[5,26],[-5,31],[0,44],[3,30],[6,51],[9,51],[4,3],[3,54],[0,67],[-3,22],[-6,-18],[-5,-62],[1,-33],[-14,-79],[-2,-16],[-5,-14],[-4,-26],[-6,-28],[-3,-30],[-5,-21],[0,-64],[-6,-37],[2,-51],[-5,-30],[0,-38],[-6,-10],[-12,-51],[1,-13],[-3,-28],[-6,-8],[0,-39],[-5,-69],[0,-20],[-4,-32],[-2,-33],[-5,-29],[-4,-52],[-4,-17],[-9,-60],[9,33],[13,69],[2,-18],[-9,-41],[-2,-24],[-4,-17],[-5,-35],[-5,-21],[-2,-25],[-4,-14],[-2,8],[-13,-69],[1,49],[11,66],[-2,21],[5,34],[-5,-21],[-7,-10],[-8,-21],[-3,7],[8,14],[22,110],[2,38],[-5,0],[-6,-25],[-9,-13],[-7,-23],[-5,10],[7,33],[5,71],[8,61],[-2,50],[-4,62],[-3,23],[0,52],[1,13],[5,-11],[1,-54],[9,-43],[7,30],[0,18],[11,104],[11,65],[0,26],[9,78],[5,30],[10,42],[-2,2],[5,42],[-9,6],[-4,26],[2,31],[4,-16],[7,-8],[11,2],[7,30],[-7,11],[6,7],[5,-9],[7,33],[4,31],[-4,78],[2,43],[5,50],[9,47],[9,96],[-7,-22],[-1,18],[-2,-44],[-15,-105],[-2,30],[4,-5],[4,46],[3,19],[-5,4],[4,24],[-4,24],[-2,-33],[-7,20],[-10,-42],[-8,-8],[-4,13],[-5,-13],[-6,-34],[-7,17],[5,29],[8,23],[-2,15],[-11,7],[0,19],[5,-3],[15,9],[10,-5],[9,32],[-3,39],[-5,20],[0,21],[5,-2],[9,-39],[4,2],[2,40],[5,-3],[-4,-48],[4,-17],[0,20],[4,37],[2,51],[5,35],[0,31],[-4,22],[-5,11],[-13,41],[-5,48],[-6,6],[-9,-46],[-11,-13],[-1,-22],[-4,-19],[-2,-47],[-4,-3],[2,26],[0,68],[-5,15],[-2,-28],[4,-25],[-8,-23],[-3,-31],[-4,1],[0,-16],[-5,-30],[-6,-10],[-3,23],[7,43],[5,18],[0,37],[-7,1],[4,21],[7,1],[1,31],[-8,26],[12,-2],[4,24],[2,24],[4,2],[-4,68],[-4,18],[0,-47],[-7,0],[-2,22],[2,47],[-2,48],[-11,52],[-11,31],[0,-28],[-7,-4],[-7,19],[2,-32],[-2,-112],[-4,-17],[0,64],[-2,27],[4,3],[-2,35],[0,70],[6,27],[-8,22],[-12,-55],[-1,11],[6,26],[0,44],[-5,-1],[-10,-18],[-1,27],[-6,12],[11,48],[-18,58],[-5,6],[-8,26],[0,24],[-5,-1],[1,19],[-12,-26],[0,-35],[-4,34],[-3,42],[0,-41],[-6,-1],[-7,53],[-2,-36],[4,-27],[-4,-67],[-2,-33],[-3,-33],[3,-30],[2,-6],[-5,-22],[3,-21],[8,-22],[1,-33],[-7,6],[-5,-15],[0,-27],[-4,-80],[4,-41],[5,26],[7,21],[8,9],[3,-17],[7,0],[-1,-19],[-15,-17],[-7,-39],[-2,-22],[7,-12],[8,-58],[16,-26],[6,-3],[10,27],[2,-6],[-11,-33],[-3,-11],[-4,6],[-2,-18],[5,-21],[-8,13],[-10,4],[-5,-11],[0,-29],[4,-51],[-4,-48],[14,-11],[1,22],[-1,11],[9,30],[15,20],[9,-15],[6,48],[7,28],[13,1],[-2,-21],[-13,-23],[-3,-38],[16,-30],[-5,-17],[-19,39],[-3,-10],[-8,5],[-10,-43],[-4,-41],[-13,-76],[0,-26],[-9,-16],[-7,-80],[18,73],[7,44],[2,-8],[0,-36],[-2,0],[-5,-51],[5,-18],[0,20],[5,-13],[-5,-26],[-4,-9],[15,-38],[0,10],[-9,25],[7,9],[6,-40],[3,3],[2,27],[11,-29],[9,-11],[2,-21],[-6,1],[0,-17],[-5,11],[-5,-2],[-4,15],[-13,6],[-9,20],[-13,50],[-7,17],[-5,-39],[2,-27],[-4,-59],[-18,-109],[-4,-93],[-3,-52],[1,-11],[-2,-35],[-5,-11],[-3,-33],[1,-65],[0,-13],[6,-50],[-4,-26],[5,-80],[-5,-22],[0,-45],[-2,-38],[-7,-92],[-2,-47],[4,-2],[-6,-50],[0,-23],[2,-13],[-3,-51],[-9,-58],[-2,-61],[5,-11],[-2,-23],[5,3],[1,-28],[2,15],[5,-72],[0,-62],[-2,-18],[0,-37],[9,-27],[-3,-34],[-4,9],[0,26],[-4,13],[0,115],[-4,44],[-6,-29],[-4,-70],[-7,-31],[-6,-55],[-7,-10],[-4,-29],[0,-24],[-5,-31],[3,-16],[6,-13],[4,-42],[-8,3],[-5,23],[-2,-23],[-5,-64],[0,-39],[-2,-102],[-4,-20],[0,-35],[4,-88],[9,53],[5,83]],[[7473,36464],[0,28],[-3,-9],[3,-19]],[[7372,36436],[-4,7],[2,-20],[2,13]],[[7373,36414],[-5,0],[4,-17],[1,17]],[[7477,36495],[0,-14],[5,6],[4,17],[-2,19],[6,-3],[-4,23],[5,8],[4,41],[-7,-2],[5,54],[4,30],[0,-51],[4,11],[7,48],[-2,-38],[9,-15],[-2,-15],[6,-30],[5,4],[2,-41],[5,10],[-3,48],[9,-4],[-4,54],[-3,20],[1,34],[-3,9],[-4,65],[-2,52],[0,65],[2,43],[4,-25],[-2,-26],[5,-6],[2,-25],[0,-56],[2,-31],[9,-47],[2,12],[0,34],[-4,45],[2,18],[5,-9],[6,-53],[5,-87],[6,-29],[7,37],[-2,10],[2,69],[-5,25],[5,24],[-2,34],[-5,29],[5,30],[-7,49],[-9,-3],[-9,35],[5,26],[-10,60],[-10,13],[-3,-23],[-4,2],[0,-36],[-5,-13],[-8,21],[-2,-7],[-3,-30],[-5,-15],[1,-25],[4,-13],[-4,-18],[0,-27],[-5,2],[0,-75],[-4,-16],[2,43],[-4,16],[-3,-26],[-6,-12],[8,51],[-6,-17],[-11,1],[0,31],[4,23],[-7,3],[5,33],[2,-16],[5,28],[2,33],[-2,17],[-9,-30],[-11,-23],[-2,25],[13,28],[-3,28],[5,15],[0,27],[7,-1],[8,26],[-4,22],[-11,-2],[-7,54],[-4,-30],[4,-13],[-9,-15],[-6,20],[-5,-20],[-4,1],[-2,-26],[-5,10],[-2,21],[-7,-9],[-2,17],[-7,12],[-4,41],[0,22],[-4,11],[-5,-24],[-2,-28],[2,-63],[4,-11],[-4,-15],[2,-55],[-4,-76],[-2,31],[-3,9],[-2,-37],[0,89],[-4,-1],[0,60],[-5,132],[-6,19],[-7,-2],[6,18],[-15,13],[-5,12],[-11,-12],[0,-44],[-11,-1],[7,25],[7,88],[-1,27],[-6,21],[0,21],[-9,-7],[-11,8],[-13,-32],[-7,-6],[-5,-27],[-18,-47],[-4,-1],[-4,-35],[-7,-29],[-4,-57],[6,-13],[0,-19],[-4,9],[-16,-7],[-7,16],[-6,-25],[0,-23],[-9,-31],[-2,-31],[-5,-15],[5,-33],[-2,-23],[4,-44],[9,-19],[9,24],[13,11],[9,14],[7,-17],[4,7],[4,28],[0,24],[3,13],[-2,-33],[2,-22],[6,5],[0,16],[12,35],[6,-1],[16,32],[0,-8],[-18,-45],[-4,-34],[-9,0],[-12,-27],[0,-34],[-10,-22],[-9,-13],[-9,-45],[2,-13],[7,-29],[2,-27],[6,-20],[0,-19],[3,10],[8,4],[7,29],[11,18],[7,-5],[0,15],[7,11],[4,-11],[-4,-13],[2,-18],[18,13],[4,-3],[7,17],[6,83],[-2,-40],[7,-30],[-7,-11],[0,-15],[-4,-35],[2,-43],[9,-3],[-9,-6],[-9,-61],[4,-4],[10,24],[4,-7],[-11,-56],[-9,0],[-7,-10],[3,-17],[-7,-4],[-9,-41],[-2,-22],[7,14],[15,1],[9,-21],[2,17],[-2,42],[7,-12],[-3,-15],[-2,-80],[9,-13],[0,-19],[5,-16],[1,17],[5,18],[2,41],[-2,15],[9,-10],[0,-56],[-2,-8],[2,-34],[-2,-10],[4,-30],[7,22],[7,-9],[2,16],[-5,37],[5,12],[0,-17],[7,-34],[6,20],[0,19],[9,-31],[7,0],[4,13],[-6,40],[-3,39],[-6,29],[2,13],[6,-4],[1,14],[4,-11],[-2,28],[4,-20],[5,5],[-5,28],[2,11],[-6,23],[2,79],[4,9],[9,-35],[-2,-43],[4,-13],[5,30],[0,28],[5,7],[-1,64],[-4,29],[4,-2],[5,-22],[2,5],[5,-55],[-5,-15],[-2,-37],[5,5],[4,22],[-3,-64],[3,-27],[4,-7],[-6,-53],[2,-17],[6,21],[3,22],[11,21],[-7,-38],[0,-19]],[[12052,36349],[7,32],[-1,13],[-10,-4],[-7,9],[-2,24],[-9,-18],[5,-17],[6,0],[-2,-13],[6,-10],[3,14],[0,-30],[4,0]],[[12352,36597],[-9,10],[0,-17],[-10,-80],[-5,-54],[0,-25],[-7,-34],[-2,-28],[2,-20],[4,8],[3,40],[13,78],[3,48],[8,74]],[[12032,36357],[4,17],[-4,20],[-9,1],[-2,-37],[2,-13],[9,12]],[[12041,36323],[7,24],[-7,11],[-2,-27],[-5,12],[-2,-12],[9,-8]],[[7450,36301],[0,29],[-11,27],[5,-52],[6,-4]],[[12050,36310],[-3,-11],[3,-15],[0,26]],[[12299,36310],[9,4],[0,39],[7,26],[-4,5],[-14,-27],[-5,-54],[-2,-28],[9,35]],[[12061,36334],[-4,18],[-3,-14],[0,-38],[5,-35],[2,19],[0,50]],[[12021,36291],[-7,8],[0,-22],[7,-15],[4,12],[-4,17]],[[12052,36260],[-4,-24],[4,-13],[2,13],[-2,24]],[[12038,36219],[-6,19],[0,-15],[6,-4]],[[12323,36171],[3,0],[2,25],[-4,-2],[-1,-23]],[[12041,36131],[6,48],[-4,18],[0,-35],[-4,-5],[0,-35],[2,9]],[[11994,36179],[-5,-13],[-8,-44],[-3,-34],[5,-17],[9,17],[4,41],[0,31],[-2,19]],[[7132,36096],[-9,1],[7,-32],[2,31]],[[5337,36066],[6,7],[3,21],[-7,19],[-5,-55],[3,8]],[[11974,36031],[-4,8],[0,-17],[4,9]],[[7381,36161],[7,-17],[-4,-10],[8,-13],[5,32],[-2,-30],[-3,-19],[1,-22],[8,2],[0,-23],[5,-14],[6,60],[5,-8],[-4,20],[-7,67],[7,-17],[2,-42],[6,-23],[12,-9],[-3,-25],[7,-19],[9,26],[6,-46],[7,-9],[12,1],[-5,8],[0,20],[4,2],[-4,15],[-2,50],[4,-6],[-2,37],[-6,26],[-3,30],[5,22],[0,18],[-5,3],[-4,35],[0,-41],[-5,20],[3,19],[-5,3],[-4,26],[-5,43],[-7,29],[-13,-12],[-11,-2],[-4,-39],[-3,15],[-4,-17],[-7,-1],[0,-35],[-2,23],[-5,-14],[5,-3],[-5,-13],[11,-31],[1,-27],[-3,-1],[-6,33],[-2,-19],[-5,-18],[9,-12],[4,-17],[3,8],[2,25],[2,-21],[5,23],[2,-9],[-5,-30],[3,-28],[4,-7],[-2,-13],[-7,21],[-9,-23],[5,36],[-9,14],[-3,-27]],[[11582,36018],[-6,-21],[5,-2],[1,23]],[[7413,36003],[-5,-4],[5,-15],[0,19]],[[11965,36018],[-9,-22],[-4,-45],[4,-25],[3,-3],[2,30],[0,43],[4,22]],[[12025,35840],[-6,5],[-2,-28],[8,23]],[[5258,35912],[3,2],[5,25],[-3,45],[-5,26],[1,-29],[0,-28],[-5,-24],[-9,-24],[2,-37],[3,-20],[-2,-13],[2,-34],[8,31],[0,80]],[[5216,35918],[-4,-26],[4,-36],[0,-48],[3,-40],[4,-7],[4,40],[0,63],[-11,54]],[[11889,35723],[0,9],[-10,-22],[4,-6],[6,19]],[[11978,35753],[-2,-2],[0,-39],[2,-4],[0,45]],[[11897,35717],[-3,8],[-7,-28],[1,-19],[6,12],[3,27]],[[5141,35640],[-11,102],[-9,62],[-9,110],[-12,92],[-8,90],[-3,49],[-9,32],[-10,10],[-3,13],[-7,-12],[-17,-4],[-9,26],[-2,-11],[4,-47],[-4,-30],[4,-41],[-2,-50],[-27,-132],[0,-29],[2,24],[25,112],[2,-32],[0,-34],[4,-9],[0,-58],[-4,-7],[9,-8],[7,-14],[4,-22],[14,-36],[10,-20],[14,0],[7,-15],[6,-30],[7,-21],[7,1],[6,-35],[1,-22],[8,-4],[3,-37],[4,-6],[-2,43]],[[5588,35555],[-2,9],[0,41],[-5,-39],[7,-11]],[[12306,35571],[-1,-14],[7,-10],[0,11],[-6,13]],[[5276,35544],[7,27],[0,25],[-4,-13],[-3,-34],[-6,-2],[-2,-18],[4,-13],[4,7],[0,21]],[[11867,35460],[-4,5],[-3,-25],[3,-17],[3,9],[1,28]],[[12057,35410],[4,9],[-2,25],[-12,22],[-6,-10],[-2,-14],[6,-21],[12,-11]],[[7506,35421],[-4,15],[0,-22],[4,7]],[[7575,35371],[-2,12],[-16,13],[0,-30],[3,11],[2,-15],[6,-5],[7,14]],[[11801,35388],[-1,18],[-11,-22],[-8,-52],[4,-26],[9,16],[0,30],[7,36]],[[7559,35314],[3,11],[-7,4],[-7,32],[-2,30],[-4,-4],[0,-25],[4,-22],[0,-23],[5,-3],[0,-13],[8,13]],[[6169,35317],[-3,-16],[7,-5],[-4,21]],[[7481,35288],[7,8],[5,30],[13,4],[7,-24],[6,8],[-2,26],[-6,9],[-5,-9],[-4,9],[-5,34],[-13,20],[-16,1],[-4,-25],[13,-13],[-2,-21],[6,-42],[-6,-12],[0,-18],[6,15]],[[12214,35340],[2,35],[-3,2],[1,37],[-10,-156],[-3,-48],[2,-52],[5,7],[2,49],[7,63],[-1,46],[-2,17]],[[12230,35160],[-4,-11],[4,-13],[0,24]],[[7074,35023],[0,13],[-6,-5],[-3,-14],[9,6]],[[7660,34919],[4,4],[-2,38],[-5,10],[-4,-7],[-9,1],[-4,-36],[6,-32],[3,-4],[6,21],[5,5]],[[7715,34887],[7,3],[-2,14],[0,37],[-5,3],[-9,-17],[-2,-21],[-7,-5],[-2,-14],[2,-31],[12,11],[6,20]],[[7619,34858],[1,16],[-3,12],[-9,-20],[-8,0],[-5,-30],[16,-48],[6,-2],[3,9],[-1,63]],[[11102,34400],[16,36],[-12,-22],[-4,-14]],[[8007,34380],[6,6],[2,24],[-11,-15],[-4,15],[0,-22],[4,-13],[3,5]],[[6997,34354],[-7,21],[0,-15],[7,-6]],[[8002,34348],[-2,-16],[7,0],[6,11],[-2,-21],[7,-3],[-5,35],[-11,-6]],[[7137,34296],[2,18],[-7,35],[-6,2],[-1,-15],[5,-39],[7,-1]],[[7166,34245],[2,15],[6,-11],[3,16],[0,23],[11,40],[2,46],[-9,52],[-11,32],[-7,-13],[-22,17],[-9,-30],[3,-35],[-3,-32],[7,-33],[4,0],[-2,-24],[11,-15],[3,-20],[11,-28]],[[7947,34280],[4,34],[-5,-9],[3,49],[-3,48],[-6,-9],[-4,46],[0,19],[-7,41],[-5,7],[-6,30],[0,-27],[4,-12],[-4,-17],[-7,23],[-7,-11],[0,-21],[7,-11],[-6,-22],[4,-11],[7,0],[-3,-32],[9,-18],[-4,-20],[9,-18],[-3,-22],[5,-24],[-7,-13],[2,-33],[16,15],[7,18]],[[8029,34165],[11,-15],[-2,25],[-3,3],[0,24],[3,2],[0,35],[-7,-33],[-2,-22],[-5,22],[1,37],[-7,-22],[2,-24],[-9,18],[4,52],[-6,17],[2,33],[-11,-22],[0,-16],[5,-1],[2,-16],[-5,-5],[2,-31],[5,-3],[-5,-26],[5,11],[0,-31],[6,14],[3,-27],[2,20],[5,9],[-3,-37],[9,-18],[2,6],[-4,21]],[[7706,34019],[-6,-6],[-1,-16],[5,-21],[4,13],[-2,30]],[[10971,33831],[2,36],[-5,-7],[0,23],[-4,12],[-2,-45],[9,-19]],[[7780,33815],[2,15],[-11,0],[0,-8],[9,-7]],[[10988,33822],[-4,-13],[4,-20]],[[10988,33789],[0,33]],[[8224,33812],[-6,-21],[7,-7],[-1,28]],[[10971,33831],[6,-57],[5,23],[0,40],[2,17],[-9,-31],[4,35],[-8,-27]],[[10988,33789],[3,-24],[7,15],[0,52],[-5,-6],[2,-22],[-2,-16],[-5,1]],[[11002,33745],[4,5],[-4,21],[-7,-19],[4,-20],[3,13]],[[10988,33730],[-6,32],[-3,1],[2,-29],[7,-4]],[[8233,33717],[-3,22],[-3,-9],[4,-31],[2,18]],[[8222,33713],[5,-42],[-2,38],[-3,4]],[[8165,33652],[11,53],[9,83],[-9,-38],[-5,-49],[-4,-8],[-2,-41]],[[4242,33654],[-3,3],[-13,-33],[0,-25],[5,20],[6,9],[5,26]],[[8218,33667],[0,37],[-5,14],[1,-34],[4,-9],[-5,-14],[3,-13],[-3,-22],[1,-39],[4,15],[-2,23],[4,7],[-2,35]],[[11035,33565],[-11,-5],[-4,-22],[4,-38],[6,-1],[10,38],[-1,17],[-4,11]],[[8258,33436],[-4,-39],[6,18],[-2,21]],[[8111,33371],[-6,7],[4,-34],[2,27]],[[4162,33325],[6,27],[12,41],[-3,0],[-9,-33],[-6,-35]],[[8289,33200],[4,-1],[5,26],[-2,45],[-3,-29],[-6,17],[-2,-21],[2,-5],[-2,-26],[4,-6]],[[4162,33325],[-7,-54],[-5,-56],[-2,-35],[5,67],[9,78]],[[8848,33180],[-2,17],[-5,9],[2,-22],[5,-4]],[[8311,33039],[-2,11],[0,42],[-6,39],[-5,-13],[7,-16],[-5,-28],[3,-27],[-1,-13],[5,-16],[4,21]],[[8634,32948],[4,15],[-6,-5],[2,-10]],[[11039,32967],[-4,-14],[4,-8],[0,22]],[[9724,32932],[-8,18],[-3,23],[-24,85],[0,11],[-16,55],[-2,28],[-7,30],[-13,50],[-7,39],[-9,59],[-11,33],[0,-18],[7,-54],[2,-54],[9,-33],[7,-41],[7,-26],[13,-58],[2,-43],[5,1],[6,-14],[11,-51],[7,-18],[0,-39],[4,24],[7,-26],[9,-18],[7,-25],[7,14],[-3,18],[-7,30]],[[8678,32800],[1,26],[-3,13],[-8,60],[-16,94],[-13,33],[-12,19],[-11,5],[-7,-11],[3,-11],[5,4],[10,-17],[-9,-7],[0,-15],[5,-4],[4,-22],[-2,-15],[-8,2],[0,-9],[9,-13],[6,51],[15,-23],[7,-41],[5,-45],[2,-2],[13,-70],[4,-2]],[[9689,32895],[0,20],[-7,-5],[0,-34],[2,-13],[-2,-31],[-2,-56],[6,13],[-1,34],[2,18],[2,54]],[[8663,32793],[3,-20],[1,9],[-4,11]],[[8721,32735],[4,-9],[3,40],[-12,91],[-2,53],[-11,48],[-28,63],[-8,15],[-6,-27],[6,-23],[3,-45],[4,-2],[2,-24],[5,0],[0,-37],[6,-21],[9,-12],[1,-34],[4,-9],[0,-19],[7,-46],[11,-31],[2,29]],[[9689,32553],[9,40],[2,29],[-7,41],[0,-26],[-4,-37],[-7,-37],[0,-30],[7,20]],[[8663,32793],[-11,70],[0,16],[-9,52],[-4,-3],[-4,-26],[4,-2],[2,-20],[-2,-19],[-5,2],[9,-40],[0,-36],[5,-11],[1,-32],[7,-25],[7,-40],[0,-22],[4,10],[-1,-26],[6,-19],[3,36],[4,-14],[-1,-51],[7,-76],[3,29],[0,69],[6,-32],[5,15],[2,-18],[7,51],[-1,28],[-10,26],[-5,28],[-11,31],[-3,-25],[-3,22],[-9,0],[-7,26],[4,26]],[[7395,32480],[7,15],[6,70],[-2,26],[4,28],[-2,51],[-7,-33],[-13,-91],[-4,-42],[8,-41],[3,17]],[[8676,32479],[-4,45],[-4,20],[-3,-9],[1,-48],[4,-4],[0,-24],[6,20]],[[8666,32437],[-7,85],[0,19],[-9,74],[2,46],[-3,13],[-6,45],[-5,38],[1,29],[-12,46],[-15,27],[-2,-6],[-9,7],[-2,-19],[-10,-17],[1,-16],[18,10],[17,-22],[-9,-13],[-20,8],[-4,-20],[6,-23],[11,-11],[7,9],[10,-22],[-5,-7],[5,-37],[-3,0],[-5,25],[-8,-7],[0,-15],[-5,8],[-9,-8],[0,-37],[14,-18],[20,-61],[4,11],[1,-22],[6,-32],[4,9],[-2,43],[2,37],[5,-39],[2,-7],[2,-61],[2,-17],[-2,-48],[5,0],[2,-22],[5,18]],[[1779,32432],[-3,-1],[9,-39],[-6,40]],[[4689,32385],[7,28],[6,-2],[3,35],[11,65],[0,37],[-20,60],[-3,20],[-4,4],[-13,-95],[-2,-41],[10,-59],[-1,-48],[6,-4]],[[9535,32356],[2,27],[-11,2],[-17,-15],[-9,-11],[29,2],[2,-15],[4,10]],[[9549,32344],[4,4],[16,31],[11,0],[-5,10],[-20,-20],[-7,-16],[1,-9]],[[9462,32346],[6,-24],[3,45],[-3,7],[-11,-30],[-11,-9],[-7,-20],[1,-13],[13,33],[9,11]],[[8701,32285],[-2,43],[-7,42],[-2,-26],[4,-18],[-2,-24],[2,-28],[4,2],[-4,-26],[7,7],[0,28]],[[8703,32233],[-4,4],[4,-50],[0,46]],[[8859,32183],[2,61],[-7,23],[-6,11],[-4,15],[-9,16],[-5,26],[-7,22],[-9,-17],[7,-25],[-2,-17],[2,-18],[-7,13],[3,-21],[6,-2],[9,-20],[3,7],[4,-24],[11,-27],[6,-24],[3,1]],[[9393,32226],[16,26],[13,35],[-2,22],[6,2],[7,-26],[-2,22],[-5,15],[-8,-9],[-3,-34],[-27,-60],[-10,-26],[2,0],[13,33]],[[9464,32139],[3,11],[-7,30],[-2,-8],[2,-28],[4,-5]],[[9468,32167],[-1,-36],[2,4],[-1,32]],[[9347,32140],[6,34],[7,2],[13,-28],[-2,15],[-11,22],[-12,-11],[-8,-28],[0,-20],[7,14]],[[9482,32178],[-5,18],[-4,2],[0,-39],[4,-37],[5,4],[0,52]],[[9464,32076],[2,41],[-7,27],[-8,39],[-9,-29],[7,-4],[-14,-15],[-4,-15],[4,-16],[14,-28],[9,-22],[8,-6],[-2,28]],[[9351,32050],[-3,3],[0,-25],[3,22]],[[9489,32135],[0,-29],[6,-63],[7,-15],[0,9],[-5,52],[-6,24],[-2,22]],[[8919,32083],[-2,23],[6,-13],[5,12],[2,-16],[15,3],[10,-7],[-3,50],[-15,50],[-7,21],[-7,66],[7,7],[7,-18],[4,-22],[5,-4],[2,-20],[7,-24],[2,29],[4,0],[2,-40],[9,-30],[9,6],[0,42],[-8,34],[-7,57],[-5,11],[-6,46],[-18,67],[-4,4],[0,18],[-14,28],[-20,74],[-16,109],[-13,58],[-13,80],[-4,51],[-3,57],[4,14],[-4,18],[0,32],[11,18],[-8,31],[-3,-22],[-5,3],[-6,-15],[-4,2],[-5,24],[-11,34],[-2,49],[13,39],[4,-4],[-4,39],[4,32],[-9,50],[-8,3],[-1,17],[-11,23],[-2,-32],[-15,-8],[-7,9],[-7,32],[3,26],[-9,33],[-1,21],[-4,-15],[-11,11],[-2,-6],[-9,26],[-11,21],[-11,41],[-7,1],[-11,-21],[-3,-27],[1,-15],[8,-19],[0,-35],[-6,-51],[9,-65],[11,-15],[20,-8],[4,-20],[-2,-16],[-9,5],[-4,-52],[6,-37],[7,-13],[0,-18],[7,-35],[9,8],[8,-12],[3,-19],[-5,-42],[-6,3],[2,-37],[24,-37],[11,-40],[0,-19],[5,-30],[9,-16],[4,-25],[8,-16],[14,-48],[1,-19],[6,-20],[2,-26],[5,-19],[2,-24],[-2,-40],[9,-23],[4,-31],[5,-12],[0,-36],[4,-17],[-6,-13],[6,-26],[2,28],[11,-15],[1,-33],[13,-17],[4,-31],[-9,-6],[5,-7],[-3,-8],[7,-18],[-6,-24],[2,-36],[9,-27],[2,-19],[-8,-22],[-5,2],[-1,-26],[3,-30],[4,-3],[9,-30],[3,-22],[10,-21],[3,6],[2,35],[-6,22],[-5,24]],[[8676,31991],[3,5],[0,61],[-7,84],[0,44],[-2,52],[0,-11],[-11,13],[-3,-6],[-11,6],[2,-19],[-2,-22],[-6,7],[-3,-9],[-1,-39],[1,-35],[7,-7],[6,-30],[3,4],[-2,-30],[2,-19],[4,6],[5,-31],[9,55],[0,-35],[-4,-15],[4,-1],[6,-28]],[[9273,31974],[17,37],[12,9],[2,-11],[-9,-11],[6,-22],[6,16],[-3,49],[-5,28],[-11,7],[-8,-10],[-1,-12],[11,7],[-4,-28],[5,0],[-11,-16],[-14,-25],[-17,-5],[13,15],[9,16],[-3,2],[-13,-24],[-14,-7],[-9,-11],[12,-8],[18,4],[4,-5],[7,5]],[[9484,32048],[-4,53],[-7,30],[-5,-9],[0,-28],[9,-42],[7,-45],[0,-14],[5,-34],[0,24],[-5,65]],[[9331,31959],[2,8],[11,5],[-7,8],[-11,-13],[5,-8]],[[9485,31944],[-5,28],[-5,7],[-9,43],[-2,-20],[4,-22],[12,-32],[6,-22],[-1,18]],[[3619,31883],[9,28],[-3,52],[5,18],[-2,21],[6,29],[0,19],[9,33],[-6,30],[0,18],[19,9],[5,8],[24,-17],[-2,-18],[3,-17],[8,-13],[9,22],[11,4],[2,18],[9,-5],[-2,11],[5,24],[9,13],[-7,0],[4,10],[7,-1],[11,25],[-6,27],[6,28],[-4,17],[-2,22],[-7,4],[-2,11],[2,33],[4,19],[3,-2],[0,26],[4,20],[0,21],[-7,24],[-2,39],[-4,14],[4,25],[9,-2],[2,20],[-4,22],[6,33],[-2,35],[3,18],[-9,53],[-1,19],[-6,31],[7,-7],[6,7],[0,58],[14,30],[-7,50],[0,23],[9,38],[-5,10],[5,6],[6,-9],[0,-13],[5,-15],[4,10],[5,-6],[-2,30],[-9,26],[0,38],[6,4],[0,21],[-6,50],[-5,-13],[-4,19],[-9,-3],[-7,9],[-7,21],[-4,0],[-4,-26],[-2,0],[0,-32],[-7,2],[-2,23],[6,-1],[-6,20],[-10,14],[-8,-4],[-9,38],[-7,5],[0,16],[-4,-7],[0,-15],[-11,-2],[-9,-41],[-5,-9],[-4,23],[2,9],[4,-17],[5,9],[4,34],[-17,22],[-16,46],[-9,41],[-7,0],[2,-10],[1,-39],[-9,-5],[-9,-33],[0,29],[-7,-7],[-4,19],[-5,-24],[-4,38],[-5,-20],[-2,30],[2,20],[9,11],[3,23],[13,-6],[6,-17],[9,15],[7,30],[0,29],[4,10],[3,36],[-2,30],[-18,18],[-11,1],[-5,-34],[2,-3],[-2,-32],[-15,-70],[-16,-33],[-4,0],[-5,-34],[-6,-22],[-14,-21],[-11,6],[-2,11],[-9,8],[0,-23],[-7,17],[-15,3],[-9,-5],[-7,-26],[0,-17],[-9,-29],[-15,-26],[-9,0],[-5,-29],[-20,-82],[-4,-21],[-7,-26],[-9,-17],[-6,-21],[-9,-8],[-5,-22],[0,-10],[-11,1],[2,-24],[-6,0],[0,18],[-9,4],[0,-37],[-9,48],[-5,-11],[-2,-28],[-9,-19],[-16,-74],[-6,-39],[-2,-25],[-7,22],[-7,-1],[-9,-14],[0,-20],[2,-36],[-2,-29],[0,-39],[-6,-56],[-11,-57],[-5,-48],[-7,-28],[-4,-6],[0,-25],[9,27],[7,-3],[9,-43],[8,-11],[5,-19],[9,0],[6,11],[-4,23],[9,5],[2,-26],[5,-13],[13,2],[7,28],[13,-30],[7,28],[15,19],[9,-19],[13,-4],[1,10],[0,38],[4,4],[11,-7],[4,-19],[5,30],[7,-37],[6,-17],[3,-29],[-3,-37],[2,-4],[-8,-39],[6,-32],[7,-20],[0,26],[6,11],[-4,-42],[5,-27],[6,16],[0,-28],[5,9],[2,19],[5,-47],[8,6],[2,-30],[5,3],[9,25],[-2,22],[8,-5],[5,-29],[-2,-68],[11,-26],[13,-63],[-2,48],[4,-7],[0,-28],[12,15],[9,22],[6,28],[-6,13],[-3,32],[5,-1],[7,-20],[8,-48],[7,-2],[5,-26],[8,-15],[9,-5],[5,28],[0,-30],[11,-7],[-2,21],[-7,10],[-2,56],[2,16],[2,-63],[5,-13],[4,8],[4,-9],[5,11],[4,-26],[0,-24],[-6,-19],[-3,30],[3,-82]],[[9544,31809],[-6,78],[-3,4],[0,-43],[9,-39]],[[9537,31811],[-4,15],[2,-24],[2,9]],[[9235,31809],[-7,6],[3,-21],[4,15]],[[9557,31814],[-2,-5],[2,-29],[0,34]],[[9546,31792],[-4,-1],[0,-24],[2,-6],[2,31]],[[9513,31761],[-2,11],[-4,-11],[6,0]],[[9555,31767],[-2,35],[-5,15],[-1,-11],[6,-52],[2,13]],[[9086,31748],[3,22],[-5,2],[-1,20],[3,4],[9,-15],[4,43],[11,-15],[14,-52],[4,8],[-2,20],[9,-5],[2,14],[-7,33],[5,12],[0,37],[-2,33],[2,6],[-3,20],[-2,22],[11,-7],[5,-17],[15,-13],[3,2],[18,-20],[15,-8],[-2,15],[6,39],[-8,-4],[-11,10],[-3,24],[5,5],[4,-14],[9,7],[7,-6],[2,-16],[4,13],[0,16],[-8,18],[-12,8],[-8,18],[-5,21],[1,43],[-8,3],[-6,23],[-3,-2],[-4,-26],[-11,4],[-17,31],[-14,33],[-20,58],[-3,24],[-11,37],[-8,22],[-5,26],[-6,20],[-10,-9],[-2,-33],[-6,-9],[-4,-54],[3,-19],[5,-3],[4,-26],[3,5],[7,-30],[4,-13],[7,-3],[4,-37],[11,-2],[2,-15],[-4,-13],[13,-42],[-4,-8],[-7,21],[-13,16],[-12,-13],[5,-42],[-9,35],[-15,29],[8,27],[1,-17],[6,-19],[4,11],[-4,30],[-7,9],[-6,-31],[-5,-9],[-7,9],[-3,-30],[3,-28],[-3,-33],[1,-24],[5,9],[0,-35],[2,-24],[5,-32],[6,-5],[7,11],[2,-13],[-11,-26],[7,-52],[13,-57],[7,11],[11,-13]],[[9548,31776],[-2,-17],[3,-13],[-1,30]],[[8777,31715],[2,18],[-5,13],[-4,-22],[4,-22],[3,13]],[[9534,31740],[1,41],[-4,17],[-3,37],[-6,9],[-5,-20],[-4,4],[-2,16],[-5,4],[-6,19],[-2,-21],[11,-58],[4,-5],[15,-55],[3,-26],[3,38]],[[9517,31724],[-4,0],[5,-24],[-1,24]],[[9526,31713],[-4,-8],[7,-12],[-3,20]],[[8694,31730],[-2,-13],[2,-29],[3,6],[-3,36]],[[7595,31859],[-9,8],[-6,13],[-10,66],[-2,24],[7,56],[-9,22],[-22,45],[-4,-13],[2,-37],[8,1],[5,-7],[7,-35],[-3,-61],[9,-21],[5,-63],[2,-48],[-5,-63],[7,-31],[0,-23],[7,-11],[6,21],[12,22],[6,26],[-10,29],[-7,39],[4,41]],[[8701,32285],[7,-22],[4,19],[7,-19],[0,-15],[-5,15],[-9,-41],[2,-21],[3,6],[8,-24],[0,39],[3,0],[0,-28],[4,-7],[3,37],[4,-11],[-2,-41],[11,-22],[4,-22],[5,7],[-2,-20],[-5,-30],[-4,24],[-9,22],[-2,-1],[-7,23],[-11,-10],[2,-54],[4,-9],[16,18],[0,-13],[-7,-18],[0,-17],[-4,11],[-5,-2],[-1,-24],[6,-4],[-5,-11],[3,-16],[15,2],[3,-10],[0,-22],[4,-28],[0,-15],[-5,36],[-4,-10],[-11,30],[-2,1],[0,-38],[6,-56],[0,-38],[7,-13],[-2,-13],[4,-19],[0,-31],[5,-27],[4,17],[-6,83],[0,54],[2,-31],[7,-2],[-1,-13],[5,-7],[0,29],[2,-16],[5,13],[-1,-65],[0,-24],[5,20],[0,-18],[-6,-41],[-1,-43],[5,-9],[4,-22],[1,23],[-3,26],[4,-3],[3,22],[-3,33],[5,28],[4,-40],[5,-10],[2,10],[0,40],[-7,20],[5,32],[7,15],[0,19],[-9,34],[-3,-12],[-6,3],[-4,19],[-5,33],[-7,2],[-9,22],[12,-11],[4,26],[0,26],[4,0],[-2,-22],[4,-34],[5,30],[2,-33],[9,2],[2,18],[0,28],[-2,33],[-4,17],[2,11],[-5,26],[-6,3],[0,-31],[-4,-16],[-1,39],[9,27],[0,13],[-13,76],[-7,18],[4,25],[-8,22],[-2,-18],[-5,5],[4,22],[5,11],[2,28],[9,-20],[-2,42],[-3,41],[0,20],[-6,12],[-7,-25],[0,23],[5,24],[-3,72],[-6,-2],[-5,-22],[3,-46],[-9,16],[-7,-37],[4,-11],[0,-16],[5,-4],[0,-26],[4,-19],[3,-35],[-5,-3],[-7,48],[-9,20],[-1,-39],[-5,28],[-4,-32],[-3,22],[0,-40],[4,-20],[-4,5],[-2,-26]],[[8868,31640],[-3,13],[-22,15],[5,-20],[20,-8]],[[8785,31689],[3,16],[-1,43],[-13,-63],[-2,-24],[2,-52],[9,37],[2,43]],[[8799,31531],[2,8],[3,42],[-5,17],[0,35],[-3,-18],[-4,11],[2,29],[-6,11],[-3,-7],[0,-29],[-4,-36],[2,-40],[4,7],[-1,24],[2,22],[0,-29],[7,11],[1,-27],[-4,-20],[7,-11]],[[4724,31500],[-2,-17],[5,-13],[-3,30]],[[9307,31492],[-3,-9],[4,-11],[-1,20]],[[1730,31468],[4,2],[4,35],[-6,57],[0,12],[7,69],[4,46],[11,57],[11,34],[7,34],[20,66],[7,18],[19,48],[5,19],[18,26],[7,5],[20,-3],[4,-23],[13,18],[0,19],[12,50],[17,58],[5,22],[8,4],[3,20],[-9,30],[-11,7],[-5,-18],[-2,-47],[-4,-13],[-12,-14],[-8,-4],[-7,11],[-13,-7],[-9,0],[-7,20],[-16,27],[-6,-12],[-3,-26],[-24,-61],[-7,-1],[-6,-36],[-3,-37],[-9,-30],[-10,-43],[-14,-51],[-13,-78],[-5,-17],[-11,0],[-13,-30],[-5,-3],[-4,-23],[4,-7],[0,-32],[1,-33],[-3,-24],[5,-4],[0,-38],[8,-8],[9,-31],[7,-60],[5,0]],[[9291,31498],[-5,20],[5,-5],[7,11],[-14,35],[0,17],[6,-14],[-6,34],[-5,-11],[-2,20],[-9,17],[-11,35],[-7,2],[-8,26],[-3,-4],[-4,24],[-7,4],[-9,39],[-10,28],[-14,18],[-5,15],[-17,24],[-25,-18],[-4,-6],[2,-52],[0,-48],[7,-11],[-1,-15],[5,-8],[7,4],[9,-5],[6,-17],[12,-7],[4,24],[6,-7],[1,16],[4,-5],[11,31],[-7,-37],[-6,2],[-3,-17],[3,-37],[4,30],[5,-37],[11,-17],[4,4],[7,-46],[7,21],[11,1],[-7,-11],[0,-21],[7,-24],[8,0],[1,-15],[5,6],[10,0],[13,-20],[9,-50],[2,5],[-10,52]],[[8636,31428],[-4,-13],[7,-13],[-3,26]],[[1698,31431],[-6,-14],[-5,-37],[-7,-31],[1,-18],[11,-76],[4,32],[-2,20],[2,19],[0,59],[3,24],[-1,22]],[[8743,31328],[-2,-26],[6,-61],[3,11],[-2,18],[-5,58]],[[8834,31259],[2,17],[7,-9],[7,86],[4,1],[2,-34],[7,4],[0,-26],[7,20],[2,15],[-6,16],[-7,60],[-11,4],[0,-63],[-7,25],[0,14],[-5,26],[-8,16],[-7,0],[7,-39],[4,-9],[0,-26],[-13,13],[-2,-24],[5,-5],[8,9],[5,-6],[-7,-13],[4,-22],[-9,-20],[-2,-17],[4,-17],[1,13],[4,-28],[4,19]],[[8854,31220],[3,21],[-7,35],[-5,-26],[-4,-2],[0,-28],[5,6],[8,-21],[0,15]],[[8494,31281],[3,-39],[-3,-14],[7,-39],[4,16],[-8,67],[-3,9]],[[9037,31218],[-5,-4],[-2,-31],[2,-11],[5,46]],[[8848,31159],[-4,22],[-9,15],[-10,-8],[-4,-16],[5,-9],[9,5],[0,-22],[6,17],[3,-26],[4,0],[0,22]],[[8694,31174],[-2,9],[7,34],[2,-8],[-5,-63],[7,9],[7,36],[6,46],[5,16],[-5,41],[-6,-5],[-9,5],[0,-26],[-3,17],[-1,59],[-12,-42],[0,-34],[-9,2],[3,-20],[-3,-23],[3,-20],[-4,-2],[-3,-26],[7,-9],[0,22],[5,9],[0,26],[8,2],[-7,-37],[-2,-51],[5,-26],[6,59]],[[8623,31094],[0,13],[13,-6],[-13,36],[6,4],[7,-25],[7,6],[5,24],[1,52],[-6,20],[-9,13],[-4,-22],[-1,19],[5,16],[4,-13],[7,-3],[5,13],[0,35],[2,18],[-3,11],[3,26],[-9,43],[-8,15],[-5,24],[-4,-52],[-1,-35],[-6,-15],[-1,-22],[-8,-35],[2,-45],[-2,13],[-2,-13],[2,-39],[6,-21],[5,-3],[0,-22],[-5,7],[2,-29],[5,-8]],[[8756,31016],[0,19],[-6,-19],[7,-18],[-1,18]],[[8748,30933],[4,2],[0,22],[-4,11],[0,-35]],[[9001,30894],[-2,-5],[7,-23],[2,6],[-7,22]],[[4059,30888],[-2,15],[-13,13],[-9,-1],[-2,-30],[13,-39],[13,24],[0,18]],[[3972,30914],[-10,12],[-5,23],[-9,8],[-13,6],[-3,-56],[7,-48],[2,-43],[9,17],[22,56],[0,25]],[[8801,30835],[-5,7],[0,-18],[5,-10],[0,21]],[[9039,30875],[-2,28],[-5,-11],[-1,19],[4,5],[0,50],[-5,10],[-18,12],[-6,-29],[0,-61],[6,-20],[2,-34],[5,2],[4,26],[-2,17],[7,-19],[-9,-57],[7,3],[13,59]],[[8839,30839],[-3,5],[-6,-11],[-2,-28],[2,-4],[9,17],[0,21]],[[9017,30768],[2,21],[-4,13],[-2,-23],[-5,-4],[7,-16],[2,9]],[[8915,30753],[4,12],[4,-32],[1,26],[-5,30],[-7,25],[0,12],[7,-12],[7,-29],[2,-33],[2,27],[4,-17],[1,14],[-3,46],[-15,48],[-6,-13],[-8,-4],[3,-48],[-14,34],[-6,-13],[-16,-2],[-4,-8],[8,-18],[3,-17],[4,21],[4,-13],[3,-37],[5,-16],[4,4],[-3,54],[3,-19],[2,-31],[4,9],[5,-5],[-5,28],[12,-23]],[[3964,30696],[2,61],[2,4],[11,76],[5,15],[4,-2],[16,-49],[6,-31],[20,-17],[0,26],[3,-29],[9,12],[-3,13],[-2,43],[-7,10],[0,29],[-4,59],[7,37],[6,6],[16,-6],[18,0],[13,-16],[11,11],[9,40],[4,21],[9,-20],[7,15],[2,24],[3,9],[15,-11],[4,39],[-4,16],[2,15],[0,35],[-2,34],[9,11],[-2,22],[4,44],[7,34],[0,18],[-14,2],[-4,15],[-7,15],[-2,20],[-6,26],[-3,63],[-6,7],[-3,30],[-4,56],[-11,31],[-4,-9],[-16,5],[-7,32],[-4,2],[0,20],[9,31],[9,10],[6,31],[4,54],[-6,28],[-11,13],[-11,26],[-7,-4],[-7,9],[-2,28],[4,22],[5,71],[4,24],[-2,33],[-22,17],[-2,13],[0,61],[-2,24],[-3,7],[-7,54],[-8,35],[-11,13],[-12,-7],[-19,-23],[-7,-18],[-23,-68],[-11,-47],[-17,-63],[-3,-29],[-15,-75],[-2,-29],[4,-19],[4,6],[1,-17],[8,-13],[5,8],[4,-21],[13,-20],[-2,-17],[5,-56],[6,-7],[1,-46],[-3,-28],[-15,-3],[-9,-8],[-7,26],[-6,0],[-1,18],[-15,23],[-2,24],[-7,20],[-9,-2],[-9,13],[-6,-7],[-12,-24],[-13,-2],[-4,-24],[-3,-31],[-4,-8],[0,-28],[-4,-9],[2,-22],[4,-9],[7,-45],[17,11],[12,-5],[6,-26],[-2,-27],[2,-27],[5,-17],[11,2],[4,-13],[7,-54],[2,-12],[12,-6],[4,-46],[7,-35],[9,5],[11,-31],[4,-23],[2,-35],[-4,-28],[-9,-28],[-7,-44],[0,-54],[5,6],[13,-11],[11,-39],[11,-23],[7,-36],[2,-24],[-2,-36],[-11,-24],[-14,-51],[0,-36],[7,-54],[5,-5]],[[4266,30731],[13,22],[-13,10],[-6,15],[-3,-8],[14,-69],[2,2],[-7,28]],[[8667,30698],[11,39],[1,-4],[11,37],[8,50],[-4,8],[2,21],[-4,23],[-9,-33],[-2,5],[11,37],[7,28],[2,32],[-2,29],[-7,19],[-4,2],[-3,-51],[-4,-14],[0,88],[-14,27],[-4,-25],[-4,15],[-7,-29],[-3,-4],[5,29],[-4,6],[-9,-11],[-3,-15],[1,-24],[-3,-26],[0,-26],[7,-46],[-2,-33],[2,-32],[6,-15],[1,-26],[9,10],[2,-21],[-7,2],[-6,-11],[0,-20],[9,-45],[10,4]],[[8952,30572],[-13,59],[-2,-22],[2,-26],[7,-39],[6,0],[0,28]],[[8056,30220],[-12,2],[-2,-9],[7,-6],[2,-13],[9,-87],[13,-11],[3,22],[-7,58],[-13,44]],[[3692,29587],[0,24],[-2,12],[-4,-42],[-1,-65],[1,-16],[6,42],[-2,37],[2,8]],[[3946,29346],[0,18],[-5,11],[0,-20],[5,-9]],[[3632,28714],[-5,5],[-2,-70],[3,-29],[0,42],[4,52]],[[3676,28127],[-2,4],[-4,59],[0,26],[-4,56],[2,70],[2,41],[-7,-2],[-2,-32],[7,-150],[4,-67],[4,-5]],[[3677,28068],[2,16],[-5,2],[3,-18]],[[3674,27905],[-8,63],[11,28],[4,40],[-5,-31],[-6,28],[-7,0],[-4,-23],[4,-51],[5,-41],[6,-32],[0,19]],[[3966,26645],[9,4],[4,24],[-2,39],[-27,-22],[-11,-2],[7,-12],[2,-16],[18,-15]],[[3930,26582],[7,24],[-16,22],[0,-20],[9,-26]],[[3952,26545],[5,35],[-5,19],[-13,0],[-4,-28],[-2,-79],[4,-28],[4,-1],[5,52],[6,30]],[[3966,26397],[4,13],[7,-9],[5,11],[4,46],[4,48],[3,48],[-11,19],[-1,-17],[-4,21],[-11,-23],[-5,-22],[-4,-52],[4,12],[5,-4],[-9,-24],[0,-56],[5,-28],[4,17]],[[3981,26364],[0,22],[-8,0],[-3,-19],[5,4],[0,-26],[2,-4],[4,23]],[[3984,26308],[-3,4],[-4,-48],[7,7],[0,37]],[[3981,26254],[-4,4],[0,-29],[4,25]],[[4006,26084],[9,0],[7,22],[6,58],[7,13],[7,-2],[6,-25],[16,-18],[11,-3],[7,29],[-5,11],[-4,26],[-2,54],[-10,63],[-6,26],[-7,2],[0,11],[-18,59],[-6,41],[-5,44],[-13,50],[-9,-9],[-7,-65],[-2,-63],[-2,-87],[0,-33],[2,-17],[-7,-20],[0,-13],[5,5],[-5,-22],[1,-41],[-1,-42],[7,16],[9,0],[4,-14],[-11,7],[-13,-22],[0,-28],[7,-26],[22,13]],[[3979,26071],[-4,0],[0,-31],[7,14],[-3,17]],[[4088,25465],[14,19],[15,9],[9,15],[5,48],[6,37],[7,15],[7,4],[8,13],[2,25],[-2,56],[7,41],[4,11],[5,-4],[-2,-42],[4,5],[7,63],[2,56],[-4,70],[2,44],[5,60],[4,33],[22,87],[7,13],[8,69],[3,61],[4,67],[-4,72],[-3,26],[-2,35],[5,43],[2,103],[5,17],[4,28],[4,7],[9,58],[0,53],[3,6],[-1,31],[-9,-61],[-8,-39],[-7,-53],[-4,-50],[-1,-30],[-4,-15],[-6,-52],[0,32],[-3,3],[-4,-26],[0,-26],[-5,-44],[-4,-9],[-7,-85],[-8,-48],[-12,-43],[-15,-26],[-27,20],[-7,-1],[-20,-41],[-7,-54],[-15,-11],[-4,-28],[-12,-16],[-6,3],[-14,18],[-8,21],[-9,0],[-5,-24],[-2,-52],[-13,-9],[-11,-13],[-9,4],[-9,-27],[-2,-21],[2,-28],[-3,-17],[7,-54],[7,-166],[9,-76],[4,16],[0,-59],[11,-89],[7,-35],[11,-36],[14,10],[2,-5],[13,0],[4,-12],[12,8],[6,22],[0,-30]],[[4064,25449],[-5,7],[-8,-7],[-3,-19],[7,-29],[7,1],[4,10],[-2,37]],[[2882,25341],[-6,-7],[6,-10],[0,17]],[[4042,25358],[0,-13],[4,-52],[5,-24],[4,9],[2,20],[-2,30],[-13,30]],[[4206,24873],[11,15],[11,27],[3,0],[8,35],[7,-1],[4,22],[7,11],[9,-11],[3,11],[-3,24],[14,-21],[4,13],[4,-7],[9,19],[-2,33],[11,37],[5,76],[4,-24],[12,41],[-3,24],[-5,18],[-8,36],[6,9],[2,-19],[7,-5],[7,-43],[2,-34],[2,36],[14,4],[2,42],[-4,13],[-10,13],[-11,26],[0,52],[1,11],[-5,35],[-2,-11],[-16,57],[-7,-7],[-4,24],[-13,39],[-3,54],[-6,13],[0,51],[9,40],[0,13],[-7,-2],[-4,31],[4,52],[-4,-4],[-1,-18],[-4,-4],[-9,28],[3,31],[-9,12],[-3,18],[-8,-9],[-7,-45],[-4,-1],[-7,16],[-22,13],[-9,26],[-3,-45],[-8,-60],[-7,-13],[-2,14],[4,41],[-7,2],[-4,-22],[0,-24],[0,-69],[-5,-20],[-11,-19],[-4,-20],[-3,3],[-6,-31],[-4,-39],[0,-22],[-5,-57],[0,20],[-9,-39],[0,32],[4,37],[-11,-13],[-15,-26],[-20,3],[-4,-14],[4,-25],[-13,-22],[-3,-16],[5,-26],[0,-23],[2,-18],[-7,-15],[-2,-41],[4,-56],[5,-13],[5,21],[-3,-37],[13,-52],[20,-96],[14,-43],[11,-26],[16,-11],[17,-27],[16,-13],[6,5],[1,-13],[24,-7]],[[2310,24389],[-6,19],[4,-30],[2,11]],[[2275,24071],[-5,-17],[9,9],[-4,8]],[[2179,23923],[7,9],[0,11],[-11,-19],[4,-1]],[[4658,23893],[4,1],[14,27],[-3,12],[3,38],[8,37],[-6,26],[2,24],[-4,15],[2,27],[5,23],[-3,24],[-7,-8],[-2,-37],[-6,-3],[-1,16],[-9,28],[-6,-17],[-7,15],[-8,6],[-7,-21],[-7,26],[-7,-13],[-2,8],[-5,-8],[-8,-39],[-9,6],[-3,-15],[3,-31],[-9,-6],[7,-28],[0,-15],[11,-29],[0,-22],[6,-27],[5,32],[4,0],[0,-44],[5,-2],[2,-20],[9,1],[9,26],[6,7],[11,-5],[3,-35]],[[2163,23904],[-6,4],[-7,-22],[13,18]],[[2085,23506],[1,18],[4,17],[2,53],[-4,27],[0,76],[2,35],[0,31],[4,-7],[5,22],[13,33],[36,71],[-2,5],[-7,-18],[-5,-2],[-8,35],[-3,2],[-2,20],[4,26],[5,15],[-2,13],[6,26],[3,-19],[9,-3],[13,7],[5,-11],[10,4],[12,-30],[15,-5],[14,26],[26,31],[12,20],[0,10],[-14,-19],[-6,0],[-12,-21],[-6,38],[9,-13],[11,9],[6,0],[2,35],[3,10],[0,-19],[15,-11],[7,7],[2,21],[7,13],[9,-11],[9,0],[8,-49],[9,-11],[9,-42],[5,-6],[6,-31],[10,-30],[6,-32],[11,-14],[7,-30],[0,-13],[6,-7],[1,18],[9,0],[15,-15],[2,-44],[12,-34],[4,-5],[18,35],[4,-11],[7,15],[6,-4],[1,-13],[13,17],[4,-6],[9,52],[11,26],[3,45],[8,37],[9,22],[14,9],[-2,24],[6,43],[0,18],[4,48],[3,19],[-5,26],[9,57],[-2,32],[-7,18],[5,41],[-7,11],[-2,34],[4,-28],[7,-9],[-2,35],[6,-10],[-2,-22],[5,18],[13,19],[4,-5],[7,9],[14,39],[4,24],[36,30],[-20,-6],[-7,-9],[6,24],[3,-4],[0,18],[9,-12],[6,9],[5,-17],[22,7],[4,5],[3,25],[4,6],[14,44],[0,26],[2,26],[-2,13],[2,33],[9,2],[8,28],[3,-2],[4,15],[18,-5],[2,-12],[-13,-4],[-20,-27],[-9,-21],[4,0],[18,30],[16,13],[9,-4],[22,10],[9,16],[13,52],[0,45],[3,20],[8,13],[14,4],[11,-19],[4,-27],[-4,-19],[-7,-11],[-13,-4],[-7,-20],[-7,17],[-6,-12],[0,-16],[-5,-15],[43,14],[15,-13],[9,3],[16,18],[-2,24],[8,-22],[5,17],[11,-8],[6,21],[12,26],[9,14],[13,4],[5,11],[8,-2],[2,17],[-8,51],[-5,0],[-2,32],[4,0],[1,28],[-1,63],[-6,17],[-7,50],[-4,48],[-9,54],[-11,37],[-9,3],[-18,-33],[-4,-17],[-21,-24],[-26,-7],[-7,7],[-40,41],[-20,35],[2,-11],[18,-44],[9,-13],[20,-17],[15,-5],[0,-21],[-6,-18],[-14,-1],[-24,32],[-4,20],[-3,-17],[-2,30],[-13,48],[-3,39],[-4,-27],[-4,-2],[0,22],[6,37],[-7,28],[-1,20],[-5,6],[-2,22],[-5,-2],[-6,17],[-12,44],[-8,50],[-3,73],[5,61],[4,0],[0,29],[5,24],[-2,13],[-12,2],[-8,15],[-7,46],[-2,37],[-14,-31],[-9,-4],[-7,-11],[-4,-18],[7,-32],[-3,-35],[-8,-32],[6,-11],[9,6],[5,-54],[0,-31],[-5,-41],[-2,15],[-11,-34],[0,-37],[-4,-29],[-3,-30],[-6,-18],[0,-21],[-12,-18],[-2,-26],[-13,-43],[-7,4],[-4,16],[15,65],[3,9],[13,54],[16,121],[4,44],[-2,13],[-5,-59],[-11,-93],[-6,-33],[-32,-132],[-11,-5],[-6,-19],[-10,-53],[-15,-19],[7,4],[-2,-30],[-18,20],[2,22],[-13,-16],[-1,6],[-17,-25],[7,-44],[0,28],[4,7],[4,-37],[-6,2],[2,-30],[4,-22],[-4,-65],[-2,-61],[-5,-18],[-16,-24],[-11,-49],[0,-22],[-15,-33],[-2,-13],[-16,-57],[-9,-17],[-11,-17],[-13,-65],[-5,13],[-9,10],[-8,-26],[2,-35],[-5,-8],[0,28],[-11,-22],[-18,0],[-9,-26],[-2,-24],[-6,-8],[0,-37],[-5,-28],[-9,35],[-2,-22],[-4,39],[-3,-5],[3,-24],[-3,-1],[-2,34],[-16,7],[-4,-11],[-9,11],[-6,-5],[-9,26],[39,-4],[27,24],[20,37],[25,43],[38,70],[4,-6],[2,13],[20,69],[5,0],[2,22],[22,80],[11,80],[5,53],[6,15],[-2,35],[3,15],[0,53],[-1,17],[-4,-12],[5,-13],[0,-30],[-7,-78],[-9,-71],[-9,-51],[-18,-74],[-22,-72],[-13,-34],[-58,-109],[-49,-63],[-38,-6],[-11,10],[-11,31],[-2,13],[-23,28],[-9,27],[-2,39],[2,17],[-4,11],[-7,41],[2,17],[-11,-4],[-6,11],[-18,61],[-7,0],[-6,-31],[-7,-19],[-11,21],[-3,-6],[-2,-39],[-2,-26],[-4,21],[-5,0],[-2,-17],[-5,2],[-11,-33],[-8,-8],[-3,-15],[-7,-2],[-2,-9],[-4,-57],[-5,-28],[-6,-11],[0,-28],[-9,-52],[2,-55],[-6,-30],[-3,-44],[3,-23],[-1,-33],[3,-44],[-3,-49],[3,-46],[0,-57],[4,-30],[4,2],[3,-59],[0,-47],[11,-24],[4,-33],[0,-35],[-4,-48],[0,-36],[7,-56],[2,-31],[-3,-59],[-2,-76],[12,6],[6,-17],[4,15]],[[4972,22626],[-5,-6],[0,-44],[5,-26],[4,5],[-4,19],[0,52]],[[4978,21863],[0,17],[-9,-19],[3,-7],[6,9]],[[3607,21594],[-2,61],[-4,2],[-2,-35],[0,-24],[8,-4]],[[5052,20405],[0,26],[-5,20],[5,-46]],[[3089,20253],[9,0],[0,30],[2,19],[-4,20],[-14,13],[-4,-9],[-2,-49],[13,-24]],[[2855,18147],[-9,2],[-6,-24],[0,-29],[2,-17],[9,-20],[4,11],[-2,33],[3,30],[-1,14]],[[3180,18064],[-2,15],[-4,-10],[-12,36],[-4,39],[-9,18],[-4,-9],[7,-36],[6,-38],[22,-41],[0,26]],[[3231,17938],[-2,13],[-11,17],[-4,18],[-7,4],[-7,22],[0,35],[-4,10],[4,18],[-2,13],[-4,61],[-7,10],[-9,-13],[2,-30],[3,4],[4,-17],[0,-26],[-4,-2],[2,-53],[6,-10],[38,-89],[2,15]],[[3436,17312],[-2,-22],[5,-6],[-3,28]],[[3425,17320],[-13,29],[-7,41],[-9,11],[-6,46],[-9,4],[-11,56],[-10,16],[-10,35],[-3,34],[-6,-1],[-9,19],[-2,24],[-7,13],[2,13],[-4,10],[-5,-13],[22,-86],[54,-166],[0,-10],[40,-130],[0,14],[-7,20],[0,21]],[[4831,17314],[-6,-19],[0,-14],[9,-37],[4,5],[-4,61],[-3,4]],[[4295,17188],[2,13],[-2,19],[-7,-8],[3,-20],[4,-4]],[[3438,17262],[0,-11],[14,-54],[20,-59],[2,-2],[-4,28],[-14,53],[-6,8],[-12,37]],[[5011,17097],[-4,-5],[5,-17],[2,11],[-3,11]],[[5023,17066],[6,3],[-13,8],[-2,-24],[9,13]],[[5047,16923],[-6,11],[-2,22],[2,49],[-2,27],[-5,6],[-2,-28],[6,-50],[-4,-72],[11,-9],[9,-23],[-2,34],[-5,33]],[[4202,16817],[4,12],[7,-6],[2,13],[-7,24],[-9,-15],[0,-27],[3,-1]],[[5054,16844],[-2,-17],[0,-34],[4,21],[-2,30]],[[3605,16808],[-8,19],[-12,50],[-2,-15],[-6,11],[-9,37],[-10,30],[-17,22],[-7,19],[-7,3],[-4,17],[0,13],[-7,3],[3,12],[-7,9],[-7,30],[-7,16],[-4,-9],[-9,41],[0,16],[-7,17],[-2,-19],[45,-149],[20,-49],[9,-18],[27,-78],[20,-46],[13,-15],[6,4],[0,18],[-11,11]],[[4831,16788],[-6,11],[-3,-15],[-2,-35],[13,15],[-2,24]],[[3659,16738],[-3,4],[-2,-25],[3,-3],[2,24]],[[3652,16651],[0,20],[-11,13],[-18,98],[-4,-13],[0,-35],[11,-40],[15,-39],[7,-4]],[[3701,16540],[-11,5],[-4,36],[-9,57],[-12,26],[-6,-2],[-2,-37],[17,-57],[36,-102],[9,-17],[0,11],[-9,20],[-7,58],[-2,2]],[[3746,16399],[0,17],[-7,-8],[-7,34],[-4,-8],[-5,18],[-2,-9],[7,-24],[15,-31],[3,11]],[[3748,16412],[-3,-30],[14,-37],[7,-9],[-3,37],[-11,35],[-4,4]],[[3805,16245],[3,21],[-5,14],[-4,-16],[-9,42],[-9,2],[-4,45],[-5,-23],[-4,15],[-2,-13],[35,-85],[4,-2]],[[5276,16010],[-2,7],[-2,-31],[2,-30],[2,54]],[[4015,15843],[-3,32],[-8,-8],[-2,34],[-14,-4],[-4,7],[0,39],[-5,22],[-4,8],[-11,-9],[-5,3],[0,13],[-20,34],[-2,13],[-16,26],[-8,-6],[-7,7],[-20,78],[-16,8],[-2,22],[-11,13],[-7,-21],[-2,26],[-18,36],[-13,5],[-7,39],[-2,-20],[6,-19],[21,-52],[20,-39],[33,-68],[33,-61],[20,-30],[36,-68],[38,-60]],[[4865,14622],[-2,-27],[4,2],[-2,25]],[[4861,14502],[4,30],[-4,2],[-3,-32],[3,0]],[[4555,14361],[-2,-11],[5,-5],[-3,16]],[[4571,14408],[-4,11],[4,-85],[2,40],[-2,34]],[[4064,12233],[7,34],[-5,-13],[-31,-136],[2,-3],[11,46],[16,72]],[[4458,6816],[8,-15],[-2,28],[-6,29],[0,-24],[-3,-17],[2,-57],[5,17],[-4,39]],[[4458,6732],[-1,4],[-2,-39],[2,-68],[-1,-108],[0,-150],[-3,-124],[2,-70],[5,-97],[6,-52],[1,10],[-9,120],[-1,111],[3,167],[-2,31],[2,26],[0,80],[0,31],[-2,47],[0,11],[0,70]],[[4505,5699],[-5,-13],[5,-35],[0,48]],[[4515,5623],[-4,-9],[4,-12],[0,21]],[[10505,5923],[9,2],[5,9],[9,33],[-2,22],[-9,-48],[-3,15],[-13,-22],[-22,-119],[-9,-35],[-14,-55],[-13,-52],[-27,-71],[-28,-50],[2,-14],[11,29],[20,35],[7,19],[31,94],[15,61],[31,147]],[[10363,5486],[-2,18],[-4,-9],[-5,-26],[2,-28],[5,11],[4,34]],[[10350,5463],[-2,6],[-16,-46],[0,-11],[7,9],[11,28],[0,14]],[[4471,6008],[-5,0],[0,-26],[3,-68],[6,-67],[12,-217],[6,-87],[13,-91],[7,-35],[11,-66],[14,-73],[0,21],[-11,59],[-1,15],[-11,50],[-11,78],[-11,72],[0,33],[-4,26],[-2,50],[-3,80],[-4,24],[-5,65],[-2,64],[-2,17],[-2,67],[2,9]],[[10327,5408],[-4,0],[-15,-39],[-16,-54],[-5,-18],[-10,-41],[-10,-28],[-2,-20],[5,2],[22,85],[20,68],[15,34],[0,11]],[[4547,5247],[-3,5],[5,-61],[-2,56]],[[4555,5160],[-2,5],[7,-59],[13,-68],[9,-67],[9,-69],[0,24],[-18,134],[-11,59],[-7,41]],[[9722,4769],[-7,7],[11,-42],[-4,35]],[[4595,4882],[-2,-4],[14,-92],[4,-49],[0,-16],[7,-58],[7,-22],[-7,37],[-2,54],[-5,28],[-7,63],[-9,59]],[[9783,4673],[-7,-17],[2,-19],[5,36]],[[9818,4639],[-4,13],[0,-28],[9,-1],[-5,16]],[[9787,4621],[5,31],[1,45],[-1,18],[-8,-91],[3,-3]],[[9784,4652],[-4,-11],[0,-20],[4,31]],[[10065,4586],[-9,-15],[-14,-47],[23,62]],[[9991,4508],[-4,15],[-2,-13],[2,-36],[2,-9],[2,43]],[[9904,4495],[-2,29],[-15,37],[-3,36],[-6,-80],[-13,-37],[0,-15],[31,-13],[22,0],[0,13],[-13,2],[-1,28]],[[10029,4484],[-13,-26],[9,13],[4,13]],[[9858,4458],[-2,9],[-2,41],[-7,-2],[-14,-28],[-13,-11],[-2,24],[-7,22],[-4,28],[-3,2],[-6,24],[-9,19],[0,-15],[7,-13],[11,-28],[8,-39],[1,-28],[7,-5],[13,18],[5,13],[12,15],[3,-61],[2,15]],[[9998,4386],[-7,16],[-15,43],[0,-15],[9,-26],[11,-22],[2,4]],[[9912,4380],[19,59],[18,28],[2,9],[-18,-24],[-24,-61],[-6,28],[2,-37],[7,-2]],[[4758,4376],[4,-22],[2,11],[-6,11]],[[9233,4247],[16,40],[-1,32],[-7,-17],[-15,-48],[-9,24],[-5,-42],[7,14],[5,-7],[-11,-17],[0,-11],[15,13],[5,19]],[[8872,4206],[0,35],[-2,11],[-7,-20],[3,-22],[6,-4]],[[9201,4208],[5,7],[2,15],[-7,-13],[-9,-6],[-10,10],[0,-10],[-7,6],[2,-15],[16,-2],[8,8]],[[8906,4147],[-12,27],[-2,21],[-4,-19],[-7,-2],[9,-27],[6,-43],[6,15],[4,28]],[[8883,4069],[2,15],[-8,-6],[6,-9]],[[4725,4100],[-1,30],[-4,13],[3,-41],[-5,28],[-11,26],[-5,35],[-6,9],[-12,52],[-9,46],[-11,71],[-2,13],[-9,42],[-6,41],[-5,17],[-4,41],[-2,48],[-3,41],[-4,-17],[5,-37],[4,-58],[13,-85],[18,-89],[14,-92],[22,-91],[24,-78],[13,-54],[9,-20],[-4,28],[-20,65],[-2,16]],[[4758,3985],[-7,2],[7,-31],[26,-82],[3,8],[-18,48],[-9,33],[-2,22]],[[8937,3843],[-7,22],[4,-26],[3,4]],[[5370,3885],[-2,13],[-3,-40],[7,-21],[-2,48]],[[8681,3811],[4,-2],[3,23],[-12,-8],[0,-18],[5,5]],[[4996,3867],[-15,22],[-3,-4],[16,-33],[9,-15],[13,-29],[20,-30],[-13,28],[-11,18],[-12,26],[-4,17]],[[4818,3774],[49,58],[44,46],[56,24],[2,22],[-6,-16],[-45,-15],[-15,-11],[-25,-26],[-22,-30],[-36,-44],[-17,44],[-7,30],[-3,2],[5,-32],[14,-50],[6,-2]],[[5109,3613],[-4,19],[-5,7],[-12,37],[-8,13],[-8,24],[-23,46],[1,-9],[15,-31],[13,-39],[31,-67]],[[5341,3602],[-9,9],[2,-29],[3,-4],[4,24]],[[7956,3576],[-3,54],[-6,41],[-7,27],[-9,8],[-11,26],[-4,-86],[4,-31],[9,-4],[9,-18],[4,3],[14,-20]],[[8828,3578],[-7,-46],[7,26],[0,20]],[[8814,3526],[2,13],[-8,2],[6,-15]],[[7982,3504],[3,18],[-5,34],[-4,3],[-5,25],[-16,38],[5,-59],[16,-55],[6,-4]],[[8520,3534],[-2,7],[0,-41],[2,34]],[[8454,3498],[0,10],[-11,20],[2,-26],[9,-4]],[[8514,3476],[0,7],[-7,-31],[7,24]],[[8432,3485],[2,-29],[5,-8],[1,15],[-8,22]],[[8022,3487],[-2,-7],[9,-43],[9,-5],[-4,24],[-12,31]],[[8049,3380],[-7,31],[-7,4],[-6,13],[-7,37],[-15,30],[-11,37],[-9,-2],[4,-30],[11,-17],[18,-57],[0,-18],[7,-8],[6,-18],[16,-2]],[[8457,3335],[-8,-44],[3,4],[5,40]],[[7958,3535],[-9,30],[-5,2],[3,-72],[4,-43],[5,-17],[15,-22],[7,-37],[4,-39],[7,-55],[0,26],[-5,66],[1,54],[-14,67],[-13,40]],[[8047,3330],[-2,16],[-5,-7],[-2,13],[-3,-61],[5,-13],[7,52]],[[8423,3246],[0,15],[-5,-22],[5,7]],[[8024,3245],[-2,44],[0,15],[-4,54],[-2,42],[-18,67],[-11,31],[-11,0],[13,-66],[2,-19],[-2,-39],[7,-74],[6,-52],[7,2],[6,-15],[9,10]],[[8692,3202],[-11,7],[7,-16],[4,9]],[[7965,3182],[6,11],[16,-8],[6,43],[-4,41],[-4,9],[-5,61],[-11,61],[-15,32],[-7,24],[-2,-54],[-7,-54],[0,-13],[-9,-2],[-14,-24],[-13,-63],[5,-48],[9,-9],[4,7],[9,-3],[2,31],[2,2],[3,-30],[11,2],[18,-16]],[[8347,3091],[16,35],[11,41],[9,41],[-5,1],[-4,-33],[0,24],[-2,-24],[-7,-37],[-13,-33],[-9,-15],[4,0]],[[8332,3076],[-3,19],[-7,-39],[10,20]],[[8162,2954],[20,31],[1,13],[-20,-35],[-16,2],[0,-9],[15,-2]],[[8261,2976],[24,26],[-9,5],[-2,10],[-3,-15],[-13,-22],[-11,-4],[-4,15],[-5,-2],[-4,-24],[-12,-17],[0,-18],[14,29],[25,17]],[[7599,2919],[-2,18],[-6,-17],[-5,2],[0,-18],[13,15]],[[7573,2896],[4,19],[-4,0],[-7,-17],[0,-11],[7,9]],[[7470,2824],[-6,-4],[4,-35],[5,11],[-3,28]],[[7363,1878],[-2,11],[-6,-15],[-7,-39],[9,6],[6,37]],[[7326,1744],[11,30],[4,31],[3,2],[-5,21],[-9,-11],[-4,-25],[-9,-11],[2,-20],[7,-17]],[[5668,1733],[0,13],[-7,0],[-13,33],[-9,-1],[-7,7],[-18,39],[-17,11],[-9,22],[-9,-13],[4,-20],[36,-22],[11,-23],[16,-20],[13,-26],[9,0]],[[7266,1750],[0,26],[-7,-26],[-4,-2],[4,-35],[7,5],[0,32]],[[6552,1589],[0,53],[-5,-7],[0,30],[4,37],[-8,-36],[-12,-33],[-2,-44],[9,3],[9,-27],[5,-39],[2,39],[-2,24]],[[6563,1433],[0,15],[-11,-63],[2,-30],[4,-15],[2,41],[3,17],[0,35]],[[6707,842],[23,82],[0,9],[-18,-54],[-9,-33],[4,-4]],[[6690,820],[-7,-9],[-5,-28],[-11,-13],[11,2],[12,48]],[[6578,596],[9,11],[7,22],[9,32],[0,15],[-12,-49],[-15,-26],[-13,-7],[4,-5],[11,7]],[[6542,551],[7,13],[-13,4],[-9,28],[7,-41],[-16,17],[0,-9],[16,-21],[8,9]],[[6467,377],[0,10],[-4,-41],[-7,-39],[6,13],[5,57]],[[6449,277],[0,8],[-9,-21],[-8,-13],[-12,-35],[18,30],[11,31]],[[6414,211],[-7,-13],[6,2],[1,11]],[[6405,185],[0,9],[-11,-17],[11,8]],[[12061,36334],[0,-31],[4,-28],[-4,-44],[4,-12],[-6,-27],[-5,12],[-2,-52],[-5,6],[3,-23],[8,-9],[1,-16],[8,-18],[-4,-15],[-11,9],[-4,-18],[-3,-30],[-4,-17],[3,-24],[-5,-13],[-5,-57],[-4,-56],[-4,0],[2,-22],[-1,-31],[-8,-48],[-7,-25],[-2,-44],[-6,-45],[-8,-48],[7,-33],[11,-26],[18,-49],[2,-18],[5,-14],[6,7],[-1,15],[-8,-7],[-4,25],[4,6],[9,-11],[5,-20],[6,0],[7,-23],[9,-5],[9,3],[4,-5],[-6,-14],[-5,-33],[-11,-10],[-15,16],[-12,-6],[-6,-18],[8,61],[-11,17],[-1,31],[-5,-2],[-3,19],[-10,13],[-1,-22],[-6,-56],[4,-17],[-1,-18],[3,-27],[-3,-32],[-5,-17],[-7,-59],[-3,9],[0,-65],[3,-31],[-5,-43],[-4,-4],[-13,-91],[-3,-9],[1,-14],[-27,12],[-7,-26],[-15,-17],[0,-17],[-4,-1],[1,27],[9,30],[5,9],[8,25],[18,-2],[7,-13],[7,48],[0,30],[7,26],[2,30],[-5,7],[7,45],[-5,-1],[0,34],[2,23],[0,19],[-8,13],[-12,12],[-20,-34],[-4,6],[-9,-6],[-15,-76],[-3,-22],[-4,7],[6,51],[10,47],[13,28],[23,33],[8,-12],[2,-17],[11,0],[10,-9],[0,22],[4,22],[-7,4],[0,22],[6,26],[-2,22],[3,35],[-1,69],[-4,51],[-7,31],[3,38],[-7,5],[-2,14],[0,46],[-11,6],[-11,-5],[-7,-39],[-16,-30],[-6,-30],[-11,-35],[0,-24],[18,9],[15,-6],[-2,-14],[-29,0],[0,-14],[-11,36],[-3,-21],[-6,4],[-9,-29],[0,-33],[-4,-26],[1,-30],[-4,-47],[-4,-26],[2,-100],[7,-14],[2,-30],[-3,18],[-8,-10],[-11,31],[0,64],[-4,47],[-3,-11],[-2,-43],[-7,-26],[-5,-49],[-13,-95],[-4,-32],[-5,-7],[-1,26],[6,42],[13,102],[9,54],[3,59],[-3,21],[-9,-17],[-2,9],[-9,-48],[-7,-20],[-18,-35],[0,-19],[-17,-19],[-9,-25],[-9,-60],[-11,-32],[-5,-48],[-9,-33],[-8,-48],[-9,33],[0,17],[11,66],[7,-5],[1,44],[8,44],[8,22],[5,31],[2,34],[-5,49],[-8,-18],[-7,0],[-13,16],[-9,49],[2,20],[-5,35],[-8,32],[-2,-4],[-5,51],[-4,14],[8,7],[7,-27],[9,-45],[0,-18],[7,-26],[6,-52],[13,5],[9,26],[3,-24],[9,28],[4,-5],[11,18],[5,30],[0,38],[4,6],[0,-57],[4,-13],[7,20],[7,-16],[3,17],[4,5],[4,20],[7,4],[4,33],[4,7],[9,-17],[9,17],[12,43],[11,43],[4,7],[-4,16],[-2,27],[-13,-31],[0,44],[-8,-24],[0,-13],[-8,-68],[-9,-39],[-3,44],[3,17],[2,43],[6,6],[11,33],[-2,10],[-8,-1],[-5,-12],[-2,28],[14,-4],[4,15],[9,15],[4,46],[-4,65],[6,-1],[9,29],[11,57],[2,-11],[-20,-91],[1,-61],[-3,-22],[3,-26],[6,18],[-4,37],[8,-20],[8,13],[13,38],[2,19],[11,47],[-7,48],[-6,31],[-14,37],[-15,74],[-14,-20],[7,38],[16,23],[2,-48],[8,-26],[7,-1],[7,14],[9,48],[-4,-37],[-7,-43],[11,-35],[2,-3],[5,35],[6,13],[-6,-36],[-1,-55],[3,-17],[15,50],[3,34],[15,50],[0,35],[-6,-14],[2,52],[11,47],[0,-20],[5,3],[4,28],[0,17],[-7,-13],[-4,35],[4,17],[-13,24],[-5,-7],[0,33],[5,-13],[11,2],[11,-8],[-2,17],[6,-10],[0,-16],[7,15],[-2,37],[2,52],[7,9],[0,19],[-5,13],[2,20],[3,8],[4,23],[0,30],[0,51],[5,13],[-5,36],[-4,-6],[0,17],[-9,49],[-5,9],[-9,-8],[-8,15],[-1,-12],[-6,1],[0,26],[-2,9],[-15,22],[-8,-1],[-2,-12],[3,-63],[4,-3],[2,-28],[-11,-37],[-4,-45],[0,74],[-3,-20],[-4,15],[-5,-4],[-2,-37],[-4,13],[-7,-31],[-7,-11],[-4,-25],[0,28],[-5,-5],[-4,-21],[-4,-53],[-5,-37],[-2,3],[6,74],[5,39],[-6,50],[-5,11],[-7,-26],[-4,-1],[-6,-25],[0,21],[10,29],[7,56],[7,6],[0,43],[2,5],[6,-21],[-4,-31],[-2,-46],[0,-26],[5,-34],[13,35],[6,10],[0,21],[-6,5],[6,11],[5,-17],[9,65],[-5,5],[5,15],[-5,39],[2,21],[-6,11],[-5,-26],[-10,-7],[-5,20],[-4,-11],[-5,12],[-2,-35],[-7,-35],[-9,6],[-13,-69],[-2,29],[-5,19],[-9,2],[3,39],[4,-13],[6,37],[3,26],[4,17],[5,50],[2,46],[-6,26],[0,34],[-12,27],[-4,-7],[8,-54],[-1,-9],[-9,61],[-5,7],[-2,-16],[-7,-6],[-2,-29],[-6,-52],[4,-15],[0,-26],[9,-3],[0,-42],[-14,20],[0,-39],[-4,13],[-3,27],[-9,-11],[1,-41],[6,-41],[-8,-2],[-3,-15],[0,-25],[-4,22],[4,35],[-4,35],[-9,-32],[0,-21],[2,-8],[0,-39],[2,-24],[-6,-7],[-1,-32],[-3,-7],[1,79],[-4,13],[-5,-1],[-2,-15],[1,-38],[4,-44],[-4,17],[-7,-2],[7,-22],[0,-13],[-7,-8],[-5,8],[-16,-33],[-4,-2],[-16,26],[0,31],[-4,8],[-5,-17],[0,-17],[-10,-44],[-25,-84],[-11,-14],[-5,-15],[-11,-50],[-9,-15],[-20,-79],[-11,-44],[-20,-64],[-6,-22],[-10,-28],[-8,2],[-5,-19],[4,-24],[5,8],[11,-5],[20,-57],[5,-30],[4,14],[7,5],[-11,-44],[-5,-30],[-1,39],[-14,17],[-3,15],[-4,-4],[-9,10],[-9,44],[-7,13],[1,-56],[-3,-41],[-31,-135],[-24,-80],[-16,-76],[-2,-24],[5,-33],[1,-55],[-4,-43],[3,-13],[-12,-71],[-27,-129],[-17,-67],[-9,-26],[-3,-34],[-9,-34],[-3,-19],[-21,-48],[-13,-25],[11,3],[6,-21],[-8,8],[-14,-29],[3,38],[-22,-29],[-1,-10],[11,6],[3,-8],[-7,-22],[4,-13],[-8,-2],[-2,15],[-13,-27],[-12,7],[-29,-48],[22,9],[7,11],[4,-22],[0,-26],[-4,-19],[-5,5],[3,-25],[9,-30],[2,-26],[4,-13],[7,21],[4,-10],[-8,-8],[-4,-34],[-8,21],[-4,-8],[-7,5],[-2,21],[-5,22],[-6,0],[-5,38],[-4,1],[-4,-26],[-4,17],[0,17],[-9,-13],[13,56],[-3,5],[-20,-91],[-13,-43],[-34,-110],[-48,-103],[-50,-102],[1,-7],[25,50],[4,0],[-12,-43],[3,-16],[-14,-19],[-6,-2],[-7,-52],[5,-9],[-3,-11],[0,-24],[5,-17],[-9,-1],[-6,17],[-5,42],[-3,-6],[0,30],[3,20],[-9,-9],[-20,-56],[-3,-4],[-22,-68],[-6,-11],[-10,-41],[3,0],[7,28],[11,24],[6,28],[14,37],[18,-18],[-1,-23],[3,-29],[-7,35],[-11,-13],[0,-17]],[[11073,34258],[-2,-17],[-7,16],[-11,-12],[4,21],[-19,-52],[1,-17],[-6,-6],[-3,-20],[-8,0],[9,20],[-9,-2],[-5,-24],[-9,-27],[-31,-97],[-13,-28],[-15,-48],[-5,-24],[7,-35],[10,22],[3,17],[13,-1],[5,-7],[-7,-20],[6,-26],[5,21],[0,-34],[4,-24],[0,-19]],[[10990,33835],[7,14],[-2,25],[4,19],[8,-6],[-5,-9],[6,-22],[2,-28],[12,-22],[2,-20],[-7,3],[5,-70],[6,-10],[3,-38],[7,-26],[1,-26],[11,-19],[3,-29],[-15,-62],[-7,-59],[-2,-35],[-3,-13],[-6,-77],[2,-29],[-7,-51],[-4,-84],[0,-39],[11,-23],[6,-34],[7,-22],[11,-115],[-2,-9],[9,3],[9,39],[2,39],[6,37],[5,12],[9,87],[9,60],[4,40],[-9,66],[1,30],[-3,37],[-2,76],[4,37],[0,23],[3,64],[6,39],[0,52],[5,49],[2,51],[2,18],[-6,2],[-1,30],[-6,-13],[-2,29],[-5,-13],[-2,26],[16,67],[11,-24],[6,-72],[3,0],[0,-26],[-5,-63],[-6,-43],[2,-18],[2,-34],[-11,-78],[0,-29],[-3,11],[-3,-33],[0,-43],[9,-43],[6,-18],[-5,-26],[-4,-61],[4,-21],[14,-9],[11,-20],[11,-8],[9,12],[22,-6],[22,96],[5,0],[9,21],[4,-4],[2,-22],[-4,-21],[-13,-11],[-7,-18],[-11,-56],[-18,-21],[-3,7],[-8,-4],[-3,-19],[-6,-2],[-27,13],[-6,-37],[-9,-52],[-23,-161],[-6,-26],[-2,-46],[-3,-7],[-15,-8],[-3,-15],[-4,-48],[-2,-52],[-3,-2],[-4,17],[-4,3],[-5,49],[-2,26],[-5,20],[-4,43],[-2,96],[-27,53],[-2,14],[-7,55],[-9,64],[0,38],[3,24],[-4,32],[-21,15],[-4,15],[-14,24],[-6,18],[-5,-4],[-9,36],[-11,18],[-4,22],[-27,39],[-7,21],[-6,33],[-5,22],[-13,28],[-15,13],[-17,-4],[-24,-13],[-45,-18],[-11,0],[-41,-39],[-16,-17],[-42,-93],[-50,-104],[-26,-47],[-45,-96],[-11,-76],[5,-30],[2,28],[7,-1],[-5,23],[0,24],[3,19],[4,-34],[9,-15],[5,-42],[0,31],[6,-11],[0,-28],[9,12],[6,-21],[5,9],[-2,-48],[8,-65],[2,-37],[-4,-31],[-7,-69],[-9,-39],[12,-20],[4,-32],[7,-20],[7,-37],[6,0],[2,-21],[3,4],[7,-22],[4,-60],[0,-40],[-5,11],[-4,61],[-25,68],[-11,26],[-9,1],[-4,11],[-2,-32],[-5,-13],[0,-57],[3,-41],[-7,-43],[-9,62],[-5,15],[-17,-52],[-5,7],[-4,32],[2,44],[2,-8],[9,6],[11,74],[-6,8],[-14,-21],[-7,-33],[-2,20],[9,56],[7,-6],[2,28],[5,-22],[4,13],[12,13],[1,20],[8,31],[4,34],[-4,13],[-6,37],[-28,34],[-14,31],[-4,20],[-7,13],[-8,6],[-30,0],[-24,-45],[-9,-24],[-18,-44],[-15,-20],[-9,-8],[-18,-3],[-20,-17],[-31,-45],[-22,-20],[-30,-15],[-6,-19],[-23,-25],[-13,-10],[-46,-13],[-29,0],[-16,8],[-33,38],[-22,23],[-9,4],[-16,0],[-9,7],[-67,24],[-17,13],[-5,-3],[20,-14],[4,-16],[3,-54],[11,-13],[0,-17],[-4,-6],[-5,26],[-13,-60],[-12,18],[11,48],[6,0],[4,13],[-4,50],[-23,15],[-7,15],[-33,35],[-32,47],[-10,7],[-11,20],[-18,-7],[-9,-20],[-1,-23],[-8,-16],[-9,-11],[-13,-1],[-30,10],[-15,-2],[0,-8],[9,-11],[11,6],[13,-9],[11,-2],[21,5],[4,12],[7,-30],[-7,-6],[-2,-21],[-14,-53],[-12,-54],[-5,-26],[-21,-63],[5,-24],[-5,-14],[-6,12],[0,13],[-7,4],[-2,-16],[2,-43],[11,-4],[5,-53],[2,-49],[-2,-18],[-3,-6],[0,54],[-8,35],[-14,-2],[-2,-9],[-18,-2],[-11,8],[2,36],[-17,10],[-16,-65],[9,-6],[-7,-20],[-7,20],[0,15],[-6,7],[-2,21],[-12,-9],[-4,-24],[-24,-48],[0,-8],[19,37],[-8,-43],[0,-53],[-9,-24],[-2,-45],[-16,-14],[1,-23],[-12,-14],[4,-26],[-6,-4],[-1,44],[-3,13],[-5,-11],[0,-42],[-3,0],[0,37],[-6,-2],[0,-17],[-9,-9],[0,35],[-5,3],[-8,-25],[8,-52],[1,-19],[6,-65],[-4,-46],[4,-31],[2,-35],[14,0],[-2,-13],[-7,-4],[9,-71],[0,-18],[5,-13],[4,6],[8,-13],[-11,-23],[5,-35],[4,-40],[-2,-6],[-11,46],[-4,-5],[-3,-26],[0,-30],[3,-13],[0,-26],[4,0],[-2,-52],[6,-4],[-1,-20],[3,-53],[-4,-30],[5,-41],[0,-22],[-7,-17],[-6,11],[-5,52],[-2,43],[-5,15],[2,39],[-2,16],[-11,2],[-7,13],[0,19],[-11,7],[-7,20],[-6,45],[0,20],[-7,58],[-6,57],[-7,22],[-2,34],[-5,7],[-6,20],[2,19],[-9,3],[-3,13],[0,32],[-8,43],[-2,-10],[-7,6],[3,24],[-8,15],[-4,16],[-9,12],[-4,-2],[2,-26],[-9,7],[-7,-20],[-6,-30],[-7,-13],[-2,-14],[2,-23],[-5,9],[-13,-23],[0,-39],[7,7],[26,-30],[1,6],[15,-12],[-4,-7],[-11,11],[-4,-7],[-6,11],[-13,8],[-9,-6],[-11,-24],[-6,-28],[4,-35],[-4,-2],[-3,28],[-6,-15],[-16,-15],[-2,-18],[-25,-24],[-13,14],[-18,47],[-7,7],[-2,-13],[-6,4],[-1,-22],[-11,7],[-4,-22],[0,-13],[16,-59],[2,35],[6,-32],[10,-13],[-7,-7],[6,-22],[12,-23],[6,-35],[5,0],[-3,-29],[8,-34],[-1,-9],[11,-31],[3,-34],[0,-32],[4,-29],[2,-31],[14,-48],[4,-23],[-6,-24],[-5,6],[-9,42],[-5,8],[-20,50],[-8,5],[-10,24],[-14,6],[0,-20],[10,-17],[12,-32],[0,-14],[-5,3],[6,-22],[-4,-4],[-22,63],[3,-24],[8,-24],[0,-8],[-11,5],[7,-32],[4,-26],[0,-30],[-13,43],[0,19],[-7,35],[-4,42],[0,19],[-5,6],[0,-16],[-13,21],[4,-41],[0,-26],[4,-26],[7,-11],[1,-22],[-5,11],[-2,-13],[11,-20],[6,-45],[5,-15],[-6,-9],[-3,15],[-11,29],[-14,43],[-2,17],[-28,57],[-5,22],[-13,17],[-3,-9],[-13,9],[-5,-11],[-1,-27],[1,-25],[9,0],[-1,-24],[4,-4],[5,-31],[8,-34],[5,-5],[4,-37],[9,-11],[6,18],[7,1],[1,-21],[-9,-11],[10,-39],[-1,-33],[10,17],[7,1],[-2,-11],[-5,2],[-9,-26],[3,-35],[2,-52],[-5,8],[-4,35],[-9,52],[-6,48],[-3,-27],[-4,21],[-2,28],[-12,-31],[7,-54],[-11,33],[-3,0],[-2,58],[-6,14],[-13,2],[-5,-16],[0,-62],[2,-24],[11,-39],[0,-14],[-7,26],[-8,5],[-2,32],[0,35],[-3,4],[-7,46],[-8,5],[-9,63],[2,-33],[-7,20],[2,17],[-9,11],[-1,17],[-7,13],[0,-24],[-9,-26],[-6,5],[-8,-3],[0,-17],[-6,7],[-4,30],[-8,-13],[-4,-17],[2,-41],[-11,-61],[0,-14],[9,15],[0,18],[5,2],[6,24],[1,-26],[-3,-10],[2,-38],[5,-23],[5,-5],[4,17],[-3,37],[5,17],[-2,-21],[4,-13],[7,-11],[4,11],[-2,22],[9,-5],[-2,-35],[-14,-34],[2,-15],[6,-11],[1,11],[20,9],[1,14],[2,-39],[24,-22],[5,1],[15,-48],[27,-24],[0,-9],[-14,6],[-6,-4],[4,-49],[18,-14],[2,9],[14,15],[15,35],[5,-9],[-7,-19],[-2,2],[-9,-17],[-2,-14],[-5,-4],[-9,-30],[-9,-37],[-4,6],[0,22],[-5,3],[2,-36],[3,-8],[-5,-20],[-1,13],[-9,50],[0,20],[-5,21],[0,18],[-7,15],[-11,37],[-5,-2],[-8,15],[-5,-6],[5,-40],[6,-19],[-6,-5],[-4,13],[-8,33],[-4,2],[0,20],[-5,4],[-8,-8],[-14,12],[2,-19],[-6,-17],[4,-40],[-4,-24],[6,10],[9,-7],[0,-20],[-4,-4],[-4,21],[-9,-12],[-4,8],[-5,27],[-5,56],[-6,-8],[2,-12],[0,-43],[6,-22],[1,20],[2,-26],[-7,-72],[-4,2],[0,22],[-5,13],[-2,24],[-4,-6],[-4,-40],[0,-43],[-10,-24],[2,-18],[-1,-46],[-7,-30],[0,-24],[7,5],[1,33],[8,27],[13,-6],[4,15],[9,9],[6,-28],[8,4],[1,-24],[-10,6],[-8,-28],[-6,-8],[-7,15],[-7,-2],[-2,-28],[-6,-16],[0,-22],[2,9],[4,-17],[3,-94],[4,-37],[7,26],[2,-19],[9,28],[0,-11],[9,15],[9,26],[17,29],[1,-15],[-21,-37],[-2,-20],[-7,-13],[7,-6],[-2,-9],[-11,-13],[-12,-9],[-4,-35],[2,-15],[10,-33],[13,0],[2,13],[7,-10],[9,0],[4,10],[9,-2],[15,-17],[8,0],[1,-9],[14,20],[11,-13],[11,0],[2,-17],[-4,-3],[0,-23],[-5,-38],[-9,-35],[-7,-5],[-2,27],[-4,7],[-13,-4],[-3,-24],[-15,2],[-11,24],[-15,2],[-5,6],[0,-40],[-3,-16],[-6,8],[5,18],[-7,26],[-9,30],[-7,42],[0,22],[-5,32],[-2,26],[-6,2],[-4,16],[-9,15],[-5,-18],[2,-24],[-4,-19],[-5,39],[3,20],[4,0],[-3,34],[-4,13],[-15,77],[0,35],[-5,30],[-16,56],[-10,15],[-7,-17],[-2,7],[-12,-11],[0,-9],[9,-6],[-4,-17],[7,-9],[11,-26],[-7,-31],[5,-28],[-9,-24],[-10,22],[-11,-25],[-6,-10],[-13,86],[-3,-4],[-1,-30],[-3,11],[2,39],[5,15],[4,41],[-2,13],[-6,0],[-3,18],[-5,-11],[0,-24],[-4,11],[-3,-22],[-2,-33],[2,-8],[-2,-41],[5,-27],[-3,-28],[-4,4],[1,34],[-10,40],[-4,-56],[-3,19],[3,35],[-2,26],[4,44],[4,-4],[0,45],[0,30],[-2,-25],[-6,30],[-2,-17],[-12,-15],[5,32],[4,7],[0,19],[-7,-5],[-2,27],[-7,26],[-2,29],[-4,3],[4,-23],[-6,-18],[2,-23],[-5,-21],[-4,35],[-4,-10],[-7,0],[2,-33],[16,-28],[2,-26],[-6,19],[-14,4],[7,-45],[9,-34],[2,-38],[6,-2],[-1,-17],[-8,8],[-8,55],[-7,33],[-5,-39],[3,-20],[2,-54],[4,-33],[3,-5],[7,13],[1,-17],[-6,-28],[0,17],[-9,11],[-4,33],[-3,-9],[-2,-44],[-4,2],[0,24],[8,35],[-9,105],[-2,57],[5,21],[-5,2],[-2,41],[-9,-32],[5,-57],[0,-52],[-3,-17],[0,-63],[5,-24],[0,-46],[4,-11],[-4,-22],[2,-35],[-4,-23],[11,-35],[-6,-33],[1,-28],[-4,-20],[0,-19],[-3,-28],[-3,-37],[10,-20],[3,9],[0,-31],[-4,-8],[-14,26],[-3,39],[5,32],[-2,29],[2,32],[0,24],[-5,29],[3,15],[-7,35],[-4,47],[4,24],[-9,24],[-7,-11],[-3,-24],[-5,18],[0,26],[11,15],[8,-19],[3,8],[-2,29],[-5,60],[-4,13],[-14,5],[3,24],[6,-2],[9,-20],[2,17],[5,5],[-4,73],[2,31],[-1,30],[-8,-4],[0,22],[11,9],[2,19],[-2,9],[-2,47],[-5,1],[-10,21],[-5,-9],[5,-41],[-5,-17],[4,-13],[1,-44],[-10,3],[-4,23],[-7,-8],[0,-19],[4,0],[1,-25],[-5,5],[3,-37],[-3,-7],[4,-24],[5,-17],[-9,-11],[-5,16],[0,41],[-10,4],[-5,-5],[-2,12],[13,23],[-6,74],[-12,-13],[9,52],[7,-4],[7,54],[0,20]],[[8748,30933],[-5,-2],[0,17],[-4,26],[-5,-17],[-9,11],[-1,-24],[4,-13],[6,-40],[-4,-12],[-12,71],[-8,-17],[0,-15],[-7,-42],[0,-48],[-4,-47],[-5,0],[-2,-15],[4,-22],[-4,4],[-11,-24],[-5,-1],[-9,-48],[-8,8],[2,-28],[11,-44],[9,-22],[0,-13],[-6,13],[4,-40],[9,-27],[4,-41],[0,-31],[0,-36],[9,-35],[2,-27],[-2,-12],[-4,8],[-1,-17],[7,-26],[5,-39],[16,-85],[12,-61],[5,-44],[24,-37],[-4,-13],[6,-45],[-10,3],[-5,23],[-9,13],[7,-46],[0,-28],[5,-10],[6,-48],[0,-26],[-6,-12],[-8,34],[-6,45],[-11,47],[0,29],[-5,37],[-6,35],[-3,-9],[-6,63],[-9,32],[-16,92],[-7,48],[-2,87],[-10,65],[-1,21],[-7,34],[-6,-23],[2,-39],[0,-15],[-9,-4],[-2,-68],[-4,-34],[-4,-50],[4,-44],[-3,-22],[-4,29],[-5,-1],[-4,75],[-4,6],[-9,-13],[-7,11],[-2,17],[-9,-11],[3,33],[-8,-2],[-4,28],[-9,-7],[-11,3],[-2,18],[16,27],[-5,42],[2,8],[-6,46],[-18,46],[0,35],[6,12],[0,-15],[14,-32],[13,-77],[4,-43],[9,-39],[7,-13],[15,-22],[12,-22],[0,31],[2,37],[-5,82],[2,48],[-6,5],[-2,36],[-4,44],[-7,-17],[0,54],[-7,4],[-5,-37],[-8,-15],[0,-15],[-5,21],[7,27],[4,34],[0,25],[7,10],[-4,46],[-3,13],[-1,-26],[-5,-26],[0,52],[5,35],[-5,22],[0,15],[5,-20],[1,15],[-4,59],[-3,11],[-2,-18],[-9,-26],[-4,5],[-4,-26],[-5,36],[2,16],[5,8],[9,34],[2,0],[-2,34],[-9,9],[-2,-4],[-7,-35],[-7,-25],[-6,-6],[-12,2],[-4,-11],[0,20],[-5,15],[-11,-9],[-11,3],[-6,26],[-13,43],[-10,24],[1,22],[9,2],[8,-11],[18,-56],[7,-9],[2,19],[-2,31],[8,-32],[9,-18],[12,6],[2,31],[-5,21],[-9,5],[-8,-7],[-23,59],[-9,65],[-8,29],[-5,82],[-5,28],[-2,39],[3,33],[4,-17],[0,39],[7,-9],[-3,-43],[20,-98],[3,0],[2,-70],[4,-26],[10,-32],[4,-29],[5,-13],[8,13],[2,18],[5,0],[2,-26],[7,-26],[7,-6],[8,32],[-6,11],[-1,54],[3,0],[2,-24],[0,37],[-9,37],[-4,13],[4,6],[0,33],[5,27],[0,19],[-18,60],[6,22],[1,20],[-3,44],[5,-7],[8,-63],[10,-16],[0,-21],[-3,-15],[5,-65],[8,-48],[3,-17],[7,-77],[9,-9],[6,-17],[-9,48],[3,19],[-3,57],[-4,48],[-6,39],[10,-46],[4,13],[3,50],[6,28],[3,44],[-3,28],[3,4],[4,31],[-11,41],[-2,-13],[-5,13],[-11,68],[-2,-7],[-2,44],[-7,49],[-7,-8],[-4,-17],[4,-18],[3,-43],[-9,58],[-9,-17],[-2,-22],[-7,-11],[2,-15],[9,-54],[-13,54],[-9,-11],[-11,22],[-18,59],[-18,91],[-4,32],[-7,38],[-7,30],[7,42],[5,-10],[4,-39],[7,0],[8,-47],[10,-48],[19,-50],[14,-52],[6,37],[-6,17],[4,13],[13,-7],[5,18],[-2,26],[-7,7],[4,13],[9,-11],[0,-13],[9,11],[-6,25],[-4,3],[0,34],[-5,35],[5,5],[4,-32],[-2,-9],[20,-29],[4,-13],[0,83],[-7,50],[3,4],[10,-30],[3,-59],[0,-28],[-4,-61],[2,-28],[4,0],[2,-27],[7,-65],[4,91],[-4,73],[4,17],[0,-37],[3,-9],[4,13],[-2,-35],[-2,-76],[2,-67],[4,-24],[7,0],[2,-35],[9,2],[4,74],[5,-13],[4,22],[-9,21],[-4,24],[-4,49],[9,-20],[7,-35],[10,13],[-4,50],[12,-4],[4,39],[-3,37],[-9,37],[-4,0],[-9,22],[-6,-7],[-5,13],[-2,16],[11,4],[13,-20],[7,-2],[-3,37],[7,-15],[3,-37],[6,54],[-4,54],[-3,12],[-13,-42],[-8,17],[0,20],[13,9],[-4,28],[-8,21],[-11,-17],[-2,-15],[3,-17],[-8,6],[5,77],[-4,14],[-5,-15],[-7,-44],[-6,-10],[3,50],[3,8],[3,59],[-11,42],[-14,-33],[1,-35],[-5,11],[-3,-11],[-6,13],[2,11],[-6,76],[2,-2],[8,-55],[3,-13],[4,31],[2,74],[0,13],[-11,45],[-13,42],[-7,6],[0,29],[-4,7],[-2,-96],[-13,15],[-5,41],[7,2],[4,17],[4,39],[5,5],[-13,65],[-11,44],[-9,19],[2,9],[9,-20],[13,-36],[4,17],[5,-43],[4,-12],[14,-74],[11,-19],[7,-4],[6,26],[-4,28],[-16,-4],[0,26],[-9,33],[0,15],[9,-27],[7,-13],[11,22],[2,20],[-9,123],[2,16],[8,-44],[1,-21],[3,-68],[4,-19],[1,-56],[4,-14],[4,18],[2,32],[7,9],[-4,22],[-3,36],[-6,16],[4,13],[-7,56],[-18,63],[-9,24],[-2,-4],[-11,15],[-4,-7],[4,-40],[0,-42],[3,-32],[-7,8],[-6,-6],[-1,-15],[2,-35],[-4,-3],[-2,74],[-3,-4],[1,39],[-5,30],[2,20],[-4,4],[-4,24],[8,46],[-4,6],[0,42],[-11,18],[6,17],[-2,49],[-13,5],[11,43],[2,0],[0,26],[-4,20],[4,8],[0,31],[-5,13],[0,28],[-6,30],[-9,-30],[0,-41],[-5,-18],[5,-55],[-9,6],[-4,-15],[0,-33],[-4,-18],[-5,11],[2,31],[2,58],[-2,53],[-9,-14],[0,15],[7,19],[-2,16],[-7,33],[-9,35],[-13,8],[-3,-17],[1,-35],[-7,-11],[-3,14],[-6,-7],[2,-15],[-9,-26],[-7,2],[-6,16],[-5,47],[-13,14],[-5,-14],[1,-13],[-9,-43],[0,-29],[-11,-17],[-3,8],[-9,40],[-8,7],[-1,-29],[-13,19],[-6,-4],[-7,-26],[0,-26],[13,-80],[4,-5],[1,-22],[4,-13],[0,-13],[4,-17],[-8,-28],[-5,0],[-6,26],[-10,0],[-2,30],[-8,-7],[-1,42],[-2,24],[-4,8],[-4,-10],[1,43],[-6,7],[-2,19],[7,-6],[-7,65],[2,6],[2,29],[-6,4],[-3,28],[-6,18],[2,19],[6,-13],[1,16],[-4,12],[0,20],[-8,26],[3,19],[-5,12],[2,-18],[-4,-36],[3,-18],[-5,-60],[4,-43],[-4,-13],[2,-71],[-5,18],[-2,-3],[2,-58],[8,-22],[0,-15],[-6,0],[-8,14],[0,-68],[-2,-44],[0,-50],[-7,-41],[2,-51],[-4,-19],[-14,4],[-2,5],[0,48],[-4,6],[2,42],[3,19],[-3,30],[2,24],[-2,41],[13,65],[3,42],[-10,6],[-4,34],[-7,116],[-4,-8],[-4,-27],[-7,3],[-7,24],[-6,37],[-1,15],[3,21],[-2,24],[-5,13],[-2,34],[4,-1],[0,24],[-6,-10],[0,27],[-5,11],[-4,57],[6,26],[5,48],[-2,34],[8,3],[-2,-20],[9,-15],[0,20],[-4,0],[4,40],[-6,-1],[-1,12],[5,16],[0,20],[4,10],[5,-15],[-4,28],[1,33],[-4,10],[-2,-21],[2,-22],[-4,-10],[-6,13],[1,-24],[-6,-33],[-3,17],[-4,31],[-6,-31],[9,-6],[-3,-28],[4,14],[9,-13],[-7,-17],[-3,-35],[1,-19],[-4,2],[-6,41],[-5,-26],[8,1],[3,-23],[0,-41],[-6,13],[-3,16],[-4,-20],[8,-6],[-9,-20],[9,-5],[-9,-10],[0,-14],[8,7],[3,-7],[-3,-15],[-8,-9],[0,-47],[5,-15],[4,24],[3,2],[-4,-34],[4,-14],[6,6],[-6,-26],[-11,22],[2,-46],[6,-16],[-8,-23],[-1,-54],[-2,-13],[-4,-41],[-13,2],[-3,43],[5,18],[0,49],[2,7],[-4,47],[-1,-38],[-2,9],[0,56],[-1,30],[1,14],[2,52],[-3,20],[-3,-7],[-9,-57],[-11,-4],[-11,-19],[2,27],[2,1],[11,28],[2,18],[3,41],[11,37],[-5,0],[-2,19],[5,20],[-4,15],[1,26],[5,-15],[-2,49],[6,27],[0,26],[3,4],[-3,25],[0,23],[3,12],[0,-21],[4,15],[-4,25],[-5,-18],[-2,13],[3,19],[-3,25],[4,11],[2,64],[-6,-33],[-2,-38],[-2,17],[-5,0],[4,-43],[-8,-5],[4,-15],[-9,5],[2,-18],[10,-2],[4,-24],[-7,-24],[-7,30],[2,-36],[-2,-13],[-4,17],[-4,-61],[-7,-6],[-5,8],[-2,-21],[0,-24],[-4,-24],[-9,2],[-2,-18],[-2,14],[-9,-22],[-7,-43],[-5,-24],[2,-51],[-4,7],[-7,-48],[-4,13],[2,31],[4,65],[-6,35],[4,32],[-4,17],[4,7],[5,-21],[11,23],[6,24],[5,-2],[3,23],[-1,33],[-4,20],[4,3],[14,-42],[0,11],[-5,21],[2,77],[-4,52],[-4,2],[0,28],[-5,-19],[-4,6],[-7,-23],[-4,6],[6,61],[-4,28],[-5,6],[0,27],[-4,-20],[-2,-31],[4,-3],[-5,-60],[-8,-5],[-7,-36],[-5,-33],[0,43],[3,4],[2,35],[7,18],[0,20],[-5,87],[-2,5],[-9,-48],[-2,31],[6,34],[9,21],[3,19],[-5,10],[-2,16],[-6,6],[-5,-15],[-4,23],[-7,-21],[4,-22],[-2,-13],[-9,19],[5,55],[6,33],[-4,19],[-7,24],[2,-34],[-2,-19],[-2,33],[-14,0],[7,33],[3,28],[-5,41],[-5,-29],[-6,-1],[2,30],[-2,20],[-5,-20],[0,33],[-6,17],[-9,8],[-11,-5],[4,-16],[0,-19],[7,2],[7,-9],[0,-26],[-10,2],[1,-32],[9,10],[4,-29],[-5,4],[-6,-11],[6,-6],[-2,-18],[5,-4],[11,45],[2,-7],[-6,-49],[-10,-3],[1,-28],[6,-20],[-2,-25],[6,-29],[3,-6],[-7,-24],[7,-53],[9,-36],[-7,-40],[9,-34],[2,-63],[7,-39],[2,-72],[-6,-5],[-5,58],[-7,43],[-2,39],[-4,24],[-3,47],[0,22],[-6,46],[-5,23],[2,16],[-6,28],[-2,37],[-5,19],[0,-18],[-4,-22],[-5,1],[3,27],[0,35],[-5,59],[0,34],[-5,45],[-4,42],[-4,41],[-5,5],[-6,-14],[-1,-28],[5,2],[-2,-17],[6,-9],[3,-59],[-2,-19],[-3,43],[-6,9],[-5,-6],[-6,-24],[11,-18],[-3,-13],[-8,9],[-3,-32],[7,-26],[0,-16],[9,-54],[7,-20],[-5,-7],[-2,-29],[-2,-16],[-7,26],[-5,-2],[0,14],[-9,56],[0,36],[-4,27],[-6,-15],[-5,-29],[-4,22],[0,15],[6,27],[-2,17],[6,-11],[3,37],[9,39],[0,58],[-7,-11],[2,16],[-6,-11],[-7,5],[0,10],[7,20],[8,5],[3,20],[-3,14],[-2,30],[-8,0],[-7,10],[-14,-25],[-4,15],[-7,2],[0,55],[-6,30],[-1,33],[-8,24],[-16,23],[5,13],[-5,17],[-7,49],[-11,15],[-9,4],[3,19],[7,-4],[6,38],[2,43],[-6,41],[-9,38],[-12,-3],[-4,29],[4,27],[7,25],[-2,6],[-13,-29],[-1,-25],[3,-25],[-5,-39],[7,-22],[5,-5],[-5,-20],[7,-19],[0,-8],[-9,21],[-5,4],[-2,-27],[2,-7],[-6,-34],[6,-26],[0,-26],[-4,-1],[-4,42],[-5,37],[0,8],[-4,30],[-9,-20],[-2,-31],[-7,20],[-3,-2],[-9,-27],[-6,-26],[-4,22],[-5,-1],[-6,-22],[-10,-4],[-6,5],[9,13],[4,20],[7,6],[4,22],[2,-5],[14,10],[7,36],[9,11],[6,15],[0,28],[-2,53],[-14,34],[-9,-9],[0,-16],[-8,-26],[0,26],[-9,26],[-5,-63],[-8,-30],[0,32],[4,21],[-5,22],[-4,-6],[-20,-76],[0,-53],[-4,-23],[-1,18],[3,53],[-3,-23],[-8,-17],[6,29],[-6,-2],[-3,12],[0,32],[-6,-14],[-7,26],[-9,5],[-8,-15],[-5,15],[11,9],[11,24],[9,2],[-4,22],[-5,-9],[-4,9],[2,17],[-15,-13],[-3,-15],[-4,9],[-5,31],[-9,4],[0,10],[13,12],[3,8],[-5,28],[-31,-2],[-6,15],[-7,-6],[-4,-38],[0,-75],[2,-16],[15,26],[-6,-24],[6,-21],[-6,5],[-5,-9],[0,17],[-6,-12],[-10,35],[-4,-12],[-7,4],[5,9],[-2,13],[-5,-19],[-8,-4],[-12,-35],[3,-25],[8,3],[-2,-31],[-11,-8],[-11,14],[-5,-13],[0,-47],[2,-28],[-4,-62],[5,-16],[2,-25],[0,-23],[4,-20],[9,4],[-2,-24],[13,-2],[14,19],[0,19],[4,-8],[5,16],[0,22],[9,14],[-3,-14],[-4,-42],[-3,-19],[-17,-31],[2,-11],[-9,-17],[-6,-28],[6,-43],[0,-26],[7,-3],[9,-30],[8,4],[7,-24],[7,13],[2,41],[7,24],[9,58],[0,-28],[-3,-15],[0,-13],[-6,-34],[2,-22],[-4,-36],[4,-5],[2,-35],[11,-11],[3,-22],[17,22],[5,15],[7,-6],[4,34],[6,16],[5,4],[-7,-24],[-4,-23],[4,-12],[3,16],[0,-24],[13,19],[7,18],[7,31],[2,21],[13,15],[18,52],[-2,-30],[-12,-33],[-11,-19],[-4,-33],[-7,-20],[-2,5],[-2,-28],[-5,-5],[-6,-37],[4,-11],[11,-8],[11,13],[7,65],[2,30],[2,-20],[-2,-58],[-11,-50],[-9,0],[-9,9],[-2,-9],[5,-23],[0,-33],[8,-22],[3,22],[8,-7],[1,-32],[6,15],[2,-18],[9,5],[2,17],[3,-25],[8,18],[5,0],[-4,-21],[7,0],[0,-11],[-18,-7],[0,-17],[-7,-9],[9,-4],[4,26],[4,-4],[0,-32],[-4,-3],[2,-28],[11,17],[12,-4],[-5,39],[0,28],[5,-2],[2,-33],[0,-27],[6,1],[-2,-30],[-4,-1],[-2,-38],[-5,-37],[2,-39],[3,2],[-3,30],[5,-24],[9,-15],[0,-15],[9,-15],[0,-26],[0,-42],[13,-59],[7,-1],[6,15],[-6,-40],[0,-14],[11,-52],[4,-1],[5,-28],[11,-39],[-2,-13],[-9,19],[-5,-11],[2,-26],[-9,24],[-13,4],[-22,59],[-20,87],[-33,107],[-12,6],[-17,30],[-2,35],[-5,22],[-9,20],[7,15],[9,47],[8,16],[-6,1],[-14,-61],[-8,-18],[-7,6],[-5,-13],[-26,-21],[-18,-54],[-11,-38],[-13,-41],[-9,-37],[-11,-83],[-1,-52],[5,-39],[6,-43],[5,-83],[2,-67],[14,-91],[8,-142],[1,-61],[6,-62],[13,-68],[9,-58],[1,-22],[15,-64],[5,-14],[8,-40],[18,-108],[9,-51],[5,-36],[6,-111],[0,-83],[0,-15],[0,-107],[5,-26],[9,-13],[6,-22],[3,8],[2,-40],[0,-33],[2,-62],[0,-94],[2,-5],[0,-84],[5,-66],[8,7],[-6,13],[0,31],[5,13],[4,-13],[-7,2],[0,-27],[7,-13],[-5,-26],[-8,7],[-12,-39],[-6,-41],[-3,-64],[0,-32],[-6,-85],[-9,-65],[-3,-44],[0,-39],[14,-35],[15,-13],[10,-25],[2,-22],[0,-18],[7,-21],[35,-15],[13,-9],[11,-24],[2,-22],[9,-26],[3,-20],[8,-19],[14,-48],[2,-19],[20,-62],[7,-38],[13,-51],[11,-32],[7,-50],[22,-39],[5,-18],[9,-21],[17,-45],[10,-16],[15,-48],[7,-7],[6,18],[7,48],[5,54],[10,80],[9,42],[7,21],[27,31],[17,11],[5,15],[-2,-23],[2,-12],[31,-30],[5,-11],[9,-54],[6,-18],[7,4],[18,-4],[0,11],[17,22],[10,21],[1,29],[5,22],[9,2],[13,-26],[22,32],[3,2],[15,50],[5,-19],[9,24],[11,4],[24,-4],[3,19],[13,-2],[6,7],[5,22],[12,2],[3,19],[7,13],[7,44],[14,35],[2,17],[-1,-56],[-10,-44],[-3,-42],[-7,-32],[-6,-33],[-6,-19],[-6,-3],[-17,-63],[-16,18],[-9,0],[-10,9],[-8,19],[-4,-6],[-2,-35],[-11,-20],[-9,-32],[-9,-22],[-6,-24],[-7,-9],[-5,16],[-13,0],[-7,-5],[-7,-28],[-29,-57],[-13,-60],[-6,-37],[-9,-43],[-38,-123],[-27,-63],[0,-21],[11,-50],[3,-44],[2,-8],[8,13],[9,-5],[5,-12],[11,-57],[5,-43],[0,-26],[6,-27],[12,-107],[11,-36],[13,-7],[4,-22],[0,-47],[-2,-27],[6,-32],[8,-13],[9,2],[6,-10],[13,-42],[5,2],[7,-11],[9,-39],[12,-19],[7,-17],[5,-47],[9,-17],[16,3],[10,-20],[14,-13],[-9,-13],[3,-27],[-18,21],[-10,-8],[-15,18],[-9,-7],[-3,-13],[3,-12],[9,1],[7,-17],[1,-13],[-10,11],[-9,4],[-38,35],[-3,-15],[-20,37],[-4,24],[-6,8],[-5,29],[-9,19],[-6,28],[-1,29],[-9,61],[-8,19],[-7,2],[-7,38],[0,43],[-8,57],[-1,38],[3,33],[-2,22],[-1,82],[-9,25],[-8,36],[-25,-39],[-16,-10],[-20,-5],[-19,21],[-3,-6],[-7,-45],[3,-9],[-3,-15],[-4,15],[5,31],[-2,23],[-23,11],[-15,13],[-7,-2],[-9,-24],[-7,-30],[-2,-31],[-4,-37],[-3,-71],[0,-42],[5,-28],[4,-44],[-4,20],[-7,11],[-6,-7],[0,42],[-5,47],[5,39],[2,42],[-3,28],[-6,2],[-9,-39],[0,-46],[2,-43],[-2,-11],[-5,63],[1,48],[-3,41],[-6,35],[-5,20],[-27,49],[-8,3],[-3,22],[-13,28],[-9,6],[-4,-12],[2,-29],[-4,30],[1,18],[-4,22],[-9,13],[-9,26],[-13,86],[-6,64],[-5,39],[-5,13],[1,26],[-5,56],[-5,29],[-6,12],[-20,9],[-14,16],[-8,43],[-9,15],[-16,-9],[-16,5],[-17,46],[-5,26],[-17,57],[-9,49],[-12,46],[-10,-11],[0,-33],[-3,-15],[-2,26],[2,42],[5,26],[-3,28],[-17,69],[-1,22],[1,35],[4,69],[9,52],[13,134],[-2,43],[-4,10],[-7,-10],[-7,-24],[-9,-11],[-4,-31],[-9,-28],[-4,7],[6,39],[-7,18],[-9,14],[-4,-10],[-2,36],[-7,16],[-18,70],[-8,27],[0,-36],[2,-25],[-9,-26],[7,35],[-3,31],[2,56],[-4,13],[-9,100],[-4,25],[-5,3],[-4,-15],[2,38],[-9,6],[-8,17],[-21,81],[0,13],[-11,56],[-4,54],[-3,24],[0,72],[5,54],[11,27],[11,41],[-6,15],[-14,44],[-2,17],[-14,13],[-4,19],[-2,92],[-7,43],[-9,5],[-11,26],[-13,56],[-5,57],[-4,11],[-16,9],[3,-14],[-9,-2],[-3,-28],[-4,-16],[-5,3],[3,22],[-7,-16],[-7,-8],[-6,24],[0,22],[-3,-16],[-8,11],[-14,-24],[0,-35],[9,4],[7,13],[-2,-19],[-7,-15],[-13,0],[-5,30],[-4,-26],[-2,-24],[2,-38],[-2,-22],[-14,-29],[-7,2],[-6,9],[-7,-2],[-13,19],[-9,26],[-9,39],[-11,68],[0,15],[11,-11],[9,-22],[6,-27],[-2,-40],[5,-30],[8,0],[8,35],[10,-11],[5,-20],[7,-8],[2,47],[-3,22],[0,31],[9,32],[1,19],[10,18],[3,18],[11,19],[4,0],[14,24],[4,34],[9,23],[5,-5],[2,35],[-3,34],[5,18],[2,17],[7,16],[2,15],[9,19],[7,52],[0,64],[-9,62],[-7,-2],[2,24],[5,9],[-14,56],[-8,47],[-3,82],[-4,41],[-11,26],[-14,17],[-4,42],[-16,6],[-4,-15],[-14,14],[-4,-10],[-16,-15],[-13,12],[-7,26],[-22,20],[-6,1],[-5,-11],[0,15],[-7,-9],[-2,24],[-16,79],[1,20],[6,1],[7,-26],[13,-6],[12,39],[8,-14],[5,-32],[6,-13],[5,4],[11,-6],[4,19],[3,34],[0,53],[-7,85],[0,24],[-9,115],[-6,7],[-12,24],[-4,-7],[-4,17],[0,25],[-20,65],[-7,5],[-5,-25],[-4,-56],[-3,-6],[-8,10],[4,77],[-2,16],[-11,10],[-5,-29],[-8,-11],[-5,5],[-2,-31],[9,-41],[0,-40],[6,-21],[-4,-48],[7,-19],[6,6],[-4,-32],[-9,6],[-7,-44],[-4,-11],[0,-21],[-11,-74],[-2,-2],[2,41],[-2,35],[4,50],[0,30],[2,38],[0,55],[-4,27],[-2,52],[-3,30],[-8,16],[-3,-12],[-6,32],[-5,8],[-2,-35],[-9,-35],[0,-37],[-3,-13],[5,-48],[-4,7],[-7,61],[0,48],[-7,15],[-11,-2],[-4,13],[0,18],[9,12],[6,-15],[11,-2],[3,32],[11,22],[2,20],[-5,69],[-2,27],[-2,9],[-18,-9],[-20,12],[-11,16],[-4,38],[-3,-38],[-9,-18],[-11,16],[9,8],[9,18],[0,10],[9,22],[2,13],[7,26],[7,55],[2,32],[-11,35],[4,24],[-6,19],[-7,4],[-11,21],[-4,3],[-10,-15],[-15,25],[-11,66],[0,-17],[-5,-13],[-7,7],[3,14],[-7,14],[-2,17],[-7,-30],[-6,13],[-7,33],[-4,5],[-9,-19],[2,41],[2,-2],[4,31],[12,-7],[9,-17],[13,-1],[0,-36],[4,24],[7,-2],[-15,43],[-5,29],[-18,37],[-9,31],[-6,84],[0,48],[-1,59],[5,14],[-2,33],[-4,-7],[-9,18],[2,26],[-7,25],[-9,-3],[-4,12],[0,20],[6,-9],[0,18],[-6,7],[-7,23],[2,23],[2,-4],[-2,26],[2,14],[7,-30],[13,4],[2,8],[1,44],[-7,25],[2,9],[5,-10],[-7,48],[0,18],[4,-14],[-4,53],[7,56],[8,0],[9,-39],[12,-81],[15,-1],[16,14],[11,13],[9,5],[9,13],[11,-40],[4,-2],[9,25],[4,30],[1,-41],[13,-20],[14,103],[10,51],[18,50],[7,0],[9,-37],[11,50],[2,31],[7,0],[9,43],[2,31],[7,17],[-5,30],[-9,31],[-2,17],[7,0],[-2,-17],[10,-18],[5,-35],[3,0],[1,74],[11,27],[-8,-3],[-11,22],[0,13],[13,16],[11,-27],[5,33],[-5,11],[-4,22],[-9,-9],[2,-22],[-11,9],[-3,24],[-4,35],[0,50],[-2,26],[-2,48],[-5,52],[-11,76],[-9,-8],[-6,14],[-3,34],[-8,-3],[-10,45],[-4,26],[-2,61],[-7,0],[-16,50],[-17,0],[-9,13],[-11,-1],[-7,-12],[-18,11],[-2,20],[0,38],[7,7],[-9,52],[-3,62],[-6,-12],[-4,11],[6,33],[7,-5],[-7,46],[-7,14],[-10,-11],[-9,12],[-7,-4],[-7,8],[-2,23],[4,25],[0,74],[3,8],[6,52],[9,4],[7,23],[-3,9],[-1,26],[-9,9],[-3,35],[-9,3],[-6,-10],[-3,27],[-13,-22],[-5,-3],[-10,15],[2,14],[6,-2],[1,23],[-5,11],[-9,-1],[-17,45],[-3,-2],[-5,23],[1,14],[-5,20],[-6,3],[4,49],[-4,28],[2,7],[4,-25],[9,-17],[3,13],[8,-18],[-2,-34],[4,-31],[9,-5],[3,8],[4,-16],[2,-39],[11,15],[3,50],[8,26],[-4,25],[-20,16],[-2,10],[-5,-14],[-7,28],[3,8],[4,-26],[9,30],[9,23],[0,20],[3,34],[-10,-3],[5,27],[-4,22],[-5,-4],[-7,17],[-9,-6],[-9,-28],[7,33],[-4,1],[-7,-22],[7,64],[8,15],[1,15],[9,35],[-5,8],[-13,7],[-5,-14],[-2,-19],[-9,-32],[-2,76],[6,27],[1,51],[-2,15],[-7,0],[0,-34],[-9,-1],[4,-13],[-4,-24],[-13,-47],[-5,-37],[2,-45],[-15,-55],[0,-17],[-5,13],[5,26],[0,15],[6,8],[-2,22],[4,7],[1,35],[-5,4],[5,52],[2,67],[-4,29],[-5,-6],[0,-23],[-13,-24],[-3,27],[-2,-9],[4,-24],[-9,-3],[-13,-34],[0,20],[5,45],[6,-22],[5,35],[-2,13],[6,37],[-9,87],[-4,15],[0,-17],[-7,0],[-9,-14],[-2,-36],[2,-15],[-4,-18],[-7,-4],[-7,17],[-4,18],[-2,26],[0,37],[-14,44],[-11,-3],[-4,-35],[-11,-10],[-11,2],[-9,37],[6,-55],[-2,-6],[-9,13],[0,31],[-8,1],[-9,-27],[-5,16],[-2,24],[6,16],[-2,70],[-4,34],[-9,-2],[-7,20],[2,34],[5,17],[4,28],[0,55],[-9,40],[-6,-1],[-11,23],[-5,-12],[-6,30],[0,-34],[-16,-33],[0,27],[11,38],[0,24],[-7,22],[-11,6],[-13,-13],[-4,11],[4,33],[-2,11],[4,22],[9,-14],[-4,20],[-7,0],[-2,-11],[-7,3],[2,15],[14,60],[4,5],[-2,52],[-4,26],[-5,-7],[-5,7],[-6,22],[-7,-9],[-4,-49],[-4,-14],[-14,5],[-2,-16],[-5,-5],[-13,-71],[-5,-6],[-17,3],[2,95],[-4,40],[-1,48],[1,22],[6,18],[7,0],[0,29],[-3,23],[-10,13],[-21,30],[-2,17],[-7,9],[-13,-21],[5,28],[11,24],[-4,41],[2,19],[-1,85],[-17,1],[-2,-22],[-5,4],[2,-41],[-11,30],[-7,33],[-6,-9],[-3,35],[-10,-8],[-9,-26],[-9,-42],[-5,-2],[-4,15],[0,22],[4,23],[2,38],[-9,-5],[-10,4],[11,13],[4,14],[-4,29],[4,65],[7,36],[-3,32],[-15,-10],[-4,10],[-3,-20],[-9,-30],[5,-26],[6,-17],[-2,-17],[-7,26],[-2,13],[-9,-9],[-4,-13],[-9,25],[-2,56],[2,12],[-9,-6],[-9,30],[-9,9],[-9,15],[-6,37],[-7,18],[4,3],[-13,52],[-6,1],[-5,15],[-2,33],[-7,-1],[-2,21],[-9,14],[-6,103],[4,19],[2,-23],[7,2],[6,-23],[12,-21],[11,-30],[6,0],[5,-13],[9,20],[-7,10],[2,17],[7,14],[-2,82],[-3,9],[-13,3],[-6,19],[-9,15],[2,15],[7,-17],[2,47],[11,38],[8,8],[1,20],[-5,28],[-2,20],[-6,32],[-7,7],[-1,26],[-4,-14],[-6,22],[-7,4],[0,22],[-5,-12],[-2,17],[5,16],[4,1],[5,18],[0,21],[-9,8],[-1,-51],[-4,17],[2,39],[-4,35],[-5,28],[-15,7],[-2,-17],[-12,-53],[-2,7],[3,23],[9,25],[2,24],[-7,-13],[-5,-28],[1,40],[9,14],[4,21],[7,48],[-2,20],[2,19],[-5,4],[-2,-12],[-13,-10],[-5,3],[-2,-17],[-11,-4],[0,-20],[-5,-42],[-4,-15],[-11,11],[-5,-16],[-2,43],[9,39],[0,15],[-9,52],[-2,25],[0,40],[-5,77],[-6,18],[-5,-17],[0,-41],[-11,-61],[0,-25],[-11,3],[-4,-11],[-3,-28],[-4,13],[9,55],[-3,52],[3,20],[-5,12],[-11,-2],[-16,65],[-1,33],[-7,59],[0,25],[-3,14],[-4,-31],[-9,0],[4,-9],[-6,-21],[-5,-2],[-8,-17],[-1,38],[7,16],[3,41],[4,9],[-2,15],[2,25],[-5,31],[-13,17],[-6,-17],[-7,-35],[-5,-4],[-6,-24],[-1,-24],[-17,-69],[-9,-32],[-5,-3],[-8,13],[-7,22],[-3,32],[0,18],[5,49],[9,5],[0,33],[5,28],[0,17],[-5,-15],[-13,32],[-5,-19],[-9,6],[-6,27],[-7,72],[-7,-28],[-4,8],[9,70],[2,-28],[6,62],[5,-4],[7,21],[6,-8],[2,31],[5,23],[-2,42],[-11,19],[-9,2],[-16,-14],[-7,5],[-6,18],[-11,-1],[-2,-20],[-5,-7],[-4,-50],[-5,-36],[-2,-23],[-7,-7],[-11,14],[-6,16],[-5,45],[-9,-9],[-9,8],[-9,26],[-4,39],[-9,33],[-7,-16],[-8,14],[-7,38],[-11,32],[-7,32],[0,40],[2,6],[14,-24],[9,-11],[11,-18],[4,5],[20,-45],[14,26],[6,-7],[7,31],[-4,17],[2,83],[-9,13],[0,43],[-9,4],[-5,-21],[-13,-9],[-7,-27],[-7,3],[-8,-28],[-7,-2],[-7,6],[-15,-27],[-4,23],[0,17],[4,18],[4,-7],[4,20],[-6,61],[-9,-14],[-5,21],[-11,-14],[-6,7],[-3,-18],[-10,-24],[-11,-6],[-12,52],[-7,4],[-4,22],[-5,48],[-8,48],[-12,54],[0,27],[3,44],[-5,-26],[-13,44],[-7,13],[-6,24],[-5,54],[-6,11],[-16,54],[6,-1],[3,-18],[9,-15],[-2,20],[6,1],[3,17],[6,-8],[7,18],[9,0],[0,-18],[-7,-13],[-2,-22],[0,-26],[4,-17],[3,-27],[4,-6],[5,-30],[10,-29],[9,-4],[2,43],[-6,49],[2,6],[7,-37],[0,-33],[6,5],[-4,57],[7,13],[4,-20],[-2,-18],[11,-22],[5,-4],[4,22],[4,-2],[-15,83],[2,9],[5,-21],[6,-38],[11,-13],[7,26],[9,3],[-4,49],[-7,16],[-5,19],[-8,11],[-5,19],[-11,13],[-5,-14],[-11,-8],[0,12],[7,17],[-7,56],[7,-13],[2,-19],[7,-5],[5,13],[10,9],[-4,35],[-7,33],[9,-8],[9,-26],[7,-12],[16,-59],[2,-18],[7,0],[10,-13],[0,10],[-10,19],[-7,41],[-1,33],[-10,0],[-12,30],[5,9],[-5,17],[-6,-13],[-16,30],[-2,14],[4,30],[-4,26],[-9,-23],[0,-23],[2,-29],[0,-48],[-4,-10],[-5,49],[3,-11],[-3,43],[0,46],[-9,-29],[-4,22],[7,2],[2,32],[7,49],[-3,59],[-6,-22],[2,-18],[-5,-6],[-2,-20],[4,-15],[-6,-36],[-4,26],[-7,-17],[0,25],[-2,19],[6,0],[5,51],[-9,38],[2,6],[9,44],[4,-13],[-6,-31],[2,-16],[4,16],[7,7],[-2,55],[2,28],[-7,24],[-4,-13],[0,-31],[-11,-50],[-4,0],[2,64],[0,55],[-5,1],[0,-18],[-11,-67],[0,-29],[2,-17],[5,9],[7,-26],[4,-40],[-11,36],[-5,0],[-11,32],[-4,-21],[4,-25],[-2,-14],[13,-29],[-2,-6],[-11,2],[0,-23],[4,-20],[-4,-14],[6,-27],[7,23],[0,-44],[-2,-4],[5,-50],[4,-6],[11,15],[-4,-42],[-5,-8],[7,-11],[9,-2],[0,-22],[-7,3],[-11,-9],[-13,15],[-11,-20],[-5,1],[4,22],[9,27],[9,0],[-9,44],[-2,30],[-7,35],[-6,17],[-5,5],[0,-18],[3,-32],[-2,-24],[-5,2],[-7,-13],[-9,-2],[16,37],[0,24],[-3,9],[-4,36],[4,-6],[8,42],[-5,19],[2,8],[-2,42],[-9,15],[-5,-13],[-4,17],[4,22],[12,-2],[6,6],[-8,52],[6,4],[2,-25],[3,4],[0,64],[-7,-3],[-9,13],[7,20],[6,27],[-7,16],[-6,-35],[-11,29],[-5,-22],[3,-22],[9,-7],[-7,-16],[2,-36],[5,-2],[-5,-24],[-5,11],[-6,-24],[0,39],[-2,20],[-5,17],[-4,-8],[-7,-57],[-2,0],[-5,25],[0,22],[-8,49],[-9,-19],[0,14],[6,17],[0,33],[-4,45],[-11,-14],[-9,2],[-7,25],[2,27],[-2,35],[-7,-9],[-11,-61],[-4,4],[-13,29],[-9,0],[-2,43],[-5,-19],[-13,-4],[-11,23],[-2,20],[0,25],[-7,18],[-1,-28],[-6,-13],[-11,13],[-7,40],[-2,87],[2,25],[-2,19],[-7,-8],[-2,-31],[-9,-43],[0,-21],[4,-57],[-4,-17],[5,-46],[-7,-11],[-13,25],[-5,38],[0,33],[7,26],[2,-4],[0,32],[4,42],[-2,30],[3,74],[-7,54],[-5,11],[-4,42],[4,28],[0,52],[2,7],[-6,49],[-4,9],[-5,-7],[-4,27],[-7,79],[2,23],[5,28],[-7,-15],[-2,-16],[-7,3],[-2,-9],[-7,16],[-11,12],[4,-51],[7,-16],[-7,-13],[-9,16],[5,-29],[20,-5],[7,16],[-2,-18],[2,-19],[6,-18],[-4,-18],[-4,1],[-1,-18],[-15,-5],[-3,-9],[5,-23],[5,-33],[11,-32],[0,-11],[-11,-23],[2,-30],[-3,-31],[9,-63],[3,-53],[7,-12],[1,13],[5,-7],[-9,-13],[-7,-37],[-13,-17],[-11,-19],[-11,-10],[-7,2],[-6,-9],[-12,18],[3,82],[-5,43],[-7,5],[-13,-39],[-2,-26],[-5,-8],[-4,12],[4,57],[-4,22],[-7,-44],[-7,11],[-2,37],[-4,5],[0,30],[4,12],[5,32],[-2,38],[-11,-8],[-5,-14],[-4,16],[4,-37],[-4,7],[-1,28],[12,48],[-9,-1],[-5,-9],[-4,-51],[-11,-30],[6,39],[-2,46],[5,58],[-2,19],[-12,-2],[-2,13],[-7,5],[-6,-13],[-3,-28],[0,-27],[-6,16],[6,32],[-4,16],[0,21],[-6,8],[0,12],[-18,-13],[-9,-21],[-11,-21],[-5,14],[0,36],[11,23],[11,41],[-4,13],[-7,3],[-9,57],[-4,3],[-4,-29],[-5,5],[5,23],[0,16],[2,25],[-5,43],[0,56],[-11,57],[-9,6],[-2,-55],[-4,-43],[-7,-51],[0,-34],[-3,-19],[1,-38],[-1,-15],[7,-15],[-7,-4],[-8,16],[4,40],[-11,63],[-5,11],[-11,-22],[-9,0],[-8,18],[-2,33],[11,15],[6,-3],[5,11],[9,2],[4,54],[-2,39],[-3,27],[-10,7],[-10,-3],[-13,14],[-9,-19],[-6,-25],[-1,-33],[5,-37],[-2,-18],[-11,-22],[-14,6],[-8,34],[-5,57],[-4,15],[0,37],[-5,30],[-4,18],[-7,12],[-9,31],[-20,40],[-15,21],[-1,22],[-9,28],[-6,-6],[-7,11],[-13,-12],[4,-27],[-2,-13],[-7,-13],[-6,2],[-14,24],[0,10],[-8,0],[-5,18],[-9,2],[-4,-9],[-2,-54],[6,-17],[5,-89],[2,-78],[-5,-23],[7,-25],[9,-46],[2,-26],[9,-53],[7,-35],[6,9],[0,22],[3,9],[4,35],[7,2],[0,-29],[4,48],[7,-13],[11,26],[5,-6],[2,11],[6,-5],[3,12],[6,-14],[-2,-28],[-9,-15],[-6,10],[-9,-8],[-7,-22],[0,-22],[-4,-4],[-7,-48],[-5,-15],[-9,-3],[-6,-34],[-7,-19],[-7,-8],[-18,-5],[-13,8],[-17,22],[-7,28],[2,26],[-4,-4],[-7,39],[-9,9],[7,17],[4,-7],[-13,63],[-4,8],[0,29],[-3,32],[0,21],[4,-4],[1,26],[-1,67],[0,56],[3,31],[-4,29],[-9,48],[-5,31],[-13,66],[-3,32],[-8,48],[-5,6],[-6,64],[-3,32],[0,-52],[-6,12],[-1,17],[7,10],[0,24],[3,4],[-9,22],[-1,22],[-11,-34],[2,-16],[5,25],[7,-8],[0,-22],[-7,5],[-9,-18],[-2,13],[-9,-13],[-9,-1],[-4,9],[0,18],[4,5],[5,68],[4,10],[-4,17],[-7,-8],[-2,15],[7,-2],[1,11],[12,8],[2,9],[0,45],[6,29],[-4,32],[-11,30],[-6,-3],[-10,45],[-6,-28],[-18,-52],[4,-23],[5,-5],[-5,-20],[3,-19],[9,-47],[-5,-3],[0,25],[-5,9],[-6,-8],[-11,7],[-3,44],[-6,14],[-4,35],[2,21],[4,18],[0,28],[5,31],[-9,65],[-9,17],[-9,-12],[-3,-21],[-4,-60],[5,-3],[0,-36],[-9,29],[-2,49],[-3,15],[-11,-7],[-7,20],[-17,-37],[-5,-22],[-4,-32],[-3,-16],[1,-15],[-5,-24],[0,-23],[18,-20],[9,43],[9,12],[13,-12],[0,-13],[-16,-19],[-13,-68],[-9,-15],[-4,-59],[0,-60],[-4,-68],[-10,-22],[-11,-15],[-13,-6],[2,-15],[7,7],[9,-4],[-2,-19],[6,-2],[-2,-17],[-5,4],[-9,-6],[-4,-11],[-7,2],[-11,57],[3,0],[-5,35],[-6,1],[2,31],[-2,34],[2,31],[7,19],[-1,9],[14,24],[0,-20],[9,46],[0,31],[9,39],[-5,26],[-2,-20],[-7,-16],[0,127],[-4,35],[4,0],[7,-48],[0,67],[4,32],[2,27],[3,20],[0,28],[0,68],[4,10],[-2,22],[-7,-17],[0,-22],[-6,-17],[-1,-22],[-11,-26],[3,-11],[-9,-11],[5,-9],[4,16],[9,-7],[0,-35],[-5,-49],[-7,-1],[-8,22],[2,24],[-2,35],[4,33],[-13,29],[2,42],[-4,26],[-5,3],[-2,17],[-9,23],[-7,-21],[-4,3],[-4,27],[-14,-15],[-4,-24],[-7,-10],[0,-42],[-9,-27],[-5,-36],[1,-30],[8,6],[5,16],[2,-29],[-4,-18],[-5,9],[-6,-39],[-5,-14],[-4,-51],[-16,-59],[-5,-12],[-13,8],[-6,19],[0,-9],[6,-21],[2,-13],[7,0],[-2,-17],[-20,-3],[4,-19],[-7,-2],[-6,15],[4,35],[-6,13],[4,46],[-6,-4],[0,-31],[-3,-18],[-4,15],[4,15],[-2,37],[7,9],[-5,74],[3,21],[11,31],[8,-2],[7,32],[16,39],[4,20],[2,41],[5,0],[-9,36],[-18,56],[-4,8],[-2,18],[-20,65],[0,24],[-9,27],[-14,9],[-2,27],[-4,13],[-9,-1],[-5,-64],[-6,-28],[20,-50],[-1,-22],[3,-37],[9,-15],[2,8],[2,-27],[-2,-11],[-5,21],[-1,-23],[-3,19],[-4,12],[-7,-4],[0,-65],[9,3],[2,18],[15,3],[5,23],[4,-13],[-6,-31],[-13,-30],[-1,-21],[3,-92],[-2,-71],[-7,-63],[6,-44],[-1,-12],[-9,39],[-9,29],[-9,15],[-3,30],[7,3],[5,-16],[-5,29],[-11,4],[0,-40],[7,-19],[24,-74],[29,-106],[15,-29],[7,-2],[11,-29],[12,-53],[8,-48],[-2,23],[4,16],[-10,24],[-10,55],[1,23],[11,3],[13,-8],[7,5],[2,19],[7,2],[0,-32],[4,-7],[14,3],[0,-37],[4,-44],[4,-4],[-2,-31],[-4,-21],[-3,2],[-4,19],[-4,-8],[0,-24],[6,-3],[-2,-26],[9,-9],[0,-10],[6,23],[3,-39],[4,-12],[0,-16],[3,-25],[10,-5],[1,11],[-9,8],[0,12],[9,6],[0,-24],[4,0],[9,-48],[2,2],[4,-31],[-6,-16],[7,2],[4,-11],[4,-45],[5,-25],[-4,35],[6,25],[7,1],[7,27],[8,-7],[11,-44],[0,-32],[3,-5],[-2,-40],[-3,-20],[0,-23],[3,-21],[0,-32],[-7,-11],[-7,21],[-4,5],[-16,74],[-2,-31],[4,-32],[18,-52],[14,-64],[44,-231],[20,-134],[7,-39],[13,-45],[14,-24],[13,-54],[13,-69],[4,0],[18,-27],[16,-38],[7,-26],[9,-60],[4,-15],[4,10],[0,-26],[9,-31],[11,-16],[9,-2],[11,-14],[0,10],[9,-9],[3,-22],[18,-42],[15,-11],[43,-49],[24,-32],[7,-18],[24,-38],[13,-13],[0,9],[-9,4],[-28,50],[-3,24],[-4,-6],[-9,8],[-13,24],[-2,18],[0,25],[-3,49],[4,-4],[3,-67],[6,-14],[9,-6],[18,7],[5,18],[8,-14],[1,-14],[8,15],[7,1],[2,-28],[5,12],[4,-4],[2,18],[5,26],[7,-7],[6,-18],[2,-19],[5,0],[7,-17],[6,-5],[3,-26],[8,-3],[12,-29],[4,23],[0,57],[-2,20],[6,24],[-6,19],[-5,-32],[-6,-12],[-18,25],[-11,52],[-5,39],[5,13],[2,37],[13,13],[7,-33],[0,28],[-5,37],[3,63],[9,40],[4,-9],[15,98],[14,73],[4,-6],[-2,-41],[5,-20],[6,9],[11,33],[3,75],[6,9],[3,-32],[-5,-29],[5,5],[2,-31],[-3,-18],[-8,-17],[2,-17],[-2,-11],[-5,2],[-2,-17],[-9,-6],[-2,-34],[0,-109],[-9,-65],[0,-16],[6,2],[10,32],[9,17],[17,9],[21,-12],[8,-14],[4,16],[3,-13],[4,10],[-2,22],[5,2],[2,24],[4,3],[-6,53],[4,49],[7,13],[4,-40],[5,-10],[8,24],[0,25],[7,21],[5,-7],[6,6],[7,20],[11,0],[4,-18],[-2,-19],[-4,17],[-2,-19],[-14,-70],[14,-28],[13,-17],[-5,-8],[-6,-27],[-9,6],[-2,-18],[-3,1],[-15,-50],[-9,-17],[-6,-30],[-14,-9],[-9,-31],[-4,-28],[-5,4],[-7,20],[-4,32],[-2,-9],[9,-52],[6,-61],[-2,-40],[-7,-10],[-6,22],[4,-37],[7,-40],[4,-38],[12,-91],[9,-71],[0,-57],[10,-77],[5,-73],[0,-31],[7,-70],[9,-54],[19,-54],[18,-87],[3,-31],[6,-19],[9,-39],[18,-22],[22,-67],[18,-66],[7,-37],[22,-111],[20,-38],[2,3],[7,-30],[13,-17],[25,-61],[18,-34],[24,-87],[11,-35],[7,-18],[-18,61],[-18,64],[9,19],[-2,-26],[11,-7],[20,-34],[13,-29],[11,-49],[5,10],[16,-20],[-3,-15],[-9,20],[-4,-17],[2,-24],[5,7],[-2,-29],[-7,25],[-2,-10],[13,-28],[16,-48],[8,-30],[11,-27],[9,5],[-2,-22],[11,-35],[3,-2],[20,-87],[4,-22],[16,-54],[9,-14],[-12,43],[-2,-7],[-15,58],[11,54],[8,31],[10,28],[15,10],[4,14],[7,-4],[4,-15],[16,-2],[2,19],[18,50],[2,-8],[-6,-40],[-5,-61],[3,-56],[-1,-23],[-8,-29],[-1,-55],[1,-28],[-5,7],[4,-95],[-4,-25],[0,-56],[5,-52],[17,-128],[11,-51],[10,-93],[26,-161],[36,-181],[11,-30],[7,-26],[28,-67],[11,-20],[-4,25],[0,45],[4,-19],[-2,-18],[14,-35],[4,41],[9,-8],[-6,-15],[-5,-30],[-7,6],[0,-27],[23,-91],[13,-80],[7,-59],[19,-46],[14,-67],[18,-65],[7,-17],[0,11],[-7,28],[2,17],[9,-50],[7,-2],[-2,22],[2,23],[0,29],[4,6],[5,33],[-1,6],[0,37],[-2,43],[-2,57],[7,24],[17,11],[3,17],[0,14],[-7,34],[-7,4],[-13,31],[-2,47],[2,33],[0,-62],[7,-25],[15,-21],[7,-33],[0,-35],[-9,-15],[-16,-15],[0,-43],[5,-61],[2,-5],[13,42],[7,15],[18,-2],[-9,58],[0,24],[4,7],[-2,-28],[2,-22],[9,-26],[2,-22],[5,-7],[7,9],[7,-4],[2,-26],[-2,-61],[-7,-44],[11,-14],[6,-30],[3,26],[2,-12],[-4,-22],[-7,5],[0,11],[-13,12],[-3,13],[0,33],[7,20],[5,69],[-7,11],[-18,-37],[-9,-7],[-4,30],[-5,16],[-9,-25],[0,-17],[5,-43],[-2,-47],[0,-39],[-7,-118],[0,-30],[-5,-6],[-2,-38],[-2,28],[7,37],[-5,4],[-7,-9],[-10,8],[-7,-63],[2,-118],[0,-61],[9,-111],[7,-171],[6,-222],[0,-21],[5,-123],[2,-145],[4,-41],[0,-44],[14,-136],[4,-25],[-2,70],[4,4],[23,-8],[8,-18],[3,-26],[2,-47],[4,-22],[18,24],[2,22],[11,10],[12,-21],[11,0],[6,32],[0,31],[5,6],[2,33],[4,-11],[-8,-35],[-3,-49],[-8,-20],[-16,-9],[-2,17],[-20,-48],[0,-60],[-5,12],[0,29],[-11,-2],[-9,20],[-2,32],[-7,-1],[-13,-78],[-6,-23],[-9,-47],[4,-31],[-7,-29],[0,-57],[2,-25],[2,-76],[5,-72],[0,-16],[9,-87],[2,-62],[9,-54],[-2,16],[18,-65],[4,7],[7,-22],[11,-69],[9,-74],[9,-52],[16,-61],[8,-53],[9,-21],[13,-57],[7,-11],[13,-3],[14,-25],[9,-22],[13,9],[3,21],[10,13],[1,18],[6,-17],[5,12],[4,-12],[7,21],[4,38],[7,6],[13,29],[0,28],[5,11],[9,-11],[11,34],[-2,-43],[-5,-11],[-13,7],[-3,-27],[-4,-15],[-13,-8],[-5,-9],[0,-26],[-9,-33],[-6,9],[-11,-4],[-5,-10],[-5,-23],[-8,-16],[-14,-12],[-6,12],[-5,18],[-15,17],[-7,-14],[0,-78],[2,-27],[4,-24],[3,4],[7,-74],[2,-48],[-3,-57],[0,-27],[9,-35],[5,-30],[-5,-24],[2,-59],[1,-29],[9,-26],[13,-18],[2,-38],[5,-27],[6,-4],[-4,-12],[6,-57],[-2,-26],[-4,-17],[0,-31],[4,-60],[0,-22],[2,-19],[11,-26],[5,-44],[5,-28],[4,-48],[13,39],[5,8],[13,-4],[4,-10],[1,-23],[-3,-63],[9,-17],[7,0],[-5,-13],[-6,0],[-7,13],[0,43],[4,33],[-2,26],[-18,0],[-4,-9],[-4,-30],[-5,-8],[-6,8],[-5,67],[-7,44],[-9,17],[-4,18],[-4,33],[-3,73],[3,83],[-2,23],[-9,53],[-7,0],[-9,19],[-2,16],[-9,23],[-7,36],[-4,44],[0,52],[-7,58],[-13,46],[-11,19],[-5,-1],[-5,27],[-19,26],[-12,-2],[-6,9],[-9,34],[-20,59],[-16,13],[-13,30],[-5,40],[-6,7],[-36,49],[-6,15],[-21,62],[-17,39],[-14,23],[-6,18],[-27,47],[-2,11],[-29,42],[-14,4],[-13,-14],[-4,-21],[-5,-6],[-9,-25],[-9,-51],[1,-22],[-7,-118],[-7,-45],[-13,-50],[-9,-15],[-18,-16],[-9,-21],[-4,-22],[0,-27],[4,-6],[-2,-43],[4,-20],[3,9],[8,-30],[2,-111],[3,-20],[-2,-56],[0,-23],[15,-49],[5,-7],[-5,-8],[0,-52],[-7,67],[-2,-2],[0,-35],[-6,-13],[0,-17],[20,-50],[13,-31],[4,0],[21,41],[13,9],[15,4],[12,24],[2,27],[9,47],[6,36],[7,29],[-5,33],[-2,29],[5,26],[9,30],[0,24],[11,29],[0,-14],[-7,-17],[0,-33],[4,-5],[5,-52],[4,1],[7,-33],[-7,2],[-8,35],[-7,39],[-4,-17],[-1,-57],[1,-17],[0,-31],[-7,-31],[-3,-45],[-8,-32],[0,-11],[-7,-34],[-7,-19],[-13,-15],[-20,5],[-4,-6],[-7,-33],[-16,-22],[-2,-13],[-7,7],[-6,-33],[-12,-36],[-8,-51],[2,-41],[-2,-16],[-11,-8],[0,-54],[4,-20],[0,-11],[-7,32],[2,69],[10,13],[-3,44],[7,20],[4,40],[13,48],[0,19],[-10,39],[-14,11],[-6,37],[2,34],[-3,26],[-11,52],[-9,68],[-2,54],[-9,22],[-13,56],[-9,17],[-9,-17],[-2,-14],[9,-75],[0,-28],[-9,-10],[-2,-51],[-3,-14],[-6,-1],[9,-21],[4,14],[7,-8],[-3,-22],[1,-19],[-5,-3],[0,29],[-4,-3],[-5,16],[-6,-1],[-5,16],[14,25],[0,40],[4,16],[7,6],[-3,45],[-4,28],[-2,43],[2,16],[0,52],[-6,81],[6,78],[0,21],[-6,59],[-5,24],[-7,12],[-9,-3],[-4,-30],[-3,-61],[3,-18],[16,-5],[4,-9],[4,-33],[-2,-31],[-4,-13],[-9,4],[-16,31],[-15,39],[-10,4],[-8,-26],[-5,-122],[-4,-6],[-9,17]],[[5588,35555],[2,-56],[-4,-3],[0,49],[-7,4],[-2,17],[4,35],[5,13],[2,-15],[2,-31],[4,-12],[5,6],[2,87],[11,54],[10,3],[17,-27],[9,-28],[5,1],[4,17],[-2,14],[-9,1],[-5,8],[-2,43],[2,36],[0,55],[11,52],[5,58],[0,24],[4,36],[0,34],[7,86],[7,62],[2,-7]],[[5677,36171],[0,36],[2,70],[0,24],[4,29],[5,6],[0,-22],[9,17],[0,13],[-20,135],[-6,15],[-7,0],[0,13],[6,14],[-11,27],[-18,13],[-13,-16],[-15,-31],[-14,-14],[-4,-17],[-3,-40],[7,27],[7,-8],[-2,-23],[4,-10],[-5,-15],[1,17],[-7,24],[-2,-13],[-5,-45],[4,-13],[-2,-33],[-6,28],[-3,-37],[-8,-50],[2,26],[-16,-126],[-15,-143],[-21,-165],[-8,-49],[-3,-44],[-11,-64],[-15,-79],[-13,-55],[11,26],[-11,-33],[-3,0],[-9,-24],[0,-30],[-4,-5],[-2,22],[2,11],[-11,-9],[0,15],[-9,-15],[-7,-3],[4,-27],[14,-94],[-2,-30],[-7,-52],[0,-10],[-9,-4],[-27,25],[5,30],[-4,24],[2,17],[-9,47],[0,23],[6,16],[-2,27],[-6,22],[0,-39],[-7,-5],[-4,24],[4,32],[2,51],[-11,28],[-2,-9],[-5,14],[0,13],[-13,39],[-5,-44],[-9,-45],[-2,-29],[-4,1],[0,-28],[-4,-7],[2,-52],[-7,-46],[-11,-9],[-5,2],[-8,21],[0,39],[-7,-17],[-11,4],[2,-36],[0,-97],[4,-25],[-6,16],[-2,32],[-7,-3],[-9,14],[-2,35],[-4,0],[0,-44],[-3,-23],[3,-11],[-7,-57],[-3,25],[-6,-30],[-5,18],[-2,-17],[9,-50],[0,-11],[9,-1],[2,-31],[-7,-72],[-15,-66],[7,-5],[-7,-38],[-7,8],[-6,34],[-14,41],[-6,8],[-7,26],[-16,39],[-2,22],[-7,15],[-11,37],[-15,40],[-29,124],[-5,35],[-6,54],[-5,84],[0,-55],[-7,-45]],[[5098,35490],[5,-2],[-5,-19],[-15,-20],[-4,26],[-14,-2],[-9,56],[-13,33],[-9,43],[-11,14],[-5,26],[-2,-10],[-9,16],[-2,35],[-5,-21],[-19,8],[-1,-18],[-6,-10],[2,-26],[-7,20],[0,34],[5,23],[18,-17],[8,5],[-26,30],[-2,28],[-5,14],[-4,30],[-5,15],[-7,51],[0,80],[1,8],[17,-39],[2,18],[-24,47],[-9,8],[-29,49],[-4,17],[-2,33],[-3,11],[-6,-9],[-16,20],[-4,22],[-7,17],[-2,45],[-7,-2],[-2,11],[-13,13],[-1,-15],[3,-11],[0,-23],[6,-18],[3,5],[0,-55],[2,-28],[-5,-22],[0,-17],[-6,-20],[-2,54],[6,15],[-4,12],[-7,-35],[0,19],[7,32],[2,37],[-2,0],[-3,-35],[-6,-38],[-9,-28],[-4,9],[-9,-12],[-9,-1],[-2,-9],[-7,6],[-3,13],[-8,-15],[-9,15],[-11,-4],[-7,15],[-11,-22],[-7,-7],[-7,-13],[-4,-24],[13,-19],[2,-17],[16,13],[4,-33],[9,10],[7,-22],[7,32],[7,-22],[-3,61],[12,-5],[8,-13],[11,-56],[-2,-32],[-6,-14],[0,-24],[8,-31],[9,-21],[7,-57],[9,24],[14,-19],[6,-39],[2,-26],[3,-3],[4,-28],[-7,-17],[0,-22],[-9,-8],[-8,21],[-5,39],[-4,22],[0,35],[-3,3],[5,-92],[0,-59],[-7,-83],[-2,-40],[0,-84],[2,-29],[0,-43],[-5,-73],[-11,-57],[-2,-30],[3,-35],[4,-4],[-2,60],[6,14],[20,-26],[11,-36],[25,-61],[5,-19],[-1,-39],[1,-32],[15,24],[4,-13],[0,-31],[-6,31],[-2,-13]],[[4903,34943],[-11,-18],[-9,-38],[-29,56],[-7,6],[-7,-17],[-11,-9],[-18,56],[-2,29],[3,28],[11,8],[2,12],[-11,-4],[-9,-42],[-7,-52],[-16,-91],[2,-10],[5,36],[2,-27],[3,-17],[-3,-8],[-9,6],[-6,-54],[-3,-66],[-4,-43],[-9,-105],[9,-58],[7,-69],[0,28],[-4,43],[-9,51],[0,14],[8,92],[5,-26],[13,-28],[4,-35],[-8,-3],[-1,-24],[3,-23],[4,-5],[-4,-17],[2,-81],[0,-67],[2,-48],[12,-33],[4,2],[9,-77],[9,39],[-3,-28],[5,-31],[7,-80],[4,-18],[-2,31],[13,0],[7,-26],[2,-25],[0,-25],[-6,-55],[-7,-56],[-5,-31],[-13,-65],[-2,-40],[-11,-61],[-3,-44],[0,-40],[-4,-41],[2,-41],[-9,-56],[-11,-127],[-2,-12],[0,-22],[-9,-49],[-5,-8],[-15,-91],[-7,-55],[0,-23],[-6,-72],[4,-29],[-2,-24],[-7,-39],[-4,-5],[-9,-48],[-3,-31],[-6,-59],[0,-35],[-2,-15],[-3,-39],[-2,-63],[9,-57],[0,-36],[4,-20],[1,-39],[-18,-87],[4,2],[7,-17],[5,-20],[6,0],[4,-20],[0,-34],[-4,-26],[11,4],[-6,-20],[-9,9],[-2,16],[6,10],[2,20],[-4,26],[-9,9],[-4,19],[-10,-17],[-6,-26],[2,-24],[5,-13],[0,-20],[-3,-23],[0,25],[-9,57],[5,24],[-2,7],[-7,-26],[-5,0],[-8,-61],[-11,-38],[-12,-36],[-6,-31],[2,-43],[13,-30],[9,-46],[4,-28],[12,-51],[6,-187],[14,-100],[7,-17],[0,-50],[4,-63],[5,-6],[-7,-5],[0,-48],[9,-22],[4,-34],[18,-81],[2,-11],[-7,-29],[0,8],[-22,24],[-11,28],[-5,37],[-4,30],[0,26],[-4,31],[-5,89],[-11,91],[0,50],[-6,13],[0,39],[-3,42],[-11,48],[-5,-9],[0,-52],[-2,-13],[-2,45],[2,44],[7,28],[-4,9],[8,22],[-8,36],[-7,11],[2,-51],[-4,26],[0,-23],[-7,18],[-4,26],[4,15],[-2,17],[-9,9],[-5,39],[-4,4],[-7,-52],[3,70],[-7,-13],[4,26],[7,9],[-5,42],[5,-9],[2,26],[5,6],[0,33],[-5,2],[3,19],[-5,24],[-5,2],[0,-45],[-2,34],[-4,-4],[-7,16],[-4,-18],[-9,7],[-2,-22],[-3,8],[5,18],[6,-2],[3,17],[-4,28],[1,7],[3,-26],[9,-4],[9,8],[6,50],[12,30],[17,37],[2,27],[-8,61],[-7,49],[2,138],[4,62],[0,41],[-6,28],[-2,44],[-14,48],[-6,-2],[-12,18],[-15,-12],[-11,-21],[-7,-22],[2,-28],[-4,-5],[-5,37],[7,26],[0,31],[-9,61],[-35,58],[-30,81],[-35,63],[-11,26],[-11,11],[-20,12],[-18,36],[-29,21],[-31,22],[-29,13],[-25,2],[-17,-4],[-12,-13],[-20,-4],[-13,-22],[-6,0],[-7,-20],[-9,-4],[-16,-31],[-13,-65],[-4,-41],[-3,-30],[-4,-48],[-2,-43],[0,-34],[6,-31],[18,-5],[11,-11],[-2,26],[9,46],[4,-5],[-2,-41],[11,-2],[2,-16],[-4,-10],[-2,22],[-9,0],[2,43],[-9,-35],[3,-33],[-12,-5],[-2,-30],[7,-13],[0,-15],[-11,16],[-5,-15],[-2,-22],[-11,-50],[-7,-5],[-7,-23],[-15,-31],[-9,-4],[-5,-22],[-4,-31],[-4,5],[-9,-65],[-23,-156],[3,-14],[7,5],[-9,-24],[-7,-35],[-11,-18],[-11,-37],[-11,-47],[-5,-46],[2,-20],[9,5],[-9,-22],[5,-43],[11,15],[-4,-20],[-7,-4],[-5,39],[-4,0],[-2,-30],[4,-44],[5,-37],[2,-4],[0,33],[4,-9],[-2,-31],[0,-76],[2,-21],[9,0],[13,-11],[3,-26],[-9,-103],[-5,-26],[0,-23],[5,-14],[9,10],[11,-31],[15,-15],[2,-11],[1,-35],[-1,-13],[0,-34],[-8,-35],[-7,-1],[-11,-32],[2,-15],[5,-20],[15,-5],[9,25],[7,-7],[6,-19],[0,-24],[5,-20],[9,-63],[9,-39],[4,-55],[13,-25],[14,12],[15,-30],[5,-57],[2,-16],[-2,-38],[11,-43],[6,-50],[1,-22],[6,-18],[13,-16],[14,-31],[6,19],[7,2],[11,16],[2,21],[-11,-10],[1,15],[6,15],[5,-11],[9,13],[2,13],[2,44],[-5,21],[-4,33],[-2,54],[6,15],[3,37],[-9,27],[-2,23],[0,49],[6,14],[-2,29],[4,24],[0,34],[12,13],[13,-4],[14,-28],[10,-37],[30,-106],[11,-46],[11,-74],[4,-33],[-2,-35],[-13,-62],[11,12],[6,-6],[0,-26],[-13,-4],[-6,6],[-3,-48],[-9,-50],[-9,-21],[0,-26],[9,-16],[4,-21],[3,7],[4,-29],[16,13],[2,-11],[5,24],[8,-37],[-6,-26],[-25,-26],[-8,5],[-3,14],[-4,-28],[-11,9],[2,21],[9,1],[0,9],[-9,23],[-2,33],[4,26],[0,32],[-11,-21],[-20,-29],[-2,1],[-27,-46],[-2,7],[-14,14],[-6,-15],[-7,7],[-16,-26],[1,-9],[8,4],[5,-14],[6,-40],[5,2],[11,-36],[9,8],[5,17],[2,22],[-3,24],[5,-15],[9,19],[7,-2],[4,-19],[4,19],[2,-19],[5,-14],[13,-12],[9,-25],[3,-26],[-12,-30],[-31,-20],[-4,-10],[-9,-2],[-13,-11],[9,-22],[-3,-24],[0,-37],[5,28],[11,-14],[0,-12],[7,-8],[2,-27],[-2,-26],[-18,-6],[-5,32],[-2,29],[-9,-18],[-2,9],[5,19],[1,29],[-4,2],[0,26],[-4,-13],[-16,56],[-2,31],[-7,24],[-2,57],[-5,4],[-4,41],[-9,-6],[-11,8],[-9,-11],[-4,-11],[-9,-2],[4,-28],[7,-11],[7,-22],[9,5],[6,-7],[4,-17],[5,-39],[-5,-65],[3,-14],[0,-32],[-9,-39],[4,-15],[-2,-46],[-4,-13],[2,-61],[-2,-24],[-9,6],[2,29],[-5,-4],[-10,8],[-3,17],[13,37],[5,-19],[2,67],[-6,5],[-1,15],[-2,-43],[-18,25],[3,29],[7,4],[-3,26],[0,13],[7,4],[2,-15],[7,0],[0,-34],[7,-3],[4,26],[-7,14],[0,17],[-18,9],[-6,10],[2,-19],[-6,-20],[-5,5],[-2,19],[-7,9],[6,20],[3,-16],[2,20],[-4,13],[0,37],[6,37],[9,9],[-2,49],[-11,14],[-3,-9],[-10,-2],[-14,22],[-6,17],[-7,-11],[-16,-7],[-9,10],[-6,-3],[-25,15],[-18,27],[-9,-33],[-4,-9],[-4,-24],[4,-24],[4,-41],[-8,-57],[-5,-11],[-11,-8],[-11,15],[-5,-41],[-4,7],[4,38],[-13,22],[-9,27],[0,21],[-7,-2],[-2,-24],[3,-24],[-5,-13],[-2,-33],[-7,-21],[-11,6],[-5,-10],[-8,8],[-5,26],[-11,22],[-7,47],[-22,-24],[-9,-23],[-7,-35],[-2,-44],[-6,-43],[0,-15],[9,-37],[6,-15],[5,-31],[7,-4],[4,8],[9,-2],[9,7],[18,-32],[2,13],[0,38],[4,-39],[-6,-43],[0,-61],[10,-24],[-10,-11],[4,-32],[11,30],[9,-4],[2,41],[14,-89],[9,8],[4,-12],[0,-38],[-4,-47],[2,-11],[6,37],[16,-2],[7,8],[4,-10],[-2,-24],[-14,-46],[0,-21],[11,1],[10,-30],[4,2],[5,-22],[0,-43],[2,-33],[-2,-8],[-3,28],[0,48],[-6,19],[-7,9],[-5,22],[-11,-3],[-2,9],[4,28],[12,42],[0,24],[-14,-13],[-7,6],[-10,-57],[-3,33],[0,37],[3,41],[-3,5],[-15,-7],[-7,24],[-9,-32],[-22,2],[-5,13],[0,61],[3,15],[-3,39],[-6,11],[-16,-31],[-11,-32],[-2,-20],[4,-17],[0,-31],[5,3],[-2,41],[2,-7],[2,-43],[-5,-11],[-6,29],[-5,-3],[-6,-26],[-3,-20],[3,-29],[8,-18],[7,-33],[0,-20],[-2,-41],[5,-39],[11,-22],[-1,-32],[-10,-11],[-5,-78],[-2,28],[7,61],[8,9],[0,15],[-18,30],[-4,52],[5,38],[-9,26],[-3,-38],[-2,11],[5,27],[-5,4],[-13,-13],[-5,-18],[-4,-24],[-7,-28],[-13,-8],[-5,-13],[-2,-16],[5,-19],[11,-94],[9,-35],[6,-6],[7,24],[4,-9],[5,-22],[-5,-58],[3,-81],[-2,-23],[-5,1],[-7,27],[-4,0],[4,-27],[9,-49],[7,-17],[9,-14],[0,-31],[-5,-17],[0,-32],[7,-31],[2,-41],[5,0],[9,20],[11,-22],[2,-20],[-2,-58],[9,6],[6,-33],[5,-6],[11,-43],[18,-5],[4,-7],[5,11],[4,-8],[2,-22],[-2,-46],[5,-21],[6,4],[13,-28],[5,-66],[-5,-24],[-2,-23],[14,-22],[4,-15],[-4,-50],[-18,-24],[-16,-52],[-9,-18],[-11,-39],[0,16],[5,30],[18,39],[8,33],[16,28],[-4,21],[0,26],[-9,14],[2,23],[-7,-10],[-4,78],[-11,58],[-3,46],[-8,11],[-7,-11],[-7,11],[-6,28],[-9,-6],[-9,26],[2,48],[-4,13],[-7,-11],[-5,4],[-4,24],[9,50],[-5,28],[-6,3],[-9,-26],[-7,-9],[-5,19],[1,27],[-5,36],[-4,-24],[-2,27],[6,10],[-2,18],[6,58],[-13,20],[-9,30],[0,27],[-8,26],[2,30],[8,6],[7,-38],[2,4],[-2,65],[-4,13],[0,22],[4,33],[-2,19],[-11,-13],[-7,6],[-2,23],[-9,32],[-4,43],[-11,29],[-3,26],[5,50],[6,15],[7,9],[-9,104],[2,6],[-4,105],[-15,4],[-3,-32],[-7,32],[-13,-19],[-13,-9],[-9,-26],[-4,-35],[-1,-42],[1,-21],[-7,-54],[0,-46],[4,-18],[-4,-26],[-5,-65],[2,-39],[10,-17],[-3,-29],[-6,3],[2,-19],[7,-10],[0,-21],[-3,-39],[-4,-3],[4,31],[-2,15],[-4,2],[0,-22],[-5,-19],[-11,8],[-11,-23],[-16,-18],[-9,13],[-4,-6],[-9,-30],[-5,-46],[-4,-74],[5,-5],[-5,-37]],[[3692,29587],[5,-19],[-3,-24],[2,-22],[-2,-13],[5,-8],[-2,-13],[6,-18],[3,9],[-1,-24],[14,-26],[4,4],[0,33],[12,41],[2,-11],[0,-24],[2,-24],[-4,7],[-1,37],[-8,-33],[0,-43],[9,-61],[-3,-13],[-2,-45],[-5,-14],[1,-12],[-5,-7],[2,-13],[-6,-9],[-1,-17],[-10,2],[0,-8],[-7,-12],[-3,-23],[-15,-16],[-9,3],[-4,10],[-5,29],[-15,15],[-7,4],[-2,24],[-5,17],[3,11],[13,26],[-9,17],[-9,1],[-4,-29],[-12,-111],[-4,-78],[0,-17],[4,-42],[1,-99],[-1,-25],[5,-145],[2,-18],[2,42],[-4,98],[2,26],[-2,37],[4,17],[14,-15],[9,2],[8,-17],[16,-22],[7,-2],[11,-21],[22,-18],[11,-16],[7,0],[2,22],[7,18],[4,0],[11,-41],[-8,10],[-5,26],[-7,-26],[-2,-26],[-4,-10],[-14,-3],[-9,6],[0,-36],[-9,8],[-6,-4],[-13,-22],[-1,-41],[-8,13],[-7,-8],[0,-27],[-9,-58],[0,-22],[-11,-44],[-4,-43],[0,-26],[8,-3],[7,-16],[9,-9],[11,-29],[0,20],[9,-7],[16,4],[4,12],[16,-12],[4,5],[2,29],[3,-5],[9,-39],[2,-22],[11,-13],[17,-2],[10,9],[8,-14],[3,-19],[-12,22],[-4,-3],[2,-26],[0,-24],[-18,-74],[-8,-54],[-7,-62],[-5,-73],[-4,-74],[0,-49],[4,-27],[0,-62],[3,-46],[4,-7],[4,-61],[3,-36],[6,-1],[-2,-32],[3,-22],[10,-17],[-2,-18],[7,-48],[9,-18],[13,-114],[9,-65],[9,-39],[4,-29],[10,-56],[4,-35],[13,-69],[2,-28],[3,15],[0,26],[4,15],[-2,-42],[6,-32],[1,-35],[4,-63],[5,-48],[10,-56],[7,-28],[5,-35],[22,-108],[18,-66],[6,-8],[16,14],[4,12],[14,6],[11,-11],[9,-2],[0,32],[-9,70],[2,37],[3,20],[6,13],[22,-5],[16,63],[0,15],[29,7],[0,19],[-16,5],[-6,78],[-12,41],[-2,18],[-11,-13],[11,26],[16,-50],[2,-18],[5,-73],[24,-3],[-7,-50],[5,-41],[-5,-44],[2,44],[-4,11],[-2,19],[-14,-10],[-8,4],[0,-57],[2,-15],[4,-65],[12,2],[0,-12],[-9,-16],[-7,15],[0,27],[-7,65],[-2,9],[-16,-57],[-18,37],[-6,-9],[2,-44],[14,-78],[0,-39],[-10,-9],[-8,7],[-3,-11],[-2,-35],[3,-28],[17,-41],[5,-2],[15,-33],[2,-10],[-6,-3],[6,-20],[12,-19],[8,-35],[12,-84],[9,-42],[6,-39],[7,-33],[2,-19],[0,-42],[2,-21],[7,0],[11,10],[13,74],[9,20],[25,5],[17,13],[14,43],[9,45],[11,65],[15,121],[7,49],[13,72],[5,39],[2,37],[0,-33],[7,53],[0,63],[4,-1],[0,-73],[9,69],[9,28],[0,16],[7,7],[-9,-59],[-4,-129],[-3,-28],[-9,-61],[-9,-33],[-2,-86],[-4,-46],[6,-94],[0,-60],[-2,-50],[0,-29],[-8,-80],[-5,-22],[-24,-82],[-10,-63],[-1,-26],[1,-26],[-1,-57],[2,-54],[6,-22],[11,-20],[14,-8],[4,-11],[7,-3],[6,42],[9,16],[3,-23],[9,-11],[2,-15],[-3,-21],[9,-22],[2,19],[5,5],[2,-15],[-4,-30],[2,-35],[7,0],[2,-18],[-7,-43],[-2,-29],[4,-28],[5,-54],[9,-27],[15,-23],[11,-7],[-4,-6],[16,-57],[2,-47],[7,-48],[17,-33],[7,3],[0,26],[7,27],[7,3],[2,30],[9,17],[8,42],[-8,28],[6,5],[3,34],[15,76],[2,-22],[-6,-17],[-3,-23],[0,-23],[7,-17],[18,-7],[2,9],[4,-15],[11,-11],[18,-6],[18,-20],[9,-45],[16,-92],[15,-28],[14,-66],[7,-43],[-3,-58],[4,-38],[16,-36],[14,4],[10,-17],[7,-24],[13,-79],[12,-65],[9,-74],[13,-65],[9,-70],[0,-15],[7,-15],[2,-44],[6,-17],[-6,-2],[7,-54],[4,-18],[9,-67],[18,-59],[6,-26],[0,-19],[-2,-31],[-4,-8],[2,-26],[-7,-57],[13,9],[3,-11],[7,17],[2,29],[4,6],[4,-19],[5,-5],[4,13],[0,15],[9,20],[7,6],[7,-6],[0,37],[2,-5],[5,24],[8,14],[2,-7],[-4,34],[-4,-1],[-2,41],[-7,-16],[-2,13],[2,35],[-5,15],[-18,27],[14,10],[13,-16],[7,0],[2,-33],[7,-2],[2,22],[7,19],[4,-48],[5,20],[9,-5],[4,-17],[13,15],[5,-4],[4,21],[5,-21],[8,-7],[3,-17],[8,2],[5,-22],[9,-4],[2,8],[22,22],[1,17],[19,-14],[0,-29],[3,-15],[8,9],[3,-12],[0,29],[9,6],[15,-34],[3,2],[8,-11],[9,8],[23,-40],[11,-9],[8,-37],[7,-7],[0,-58],[9,-20],[0,-30],[-4,-13],[9,2],[-1,-11],[10,-33],[6,-39],[5,-106],[8,26],[3,-7],[11,-52],[9,-57],[9,-95],[9,-48],[11,-72],[9,-80],[0,-28],[0,-96],[-3,-94],[-8,-79],[-1,-57],[-8,-85],[-12,-109],[-2,-13],[-7,-106],[0,-16],[-6,-58],[-4,-94],[0,-43],[2,-48],[-5,-52],[2,-57],[-2,-74],[3,-45],[-7,-85],[-16,-72],[-11,-69],[-4,-11],[-40,-207],[-2,-30],[4,6],[2,24],[4,5],[0,21],[7,-8],[5,24],[4,-9],[-7,-57],[-6,5],[0,-22],[-20,0],[-2,-39],[10,-13],[0,-18],[3,-1],[11,23],[-2,-11],[-11,-24],[-5,27],[-2,-20],[-9,-4],[-9,2],[0,32],[-20,-43],[-2,-37],[-3,24],[-15,5],[-13,53],[0,22],[-5,33],[-2,-21],[4,-33],[-4,-40],[2,-15],[5,-8],[6,-29],[3,-39],[0,-56],[-1,-46],[3,-17],[0,-39],[9,-11],[4,-27],[9,-32],[4,-7],[7,38],[11,26],[12,6],[10,24],[9,11],[12,4],[17,0],[5,4],[18,-23],[2,-29],[-2,-22],[-11,-21],[-2,26],[-5,-26],[-3,-32],[1,-5],[15,6],[11,-4],[16,-24],[7,-22],[-5,-16],[7,-40],[6,-24],[7,-6],[14,-55],[4,-24],[0,-93],[-2,-31],[2,-6],[2,-37],[-2,-79],[2,-21],[-6,-39],[-9,-65],[0,-33],[-5,-13],[-4,-33],[-2,-54],[-7,-52],[9,-21],[2,27],[4,-19],[-4,-26],[-4,-2],[-7,21],[-2,24],[-5,2],[-9,-17],[-9,-26],[3,0],[-7,-37],[-2,9],[-18,-64],[-7,-32],[-9,-46],[-4,-41],[0,-21],[6,-18],[5,8],[4,29],[7,17],[9,-2],[9,-28],[2,-26],[9,-9],[2,-39],[-4,-35],[4,-19],[5,-7],[7,-28],[0,-37],[-7,-41],[8,-30],[-2,-39],[-8,-74],[-5,-12],[0,-80],[-2,-24],[-2,13],[2,11],[0,79],[6,36],[0,33],[5,15],[2,41],[-6,28],[4,27],[-2,15],[4,39],[-4,19],[-5,-1],[-6,17],[0,17],[2,70],[-7,-7],[-4,9]],[[5052,20405],[-5,-9],[-2,33],[-4,26],[-5,-4],[-7,-33],[-15,-11],[-7,6],[-4,22],[-3,33],[0,41],[-4,30],[-15,60],[-7,23],[-5,46],[-6,31],[0,19],[-7,34],[-2,34],[0,40],[-4,20],[-9,4],[0,20],[-5,11],[-5,-5],[-11,5],[-9,15],[-2,39],[-6,-15],[2,-29],[-4,-13],[-12,-13],[-9,-17],[-15,-65],[-3,-31],[-4,-8],[-7,6],[-9,-8],[-2,-16],[5,-32],[0,-24],[-7,2],[0,43],[-4,27],[4,15],[11,8],[5,40],[11,17],[-7,15],[-20,24],[-22,39],[-11,35],[-7,50],[-2,20],[-9,0],[9,10],[4,-15],[0,20],[7,-20],[22,-75],[14,-31],[-3,26],[-20,58],[-9,39],[-6,14],[-11,13],[-25,17],[-2,-22],[-7,-15],[-4,-24],[-9,18],[2,15],[5,-11],[11,26],[0,20],[-18,2],[-18,26],[-4,22],[-1,21],[-6,11],[-2,22],[-3,83],[-2,12],[-9,10],[0,14],[-9,9],[-9,25],[-6,30],[-13,23],[-3,24],[-7,13],[-6,29],[-9,26],[-11,26],[-4,13],[-10,85],[-2,39],[-7,32],[3,39],[-2,44],[-3,55],[-4,27],[-2,29],[4,26],[-4,26],[-7,13],[-4,-7],[-3,26],[-8,22],[-3,0],[-6,52],[-11,42],[-3,-29],[-2,-78],[2,-26],[0,-84],[-6,-31],[-3,-30],[2,-3],[-4,-36],[-9,-14],[5,-21],[-2,-40],[2,-12],[7,-9],[0,-18],[-5,-30],[-18,-52],[-7,-74],[-10,-13],[-19,15],[7,-19],[2,-22],[-2,-40],[-4,-34],[-5,-20],[-11,-28],[-4,1],[-9,-27],[-2,-20],[4,-6],[-2,-29],[4,-31],[-2,-21],[-9,7],[-7,-2],[-8,20],[-3,15],[-6,2],[0,28],[-9,26],[-5,46],[-11,21],[-4,-30],[0,48],[7,35],[10,30],[5,37],[13,11],[7,15],[7,-10],[6,69],[5,21],[6,7],[12,-30],[4,21],[9,-11],[-4,50],[4,42],[-13,21],[-5,18],[-2,39],[2,43],[-4,24],[0,42],[-12,32],[-6,-2],[-7,-26],[0,-20],[-9,-41],[0,-28],[-6,-44],[-1,-36],[-8,-20],[-2,-19],[-5,-14],[-9,-6],[0,-11],[-4,-28],[-7,-15],[-9,-37],[-11,-27],[-25,-48],[-17,-28],[-14,-11],[-8,5],[-12,-2],[-13,-17],[-16,-7],[-13,6],[-9,37],[-7,-13],[-10,31],[-30,-24],[-18,-8],[-17,-3],[-22,6],[-12,7],[-37,58],[-11,23],[-7,21],[-9,17],[-31,76],[-20,51],[-3,-17],[7,-3],[7,-24],[9,-15],[20,-50],[11,-42],[4,9],[3,-30],[-18,43],[-2,16],[-14,21],[-2,-28],[-11,-9],[-13,9],[-7,9],[-9,30],[-11,24],[-7,41],[-7,7],[-4,-9],[4,-41],[-4,-66],[-4,-26],[4,63],[0,24],[-11,7],[-2,19],[8,-6],[5,44],[13,21],[0,20],[-13,0],[-4,30],[22,-10],[9,-27],[7,-6],[4,-18],[6,5],[-17,41],[-18,22],[-9,4],[-22,-4],[-5,19],[-6,-4],[-16,-33],[-7,-8],[-31,-52],[-11,-9],[-22,-39],[-25,-33],[-26,-20],[-40,-51],[-12,-11],[-17,-22],[-16,-5],[-9,2],[-13,-23],[-62,-61],[-9,-13],[-9,-2],[-13,-22],[-9,-26],[-9,-37],[-25,-85],[-6,-28],[-12,-118],[-2,-43],[-7,-71],[3,-44],[-2,-76],[0,-54],[8,-20],[9,-9],[5,-50],[0,5],[-5,45],[3,3],[8,-18],[0,-65],[-4,-11],[-4,-76],[6,-9],[0,-37],[-2,2],[-7,-19],[-4,-22],[6,-23],[-4,-23],[-9,11],[-2,-23],[-7,-23],[2,-13],[-6,-8],[2,-34],[-4,-8],[-1,16],[-8,0],[15,50],[7,37],[11,61],[0,17],[-11,-67],[-9,-40],[-11,-41],[-20,-69],[-7,-9],[-15,-48],[0,-20],[-5,-21],[4,-15],[1,-35],[-1,-48],[-10,-50],[-16,-41],[-9,-24],[-11,-39],[-7,-40],[-9,-73],[-6,-37],[-5,-48],[5,-102],[4,-65],[5,-70],[11,-78],[4,-11],[2,43],[-2,15],[0,34],[-13,38],[-5,37],[-8,122],[2,28],[6,22],[-2,37],[-2,4],[9,61],[4,-2],[-4,-46],[7,4],[11,25],[0,35],[13,-9],[9,23],[0,-10],[9,13],[15,-2],[20,-24],[9,-16],[3,20],[4,-15],[-2,-24],[8,-17],[1,-27],[-14,18],[-18,37],[3,-20],[28,-41],[7,-28],[9,-50],[0,-35],[-2,-15],[-2,-81],[6,-33],[16,-41],[7,-26],[4,-43],[-2,37],[6,19],[18,0],[5,-13],[9,13],[8,2],[9,27],[3,15],[9,24],[15,4],[7,-11],[7,57],[-5,36],[2,37],[-2,20],[5,-17],[8,15],[7,30],[2,29],[7,-16],[0,18],[-4,35],[4,26],[4,-2],[7,34],[7,79],[7,36],[6,16],[18,11],[9,2],[-4,34],[2,14],[9,15],[13,8],[2,-35],[9,-27],[15,-83],[30,-68],[0,-40],[6,21],[3,-4],[11,-51],[-1,-24],[-8,-25],[6,2],[3,-42],[-5,-34],[7,-9],[6,26],[5,11],[-2,26],[8,-4],[3,-18],[-7,7],[-4,-55],[-9,-11],[-5,7],[-2,-26],[-7,28],[-2,20],[2,71],[-2,20],[-20,11],[7,-21],[-7,-25],[-4,13],[-11,-21],[-9,13],[9,6],[0,17],[-9,3],[-7,13],[-7,-5],[-9,13],[-2,-15],[-11,-54],[0,9],[-13,-27],[-9,18],[-7,-18],[-9,-1],[-4,15],[0,46],[0,27],[7,18],[4,20],[-2,22],[-3,-1],[-8,-30],[-9,-11],[-2,-50],[-3,-11],[-6,13],[-14,-61],[-9,-19],[5,-55],[-2,-19],[-5,-26],[0,-33],[-4,-32],[-7,-5],[-2,-32],[-11,-31],[-3,-17],[-22,-32],[-15,-27],[-5,0],[-7,-18],[-6,-2],[-9,13],[-2,27],[8,43],[-2,22],[-8,-66],[-16,-56],[-16,-39],[-11,-13],[-13,24],[-2,-20],[2,-28],[-9,-15],[-7,11],[-4,-14],[-13,-16],[-18,-9],[-1,-9],[-22,-26],[-9,13],[-6,-15],[-9,0],[-4,8],[19,38],[5,-10],[4,18],[-6,-4],[8,23],[3,-13],[6,11],[16,-12],[0,14],[-13,5],[6,17],[14,18],[18,13],[17,-26],[-2,34],[-7,11],[-17,-8],[-9,-17],[-11,-12],[-9,-2],[-9,-15],[-31,-71],[-25,-40],[-20,-15],[-11,2],[-20,-22],[-4,4],[-14,-3],[-7,-10],[-11,1],[-17,-7],[-20,-35],[-7,-30],[-9,-18],[-16,-53],[-8,-16],[-1,-35],[-6,-23],[-14,-44],[-8,-35],[-20,-37],[-14,-32],[-2,-31],[-16,-37],[-2,0],[-18,-24],[-4,2],[-11,-23],[-5,-5],[-6,-20],[-7,-43],[0,-52],[-9,-48],[-2,-26],[2,-46],[5,-72],[2,-25],[7,-31],[15,-48],[27,-75],[31,-59],[-13,56],[0,35],[-5,11],[-2,-13],[-11,23],[2,27],[-24,46],[-7,32],[-2,34],[-7,40],[2,23],[-4,40],[11,31],[9,-5],[13,-42],[9,0],[-2,-26],[4,-1],[13,-44],[3,-20],[4,-4],[7,-22],[6,-24],[1,-43],[13,9],[0,10],[9,-2],[-2,-20],[9,-2],[10,7],[18,-5],[14,-34],[11,-39],[-2,-28],[4,-46],[-9,-9],[-2,-17],[-7,7],[-2,-12],[0,-41],[-5,-11],[-2,-15],[9,-7],[3,-13],[9,-4],[4,18],[13,-9],[2,-11],[-4,-18],[-7,-3],[-6,-16],[-9,4],[0,-23],[18,-46],[20,-57],[20,-63],[17,-54],[3,9],[-5,11],[-2,17],[7,26],[6,4],[5,20],[-2,28],[9,13],[0,28],[8,20],[7,-35],[7,-20],[8,-10],[18,-39],[5,-53],[9,-24],[6,1],[5,-44],[4,-9],[-2,22],[9,-26],[5,0],[2,-22],[-5,-30],[-11,-33],[-4,-25],[-9,4],[-5,-9],[2,-24],[7,-2],[9,-48],[9,-15],[11,-32],[9,-13],[0,14],[-13,33],[-7,32],[5,25],[17,1],[5,-13],[0,-36],[-7,-5],[-4,-12],[8,0],[7,-52],[-4,-12],[4,-28],[14,-63],[13,-35],[6,-35],[20,-53],[7,-12],[20,-49],[18,-53],[9,-6],[7,-25],[6,-12],[18,-50],[11,-18],[7,-4],[22,35],[7,19],[11,59],[4,8],[-4,13],[-11,-60],[-3,-11],[-6,28],[2,22],[11,20],[7,38],[11,11],[7,-8],[15,4],[9,-4],[9,-13],[9,10],[4,11],[14,22],[9,5],[22,-11],[0,-13],[7,-31],[4,13],[7,-19],[0,19],[4,-17],[5,-3],[2,-34],[22,-67],[-11,-24],[-11,2],[-11,-50],[-5,-13],[-4,-22],[-11,-28],[-18,-22],[-16,7],[-4,-5],[0,-20],[-5,14],[-6,-29],[-2,-34],[0,-31],[4,-22],[7,-56],[8,-24],[7,-63],[9,-52],[7,-18],[6,-34],[12,-29],[20,-36],[20,-53],[15,-45],[7,-29],[7,-6],[9,-17],[6,-1],[14,-21],[13,6],[13,-19],[5,4],[15,-41],[7,-2],[22,17],[2,13],[-4,15],[0,35],[-2,20],[11,32],[-4,3],[2,21],[4,-26],[2,-52],[3,-28],[11,-26],[4,-16],[-2,-28],[9,-48],[4,-26],[11,-21],[11,-29],[5,-22],[18,-54],[7,-35],[6,-43],[-9,32],[-2,-13],[7,-43],[6,-2],[41,-59],[35,-43],[18,0],[11,-9],[11,-2],[5,-6],[42,-16],[9,2],[18,-6],[4,2],[27,-2],[28,11],[25,30],[18,41],[6,26],[-9,9],[-35,-50],[-31,-26],[-3,24],[-11,-24],[0,37],[7,33],[4,-11],[5,6],[7,-17],[13,33],[3,-9],[10,11],[0,69],[7,33],[0,52],[-2,41],[-7,68],[-2,30],[-11,52],[-7,26],[-6,44],[-5,78],[2,44],[3,11],[-3,15],[0,63],[-4,50],[4,25],[7,14],[0,78],[4,11],[-4,47],[-4,10],[-12,58],[-8,56],[-16,3],[-13,15],[-9,2],[-5,13],[-2,26],[-6,-11],[1,24],[-9,-17],[-10,2],[-7,29],[4,14],[16,3],[6,-16],[12,16],[8,-16],[7,20],[7,-17],[6,-35],[1,28],[-5,22],[2,22],[5,-11],[4,9],[0,-18],[3,-7],[6,-36],[2,10],[2,29],[10,152],[11,63],[6,28],[5,35],[6,28],[0,39],[7,0],[9,-24],[7,20],[11,13],[15,-35],[11,2],[12,-38],[13,-5],[9,11],[6,-13],[7,11],[13,-11],[0,19],[10,28],[19,13],[9,0],[5,14],[22,-9],[13,-16],[12,-25],[13,-37],[16,8],[6,13],[22,-17],[14,-35],[0,39],[6,29],[11,17],[3,53],[7,19],[2,26],[-5,-22],[-6,17],[0,129],[4,13],[4,36],[0,-28],[-1,-15],[-1,-72],[7,-58],[11,-13],[5,21],[6,0],[9,-19],[-13,6],[-2,-14],[17,-10],[18,-37],[7,34],[4,38],[5,18],[7,2],[10,-11],[14,-22],[11,-26],[5,-4],[10,-37],[14,-46],[2,27],[5,10],[13,0],[7,-17],[4,26],[7,9],[15,56],[14,24],[2,0],[15,24],[-4,9],[-20,-40],[2,22],[-2,18],[-7,12],[-4,29],[9,-16],[0,29],[7,-55],[6,7],[0,32],[5,16],[-1,15],[-10,59],[2,32],[6,5],[5,-24],[4,21],[5,-13],[9,3],[6,-44],[-4,-13],[-5,0],[-6,-35],[2,-26],[4,-21],[5,-54],[4,-20],[9,-57],[4,5],[3,-24],[0,-27],[4,-37],[-4,0],[-2,26],[0,22],[-11,66],[-3,10],[-2,-43],[2,-33],[25,-110],[11,-70],[4,-50],[5,-83],[6,-32],[3,-39],[8,-74],[1,-22],[11,-28],[6,-37],[5,-2],[24,15],[14,-2],[-3,15],[3,48],[4,37],[5,15],[11,13],[17,9],[20,-35],[9,-28],[7,-7],[3,28],[-5,20],[-2,63],[2,8],[-7,20],[3,15],[4,66],[-2,23],[-5,11],[2,63],[-2,15],[-9,-6],[-7,6],[-2,20],[-6,22],[-4,37],[10,19],[-4,57],[4,-5],[5,-45],[-9,-24],[-2,-20],[9,-21],[20,-16],[2,-28],[9,-34],[2,-22],[-4,-42],[6,-17],[7,-56],[2,-38],[2,-28],[-2,-24],[0,-24],[5,-30],[-5,-70],[-7,-34],[-4,-24],[-6,-26],[-12,-96],[-6,-36],[-9,-35],[-18,-22],[-40,-78],[-22,-22],[-23,-41],[-17,4],[-14,-2],[-16,2],[-24,76],[-11,26],[-13,2],[-9,9],[-3,37],[3,17],[-5,31],[0,15],[7,30],[6,-2],[-2,59],[3,22],[4,-5],[2,41],[7,9],[-11,18],[-13,-3],[0,-47],[0,-74],[-3,-40],[-7,12],[0,-35],[3,-35],[6,-70],[9,-152],[2,-76],[1,-78],[-2,-96],[-3,-34],[-9,-72],[-9,-50],[-4,-37],[-5,-16],[-13,-39],[-15,-49],[-5,-20],[-4,-87],[-3,-35],[-9,-74],[-11,-61],[-11,-36],[-13,-24],[0,-28],[4,-59],[-4,-5],[6,-19],[-8,13],[2,11],[-7,41],[0,17],[4,26],[-8,-21],[-3,-35],[-1,39],[-10,-2],[-11,-13],[-18,-2],[-8,-24],[2,-35],[-3,-83],[-17,-141],[-12,-63],[-4,-24],[0,-39],[2,-43],[5,-48],[7,-18],[9,9],[9,-15],[4,-39],[0,-41],[2,-33],[7,-18],[4,35],[0,35],[7,20],[4,6],[16,-41],[7,-42],[13,51],[0,39],[4,36],[5,44],[2,35],[9,58],[15,81],[7,63],[9,61],[15,24],[9,8],[0,53],[-8,108],[-7,41],[-4,49],[4,36],[-2,31],[2,73],[9,40],[22,128],[4,56],[10,77],[9,19],[31,117],[10,35],[16,35],[13,65],[3,5],[11,30],[5,-11],[4,9],[6,-7],[14,-32],[9,-5],[8,-19],[9,-35],[14,-17],[9,-63],[13,-61],[20,-48],[2,7],[0,65],[3,45],[6,24],[5,7],[11,-9],[22,124],[9,59],[5,0],[19,56],[18,87],[7,30],[15,13],[18,-8],[9,24],[9,0],[5,-16],[13,12],[18,-44],[15,-7],[16,0],[4,-13],[11,-10],[7,6],[12,-9],[4,-30],[2,-72],[0,-67],[2,-5],[2,-45],[-2,-37],[5,-22],[-3,-37],[2,-24],[-4,-58],[-4,-27],[-5,-65],[-18,-108],[-2,-22],[11,4],[3,-15],[-9,-31],[9,-12],[-11,-27],[11,-15],[8,13],[3,-41],[2,6],[4,-28],[-4,-6],[2,-26],[-6,6],[-3,35],[-4,0],[-4,33],[-12,-22],[-7,52],[-2,32],[3,18],[-5,-7],[-6,-25],[-5,4],[-2,-13],[-5,0],[-22,23],[-2,68],[-2,33],[-7,0],[-31,-33],[-13,-35],[-9,-47],[-9,-68],[-14,-45],[-18,-12],[-13,9],[-6,-2],[0,13],[-10,24],[-28,15],[-14,-6],[-13,69],[-2,29],[2,80],[-13,2],[0,22],[2,24],[5,15],[-7,52],[-2,-30],[-7,-29],[0,20],[6,43],[-15,55],[-13,-5],[-7,5],[-12,-13],[-4,-15],[-9,25],[-9,-12],[-6,-50],[-11,-24],[6,-13],[16,-14],[-11,-2],[-11,7],[6,-50],[-4,-17],[-13,-14],[-7,-36],[-5,-20],[-9,-15],[-13,-46],[-4,-28],[-1,-33],[-11,-49],[-8,-18],[-7,-52],[-2,2],[-5,-52],[-6,-2],[2,-31],[-3,5],[-4,-20],[4,-22],[7,-100],[-4,-50],[0,-63],[4,-9],[0,-32],[5,-13],[9,-43],[4,-79],[-4,-58],[6,-53],[16,-48],[0,-39],[5,29],[-5,-50],[6,-37],[9,10],[5,-37],[15,33],[9,29],[5,-11],[4,6],[11,-4],[3,-68],[-5,-13],[-4,-32],[-7,-31],[-4,-11],[-12,18],[-8,-76],[-12,0],[5,-42],[-7,20],[-7,-28],[-4,11],[0,37],[4,-7],[-6,50],[-11,-106],[-2,6],[-7,-50],[-13,-24],[-18,9],[0,11],[-9,4],[-7,-4],[-9,19],[-4,-4],[-7,15],[-27,30],[-18,40],[-13,39],[0,13],[-36,2],[-15,29],[-4,-5],[-7,11],[-9,-20],[0,-26],[4,-11],[-10,-35],[-7,5],[0,-11],[-7,0],[-13,-28],[-3,8],[7,26],[-2,81],[-5,-17],[-4,-33],[-9,-28],[3,-28],[-5,-11],[-2,-20],[-9,-20],[2,-43],[-11,15],[2,-17],[-4,2],[-21,33],[-22,26],[2,-31],[-11,29],[-2,13],[11,32],[3,-9],[6,26],[7,-14],[4,15],[5,41],[-2,17],[-7,-2],[-9,-26],[-25,-52],[-17,-18],[-18,-45],[-11,-9],[-5,-13],[-24,-20],[-16,-17],[-17,-22],[-23,-39],[-15,-19],[-36,-24],[-15,-26],[-16,-50],[-2,-29],[2,-80],[0,-141],[-5,-98],[-6,-122],[-3,-71],[-9,-135],[1,-57],[6,-41],[5,-18],[2,-28],[-2,-35],[-9,-32],[-9,-20],[-7,13],[2,44],[11,143],[-1,26],[-9,-126],[-7,-84],[-16,-176],[-13,-124],[-4,-50],[-12,-83],[-4,-39],[-9,-67],[-15,-76],[-18,-66],[-27,-74],[-18,-56],[-22,-63],[-11,-39],[-7,-16],[2,-14],[7,4],[-4,-33],[-7,0],[-9,-32],[-5,-44],[-11,-26],[-2,-28],[-6,-31],[4,-22],[-9,-8],[-11,-29],[4,-41],[-9,-28],[-4,-24],[-7,6],[-4,14],[4,45],[7,33],[13,50],[0,15],[-15,-61],[-7,-39],[-22,-91],[-14,-57],[-8,-24],[-9,-43],[-11,-39],[-25,-107],[-15,-32],[-16,-76],[-7,-39],[-2,-39],[-7,-27],[-17,-37],[-7,-28],[-27,-78],[-15,-35],[-40,-89],[-21,-22],[-22,-19],[-13,-16],[-7,-19],[-27,-89],[-4,-11],[-11,-122],[-22,-139],[-5,-15],[-22,-87],[-22,-74],[-29,-65],[-29,-54],[-40,-52],[-25,-25],[-29,-2],[-6,9],[7,-46],[11,-13],[11,-30],[53,-91],[31,-72],[5,13],[-3,2],[-13,35],[-13,20],[-2,19],[-34,61],[-6,0],[-20,33],[0,19],[17,30],[9,7],[11,-13],[7,30],[15,0],[-2,-50],[-6,-17],[-5,4],[-6,16],[0,-24],[8,-15],[12,2],[15,-29],[4,-21],[0,-26],[7,0],[0,23],[7,-6],[11,30],[2,-24],[-15,-32],[0,-42],[4,18],[5,-7],[-3,-24],[3,0],[4,40],[9,47],[4,-26],[1,29],[11,30],[0,18],[8,2],[11,-33],[-2,-20],[-4,20],[-11,-9],[-7,-47],[-7,-18],[-4,0],[-5,-57],[3,-47],[-16,52],[-2,-20],[18,-58],[2,-44],[5,-24],[2,-28],[-3,-63],[5,-50],[-2,-35],[0,-19],[9,-39],[2,-27],[7,-65],[2,-54],[-3,-50],[3,-55],[0,-43],[2,-15],[0,-42],[-4,-23],[6,-39],[4,-46],[1,-81],[-3,-23],[3,-52],[0,-96],[2,-70],[0,-37],[-5,-76],[-2,-73],[0,-38],[-2,-43],[-2,-39],[4,-20],[13,9],[7,0],[29,19],[4,-1],[36,14],[24,11],[3,9],[7,0],[22,11],[7,9],[31,6],[9,-11],[26,0],[25,-4],[11,-13],[11,-2],[11,-13],[7,0],[15,-16],[7,-13],[7,-1],[17,-14],[18,-11],[23,-28],[20,-6],[8,-11],[16,-15],[35,-44],[9,-2],[20,-11],[5,4],[16,-17],[8,0],[27,-15],[13,-11],[23,-39],[11,-26],[18,-63],[24,-48],[16,-63],[8,-24],[18,-94],[29,-84],[18,-78],[9,-53],[9,-34],[16,-81],[19,-148],[10,-58],[28,-163],[16,-113],[18,-179],[9,-108],[2,-68],[5,-65],[6,0],[-2,28],[-3,13],[-4,35],[0,35],[-2,35],[0,24],[-4,35],[-5,80],[-5,54],[-6,41],[-3,37],[-8,31],[-2,24],[8,-37],[7,4],[7,-65],[4,-41],[3,0],[6,-70],[3,-32],[4,13],[2,-22],[-4,-7],[4,-15],[0,-35],[5,-34],[4,2],[2,-35],[-4,-24],[2,-80],[2,-9],[2,-100],[3,-33],[-3,-37],[0,-54],[9,17],[5,-24],[-2,-21],[4,-39],[0,-33],[-5,-46],[7,-13],[0,-36],[-4,-25],[0,-21],[-11,-37],[-12,-63],[7,-7],[5,-54],[6,-7],[16,-2],[-5,-17],[-2,-46],[-6,-19],[8,-20],[7,-2],[-11,-31],[-7,-4],[2,-45],[3,-16],[-3,-35],[1,-36],[11,69],[6,9],[5,-9],[6,-26],[7,-50],[-7,-54],[-6,-29],[-16,-39],[-4,5],[4,-44],[2,-54],[7,-11],[4,18],[9,23],[-4,-28],[-4,-78],[4,-24],[9,19],[-2,-30],[6,-22],[0,-23],[7,2],[11,-33],[4,-22],[1,-48],[6,-17],[5,-30],[6,-20],[3,-33],[6,-12],[5,-42],[9,-17],[4,-48],[5,9],[-1,-24],[11,-52],[5,10],[5,-23],[20,-140],[0,26],[8,37],[0,-13],[-4,-34],[2,-35],[-4,-18],[4,-8],[3,-28],[4,-66],[-2,-45],[2,-68],[-2,-22],[4,-6],[16,-2],[4,-9],[2,-17],[3,34],[8,7],[5,-15],[-6,2],[-3,-30],[-2,-81],[2,-15],[9,11],[4,-26],[-4,-24],[-2,-41],[2,-18],[16,-52],[13,-67],[7,8],[8,-39],[0,-21],[5,-55],[7,-19],[4,-22],[7,-50],[4,-11],[7,-57],[5,-10],[10,-81],[7,-74],[9,-78],[18,-56],[9,2],[-2,17],[-7,0],[-2,24],[6,22],[7,-7],[4,29],[0,26],[-15,-52],[0,39],[4,-5],[2,28],[16,59],[4,-26],[-4,-46],[2,-8],[9,35],[13,4],[5,32],[5,66],[-5,10],[-16,13],[-6,-6],[-12,-28],[-11,-2],[-9,-20],[-4,17],[0,22],[9,39],[18,39],[7,-6],[4,-26],[4,59],[-2,8],[-9,-13],[-9,31],[-6,-24],[-9,-9],[-2,63],[4,26],[4,11],[3,24],[-5,48],[-6,2],[-7,-11],[-7,13],[-6,-7],[-5,-39],[-11,-34],[-11,17],[-2,39],[2,15],[-7,-13],[-6,0],[4,31]],[[4758,4376],[-11,32],[-2,11],[9,15],[-5,18],[7,19],[-2,-69],[4,32],[0,-21],[15,-52],[7,21],[11,7],[9,-13],[5,23],[13,1],[9,-26],[0,-33],[4,-30],[18,-31],[4,2],[10,33],[0,30],[4,-43],[-9,-15],[-7,-20],[-2,-17],[7,-52],[20,-24],[6,-29],[1,-34],[0,-31],[11,-9],[6,14],[9,8],[7,-4],[4,8],[9,-17],[9,5],[2,17],[11,-37],[14,11],[9,-37],[11,-13],[9,-39],[15,-44],[11,-26],[7,-9],[7,-56],[7,-15],[9,-59],[10,57],[-2,23],[-9,29],[-2,56],[2,-8],[1,-46],[13,-28],[9,47],[4,3],[-6,-31],[-9,-67],[4,-13],[20,-44],[16,-35],[15,-71],[12,-22],[10,-52],[7,-61],[11,-30],[3,-16],[9,-6],[10,-54],[18,-63],[5,-38],[-16,66],[-11,35],[-4,19],[-14,46],[-20,52],[-11,37],[-13,43],[0,-8],[8,-33],[25,-72],[18,-48],[15,-62],[27,-103],[3,5],[4,-16],[4,-36],[3,10],[9,-47],[4,-35],[31,-148],[11,-41],[9,-57],[16,-93],[0,26],[-7,26],[-2,28],[7,-28],[0,22],[6,41],[9,13],[11,-11],[7,-46],[7,11],[9,-4],[17,-28],[-4,32],[0,35],[2,106],[-4,-12],[-3,12],[2,27],[5,-15],[2,21],[-6,57],[-9,21],[-5,-13],[-4,3],[-11,24],[-5,21],[-2,50],[2,39],[-13,-4],[-7,20],[-24,10],[15,11],[13,-13],[-1,18],[6,-14],[4,5],[11,-20],[5,3],[9,-9],[7,-57],[11,-2],[2,30],[-2,53],[0,-20],[-7,9],[-4,35],[-5,19],[-4,52],[-2,7],[2,33],[0,34],[-5,59],[-2,30],[-13,37],[6,22],[-6,11],[-5,26],[-2,48],[-4,4],[-9,26],[4,9],[-6,30],[4,37],[2,-13],[13,-32],[5,-59],[9,-31],[7,-13],[6,-39],[4,-10],[5,26],[4,34],[3,53],[6,13],[-9,45],[0,18],[1,41],[4,22],[-2,21],[6,-8],[3,24],[-5,23],[0,44],[-2,9],[0,21],[11,40],[5,10],[8,53],[1,21],[4,0],[7,79],[0,56],[4,4],[4,46],[0,-26],[-4,-41],[4,-18],[-2,-11],[-2,-45],[-5,-44],[-10,-52],[-7,-30],[0,-29],[6,-56],[0,-35],[-4,-9],[-5,-45],[3,-22],[4,13],[3,-24],[-7,-4],[2,-59],[2,-28],[-4,-87],[-11,-59],[0,-63],[6,-39],[-2,-35],[2,-19],[-2,-37],[13,-22],[3,-32],[4,-20],[-2,-50],[0,-48],[6,-30],[5,2],[0,56],[4,37],[12,-6],[6,24],[0,22],[5,-22],[9,-18],[11,-6],[4,-46],[9,-15],[5,0],[6,-48],[7,-28],[7,11],[4,-7],[4,83],[5,-50],[9,-9],[9,-41],[22,-15],[-2,-26],[-9,2],[-11,9],[-3,19],[-9,17],[-15,-13],[-6,11],[2,-22],[-7,3],[-4,-7],[-12,13],[0,33],[-9,0],[-9,-13],[-4,34],[2,35],[-6,-8],[-9,10],[-3,-4],[-15,2],[-4,-19],[-1,-31],[-4,-41],[-15,-78],[-3,-39],[0,-76],[-4,-37],[4,-9],[7,7],[-9,-35],[-4,2],[-1,-22],[-15,-80],[-20,-50],[-11,-5],[-18,77],[-5,82],[3,-70],[-7,35],[-2,-13],[4,-28],[1,-37],[13,-50],[11,-57],[22,-113],[18,-89],[20,-89],[35,-182],[7,-40],[18,-54],[16,-41],[15,-30],[18,-31],[31,-67],[11,-20],[23,-45],[15,-14],[-2,20],[4,4],[-2,16],[-7,-7],[-2,15],[-13,2],[-5,18],[-8,4],[-19,35],[-2,20],[5,-11],[9,13],[17,-9],[7,-9],[9,-41],[0,35],[5,76],[8,41],[-15,-4],[-24,15],[-3,11],[-9,-2],[-7,19],[-8,2],[-2,14],[4,37],[-2,12],[-9,24],[-2,16],[-5,15],[0,-22],[-4,-46],[-13,18],[13,15],[0,22],[2,32],[6,3],[3,-13],[7,4],[-10,43],[-4,29],[5,0],[2,-24],[9,-35],[0,-65],[8,22],[5,56],[-4,50],[2,20],[-9,-1],[-2,24],[9,-6],[-1,35],[3,-22],[6,-13],[5,28],[0,39],[2,24],[9,22],[2,56],[5,14],[7,56],[2,-43],[-9,-35],[0,-37],[-9,-42],[-5,-39],[0,-34],[-4,-7],[0,-63],[-4,-22],[4,-8],[2,-44],[5,22],[13,30],[7,-6],[9,9],[8,-5],[12,-19],[4,-31],[4,35],[10,0],[11,-24],[4,-31],[0,-32],[-5,-13],[-22,-22],[-2,18],[-4,-18],[-1,-59],[10,22],[9,5],[20,39],[15,11],[11,2],[22,13],[12,-2],[9,8],[13,-2],[13,-9],[11,-26],[3,16],[11,-5],[7,-28],[6,-7],[2,31],[11,-7],[7,-13],[7,-54],[6,15],[5,5],[4,-27],[-20,-15],[-26,-32],[-14,-29],[0,-11],[40,59],[34,33],[26,-11],[22,-22],[12,-19],[18,-35],[6,-7],[29,-60],[20,-53],[14,-45],[26,-92],[9,-32],[25,-91],[11,-44],[20,-96],[9,-67],[9,-37],[22,-128],[37,-274],[7,-48],[3,-32],[2,-11],[4,48],[4,17],[-1,32],[2,24],[-7,31],[-4,-2],[4,21],[9,-30],[2,-44],[9,20],[11,7],[2,17],[7,15],[7,-19],[2,-20],[-3,-22],[1,-17],[-5,-7],[0,18],[2,37],[-8,-7],[-3,-19],[-13,-18],[-7,-4],[-6,-35],[-1,-30],[-6,-18],[29,-204],[33,-200],[9,-72],[5,-19],[40,-163],[9,-31],[31,-65],[13,-72],[-2,-24],[7,9],[8,26],[7,42],[7,15],[2,-15],[7,17],[0,24],[-9,6],[-11,-50],[-11,-50],[-14,87],[-7,26],[-20,22],[-11,20],[-2,34],[5,11],[6,-15],[7,-6],[4,74],[-6,15],[0,21],[9,-17],[4,35],[-4,20],[4,13],[4,-16],[14,33],[9,-22],[9,78],[-7,14],[-4,21],[6,2],[5,-32],[17,28],[7,4],[11,-24],[7,3],[11,19],[11,11],[11,46],[16,6],[0,35],[-3,-2],[0,32],[-8,5],[2,13],[11,-9],[3,24],[4,4],[4,40],[-2,23],[-2,55],[-3,-2],[-11,30],[0,22],[-6,15],[0,15],[7,-15],[2,-24],[15,0],[7,-17],[4,-26],[7,2],[5,-24],[2,-83],[4,-13],[5,81],[0,47],[6,11],[5,-6],[0,-29],[-5,-15],[16,-8],[7,-15],[9,10],[6,-4],[0,28],[-5,-4],[5,17],[3,-41],[10,46],[14,-2],[11,30],[7,-9],[0,15],[6,27],[0,88],[2,44],[12,94],[2,45],[0,35],[-11,70],[-11,28],[-3,41],[-9,-13],[-6,39],[-2,41],[-10,3],[-4,36],[0,74],[-4,31],[-11,-9],[-7,13],[-2,31],[-7,49],[-7,-39],[-17,22],[-12,-2],[-4,13],[-7,-7],[-6,11],[-3,22],[-2,-11],[-13,-6],[-7,8],[2,14],[3,-13],[6,36],[5,2],[4,-17],[9,9],[2,19],[3,87],[-7,9],[-5,-17],[-10,-7],[-1,9],[-15,4],[-7,11],[-9,4],[-4,-15],[8,-6],[-4,-31],[7,-17],[2,-17],[5,-9],[0,-48],[-5,-57],[-7,-6],[-13,74],[-4,17],[-7,7],[4,63],[-8,0],[0,-31],[-7,-8],[0,34],[-9,20],[-11,37],[-4,6],[-1,-13],[-6,3],[-3,-13],[-9,21],[-4,-21],[-9,13],[2,30],[-9,-13],[-4,4],[0,39],[4,9],[1,-30],[10,2],[3,-22],[4,7],[11,-7],[3,13],[8,0],[21,-61],[6,-2],[5,29],[6,-16],[3,-30],[2,15],[6,-4],[0,32],[5,20],[15,6],[10,-15],[9,13],[8,0],[2,20],[-22,-5],[3,24],[4,11],[5,-9],[1,18],[5,-15],[7,0],[6,11],[9,-3],[-6,72],[-3,-9],[2,26],[-2,48],[-4,-24],[-7,-6],[-2,15],[-7,13],[-9,-2],[-2,39],[7,19],[4,-6],[-6,-39],[13,4],[6,-15],[7,22],[3,-15],[0,-26],[4,-7],[11,24],[-2,24],[-7,-5],[-7,16],[-4,54],[-4,-11],[-5,18],[-7,2],[-4,-26],[-9,-9],[-4,-13],[-5,19],[-6,-10],[-3,11],[7,8],[2,28],[9,-30],[0,80],[7,-32],[5,2],[8,-13],[9,6],[5,-17],[2,-43],[2,-5],[7,15],[2,20],[-9,11],[-4,13],[0,43],[2,18],[4,61],[3,21],[0,22],[-5,57],[-7,-2],[-4,36],[2,16],[13,-9],[7,-24],[7,13],[4,-15],[2,-48],[-8,-56],[-5,-68],[9,-26],[5,-54],[10,4],[9,-22],[7,16],[22,-13],[7,30],[4,-26],[-9,-33],[1,-11],[9,5],[4,60],[4,22],[7,5],[3,15],[4,-13],[-3,-31],[9,-67],[5,-6],[9,-42],[2,57],[11,74],[9,30],[13,15],[0,26],[5,48],[4,20],[5,-2],[4,-18],[2,-26],[-4,-43],[-5,-13],[0,-16],[7,16],[7,-48],[0,-37],[2,37],[4,-9],[5,28],[0,-21],[-2,-29],[-5,-39],[-15,-26],[-3,26],[-6,11],[-11,-26],[-5,6],[-4,24],[-2,-21],[0,32],[-3,5],[1,-37],[-5,-20],[0,33],[2,43],[-4,-13],[2,-24],[-4,-15],[4,-24],[0,-28],[-4,-46],[0,-32],[0,-74],[-7,-142],[13,-10],[7,-35],[9,-44],[6,-41],[5,-56],[4,-16],[9,-15],[14,-46],[4,0],[7,79],[6,54],[9,6],[3,-30],[2,-41],[0,-61],[-2,-30],[-21,-133],[-6,-24],[0,-11],[9,-59],[17,-52],[5,-26],[7,102],[7,31],[4,4],[0,42],[6,73],[5,-69],[-2,-31],[-5,-11],[2,-56],[0,-63],[-2,-46],[-4,-24],[-7,-17],[2,-19],[11,6],[5,24],[4,39],[5,13],[-9,48],[0,48],[2,35],[2,93],[3,61],[-7,19],[-5,5],[0,54],[3,31],[6,-35],[7,2],[2,-15],[2,-33],[-4,-26],[-2,-39],[2,-37],[2,0],[5,72],[4,-18],[0,-35],[-4,-28],[0,-45],[2,-16],[2,63],[7,18],[6,-22],[1,-37],[-1,-32],[-4,-1],[-2,-45],[-11,2],[-3,-41],[3,-13],[7,19],[6,-21],[5,6],[4,-20],[6,13],[3,24],[-5,11],[0,20],[3,24],[9,2],[10,-35],[-17,-59],[0,-10],[13,45],[38,174],[2,24],[3,-9],[11,55],[19,119],[-11,63],[-2,46],[1,189],[-9,2],[-5,18],[-5,2],[-6,45],[-5,-26],[-6,15],[-11,14],[2,45],[2,18],[4,0],[5,-37],[2,34],[-2,11],[0,55],[4,4],[0,-57],[3,-2],[4,24],[2,-6],[-2,-37],[7,-39],[2,39],[6,-7],[1,33],[4,13],[5,54],[4,41],[-5,39],[5,18],[15,-9],[16,7],[22,-33],[21,28],[13,35],[11,37],[2,28],[-4,31],[-7,0],[2,26],[7,15],[18,20],[11,-33],[17,-56],[12,-68],[11,-52],[9,-93],[9,-98],[9,-15],[15,-3],[16,-30],[9,0],[9,7],[26,10],[25,16],[0,30],[7,22],[2,-5],[2,-26],[-3,-11],[3,-11],[18,-15],[9,-19],[10,-11],[18,-46],[11,-34],[10,-9],[11,4],[8,-11],[5,13],[6,37],[-8,-2],[2,13],[-2,42],[2,6],[9,-15],[7,17],[2,30],[4,-97],[5,35],[4,17],[9,11],[20,4],[4,-9],[-2,50],[9,89],[9,35],[7,0],[8,-69],[1,-39],[6,50],[5,11],[-2,86],[8,200],[11,144],[5,19],[7,-8],[6,-18],[2,-21],[-2,-35],[-6,39],[-5,9],[-4,-18],[-7,-102],[-11,-265],[2,-17],[4,21],[7,124],[3,91],[4,-34],[2,-81],[5,-35],[6,-23],[-4,-74],[-5,-44],[-9,-21],[-6,26],[-2,-13],[0,-22],[4,-11],[22,13],[7,-2],[5,-11],[15,22],[4,19],[29,48],[16,48],[15,22],[21,47],[4,59],[2,54],[-8,2],[-10,12],[-6,19],[-9,81],[-15,115],[-3,-26],[-4,24],[-5,4],[3,24],[4,-2],[2,23],[-6,31],[-5,35],[0,24],[-13,4],[-1,20],[3,112],[-2,42],[-5,35],[-9,-35],[0,-46],[-4,-8],[2,49],[-2,20],[-9,9],[7,4],[6,-7],[7,40],[6,-16],[1,-26],[4,7],[7,80],[11,11],[11,39],[5,-11],[4,-30],[9,37],[6,17],[18,24],[7,2],[13,-17],[18,33],[-2,61],[-9,6],[-4,-26],[-5,8],[-4,-21],[-7,-7],[-7,-24],[-6,3],[-2,17],[-10,26],[-2,-15],[-6,-4],[-7,8],[-4,15],[-3,-23],[-7,-5],[-10,5],[-5,21],[-4,-24],[-5,5],[-15,-26],[-3,-2],[-6,23],[-7,48],[-5,-17],[-6,2],[-2,15],[0,39],[2,20],[11,-13],[4,-20],[7,46],[7,6],[8,-10],[10,-42],[11,13],[15,-4],[2,15],[-10,-2],[0,24],[2,11],[2,-18],[9,11],[4,-17],[11,4],[5,11],[9,4],[7,-26],[10,-19],[11,8],[7,20],[5,-15],[6,13],[5,-17],[4,-38],[13,-12],[7,8],[5,22],[6,4],[7,-8],[11,17],[7,20],[13,-9],[7,-22],[9,-4],[6,15],[-10,54],[-9,68],[-3,23],[-9,16],[-9,-22],[-4,7],[0,19],[18,17],[4,26],[5,-6],[4,-48],[5,11],[-1,30],[-13,35],[-15,5],[-9,26],[-3,-7],[-11,9],[-6,41],[-11,29],[6,0],[2,17],[-2,58],[-7,13],[1,16],[6,-7],[5,-26],[2,-32],[7,37],[4,12],[11,-15],[14,-8],[18,15],[8,4],[9,-15],[7,9],[7,-2],[6,-14],[9,-2],[4,16],[7,2],[9,26],[7,6],[11,-8],[13,39],[11,22],[5,-5],[4,26],[22,83],[5,30],[-5,16],[7,47],[5,3],[2,-29],[-5,7],[-4,-13],[6,-18],[12,0],[0,-32],[-11,-29],[-1,-108],[10,-65],[8,-18],[1,9],[-1,43],[7,46],[2,22],[-2,60],[2,20],[7,59],[2,39],[-4,87],[4,30],[9,28],[0,68],[5,56],[-3,79],[2,26],[5,-113],[0,-48],[-5,-11],[0,-39],[-4,-41],[-4,-16],[-3,-32],[0,-44],[1,-19],[0,-37],[-3,-13],[-6,-65],[-1,-27],[5,-71],[2,-11],[0,-72],[2,-26],[3,-11],[6,16],[5,4],[2,-26],[7,0],[4,13],[2,-50],[11,-18],[5,24],[4,5],[12,-16],[9,-30],[4,-30],[6,15],[5,39],[7,24],[4,-5],[9,22],[5,-13],[11,111],[-5,70],[-2,43],[-2,11],[-18,33],[-9,39],[4,45],[0,59],[-4,37],[0,15],[5,4],[4,-56],[7,-26],[18,-22],[11,-54],[6,-33],[5,4],[6,-12],[9,-37],[25,-57],[11,-17],[9,-5],[17,-48],[9,-19],[5,-4],[9,-20],[6,13],[10,-9],[6,13],[-2,37],[5,-39],[10,-45],[7,-11],[5,-35],[13,-43],[18,-90],[9,-24],[4,-24],[5,29],[4,4],[2,26],[9,5],[5,23],[4,-39],[4,7],[5,-35],[6,0],[2,22],[7,-33],[3,-8],[2,13],[17,23],[3,11],[13,-11],[7,-34],[13,-31],[10,48],[3,35],[-11,15],[-6,33],[6,-18],[8,-8],[3,-16],[9,13],[7,-13],[-4,42],[4,6],[0,-26],[11,0],[2,-13],[-9,-13],[5,-30],[4,26],[5,11],[9,2],[4,-13],[7,21],[13,11],[5,-10],[9,56],[13,26],[6,0],[10,44],[-2,54],[4,-28],[5,26],[6,8],[6,42],[-2,30],[3,28],[2,-47],[3,0],[1,45],[2,13],[-2,33],[3,-33],[-1,-13],[0,-69],[12,-16],[-2,27],[-1,78],[3,-20],[4,2],[2,-19],[9,-11],[-4,19],[0,46],[-4,52],[4,-15],[2,-35],[7,-8],[17,-40],[5,3],[4,-11],[2,17],[16,0],[7,48],[9,-22],[4,39],[7,29],[5,0],[13,43],[4,30],[2,59],[0,28],[-6,33],[-3,87],[7,-41],[4,-9],[5,20],[5,2],[6,19],[13,-4],[5,-15],[7,-35],[13,-43],[2,-25],[9,-8],[3,-20],[4,20],[6,0],[9,-22],[0,42],[9,30],[-2,33],[5,-25],[-7,-26],[-3,-32],[1,-17],[9,6],[4,15],[0,22],[16,41],[4,50],[9,-4],[2,33],[5,-9],[2,-15],[4,-5],[0,35],[-9,6],[0,16],[7,-2],[7,-22],[2,11],[-5,15],[0,15],[7,-24],[0,39],[-4,37],[2,20],[14,-54],[9,8],[0,22],[10,-52],[-2,-28],[7,17],[-3,26],[-2,74],[5,43],[4,-4],[0,31],[-7,39],[3,39],[9,-9],[2,6],[13,55],[5,6],[11,-17],[4,13],[3,-11],[4,13],[2,-9],[7,9],[11,-11],[16,29],[9,21],[9,13],[10,-4],[7,4],[4,-19],[5,24],[6,15],[-2,-44],[7,-36],[9,26],[0,34],[-2,5],[4,34],[0,44],[2,-15],[0,-46],[7,30],[5,66],[6,-18],[21,9],[9,35],[-1,-20],[2,-13],[9,-6],[5,24],[7,-13],[10,-46],[8,-13],[8,11],[5,-9],[2,-37],[15,-2],[7,-9],[12,22],[9,-4],[15,4],[11,-15],[6,11],[14,-29],[7,3],[4,12],[14,-4],[4,-13],[5,26],[15,0],[11,13],[11,5],[4,-11],[9,45],[7,-10],[5,21],[4,-15],[5,20],[8,-2],[3,15],[8,45],[12,-26],[6,16],[0,23],[3,-6],[4,33],[7,-7],[2,-15],[-7,4],[3,-24],[10,15],[1,-54],[6,-24],[5,7],[-5,11],[0,17],[7,-6],[2,13],[-4,23],[4,26],[9,7],[-5,-56],[3,-38],[-9,-28],[4,-6],[11,17],[12,55],[-7,-22],[6,41],[7,22],[5,37],[46,163],[9,17],[0,41],[-4,16],[-13,10],[-11,-17],[-12,-39],[0,33],[7,32],[15,28],[12,11],[6,-41],[3,-2],[2,-65],[0,-22],[6,0],[7,63],[5,-2],[-1,17],[3,33],[2,-2],[4,32],[7,4],[10,16],[28,63],[6,-2],[6,-18],[3,-24],[16,-11],[0,22],[-9,4],[-2,46],[-7,5],[-1,39],[-5,6],[-5,24],[5,-13],[13,-11],[9,0],[33,35],[11,0],[5,8],[7,20],[7,46],[4,-13],[11,0],[11,-31],[7,-8],[-2,-29],[-12,0],[5,-10],[13,10],[15,26],[9,22],[19,11],[15,-9],[15,-56],[9,-55],[5,-8],[6,-48],[8,2],[6,-15],[11,-2],[2,-15],[25,-18],[20,-11],[16,-21],[0,15],[6,-5],[4,-26],[7,0],[5,22],[4,-13],[-16,-28],[5,-24],[9,-2],[13,19],[4,20],[-1,52],[4,44],[2,-14],[0,-84],[-11,-66],[6,11],[8,50],[4,-35],[-1,-43],[-3,-17],[4,-20],[0,20],[6,54],[5,-4],[0,-27],[4,-10],[5,39],[4,-11],[0,-20],[5,-32],[8,6],[3,26],[8,-13],[6,-26],[0,-11],[8,-37],[9,3],[-3,-20],[9,-32],[5,32],[-5,39],[9,9],[-2,39],[5,-15],[4,9],[20,-35],[9,13],[5,-11],[2,-18],[-4,-115],[6,2],[2,13],[-4,48],[0,40],[4,32],[20,-24],[22,0],[3,-28],[6,0],[0,-30],[5,23],[-3,59],[3,15],[-2,-34],[6,-29],[5,-2],[2,-56],[6,-13],[-4,37],[5,4],[2,39],[2,-24],[4,-26],[12,46],[8,19],[7,57],[22,0],[3,-2],[9,12],[2,27],[-3,26],[7,8],[3,11],[24,-11],[7,24],[9,9],[2,-7],[-24,-60],[-9,-16],[6,3],[7,15],[17,45],[20,37],[17,55],[3,2],[14,58],[7,14],[8,39],[3,19],[-7,9],[3,15],[-1,68],[11,0],[5,-18],[-2,-41],[9,17],[13,39],[0,14],[-13,-29],[-3,24],[9,37],[4,4],[5,29],[9,17],[15,7],[3,17],[-6,-11],[-9,48],[1,15],[8,-9],[10,14],[-2,73],[7,20],[0,-20],[4,-6],[7,22],[-2,21],[8,52],[0,18],[5,26],[11,-7],[16,11],[6,-13],[12,18],[4,37],[15,43],[0,15],[-6,31],[6,30],[5,-6],[9,10],[2,20],[4,2],[3,-17],[-3,-20],[7,-30],[4,0],[7,33],[-1,19],[6,0],[20,15],[6,11],[18,59],[12,41],[6,18],[16,65],[9,17],[6,35],[12,61],[6,80],[3,-22],[6,89],[7,57],[6,24],[18,0],[12,11],[4,-7],[0,-13],[2,-54],[9,-46],[0,-45],[-5,0],[-10,-18],[-10,17],[2,-34],[17,19],[8,2],[24,35],[12,29],[22,65],[0,26066],[18,30],[46,80],[70,94],[8,-102],[9,-105],[109,246],[23,50],[80,-360],[173,-42],[0,78],[-35,544],[40,217],[71,165],[26,43],[9,140],[3,84],[11,96],[29,124],[48,200],[74,316],[18,69],[115,497],[18,313],[12,274],[-7,180],[20,-4],[47,-208],[31,-73],[57,-157],[26,-79],[13,-55],[68,-13],[27,-214],[-2,-35],[6,-20],[0,-78],[0,-9],[-1,-124],[0,-206],[31,39],[17,-36],[19,-138],[-1,-80],[-31,-94],[44,-93],[67,-50],[65,-154],[66,-161],[34,139],[29,92],[7,5],[2,78],[18,85],[11,5],[26,137],[0,206],[-15,53],[-5,54],[31,94],[-13,92],[21,151],[72,73],[5,128],[33,140],[23,-1],[9,96],[19,115],[-8,135],[26,39],[-6,88],[22,141],[80,211],[36,84],[37,264],[16,74],[27,126],[49,206],[-23,95],[32,248],[22,109],[13,82],[14,83],[28,337],[56,353],[33,314],[25,173],[29,262],[53,317],[33,300],[-33,256],[89,100],[-22,368],[36,71],[35,74],[-9,111],[12,107],[2,69],[4,152],[71,-27],[31,126],[83,218],[24,92],[34,32],[51,50],[13,60],[14,67],[17,84],[23,41],[20,9],[6,92],[7,121],[20,26],[29,68],[40,-55],[29,239],[-4,129],[-1,71],[5,11],[-24,178],[-10,33],[-8,82],[2,107],[9,66],[-5,197],[11,174],[14,105],[2,89],[4,136],[0,14],[12,73],[0,38],[-9,48],[-27,135],[-11,101],[-2,38],[-9,68],[0,58],[-18,129],[-7,51],[-13,78],[-13,65],[-16,61],[-13,65],[-27,100],[-14,16],[0,-20],[3,-20],[0,-17],[4,-38],[3,-5],[13,-60],[4,-4],[2,-26],[5,-11],[4,-25],[2,22],[6,-26],[0,-27],[-10,15],[-4,26],[-7,13],[-9,57],[-4,7],[-2,22],[-12,44],[-6,-56],[-5,-17],[-4,-27],[6,-40],[0,-105],[-6,2],[4,52],[-2,60],[-4,25],[-3,40],[3,-17],[8,26],[7,58],[-4,33],[2,23],[-5,39],[-15,17],[-3,-5],[-4,-43],[7,-21],[2,-31],[5,40],[-3,-52],[1,-36],[-7,-28],[2,48],[-2,-19],[-5,-79],[4,-41],[-4,-45],[0,-76],[-4,-16],[0,41],[-2,7],[0,48],[2,25],[0,43],[4,44],[-2,34],[2,0],[0,45],[-2,17],[-8,-14],[-5,-48],[-4,-7],[4,55],[0,62],[-7,37],[-5,13],[-11,-16],[-17,-56],[0,-35],[-3,-23],[3,-38],[5,-9],[-3,-12],[-5,13],[-1,-9],[1,-34],[-2,-18],[2,-30],[-6,-31],[2,-18],[-5,-4],[3,-19],[8,11],[-2,-41],[3,-2],[-4,-33],[3,-16],[3,3],[7,-31],[6,-13],[-6,-16],[-1,27],[-6,9],[-2,13],[-5,12],[-2,18],[-2,-27],[-9,-46],[-3,7],[1,-51],[-1,-15],[9,-31],[-4,-12],[9,-20],[-7,0],[0,-18],[10,-19],[4,-2],[13,-39],[5,-6],[4,-42],[6,4],[12,164],[2,8],[-2,-81],[6,-5],[2,-13],[9,-16],[5,61],[0,12],[6,70],[1,-19],[-7,-99],[-2,-25],[2,-48],[11,4],[7,-5],[8,-30],[9,-5],[12,-20],[4,-16],[2,-38],[-6,32],[-5,13],[-15,13],[-9,19],[-3,19],[-8,4],[-7,-5],[7,-44],[0,-25],[7,-25],[4,-23],[9,-31],[15,-86],[5,-51],[0,-19],[17,-101],[0,-28],[-6,42],[-5,18],[-6,49],[-3,7],[-6,87],[-5,10],[-6,37],[-7,24],[-7,44],[-9,30],[-6,26],[0,30],[-5,7],[-2,61],[-7,17],[-9,-28],[0,-28],[-4,-39],[0,-103],[-2,94],[-3,-21],[0,38],[-11,19],[0,17],[-8,32],[-7,17],[-16,18],[-11,-14],[-4,-34],[-9,-26],[-2,-24],[0,-39],[-3,-27],[3,-45],[-3,-18],[11,-34],[11,-57],[5,-4],[3,-22],[9,-44],[0,-34],[6,-18],[13,18],[7,-4],[7,11],[8,-14],[14,-12],[8,10],[10,-20],[7,19],[12,-3],[-8,-14],[-11,-28],[0,-20],[9,-27],[4,-40],[9,-33],[0,-36],[-5,10],[0,23],[-6,20],[-3,38],[-11,31],[-6,58],[-9,-13],[-9,11],[-18,11],[-6,-22],[-3,-48],[0,-67],[2,-25],[-2,-42],[-4,-23],[2,-16],[-2,-62],[-2,-27],[2,-27],[6,-50],[-2,-60],[3,-31],[10,8],[7,-13],[2,31],[8,12],[-3,-36],[-5,-29],[3,-19],[11,2],[0,-21],[13,-40],[2,33],[3,24],[2,37],[2,2],[-2,-52],[-2,-21],[0,-50],[-3,-33],[5,-22],[9,-4],[2,-26],[-2,-18],[-4,27],[-9,16],[-5,35],[0,46],[-9,3],[-5,25],[-2,18],[-9,-5],[-4,24],[0,28],[-4,7],[-7,-6],[-7,-20],[-2,-93],[2,-20],[-6,-65],[0,-98],[2,-21],[11,-23],[5,3],[8,-11],[4,9],[7,-39],[5,21],[2,-43],[13,-13],[-2,-19],[-11,14],[-7,27],[-9,26],[-6,-3],[-5,13],[-4,-8],[-9,32],[-4,0],[-5,-49],[-13,-88],[0,-10],[9,-36],[0,-45],[-4,26],[-10,24],[-4,-6],[-12,-102],[-6,-31],[-7,-58],[-6,-20],[-9,-50],[5,-37],[-3,-11],[-5,37],[-10,-57],[4,-57],[-3,3],[-4,32],[-4,-27],[4,-22],[12,-28],[15,-61],[3,-15],[8,-18],[-11,1],[13,-57],[-9,-3],[-9,35],[-9,61],[-8,17],[-9,-13],[4,29],[-4,23],[-18,18],[-9,19],[-9,46],[-6,-4],[-7,19],[-2,-38],[-12,-46],[-20,47],[0,-39],[-4,52],[-5,9],[-17,60],[-3,-5],[0,-85],[-2,3],[1,55],[-5,45],[-11,30],[-1,10],[-15,57],[-16,-57],[-9,-19],[-2,-33],[-4,-4],[2,39],[9,30],[13,24],[3,30],[-3,10],[-15,-13],[-5,-12],[2,21],[-4,14],[-18,3],[-4,10],[0,18],[7,29],[13,0],[2,10],[11,10],[5,24],[4,2],[-4,64],[2,17],[-5,28],[-4,1],[0,34],[-4,59],[-5,16],[-4,-8],[0,-22],[-3,-22],[-6,-8],[17,147],[-4,3],[0,28],[-4,11],[0,37],[-3,9],[0,-26],[-4,26],[0,20],[-4,-12],[2,53],[-2,4],[-7,-31],[-2,4],[-9,-36],[-4,-47],[-12,-51],[-7,-10],[11,49],[10,91],[-1,18],[9,33],[-1,9],[-9,-17],[8,35],[2,90],[-6,1],[-3,17],[-1,50],[-5,-1],[-4,-30],[-3,0],[-10,-50],[-8,-16],[-9,-6],[-10,-24],[-3,-34],[-7,-19],[-6,-79],[0,-55],[-3,-37],[1,-24],[-3,-41],[-10,-60],[1,-22],[-8,-37],[6,-5],[10,44],[6,4],[4,16],[7,4],[-7,-28],[2,-22],[1,-100],[4,11],[9,-33],[18,7],[11,24],[6,39],[1,-9],[-7,-41],[-9,-26],[0,-26],[-6,-11],[-5,-33],[5,-13],[4,-42],[6,-25],[3,2],[-10,-85],[1,-32],[6,-14],[0,-15],[9,-24],[9,9],[7,-20],[-5,-27],[2,-22],[9,43],[-6,-50],[0,-20],[-5,-60],[-2,-50],[5,-1],[-5,-19],[0,-44],[3,-19],[1,-70],[-1,-35],[1,-17],[-1,-18],[4,-12],[20,-22],[0,-26],[6,-13],[12,28],[0,-19],[6,6],[10,-21],[10,19],[5,17],[9,-8],[8,17],[3,-10],[8,27],[3,-10],[-5,-24],[5,2],[7,18],[5,-13],[4,-55],[4,-9],[6,3],[5,-38],[-15,12],[-7,18],[0,35],[-2,18],[-4,-15],[-18,9],[-12,-34],[-7,-9],[-3,6],[-5,-13],[-7,-5],[-7,17],[-8,0],[-12,-23],[-7,10],[-8,-18],[-14,-138],[-4,-78],[2,-44],[0,-11],[5,-48],[-9,11],[-3,16],[3,11],[0,30],[-20,-52],[-7,0],[-5,21],[-17,-78],[2,54],[-5,-13],[1,-13],[-5,-45],[-4,-105],[-3,-6],[-10,-50],[-9,0],[-5,-36],[-7,-22],[-7,-39],[0,-53],[-2,-30],[0,-47],[5,-4],[2,-25],[4,-54],[5,-14],[6,-37],[9,-26],[-4,-9],[18,-41],[24,-25],[-11,1],[-15,18],[-10,23],[-4,-23],[-13,28],[-9,39],[-5,-3],[-6,-17],[-7,13],[-13,-5],[-12,-43],[-13,-21],[-4,-28],[7,-20],[-3,-20],[7,10],[7,-34],[0,-53],[6,2],[7,-10],[4,-19],[0,-24],[-2,-19],[5,-24],[6,-7],[7,6],[-4,-25],[-14,9],[-6,39],[0,39],[-5,-5],[-7,5],[-4,21],[-2,56],[-2,-17],[-7,-1],[-18,-46],[-4,-5],[-27,-91],[-11,-30],[-7,-57],[2,-15],[-4,-25],[2,-30],[-5,8],[0,-25],[-6,5],[-2,-16],[-11,-28],[4,-4],[-5,-67],[-4,-7],[-9,-39],[-4,-28],[4,-9],[11,6],[9,26],[3,0],[-10,-35],[9,1],[10,50],[2,19],[4,-11],[3,7],[1,-20],[-2,-28],[3,-35],[-9,-54],[-7,-76],[7,-22],[0,-39],[-5,-10],[-6,36],[-5,8],[-2,31],[3,37],[-1,20],[-7,22],[-4,-10],[-2,-18],[-7,-17],[-13,-16],[-3,72],[-2,-51],[-4,-45],[-2,19],[-4,-10],[-9,-42],[-14,-15],[-11,6],[-6,-11],[8,-69],[0,-20],[-5,-22],[5,-5],[5,13],[2,-26],[-5,-17],[2,-31],[-4,26],[-4,-29],[-9,11],[0,28],[-4,-4],[4,33],[-1,15],[-11,-1],[3,-80],[-5,-12],[-4,75],[2,16],[-6,57],[-7,6],[-15,-29],[-5,-24],[-12,-17],[0,-13],[-9,-6],[-4,-21],[-7,-16],[-2,-14],[-10,-21],[-8,-3],[0,-15],[9,-4],[7,-19],[2,-39],[0,-35],[-9,-55],[7,-6],[-4,-25],[9,-4],[-3,-31],[5,8],[2,-18],[14,23],[9,0],[8,9],[5,-10],[0,-17],[6,10],[14,8],[11,55],[5,33],[4,15],[-7,-59],[-5,-22],[-2,-32],[5,-32],[6,4],[7,-15],[2,-33],[5,25],[8,8],[0,-24],[3,-9],[0,-27],[-5,16],[-8,-19],[-4,3],[-5,20],[-9,15],[-16,-25],[-7,4],[-29,-26],[-2,-17],[-9,-22],[-4,-30],[0,-24],[5,-20],[10,-10],[0,-26],[3,18],[9,-8],[4,-33],[5,-22],[0,-38],[-7,15],[-5,39],[-4,6],[-2,-26],[-7,-6],[-2,-18],[-3,18],[5,11],[-7,24],[-2,-22],[-9,-33],[-2,-39],[-4,-24],[2,-10],[-3,-46],[3,-26],[3,4],[-3,-40],[0,-28],[4,5],[7,-44],[0,-28],[4,0],[5,-26],[9,8],[7,-14],[10,2],[3,-19],[-11,-3],[-9,15],[-9,0],[-23,37],[-3,16],[-8,9],[-13,-32],[-4,-36],[-11,-66],[-1,-18],[10,-6],[-12,-8],[0,-42],[7,-21],[1,-61],[-1,-39],[5,12],[2,-9],[9,5],[4,-10],[0,-27],[9,67],[4,21],[14,30],[4,-15],[23,54],[24,72],[2,-1],[21,40],[13,48],[18,117],[11,39],[8,-10],[8,1],[4,22],[6,13],[13,0],[3,9],[24,-9],[-4,-21],[-7,0],[-5,12],[-13,-19],[-6,4],[-18,-36],[6,-22],[0,-18],[-6,29],[-11,17],[-3,-24],[-9,-26],[-4,-28],[-4,-37],[-12,-74],[3,-9],[0,-52],[-3,11],[0,19],[-4,13],[-13,-39],[-4,-30],[-12,-33],[-9,-2],[-9,-40],[-4,-5],[-9,-50],[0,-20],[-5,-20],[-13,-13],[-9,-23],[-6,-31],[-7,-13],[-9,-3],[-2,-17],[6,-5],[3,-16],[0,-39],[-7,-51],[3,-52],[1,-73],[-4,-57],[2,-20],[16,5],[6,19],[5,-13],[14,-2],[10,12],[3,27],[20,39],[4,-34],[3,2],[10,32],[12,-4],[15,43],[5,-18],[-9,-16],[-5,-49],[-2,20],[-4,-6],[-9,11],[-9,-39],[-7,0],[-6,30],[-3,-2],[-17,-59],[-5,2],[-2,-13],[-7,-4],[-7,11],[-9,-2],[-2,-13],[-6,-5],[-7,7],[-7,-8],[-6,21],[-2,19],[0,112],[-5,-8],[-7,-52],[-2,31],[2,34],[5,34],[-3,32],[1,25],[-3,12],[3,23],[-3,23],[-9,6],[-6,-19],[-5,-1],[-9,-82],[0,-23],[-6,-31],[-9,-91],[-5,-22],[-2,-26],[-5,-24],[1,-24],[-3,-18],[5,-19],[4,-32],[16,-43],[5,26],[0,26],[6,45],[6,13],[1,32],[5,-21],[-5,-90],[9,-58],[-3,-13],[-6,14],[-3,22],[-4,-12],[-4,-38],[-7,-19],[2,-35],[-5,-35],[1,-14],[6,-18],[2,-52],[9,-9],[5,-42],[-5,-12],[-1,-23],[4,-3],[8,-40],[-9,26],[-12,5],[-1,13],[5,55],[-9,21],[2,36],[-9,27],[-6,100],[6,35],[-13,46],[-5,-1],[-10,40],[-3,-1],[-15,-58],[-4,-33],[-5,-11],[0,-21],[13,-13],[-4,-7],[-12,11],[-6,-44],[-1,-19],[3,2],[0,-35],[-6,34],[-5,-3],[0,-41],[-4,-39],[1,-40],[-4,-9],[4,-19],[1,15],[6,-8],[-9,-33],[-2,-55],[-2,-24],[2,-65],[-2,-21],[9,-26],[0,-40],[-3,-47],[-4,-26],[21,-35],[4,-40],[5,-13],[-9,-58],[1,-17],[-1,-69],[-3,-39],[4,-23],[8,-21],[6,0],[4,-46],[-4,-48],[0,-44],[4,-34],[11,-35],[-2,-9],[-7,13],[-9,4],[-4,26],[-2,29],[3,37],[-1,57],[-9,33],[-7,34],[-8,76],[2,35],[-3,17],[3,22],[-2,26],[-9,22],[-5,23],[-9,15],[0,20],[-2,29],[2,28],[5,15],[7,37],[-3,30],[-6,3],[-3,20],[-1,48],[-10,-13],[-11,9],[-13,-52],[-14,-60],[-15,-57],[-7,-14],[-4,-26],[-5,-1],[-4,-17],[-5,-34],[-9,-34],[-8,-43],[-5,-2],[-4,14],[-11,-2],[-5,11],[0,-26],[-7,39],[-4,-17],[2,-13],[0,-52],[-2,-22],[-5,13],[-6,-4],[-2,22],[-7,-10],[-2,8],[-5,-20],[-6,-1],[-3,-25],[7,-1],[-4,-28],[2,-32],[-3,-22],[0,-22],[-6,-84],[2,-30],[-11,-33],[0,-28],[4,-11],[-13,-31],[-2,-28],[-9,-60],[-3,-38],[-10,-33],[2,-32],[-11,-62],[-3,-56],[2,-6],[10,40],[2,-4],[0,-35],[4,39],[4,9],[-2,-43],[-8,-52],[0,-56],[4,-17],[-2,-18],[2,-24],[-2,-73],[-5,-17],[2,-56],[-8,27],[-3,-20],[3,-8],[15,-81],[0,-36],[3,-26],[1,-61],[-6,-25],[-2,-56],[4,-23],[-6,-25],[-5,-57],[1,69],[6,39],[0,22],[-2,30],[6,23],[-4,69],[2,50],[-4,22],[-9,0],[-7,11],[2,35],[-2,47],[2,34],[-4,6],[2,26],[-7,-31],[1,52],[1,27],[-4,7],[4,36],[-2,3],[-6,-43],[-5,-22],[-4,-60],[-9,-56],[-5,-17],[-6,-76],[4,-30],[-4,-70],[-7,-91],[0,-68],[-2,-48],[2,-14],[-6,-56],[-1,-39],[2,-17],[-4,-40],[0,-27],[-4,-33],[0,-22],[-9,-114],[-5,-38],[-2,-65],[-2,-22],[-3,9],[-2,-29],[-17,-111],[2,-65],[-2,-61],[4,-52],[-2,-48],[2,-48],[3,-10],[1,-85],[1,-30],[4,-24],[-5,-9],[0,-59],[-4,34],[0,-52],[-4,6],[-1,55],[1,42],[-2,50],[0,76],[-3,14],[2,49],[-4,47],[0,29],[-2,27],[2,47],[-2,7],[-3,-24],[-6,-50],[-2,59],[-9,-11],[-14,-57],[-8,2],[2,31],[20,59],[9,21],[0,24],[4,37],[-4,25],[0,26],[9,6],[6,25],[4,-1],[5,44],[3,62],[4,26],[-2,13],[-5,-23],[3,38],[6,37],[0,35],[7,52],[-3,18],[-6,-54],[-9,-11],[-5,-41],[3,-9],[-3,-38],[0,-22],[-4,-6],[-2,-29],[4,0],[-6,-32],[-10,-43],[-2,-30],[-6,-14],[-5,-23],[-8,-14],[-8,-32],[-22,-22],[0,14],[9,14],[3,17],[4,4],[7,43],[0,12],[9,35],[8,42],[-1,21],[4,2],[-2,37],[11,112],[9,5],[8,31],[-2,44],[-2,34],[-2,51],[7,22],[0,13],[-7,26],[0,32],[2,26],[-2,39],[7,48],[1,38],[-2,18],[14,14],[2,34],[-5,28],[7,66],[-2,9],[7,36],[2,42],[6,32],[7,60],[-9,-5],[7,27],[4,31],[-2,31],[3,20],[-5,62],[4,4],[2,-26],[9,55],[3,45],[0,18],[5,13],[2,44],[-7,11],[6,18],[3,-14],[2,28],[-2,29],[5,40],[-3,22],[-5,-36],[3,-12],[-5,-52],[-7,4],[-4,-36],[-7,27],[-2,14],[5,59],[4,4],[4,32],[5,16],[3,17],[-3,40],[5,19],[7,46],[3,45],[-4,20],[4,50],[6,38],[3,31],[-2,38],[5,27],[2,66],[5,55],[1,31],[0,100],[-8,-27],[-2,-25],[0,33],[-4,23],[3,34],[-4,-1],[0,32],[4,49],[-6,16],[0,16],[-7,-3],[1,19],[-5,-5],[0,20],[-4,-2],[-5,-24],[-9,-20],[-2,-13],[-15,4],[-8,-21],[-10,-61],[-3,-40],[-2,-10],[-2,-33],[-7,-35],[-11,-140],[0,-47],[-6,-51],[1,-50],[-4,-18],[-2,-43],[-4,-20],[-3,-30],[-4,-22],[-3,-4],[-2,36],[4,5],[9,46],[0,55],[-4,-27],[-2,-34],[-3,-7],[3,73],[11,82],[2,21],[-6,57],[-7,-3],[-7,-40],[-9,-30],[-6,0],[-12,-43],[-4,6],[-2,20],[-7,17],[-15,26],[-3,-10],[-9,-3],[-11,26],[-9,5],[-18,20],[-4,-18],[7,-61],[-2,-67],[2,-15],[8,-9],[5,-46],[-4,-4],[2,-28]],[[6491,96798],[12,14],[2,10],[9,8],[9,31],[0,18],[20,42],[8,31],[7,9],[5,21],[9,-11],[13,20],[16,17],[15,29],[0,8],[15,25],[5,16],[15,24],[9,37],[11,22],[18,66],[5,39],[9,28],[0,160],[4,13],[11,-19],[9,2],[7,62],[-2,61],[11,19],[0,26],[20,64],[7,5],[10,21],[1,14],[-3,22],[0,25],[-20,77],[-11,29],[-2,12],[-15,53],[-10,21],[-13,14],[-15,47],[-23,22],[-9,-15],[-6,-1],[-11,15],[-3,18],[-6,11],[-3,24],[-6,15],[-7,5],[-9,28],[-9,38],[-11,8],[-9,31],[-4,34],[-4,9],[2,29],[-3,31],[-4,9],[-5,34],[0,24],[-8,11],[-3,35],[-8,26],[-7,5],[0,-34],[-13,-35],[-5,-5],[-11,-33],[-2,-12],[-14,-12],[-9,-21],[0,-17],[-8,-35],[-2,-39],[2,-40],[0,-73],[2,-11],[0,-56],[4,-37],[0,-76],[-2,-36],[-4,-22],[0,-27],[-3,-18],[-2,-36],[3,-17],[-9,-14],[0,-28],[-3,-10],[0,-36],[-2,-14],[0,-34],[-7,-65],[-11,-22],[2,-21],[-6,-28],[-3,-50],[1,-48],[15,-55],[7,-39],[9,-2],[6,-8],[-2,-17],[5,-21],[2,-29],[4,-8],[2,-22],[7,-41],[7,-8],[2,-74],[-11,-52],[-9,-61],[-2,-73],[0,-62],[6,-34],[9,-10]],[[6289,96381],[6,10],[3,31],[-2,3],[-1,40],[5,1],[-2,25],[-7,-3],[-5,11],[-4,-19],[-11,22],[-13,0],[-4,-22],[1,-21],[5,-19],[9,-9],[16,-47],[4,-3]],[[6175,95974],[23,16],[7,21],[10,43],[9,59],[0,17],[-8,50],[-5,8],[-11,27],[-20,4],[-5,-28],[-2,-32],[0,-50],[-6,-41],[-7,-13],[-7,-28],[0,-27],[9,-21],[13,-5]],[[6280,95845],[14,25],[17,100],[0,23],[11,20],[7,-16],[13,-9],[3,-15],[11,-19],[8,6],[7,-6],[3,12],[6,-3],[5,12],[0,16],[20,70],[8,1],[1,22],[4,20],[7,-4],[8,24],[9,6],[7,14],[4,21],[1,60],[-3,23],[-6,33],[-7,16],[-2,23],[-9,0],[-2,9],[-14,29],[-9,0],[-6,-10],[-31,56],[-14,1],[-7,9],[-10,-10],[0,-13],[-9,-13],[2,-21],[-5,-20],[3,-14],[0,-82],[-5,-39],[0,-42],[-9,-23],[-4,3],[-7,26],[-20,-43],[-7,-5],[0,-15],[-11,-45],[-4,-23],[0,-32],[-3,-13],[0,-41],[7,-54],[0,-18],[5,1],[4,-24],[7,0],[2,-9]],[[6104,95611],[7,-3],[6,22],[27,10],[9,12],[9,-1],[7,9],[6,-9],[0,-28],[7,1],[5,46],[11,13],[2,-12],[7,11],[9,-2],[8,-15],[3,9],[9,-10],[8,7],[0,15],[7,-2],[-2,30],[-7,36],[-18,51],[-9,16],[-4,-4],[-6,13],[-7,-10],[-23,-20],[-22,-38],[-15,0],[-7,9],[-22,5],[-9,5],[-14,-10],[-2,-7],[5,-59],[11,-35],[0,-42],[-2,-20],[6,7]],[[5928,95508],[-4,1],[0,-18],[4,17]],[[5897,94994],[3,1],[6,26],[2,23],[7,32],[-2,25],[7,27],[6,55],[7,3],[5,36],[0,25],[-5,5],[2,26],[0,30],[9,12],[0,20],[6,8],[1,24],[6,-8],[2,-27],[-6,-8],[4,-21],[5,8],[7,-6],[-7,43],[2,29],[7,10],[2,16],[0,35],[4,26],[12,27],[-1,14],[-17,47],[2,-21],[-4,-9],[-16,19],[-3,16],[-8,2],[-2,-22],[-10,-21],[-1,-25],[-7,-5],[-2,-22],[-7,26],[4,9],[-11,0],[0,-15],[-6,-16],[0,-27],[4,-5],[6,-29],[-10,-13],[-1,23],[-6,-22],[2,19],[4,8],[0,29],[-8,-17],[-3,-27],[-4,20],[13,17],[2,32],[-13,20],[-22,14],[-3,-9],[-6,-46],[-2,-38],[-5,-30],[-6,-16],[0,-28],[-3,-22],[-11,-44],[0,-66],[-4,-22],[-11,-28],[9,-8],[17,-4],[20,2],[3,-28],[9,-29],[2,-35],[7,-33],[9,-24],[8,-13]],[[5312,94634],[7,3],[2,22],[-5,4],[-4,30],[0,46],[2,14],[-9,32],[-6,2],[-9,18],[-11,83],[0,18],[-9,-9],[-4,-29],[0,-41],[4,-20],[0,-31],[13,-48],[5,-17],[9,-11],[4,-15],[2,-34],[5,-24],[4,7]],[[5503,94343],[3,12],[13,14],[7,30],[2,44],[4,13],[-2,39],[-5,36],[-1,28],[-5,8],[0,46],[2,31],[0,38],[-7,6],[3,20],[-11,21],[-1,23],[-17,43],[-11,-21],[-11,1],[-20,-13],[-10,-25],[-4,-33],[-6,-18],[-9,-6],[-14,-21],[-9,-53],[1,-59],[10,-41],[3,-48],[4,-20],[14,-18],[10,-23],[14,-48],[11,-1],[0,13],[7,-1],[2,14],[5,-9],[2,-25],[17,16],[9,-13]],[[31458,99705],[-3,-2]],[[31455,99703],[0,-2]],[[31455,99701],[3,4]],[[31007,99460],[3,38],[-7,28],[-8,9],[-14,-37],[4,-35],[7,-10],[6,8],[7,-10],[2,9]],[[31693,99402],[24,24],[5,-8],[4,21],[-17,9],[-10,-3],[-2,19],[-13,8],[0,10],[-9,12],[0,-11],[-7,-1],[-17,18],[-5,-6],[-5,-21],[1,-20],[9,0],[7,-10],[1,-13],[6,4],[12,-13],[2,-13],[14,-6]],[[31713,99196],[13,-3],[6,16],[-1,30],[-6,-15],[-7,-4],[6,24],[-1,10],[-11,-46],[-5,-36],[6,24]],[[31458,99681],[-3,4],[-7,-20],[-5,3],[0,-20],[-5,3],[-4,-25],[-10,16],[-7,30],[-13,-24],[-3,-19],[-7,-18],[-7,0],[-26,35],[-3,-10],[-7,4],[-2,-19],[-7,5],[-3,12],[-13,-16],[-4,-12],[-8,5],[0,-13],[-6,-9],[-9,25],[0,12],[6,-12],[-2,19],[-13,24],[-5,-8],[-13,8],[-1,-18],[-6,-9],[5,29],[-7,11],[3,16],[-9,-6],[-2,-17],[-5,-9],[-2,-23],[-21,-4],[-10,34],[-16,-9],[-7,-12],[-3,19],[-5,-10],[0,-47],[9,-16],[4,1],[-2,-21],[-10,-17],[3,-33],[4,-7],[-5,-25],[5,-16],[-1,-39],[3,-15],[-2,-24],[8,-34],[0,-19],[-5,-20],[-1,-31],[-4,-40],[-12,-17],[-10,-67],[0,-17],[12,-14],[9,-17],[10,-28],[1,-21],[-4,-38],[1,-31],[10,-28],[9,-6],[22,6],[11,23],[10,1],[11,9],[10,-9],[8,5],[11,-9],[14,22],[11,7],[2,-14],[18,-15],[14,12],[10,-4],[5,10],[21,13],[5,-20],[17,-6],[25,23],[5,-10],[10,17],[10,1],[6,-13],[-2,18],[4,12],[5,-3],[5,-25],[-1,28],[8,9],[1,20],[7,-20],[-7,-13],[-5,-20],[10,4],[3,11],[14,17],[7,0],[3,-19],[13,16],[14,-2],[4,15],[13,8],[4,23],[6,8],[7,-11],[0,16],[9,26],[5,-11],[3,19],[12,14],[7,-20],[1,11],[6,-22],[0,25],[-5,24],[3,59],[-3,10],[4,15],[-3,12],[8,38],[4,10],[-6,25],[-5,-30],[-3,7],[3,30],[-8,-3],[-10,17],[1,17],[-10,-12],[-5,31],[-6,16],[-4,28],[0,18],[-5,34],[0,21],[-11,18],[2,27],[-1,23],[-10,8],[-4,22],[-4,-2],[-4,16],[-18,11],[-5,-13],[-7,0],[-8,31],[-5,-15],[-7,4],[-15,29],[-3,13],[-11,-8],[-5,15],[3,-27],[8,0],[-7,-20],[-4,1],[-6,20],[0,12]],[[25363,83858],[10,33],[-7,11],[-10,-10],[-20,6],[-21,21],[0,-5],[16,-17],[15,-9],[11,0],[11,-12],[-5,-18]],[[25528,83851],[-9,10],[0,-8],[9,-8]],[[25528,83845],[0,6]],[[25540,83827],[-15,20],[7,-19],[9,-11],[-1,10]],[[25324,83773],[-2,18],[-1,-29],[2,-25],[1,36]],[[25388,83562],[-8,-18],[3,-21],[4,7],[1,32]],[[25414,83320],[-7,7],[5,-38],[2,31]],[[25399,83267],[2,-22],[5,-21],[6,-1],[-2,26],[1,32],[-4,39],[-3,-20],[1,-30],[-5,3],[-3,28],[-4,7],[6,-41]],[[26061,77327],[5,122],[0,25],[4,82],[0,24],[3,55],[1,42],[9,219],[3,49],[1,46],[2,24],[1,46],[4,69],[5,128],[2,65],[3,53],[2,70],[7,186],[9,206],[4,127],[4,81],[0,27],[3,52],[4,125],[5,105],[0,20],[5,109],[0,22],[5,106],[0,21],[5,107],[0,26],[4,85],[3,96],[5,104],[2,74],[2,25],[5,149],[2,23],[4,-2],[3,23],[-4,15],[1,26],[12,46],[-5,18],[1,25],[6,9],[-1,21],[2,39],[7,57],[-5,18],[6,7],[-2,15],[6,61],[14,57],[6,46],[0,78],[8,18],[1,23],[-5,27],[4,11],[-6,15],[5,8],[-9,44],[-1,25],[20,40],[6,30],[7,19],[-7,19],[0,17],[-5,27],[-13,5],[4,27],[-14,23],[-13,62],[4,64],[-3,33],[0,45],[2,9],[-4,27],[-2,34],[1,18],[-5,7],[2,30],[-9,35],[0,28],[-6,1],[1,27],[-3,19],[2,41],[0,51],[-2,20],[4,11],[-1,20],[3,27],[-2,21],[0,37],[9,43],[4,9],[-2,14],[4,25],[4,6],[0,72],[5,36],[-1,32],[-8,69],[2,56],[-3,2],[-1,44],[-4,53],[2,2],[1,54],[-5,46],[-3,0],[0,31],[4,37],[0,29],[-3,14],[2,52],[5,4],[6,25],[0,13],[9,46],[0,33],[5,24],[3,56],[-1,20]],[[26229,82873],[-73,0],[-76,6],[-59,1],[-35,3],[-80,-1],[-86,0],[-66,-1],[-34,-4],[-34,0],[-13,-2],[-48,0],[-19,4],[-4,-3],[-96,1],[3,43],[-7,83],[-3,10],[-3,44],[5,42],[10,29],[2,17],[8,29],[4,52],[8,27],[6,6],[3,20],[5,3],[13,34],[3,41],[0,38],[-6,69],[-3,8],[-5,47],[0,25],[4,13],[-1,17]],[[25552,83574],[-1,7],[6,37],[7,8],[-2,26],[-10,15],[-5,23],[-2,41],[-8,35],[-6,1],[-2,28],[-5,-2],[-2,21],[-8,-8],[-2,14],[-2,-23],[2,-19],[-5,-2],[-1,-27],[-3,18],[4,27],[-4,29],[7,9],[5,-12],[5,7],[6,-17],[3,12],[-13,17],[2,7],[-6,18],[-22,27],[-22,11],[-20,18],[-7,2],[-32,-4],[-23,7],[4,-10],[17,-6],[-1,-17],[6,-16],[7,22],[9,9],[18,-22],[6,2],[8,-15],[5,-33],[3,6],[0,27],[4,-10],[-4,-17],[-1,-21],[-5,11],[-5,-29],[-9,-23],[-8,-44],[1,-30],[5,-12],[-3,-28],[-3,2],[-3,29],[2,19],[-7,-8],[-12,-37],[-3,-80],[-5,-18],[9,-75],[0,-38],[-3,-22],[1,-45],[-3,-14],[2,-19],[-2,-16],[0,-42],[-3,-22],[-1,-36],[4,-36],[-11,11],[-5,23],[-1,22]],[[25399,83267],[-8,-8],[0,-27],[8,-38],[-5,-16],[-6,23],[2,67],[-3,25],[4,9],[-3,25],[-3,-7],[-2,-92],[-1,26],[2,30],[1,64],[-2,-15],[-4,7],[-2,42],[2,21],[-2,24],[-7,36],[-7,-32],[2,30],[6,9],[0,45],[-5,22],[-1,17],[2,42],[-2,15],[0,77],[-1,39],[-4,39],[-5,-6],[-1,19],[-13,22],[-2,-34],[3,-4],[0,-29],[-7,2],[-12,-22],[-11,-9],[-5,25],[0,-29],[-7,-17],[-6,-1],[-6,30],[-4,-7]],[[25284,83706],[-1,-121],[-1,-26],[0,-82],[-1,-2],[0,-111],[-1,-5],[0,-109],[-1,-1],[0,-99],[-1,-95],[-1,-11],[0,-79],[-1,-7],[0,-86],[-1,-17],[0,-74],[-1,-4],[0,-90],[-1,-7],[0,-87],[-1,-4],[0,-80],[-1,-15],[0,-76],[-1,-7],[0,-79],[-1,-8],[0,-79],[-1,-17],[0,-79],[-2,-168],[-1,-10],[0,-94],[-1,-6],[0,-93],[-1,-5],[0,-162],[5,-163],[0,-37],[2,-47],[6,-230],[0,-40],[2,-46],[4,-163],[0,-36],[3,-86],[0,-35],[3,-89],[0,-40],[4,-169],[2,-51],[2,-85],[0,-39],[2,-44],[0,-35],[2,-52],[0,-41],[3,-87],[1,-74],[2,-47],[0,-40],[2,-45],[0,-34],[3,-82],[0,-40],[2,-45],[1,-78],[3,-124],[2,-44],[0,-37],[2,-46],[1,-79],[4,-125],[4,-152],[2,-110],[4,-114],[0,-41],[2,-81],[1,-3],[5,-195],[0,-35],[3,-83],[0,-35],[3,-90],[0,-41],[3,-82],[2,-104],[3,-72],[1,-64],[2,-35],[0,-35],[5,-165],[1,-62],[-9,-16],[-7,-25],[-4,-43],[-9,-62]],[[25338,77311],[0,-18],[6,1],[123,5],[107,2],[139,15],[79,2],[49,-1],[86,3],[51,1],[83,6]],[[24919,75868],[-3,7],[-1,42],[17,58],[4,34],[-6,30],[-6,-4],[-6,-21],[-9,-7],[-6,20],[-1,32],[11,29],[7,26],[-1,19],[-10,18],[-5,-7],[-10,23],[0,17],[-4,28],[-10,11],[-3,13],[-6,6],[-2,-17],[-6,-8],[-13,34],[-2,18],[1,48],[9,49],[7,8],[7,-25],[5,3],[2,23],[-3,30],[-9,18],[-6,-1],[-9,22],[-3,31],[4,34],[9,13],[2,20],[-2,20],[-9,3],[-4,-30],[-6,-24],[-5,-8],[-9,8],[-3,11],[-3,62],[5,37],[4,15],[-4,59],[-7,33],[4,10],[-3,11],[-4,-27],[-2,-45],[2,-36],[-5,-21],[-9,13],[-3,40],[-11,29],[-3,52],[2,13],[10,0],[-3,-29],[3,-21],[7,3],[10,36],[-4,36],[-6,23],[2,13],[-1,41],[-16,13],[-1,25],[5,33],[13,2],[9,46],[-5,14],[-2,25],[-6,1],[4,44],[10,14],[1,19],[-5,25],[-6,2],[-8,-14],[-7,4],[-4,14],[-6,81],[0,31],[-5,20],[-22,-23],[-2,6],[-3,60]],[[24751,77311],[3,28],[9,31],[4,6],[2,54],[-6,30],[-3,1],[-10,27],[3,19],[-3,20],[-8,-22],[-11,19],[-8,20],[-6,-15],[0,-43],[-3,-20],[-5,-7],[-6,12],[-1,33],[8,57],[-4,18],[0,40],[5,35],[0,19],[-5,21],[-9,2],[-5,-10],[-1,-29],[6,-20],[-3,-49],[-5,1],[-5,22],[3,57],[-5,6],[-3,24],[7,34],[6,4],[10,-7],[6,13],[-3,40],[-12,47],[-9,0],[-2,-19],[1,-24],[4,-13],[-1,-26],[-6,-10],[-7,33],[1,59],[-1,22],[5,43],[7,27],[1,36],[-11,37],[-2,26],[0,39],[6,41],[-2,36],[-13,35],[-10,20],[-3,38],[3,30],[-1,17],[-5,4],[-4,-14],[0,-22],[5,-46],[-12,10],[-10,-7],[-3,12],[0,27],[6,24],[1,25],[-7,37],[-10,-3],[-8,12],[-4,81],[-2,9],[-8,-7],[-5,-17],[-3,-25],[-4,-2],[-4,15],[0,22],[6,33],[8,21],[10,-7],[10,6],[2,32],[-8,31],[-9,-6],[-11,-33],[-9,23],[-4,23],[2,33],[8,23],[7,-7],[5,6],[1,26],[-5,32],[1,27],[-3,13],[-25,9],[2,29],[5,20],[0,22],[-6,10],[-5,-10],[-4,-47],[-8,22],[-8,0],[-5,32],[3,13],[9,7],[7,17],[1,27],[-12,57],[-3,28],[1,20],[6,38],[16,31],[0,24],[-9,18],[-9,-21],[-14,11],[-8,-17],[-3,19],[0,59],[5,26],[8,4],[8,-15],[6,12],[5,36],[-2,13],[-14,22],[-12,-26],[-8,-44],[-16,15],[-3,16],[2,33],[14,19],[11,46],[-1,30],[-6,17],[-6,-2],[-15,30],[2,36],[11,38],[1,10],[-14,61],[-1,26],[7,8],[9,-12],[2,-12],[-2,-32],[3,-34],[11,31],[3,39],[-4,25],[-13,18],[-7,0],[-1,26],[10,26],[5,2],[11,-20],[4,-23],[1,-50],[5,-16],[5,8],[0,38],[-12,50],[-4,27],[-7,30],[0,68],[4,23],[0,18],[8,43],[3,-47],[4,-20],[8,10],[-1,31],[-6,41],[-6,9],[3,55],[-1,52],[-5,17],[-13,2],[-3,-15],[-8,1],[-4,22],[0,23],[22,61],[-1,39],[-10,23],[-1,22]],[[24512,80115],[-75,-3],[-112,-2],[-64,0],[-30,-2],[-115,-5],[-85,-5],[-65,-2],[-74,0],[-67,-2],[-114,0]],[[23711,80094],[0,-686],[-1,-57],[-8,-11],[5,-9],[-7,-14],[-9,12],[-10,1],[-4,-9],[2,-24],[-17,11],[1,27],[-9,13],[0,-23],[3,-28],[-7,10],[-4,37],[-5,-10],[3,-26],[-3,1],[-6,45],[-4,-6],[-1,-23],[-5,3],[-1,34],[-9,-2],[-4,-25],[6,-8],[0,-17],[-9,15],[-5,-30],[-6,1],[-6,-20],[5,-14],[-2,-23],[4,-16],[-11,7]],[[23587,79230],[1,-67],[0,-165],[1,-9],[0,-159],[1,-9],[0,-176],[1,-7],[0,-169],[1,-15],[0,-168],[1,-13],[0,-147],[1,-15],[0,-167],[1,-26],[0,-156],[1,-2],[0,-151],[1,-4],[0,-162],[1,-7],[0,-131],[1,-2],[0,-136],[1,-12],[0,-151],[1,-8],[0,-113],[1,-3],[0,-154],[-3,-69],[-2,-88],[-2,-34],[-1,-63],[-5,-126],[0,-26],[-4,-96],[0,-27],[-3,-64],[-5,-153],[0,-27],[-3,-59],[0,-27],[-4,-92],[-3,-90],[0,-26],[-4,-93],[0,-27],[-4,-95],[0,-24],[-3,-77],[0,-32],[-3,-97],[-3,-66]],[[23550,75148],[49,1],[298,0],[2,1],[247,0],[49,1],[73,-2],[88,0],[42,-1],[42,3],[99,0],[4,-1],[251,0],[-1,28],[4,4],[3,58],[-3,7],[2,24],[9,17],[7,3],[3,14],[1,45],[-4,18],[-1,37],[5,31],[-4,16],[-1,26],[-9,9],[-4,33],[1,20],[-5,2],[-2,18],[-11,16],[-4,26],[-4,3],[-4,31],[-1,38],[-8,23],[-8,9],[-1,19],[-6,15],[0,23],[-4,10],[0,21],[-4,16],[-1,26],[-7,41],[42,-1],[44,-3],[74,-2],[27,-3]],[[19531,74419],[0,2245],[-1,14],[0,129],[1,18],[0,1530],[-1,14],[0,445],[1,21],[-1,105],[0,3481]],[[19530,82421],[-58,-3],[-265,0],[-43,2],[-97,0],[-40,-1],[-62,2],[-16,-27],[-91,-143],[-41,-63],[-30,-48],[-66,-101],[-10,-17],[-78,-119],[-42,-65],[-98,-148],[-47,-70],[-46,-71],[-43,-64],[-91,-143],[-46,-71],[-44,-66],[-187,-285],[-65,-97],[-1,-20],[4,-3],[-3,-18],[3,-16],[-1,-18],[4,-10],[0,-19],[-6,14],[3,-20],[1,-30],[-3,-11],[0,-23],[7,-6],[6,-26],[6,-59],[6,-46]],[[17950,80512],[5,-38],[4,11],[20,13],[0,-8],[9,-1],[5,-20],[11,-10],[-2,-48],[6,-35],[5,-9],[7,-31],[1,-95],[-5,-30],[4,-26],[0,-27],[-6,5],[-4,-65],[-4,-19],[-15,-9],[-7,16],[-9,-9],[-5,-24],[-3,22],[-4,-10],[0,-24],[-10,-45],[3,-58],[5,-35],[1,-28],[0,-75],[-4,-22],[5,-15],[-3,-26],[-11,-16],[-2,-26],[6,-26],[3,-52],[-3,-34],[-5,-27],[7,-5],[4,-13],[8,6],[4,-5],[6,-28],[0,-27],[10,-67],[7,-16],[0,-18],[10,-32],[-4,-35],[0,-24],[5,-23],[-3,-25],[3,-10],[-3,-25],[5,-13],[-5,-11],[1,-18],[9,-20],[1,-25],[-5,-25],[2,-26],[-4,-67],[-3,-23],[3,-14],[-3,-47],[7,-8],[0,-19],[-6,-25],[5,-6],[-2,-21],[-6,-15],[4,-43],[6,-8],[12,-53],[-3,-8],[8,-20],[1,-89],[7,-39],[6,0],[7,-14],[4,-20],[7,-3],[11,-48],[8,-4],[9,-26],[0,-19],[17,-66],[-1,-9],[9,1],[-1,-64],[-6,-25],[-5,-41],[-6,-17],[-8,-6],[-4,-26],[-7,-26],[-5,-2],[-4,-32],[-7,-14],[-4,-21],[-10,5],[-3,-12],[2,-89],[-7,-72],[-9,-33],[3,-25],[-4,-15],[0,-28],[-5,-23],[1,-28],[-4,-26],[0,-21],[-14,-38],[-3,-20],[-7,-22],[-6,-54],[-2,-38],[-10,-36],[-5,-26],[2,-44],[0,-61],[-2,-23],[2,-20],[-1,-32]],[[17974,77303],[-1,-43],[9,-43],[-2,-31],[-10,-28],[5,-23],[12,-7],[4,-19],[1,-73],[-3,-28],[-2,-83],[-3,-34],[1,-52],[-3,-48],[-4,-29],[-2,-43],[-8,-31],[-3,-26],[-4,-78],[6,-34],[-1,-53],[-4,-19],[6,-21],[0,-33],[-10,-51],[3,-50],[-7,-25],[2,-34],[-1,-56],[1,-34],[-4,-21],[5,-37],[-3,-31],[10,-20],[2,-12],[-10,-35],[-3,-18],[0,-27],[-6,-17],[0,-33],[-4,-28],[1,-40],[5,-29],[-5,-9],[2,-24],[-6,-51],[10,-26],[10,-2],[16,-46],[2,15],[13,-30],[16,0],[4,9],[-2,24],[7,-2],[4,-13],[7,19],[9,-31],[11,6],[3,22],[9,31],[7,46],[-2,25],[11,15],[3,32],[7,17],[20,-21],[4,5],[4,-25],[0,-30],[6,-50],[-2,-25],[6,-10],[10,-93],[5,-12],[0,-285],[1,-84],[-1,-21],[0,-148],[-1,-15],[0,-342],[-1,-22],[0,-170],[1,-10],[-1,-76]],[[18136,74419],[321,0],[4,-1],[177,0],[1,-1],[248,0],[64,1],[23,-3],[70,0],[83,-2],[7,9],[200,0],[70,-3],[127,0]],[[17256,80417],[0,25],[-4,-6],[4,-19]],[[16872,80079],[6,8],[2,24],[3,13],[2,23],[7,34],[0,9],[8,38],[5,11],[6,27],[23,82],[2,28],[-7,-12],[-6,20],[-6,8],[-9,-35],[-12,-30],[-1,-38],[-4,-9],[-4,-29],[-2,-5],[-3,-47],[-8,-45],[-2,-49],[-4,-4],[-1,-25],[5,3]],[[16609,79724],[10,26],[9,10],[10,42],[-3,13],[-9,7],[-7,-5],[-13,-19],[-8,-38],[-2,-27],[5,10],[8,-19]],[[16867,79454],[5,5],[14,-3],[13,49],[3,-9],[10,27],[6,3],[16,28],[-2,21],[17,78],[3,22],[-4,26],[-4,1],[-13,-27],[-13,3],[-9,-4],[-9,-38],[0,-17],[4,-32],[-4,-44],[-8,-19],[-12,-9],[-13,-61]],[[16749,79468],[-5,-19],[5,-8],[0,27]],[[16960,79101],[-2,-14],[5,-28],[9,-11],[0,16],[-5,8],[3,32],[-7,16],[0,-17],[6,-7],[-2,-24],[-1,25],[-6,4]],[[16464,78669],[3,2],[-3,25],[2,28],[10,25],[9,-3],[0,34],[1,23],[-13,7],[-10,34],[-12,7],[-5,19],[-17,-43],[-12,-85],[-7,-18],[3,-15],[11,6],[8,-5],[9,-25],[13,7],[10,-23]],[[16378,78648],[8,4],[6,16],[1,24],[-13,2],[-2,9],[-14,-27],[-4,12],[-7,-9],[9,-40],[7,9],[9,-31],[0,31]],[[16504,78616],[16,7],[9,23],[15,-7],[17,28],[5,25],[14,10],[8,-17],[0,-19],[7,-20],[6,-2],[12,30],[-7,18],[-4,32],[-9,12],[-20,4],[-16,38],[-8,-6],[-12,6],[-15,-15],[-1,5],[-8,-24],[-4,-35],[4,-33],[-6,-26],[-9,-15],[2,-24],[4,5]],[[15835,73256],[9,1],[15,38],[-4,23],[-14,-28],[-11,-18],[-2,-24],[7,8]],[[15817,73220],[0,-24],[4,17],[-4,7]],[[15804,73155],[-4,9],[-3,-11],[6,-14],[1,16]],[[15962,72899],[-7,-9],[5,-12],[2,21]],[[15964,72905],[-4,-30],[2,-11],[4,38],[-2,3]],[[15981,72902],[6,2],[-14,11],[-5,-29],[-2,-31],[11,12],[-2,18],[6,17]],[[15919,72818],[0,20],[-4,-3],[-4,-28],[8,11]],[[15997,72824],[-2,-3],[7,-26],[0,24],[-5,5]],[[16478,66858],[0,2238],[2,511],[0,184],[-2,153],[0,422],[0,67],[0,349],[-1,100],[0,240],[1,85],[0,153],[0,98],[62,228],[24,86],[45,171],[11,37],[45,171],[47,176],[1,5],[32,119],[69,259],[95,367],[8,24],[90,348],[9,35],[67,254],[89,346],[96,377],[67,261],[75,298],[18,70],[47,191],[93,368],[55,221],[0,2],[71,287],[67,273],[8,31],[79,320],[44,183],[6,22],[76,315]],[[17950,80512],[-13,5],[-98,32],[-129,46],[-83,31],[-125,49],[-81,34],[-34,13],[-62,27],[-45,18],[-3,-43],[1,-18],[-1,-56],[-9,-72],[-8,-24],[-8,5],[-1,-18],[3,-19],[6,-5],[9,29],[1,39],[8,46],[0,34],[3,21],[6,0],[0,-40],[-6,-37],[0,-33],[-14,-48],[-1,-27],[-11,-2],[-6,14],[-1,25],[1,44],[-2,4],[-4,-47],[1,-77],[3,-15],[8,3],[1,-33]],[[17256,80417],[0,-11],[-9,6],[-3,44],[-1,-52],[-7,-36],[0,-29],[7,-17],[2,-27],[-3,-87],[-4,-63],[-1,-40],[-5,-34],[-4,-73],[-13,-101],[-10,-65],[-25,-147],[-9,-41],[-9,-32],[-13,-31],[-4,-30],[-7,-33],[-11,-36],[-13,-4],[-1,-28],[-17,-82],[-10,-20],[-1,-13],[-16,-42],[-1,-19]],[[17068,79274],[-1,-3]],[[17067,79271],[-11,-11]],[[17056,79260],[0,2]],[[17056,79262],[-4,-5],[-14,-39],[-13,-50],[-6,-38],[-9,-35],[-7,-8],[0,-30],[-3,11]],[[17000,79068],[-15,-14],[-5,5],[4,38],[-8,-18],[-1,-37],[-15,25],[0,34]],[[16960,79101],[0,22],[-4,13],[-18,-31],[-8,-21],[-7,6],[-5,-40],[0,-28],[8,-25],[1,-53],[-11,-105],[-11,-88],[-6,-38],[-8,-28],[-6,-18],[-26,3],[-9,-4],[-10,13],[-12,-3],[-9,13],[-8,32],[-11,-43],[-22,-21],[-7,1],[-9,-22],[-9,-11],[-5,-18],[-8,-6],[-9,-22],[-4,9],[-5,-6],[-10,-33],[-13,-36],[-3,3],[-5,-43],[-9,-80],[-1,-43],[-5,-17],[-7,0],[-6,-22],[-8,-39],[-6,1],[-12,-53],[-4,-1],[-4,-24],[-22,-32],[-7,-27],[-16,-9],[-14,7],[-10,29],[-7,0],[-18,-31],[-9,0],[-4,14],[-9,2],[-4,-19],[-10,-22],[-8,1],[-14,-36],[-9,-5],[-17,3],[-6,-14],[-30,1],[-14,5],[-4,-5],[-17,18],[-24,9],[-4,12],[-5,-8],[-1,-42],[-4,-14],[-4,-33],[-3,-21],[-19,-44],[-12,4],[-6,-33],[2,-37],[7,-79],[4,-74],[-4,-32],[-7,-31],[6,-58],[3,-59],[0,-29],[-7,-25],[-4,-36],[-7,-2],[4,-65],[2,-14],[3,-63],[3,-52],[0,-105],[-5,-48],[-11,-17],[-3,-19],[-11,-11],[-4,4],[-2,24],[-5,-11],[-2,-15],[-20,-41],[-12,-69],[9,-94],[1,-66],[2,46],[-3,31],[8,-14],[3,-17],[-11,-57],[0,-41],[-6,-44],[-4,-19],[-10,1],[-8,-19],[-11,-2],[-5,-32],[-15,-59],[-7,-38],[-6,-62],[-5,-12],[-7,-47],[-6,-11],[-1,12],[-8,-25],[-5,0],[-8,-21],[-5,3],[0,-33],[-9,-37],[0,-61],[-3,-38],[-8,-34],[-9,-25],[-5,-42],[-10,-27],[-5,-26],[0,-25],[-3,-12],[2,-15],[-6,-46],[0,-18],[-4,-40],[-9,-26],[-11,-13],[-5,-58],[-4,-11],[-7,-64],[-11,-57],[-13,-59],[-10,-20],[-11,-33],[-6,-1],[-7,-22],[-2,-36],[-14,-44],[1,-57],[-3,-15],[0,-42],[-4,-38],[0,-27],[-3,-36],[-4,-58],[1,-27],[-5,-15],[9,-1],[-3,-26],[2,-21],[-3,-17],[-3,7],[-7,-25],[10,-61],[1,-23],[11,29],[1,19],[6,1],[7,-33],[7,-60],[4,-55],[0,-76],[6,-79],[-6,-57],[-5,-35],[-11,-92],[-8,-36],[-10,-24],[-6,10],[-7,25],[-9,-13],[-4,15],[-13,7],[-10,-12],[-8,-17],[-14,-45],[-11,-39],[-9,-50],[-1,-20],[-9,-53],[-7,-12],[-7,-2],[2,-19],[-7,-30],[-2,-27],[-9,-20],[-6,-98],[4,-39],[2,-78],[0,-43],[-6,-47],[-7,-60],[-2,-69],[-5,-30],[-8,-5],[-5,-20],[0,-117],[5,-4],[2,-44],[0,-65],[-5,-82],[0,-68],[2,-19],[5,-6],[2,-27],[4,8],[14,-7],[7,21],[2,60],[4,20],[-2,13],[5,6],[-7,30],[-3,0],[1,30],[4,47],[-7,21],[9,21],[4,18],[-8,14],[6,20],[7,7],[4,-5],[3,23],[14,4],[4,33],[13,17],[0,10],[-7,40],[7,-28],[11,37],[5,-14],[4,12],[3,50],[8,22],[7,8],[7,-9],[2,-14],[11,-3],[0,-10],[-9,5],[-9,-6],[-2,-41],[-14,-8],[0,-23],[-2,-40],[-7,-52],[0,-39],[-4,-84],[-11,-55],[-4,6],[-9,-30],[-4,-36],[10,-7],[3,23],[-1,-40],[-8,-36]],[[15853,73267],[-11,-16],[-12,-6],[3,-45],[6,0],[-4,-93],[-3,-21],[-13,2],[-6,-7],[0,-16],[-7,-23],[0,-11],[-5,-32],[9,19],[5,-35],[2,2],[4,-25],[-2,-32],[9,17],[9,-13],[5,-19],[2,-23],[9,-28],[15,8],[9,42],[7,-3],[6,-17],[23,-30],[11,5],[4,10],[7,0],[11,10],[5,-1],[6,16],[27,24],[11,-8],[7,21],[7,-15],[-12,-15],[7,-13],[4,-26],[3,-8],[2,-49],[7,9],[11,-24],[8,12],[1,29],[-13,39],[-5,4],[9,37],[6,-13],[2,-60],[5,0],[7,32],[4,38],[-2,-32],[4,-19],[-6,0],[0,-20],[-5,12],[-4,-29],[0,-25],[-11,-15],[-5,6],[-2,19],[-11,-8],[-3,16],[0,33],[-4,20],[-15,31],[-10,-16],[-2,-22],[16,-42],[7,0],[2,-41],[5,-24],[1,-37],[7,-36],[-2,-16],[-9,56],[0,29],[-4,25],[-9,33],[-16,41],[-11,-20]],[[15966,72835],[-7,7],[0,10],[-11,21],[-7,-3],[6,-32],[-3,-13],[-15,14],[-3,-18],[-11,-17],[9,-13],[2,-12],[-4,-29],[-3,-11],[-13,10],[-2,-13],[8,-41],[-2,0],[-6,39],[-2,61],[-12,43],[-8,47],[-5,-8],[-9,-33],[-9,8],[-4,-11],[-11,-63],[2,-45],[-6,-18],[1,-32],[-9,-9],[7,18],[-2,23],[5,26],[-1,26],[8,48],[3,12],[-2,19],[-6,3],[-3,-41],[-9,-30],[-13,-35],[-9,-8],[-13,41],[-2,-6],[-13,10],[-5,-38],[2,36],[7,13],[0,50],[-2,24],[-2,56],[10,23],[5,20],[-4,14],[-2,-7],[-7,22],[0,48],[-3,-9],[0,21],[7,20],[2,18],[9,27],[-7,30],[-2,-27],[-4,-17],[-5,0],[2,25],[-4,4],[9,24],[2,38],[-2,11],[-15,9],[-9,-48],[-4,-9],[-6,-26],[-6,-3],[-11,-47],[-4,-23],[-7,-14],[4,24],[4,8],[-10,27],[-5,-13],[-4,-35],[-12,-32],[-4,-41],[-6,-30],[-16,-41],[-14,-5],[5,-6],[-9,-9],[2,-22],[4,-16],[-6,-23],[-2,36],[-3,4],[5,26],[-7,15],[-4,22],[0,17],[5,11],[-16,-7],[4,-20],[2,-31],[5,-58],[9,-112],[-2,-48],[-3,-10],[0,-28],[-8,-57],[13,56],[0,11],[5,12],[1,16],[9,60],[12,57],[4,12],[2,-6],[-6,-32],[-7,-38],[-3,-12],[-11,-83],[-4,-21],[-4,6],[0,-23],[-5,-4],[2,-30],[-11,-64],[-6,-24],[-5,-1],[2,-14],[-6,-17],[2,23],[-2,29],[-5,-35],[2,-17],[0,-42],[-9,-76],[-6,-26],[-2,-29],[-20,-65],[-13,-26],[-5,-28],[-11,-27],[0,-9],[-7,-17],[-4,-46],[-7,-15],[2,-10],[-7,-26],[-9,-67],[-11,-63],[-18,-53],[-4,-37],[-7,-27],[-8,-15],[-5,-32],[-9,-28],[-4,-38],[-6,-17],[-8,-50],[-6,-5],[2,-24],[-5,-23],[3,-8],[6,-38],[5,-62],[0,-56],[-3,-20],[-6,-96],[-2,-8],[0,-23],[-11,-59],[0,-29],[-2,-14],[1,-23],[-8,-49],[0,-20],[2,-23],[-4,-12],[2,-7],[-7,-50],[2,-62],[0,-27],[2,-71],[3,-28],[0,-27],[4,-14],[5,-53],[0,-50],[-2,-16],[-3,-41],[2,-7],[-2,-81],[-2,-40],[-3,-33],[-8,-25],[-2,-45],[2,-38],[-6,-83],[-8,-15],[-6,-26],[-7,-74],[-7,-21],[-4,-40],[-20,-99],[-11,-21],[0,-67],[-7,-39],[-6,-21],[-18,-30],[-7,-45],[-11,-30],[-17,-67],[-1,-13],[-11,-38],[0,-30],[3,-23],[1,-47],[-4,-29],[0,-45],[-5,-35],[-6,-39],[-3,-26],[5,-45],[4,-47],[-1,-24],[6,-49],[4,-64],[9,-78],[3,17],[4,-10],[-5,-24],[9,-73],[9,-63],[2,-29],[3,18],[-9,44],[-3,28],[9,9],[3,13],[0,-25],[4,-7],[-4,-28],[0,-27],[8,-17],[1,-46],[2,-29],[9,-13]],[[15321,68704],[9,3],[9,-27],[2,-11],[-4,-44],[-7,11],[-3,-18],[-4,4],[-7,37],[0,20],[-4,14],[-2,43],[-7,45],[-5,-10],[7,-34],[5,-47],[9,-85],[10,-119],[3,-66],[0,-58],[-5,-38],[-8,-24],[2,-26],[-2,-82],[6,-18],[4,-50],[5,-70],[3,-70],[1,-19],[1,-56],[6,-92],[1,-39],[0,-102],[-3,-36],[-2,-49],[0,-24],[9,-2],[-12,-14],[-2,-25],[0,-53],[-4,-22],[-2,-40],[-5,-47],[0,-44],[-4,-49],[-5,-19],[-6,-11],[-1,11],[-17,-59],[5,-21],[8,-105],[2,-51],[0,-75],[-1,-7],[1,-63],[-2,-18]],[[15305,66853],[36,3],[82,0],[20,-1],[16,3],[9,-8],[53,-2],[25,4],[42,-10],[13,-6],[29,9],[36,1],[29,-2],[49,-1],[35,-6],[36,-2],[40,4],[22,-1],[21,4],[66,3],[76,8],[33,2],[38,-1],[54,2],[24,5],[22,-1],[159,0],[38,1],[9,-2],[61,-1]],[[20922,68406],[133,0],[54,-1],[370,0],[0,1534]],[[21479,69939],[0,280],[1,82],[0,857],[1,91],[0,1633],[1,21],[0,1526]],[[21482,74429],[-134,-5],[-15,0],[-118,-5]],[[21215,74419],[-62,0],[-81,0],[-74,4],[-57,1],[-31,2],[-153,3],[-99,0],[-33,-3],[-60,-1],[-142,0],[-60,1],[-40,2],[-86,0],[-59,2],[-41,0],[-2,-11],[-325,0],[-1,0],[-171,0],[-6,2],[-97,0],[-4,-2]],[[19531,74419],[0,-733],[1,-45],[0,-937],[-5,-161],[0,-728],[1,-52],[0,-154],[1,-10],[0,-2432],[1,-18],[0,-741]],[[19530,68408],[166,0],[124,-2],[25,-1],[108,0],[22,-1],[101,0],[64,1],[76,0],[30,1],[77,6],[149,0],[53,-1],[170,0],[116,-3],[38,0],[73,-2]],[[29863,67880],[-2,30],[-2,-26],[4,-4]],[[29908,66837],[0,154],[1,7],[0,127],[1,4],[0,142],[1,7],[0,216],[-1,2],[0,127],[-1,6],[0,104],[-1,31],[-6,-6],[-6,12],[0,31],[3,29],[-2,24],[3,25],[-6,19]],[[29894,67898],[-3,11],[-6,-36],[-3,15],[-8,11],[-15,-29],[-4,40],[-4,3],[0,20],[-4,-11],[-1,-22],[-2,24],[-4,-17],[-7,12],[-3,-15],[-2,-46],[0,-49],[-2,-17],[1,-64],[-2,0],[0,107],[2,11],[-3,42],[3,15],[-1,25],[-5,17],[-7,-1],[-5,-23],[-5,7],[-3,-22],[-6,18],[0,42],[-6,-21],[-7,0],[-2,24],[-19,10],[-5,-37],[1,-46],[-7,-20],[-3,-22],[2,-27],[-7,-24],[-4,0],[-5,-34],[1,37],[9,5],[3,21],[-2,18],[3,26],[5,17],[2,34],[-2,30],[2,15],[-6,15],[8,-2],[-12,21],[-3,-26],[-17,-1],[-2,14],[-6,-3],[-6,22],[-3,-22],[-7,31],[-9,-33],[-10,-1],[-18,14],[-4,28],[-4,3],[-3,-29],[-4,10],[-6,-16],[-9,1],[-9,28],[0,-21],[-4,13],[-5,-7],[-3,18],[-9,4],[-3,-15],[3,-12],[-3,-14],[-1,-52],[-8,46],[4,7],[-4,16],[-7,9],[-3,26],[-4,0],[-5,22],[-2,23],[-7,7],[-3,-13],[-10,28],[-6,31],[-4,-10],[4,-60],[-2,-9],[0,39],[-3,17],[0,23],[3,2],[2,30],[-7,7],[-15,-43],[1,13],[-13,37],[-4,23],[-6,16],[-6,-17],[-7,21],[-9,1],[-3,18],[-7,-12],[3,23],[-5,2],[-4,16],[-2,-20],[0,38],[-5,-1],[-2,27],[-10,7],[-2,15],[-13,5],[1,18],[-3,14],[-1,-25],[-10,33],[-9,-7],[-7,24],[-4,-4],[-5,20]],[[29390,68423],[0,-37],[-3,-24],[-16,-103],[0,-7],[37,-96],[31,-77],[-19,-128],[0,-54],[2,-57],[0,-59],[2,-46],[0,-67],[1,-67],[4,-194],[0,-77],[2,-65],[0,-63],[2,-73],[0,-57],[2,-58],[2,-211],[1,-31]],[[29438,66772],[21,-1],[106,18],[47,2],[13,2],[-1,61],[14,-9],[4,-34],[-1,-18],[17,-1],[25,10],[0,9],[21,-14],[29,0],[24,3],[56,2],[18,5],[29,1],[21,4],[26,1],[1,24]],[[28446,71643],[-2,-6]],[[28444,71637],[-1,-1]],[[28443,71636],[-1,-2]],[[28442,71634],[0,-4]],[[28442,71630],[0,-1]],[[28442,71629],[-1,-4]],[[28441,71625],[0,-3]],[[28441,71622],[5,21]],[[28454,71742],[-3,-26],[3,-42],[4,-27],[-5,15],[-9,-37],[-1,-19],[-11,-11]],[[28432,71595],[-6,-40]],[[28426,71555],[8,-38],[13,-50],[8,25],[29,127],[-15,64],[-15,59]],[[28861,70541],[-4,-29],[3,-6]],[[28860,70506],[1,35]],[[28898,70237],[-7,13],[-7,25],[-5,40],[-6,64],[-13,79],[-7,16],[-9,53],[1,28],[14,52],[-2,30],[1,22],[-6,49],[-1,45],[6,37],[9,39],[7,59],[-1,21],[7,19],[-3,13],[3,28],[0,-27],[9,19],[5,20],[1,35],[8,38],[2,20],[0,40],[3,45],[-5,35],[0,61],[2,37],[0,65],[2,15],[15,52],[8,63],[-1,73],[3,27],[13,57],[7,46],[8,30],[5,30],[13,32],[12,-7],[3,-8],[2,57],[1,73],[3,54],[0,75],[-5,-29],[3,-20],[-1,-57],[-4,5],[-8,-7],[0,10],[-9,-13],[5,30],[1,47],[-5,-16],[0,14],[7,19],[5,-6],[2,22],[-16,19],[-1,9],[-10,14],[-10,1],[13,21],[0,14],[7,-15],[1,-12],[11,-7],[5,28],[8,-26],[3,-20],[0,72],[2,60],[0,94]],[[29002,72277],[-5,0]],[[28997,72277],[-5,0]],[[28992,72277],[-91,-1],[-56,-7],[-22,-5],[-1,-24],[0,-68],[-3,-137],[-2,-137],[0,-67],[-3,-140],[0,-62],[-3,-137],[0,-62],[-4,-274],[-3,-146],[-2,-190],[-1,-2],[0,-77],[-2,-56],[0,-66],[-2,-61],[0,-73],[-1,-2],[0,-117]],[[28796,70366],[5,0],[3,-40],[9,-54],[9,-34],[15,-34],[11,-12],[18,-3],[13,10],[9,14],[10,24]],[[27123,91356],[4,17],[8,-13],[3,-21],[3,9],[-1,32],[-4,-16],[0,21],[-16,12],[-2,-4],[5,-37]],[[27031,91329],[7,17],[0,23],[-3,8],[1,-34],[-5,-14]],[[27165,91324],[-1,24],[-11,30],[-9,2],[3,-22],[1,-37],[5,17],[3,-17],[9,3]],[[27179,91273],[0,17],[-7,5],[-2,-12],[9,-10]],[[27179,91273],[-5,-14],[7,3],[-2,11]],[[27232,91261],[-5,1],[1,-27],[4,9],[0,17]],[[27267,91256],[5,-27],[3,10],[-8,17]],[[27162,91224],[7,8],[-3,7],[-4,-15]],[[27219,91229],[2,-15],[1,52],[-7,-19],[4,-18]],[[27176,91330],[5,-20],[5,6],[0,-30],[5,-2],[-6,-11]],[[27185,91273],[-1,-33],[3,-28],[4,2],[10,37],[2,36],[-3,13],[-8,7],[-18,37],[2,-14]],[[27233,91221],[4,7],[0,32],[-3,-18]],[[27234,91242],[-1,-21]],[[27204,91200],[6,13],[3,47],[-7,-18],[-3,11],[-4,-18],[2,-42],[3,7]],[[27250,91190],[6,7],[1,33],[-5,-15],[-2,-25]],[[27212,91185],[3,20],[-5,-5],[2,-15]],[[27337,91156],[-11,21],[-3,32],[-9,2],[-2,-13],[15,-37],[10,-5]],[[27240,91173],[9,54],[4,37],[-4,2],[1,-19],[-9,12],[-2,-46],[-6,-43],[1,-31],[6,34]],[[27233,91221],[1,21]],[[27234,91242],[-5,-38],[-3,8],[-3,-29],[-5,-15],[1,-31],[8,61],[4,0],[2,23]],[[27227,91129],[5,8],[-1,20],[-7,-28],[3,0]],[[27337,91156],[12,-21],[5,-18],[4,2],[-20,56],[-1,-19]],[[27399,91046],[2,7],[-10,2],[6,-27],[2,18]],[[27425,90987],[-9,21],[2,-19],[7,-2]],[[27440,90941],[-1,-7],[13,-39],[-12,46]],[[27444,90686],[-2,26],[-1,-38],[5,-17],[-2,29]],[[27508,90677],[3,-19]],[[27511,90658],[7,-26],[-2,-6]],[[27516,90626],[1,-5]],[[27517,90621],[3,-15],[-2,39],[-6,27],[-4,5]],[[27333,90495],[-5,-3]],[[27328,90492],[0,-4]],[[27328,90488],[-1,-2]],[[27327,90486],[0,-2]],[[27327,90484],[-1,-1]],[[27326,90483],[-1,-1]],[[27325,90482],[0,-3]],[[27325,90479],[1,-3]],[[27326,90476],[1,-2]],[[27327,90474],[0,-1]],[[27327,90473],[8,13],[-2,9]],[[27359,90473],[0,0]],[[27359,90473],[0,-1]],[[27359,90472],[1,-4]],[[27360,90468],[0,-1]],[[27360,90467],[-1,6]],[[27327,90474],[-1,-8]],[[27326,90466],[1,7]],[[27360,90467],[0,1]],[[27360,90468],[-1,4]],[[27359,90473],[1,-12]],[[27360,90461],[0,2]],[[27360,90463],[0,4]],[[27341,90481],[1,0]],[[27342,90481],[1,-9],[4,36],[7,10],[0,11],[-10,3]],[[27344,90532],[-7,-17]],[[27337,90515],[-3,-3]],[[27334,90512],[-2,-10]],[[27332,90501],[0,1]],[[27332,90501],[1,-6]],[[27333,90495],[3,1],[4,-34],[1,19]],[[27332,90411],[3,24],[-12,0],[1,-13],[8,-11]],[[27320,90388],[-1,-5]],[[27319,90383],[0,-2]],[[27319,90381],[1,7]],[[27521,90597],[0,4]],[[27521,90601],[-4,20]],[[27517,90621],[-1,5]],[[27516,90626],[-6,21],[1,11]],[[27511,90658],[-3,19]],[[27508,90677],[-3,-3],[-5,38],[-5,3],[-9,43],[1,11],[-8,39],[-5,7],[-5,34],[-6,23],[-7,8],[1,-27],[7,7],[4,-15],[4,-34],[-1,-19],[9,-1],[4,-38],[17,-69],[1,-22],[5,-9],[-2,-21]],[[27505,90632],[5,1],[6,-33],[-1,-25]],[[27515,90575],[0,-2]],[[27515,90573],[0,-12]],[[27515,90561],[9,-18],[4,-20],[3,-45],[-8,-33],[8,-2],[11,-38],[7,-43],[4,11],[-6,26],[-1,23],[-21,143],[-4,32]],[[27556,90359],[-3,-10],[4,-18],[-1,28]],[[27566,90265],[-1,-9],[8,-78],[-3,55],[-4,32]],[[27331,90107],[0,6]],[[27331,90113],[-8,4],[4,-17],[4,7]],[[27315,90090],[-2,-1]],[[27313,90089],[0,-11]],[[27313,90078],[7,6],[-5,6]],[[27312,90070],[-1,3]],[[27311,90073],[0,-3]],[[27311,90070],[1,0]],[[27304,90057],[2,-11]],[[27306,90046],[0,4]],[[27306,90050],[0,4]],[[27306,90054],[-2,3]],[[27580,89924],[0,26],[-6,-26],[1,-30],[7,-18],[-3,37],[1,11]],[[27285,89870],[-1,4]],[[27284,89874],[-3,3]],[[27281,89877],[4,-7]],[[27281,89877],[-7,24],[-9,2],[0,-35]],[[27265,89868],[4,-16]],[[27269,89852],[9,0],[3,25]],[[27583,89848],[-5,18],[4,-31],[1,13]],[[27229,89744],[6,2],[-1,11],[-11,-10],[6,-3]],[[27224,89721],[-7,5],[1,25],[-7,-43]],[[27211,89708],[1,-6]],[[27212,89702],[4,-1],[8,20]],[[27188,89697],[0,-17]],[[27188,89680],[1,1]],[[27189,89681],[0,2]],[[27189,89683],[-1,14]],[[27188,89680],[2,-4]],[[27190,89676],[0,3]],[[27190,89679],[-1,2]],[[27203,89659],[0,4]],[[27203,89663],[0,1]],[[27203,89664],[0,0]],[[27203,89664],[-3,7],[7,29],[0,-15],[5,17]],[[27212,89702],[-1,6]],[[27211,89708],[-4,-8],[-4,14]],[[27203,89714],[0,0]],[[27203,89714],[1,7]],[[27204,89721],[-5,2],[1,-29],[-3,-18]],[[27197,89676],[0,-5]],[[27197,89671],[0,-16],[6,4]],[[27190,89679],[0,-3]],[[27190,89676],[-1,-26]],[[27189,89650],[8,21]],[[27197,89671],[0,5]],[[27197,89676],[-6,-8],[-2,15]],[[27189,89683],[1,-4]],[[27160,89657],[-5,13],[0,-15],[5,2]],[[27588,89648],[2,20],[0,85],[-3,71],[-4,-14],[-1,-46],[5,-29],[-5,-30],[4,-8],[-3,-22],[5,-27]],[[27147,89654],[6,10],[5,33],[-2,22],[-3,-8],[-6,-57]],[[27177,89620],[0,2]],[[27177,89622],[1,3]],[[27178,89625],[-6,5]],[[27172,89630],[0,-3]],[[27172,89627],[0,-3]],[[27172,89624],[0,-1]],[[27172,89623],[1,-8]],[[27173,89615],[0,-2]],[[27173,89613],[4,7]],[[27162,89591],[3,29],[-5,-6],[6,25],[-11,2],[1,-31],[-6,2],[2,19],[-11,0],[0,-24],[-6,-27],[7,-26],[11,39],[-1,-14],[10,12]],[[27138,89530],[0,5]],[[27138,89535],[-3,-12]],[[27135,89523],[0,-9]],[[27135,89514],[3,16]],[[27135,89514],[-3,-15]],[[27132,89499],[0,-8]],[[27132,89491],[-2,-17]],[[27130,89474],[0,-3]],[[27130,89471],[-1,-8]],[[27129,89463],[8,27],[-4,8],[2,16]],[[27127,89427],[1,4]],[[27128,89431],[0,22]],[[27128,89453],[0,2]],[[27128,89455],[1,8]],[[27129,89463],[1,8]],[[27130,89474],[2,17]],[[27132,89491],[0,8]],[[27132,89499],[3,24]],[[27135,89523],[-10,-81],[-3,-46]],[[27122,89396],[0,-2]],[[27122,89394],[5,33]],[[27103,89005],[-1,16],[-4,-14],[2,-17],[3,15]],[[27099,88992],[-4,0],[-4,-29],[-15,-43],[10,16],[13,56]],[[27015,88890],[2,-14],[8,22],[5,-2],[8,18],[2,22],[7,-5],[1,-21],[9,19],[5,-1],[-6,19],[-11,22],[-8,-6],[-8,-18],[-10,-32],[-4,-23]],[[27015,88890],[-2,-40]],[[27013,88850],[4,22],[-2,18]],[[27013,88850],[-2,-41],[2,4],[0,37]],[[27008,88770],[-5,-28],[2,-14],[3,42]],[[27039,88751],[-3,-35]],[[27036,88716],[-1,-17]],[[27035,88699],[0,-1]],[[27035,88698],[0,-3]],[[27035,88695],[1,-12],[7,9],[3,19],[0,51],[-7,-11]],[[27035,88695],[0,3]],[[27035,88699],[1,17]],[[27036,88716],[3,35]],[[27039,88751],[5,34],[2,30],[-1,25],[4,36],[-9,6],[-3,-51],[-3,-6],[0,-41],[-5,-60],[-2,-47],[-11,-45],[1,-31],[5,-3],[9,10],[2,32],[4,14],[-2,41]],[[26999,88667],[-1,8],[-4,-41],[0,-28],[3,-10],[2,71]],[[26993,88523],[2,-3],[-1,44],[-2,17],[0,-69],[1,11]],[[26992,88500],[-5,-28],[3,1],[2,27]],[[27587,88111],[-6,-63]],[[27581,88048],[-3,-32],[-4,-11],[5,-5],[4,53],[8,67],[7,79],[-11,-88]],[[26926,87947],[1,33],[8,60]],[[26935,88040],[0,11]],[[26935,88051],[1,8]],[[26936,88059],[0,3]],[[26936,88062],[-2,-29],[-8,-60],[0,-26]],[[26916,87869],[2,12]],[[26918,87881],[6,56]],[[26924,87937],[-9,-61],[-8,-24],[4,-17],[5,34]],[[26906,87794],[2,29],[-6,-30],[4,1]],[[26874,87636],[2,-1],[8,37],[6,48],[4,-2],[0,18],[7,32],[-3,0],[-10,-54],[-4,-32],[-11,-42],[1,-4]],[[27543,87606],[8,101],[3,18],[15,162],[10,79],[1,28],[-4,-6],[2,-23],[-2,-20],[-4,-6],[0,-24],[-4,-33],[-4,-3],[-1,-40],[-3,4],[1,-38],[-7,-34],[1,-22],[-4,2],[0,-34],[-7,-62],[-4,-8],[2,-37],[-7,4],[4,-14],[4,6]],[[26865,87528],[5,34],[0,19],[-11,-75],[6,22]],[[26865,87318],[-2,22],[-1,-30],[3,8]],[[26856,87241],[-1,-4]],[[26855,87237],[-1,-17]],[[26854,87220],[6,45],[4,18],[-4,34],[0,-48],[-4,-28]],[[27511,87227],[2,20]],[[27513,87247],[0,7]],[[27513,87254],[-4,-3],[2,-24]],[[26859,87226],[0,0]],[[26859,87226],[-4,-9],[4,-17]],[[26859,87200],[0,26]],[[26853,87215],[1,5]],[[26854,87220],[1,17]],[[26855,87237],[1,4]],[[26856,87241],[-8,-56],[5,-3],[0,33]],[[27520,87348],[-2,-21]],[[27518,87327],[-5,-73]],[[27513,87254],[0,-7]],[[27513,87247],[-2,-20]],[[27511,87227],[-5,-21]],[[27506,87203],[0,3]],[[27506,87203],[-4,-20],[3,-17],[-5,-10],[4,-20],[-6,-52]],[[27498,87084],[1,0],[12,115],[5,36],[4,66],[3,29],[3,68],[5,28],[4,83],[7,83],[-3,4],[-6,-25],[-1,-52],[-3,-24],[3,-23],[-5,-28],[2,-12],[-6,-35],[-3,-49]],[[26946,87077],[-1,-27],[3,1],[-2,26]],[[26838,86877],[-3,-1],[2,-32],[1,33]],[[27447,86486],[-3,-13],[6,-9],[-1,-21],[4,-3],[-1,-30],[2,-20],[-3,-25],[-6,-4],[4,-14]],[[27449,86347],[0,10],[10,0],[-3,38],[-2,67],[0,72],[4,103],[6,119],[3,41],[10,101],[21,186]],[[27498,87084],[-7,-19],[2,-20],[-3,-33],[-6,-8],[-3,-21],[1,-20],[-6,-43],[1,-19],[-4,-18],[-10,-88],[-2,-36],[-5,-39],[-4,-49],[-1,-101],[3,-43],[-6,-23],[3,-18],[-4,0]],[[26880,85880],[-6,9],[2,-17]],[[26876,85872],[4,8]],[[26888,85725],[-1,3]],[[26887,85728],[0,-1]],[[26887,85727],[-1,-3]],[[26886,85724],[-1,-4]],[[26885,85720],[-1,-4]],[[26884,85716],[0,-3]],[[26884,85713],[0,-1]],[[26884,85712],[4,13]],[[27391,85661],[-4,16],[-1,23],[-4,-49],[9,10]],[[27407,85759],[-4,-14],[-4,-32],[-5,-17],[1,-15],[-6,-47],[-8,-1],[-1,-25],[3,-10],[-5,-18],[-3,11],[1,-26],[-6,-9],[-2,-20],[3,-12],[0,-24],[-4,-30],[3,5],[5,56],[10,76],[19,126],[3,26]],[[27361,85462],[5,16],[-3,10],[-2,-26]],[[26776,85380],[-3,13],[-2,-22],[4,-9],[1,18]],[[27165,85113],[-2,-29],[2,-28],[5,26],[-5,31]],[[26198,84648],[6,4],[5,17],[-6,53],[-6,6],[-7,-9],[-7,-27],[-15,-31],[17,-4],[6,14],[10,2],[-12,-11],[9,-14]],[[27354,85399],[1,-13],[-6,-39],[-7,-68],[-4,-27],[-8,-75],[-10,-123],[-3,-23]],[[27317,85031],[-5,-59],[-3,-8]],[[27309,84964],[-8,-106]],[[27301,84858],[-6,-38]],[[27295,84820],[-1,-2]],[[27294,84818],[-1,-5]],[[27293,84813],[-8,-101]],[[27285,84712],[-1,-36]],[[27284,84676],[-2,-27]],[[27282,84649],[0,-3]],[[27282,84646],[-1,-7]],[[27281,84639],[1,-12],[4,57],[7,70],[5,67],[11,99],[7,72],[1,20],[11,110],[20,193],[9,83],[8,55],[0,16],[-11,-70]],[[26310,84571],[-17,71],[-11,23],[-8,9],[-13,24],[-14,41],[-18,31],[-13,14],[-2,-14],[-11,-34],[2,-4],[7,24],[11,15],[16,-22],[7,-17],[6,-31],[5,0],[7,-20],[22,-28],[5,-12],[4,-23],[15,-47]],[[26347,84462],[2,17],[-3,13],[-11,21],[-13,16],[1,-8],[11,-9],[13,-50]],[[27269,84397],[2,26],[0,46],[3,67],[4,53],[3,23],[-4,-5],[-2,-54],[-5,-29],[-3,-40],[-6,-26],[-2,-48],[2,-11],[-1,-36],[7,28],[-4,-30],[4,-10],[2,46]],[[26413,84165],[2,21],[-5,21],[0,-23],[3,-19]],[[25528,83845],[19,-16],[6,-21],[6,14],[-4,6],[-27,23]],[[27243,84110],[0,-9]],[[27243,84101],[-9,-77],[-3,-77],[-6,-53]],[[27225,83894],[0,-3]],[[27225,83891],[0,-3]],[[27225,83888],[1,-14]],[[27226,83874],[1,-34]],[[27227,83840],[0,-3]],[[27227,83837],[-1,-31]],[[27226,83806],[-3,-13],[-1,-41]],[[27222,83752],[-1,-30],[6,-34],[3,11],[5,-5],[-1,20],[0,72],[1,3],[4,98],[6,104],[3,77],[2,22],[4,103],[3,39],[1,37],[6,68],[-2,13],[-5,-66],[-4,-13],[2,-24],[-1,-47],[-5,-85],[6,123],[-7,-23],[-6,-52],[1,-53]],[[25769,83685],[25,10],[8,0],[1,11],[-28,-13],[-35,7],[-40,24],[-78,68],[-23,10],[-6,-5],[-5,-16],[18,16],[21,-14],[20,-17],[14,-18],[5,0],[13,-14],[17,-11],[15,-16],[35,-17],[3,-5],[20,0]],[[27214,83679],[3,16],[-5,-4],[2,-12]],[[27201,83686],[0,10],[-10,9],[3,-32],[7,13]],[[27209,83677],[-4,21],[-2,-16],[5,-13]],[[27208,83669],[1,-2]],[[27209,83667],[0,8]],[[27209,83675],[0,2]],[[27209,83667],[1,-4]],[[27210,83663],[0,1]],[[27210,83664],[-1,3]],[[27214,83671],[0,8]],[[27214,83679],[-5,-2]],[[27209,83675],[1,-11]],[[27210,83663],[4,8]],[[27227,83653],[2,24],[-3,2],[-6,30],[-4,-4],[8,-21],[-6,-27],[3,-31],[5,10],[1,17]],[[27216,83563],[-2,-20],[3,-8],[7,35],[6,5],[1,84],[-3,-23],[-8,-15],[-4,-58]],[[27206,83504],[-3,8],[4,13],[-3,25]],[[27204,83550],[-1,-3]],[[27203,83547],[0,3]],[[27203,83550],[-1,3]],[[27202,83553],[0,-1]],[[27202,83552],[-1,-2]],[[27201,83550],[-5,-6]],[[27196,83544],[-1,5]],[[27195,83549],[-2,-14]],[[27193,83535],[0,-2]],[[27193,83533],[1,-4]],[[27194,83529],[-1,-3]],[[27193,83526],[5,-9],[2,-19],[6,6]],[[27205,83267],[-5,2]],[[27200,83269],[-9,21],[-1,-18],[-8,4]],[[27182,83276],[0,-2]],[[27182,83274],[0,-7]],[[27182,83267],[0,-4]],[[27182,83263],[9,-3],[5,12],[0,-19],[9,1],[0,13]],[[27588,89648],[0,-68],[-2,0],[1,58],[-12,55],[-2,35],[-1,86],[-8,41],[-6,11],[-4,20],[0,31],[-9,79],[-5,6],[-3,21],[2,50],[-3,32],[-5,20],[-3,42],[0,38],[4,57],[0,42],[5,11],[-10,69],[-6,6],[-4,31],[-6,17],[0,30],[-4,-8],[-4,29],[0,33],[3,6],[1,27],[8,6]],[[27515,90561],[0,12]],[[27515,90575],[-11,-25],[-1,-28],[-4,-2],[3,-20],[-9,8],[-8,24],[7,-6],[9,32],[0,23],[-5,12],[0,19],[9,20]],[[27505,90632],[0,10],[-9,-24],[-2,-13],[6,-44],[-11,-25],[-7,9],[-3,-31],[-10,-18],[-12,21],[2,23],[7,-15],[6,10],[-5,6],[0,14],[-5,-2],[0,-15],[-7,30],[-1,-18],[-13,14],[-3,21],[7,-4],[-5,28],[0,18],[-5,1],[6,-22],[-1,-13],[-7,-4],[-7,32],[-4,-18],[-7,-5],[1,30],[-3,-22],[-13,-7],[2,-19],[-6,-4],[2,17],[-5,11],[-2,-15],[-6,-6],[-7,5],[-6,15],[0,26],[-13,11],[-7,-1],[-7,12],[-8,-7],[-11,6],[-6,12],[-2,-18],[-8,-32],[-5,-3],[0,-33],[3,24],[12,33],[1,-12],[-8,-20],[-16,-73],[0,-39],[2,-45],[5,-69],[3,-6],[12,12]],[[27319,90381],[0,2]],[[27319,90383],[1,5]],[[27320,90388],[-3,28],[5,32],[4,5]],[[27326,90453],[0,13]],[[27326,90466],[0,10]],[[27326,90476],[-1,3]],[[27325,90482],[1,1]],[[27326,90483],[1,1]],[[27327,90486],[1,2]],[[27328,90488],[0,4]],[[27328,90492],[6,20]],[[27334,90512],[2,3]],[[27336,90515],[8,17]],[[27344,90532],[12,17],[2,-10],[9,-6],[4,-25],[-2,-45],[-7,22],[2,-23],[-4,1]],[[27360,90463],[0,-2]],[[27360,90461],[1,-28],[-8,-24],[2,-24],[-5,4],[-4,-23],[-8,26],[-4,4]],[[27334,90396],[-8,-41],[-6,6]],[[27320,90361],[-3,0]],[[27317,90361],[-1,-10]],[[27316,90351],[-6,-7],[5,-19],[-8,-4],[-5,-12],[1,-33],[-6,-61],[1,-25],[-3,8],[-9,-39],[1,-33],[7,-32],[13,-14],[0,-22],[4,12]],[[27311,90070],[0,3]],[[27311,90073],[2,5]],[[27313,90078],[0,11]],[[27313,90089],[2,1]],[[27315,90090],[7,35],[9,-1],[0,-11]],[[27331,90113],[0,-3]],[[27331,90110],[0,-1]],[[27331,90109],[0,-2]],[[27331,90107],[-3,-28],[-5,-12],[-8,0],[-2,-16]],[[27313,90050],[0,1]],[[27313,90050],[2,-9],[-7,-6],[6,-16],[-7,-2],[-3,40]],[[27304,90057],[-4,13],[-1,22],[-11,0],[-4,7],[-4,-29],[3,-4],[-6,-31],[0,-23],[-3,-30],[-5,-8],[-1,-27]],[[27268,89947],[-1,-28],[6,-10],[9,-29],[4,13],[5,34],[3,-10],[-1,-27],[-3,3],[-5,-22]],[[27285,89871],[0,2]],[[27285,89873],[-1,1]],[[27284,89874],[0,-1]],[[27284,89873],[1,-2]],[[27285,89871],[0,-1]],[[27285,89870],[0,-16],[-12,-23],[-2,-22],[0,37],[-5,-25],[3,31]],[[27269,89852],[-4,16]],[[27265,89868],[-3,43],[-12,-33],[1,-47],[-6,-19],[3,-19],[-8,3],[8,-13],[3,10],[-3,-44],[-7,-13],[-6,-30],[-8,-16],[-11,1],[1,-13],[-4,-19],[-10,5]],[[27203,89663],[0,-4]],[[27203,89659],[0,-16],[-10,1],[1,-18],[-5,-3],[0,27]],[[27189,89650],[-7,8]],[[27182,89658],[-7,-15],[-1,-15],[5,0],[3,14],[2,-17],[-6,0]],[[27178,89625],[-1,-5]],[[27177,89620],[1,-14],[-5,0],[0,-23],[-4,23],[4,7]],[[27173,89615],[-1,8]],[[27172,89624],[0,3]],[[27172,89627],[0,3]],[[27172,89630],[1,12],[-6,7],[4,-26],[-3,-24],[-5,5],[-1,-13]],[[27162,89591],[-9,-16],[3,-12],[3,12],[3,-25],[-11,10],[6,-18],[-3,-3],[-6,21],[-2,-9]],[[27146,89551],[0,-3]],[[27146,89548],[1,-13],[-8,12],[6,-18],[-5,-8],[0,-44],[-12,-22]],[[27128,89455],[0,-2]],[[27128,89453],[0,-22]],[[27128,89431],[-1,-4]],[[27127,89427],[-1,-62],[-4,29]],[[27122,89394],[0,2]],[[27122,89396],[-3,-61],[0,-83],[-2,27],[-1,-73],[-3,-63],[4,-3],[-6,-31],[-5,-54],[5,12],[-1,-75],[-4,-30],[1,-22],[-7,-16],[-2,21],[-6,-3],[0,-27],[-4,9],[1,15],[-15,-43],[-11,-19],[5,-4],[-5,-15],[0,-18],[8,12],[15,-40],[1,-22],[7,-25],[1,-32],[4,-46],[7,-20],[9,-36],[9,-26],[-13,9],[-10,34],[-12,52],[1,31],[-4,11],[-1,36],[-4,21],[-26,33],[-5,-27],[-2,-27],[4,-6],[1,-52],[-5,-28],[-5,-42],[2,-37],[-1,-35],[4,-32],[5,-88],[-3,-57],[2,-12],[-4,-23],[-4,-1],[-5,-28],[1,-22],[8,-8],[10,-28],[6,-2],[7,-39],[-4,-3],[-5,18],[-11,5],[-4,14],[-14,-8],[-4,36],[-6,-6],[4,19],[-8,-14],[-4,-26],[1,-26],[-9,18],[-6,-15],[2,-12],[-6,-36],[-4,3],[6,33],[0,18],[9,18],[7,29],[0,19],[7,78],[2,52],[-1,43],[-4,3],[-1,-36],[-9,7],[-11,-10],[1,-27],[-4,18],[-1,-13],[-10,-26],[0,17],[-8,-54],[-5,-18],[1,-10],[5,31],[0,-26],[-4,-36],[-5,-21],[-8,-54],[-11,-53],[-9,-69],[-4,-56]],[[26936,88059],[-1,-8]],[[26935,88051],[0,-11]],[[26935,88040],[0,-21],[-6,-36],[-1,-35],[-2,-1]],[[26926,87947],[-1,-40],[-7,-26]],[[26918,87881],[-2,-12]],[[26916,87869],[-1,-11],[0,-78],[-7,-81],[-4,-32],[-11,-14],[-5,-19],[-6,-2],[0,-18],[-8,-13],[0,-14],[9,17],[4,-8],[0,-41],[-5,0],[-5,18],[-2,-32],[12,-16],[6,20],[11,15],[13,-8],[4,29],[7,0],[-8,-26],[5,-25],[18,5],[-10,-23],[-10,10],[0,8],[-14,17],[-11,-12],[-10,-22],[7,-2],[4,10],[7,-28],[1,-25],[-11,21],[-6,5],[4,-20],[7,-10],[-3,-18],[8,-12],[-1,-15],[9,3],[-5,-22],[0,-21],[9,-60],[4,14],[6,-15],[-6,2],[0,-17],[7,-22],[10,-2],[-5,-7],[-1,-39],[9,-12],[10,-41],[-1,-30],[8,-15],[-3,-7],[-2,-74],[-7,-29],[5,-54],[-7,2],[1,44],[-9,0],[0,-37],[-8,25],[3,53],[-2,22],[5,21],[-1,31],[-5,0],[-11,-18],[-6,-22],[6,-26],[1,-84],[-3,-5],[-4,-35],[-4,-11],[-10,-6],[-9,-34],[-2,-18],[-4,3],[-2,22],[-1,-41],[-6,4],[4,30],[-8,32],[2,26],[-8,11],[0,23],[14,32],[5,1],[3,24],[6,7],[3,22],[5,8],[-1,19],[3,27],[-5,6],[5,12],[-10,34],[-1,89],[-3,23],[-4,6],[-11,-14],[-2,-10],[2,-27],[-8,1],[-6,-17]],[[26859,87226],[0,-26]],[[26859,87200],[-4,-26],[0,-42],[-6,-19],[0,-38],[-2,33],[5,28],[-1,25],[-8,-17],[0,-13],[-7,-20],[-1,14],[9,38],[4,0],[0,20],[-11,-39],[-8,-64],[0,-57],[2,-12],[0,34],[10,-79],[2,-52],[2,-13],[0,-41],[3,-54],[0,-48],[2,4],[-2,-48],[-3,-35],[5,5],[-7,-35],[4,-8],[10,-46],[-1,-15],[3,-45],[4,-36],[-1,-34],[6,-34],[-2,-10],[5,-19],[-2,-32],[2,-17],[8,-29],[1,-34],[-4,1],[5,-30],[-2,-27],[4,-12],[-3,-24],[6,-22],[-1,-35],[2,-18],[-5,-37],[3,-7],[-4,-63],[8,-43],[-7,-23],[-5,2],[0,-20],[-4,-6],[11,-8],[-4,-38]],[[26880,85880],[-4,-8]],[[26876,85872],[-4,3],[3,-39],[-3,-5],[4,-22],[8,-3],[2,41],[0,-40],[-8,-3],[-7,11],[-6,-15],[-1,-41],[9,-7],[5,-14],[5,21],[1,-43]],[[26884,85716],[1,4]],[[26885,85720],[1,4]],[[26886,85724],[1,4]],[[26887,85728],[0,0]],[[26887,85728],[1,-3]],[[26888,85725],[-6,-29],[-8,0],[1,-31],[-6,-8],[-5,-44],[-4,-13],[3,-26],[-10,-5],[5,-35]],[[26858,85534],[-3,-10],[2,-38],[-9,-3],[1,-16],[-11,-2],[-1,-28],[10,-20],[-5,-3],[1,-26],[-3,-38],[-6,10],[-5,-10],[-7,6],[-27,-21],[-4,-7],[-12,18],[-9,-14],[-4,-55]],[[26766,85277],[2,-27],[-3,-40],[-4,3],[-5,-16],[-15,-18],[-2,-21],[6,-19],[-6,-11],[1,-29],[-6,-17],[1,-17],[-4,-2],[-3,-28],[0,-23],[-6,-22],[-9,-1],[-9,-19],[-3,-35],[-7,-6],[-6,-29],[-11,-22],[1,-29],[-3,-4],[0,-57],[2,-24],[-2,-28],[1,-46],[-4,-2],[4,-19],[-13,-4],[-10,-19],[-4,-27],[-12,-18],[-8,-54],[-5,5],[3,-39],[-3,-42],[-3,-2],[-9,-53],[-2,-32],[-7,-19],[-12,-48],[-7,-11],[-8,-21],[-5,-28],[-5,5],[-11,-17],[-7,-27],[-19,-37],[-1,-15],[-6,-20],[-10,-22],[-3,-39],[-22,11],[-2,8],[-13,0],[-7,26],[-7,-2],[3,-39],[-3,15],[-8,-34],[0,27]],[[26450,84097],[0,0]],[[26450,84097],[-8,15],[-1,-24],[-6,-8],[-3,23],[1,36],[-7,11],[-7,-28],[-1,12],[-10,9],[-1,61],[-6,-26],[1,55],[3,9],[-1,-26],[4,11],[0,22],[4,21],[-13,-17],[-10,-6],[-3,-17],[1,34],[-2,15],[17,2],[2,10],[11,14],[1,31],[-3,27],[-10,9],[-9,-12],[11,7],[5,-8],[-4,-14],[-21,-21],[-8,7],[-5,18],[-4,-8],[-8,7],[-10,28],[-8,14],[-7,27],[-13,32],[-9,16],[-15,48],[-19,41],[-13,23],[-6,24],[-3,-16],[5,-43],[4,-17],[-1,-24],[-3,17],[-10,1],[-4,41],[-7,9],[-3,-15],[-1,22],[-4,2],[-6,-22],[0,12],[8,25],[-1,16],[-13,12],[-4,-9],[-15,-5],[-17,19],[-27,26],[7,11],[-15,-10],[-14,12],[-3,14],[-9,-42],[-8,-108],[-2,-46],[0,-40],[3,-37],[5,-10],[-6,58],[0,47],[2,42],[2,6],[2,47],[7,63],[14,-10],[2,-38],[0,-78],[1,-47],[-3,-8],[-2,-34],[-4,-10],[-8,-70],[-7,-36],[-9,-29],[-9,-12],[-8,-1],[-11,-31],[11,23],[3,-10],[-10,-28],[-13,-53],[-9,-31],[2,30],[-5,-31],[-5,-7],[-19,-40],[21,31],[-19,-54],[-3,-28],[4,-19],[3,24],[6,7],[5,-9],[-2,28],[7,18],[6,-6],[13,23],[-1,25],[8,12],[1,22],[10,19],[9,5],[0,-25],[3,-10],[4,12],[6,-26],[-7,4],[-7,-13],[-4,40],[-7,-2],[-2,-40],[-2,-3],[2,-35],[-10,-6],[0,-40],[-9,-3],[-11,14],[-5,-28],[-8,3],[-8,-36],[-9,-7],[-1,-14],[-7,0],[0,-14],[7,-19],[6,-28],[2,-38],[6,-10],[6,6],[11,-21],[4,-42],[4,16],[0,-19],[-4,-15],[7,-26],[0,-28],[-3,22],[-8,26],[1,14],[-2,41],[-6,0],[-7,19],[-1,-16],[-4,8],[-10,5],[-4,39],[-3,-6],[0,-27],[-3,-1],[1,-22],[-10,-44],[-3,29],[-8,-11],[-3,11],[-9,1],[-2,55],[4,24],[7,7],[1,-20],[6,-10],[6,6],[-1,24],[9,16],[-3,55],[8,12],[4,19],[-3,16],[-2,-15],[-8,-4],[9,28],[-2,11],[-10,-42],[-11,-33],[-30,-78],[-8,-18],[-40,-75],[-37,-54],[-21,-26],[-20,-18],[-18,-9],[-20,-1],[-3,-17],[7,-29],[11,17],[13,5],[13,20],[7,-1],[3,-39],[5,4],[0,15],[16,17],[4,-12],[-10,-15],[2,-23],[9,9],[7,29],[11,26],[12,2],[4,-15],[-5,-12],[2,-20],[-5,-11],[3,-13],[-9,-1],[-1,-36],[-8,3],[-5,-29],[2,-31],[-4,27],[-6,7],[-5,-17],[-14,20],[-7,-7],[-7,16],[-7,4],[-5,13],[-7,2],[-7,-49],[0,-20],[7,3],[1,-10],[-10,-3],[0,23],[-4,11],[-4,-21],[1,24],[-4,27],[-12,10],[-6,33],[-8,-12],[1,-16],[-5,-11],[3,24],[-4,21],[4,-2],[1,30],[-6,5],[-16,-9],[-7,3],[-11,-5],[-6,9],[-5,-9],[-41,19],[-7,-1],[-14,13],[-11,5],[-21,17],[-21,32],[-5,-18],[4,-11],[12,-1],[5,-22],[11,-19],[17,-1],[14,-31],[6,-26],[6,-13],[5,19],[10,-7],[-10,-4],[-4,-20],[-8,-8],[-18,-52],[4,-7],[-1,-18],[5,3],[-2,-39],[5,-31],[-2,-11],[-11,-17],[7,28],[-3,33],[-5,5],[-4,37],[0,21],[-6,51],[0,22],[-7,12],[-3,-9],[2,-19],[-1,-39],[1,-35],[-10,-23],[1,-21],[-4,-8],[-4,-36],[-8,0],[0,25],[4,12],[-5,22],[1,13],[7,16],[3,31],[-3,16],[-4,72],[-9,24],[-10,16],[-11,33],[5,5],[-1,33],[-10,-1],[-5,19]],[[25583,83781],[-13,6],[-7,10],[-2,16],[-7,-8],[-16,4],[12,-14],[7,-29],[-2,-22],[-5,-9],[4,-9],[0,-40],[6,4],[5,-18],[12,-16],[1,-13],[-6,-32],[-11,4],[-9,-41]],[[26229,82873],[-1,35],[8,20],[-1,36],[11,62],[2,2],[0,46],[3,13],[-4,31],[5,83],[16,65],[58,12],[57,13],[74,16],[28,8],[54,12],[26,8],[83,20],[14,5],[62,17],[31,10],[137,38],[58,16],[56,19],[-5,13],[-2,33],[3,32],[8,34],[-2,28],[1,33],[-2,11],[2,47],[9,53],[12,-10],[10,8],[10,1],[4,-7],[2,-26],[-3,-27],[3,-20],[-1,-23],[6,-50],[0,-89],[3,-34],[-2,-52],[-4,-6],[0,-18],[-6,-47],[0,-39],[4,-31],[-3,-28],[2,-38],[3,4],[5,-16],[-4,-34],[5,-6],[5,17],[5,-1],[2,-46],[4,-17],[11,16],[1,-18],[4,5],[2,33],[12,19],[9,-5],[5,5],[2,34],[4,-20],[8,15],[-1,8],[7,20],[7,-5],[0,10],[7,1],[-4,-13],[6,-6],[4,37],[6,-12],[5,25]],[[27175,83258],[1,-3]],[[27176,83255],[6,8]],[[27182,83263],[0,13]],[[27182,83276],[7,-1],[0,20],[12,-12],[-1,-14]],[[27200,83269],[5,-2]],[[27205,83267],[10,26],[-5,38],[5,-8],[2,-21],[-1,-23],[9,2],[0,42],[-4,83],[0,76],[3,38],[-1,11],[-8,-34],[-2,-37],[-2,3],[3,39],[-8,-39],[-8,5],[1,30],[-6,28]],[[27193,83526],[1,3]],[[27194,83529],[-1,6]],[[27193,83535],[2,14]],[[27195,83549],[1,-5]],[[27196,83544],[5,6]],[[27201,83550],[1,2]],[[27202,83553],[0,0]],[[27202,83553],[1,-3]],[[27203,83550],[1,0]],[[27204,83550],[6,9],[-4,-21],[2,-7],[-2,-27]],[[27206,83504],[-1,-15],[-5,2],[0,-17],[6,10],[3,20],[7,18],[-2,17]],[[27214,83539],[2,24]],[[27216,83563],[3,59],[-3,5],[2,39],[-4,5]],[[27214,83671],[-4,-18],[-2,16]],[[27208,83669],[-2,3],[-4,-47],[-2,15],[6,8],[-3,32],[-6,-13],[-5,7],[-2,27],[-8,-27],[2,-8],[-3,-23],[-1,27],[-11,25],[-13,-14],[4,18],[8,8],[0,19],[4,28],[-3,45],[-10,-8],[-7,25],[-5,34],[-6,21],[5,19],[-1,-29],[5,-12],[-1,18],[3,22],[8,17],[-1,27],[-4,-1],[0,26],[-5,22],[0,46],[-4,-9],[-9,21],[-5,21],[-1,26],[5,2],[0,-16],[8,-7],[-1,-16],[4,-18],[5,33],[0,73],[-6,38],[6,25],[0,20],[7,24],[9,12],[7,31],[1,25],[-4,18],[1,44],[-1,30],[2,29],[9,58],[0,20],[5,13],[0,24],[-4,59],[-3,8],[-15,3],[-3,11],[0,39],[5,9],[2,25],[-3,22],[9,-1],[1,35],[-9,19],[-4,-10],[-10,5],[-1,22],[-4,21],[-1,36],[6,14],[1,26],[-2,28],[3,3],[-4,20],[1,26],[-2,17],[11,25],[-1,36],[-8,7],[7,31],[0,31],[-5,9],[0,22],[4,24],[3,0],[5,41],[1,35],[4,18],[2,36],[12,0],[9,-19],[3,-26],[0,-23],[-5,-23],[4,-39],[-4,-8],[-4,-31],[-11,-57],[-6,-1],[-10,-33],[2,-45],[-9,-5],[4,-38],[-5,-6],[3,-23],[-1,-46],[-4,-26],[-3,-2],[1,-29],[4,-20],[1,-24],[11,1],[5,6],[9,-30],[0,-35],[-5,-16],[-6,-48],[0,-18],[15,0],[9,-31],[2,-54],[3,3],[1,-35],[-8,-23],[-2,-78],[-5,-11],[0,-16],[-4,-13],[-1,-45],[6,-12],[-3,-31],[3,-16],[-5,-26],[-5,-6],[-2,-22],[-15,-40],[2,-52],[7,-26],[-2,-27],[8,-22],[-13,-4],[-3,-14],[2,-25],[5,-6],[4,-31],[-3,-17],[6,-18],[0,-23],[-5,-18],[-3,-31],[-4,-15],[3,-17],[-2,-37],[9,14],[5,-12],[0,-60],[-2,-35],[18,29],[6,16],[4,-27],[-5,-10],[4,-8],[11,-3],[3,20],[7,10],[2,22]],[[27222,83752],[0,44],[4,10]],[[27226,83806],[1,31]],[[27227,83837],[0,3]],[[27227,83840],[-1,34]],[[27226,83874],[-1,14]],[[27225,83888],[0,6]],[[27225,83894],[5,48],[2,51],[5,61],[6,47]],[[27243,84101],[0,9]],[[27243,84110],[-2,25],[1,54],[5,13],[1,21],[4,12],[0,42],[5,17],[3,60],[-2,7],[2,33],[-3,30],[2,34],[8,54],[1,33],[4,4],[1,39],[3,30],[5,21]],[[27281,84639],[1,7]],[[27282,84646],[0,3]],[[27282,84649],[2,27]],[[27284,84676],[-8,9],[6,6],[3,21]],[[27285,84712],[-1,20],[4,20],[5,61]],[[27293,84813],[1,5]],[[27295,84820],[6,38]],[[27301,84858],[8,106]],[[27309,84964],[3,13],[5,54]],[[27317,85031],[3,34],[-4,25],[5,7],[13,144],[9,63],[2,43],[6,51],[3,1]],[[27354,85399],[3,22],[1,33],[4,34],[6,6],[2,30],[-3,6],[1,24],[13,96],[4,52],[10,87],[9,58],[6,52],[14,73],[12,48],[7,7],[1,-14],[-14,-86],[-12,-64],[-1,-21],[-10,-83]],[[27407,85759],[8,63],[14,96],[11,61],[11,79],[12,61],[3,64],[3,38],[8,68],[-15,47],[-2,17],[-11,-6]],[[27449,86347],[6,-6],[7,-148],[-1,-33],[-3,43],[-2,1],[3,-35],[0,-35],[-4,6],[-1,-27],[3,-19],[-7,17],[4,8],[0,58],[-8,59],[-5,54],[-4,90],[2,39],[-1,55],[-1,-51],[-2,-9]],[[27435,86414],[-2,6],[0,38],[8,126],[8,65],[1,20],[-12,-108],[-8,-99],[-3,-16],[-4,-60],[-1,-34],[0,-67],[-3,-30],[1,-74],[3,-26],[4,-4],[-2,-28],[-2,30],[-1,-37],[11,9],[8,-8],[-1,-21],[6,-6],[1,22],[4,-11],[-6,-19],[-8,12],[3,17],[-6,9],[-12,-13],[-2,-16],[-4,10],[-11,-24],[-1,-95],[13,-15],[-1,-26],[-14,-64],[-6,-20],[-10,-18],[9,195],[0,33],[4,9],[0,34],[2,46],[5,43],[-1,24],[6,56],[1,46],[3,26],[4,61],[8,73],[4,55],[7,66],[1,29],[11,94],[0,17],[12,99],[3,40],[8,62],[13,131],[9,84],[6,39],[12,93],[5,52],[1,58],[5,70],[6,114],[4,19],[-1,23],[6,70],[9,76],[5,56],[6,42],[6,59],[6,35],[0,17],[-4,-22],[-3,-36],[-4,-2],[-9,13],[-5,-6],[-1,-18],[-5,-19],[-6,-4],[-1,11],[7,11],[4,32],[4,1],[-1,18],[4,44],[0,-58],[11,-6],[5,46],[5,8],[9,50]],[[27581,88048],[6,63]],[[27587,88111],[2,34],[8,66],[4,71],[-9,-4],[-2,11],[13,-1],[6,86],[5,106],[-2,31],[-1,-32],[2,-25],[-5,-34],[1,43],[0,159],[1,6],[0,96],[-2,105],[3,-24],[1,-42],[0,-136],[-1,-12],[0,-74],[2,-22],[1,105],[-1,10],[0,128],[-1,44],[-4,66],[-2,68],[-2,122],[-2,38],[-2,82],[-4,94],[-2,118],[-2,15],[0,51],[-2,75],[0,73],[-2,40]],[[27211,83150],[-3,-14],[3,-16],[0,30]],[[27204,83088],[3,23],[-5,-15],[2,-8]],[[27211,83150],[2,-30],[-1,-37],[-10,-51],[4,-25],[10,-7],[2,-26],[7,-18],[1,-36],[5,-16],[1,96],[-4,39],[-1,36],[-10,89],[-1,57],[3,42],[-6,-8],[-3,-20],[3,-21],[1,-42],[-3,-22]],[[27212,82840],[5,-5],[1,13],[-6,13],[0,-21]],[[27225,82777],[-1,-10]],[[27224,82767],[0,-7]],[[27224,82760],[-2,-11],[5,-18],[2,-21],[3,12],[0,74],[-5,56],[-4,12],[0,-30],[4,-6],[-2,-51]],[[27205,82669],[1,32],[-6,-10],[-1,-21],[6,-1]],[[27227,82654],[0,-27],[3,14],[-3,13]],[[27220,82649],[-4,-16],[4,-31]],[[27220,82602],[3,-7],[3,41],[-6,13]],[[27238,82446],[17,2],[7,30],[6,1],[0,27],[4,16],[-6,13],[-2,40],[-8,1],[9,15],[-8,-2],[-12,58],[-4,32],[-6,13],[-6,-8],[-1,-28],[3,-14],[-7,-44],[2,-5],[-2,-30],[3,-24],[6,0],[5,-38],[-4,-30],[4,-25]],[[27260,82446],[3,26],[-7,-23],[4,-3]],[[27223,82422],[-2,-1]],[[27221,82421],[18,3],[2,9],[-8,19],[-10,-6],[0,-24]],[[27260,82358],[3,10],[-11,5],[0,-28],[5,-5],[3,18]],[[27253,82226],[19,-31],[6,-41],[13,-11],[4,25],[-7,58],[-4,17],[-12,81],[-3,30],[-3,2],[-2,-26],[-5,-30],[1,-42],[-5,-9],[-2,-23]],[[27269,82116],[-7,26],[-5,-14],[11,-17]],[[27268,82111],[1,5]],[[27291,81980],[2,74],[-2,-16],[-12,-42],[-8,-16],[-10,3],[8,-20],[5,10],[8,-5],[9,12]],[[27285,81954],[-3,7],[-11,2],[8,-18],[6,9]],[[27298,81928],[1,33],[-9,-4],[1,-13],[7,-16]],[[27291,81980],[-1,-15],[10,-3],[5,-45],[2,17],[0,69],[1,8],[-8,85],[-5,17],[-3,-26],[3,-18],[-1,-42],[-3,-47]],[[27294,81790],[2,-34],[5,1],[0,-26],[8,-23],[14,18],[-1,11],[7,17],[5,-1],[-4,27],[-3,37],[-11,31],[-9,40],[-2,-1],[-2,-35],[-6,-12],[3,-45],[-6,-5]],[[27324,81700],[4,1],[-1,17],[-3,-18]],[[27282,81646],[5,-31],[4,1],[-2,19],[-7,11]],[[27294,81610],[4,-3],[7,15],[0,30],[6,12],[9,-1],[1,28],[-7,-2],[-7,10],[-4,-5],[-4,-49],[-10,-4],[5,-31]],[[27374,81571],[-9,8],[-2,-19],[4,-40]],[[27367,81520],[10,-12],[7,1],[-1,38],[-9,24]],[[27367,81457],[10,4],[-1,13],[-9,-17]],[[27367,81520],[-1,-31],[-5,-24],[-6,-15]],[[27355,81450],[-4,-23]],[[27351,81427],[0,-3]],[[27351,81424],[-2,-3]],[[27349,81421],[-2,-3]],[[27347,81418],[3,-7],[8,31],[10,29],[14,8],[4,-10],[3,11],[-2,42],[-3,-23],[-5,14],[-3,-7],[-9,14]],[[27364,81447],[-6,-9],[-6,-27],[3,-2],[9,38]],[[27347,81418],[2,3]],[[27349,81421],[2,3]],[[27351,81424],[0,3]],[[27351,81427],[4,23]],[[27355,81450],[6,20],[0,14],[5,11],[-3,21],[-1,37],[-7,-1],[3,15],[-7,17],[-6,-16],[-2,-19],[2,-20],[-1,-38],[-4,-17],[-9,-10]],[[27331,81464],[1,-7]],[[27332,81457],[5,-20],[-1,-16],[5,-17],[6,14]],[[27349,81400],[-9,-21],[4,-9],[5,30]],[[27282,81869],[-1,6],[9,22],[1,33],[-4,17],[-5,-12],[-6,17],[-8,-8],[1,14],[-4,17],[-7,-9],[-4,6],[8,17],[7,-3],[12,25],[3,24],[5,14],[0,43],[-5,20],[-12,11],[-3,-7]],[[27269,82116],[-1,-5]],[[27268,82111],[-3,-6],[-9,19],[-6,4],[10,18],[3,17],[9,-13],[-1,20],[-18,56]],[[27253,82226],[0,17],[6,22],[-5,19],[-4,-21],[-2,7],[7,28],[1,16],[-5,22],[0,42],[4,-8],[8,4],[2,59],[-13,-13],[-20,-12],[-14,1],[3,12]],[[27221,82421],[2,1]],[[27223,82422],[0,28],[6,23],[7,14],[-5,33],[3,15],[-7,-1],[-4,27],[1,19],[-4,22]],[[27220,82602],[-5,28],[5,19]],[[27220,82649],[-1,16],[4,13],[-2,35],[-4,10],[-10,-25],[-1,-28],[-7,-7],[0,-39],[-8,-27],[-1,-23],[-9,-2],[0,14],[-11,5],[12,1],[6,-14],[2,29],[7,17],[-1,49],[-3,13],[8,23],[9,15],[6,33],[8,3]],[[27224,82760],[0,7]],[[27224,82767],[1,10]],[[27225,82777],[0,45],[-10,-17],[-5,-28],[-6,-6],[11,44],[-6,3],[-1,-21],[-13,-14],[9,18],[2,26],[6,13]],[[27212,82840],[-1,20],[6,-7],[-1,23],[-9,29],[-4,1],[-2,-19],[-5,-7],[-6,8],[-4,20],[-2,-11],[-8,1],[-1,-19],[-12,-4],[10,9],[1,18],[6,1],[5,16],[10,-26],[5,24],[10,14],[4,-18],[6,10],[0,29],[-7,32],[-6,12],[-6,25],[0,22],[8,26],[1,17],[-11,-5],[-2,-13],[-9,10],[1,-33],[-7,4],[0,43],[3,-2],[-2,-36],[6,31],[5,-8],[0,18],[6,0],[6,22],[-1,37],[-5,-17],[1,-30],[-4,19],[10,44],[1,33],[-3,40],[-6,-6],[-11,27],[0,-20],[-12,11]],[[27176,83255],[-1,3]],[[26061,77327],[37,2],[138,-7],[171,0],[12,-1]],[[26419,77321],[53,2],[123,0],[20,1],[-1,-8],[18,0],[62,-5],[63,-7]],[[26757,77304],[3,12],[-7,37],[2,19],[-7,40],[-5,-8],[-7,42],[-6,16],[0,13],[-10,2],[-3,46],[-4,-3],[0,38],[-7,-3],[-2,28],[-7,21],[1,47],[-9,38],[0,47],[10,40],[11,35],[6,9],[3,25],[5,13],[16,7],[2,37],[5,8],[1,17],[5,5],[7,36],[4,1],[4,42],[5,18],[13,23],[11,-19],[11,7],[7,-4],[11,52],[2,34],[0,44],[3,12],[1,42],[5,-4],[8,33],[3,52],[8,31],[3,41],[0,54],[3,17],[0,27],[6,48],[11,24],[1,20],[8,67],[5,9],[0,18],[7,21],[0,23],[7,66],[4,26],[6,4],[8,19],[5,32],[17,60],[7,5],[9,31],[6,9],[13,46],[0,24],[7,16],[7,51],[4,18],[0,39],[10,46],[1,48],[4,17],[7,11],[1,12],[7,16],[6,-8],[3,16],[11,17],[8,44],[8,31],[2,30],[5,20],[13,25],[4,42],[-5,7],[2,25],[-6,6],[6,50],[-6,0],[3,19],[-1,21],[6,4],[3,28],[17,21],[-5,11],[1,18],[7,14],[0,22],[-5,9],[2,17],[10,24],[0,13],[12,0],[2,34],[-2,2],[1,42],[11,44],[18,31],[5,16],[7,-5],[1,22],[11,27],[0,10],[17,35],[1,18],[5,10],[-3,64],[-3,9],[2,28],[6,18],[1,50],[7,18],[-1,38],[4,-6],[6,23],[1,22],[-3,42],[4,12],[-5,11],[6,15],[1,16],[-4,40],[2,12],[-4,15],[8,30],[-1,19],[3,23],[-7,19],[0,12],[10,51],[4,0],[0,19],[14,23],[8,-3],[3,10],[0,27],[8,22],[5,5],[-1,23],[11,47],[-3,59],[8,41],[-1,15],[7,47],[4,-4],[4,17],[-1,44],[2,-3],[0,47],[-5,4],[-1,30],[-3,16],[3,7],[2,27],[3,7],[3,33],[-4,26],[5,25],[-2,8],[1,34]],[[27312,81343],[7,28],[9,21],[-10,-5],[6,11],[8,-1],[8,-15],[4,11],[-6,16],[-2,28],[-4,20]],[[27332,81457],[-1,7]],[[27331,81464],[7,15],[1,34],[4,-13],[-1,37],[-2,5],[3,30],[6,16],[4,36],[10,5],[-17,73],[-2,-17],[-20,-19],[-6,-24],[-2,-30],[8,4],[1,-15],[-8,-16],[3,20],[-7,8],[4,37],[-6,2],[-10,-61],[-4,12],[-8,0],[-5,16],[-4,39],[5,3],[9,-15],[5,14],[-1,20],[7,27],[-4,12],[-2,31],[-4,4],[-1,36]],[[27294,81790],[5,9],[-4,41],[5,23],[0,16],[-12,-11],[-6,-19],[-12,-18],[0,-38],[-3,-12],[-9,16],[10,-4],[0,51],[10,12],[4,13]],[[24498,64465],[0,39],[-5,30],[10,73],[0,36],[-4,30],[3,35],[6,5],[14,31],[8,28],[8,55],[0,21],[4,7],[-2,31],[-16,66],[-6,69],[-9,40],[0,134],[9,130],[-1,27],[1,65],[6,11],[7,33],[2,43],[-1,33],[4,5],[0,23],[3,69],[3,12],[-2,16],[3,21],[4,0],[3,21],[6,9],[8,35],[10,22],[8,0],[5,15],[14,18],[23,20],[12,15],[5,13],[7,84],[5,19],[0,16],[5,28],[2,43],[-2,8]],[[24658,66049],[-4,39],[4,24],[11,28],[10,16],[3,35],[22,54],[8,41],[9,58],[-4,62],[3,44],[7,43],[11,34],[8,7],[13,37],[9,10],[11,29],[3,39],[8,5],[2,13],[0,35],[-2,29],[1,53],[4,18],[3,34],[-2,48],[-5,35],[0,18],[4,21],[-1,48],[-8,88],[1,55],[-2,10],[-10,15],[-12,35],[-4,6],[-8,38],[-2,18],[1,54],[-6,24],[-3,69],[1,67],[-3,16],[-17,29],[-14,66],[-12,7],[-9,-11],[-16,23],[-2,23],[-13,49],[-13,15],[-15,9],[-22,-9],[-7,3],[-19,47],[-6,-1],[-9,-16],[-18,24],[-2,12],[-1,40],[-4,24],[-2,48],[-1,58],[-4,20],[-6,76],[14,67],[7,48],[10,2],[9,53],[0,12],[6,35],[0,67],[1,69],[-4,55],[2,25],[-3,53],[-11,29],[-6,39],[-7,26],[-3,29],[-9,33],[-2,30],[2,39],[-5,44],[-2,36],[1,34],[-3,56],[-17,49],[-18,-1],[-17,21],[-12,28],[-7,50],[-8,34],[1,21],[6,15],[5,39],[0,29],[-5,56],[0,19],[5,42],[-4,33],[-11,13]],[[24442,69366],[-7,-13],[-2,16],[-8,-6],[-4,-31],[-9,-17],[2,-32],[-4,-5],[2,-36],[-7,1],[-7,-11],[-3,-37],[-10,-31],[1,-48],[-18,-18],[-2,-7],[1,-37],[-6,-17],[-6,-32],[-60,12],[-55,7],[-49,4],[-33,5],[-35,3],[-42,6],[-75,3],[-41,7],[-62,4],[-64,0],[-33,4],[-32,0],[-68,7],[-94,3],[-63,0],[-103,-7],[-71,-6],[-80,-4],[-32,-4],[-32,-1]],[[23231,69048],[4,-15],[0,-22],[-5,-14],[-1,-37],[-5,-27],[-12,-16],[-4,-17],[-3,-41],[-8,-20],[-1,-23],[3,-28],[9,-21],[4,-29],[-3,-21],[2,-45],[-3,-35],[0,-23],[10,-26],[0,-26],[-7,-29],[-1,-45],[3,-21],[0,-25],[-11,-35],[3,-41],[-1,-19],[-6,-25],[5,-37],[0,-61],[-5,-35],[0,-26],[4,-15],[7,0],[0,-21],[-5,-9],[-11,5],[-7,-12],[0,-33],[4,-19],[0,-27],[-3,-21],[2,-26],[-4,-12],[0,-25],[7,-6],[-2,36],[3,4],[8,-20],[0,-28],[-4,-20],[-10,-2],[-6,-16],[-4,-31],[8,-22],[-2,-56],[2,-10],[-1,-40],[4,-32],[-6,-20],[-7,5],[-11,-14],[-4,-30],[7,-33],[-1,-40],[-7,-10],[-3,52],[-13,-19],[-4,-21],[0,-27],[4,-31],[-1,-16],[-9,-30],[0,-24],[6,-38],[-1,-25],[-6,-25],[-1,-17],[4,-21],[8,2],[1,-29],[-8,-19],[0,-24],[7,-18],[0,-28],[4,-23],[0,-20],[-10,-22],[-3,-20],[1,-33],[-10,-33],[-1,-31],[-4,-17],[1,-16],[6,-12],[-2,-41],[4,-23],[0,-23],[-8,-10],[-8,4],[1,-26],[-2,-22],[-7,3],[-3,19],[-4,-8],[0,-17],[6,-30],[-3,-16],[-8,2],[-5,-32],[0,-35],[3,-22],[0,-29],[-5,-20],[-8,-14],[-2,-22],[-8,-32],[1,-39],[-4,-23],[10,-32],[-1,-36],[-3,-25],[-8,-29],[0,-35],[-5,-30],[-5,-10],[-4,-22],[2,-36],[-2,-51],[3,-25],[7,-34],[-1,-55],[-3,-16],[-14,-8]],[[23041,66078],[-8,1],[1,-29],[-6,-19],[4,-13],[0,-38],[-6,-15],[5,-24],[-7,-62],[-6,0],[5,-28],[-5,-17],[-2,-24],[-4,1],[-3,-24],[-9,-33],[-9,-21],[0,-29],[-3,-12],[4,-32],[-2,-28],[4,-22],[6,-15],[-1,-28],[8,-33],[5,-6],[2,-24],[-1,-38],[2,-25],[4,2],[-5,-25],[1,-33],[6,-16],[5,-32],[-1,-22],[-4,-19],[7,-38],[-4,-24],[-1,-47],[6,-2],[4,-19],[5,-2],[0,-52],[5,-26],[0,-21],[-7,-38],[0,-47],[-2,-54],[-3,-17],[-10,12],[-7,-13],[-5,2],[-1,-34],[4,-4],[-2,-20],[-7,-16],[2,-47],[7,9],[6,-13],[1,-101],[2,-20],[-2,-27],[-11,-32],[-3,-29],[-5,-5],[-2,-37],[5,-15],[0,-27],[-4,-27],[40,0]],[[23039,64465],[93,0],[19,1],[118,0],[32,-1],[92,0],[22,-1],[64,1],[161,0],[13,1],[440,0],[32,-1],[305,0],[60,-1],[8,1]],[[18973,62886],[0,1177],[1,92],[0,1660],[-1,170],[0,863]],[[18973,66848],[-60,1],[-153,4],[-76,1],[-173,-1],[-82,0],[-94,6],[-84,0],[-34,1],[-78,0]],[[18139,66860],[-67,-1],[-71,-4],[-64,-5],[-76,7],[-87,-2],[-77,0],[-6,-1],[-73,0],[-18,-1],[-205,0],[-85,-1],[-3,-1]],[[17307,66851],[0,-2884],[2,-18],[-3,-28],[5,-3],[0,-37],[9,-11],[1,-35],[-1,-39],[5,-3],[1,-25],[-3,-7],[2,-32],[-4,-13],[6,-14],[1,-18],[5,-5],[-3,-28],[3,-34],[-6,-31],[-5,-7],[-1,-62],[10,-13],[3,-33],[4,-16],[1,-24],[5,-24],[-2,-42],[-9,-22],[-4,4],[-7,-11],[0,-68],[-4,-9],[-11,-6],[-4,9],[-3,24],[-4,-26],[-7,-25],[-2,-28],[-4,-6],[-8,37],[-8,-1],[-8,-25],[-5,-24],[0,-32],[4,-6],[4,-41],[-2,-17],[-11,-41],[-2,-39],[4,-11],[4,-37],[0,-45],[-3,-50],[5,-3],[4,-23],[3,-37],[6,-4],[3,-15],[2,-38],[-2,-11],[7,-28],[0,-37],[2,-32],[5,-23],[1,-45],[5,-21],[0,-28],[4,-15],[0,-38],[4,-9],[1,-21],[9,-20],[6,-2],[6,-27],[10,-14],[0,-33],[4,-17],[6,-45],[0,-22],[9,-25],[8,-79],[1,-34],[-5,-33],[7,-42],[-4,1],[-2,19],[-3,-8],[4,-40],[0,-47],[6,-16],[11,-61],[0,-34],[8,-30],[3,-34],[4,-9],[1,-51],[5,-54],[1,-61],[4,-42],[5,-24],[-1,-62],[7,-64],[6,-40],[1,-21],[8,-33],[2,-50],[10,-33],[-1,-73],[4,-13],[5,-46],[-1,-17],[7,-14],[6,-28],[-1,-12],[6,-27],[0,-27],[-5,-24],[-2,-33],[-5,-17],[-8,-45],[-1,-88],[-14,-59],[-12,-14],[-9,7],[-5,-22],[-4,-44],[-11,-11],[-7,18],[-6,-15],[-4,-61],[-4,-25],[-8,-24],[-6,-28],[-4,-55],[0,-26],[-4,-6],[-1,-34],[-6,-27]],[[17338,60364],[-4,-44],[0,-28],[-3,-11],[-1,-32],[-4,-21],[-6,-6],[-1,-22],[7,-10],[2,-43],[5,-21],[-1,-27],[4,-12],[0,-18],[-12,-52],[3,-41],[-4,-60],[-6,-24],[2,-29],[-11,-40],[0,-33],[-11,-22],[0,-32],[4,-15],[4,-59],[-2,-23],[0,-3050],[1,-3],[0,-274],[1,-21],[0,-180],[-1,-55],[1,-38],[0,-846]],[[17305,55172],[57,-1],[109,0],[12,-1],[80,0],[17,-1]],[[17580,55169],[0,1039],[-1,349],[0,415],[9,25],[3,36],[7,47],[4,2],[0,26],[4,9],[14,89],[5,-9],[4,24],[6,16],[1,62],[3,52],[3,13],[6,-11],[6,26],[1,41],[6,1],[9,36],[-1,46],[-3,30],[2,21],[6,12],[5,32],[-2,18],[3,21],[-19,75],[1,15],[16,25],[-4,9],[3,34],[3,6],[1,27],[5,-5],[2,15],[9,-2],[-5,39],[-9,6],[-4,-7],[-8,8],[-8,19],[-3,33],[11,-5],[2,18],[10,9],[0,14],[5,1],[4,41],[8,-9],[5,19],[6,8],[1,20],[7,15],[-1,22],[7,43],[0,14],[12,33],[5,-10],[3,17],[10,0],[2,22],[8,-4],[7,13],[5,-4],[6,9],[-2,20],[8,39],[1,26],[-2,33],[12,18],[0,24],[4,23],[6,2],[10,32],[4,41],[7,6],[3,45],[7,45],[6,8],[2,31],[3,10],[1,46],[5,23],[0,20],[6,-10],[8,6],[0,10],[11,63],[10,20],[-4,35],[2,35],[-5,30],[5,8],[1,34],[9,28],[-1,23],[10,-14],[1,19],[8,31],[10,11],[8,31],[-1,42],[-3,6],[-1,40],[4,17],[5,0],[2,-23],[8,-6],[5,-44],[14,12],[1,18],[6,25],[0,29],[-5,20],[1,34],[6,6],[0,28],[9,10],[11,-28],[6,16],[6,-2],[9,17],[4,-30],[8,-19],[4,6],[5,-14],[10,-6],[8,17],[2,21],[0,58],[-6,42],[3,16],[-4,43],[-1,44],[2,14],[-9,28],[-8,2],[0,33],[6,32],[0,29],[4,15],[-5,13],[0,30],[-3,5],[-7,35],[3,36],[-1,51],[-5,42],[2,38],[-4,25],[-7,1],[-2,10],[1,33],[5,17],[2,58],[-1,59],[-9,13],[-3,-12],[-7,0],[0,24],[-4,12],[3,18],[-1,18],[13,20],[4,27],[-3,33],[1,24],[-7,18],[-4,22],[3,19],[5,-4],[1,33],[-4,11],[4,21],[5,-9],[3,16],[5,1],[7,36],[0,16],[-8,30],[5,26],[2,31],[5,20],[-2,36],[-3,1],[-1,30],[-8,-17],[-10,26],[-7,-5],[-4,15],[1,19],[-6,18],[1,12],[-5,36],[-6,27],[6,24],[0,29],[5,24],[7,10],[2,19],[-1,28],[-4,16],[4,3],[0,26],[-6,29],[-5,-1],[-7,26],[7,49],[-4,21],[0,60],[8,-23],[7,25],[8,-16],[3,11],[-1,23],[4,4],[5,22],[1,29],[11,15],[4,16],[8,54],[4,0],[15,-36],[5,-25],[3,-36],[0,-44],[6,-2],[7,18],[6,-26],[13,-12],[3,-43],[7,-4],[5,-18],[-1,-18],[7,-40],[7,-28],[4,1],[2,-17],[-4,-26],[3,-37],[3,3],[4,-19],[5,5],[3,22],[8,-6],[0,36],[5,30],[5,14],[-2,40],[5,7],[7,-11],[7,23],[4,-4],[4,14],[3,36],[-7,30],[1,20],[-5,52],[11,-4],[9,5],[-2,24],[3,43],[-4,17],[-2,30],[2,33],[4,14],[-4,26],[7,9],[5,21],[-2,36],[3,20],[-3,18],[0,26],[6,22],[1,20],[8,33],[2,17],[-4,2],[4,40],[8,24],[4,38],[12,44],[-1,32],[5,29],[4,4],[-4,20],[7,35],[11,-4],[2,13],[-4,24],[7,19],[3,30],[7,-3],[4,51],[-1,23],[3,19],[-2,13],[0,75],[-5,12],[-9,-1],[1,44],[5,19],[-1,26],[4,11],[2,37],[7,17],[2,29],[11,0],[8,29],[2,35],[-2,11],[4,12],[11,-23],[6,-22],[9,-17],[3,14],[8,8],[12,48],[7,5],[1,41],[3,4],[2,29],[4,5],[2,52],[8,29],[-1,18],[2,36],[4,28],[-2,18],[-5,8],[-4,24],[6,14],[0,19],[8,20],[-2,37],[11,30],[-2,30],[-4,20],[6,37],[1,38],[14,53],[6,6],[8,23],[5,-6],[1,37],[10,36],[9,-30],[0,-35],[-7,-47],[3,-26],[6,-18],[7,-51],[9,-10],[8,-22],[8,7],[9,23],[8,-8],[1,12],[7,-12],[5,16],[9,-6],[10,14],[4,22],[8,-28],[11,32],[0,9],[9,-2],[4,12],[6,-32],[2,-31],[0,-71],[2,-12],[10,-7],[1,-22],[7,-20],[8,-5],[8,13],[2,32],[11,17],[5,-14],[7,3],[9,31],[10,-27],[11,13],[-1,-27],[11,17],[5,-1],[8,-34],[13,-1],[3,-12],[6,1],[7,61],[6,25],[4,-2],[1,-19],[12,-4],[3,-20],[10,-7],[3,-27],[26,17],[7,-22],[10,10],[8,15],[4,19],[2,-10],[9,3],[0,-24],[-4,1],[-8,-16],[3,-11],[-5,-20],[-2,-36],[6,-35],[-4,-28],[11,-25],[2,-35],[-4,-11],[-1,-31],[13,-24],[8,13],[4,-17],[1,-49],[3,-4],[5,19],[4,29],[8,-5],[0,17],[8,28],[-1,16],[6,19],[3,27],[-4,14],[8,7],[9,47],[-6,13],[2,14],[1,43],[14,17],[0,24],[6,14],[2,18],[6,4],[-3,25],[2,28],[21,41],[3,2]],[[25449,66073],[1,9],[0,67],[-1,6],[0,90],[-3,32],[-3,-1],[-2,52],[0,79],[8,112],[12,84],[6,54],[6,37],[10,33],[3,29],[0,42],[4,41],[4,86],[3,25],[2,50],[3,16],[-1,41],[3,2],[-1,39],[9,71],[0,20],[5,33],[8,22],[2,65]],[[25527,67309],[0,332],[-1,2],[0,1795],[-1,12],[0,502],[-1,11],[0,518],[1,2],[0,449],[-4,-7],[-2,18],[-6,-1],[-5,14],[-7,48],[5,-1],[-3,22],[1,40],[8,22],[1,46],[-3,23],[-6,23],[-4,-3],[0,24],[-6,6],[0,14],[-5,29],[8,30],[-6,3],[0,15],[11,7],[0,30],[4,0],[8,42],[-3,16],[3,23],[-2,46],[5,5],[-5,10],[13,20],[5,38],[-4,40],[0,23],[-5,18],[3,24],[-5,27],[7,13],[0,51],[9,48],[-5,18],[5,12],[-3,26],[3,10],[-6,36],[-1,33],[-4,21],[-10,10],[-8,15],[-2,28],[-4,7],[1,30],[-3,17],[4,33],[-8,-3],[1,23],[-4,9],[0,20],[-5,11],[7,59],[-7,1],[-3,19],[-8,21],[-9,2],[-4,36],[5,0],[2,20],[-3,7],[0,33],[-8,54],[-4,16],[-7,11],[-6,47],[0,54],[-5,26],[-4,-8],[1,-42],[-5,-1],[-2,34],[-5,22],[-4,3],[3,-32],[-3,-14],[-5,8],[-4,27],[2,30],[-7,30],[-4,-30],[1,30],[-2,36],[3,24],[11,36],[1,22],[2,-23],[4,17],[-9,50],[-7,-7],[-1,28],[-12,15],[3,28],[12,-23],[1,28],[-2,18],[-11,26],[-8,-1],[-3,7],[2,22],[8,1],[-4,18],[-1,23],[4,56],[-7,13],[2,41],[-3,8],[-4,-14],[-4,5],[1,17],[13,9],[1,35],[-11,-3],[-9,-22],[-2,22],[5,20],[2,32],[11,22],[0,23],[-9,4],[-4,-11],[-4,19],[7,25],[8,-14],[2,16]],[[25386,73245],[-3,23],[-2,41],[-5,28],[-15,36],[-11,68],[0,46],[5,46],[2,45],[8,25],[5,33],[7,27],[0,44],[-6,18],[-15,3],[-16,16],[-24,11],[-14,34],[-9,41],[-9,-29],[-4,-5],[-13,25],[-5,24],[-3,78],[-8,64],[0,25],[3,35],[3,7],[7,48],[5,14],[4,63],[3,14],[-2,37],[-7,78],[-5,11],[-13,4],[-7,-7],[-9,-24],[-2,-15],[-9,-29],[-8,-9],[-12,-26],[-9,0],[-15,-40],[-3,-17],[-24,-46],[-17,-25],[-2,7],[-11,1],[-7,8],[-12,37],[-9,39],[-4,29],[-1,25],[-6,33],[-8,30],[-9,51],[0,42],[5,32],[8,28]],[[25078,74447],[-12,15],[-4,-12],[-1,-44],[-11,-42],[-5,-47],[-2,8],[-14,-3],[1,24],[8,20],[6,26],[-3,34],[-7,5],[-7,-31],[-17,-39],[-2,-17],[3,-48],[-2,-28],[-7,-22],[-9,-63],[-7,-67],[1,-64],[-8,-4],[-8,-44],[2,-38],[5,-28],[5,-14],[11,-9],[4,-49],[0,-32],[-5,-59],[-10,-45],[-5,-37],[-8,-91],[1,-40],[7,5],[5,-7],[0,-15],[-12,-67],[1,-6],[0,-70],[-5,-12],[-11,-11],[-6,-34],[-9,-25],[-6,4],[-5,-8],[1,-59],[-3,-18],[-13,-33],[-6,-32],[-14,-11],[-2,-40],[-14,-34],[-14,51],[-11,-7],[-4,-17],[-6,-49],[0,-12],[9,-27],[1,-31],[-14,7],[-6,-14],[-6,-36],[-22,-52],[-6,-48],[-11,-9],[-15,-43],[-5,-21],[-8,-66],[-7,-27],[-7,-8],[-7,-39],[-4,-34],[-3,-81],[1,-80],[4,-45],[6,-40],[13,-59],[1,-44],[5,-71],[0,-16],[11,-74],[10,-41],[4,-62],[-4,-62],[-6,-36],[0,-25],[7,-27],[5,-45],[13,-40],[4,-73],[-28,-73],[-13,-37],[-15,-6],[-22,-50],[-18,-15],[-5,11],[-7,47],[-5,23],[-7,53],[-8,15],[-8,3],[-6,-13],[-6,-50],[-7,-27],[-3,-48],[-1,-55],[-3,-15],[-4,-50],[1,-52],[5,-23],[-1,-50],[-7,-42],[-3,-130],[-3,-35],[-5,-9],[-5,-49],[-5,-20],[-9,-14],[-11,-50],[-9,-18],[-12,-39],[-4,-25],[-15,-29],[-9,-29],[-8,-43],[-1,-32],[-5,-25],[-5,-41],[-14,-14],[-5,-30],[-1,-39],[-3,-17],[-12,-23],[-16,-77],[-17,-58],[-6,-29],[-1,-17],[3,-69],[-4,-37],[-17,-52],[-3,-39],[1,-35],[6,-32],[0,-32],[-6,-26],[-4,-41],[-3,-13],[-7,-81],[1,-27],[-6,-103],[0,-101],[2,-62],[-1,-7],[5,-40],[0,-41],[6,-69],[7,-44],[7,-23]],[[24658,66049],[34,1],[114,-1],[47,4],[76,1],[43,5],[42,2],[35,4],[69,3],[63,6],[40,-5],[25,1],[122,0],[81,3]],[[25668,66070],[-14,246],[-5,110],[-34,799]],[[25615,67225],[-88,1],[0,82]],[[25527,67308],[0,1]],[[25449,66073],[219,-3]],[[26284,67326],[0,284],[1,2],[0,1935],[-1,6],[0,205],[-1,3],[0,238],[-1,2],[0,656],[-1,12],[0,278],[-1,3],[0,348]],[[26280,71298],[-11,41],[-10,26],[0,17],[7,33],[11,72],[0,27],[-13,59],[0,21],[4,16],[16,6],[6,17],[-2,36],[-11,41],[5,42],[0,28],[-4,2],[-17,-18],[-13,28],[-15,-5],[-16,46],[-9,16],[-7,20],[-8,34],[-11,21],[-12,-12],[-8,-52],[-4,-11],[-12,-6],[-16,17],[-13,-10],[-9,15],[-5,39],[0,31],[5,31],[0,91],[6,44],[0,43],[-3,21],[-13,30],[-2,31],[-4,24],[-9,18],[-13,6],[-9,19],[-9,84],[0,41],[-5,54],[-7,37],[-17,42],[-6,-12],[-2,-16],[-5,-3],[-9,10],[-4,20],[0,26],[-3,36],[-8,28],[-7,41],[-2,28],[1,111],[-4,40],[0,34],[-4,32],[-5,14],[-18,11],[-5,14],[0,37],[-5,4],[-6,-39],[0,-14],[-6,-19],[-12,-10],[-10,9],[-13,-25],[-3,-18],[-10,-25],[-3,-30],[0,-52],[2,-38],[-5,-34],[-10,-25],[-6,-27],[-4,-7],[-5,16],[0,28],[16,29],[-2,28],[-14,2],[-7,37],[-8,-32],[-9,11],[0,27],[9,21],[0,30],[-10,29],[-15,10],[-1,15],[0,99],[5,31],[0,22],[-10,16],[-12,-8],[-4,21],[1,60],[-2,15],[-9,22],[-7,-7],[0,-26],[5,-41],[0,-21],[-6,-11],[-6,1],[-7,27],[-5,2],[-6,-27],[-10,-83],[-2,-32],[-6,-14],[-12,19],[-13,64],[-5,12],[-13,3],[-13,25],[-8,32],[1,42],[-7,93],[-7,25],[-6,5],[-5,-8],[-1,-32],[-7,-46],[-16,-11],[-11,-31],[-4,-20],[-13,-34],[-6,-4],[-12,-43],[-8,-12],[-9,4],[-6,13],[-10,38],[-14,-24],[-6,-33],[0,-31],[-3,-11],[-5,4],[-1,37],[-6,24],[2,38],[8,26],[1,43],[-8,42],[-10,8],[-6,-5],[-2,-44],[5,-26],[0,-26],[-6,-15],[-8,16],[-14,3],[-6,22],[-10,1],[-6,-10],[-8,-58],[-6,-10],[-4,7],[-9,48],[0,26],[6,30],[4,39],[-1,29],[-8,17],[-2,30],[-4,4],[-4,-19],[-11,-24],[-5,4]],[[25527,67308],[5,25],[11,30],[12,-28],[4,11],[0,21],[-7,23],[1,15],[23,30],[26,9],[14,-9],[12,-14],[1,-10],[10,-6],[27,-46],[20,-45],[7,-10],[5,-26],[14,-26],[10,-26]],[[25722,67226],[83,1],[54,-1],[99,0],[39,2],[71,0],[3,-1],[196,0],[17,-1],[0,100]],[[25615,67225],[107,1]],[[23358,69944],[0,16],[11,29],[5,33],[12,11],[2,9],[-1,45],[7,9],[6,-11],[4,6],[2,40],[16,23],[14,-13],[1,-33],[4,-13],[8,6],[7,-8],[8,20],[0,20],[-4,17],[1,22],[8,24],[9,12],[-1,47],[-12,8],[-3,27],[5,18],[5,0],[5,-17],[5,2],[1,38],[-4,23],[-11,5],[-9,-28],[-7,18],[1,65],[-4,19],[-10,6],[-4,18],[-6,48],[2,37],[-2,36],[-5,10],[-5,-8],[-5,9],[-2,35],[2,22],[8,36],[8,22],[2,47],[5,18],[9,13],[4,16],[3,30],[6,13],[0,21],[7,15],[6,-13],[4,3],[1,33],[-8,22],[1,65],[7,45],[10,20],[5,24],[-2,53],[4,14],[11,2],[5,42],[5,13],[7,2],[9,-22],[7,7],[0,24],[3,14],[11,-11],[7,14],[-6,49],[0,664],[-1,2],[0,1001],[-1,14],[0,350],[-1,1],[0,151],[1,4],[0,476],[-1,5],[0,476]],[[23550,74421],[-75,0],[-2,-2],[-577,0],[-9,2],[-294,0],[-1,1],[-88,0],[-9,-1],[-84,0],[-1,-2],[-236,0],[-69,-2],[-56,-1],[-84,0],[-34,2],[-37,0],[-72,3],[-81,1],[-68,3],[-39,0],[-36,2],[-116,2]],[[21479,69939],[115,0],[4,1],[264,0],[0,1],[417,0],[1,-1],[432,0],[1,1],[256,0],[1,1],[152,0],[2,1],[211,0],[23,1]],[[24981,75151],[-16,-1]],[[24965,75150],[-5,-36],[-3,-52],[6,-31],[6,-1],[11,12],[4,18],[2,38],[-5,53]],[[26900,72321],[0,118],[6,32],[-2,37],[2,33],[-2,37],[-7,3],[-1,32],[3,14],[-1,38],[-3,31],[-8,0],[1,42],[6,27],[9,24],[0,26],[10,29],[4,58],[5,42],[8,5],[0,20],[6,3],[-5,15],[3,22],[-8,39],[18,49],[5,22],[-1,30],[6,52],[0,29],[5,-9],[2,20],[8,23],[3,18],[4,-2],[-2,19],[5,-4],[-6,35],[4,10],[4,53],[0,34],[6,7],[7,23],[4,-7],[5,13],[1,29],[3,13],[7,-3],[-1,-32],[3,-2],[0,46],[5,15],[1,23],[7,-2],[2,24],[-5,5],[2,27],[9,-7],[1,11],[7,-3],[2,24],[7,16],[0,-30],[3,15],[7,5],[3,-13],[8,6]],[[27075,73630],[-49,183],[-16,54],[-25,95],[-7,23],[-1,15],[-7,7],[-1,20],[-26,30],[-25,49],[-16,41],[-12,45],[-7,7],[-6,23],[-8,10],[-6,19],[2,14],[-1,92],[-5,0],[-1,22],[-4,0],[-6,28],[-13,3],[0,18],[-4,15],[-7,9],[-1,16],[4,18],[0,39],[-6,28],[3,12],[-11,37],[-18,25],[-5,-2],[-6,17],[-4,-12],[-13,2],[0,14],[-8,21],[0,34],[-8,39],[1,27],[-2,24],[-9,9],[-8,-1],[-26,38],[-7,5],[-20,34],[-9,26],[-14,6],[-9,-8],[-9,7],[-4,16],[-9,18],[-7,6],[-12,28],[-8,26]],[[26599,75001],[-4,26],[-57,-5],[-32,-6],[-73,-2],[-64,-8],[-12,2],[-85,-15],[-51,-19],[-50,-9],[-24,-1],[-15,5],[-48,11],[-73,-10],[-11,0],[-104,-25],[-28,-8],[-2,-3],[-29,-6],[-27,-2],[-16,26],[-7,-26],[-138,14],[-75,2],[-95,6],[-44,6],[1,-44],[-41,-18],[-20,-3],[0,21],[4,40],[3,48],[3,104],[-2,30],[-4,19],[-36,-1],[-93,-5],[-83,-2],[-54,0],[-79,-6],[-35,12]],[[24999,75149],[5,-78],[4,-30],[4,-69],[10,-18],[4,7],[6,35],[0,12],[9,40],[5,6],[10,-24],[4,-63],[6,-42],[4,-12],[-1,-34],[-9,-48],[1,-36],[8,-25],[12,9],[2,-29],[-3,-21],[-8,-5],[-6,-21],[0,-43],[6,-18],[5,0],[6,-58],[5,-110],[-6,-29],[-4,2]],[[26280,71298],[9,-13],[9,-49],[7,3],[7,29],[5,35],[9,10],[10,33],[13,-12],[8,-28],[5,12],[6,-4],[7,-35],[5,-6],[6,16],[2,21],[0,51],[7,27],[15,9],[7,15],[7,34],[2,23],[0,36],[16,100],[2,24],[0,87],[5,32],[23,25],[6,14],[11,13],[7,0],[19,-22],[10,6],[7,22],[13,10],[4,11],[5,58],[14,23],[3,57],[4,15],[11,8],[15,29],[6,-8],[4,-62],[5,-14],[11,-4],[9,-22],[12,5],[9,33],[5,8],[20,12],[4,6],[11,36],[1,35],[5,18],[6,-6],[9,-38],[4,0],[9,17],[13,-5],[4,-10],[5,-30],[0,-17],[5,-26],[12,-24],[6,-28],[1,-17],[6,-13],[10,6],[10,-25],[15,-19],[4,12],[1,26],[-2,66],[6,56],[0,40],[4,49],[9,31],[6,10],[18,3],[10,33],[7,52],[6,23],[8,19],[5,76]],[[24633,85495],[9,2],[-14,14],[5,-16]],[[24610,85494],[2,14],[-8,4],[6,-18]],[[24746,85469],[6,10],[-8,9],[2,-19]],[[24607,85454],[-3,28],[-5,-12],[8,-16]],[[24692,85459],[12,22],[7,-2],[6,14],[-12,-1],[-11,-18],[-9,-24],[7,9]],[[24615,85421],[2,23],[-3,7],[1,-30]],[[24595,85431],[-2,-12],[8,-4],[5,-18]],[[24606,85397],[3,4],[-2,24],[-12,6]],[[24639,85395],[2,14],[-3,14],[-2,-29],[3,1]],[[24604,85387],[2,10]],[[24606,85397],[-3,1]],[[24603,85398],[1,-11]],[[24722,85276],[-2,24],[-2,-19],[4,-5]],[[24583,85279],[-4,39],[-5,21],[-7,-24],[5,-12],[4,-27],[7,3]],[[24592,85251],[5,4],[2,15],[-6,5],[-1,-24]],[[24556,85245],[5,11],[2,35],[7,-22],[1,25],[-4,6],[-3,21],[5,8],[-11,14],[-6,-28],[8,-18],[-3,-17],[-6,18],[5,-53]],[[24847,85221],[5,-7],[-5,26],[-5,10],[-14,42],[5,-31],[13,-31],[1,-9]],[[24713,85208],[4,5],[-2,28],[-4,10],[0,-43],[2,0]],[[24847,85183],[-1,18],[-7,-12],[8,-6]],[[24861,85186],[-9,19],[3,-17],[6,-2]],[[24875,85149],[-4,4],[-3,-18],[7,14]],[[24823,85136],[4,-21],[0,22],[-4,-1]],[[24884,85133],[-3,-19],[5,-10],[2,-18],[5,9],[0,19],[-9,19]],[[24843,85097],[-1,18],[-8,-5],[9,-13]],[[24521,85249],[1,31],[-21,-7],[-20,-34],[-5,-15],[-13,-69],[9,6],[9,-27],[3,-47],[9,-18],[-1,28],[8,50],[4,8],[6,-21],[2,20],[-1,52],[5,22],[-4,20],[9,1]],[[24917,85065],[3,15],[9,-15],[6,0],[7,42],[-1,29],[-6,-6],[-7,28],[3,29],[-6,-11],[0,-23],[-7,2],[-2,11],[-29,-20],[11,-17],[7,-24],[6,18],[-3,-25],[9,-33]],[[24965,85020],[2,-21],[4,15],[-6,6]],[[24866,84970],[-1,-14],[5,2],[-4,12]],[[24837,84987],[-5,-11],[-3,-28],[-7,2],[-2,-15],[11,2],[2,26],[5,-22],[3,23],[-1,31],[-3,-8]],[[24483,84898],[-6,34],[-6,-7],[2,-18],[8,-18],[2,9]],[[24816,84885],[10,30],[7,10],[-8,6],[-4,-19],[-9,1],[3,17],[-5,13],[-1,-29],[-5,-5],[12,-24]],[[24932,84858],[-2,20],[-4,-7],[6,-13]],[[24957,84835],[-1,23],[-7,11],[-2,-22],[4,-15],[6,3]],[[24935,84732],[5,-4],[1,33],[-6,-29]],[[24309,84721],[2,6],[14,5],[3,23],[6,9],[1,16],[8,0],[1,20],[7,3],[2,12],[9,-10],[-2,24],[-10,24],[-5,19],[-2,32],[2,10],[-6,11],[-4,-7],[-6,16],[-7,-10],[-4,-27],[-6,2],[-8,-23],[-24,-45],[-9,-25],[3,-7],[4,-39],[7,-14],[4,9],[9,-4],[2,-33],[9,3]],[[24937,84699],[10,9]],[[24947,84708],[-5,7],[-5,-16]],[[24798,84771],[-3,-40],[2,-37],[4,-1],[-3,35],[2,33],[-2,10]],[[24988,84656],[4,13],[-5,9],[1,-22]],[[24969,84617],[0,27],[-3,-18],[3,-9]],[[25019,84513],[9,5],[4,-19],[2,41],[-4,13],[-11,-40]],[[25026,84453],[-5,-10],[4,-8],[1,18]],[[25030,84406],[-1,18],[-4,-8],[5,-10]],[[25034,84404],[6,1],[-1,17],[-5,-18]],[[25035,84333],[-3,17],[-5,5],[8,-22]],[[25035,84333],[5,-23],[1,11],[-6,12]],[[25009,84328],[-3,16],[-7,-11],[10,-5]],[[25037,84290],[-4,14],[3,-38],[4,3],[-3,21]],[[25023,84257],[-4,10],[2,-30],[2,20]],[[25155,84182],[7,57],[4,78],[-1,73],[-1,-6],[0,-96],[-3,-12],[-1,-50],[-3,-10],[-2,-34]],[[25006,84163],[4,0],[1,20],[-10,10],[-2,-18],[8,7],[-1,-19]],[[25052,84143],[1,17],[7,-13],[1,24],[-3,12],[-2,-20],[-6,24],[1,-32],[-4,1],[-8,-16],[-15,16],[-2,-7],[9,-26],[6,0]],[[25037,84123],[2,-13],[-4,-10],[12,-33],[-1,23],[6,7],[-3,12],[1,41],[2,-7]],[[24998,84041],[-4,16],[-2,-23],[6,7]],[[24998,84312],[-6,-4],[-1,24],[2,22],[5,14],[-6,7],[14,9],[-3,-22]],[[25003,84362],[7,-21],[2,40],[13,23],[-1,14],[-8,0],[-5,29],[-12,17],[-1,16],[8,3],[13,30]],[[25019,84513],[-6,10],[-3,-15],[-5,4],[-5,33],[1,-28],[-4,9],[-4,-12],[-5,-45],[-11,-11],[3,21],[7,10],[-3,17],[3,23],[7,14],[-2,21]],[[24992,84564],[-5,2],[-4,19],[13,42],[-1,24],[-8,-1],[0,-19],[-4,-6],[-4,-33],[-9,-14],[-2,-29],[-5,5],[2,14],[-6,15],[-5,-28],[-7,16],[-7,-13],[-6,5],[-1,34],[2,21],[11,9],[2,22],[-8,1],[6,14],[3,-6],[12,18],[-7,17],[-4,-12],[-7,6],[-4,-18],[-10,-18],[-4,13],[5,5],[1,27],[6,3]],[[24937,84699],[-7,8],[5,25]],[[24935,84732],[-11,-3],[0,16],[-7,10],[-7,-1],[6,20]],[[24916,84774],[-4,-7],[3,26],[6,5],[-3,18],[9,29],[-5,25],[8,19],[4,-8],[5,20],[3,33],[1,-13],[8,-13],[-1,18],[5,9],[9,37],[-6,3],[0,12],[6,20],[-8,7],[3,30],[14,14],[12,-25],[1,8],[12,6],[0,21],[4,-24],[3,4],[-1,23],[4,-24],[1,27],[-5,22],[7,25],[8,6],[1,-20],[5,3],[6,-19],[9,15],[5,31],[-3,13],[4,19],[6,-4],[2,-27],[4,1],[2,-33],[7,30],[1,30],[9,25],[1,36],[5,3],[-1,13],[-6,10],[7,27],[-3,24],[3,17],[2,-16],[6,22],[-4,18],[-1,35],[14,21],[3,12],[-7,37],[-4,-35],[-6,5],[-8,-20],[6,25],[-2,46],[-10,-4],[4,17],[-2,20],[-7,10],[3,39],[4,15],[-7,-9],[0,-10],[-10,-31],[-1,-34],[-6,-23],[-6,-48],[-3,19],[3,25],[-1,33],[-8,7],[-2,19],[-15,71],[-13,69],[-6,4],[5,-32],[2,-29],[7,-27],[6,-45],[-1,-12],[9,-24],[2,-39],[5,-11],[-3,-27],[9,-22],[-2,-63],[-8,-48],[-6,46],[-3,-8],[2,42],[-6,29],[3,-84],[-13,60],[-3,-11],[8,-28],[-1,-49],[-11,51],[-3,-24],[-7,19],[-10,-55],[2,-25],[-8,-12],[-4,30],[-9,-14],[-14,-14],[0,-17],[4,14],[9,-6],[1,15],[9,9],[1,-23],[13,-4],[-1,-43],[-6,-44],[-17,-41],[2,24],[-12,-4],[-4,-15],[3,-19],[-3,-30],[-10,-21],[-1,18],[-13,-2],[-6,7],[-9,-25],[-1,18],[-9,14],[-2,-8],[3,-23],[-3,-5],[-12,21],[6,-32]],[[24889,85012],[0,-18],[-9,11],[4,-18],[-1,-21],[5,7],[1,-15],[-7,-24],[-5,2],[-4,35]],[[24873,84971],[-2,-29],[-6,-1],[5,-19],[-2,-11],[-9,6],[-1,-15],[-3,51],[-13,4],[-3,-35],[-5,2],[-3,-19],[-5,4],[-10,-37],[-8,-12],[-6,-26],[-6,22],[-6,-43],[4,-16],[5,3],[7,-36],[0,-49],[-4,-46],[-4,13],[-2,-28],[-7,-4],[1,32],[-3,26],[0,31],[5,37],[0,28],[-12,7],[-6,45],[8,19],[-8,0],[-2,10],[9,15],[5,37],[9,-4],[1,20],[7,16],[22,-3],[-1,29]],[[24824,84995],[-5,-23],[3,54],[-4,6],[5,25],[6,5],[-4,13],[2,19],[-8,18],[4,24]],[[24823,85136],[0,18],[10,13],[0,14],[-10,-11],[0,-12],[-9,11]],[[24814,85169],[6,-21],[-4,-16],[-5,-1],[-6,-21],[5,69],[4,9],[-8,20],[2,48],[4,0],[4,33],[7,2],[-16,83],[-22,63],[-10,17],[-8,-30],[5,-3],[0,-22],[-4,-15],[-5,-1]],[[24763,85383],[6,-10],[-5,-14],[-6,3],[7,-21],[-7,2],[3,-50],[-7,-40],[-2,-45],[-12,-8],[4,-25],[0,-24],[-3,-30],[-3,10],[3,41],[-4,-16],[0,17],[-5,5],[2,40],[-5,9],[2,27],[-4,-5],[-2,27],[-3,0]],[[24722,85276],[2,-50],[3,3],[-1,-25],[-3,-6],[4,-32],[-7,-25],[-4,-1],[1,-35],[-4,-3],[-4,19],[3,13],[-5,26],[-3,34],[-5,-9],[-2,-20],[3,-24],[0,-30],[-5,-16],[-4,3],[1,42],[6,-11],[-1,48],[-7,-14],[-1,15],[4,15],[-3,6],[-4,-24],[-3,17],[-4,-5],[7,-40],[-7,14],[-6,-9],[-4,41],[-3,2],[9,17],[-2,31],[3,4]],[[24676,85247],[3,20],[-9,-14],[-2,-17],[-6,-10],[1,17],[4,-1],[0,47]],[[24667,85289],[-6,-46],[1,25],[-3,4]],[[24659,85272],[-4,-19],[-2,17],[5,34],[0,21],[-4,-7],[-2,-25],[-2,19],[2,20],[-6,8],[3,20],[-3,13],[-2,34],[-5,-12]],[[24639,85395],[-6,-6],[-3,30],[-4,-27],[-3,44],[-4,-9],[2,-31],[-2,-6],[-9,26],[-1,-28],[-5,-1]],[[24604,85387],[-1,11]],[[24603,85398],[-2,12],[-7,-3],[-3,9],[-6,-32],[-11,-34],[10,-58],[9,17],[5,-3],[7,-29],[5,-3],[2,-19],[-8,-3],[0,-18],[-5,12],[-1,-18],[-5,11],[-1,-17],[-6,4],[-4,-13],[-5,7],[1,-23],[9,0],[2,-16],[-12,-2],[7,-49],[-5,15],[-9,-27],[-10,21],[-4,16],[-5,2],[3,30],[5,-2],[0,-29],[8,23],[-2,9],[7,25],[3,-5],[1,29],[-7,21],[-6,3],[4,-23],[-5,3],[2,-27],[-4,7],[-4,24]],[[24556,85245],[-7,28],[-4,39],[-2,-13],[4,-41],[-3,-13],[7,-30],[-3,-1],[-9,44],[3,8],[-2,23],[4,29],[-5,3],[-8,-6],[-8,-35],[-2,-31]],[[24521,85249],[5,-24],[-5,-38],[7,0],[6,-21],[9,9],[2,-17],[-2,-29],[9,0],[1,-16],[-8,-8],[-6,-15],[-7,15],[0,13],[9,19],[2,27],[-7,-6],[-10,23],[-3,-59],[-7,-15],[-3,-20],[-9,-11],[-1,-24],[-6,-12],[3,-27],[-3,-27],[-11,-12],[-2,-31],[0,-38],[2,-14],[-2,-38],[7,-6],[7,-55],[0,-18],[-4,-14],[-2,21],[1,42],[-5,12],[-5,-5],[-4,32],[3,22],[-11,23],[0,10],[-10,-11],[1,-13],[-7,-21],[-13,10],[-3,-17],[5,-9],[1,-27],[-5,0],[-2,15],[-8,-4],[-25,34],[7,-33],[-3,-24],[0,-31],[-4,-62],[-9,-9],[-12,15],[-7,-11],[5,-8],[2,-18],[0,-41],[2,-27],[1,-73],[-3,21],[-13,-2],[-12,11],[-6,-16],[-10,5],[-24,57],[-6,-14],[7,-23],[-2,-20],[-5,0],[0,-16],[9,-56],[0,20],[6,8],[1,-36],[-1,-32],[-10,5],[-5,-13],[-7,4],[-3,22],[-6,0],[-12,-17],[1,39],[-17,24],[-16,40],[-13,47],[-3,-6],[8,-35],[0,-20],[-4,-10],[-4,12],[-6,1],[3,25],[-9,-15],[-5,3],[4,32],[9,31],[6,9],[10,-6],[2,13],[-9,28],[4,49],[5,19],[10,0],[10,-18],[7,28],[-10,-5],[-8,22],[8,19],[-11,4],[-8,-5],[-16,9],[-14,26],[-11,31],[-16,5],[-25,-25],[-20,-13],[-23,-11],[-25,-22],[-31,-50],[-41,-83],[-7,-18],[-26,-44],[-10,-10],[-17,-27],[-17,-18],[-14,-8],[-17,4],[-15,22],[-26,-14],[-22,5],[-24,16],[-19,7],[-14,12],[-16,23],[-16,41]],[[23767,84643],[-8,-59],[-6,-9],[0,-30],[-9,-27],[-1,-40],[6,-27],[10,-24],[5,-19],[7,-43],[3,-30],[2,-49],[5,-45],[14,-44],[0,-15],[11,-46],[-4,0],[-5,-19],[3,-2],[2,-31],[3,-5],[2,-57],[-3,8],[2,-37],[-3,-7],[-2,-56],[2,3],[2,-97],[-11,-15],[-5,-79],[3,-1],[-2,-41],[4,-9],[7,-40],[4,-3],[2,-20],[-4,-33],[-1,-46],[1,-22],[-5,-9],[-3,-20],[3,-6],[2,-48],[8,-19],[4,1],[-1,-67],[4,-24],[11,-26],[3,-53],[2,-1],[1,-36],[-2,-20],[6,-4],[3,-20],[0,-33],[5,-2],[3,-26],[-3,-71],[-3,-15],[7,-14],[-2,-25],[8,-16],[-1,-42],[-12,-18],[3,-26],[-4,-14],[4,-17],[7,7],[2,-15],[7,-17],[-7,-35],[4,-6],[-3,-18],[-6,-5],[0,-29],[3,-19],[-3,-58],[4,-6],[-2,-16],[3,-17],[-6,-1],[-10,27],[-3,-12],[-2,-40],[3,-37],[-6,-1],[1,-41],[-2,-13],[-6,2],[-8,-42],[-4,-2],[1,-24],[4,-25],[0,-21],[6,-7],[2,-19],[-9,9],[0,-42],[-7,-18],[-2,-16],[3,-26],[-4,-18],[-5,-2],[-7,-19],[1,-23],[7,-9],[2,-30],[-8,-2],[0,-16],[-12,2],[-9,-40],[0,-25],[-3,-8],[-3,-34],[6,-27],[0,-38],[-2,-12],[9,-58],[-6,-7],[0,-31],[-6,-30],[4,-32],[-4,-7],[0,-24],[-4,-3],[-7,-33],[1,-16],[-5,-29],[2,-11],[-5,-13],[1,-29],[-9,-2],[2,-16],[-9,-3],[-1,-18],[-4,4],[-2,-26],[-5,-23],[-2,-24],[-6,-30],[-4,4],[0,-1421]],[[24512,80115],[-2,28],[-8,31],[-3,52],[5,25],[5,9],[9,-8],[4,-31],[-2,-41],[1,-31],[7,-12],[5,10],[3,26],[-1,20],[4,19],[2,36],[-3,33],[-8,34],[-5,9],[-7,30],[-3,49],[0,36],[2,41],[4,12],[13,-3],[7,12],[1,28],[-3,28],[-15,27],[-8,36],[1,45],[6,30],[22,-29],[2,-36],[3,-15],[5,7],[3,34],[-3,23],[-6,23],[-13,35],[1,13],[7,22],[11,20],[6,19],[1,16],[-4,13],[-10,-12],[-6,-25],[-4,-35],[-6,-21],[-6,70],[3,41],[6,25],[8,16],[8,7],[9,-23],[8,23],[-1,25],[-7,17],[-3,43],[1,21],[5,10],[20,15],[6,-45],[4,-3],[-7,75],[-4,21],[-9,29],[-4,-18],[-5,4],[-1,32],[3,29],[-5,71],[-3,10],[0,-44],[-9,-26],[-4,1],[-4,30],[-8,-7],[-7,25],[-5,-10],[-9,26],[-2,41],[2,42],[18,22],[6,-19],[8,11],[1,-46],[-3,-32],[9,24],[7,2],[0,26],[-8,31],[-1,28],[-13,29],[0,42],[-5,0],[-9,-41],[-4,-5],[-5,29],[4,17],[16,17],[4,27],[-8,37],[-16,9],[-7,30],[-1,37],[3,24],[-6,14],[-9,42],[-9,16],[0,18],[6,25],[-4,31],[-6,-6],[-2,-18],[-1,-43],[-13,11],[-2,11],[-5,80],[0,34],[8,0],[14,-16],[7,12],[-4,24],[-12,-5],[-13,1],[-5,22],[-4,31],[-1,55],[1,40],[-1,28],[-7,13],[-13,-18],[-6,-28],[-5,14],[-2,25],[4,28],[6,14],[17,-15],[4,4],[-1,40],[-8,27],[-11,20],[-11,1],[-1,21],[2,91],[7,50],[4,13],[2,37],[-3,13],[-10,-7],[-5,-32],[-2,-52],[-7,10],[-4,26],[3,35],[4,-9],[1,53],[12,43],[0,33],[-7,31],[-12,11],[-12,-9],[-9,9],[-1,15],[3,22],[5,10],[8,31],[2,39],[-2,19],[-8,38],[0,23],[3,17],[13,46],[2,37],[-6,29],[-15,31],[258,0],[244,-4],[28,3],[2,39],[-7,27],[1,52],[-4,0],[1,23],[-4,-3],[-2,30],[4,18],[-4,9],[-5,48],[-1,25],[-5,8],[-3,48],[2,47],[-6,26],[3,23],[-2,16],[0,37],[6,7],[-1,50],[2,33],[7,51],[4,6],[2,37],[3,1],[15,66],[6,18],[0,66],[7,43],[0,17],[8,31],[0,27],[-3,32],[3,18],[-1,27],[5,18],[0,34],[6,14],[2,25],[5,17],[7,-20],[4,3],[2,20]],[[24970,83988],[-10,-2],[-4,27],[-5,13],[-8,-10],[-9,47],[-8,23],[-2,44],[-9,8],[-3,29],[4,26],[-5,6],[-8,-28],[-12,-4],[-9,25],[-3,26],[-3,2],[3,68],[6,26],[5,6],[9,-4],[14,-31],[4,16],[-9,14],[0,39],[7,23],[4,23],[17,16],[11,-14],[5,-21],[-1,-45],[3,-12],[0,-29],[3,-18],[-3,-34],[16,-40],[10,-30],[-3,-26],[5,-16],[12,24],[0,36],[-4,13],[-3,38],[6,-10],[-4,21],[-6,-10],[3,36],[-4,11],[8,1],[5,-27],[2,23],[9,-11],[0,40],[-4,-14],[-4,10]],[[30184,68023],[-7,-12],[6,-11],[1,23]],[[30337,67926],[5,28],[-6,-3],[-4,-21],[5,-4]],[[30407,67863],[12,101],[0,53],[-13,23],[-20,-10],[-6,6],[-16,-19],[-18,-41],[8,4],[2,-15],[-3,-14],[23,2],[4,-4],[4,30],[18,-42],[-2,-18],[9,-17],[0,-14],[-6,-13],[-9,55],[-9,18],[10,-32],[6,-42],[2,-37],[4,26]],[[30150,67766],[-5,7],[2,-19],[5,-14],[-2,26]],[[30173,67736],[-5,17],[-11,0],[1,-18],[5,3],[8,-25],[2,23]],[[30181,67699],[3,17],[-8,7],[-1,-21],[6,-3]],[[30243,67706],[-2,33],[6,-33],[3,-28],[3,5],[2,46],[-4,12],[3,28],[14,22],[0,61],[2,14],[9,-1],[-2,-18],[-8,-12],[0,-18],[10,-24],[3,25],[2,-11],[0,53],[-2,8],[-12,1],[-25,-4],[-34,13],[-9,13],[-4,14],[-5,37],[-11,-34],[-6,-32],[0,-14],[7,-7],[12,21],[-4,-1],[0,20],[5,-8],[0,-34],[6,-32],[3,-29],[6,-19],[3,-36],[8,-14],[3,-29],[4,-2],[12,-32],[2,6],[0,40]],[[30213,67609],[8,8],[-10,12],[1,13],[-14,24],[0,22],[-9,27],[-5,-12],[2,-21],[15,-50],[12,-23]],[[30178,67470],[4,20],[-3,12],[-3,-14],[2,-18]],[[30299,67440],[-3,5],[1,21],[-7,4],[1,-23],[4,-15],[4,8]],[[30409,67566],[-5,-11],[6,-26],[3,-80],[4,-31],[-3,71],[-1,49],[-4,28]],[[30139,66361],[-2,-2],[6,-28],[-4,30]],[[30299,67440],[-3,-21],[-7,23],[-2,30],[-7,55],[-8,25],[-7,0],[1,-25],[-2,-19],[-5,44],[-27,21],[-6,33],[-5,-19],[6,-32],[0,-24],[3,-33],[-3,-32],[4,-32],[-3,-29],[6,-6],[2,-15],[-9,-4],[1,-14],[9,1],[0,-23],[-3,-14],[-5,20],[-4,1],[4,-21],[8,-11],[1,-28],[-3,-14],[1,-29],[-4,18],[-5,-13],[-3,8],[6,14],[-2,20],[-4,0],[-4,-20],[-3,7],[-6,-11],[1,-18],[-9,15],[-1,-27],[-2,19],[11,48],[-4,15],[3,33],[-7,-23],[2,-6],[-9,-28],[3,22],[-2,26],[1,47],[-11,1],[-6,-9],[-2,11],[6,15],[-9,26],[-6,-18],[2,62],[-2,17],[-3,-64],[-11,-13],[-4,-17],[2,36],[3,18],[-1,26],[-4,-30],[-1,33],[-3,21],[-7,-27],[0,19],[4,2],[3,29],[-1,38],[-4,21],[-7,-14],[-1,41],[-9,0],[-6,20],[-8,-18],[-7,-3],[12,-11],[-2,-65],[-3,-2],[-1,-44],[-1,42],[3,25],[0,27],[-3,18],[-4,-25],[-9,-28],[5,29],[4,38],[-9,16]],[[30097,67637],[-3,-150],[-3,-19],[3,-86],[-13,-12],[-5,-11]],[[30076,67359],[4,-32],[6,-15],[0,-19],[7,-30],[2,-30],[5,-20],[2,-36],[-4,7],[0,-33],[3,-12],[-3,-12],[-2,60],[1,17],[-4,16],[0,20],[-6,41],[-10,30],[-2,-18],[-6,-16],[-2,23]],[[30067,67300],[-9,-61],[-19,-43],[-3,-26],[-2,-50],[2,-10],[0,-100],[-12,8],[0,-197],[-33,2],[-8,4],[-24,2],[-51,8]],[[29438,66772],[-3,0],[-3,-49],[5,-95],[12,-174],[7,-121],[1,-1],[5,-90],[1,-3],[6,-92],[3,-59],[6,-79],[7,-121],[6,-78],[0,-14],[7,-105],[2,-19]],[[29500,65672],[34,3],[90,11],[100,16]],[[29724,65702],[58,10],[58,8],[17,4],[30,3],[41,7],[67,8],[5,2],[49,5],[11,-67],[8,-12],[12,15],[-1,-89],[5,-24],[10,-20],[18,23],[5,-60],[4,-21],[19,-18],[11,-27],[7,-1],[6,10],[8,30],[9,-17]],[[30181,65471],[1,78],[-7,0],[-7,12],[3,21],[5,6],[7,-7],[5,92],[6,51],[0,17],[-4,-1],[-4,-34],[0,-23],[-4,-41],[-2,15],[2,28],[0,43],[4,0],[3,24],[12,19],[4,27],[-7,-16],[-6,3],[9,11],[-3,26],[9,6],[2,-25],[11,23],[-1,-20],[5,-26],[10,-24],[2,8],[0,44],[7,2],[1,36],[-5,4],[-7,32],[-1,29],[-4,0],[-5,-24],[-7,51],[-9,9],[0,-10],[-8,13],[-4,19],[-1,-21],[-13,32],[-13,7],[-3,13],[-2,-15],[-5,8],[6,22],[5,3],[-6,12],[0,35],[6,-35],[4,-1],[3,19],[-4,27],[-9,31],[-2,19],[-8,-11],[-4,29],[1,28],[7,5],[0,18],[-4,-11],[-4,8],[-1,-58],[-6,16],[-8,55],[5,40],[1,36],[4,28],[-6,-24],[2,-18],[-7,1],[2,12],[-6,25],[-9,-28],[0,-26],[3,-8],[-11,-6],[6,10],[-3,21],[3,24],[10,20],[1,9],[-10,12],[3,20],[-4,21],[3,27],[0,-23],[4,10],[4,-16],[1,17],[-5,9],[7,35],[7,3],[6,-18],[-2,44],[18,-24],[2,25],[3,-4],[-2,-39],[4,4],[-6,-55],[-5,10],[-3,-10],[10,-6],[2,31],[7,35],[7,2],[12,29],[-2,15],[5,-3],[0,-20],[5,41],[9,29],[2,14],[0,63],[5,30],[-2,-33],[7,61],[10,49],[-1,50],[2,24],[9,55],[-7,28],[-2,-7],[7,-24],[-9,-54],[-6,7],[0,36],[-3,21],[-2,-19],[-7,17],[3,31],[6,15],[7,40],[6,8],[-6,-44],[2,-4],[7,57],[11,-12],[8,31],[4,6],[-2,27],[4,30],[0,36],[2,12],[-5,42],[1,34],[11,53],[13,33],[14,20],[14,9],[16,3],[2,12],[-18,1],[2,20],[7,7],[17,-4],[6,-33],[9,-23],[18,-20],[4,4],[17,-23],[12,-25],[5,-33],[-1,-109],[3,-17],[-8,-13],[9,-18],[-7,5],[-4,-21],[2,-15],[-12,-3],[4,16],[-5,34],[-1,-63],[0,-70],[-2,-45],[-3,-30],[-8,-33],[-7,-14],[-6,3],[-5,14],[-3,38],[8,-2],[-3,13],[-6,-6],[-5,-37],[-7,-30],[10,-25],[15,7],[12,17],[8,19],[9,31],[7,39],[10,83],[7,84],[6,98],[-1,48],[-5,-4],[-6,37],[2,1],[5,-39],[3,19],[4,-6],[1,82],[1,4],[0,108],[-1,-23],[0,-73],[-5,-35],[-4,-13],[-2,35],[1,21],[-6,5],[-2,32],[6,-11],[1,13],[7,11],[0,56],[-4,27],[-4,-22],[-4,5],[-6,-13],[-5,7],[-14,6],[-17,21],[-15,4],[-7,20],[-8,11],[-3,26],[-3,-22],[8,-11],[-4,-20],[-6,-10],[0,26],[-11,14],[-7,-16],[-9,14],[0,22],[-7,8],[1,-24]],[[28735,72977],[5,27],[-1,13]],[[28739,73017],[-3,0]],[[28736,73017],[-4,-31]],[[28732,72986],[0,-3]],[[28732,72983],[3,-11]],[[28735,72972],[0,5]],[[28732,72986],[-3,3],[2,27]],[[28731,73016],[-2,0]],[[28729,73016],[-2,-26],[-3,-1],[0,-36],[7,3],[1,27]],[[28735,72972],[0,-30],[-6,-20],[-4,-2]],[[28725,72920],[0,-14],[6,-14],[6,31],[4,-9],[1,49],[-3,25],[-4,-11]],[[28735,72977],[0,-5]],[[28778,72845],[-4,8],[0,-24],[4,16]],[[28729,72778],[6,28],[0,29],[-4,-13],[-4,11],[-5,-24],[6,10],[1,-19],[-5,-12],[5,-14]],[[28729,72774],[0,4]],[[28604,72769],[4,20],[-4,-2],[0,-18]],[[28729,72774],[5,-18],[-2,24],[-3,-2]],[[28721,72646],[6,14],[-1,15],[5,15],[-6,12],[4,26],[-6,0],[-1,-35],[-9,18],[1,-42],[8,-7],[-1,-16]],[[28695,72583],[7,5],[-6,13],[-1,-18]],[[28695,72583],[-4,4],[-3,-24]],[[28688,72563],[7,20]],[[28688,72563],[-6,-46],[6,-1],[0,47]],[[28949,72907],[-6,3]],[[28943,72910],[7,-26],[-1,-8]],[[28949,72876],[-1,-20],[9,-29],[-4,-12],[8,-31],[3,-65],[-1,-26],[7,-24],[0,-31],[4,-17],[2,-33],[3,-6],[6,-92],[4,-16],[-4,35],[-5,74],[-4,34],[-6,79],[-3,59],[-4,46],[-14,106]],[[28677,72445],[-1,31],[-3,-7],[1,-39],[3,15]],[[29002,72277],[0,33],[-5,99],[-4,39],[3,-83],[3,-42],[-2,-11],[0,-35]],[[28701,71601],[6,24],[-5,12],[-3,-9],[-8,5],[-1,20],[-4,6],[6,-43],[-1,-13],[10,-2]],[[28660,71483],[4,-2],[1,18],[3,-15],[-1,38],[1,43],[-2,13],[-4,-36],[-6,1],[-2,39],[-3,-14],[1,-41],[-2,12],[-6,-14],[6,29],[-1,35],[-7,-11],[2,29],[1,59],[-5,4],[-7,29],[0,-26],[3,-24],[0,-78],[4,-61],[8,-54],[0,-35],[4,-11],[8,73]],[[28678,71395],[2,41],[-3,5],[-7,-26],[1,-23],[5,-13],[2,16]],[[28616,71324],[4,8],[-3,32],[-4,-35],[3,-5]],[[28634,71098],[-4,-6],[4,-14],[0,20]],[[28637,70966],[7,2],[1,14],[-6,6],[-2,-22]],[[28715,70742],[6,38],[-7,17],[-3,-13],[4,-42]],[[28986,72355],[-6,-13],[-12,-12],[-4,13],[6,0],[8,16],[3,36],[-3,21],[5,-11],[1,16],[6,8],[-1,32],[-4,14],[-1,21],[-6,24],[0,19],[-4,19],[0,23],[-11,26],[0,30],[-3,-7],[2,-31],[-3,-3],[4,-29],[-16,38],[2,17],[-6,24],[2,21],[-4,21],[0,27],[-5,12],[0,22],[-9,52],[-6,2],[0,16],[-7,16],[4,19],[-3,51],[-5,-4],[1,24]],[[28911,72925],[-68,31]],[[28843,72956],[-3,11]],[[28840,72967],[-8,38],[-9,-9],[-6,-14],[-6,20],[0,-29],[-5,13],[-7,-1],[-9,28],[-3,-12],[1,27],[-10,22],[-5,20],[-6,-12],[1,-40],[8,3],[-1,-44],[4,-32],[-5,4],[0,33],[-8,2],[10,-79],[3,11],[7,-36],[6,-5],[7,-20],[4,-21],[-4,-7],[-3,13],[-18,5]],[[28778,72845],[-3,-30],[6,-32],[2,22],[0,-44],[3,-10],[5,12],[6,-19],[0,-16],[5,-20],[-6,5],[-5,26],[-1,-30],[-2,19],[-4,-4],[-11,15],[-4,-12],[-6,16],[0,-20],[-8,4],[4,16],[-2,10],[-8,-4],[5,-81],[5,-3],[10,-18],[6,5],[13,-47],[-12,3],[7,-25],[10,-11],[-6,-13],[-7,7],[-1,14],[-10,-5],[-1,35],[-2,-2],[-3,-41],[2,-45],[-2,-7],[5,-29],[2,-26],[7,-29],[3,-26],[-3,-24],[8,-8],[-5,-9],[-7,24],[3,25],[-15,29],[-7,54],[0,49],[-4,9],[0,17],[4,9],[-2,15],[-3,-19],[-7,-21],[-1,-23],[-8,-44],[11,-9],[4,-13],[0,-27],[-3,-35],[-10,-13],[-2,62],[-7,16],[-2,29],[6,33],[-6,12],[3,8],[-1,26],[-5,0],[6,25],[1,21],[-7,-15],[-4,-39],[-7,1],[7,-20],[-2,-18],[-4,2],[-3,-36],[-7,2],[1,27],[-6,10],[5,-47],[-10,-13],[0,-7]],[[28691,72470],[4,1],[-9,-60],[-6,-15],[-3,10],[1,-34],[-5,-8],[1,56],[-4,-4],[-11,-46],[1,-27],[-10,-75],[-5,-25],[1,-36],[5,4],[7,-11],[-2,32],[0,35],[2,-38],[11,-59],[1,18],[4,-20],[1,23],[3,-28],[10,5],[10,-11],[-16,2],[-4,-24],[10,-18],[2,-30],[-4,26],[-6,1],[-5,-17],[0,29],[-5,10],[0,-56],[-2,11],[-2,49],[-2,-47],[-3,27],[3,20],[-11,-46],[4,-13],[2,16],[5,-21],[1,-27],[-4,2],[-4,-35],[5,14],[-1,11],[10,-11],[7,12],[0,10],[10,-39],[4,12],[-4,25],[5,15],[5,-16],[8,32],[7,-15],[5,30],[7,16],[9,-9],[2,-14],[8,-11],[2,-69],[6,-37],[-1,-13],[4,-19],[-8,-10],[-3,-25],[-3,2],[-3,-32],[-4,-6],[4,-12],[2,-25],[-2,-9],[14,-33],[-4,-6],[-5,25],[-6,14],[1,29],[-5,6],[6,37],[-1,16],[6,2],[0,17],[6,13],[-3,45],[-6,10],[0,42],[-3,21],[-6,8],[-2,17],[-7,-34],[-14,-36],[-3,17],[0,-32],[-10,-3],[-2,-29],[12,-19],[-1,-14],[-8,23],[-8,-9],[0,-34],[3,-9],[7,11],[-1,-15],[11,-8],[-2,-14],[-9,-1],[1,-18],[13,-7],[-7,-17],[-6,11],[-5,24],[1,24],[-4,-5],[-1,-23],[-8,76],[-4,-14],[0,-27],[4,-10],[-6,-3],[-2,12],[-3,-17],[3,-18],[-3,-15],[15,14],[-1,-11],[-10,-26],[1,-36],[-3,15],[-5,-5],[-3,-29],[0,29],[4,16],[-6,19],[-7,-14],[3,21],[7,6],[-3,15],[-6,-6],[5,30],[-7,-17],[0,-41],[-2,-2],[10,-47],[-4,10],[-6,-22],[1,28],[-5,0],[1,49],[-5,38],[3,35],[-5,28],[-2,-21],[2,-47],[0,-65],[2,-23],[6,-30],[2,-45],[7,-10],[0,-18],[6,-29],[2,8],[-5,21],[7,45],[5,-7],[3,51],[8,26],[3,22],[8,-43],[5,-6],[3,-26],[-12,41],[-7,-16],[-4,-43],[3,-35],[-3,-8],[9,-27],[2,-28],[10,7],[5,-19],[-8,-33],[-9,-3],[1,-28],[3,-13],[0,-23],[-5,42],[-1,49],[-6,14],[-1,20],[-1,-91],[-1,-19],[-8,4],[3,-40],[6,-7],[11,-40],[-4,-88],[4,1],[4,-32],[8,8],[4,-10],[7,28],[-4,-29],[-13,-8],[1,-18],[5,2],[6,-37],[8,-17],[-2,-23],[8,-16],[2,12],[9,-15],[-9,-5],[1,-22],[-8,-22],[2,-16],[8,-21],[6,-27],[0,-12],[-16,58],[-2,25],[8,16],[0,16],[-12,23],[4,20],[-8,14],[-5,28],[-3,-17],[-4,25],[-7,9],[2,-30],[5,-11],[0,-50],[-3,17],[3,15],[-5,17],[-7,8],[1,40],[-3,7],[-9,-40],[6,39],[0,29],[-3,20],[-4,1],[0,-49],[-4,-32],[2,-31],[-5,-5],[3,-21],[-2,-18],[-3,25],[-4,-4],[1,-30],[8,-52],[7,-89],[10,34],[-6,-37],[1,-22],[6,-21],[4,19],[-5,-62],[5,-20],[11,2],[0,13],[12,7],[-9,-11],[-6,-28],[6,-22],[1,-18],[18,1],[5,14],[10,-15],[3,30],[5,-30],[6,16],[5,-8],[2,27],[1,-23],[6,10],[6,-13],[5,4],[6,-17],[-15,16],[-14,-16],[-4,-11],[-7,8],[-6,-14],[-12,-6],[2,-22],[8,-14],[2,-26],[4,-6],[5,-42],[6,-19],[8,14],[3,-15],[8,14],[2,17],[10,-16],[-10,5],[0,-13],[-7,-25],[-8,3],[2,-26],[13,-18],[-3,-16],[7,-26],[2,-58],[-12,75],[-3,28],[-4,-11],[-5,8],[0,23],[-7,14],[-3,22],[-11,39],[4,-32],[0,-29],[5,-63],[3,-1],[-1,-43],[6,-30],[-1,-21],[-3,5],[-2,29],[-9,18],[-1,32],[-9,-22],[0,-22],[-3,33],[-5,-1],[-9,19],[-6,63],[-3,-20],[-1,26],[6,4],[4,14],[-1,63],[-12,43],[-6,8],[-3,28],[-9,-14],[-6,1],[2,17],[3,-13],[3,15],[4,-3],[-3,23],[-8,22],[-6,-18],[-1,-21],[3,-46],[5,-32],[-4,-19],[4,-41],[-6,5],[0,18],[-6,10],[5,11],[-2,43],[-5,2],[3,25],[-6,39],[5,11],[3,32],[-6,23],[-1,34],[-4,-3],[2,-22],[-3,-18],[2,-28],[-6,-13],[4,-26],[-4,-24],[-13,-7],[-4,20],[-6,-1],[8,15],[3,-15],[5,11],[-2,23],[3,31],[-9,-16],[3,21],[-5,-12],[4,26]],[[28637,70966],[-1,22],[-5,19],[-6,-26],[-8,-1],[9,30],[-4,18],[9,0],[-4,13],[-1,42],[-10,-9],[-1,-42],[-6,-21],[-8,-7],[11,44],[-1,18],[9,42],[6,-10],[-6,43],[-6,20],[1,-41],[-6,5],[0,23],[-10,2],[0,-34],[4,-40],[-4,8],[-2,23],[-8,-11],[-2,-18],[-9,-14],[0,-23],[-4,-10],[-5,11],[7,7],[1,11],[-13,-2],[3,28],[11,0],[4,17],[-2,15],[-4,-5],[-1,36],[3,-20],[10,21],[3,60],[-5,-1],[4,17],[6,-25],[1,35],[7,-30],[3,23],[8,25],[-6,11],[6,7],[3,-14],[-1,28],[2,34],[-7,-9],[-6,24],[-1,-11],[-5,14],[-9,-16],[3,32],[21,23],[10,30],[3,32],[-10,33],[-1,-18],[-6,29],[-5,-3],[-4,-25],[-8,-21],[-6,-41],[-1,-24],[-17,-32],[-4,-1],[14,36],[-2,34],[10,6],[5,36],[3,-1],[9,37],[1,38],[6,22],[-4,21],[2,20],[-3,5]],[[28607,71590],[-5,-28],[-8,-4],[-5,-33],[-4,5],[-13,-19],[16,36],[-2,16],[5,-3],[4,41],[5,-9],[1,37],[-6,21],[-3,-26],[-4,-11],[-2,28],[6,-7],[1,28],[-4,-1],[-2,38],[4,-18],[6,8],[2,-12],[2,27],[-5,46],[-6,15],[-1,22],[-9,16],[3,22],[-1,16],[4,22],[5,2],[-2,33],[0,44],[2,45],[3,23],[0,124],[-1,21],[5,60],[4,27],[16,70],[8,54],[5,8],[-1,38],[-10,62],[-10,-3],[-6,-16],[2,-29],[-4,-22],[-3,-37],[4,-5],[-2,-56],[0,44],[-5,19],[-4,-33],[-6,0],[-3,13],[1,-32],[-6,2],[-12,-55],[-7,-8],[-2,-39],[-5,-26],[4,-20],[-4,-21],[5,-46],[-6,9],[-1,-43],[1,-40],[-3,-14],[1,41],[-3,19],[2,67],[-5,-5],[7,27],[-4,53],[5,-1],[-5,16],[5,-1],[2,39],[5,12],[-1,14],[9,34],[12,36],[10,11],[6,31],[4,5],[0,29],[5,28]],[[28603,72471],[6,39],[9,3],[2,-17],[6,-6],[7,14],[-4,20],[-3,43],[4,58],[6,31],[2,24],[5,21],[5,42],[-4,21],[-4,-39],[-3,55],[5,-8],[3,23],[-1,48],[4,25],[-8,0],[-5,-22],[-1,-26],[-10,-34],[5,-18],[-5,4],[-3,-15],[0,35],[-5,-40],[0,-33],[6,-23],[-7,13],[3,-52],[-5,-1],[0,-16],[-9,-19],[1,15],[9,29],[-5,29],[3,18],[-5,9],[2,32],[-8,-12],[-2,-26],[-6,-13],[5,40],[-8,4],[-5,-60],[7,-5],[-9,-13],[-11,-43],[-9,-13],[-6,2],[-11,-23],[3,-12],[7,-1],[5,-24],[2,-27],[-11,37],[-9,0],[0,26],[-6,11],[4,-25],[0,-64],[-7,-29],[5,69],[-3,19],[-3,-9],[-3,48],[-10,0],[2,-13],[-3,-20],[-6,-5],[1,-43],[-6,-27],[-2,-44],[-3,-10],[10,-31],[-8,1],[-1,-16],[-9,-32],[-14,-6],[2,19],[15,22],[0,25],[-3,15],[5,31],[5,66],[-4,10],[-21,-35],[0,-39],[-11,-36],[-4,-3],[1,-16],[-3,-22],[-1,-43],[-8,-77],[-7,-40],[0,25],[-4,9],[4,14],[-11,35],[-3,18],[-5,-1],[3,-70],[-3,8],[-11,-6],[3,18],[6,-2],[-3,67],[-17,51],[-5,6],[-10,-26],[-6,-53],[2,-19],[-1,-38],[-3,-19],[0,-39],[4,-49],[5,-9],[3,-26],[-2,-9],[13,-6],[10,-44],[-5,4],[-4,23],[-7,1],[7,-45],[4,-13],[6,1],[6,-12],[5,-30],[-1,-57],[2,-15],[16,-27],[5,9],[9,2],[-8,-15],[-2,-16],[2,-41],[6,-14],[-6,-10],[-1,-23],[5,-27],[-3,-15],[2,-14]],[[28426,71555],[-9,-47],[-13,-2],[-8,-8],[-6,-19],[-2,-37],[3,-18],[-8,-17],[-9,-29],[-10,-16],[-8,2],[-14,-7],[-12,-13],[-6,-52],[-10,-16],[-2,-17],[3,-62],[9,-20],[7,-64],[-9,-33],[-14,-24],[-6,-34],[-1,-26],[-8,7],[-13,-11],[-10,-24],[-4,9],[-7,-3]],[[28259,70974],[-11,-20],[-1,-16],[5,-24],[-3,-35],[5,-5],[-1,-26],[-4,-32],[-12,-10],[-1,-15],[4,-10],[-4,-13],[6,-10],[-5,-12],[0,-16],[9,-17],[-5,-9],[-5,15],[-13,-14],[7,-41],[-5,-9],[0,18],[-7,7],[0,-37],[-7,-24],[4,-13],[10,-1],[3,-30],[-1,-29],[-15,-19],[1,27],[-11,-9],[-3,-23],[-1,46],[-4,4],[0,-31],[-6,9],[-10,-1],[-8,-57],[-10,-43],[-9,-23],[-18,-20],[-6,3],[-3,23],[-9,5],[2,25],[-8,27],[-3,31],[-25,-32],[0,21],[-8,1],[2,28],[-13,-24],[-3,6],[2,19],[9,37],[-5,5],[-11,-16],[-1,25],[9,26],[-4,5],[1,18],[-8,8],[0,28],[-9,-2],[-6,-9],[-13,8],[-16,-30],[-9,8],[-19,-43],[-3,-36],[-3,11],[-7,-13],[-2,-22],[8,-4],[4,-14],[-5,-16],[-7,5],[3,-39],[-10,29],[1,35],[-3,0],[-5,34],[3,32],[-6,-5],[-8,37],[-3,29],[-8,17],[-3,30],[-7,16],[0,17],[-5,11],[1,32],[-5,-4],[-12,-34],[-4,1],[-4,-25],[-2,11],[-9,4],[-5,-8],[2,17],[-2,24],[-4,11],[2,16],[-5,1],[0,20],[-9,4],[-1,39],[-5,-14],[-4,12],[-5,38],[-12,10],[0,32],[-4,0],[-5,62],[-6,-8],[-7,5],[-7,38],[-5,-3],[-6,27],[-7,46],[-13,37],[-4,-6],[0,-108],[1,-51],[0,-165],[1,-162],[0,-162],[1,-43],[0,-87]],[[27769,70368],[44,-2],[67,0],[1,-1],[230,0],[3,1],[109,0],[57,3],[54,1],[116,0],[118,-3],[191,0],[37,-1]],[[28992,72277],[-3,26],[-10,-20],[6,28],[-1,9],[5,31],[-3,4]],[[30356,64231],[-3,15],[-2,-13],[5,-2]],[[30358,64219],[-4,3],[-1,-16],[5,-20],[0,33]],[[30354,64188],[-2,-15],[5,3],[-3,12]],[[30363,64178],[-1,-18],[8,-27],[0,16],[-7,29]],[[30383,64144],[-6,27],[0,-13],[6,-31],[0,17]],[[30412,64067],[-3,60],[-2,-13],[5,-47]],[[30382,64061],[-3,44],[-4,24],[-5,-29],[4,-30],[8,-20],[0,11]],[[30600,64052],[-2,-13],[6,-14],[-4,27]],[[30374,64021],[-4,41],[-5,-1],[4,-18],[0,-18],[5,-4]],[[30409,63936],[-1,21],[-4,-4],[5,-17]],[[30720,63889],[-7,12],[2,-30],[4,-11],[1,29]],[[30600,63858],[2,16],[-4,16],[2,-32]],[[30652,63865],[0,-37],[2,20],[-2,17]],[[30502,63798],[0,95],[-4,-20],[-2,-36],[3,-41],[3,2]],[[30586,63779],[-1,-12],[5,-9],[-4,21]],[[30566,63800],[0,-47],[5,6],[-5,41]],[[30594,63719],[-3,32],[-5,-3],[8,-29]],[[30572,63693],[-4,33],[0,-20],[4,-13]],[[30500,63702],[4,-23],[-3,36],[-2,60],[-5,15],[-1,74],[-6,31],[-1,-33],[-4,-28],[4,-28],[3,0],[11,-104]],[[30582,63649],[0,35],[-3,18],[-2,-16],[1,-28],[4,-9]],[[30728,63604],[-2,12],[-2,-33],[4,21]],[[30787,63540],[-4,6],[-2,-16],[8,4]],[[30789,63534],[-2,6]],[[30462,63599],[-2,-8],[4,-22],[2,-53],[3,24],[-4,54],[-3,5]],[[30787,63540],[2,-6]],[[30789,63534],[3,-19],[7,4],[0,65],[-5,40],[-6,4],[-4,20],[-2,-19],[2,-33],[4,-12],[-1,-17],[-5,13],[5,-40]],[[30743,63577],[-1,20],[-7,7],[1,-15],[-6,4],[-9,-31],[1,-22],[-2,-29],[-4,9],[-4,-18],[1,-24],[6,-24],[7,11],[-1,30],[10,17],[3,15],[10,-23],[2,29],[-2,28],[-5,16]],[[30829,63478],[-2,15],[-5,-3],[3,-39],[4,27]],[[30871,63479],[-5,7],[-5,-12],[7,-23],[4,14],[-1,14]],[[30733,63454],[-1,15],[6,-10],[3,32],[-5,18],[-7,-32],[2,-31],[2,8]],[[30839,63396],[-8,26],[-5,-8],[5,-33],[3,14],[2,-36],[6,12],[-3,25]],[[30870,63357],[3,7],[-4,19],[1,-26]],[[30738,63361],[-2,9],[2,25],[5,13],[-1,13],[-6,3],[0,-15],[-10,23],[1,19],[-9,-3],[5,-26],[-4,-1],[-5,23],[-3,0],[-8,29],[7,-40],[0,-13],[21,-62],[7,3]],[[30839,63396],[10,-21],[-1,-27],[11,57],[-2,21],[-8,23],[-6,-21],[-4,7],[0,-39]],[[30864,63362],[-3,-5],[4,-21],[3,6],[-4,20]],[[30878,63332],[-3,9],[-2,-20],[5,11]],[[30806,63354],[-7,-10],[4,-4],[-3,-17],[7,5],[2,18],[-3,8]],[[30750,63328],[-3,-13],[5,-12],[-2,25]],[[30894,63235],[3,40],[-6,1],[-1,-40],[4,-1]],[[30903,63229],[4,6],[-7,11],[3,-17]],[[30704,63221],[1,21],[-5,18],[-3,-8],[3,-32],[4,1]],[[30782,63219],[12,28],[3,22],[-7,7],[1,24],[-5,7],[10,3],[-3,18],[-10,-13],[-1,37],[4,4],[1,-16],[7,6],[-3,36],[-6,-12],[3,28],[-11,18],[-6,-16],[2,-7],[-8,-13],[3,-34],[0,-30],[-6,-19],[7,-8],[1,-11],[6,16],[-4,-38],[6,-31],[1,-21],[3,15]],[[30836,63222],[-4,1],[-2,-25],[6,24]],[[30769,63174],[6,17],[-1,20],[-6,1],[-3,-26],[-6,-12],[2,-18],[8,18]],[[30849,63082],[-3,23],[1,18],[-4,11],[0,-25],[-4,-11],[7,-45],[3,29]],[[30832,63128],[-2,21],[-4,-19],[-8,-10],[3,-45],[0,-29],[4,-16],[5,51],[2,47]],[[30725,63041],[2,23],[-5,16],[1,19],[-5,1],[-3,58],[4,4],[-5,42],[-2,54],[-5,15],[4,-35],[-1,-30],[-5,-25],[10,-50],[-5,-23],[4,-16],[-2,-13],[3,-40],[10,0]],[[30928,63041],[-3,-19],[6,-16],[0,23],[-3,12]],[[30850,63106],[0,0]],[[30850,63106],[1,-21],[6,-10],[-1,-31],[5,-9],[2,-18],[3,10],[3,-29],[-3,1],[-1,-34],[4,8],[5,-9],[4,-30],[9,21],[4,-13],[6,10],[0,33],[9,32],[4,3],[5,35],[0,24],[3,19],[-1,30],[-2,-8],[-4,37],[-10,31],[-5,-7],[-8,11],[-6,-13],[-1,-32],[0,-74],[-5,5],[4,95],[-3,18],[3,14],[-4,13],[7,5],[2,35],[-5,29],[-8,9],[-3,-19],[-3,11],[-5,-43],[-8,-4],[-3,-26],[3,-17],[-5,-5],[-2,-44],[6,-15],[1,-28],[-3,0]],[[30928,62963],[-1,-25],[4,2],[-3,23]],[[31008,62960],[-5,8],[-2,-40],[3,-11],[4,43]],[[30722,62958],[-3,-3],[-1,-24],[2,-19],[3,7],[1,29],[-2,10]],[[31096,62852],[2,20],[-5,-6],[3,-14]],[[31019,62826],[5,28],[-4,9],[-3,-39],[2,2]],[[31093,62818],[9,18],[-3,5],[-11,-20],[5,-3]],[[31081,62825],[0,25],[7,38],[-5,35],[-4,-18],[-3,-63],[5,-17]],[[31074,62838],[-2,-26],[4,2],[-2,24]],[[31015,62814],[-3,-31],[2,-2],[1,33]],[[31064,62756],[0,27],[-3,-9],[0,-32],[3,14]],[[30747,62733],[8,56],[-1,33],[-5,15],[-6,-43],[-1,-39],[5,-22]],[[31106,62701],[-5,6],[-1,16],[-5,5],[1,-17],[5,-12],[0,-16],[5,18]],[[31165,62658],[4,4],[-6,19],[-6,0],[4,-40],[4,17]],[[31239,62125],[5,31],[5,8],[0,28],[-4,4],[0,-18],[-6,7],[2,-37],[-9,-9],[7,-14]],[[30474,64039],[-3,-1]],[[30471,64038],[2,-19],[-3,-24],[2,-60],[-3,3],[0,29],[-5,-13],[4,-38],[-1,-63],[-4,-4],[1,-91],[-5,-41],[-1,-54],[4,-23],[-2,-10],[12,-50],[-2,-10],[-1,-54],[6,-36],[2,-49],[-4,33],[-1,28],[-7,26],[-3,55],[-3,13],[0,34],[-3,11],[2,20],[-8,-8],[-1,31],[-7,0],[-2,27],[2,21],[-9,70],[23,-102],[-1,37],[1,35],[5,-19],[0,98],[-3,16],[7,-2],[1,17],[-2,63],[-3,-7],[1,25],[5,37],[-4,-3],[3,23],[-1,64],[4,-18],[2,15],[-5,17],[-11,21],[1,16],[-6,11],[1,-25],[-2,-20],[4,-10],[-2,-21],[-6,15],[2,-18],[-1,-29]],[[30446,64028],[-2,-42],[5,-23],[3,-37],[-7,8],[2,-69],[-2,-9],[-5,23],[-2,-42],[-3,50],[6,13],[1,60],[-2,1],[-1,63],[-3,3],[0,-32],[-4,-7],[4,-17],[1,-27],[-5,-4],[-2,45],[-5,56],[-3,-14],[-5,31],[-4,-6],[7,-54],[5,-15],[-2,-24],[4,-39],[1,-41],[-5,36],[0,29],[-4,20],[-7,57],[-5,18],[2,28],[-4,-11],[-4,18],[-3,-12],[11,-68],[2,-26],[4,-7],[1,-28],[6,-29],[2,-29],[-7,23],[-3,-8],[-12,53],[1,-12],[10,-53],[0,-9],[-9,15],[-11,56],[-12,18],[5,-31],[0,-18],[-6,26],[-3,46],[-4,8],[-6,-5],[3,14],[-4,26],[-7,19],[1,-21],[-5,10],[0,45],[-8,40],[3,6],[-9,32],[0,-38],[-2,6],[-1,57],[-5,-4],[2,25],[3,-17],[5,14],[-6,35],[-6,4],[-8,-26],[4,22],[6,15],[7,-10],[2,-21],[4,6],[1,29],[4,11],[-2,55],[4,8],[-2,15],[3,23],[-5,10],[-2,-11],[-4,13],[-8,4],[-2,-16],[-8,22],[-3,35],[-5,-26],[-8,20],[-7,55],[0,44],[-2,15],[9,17],[5,-1],[0,14],[-6,4],[-6,32],[1,13],[-12,29],[0,23],[-4,39],[-8,21],[-2,-7],[-12,4],[-5,11],[-7,33],[-3,50],[-6,40],[-1,23],[6,38],[-4,22],[0,23],[-4,8],[-1,25],[4,6],[-8,13],[0,41],[-4,13],[-1,23],[-6,18],[1,18],[-4,32],[-5,9],[-1,-29],[-7,3],[-1,-24],[-4,35],[-9,-35],[-9,-27],[-8,-33]],[[30178,65053],[-1,-26],[2,-58],[2,-9],[0,-35],[3,-18],[-5,-28],[-4,-2],[0,-16],[-12,-30],[-1,-17],[-6,-14],[2,-22],[-4,-5],[0,-21],[-4,-23],[-8,2],[-4,-21],[0,-24],[-4,-35],[1,-55],[4,-9],[2,-75],[-4,-9],[5,-37],[1,-40],[-2,-26],[3,-6],[-1,-25],[-5,-16],[-1,-60],[0,-86],[-1,-2],[0,-81],[-1,-2],[0,-76],[-2,-80],[0,-159],[-1,-10],[0,-107],[-1,-32],[0,-100],[-1,-13],[0,-89],[-1,-61],[0,-92],[-1,-11],[0,-109],[-1,-12],[0,-104],[-1,-14],[0,-93],[-1,-6],[0,-87],[-1,-7],[-1,-76],[0,-122],[-1,-24],[0,-83],[-2,-86],[0,-86],[-2,-79],[0,-65],[-3,-141],[0,-61],[-2,-81],[0,-61],[-2,-157],[-2,-87],[0,-67],[-2,-69]],[[30107,61515],[7,-12],[8,3],[8,-28],[-3,-13],[2,-17],[6,23],[9,-10],[4,30],[5,12],[2,31],[-2,26],[6,34],[0,27],[11,20],[6,-9],[-3,-14],[0,-33],[4,-23],[0,-29],[6,-12],[1,-41],[-3,-28],[4,-49],[-6,-35],[8,-54],[12,-1],[7,47],[4,11],[11,-1],[7,26],[4,-9],[0,-21],[4,-10],[-4,-15],[2,-23],[-6,-33],[-9,-17],[-4,-39],[-6,-20],[2,-18],[-3,-23],[6,-26],[6,-39],[-3,-15],[10,-49],[2,-22],[8,-14],[7,-27],[11,-62],[9,-3],[15,-61],[6,2],[12,-24],[5,-29],[-1,-20],[-5,-22],[0,-27],[-3,-30],[5,-4],[3,-36],[14,-57],[6,-6],[10,-30],[7,-45],[-2,-41],[6,-22],[-2,-23],[-8,-23],[-10,5],[2,-34],[6,-18],[-5,-9],[-4,-35],[5,-17],[0,-17],[5,-17],[0,-17],[-8,-4],[2,-32],[4,-30],[10,0],[-1,-23],[4,-33],[1,-25],[-15,-64],[7,-58],[4,-47],[0,-24],[6,-49],[7,-15],[-1,-50],[5,-34],[5,-14],[7,-2],[6,-22],[0,-15],[5,-12],[3,-31],[11,-14],[5,-123],[0,-24],[6,-146],[0,-24],[5,-120],[0,-26],[9,-65],[4,-20],[16,-103],[14,-81],[6,-41],[24,-143],[14,-90],[13,-74],[18,-114],[9,-51],[26,-162],[11,-61],[33,-205],[19,-113],[6,12],[8,-6],[13,22],[11,32],[9,-12],[1,17],[4,0],[2,33],[-6,42],[0,104],[1,17],[0,92],[4,25],[4,6],[15,40],[1,12],[6,1],[6,28],[11,12],[21,-56],[12,-12],[8,-23],[8,-3],[5,-12],[5,11],[12,-7],[9,-26],[-1,-25],[5,-27],[8,9],[7,-21],[14,-5],[4,21],[9,7],[4,-11],[11,-3],[-2,-29],[0,-58],[5,-26],[7,-8],[11,7],[5,-7],[5,12],[8,-5],[4,24],[7,7],[12,26],[0,22],[4,24],[16,42],[2,22],[15,34],[8,47],[11,29],[0,19],[4,34],[7,25],[6,39],[2,37],[17,36],[9,28],[0,831],[1,8],[0,273],[1,3],[0,791],[1,13],[7,23],[-4,39],[-10,26],[2,40],[12,60],[-7,8],[-7,26],[-1,80],[4,8],[3,33],[-8,2],[2,56],[-4,4],[4,27],[10,0],[4,17],[3,-9],[6,17],[-4,-44],[7,13],[5,52],[13,61],[4,-13],[6,25],[6,-1],[7,21],[4,-6],[8,17],[6,2],[1,-21],[11,-9],[8,40],[-1,20],[2,44],[-3,6],[0,25],[5,35],[-10,-11],[1,14],[-6,-8],[1,16],[-10,9],[0,18],[5,27],[1,41],[3,27],[12,53],[2,28],[-3,3],[0,51],[-7,25],[1,17],[-4,36],[-6,13],[7,72],[3,3],[4,25],[3,44],[-1,10],[8,27],[-1,27],[7,16],[7,34],[4,8],[6,-11],[0,-16],[7,-10],[-2,-31],[3,-35],[5,-5],[8,22],[5,24],[6,-3],[12,13],[4,56],[7,34],[4,36],[0,35],[-3,4],[11,52],[2,36],[5,29],[1,21],[-3,4],[6,23],[-3,16],[-1,29],[-5,3],[-3,21],[-5,-59],[-4,19],[-4,-4],[-2,-24],[-1,25],[8,17],[0,14],[-7,-5],[0,-10],[-8,-18],[0,17],[15,50],[-4,4],[-2,32],[-6,-36],[-7,-22],[-2,12],[-6,-16],[-1,17],[6,3],[4,15],[-6,-3],[3,31],[6,4]],[[31199,62223],[5,41],[-2,19],[1,27],[-3,22],[7,3],[0,-110],[4,13],[0,41],[5,4],[3,-55],[-5,-12],[5,-16],[1,20],[10,35],[0,43],[4,-2],[0,-23],[5,-15],[-5,-1],[1,-15],[-4,-23],[0,-19],[-5,-18],[7,1],[4,25],[3,0],[2,69],[6,-28],[2,14],[-4,16],[2,10],[1,41],[9,-12],[0,16],[-7,6],[-9,32],[-4,31],[-7,10],[0,-21],[-5,4],[1,32],[-4,20],[-12,3],[7,12],[-6,47],[-6,16],[-4,40],[-9,9],[-2,15],[-5,-2],[5,17],[-12,13],[-3,-21],[0,-33],[-7,10],[1,41],[4,11],[-6,15],[-5,-18],[0,-24],[-9,-27],[5,4],[1,-44],[3,-26],[-4,-6],[-9,16],[-6,-3],[-1,25],[-7,-13],[-4,18],[4,24],[5,9],[2,18],[-4,14],[5,20],[-4,18],[-4,-8],[-3,46],[-5,-12],[1,-38],[-3,-33],[-1,18],[-3,-14],[-2,27],[5,26],[-5,22],[-12,-25],[0,-23],[-4,-13],[-9,20],[1,-24],[-5,-36],[2,49],[-4,12],[-8,0],[0,9],[8,10],[1,22],[-4,36],[-1,30],[3,14],[-1,31],[-20,5],[2,-39],[-2,-18],[-6,-8],[-3,12],[1,27],[-2,14],[-7,5],[0,35],[-3,30],[-5,-8],[3,-31],[-5,3],[1,28],[-3,0],[0,-54],[-4,-37],[4,-6],[-3,-23],[4,-20],[0,-39],[-4,9],[1,29],[-3,1],[0,24],[-4,34],[-3,0],[1,41],[-6,-3],[1,-43],[5,-2],[-2,-17],[1,-59],[-4,2],[0,46],[-4,8],[-1,-39],[-5,19],[-4,-4],[8,38],[-8,-11],[2,34],[-3,22],[-7,-26],[0,22],[6,23],[2,48],[-1,15],[-6,10],[0,-18],[-5,-2],[4,50],[-3,20],[0,29],[-3,46],[-3,-32],[1,-76],[-1,-50],[-6,72],[1,34],[-3,26],[-4,-29],[-1,-43],[-4,-28],[2,-10],[-1,-45],[-3,17],[0,27],[-4,29],[-5,-9],[0,-19],[-4,-3],[0,23],[3,13],[2,38],[1,-32],[6,22],[3,35],[0,24],[3,12],[-8,10],[-5,-36],[-4,14],[2,33],[-4,1],[1,47],[-6,-3],[1,31],[-6,8],[1,-18],[-4,-5],[1,-54],[-2,-20],[-4,7],[2,27],[-5,-23],[-2,-24],[1,-29],[-2,-12],[-1,-51],[2,-19],[5,2],[-18,-59],[-1,50],[-5,-3],[-4,-27],[-1,-35],[4,-1],[-14,-27],[-5,-21],[0,-43],[5,-10],[8,4],[-9,-23],[-1,12],[-7,8],[0,26],[-7,-7],[6,42],[5,3],[11,32],[-3,48],[0,32],[-4,-4],[-7,-36],[-1,-19],[3,-14],[-6,-18],[0,19],[-6,-13],[1,-16],[-7,-14],[4,19],[-3,33],[5,11],[1,-13],[5,11],[4,24],[-1,20],[-8,-2],[3,24],[4,1],[-7,15],[-9,-20],[-1,19],[-4,-6],[-3,-32],[3,-25],[-3,-10],[-1,40],[2,43],[-6,33],[-5,-19],[0,29],[-6,32],[-5,0],[2,-154],[-2,-14],[-2,30],[-8,-17],[-9,2],[9,16],[0,29],[3,17],[-4,23],[4,50],[-1,41],[-6,0],[2,-26],[-1,-47],[1,-38],[-2,-4],[-4,38],[0,20],[-7,6],[-2,28],[-16,-22],[6,20],[1,39],[-6,39],[-1,36],[4,-23],[4,-47],[3,31],[-5,38],[0,36],[4,28],[4,4],[5,46],[-6,-4],[-3,-19],[-1,27],[5,4],[4,38],[-8,-5],[1,-13],[-8,-16],[0,-15],[-7,-20],[-7,-8],[4,-39],[-5,8],[0,19],[-11,-11],[-18,-55],[-3,-21],[-12,34],[-3,19],[-8,-6],[2,-25],[-2,-12],[2,-29],[8,-22],[0,-20],[7,32],[2,-33],[-6,-10],[5,-36],[0,-29],[3,-1],[3,23],[6,17],[-1,-17],[6,33],[4,-1],[3,43],[3,-5],[-5,-46],[-10,-32],[-1,-49],[4,-8],[0,-20],[-9,-7],[4,14],[-2,33],[-9,15],[-4,46],[-4,22],[-7,10],[-1,-21],[4,-17],[-4,-6],[2,-32],[4,-11],[0,-19],[5,-2],[0,-46],[2,-34],[5,-20],[5,-72],[-6,25],[-2,-49],[-11,-11],[-1,-33],[-5,-37],[-3,-8],[6,-70],[-3,-6],[-3,52],[-6,31],[1,36],[6,-9],[6,46],[4,12],[-2,111],[-2,-3],[-6,25],[4,32],[-10,33],[-1,-17],[4,-46],[-4,5],[-4,24],[-6,-2],[0,23],[-7,-8],[-2,30],[-8,17],[-7,4],[-7,-14],[7,53],[0,26],[6,15],[4,34],[-1,47],[-3,31],[-5,17],[-6,4],[-1,42],[-7,37],[-3,49],[-5,13],[2,17],[-2,49],[-4,-29],[-2,74],[-3,9],[5,9],[-3,25],[-6,5],[1,53],[8,-20],[9,-2],[-5,36],[-5,11],[1,26],[-7,19],[-6,-5],[2,18],[-4,27],[-6,20],[-7,0],[0,30],[-7,9],[2,37],[-6,26],[-12,21],[-4,-19],[2,-20],[-3,-10],[6,-9],[-3,-9],[4,-34],[3,2],[3,-23],[4,6],[-2,-22],[10,-51],[-1,-16],[7,-29],[-4,-10],[-4,23],[-7,69],[-4,9],[-3,-13],[-1,27],[-4,34],[-5,-14],[-2,27],[3,2],[-5,33],[-7,7],[4,-14],[-3,-9],[4,-32],[-5,-19],[-2,22],[-5,16],[-7,5],[1,-36],[4,-43],[-5,-13],[8,-33],[-12,-51],[-1,-18],[-2,36],[5,2],[2,44],[-5,17],[1,-41],[-4,29],[-4,1],[0,21],[6,16],[-9,48],[-1,-28],[-5,47],[-4,100],[-5,29],[-7,78],[-3,-6],[-3,-54],[-5,-6],[2,-47],[-6,29],[3,0],[-3,43],[3,3],[-2,46],[-4,-16],[0,-47],[-2,10],[-2,-35],[5,-16],[0,-45],[-5,-22],[4,-26],[5,-55],[4,-16],[-4,-36],[0,37],[-7,32],[-6,102],[4,-8],[1,19],[-5,59],[3,5],[3,39],[-1,29],[-7,25],[-1,-19],[4,-15],[0,-43],[-4,4],[-5,50],[-2,-21],[2,-20],[-8,32],[0,74],[-3,2],[-2,-31],[-4,-7],[0,-45],[4,7],[2,-30],[0,-86],[3,-46],[4,-1],[4,36],[1,-20],[-3,-20],[-6,-3],[-5,18],[-1,-23],[3,-47],[6,-62],[6,-32],[0,-36],[-4,50],[-12,38],[1,38]],[[30500,63702],[-9,55],[-2,-8],[-5,15],[1,31],[-4,27],[-3,-3],[3,-37],[-4,4],[0,36],[-5,7],[3,33],[3,9],[5,-21],[0,59],[-3,24],[1,25],[3,-51],[4,-1],[3,32],[-2,15],[-2,57],[-10,47],[1,-33],[-4,15]],[[26738,66680],[1,-40],[4,-61],[4,-18],[2,30],[0,56],[-5,61],[-4,0],[-2,-28]],[[26787,66319],[8,-22],[5,5],[-2,12],[-11,5]],[[26879,65901],[-3,0]],[[26876,65900],[0,1]],[[26876,65900],[3,1]],[[26881,65949],[6,-28],[11,-10],[2,-25],[10,-5],[3,15],[6,-4],[-6,19],[-10,48],[-1,19],[-6,3],[-6,-12],[-10,22],[9,-28],[7,4],[-5,-41],[-4,6],[-3,24],[-3,-7]],[[26884,65880],[3,-20],[14,19],[-3,24],[-11,10],[0,-31],[-3,-2]],[[26662,63885],[6,2],[-5,22],[-1,-24]],[[26664,63595],[4,9],[-2,16],[-2,-25]],[[25908,61994],[5,-44],[6,-8],[8,12],[3,16],[-5,-1],[-2,23],[2,19],[-11,15],[-6,-12],[0,-20]],[[25933,61791],[5,-33],[15,10],[5,23],[-2,62],[0,37],[6,27],[-12,13],[-3,-24],[-12,-51],[0,-36],[-2,-28]],[[25984,61286],[7,7],[8,37],[0,54],[-3,-8],[-10,-60],[-2,-30]],[[26010,61214],[6,7],[0,30],[-6,-37]],[[25733,61182],[7,1],[0,44],[-7,-15],[0,-30]],[[25768,61054],[9,16],[0,39],[-6,10],[-3,-36],[0,-29]],[[25756,61015],[4,-16],[1,31],[-5,-15]],[[26036,60791],[2,-10],[10,9],[0,42],[-6,31],[-6,1],[3,-39],[-3,-34]],[[26055,61023],[2,-40],[4,-13],[-1,-34],[2,-51],[9,-46],[0,-26],[3,-17],[-2,-38],[11,17],[6,-8],[2,16],[-5,-6],[-1,19],[5,14],[2,56],[-3,13],[0,24],[4,29],[1,68],[-6,33],[-4,5],[-3,24],[-7,11],[-8,-14],[-10,-7],[-1,-29]],[[26653,67270],[-116,20],[-87,13],[-1,1],[-132,17],[-33,5]],[[25722,67226],[19,-56],[19,-66],[18,-81],[6,-37],[7,-61],[5,-75],[11,-86],[8,-79],[0,-17],[18,-90],[14,-86],[13,-110],[4,-51],[5,-44],[3,-71],[7,-67],[4,-73],[2,-105],[3,-41],[0,-96],[3,-26],[3,-63],[0,-79],[-1,-3],[0,-181],[-2,-61],[-2,-131],[-3,-67],[-5,-67],[0,-20],[-5,-48],[-5,-65],[-10,-93],[-4,-25],[3,-8],[2,22],[11,-4],[10,-42],[0,-26],[-13,36],[-11,-15],[2,22],[-5,11],[-1,-24],[-6,-44],[-16,-159],[-7,-98],[-4,-90],[-8,-85],[-3,-18],[-8,-73],[-2,-33],[0,-64],[2,-29],[8,-50],[10,-51],[6,-47],[4,-56],[0,-85],[-4,-59],[-1,-70],[4,7],[3,-12],[-5,-4],[0,-15],[-5,-8],[0,-23],[-7,-64],[-4,-21],[-4,-40],[1,-37],[6,-26],[14,-45],[5,-27],[7,-55],[3,-39],[8,-50],[3,-52],[6,-30],[5,-57],[10,-63],[1,-32],[8,12],[12,-5],[-10,-34],[-3,19],[-4,-11],[-1,-21],[3,-35],[0,-69],[-1,-29],[5,-74],[0,-23],[3,-33],[1,-56],[-4,-63],[-3,-17],[-4,-56],[1,-48],[3,-17],[22,-35],[4,-15],[11,5],[6,-16],[4,-32],[1,-40],[-1,-28],[3,-22],[-2,-128],[4,-34],[5,-7],[7,22],[5,5],[6,-18],[4,-43],[6,-29],[0,-17],[4,-9],[8,11],[5,34],[8,6],[11,-15],[8,-42],[2,-34],[-1,-30],[5,-20],[5,-52],[9,-17],[9,-49],[1,-40],[5,-42],[11,-67],[3,12],[7,-8],[5,-17],[4,-29],[6,32],[-1,26],[-10,36],[-9,6],[-4,33],[1,29],[4,13],[-1,23],[5,40],[4,12],[0,28],[-6,-21],[-3,32],[0,26],[-10,35],[-3,47],[5,6],[8,-38],[-1,24],[0,81],[-6,6],[-7,78],[0,83],[5,43],[-3,39],[2,10],[9,6],[3,-6],[0,-23],[4,-59],[3,-10],[4,-56],[6,-24],[-1,-47],[-8,9],[6,-31],[6,-70],[0,-27],[8,-27],[5,-1],[2,53],[-6,0],[1,27],[-2,23],[0,72],[-2,12],[0,35],[-9,27],[-8,45],[0,46],[-3,17],[-1,30],[4,10],[9,4],[6,-29],[-1,-39],[3,-25],[8,-20],[5,-61],[4,-13],[4,-35],[0,-21],[5,-22],[4,-82],[3,-33],[0,-118],[4,-28],[1,-69],[-5,-61],[0,-61],[-2,-12],[0,-80],[5,-59],[8,-22],[3,-26],[3,-2],[6,-30],[2,13],[10,-18],[1,-25],[4,1],[9,-37],[7,0],[13,-19],[6,10],[21,8],[7,-16],[7,5],[20,-42],[0,-37],[-2,-10],[-9,-9],[-10,-1],[0,11],[-7,-17],[-8,-9],[-7,-30],[-7,-42],[-1,-32],[-3,-22],[-3,-69],[0,-41],[11,-63],[4,-37],[14,-22],[3,-10],[3,-38],[5,-4],[9,-47],[1,-26],[-13,-53],[13,-2],[10,22],[6,-17],[12,19],[4,-13],[5,12],[6,-15],[2,-21],[-4,-25],[6,-11],[5,10],[7,-9],[1,34],[10,16],[2,14],[9,12],[4,15],[17,39],[4,3],[6,35],[11,27],[2,14],[9,18],[4,-4],[4,17],[4,-10],[-5,-24],[6,-7],[11,22],[12,-14],[13,22],[3,11],[15,16],[8,35],[6,37],[11,50],[1,62],[4,33],[10,26],[10,-7],[0,-7],[13,11],[6,-7],[17,16],[7,27],[6,34],[14,48],[8,6],[3,16],[4,-8],[4,13],[8,-17],[5,31],[12,27],[6,24],[8,8],[4,16],[12,-2],[3,-10],[4,17],[9,9],[-2,-29],[5,29],[-3,1],[2,24],[5,-6],[0,18],[4,3],[8,47],[11,29],[-3,32],[-7,-6],[1,27],[5,43],[5,20],[4,62],[4,5],[3,28],[6,4],[-1,36],[3,37],[-2,40],[1,35],[11,17],[3,32],[-7,-6],[-15,-26],[-7,-28],[0,-27],[-6,0],[-8,17],[-7,24],[-3,23],[-1,31],[7,16],[-7,-3],[-1,33],[4,10],[0,49],[4,41],[8,18],[2,25],[6,5],[2,17],[14,15],[-1,53],[5,26],[2,33],[0,128],[7,37],[-4,63],[0,21],[-7,55],[-1,36],[0,80],[1,40],[-3,41],[1,37],[-3,63],[0,42],[2,28],[-4,53],[1,52],[-3,15],[-7,-3],[-13,59],[-5,51],[-5,-17],[-8,-8],[-7,7],[-7,29],[-6,48],[-2,82],[-3,29],[0,70],[1,19],[-7,33],[0,35],[3,23],[-11,-11],[-8,5],[-9,27],[-3,19],[3,60],[-7,-19],[-11,-9],[-4,32],[-12,0],[-3,-19],[-5,12],[-4,-6],[-4,43],[-5,10],[-4,58],[-4,12],[-3,28],[0,71],[-2,-8],[1,76],[-2,19],[-1,45],[-7,23],[5,83],[7,54],[8,29],[9,19],[5,-5],[6,19],[8,1],[1,11],[10,16],[9,22],[3,28],[4,7],[10,-27],[16,-81],[3,-27],[8,-27],[1,-22],[10,-59],[-1,38],[3,23],[5,-12],[6,-35],[7,-56],[0,-14],[7,-50],[4,-14],[4,-38],[1,-32],[5,0],[11,-45],[0,-30],[-4,-10],[-10,-7],[-5,4],[-2,-15],[12,6],[12,-7],[5,-13],[10,-63],[0,-18],[17,-13],[5,3],[11,-12],[9,-25],[11,6],[8,-27],[4,-44],[11,-8],[7,-31],[5,10],[6,-12],[9,19],[5,20],[20,29],[6,31],[7,9],[5,21],[5,55],[6,35],[0,16],[5,25],[1,44],[6,21],[6,57],[1,34],[5,55],[-1,55],[2,16],[0,67],[1,2],[0,67],[2,35],[0,61],[4,81],[5,56],[0,24],[3,16],[2,51],[3,19],[0,73],[1,3],[-1,67],[2,16],[0,67],[2,119],[4,35],[0,23],[4,60],[2,75],[5,23],[1,24],[6,55],[6,41],[-1,38],[2,32],[-7,37],[-8,79],[0,81],[-3,24],[-1,35],[5,55],[-1,28],[-4,25],[0,31],[-5,38],[-2,33],[-1,76],[-7,32],[-3,-13],[-13,-15],[-4,4],[-4,-15],[-5,2],[5,-20],[1,-42],[-9,-8],[-7,-23],[-13,11],[-2,16],[-7,13],[0,12],[-10,4],[-6,31],[1,35],[7,14],[2,57],[-4,-5],[-11,6],[-11,70],[-2,32],[0,60],[4,15],[-7,105],[-7,20],[-3,28],[-17,12],[-6,22],[-19,39],[-7,39],[-2,34],[-4,29],[-6,20],[2,34],[-3,42],[-4,21],[0,24],[-3,25],[0,31],[-4,26],[1,39],[0,77],[-3,-15],[1,40],[-3,-8],[0,24],[-5,28],[-6,18],[-10,-14],[8,29],[-4,50],[-9,-14],[-8,32],[-3,60],[-4,-4],[0,22],[-9,9],[-4,27],[-4,44],[-6,8],[-2,15],[0,41],[4,46],[-5,-32],[0,-26],[-5,5],[1,32],[-3,5],[-3,49]],[[26120,60732],[5,-22],[0,-44],[5,-3],[3,36],[-2,27],[-6,17],[-5,-11]],[[26344,60667],[3,-9],[15,21],[5,-6],[10,22],[13,16],[2,-23],[5,32],[12,17],[-4,28],[1,10],[-7,24],[0,12],[-7,13],[-5,-13],[-15,-6],[-5,-22],[-1,-20],[-13,-64],[-8,-16],[-1,-16]],[[26082,60691],[2,-48],[9,15],[11,47],[-4,9],[3,15],[-9,-4],[-4,-31],[-8,-3]],[[26327,60585],[2,-37],[7,18],[5,38],[-6,10],[-8,-29]],[[26347,60410],[5,5],[0,14],[-5,-1],[0,-18]],[[26330,60398],[3,-5],[4,23],[-6,10],[-1,-28]],[[26410,60369],[7,17],[-1,10],[5,19],[-1,14],[-7,1],[1,-39],[-4,-22]],[[26572,60265],[5,-19],[3,16],[-5,20],[-3,-17]],[[26505,60208],[5,-11],[5,41],[-6,-11],[-4,-19]],[[26629,60487],[-9,-1],[0,-27],[-5,-8],[0,20],[-4,3],[3,-20],[-3,-28],[-4,22],[-11,14],[-4,-10],[-5,14],[-3,-22],[-3,16],[-5,-19],[-5,-1],[-3,25],[-5,-8],[0,-24],[-11,-6],[-1,-9]],[[26551,60418],[1,-14],[-6,-9],[-4,14],[0,-33],[3,-11],[6,-49],[5,2],[0,46],[8,19],[2,-21],[4,-4],[6,-47],[6,5],[5,-25],[13,6],[-4,-10],[0,-17],[4,-1],[1,-17],[-3,-21],[-7,-4],[-7,-15],[4,-27],[15,2],[8,-6],[16,36],[1,26],[5,13],[3,31],[0,36],[3,22],[4,-1],[3,20],[4,-8],[5,14],[0,20],[-7,33],[0,22],[-4,15],[1,16],[-5,16],[-3,-18],[-3,20],[-5,-7]],[[26567,60187],[-6,0],[-1,-13],[7,13]],[[26450,59810],[10,-2],[7,7],[5,17],[2,63],[6,30],[-4,33],[-10,13],[-5,-17],[-4,-51],[-7,-32],[4,-45],[-4,16],[0,-32]],[[26427,59568],[-2,-10]],[[26425,59558],[-1,-8]],[[26424,59550],[3,18]],[[26475,59786],[2,27],[-3,5],[-14,-26],[-2,-51],[-12,-43],[-2,-43],[-3,-30],[-1,-47],[-4,-14],[0,25],[-7,-28],[0,-27],[6,-12]],[[26435,59522],[6,-20],[0,-13],[7,-35],[5,-2],[3,18],[7,2],[6,-12],[7,25],[-5,8],[-4,36],[0,35],[-5,7],[-5,27],[-2,62],[10,40],[10,86]],[[25754,59434],[7,-23],[9,0],[7,43],[-1,36],[-5,45],[5,15],[6,-24],[0,37],[-4,23],[-4,5],[-3,-13],[3,-19],[-7,5],[-3,31],[-4,-6],[1,-73],[-4,-11],[-3,-71]],[[25222,58319],[-7,45],[3,51],[4,31],[8,8],[8,-5],[14,24],[-2,49],[0,74],[-2,29],[4,-3],[0,-25],[7,2],[2,31],[3,1],[9,47]],[[25273,58678],[-3,32],[-1,55],[-2,37],[-5,45],[-1,74],[-2,25],[6,81],[-6,8],[-4,40],[8,11],[6,-22],[3,-43],[6,-38],[9,-39],[0,-26],[-5,-8],[3,-22],[10,18],[11,-45],[3,-19],[12,-35],[8,-34],[10,-18],[3,-14],[12,-24],[3,8],[-4,28],[-11,46],[-12,34],[-5,37],[-5,59],[-6,25],[0,12],[7,-16],[3,-17],[4,-48],[8,-28],[-1,-12],[8,-21],[19,-13],[9,-14],[5,2],[8,17],[6,-4],[6,11],[10,-7],[17,0],[5,25],[10,18],[7,-12],[3,15],[8,6],[0,19],[6,12],[5,-4],[1,46],[3,17],[7,1],[7,-24],[0,31],[6,16],[6,1],[8,45],[3,4],[0,51],[3,45],[16,65],[0,23],[5,44],[12,22],[0,40],[6,17],[2,20],[6,-2],[9,18],[-4,7],[5,52],[-4,6],[0,31],[8,34],[17,23],[18,4],[16,-13],[4,-17],[7,20],[9,-2],[8,-35],[14,-15],[2,-16],[11,10],[5,23],[4,50],[0,21],[5,13],[7,-2],[5,14],[1,29],[7,11],[12,-5],[2,-39],[5,-28],[11,-4],[6,14],[8,55],[9,-11],[4,5],[-2,42],[7,9],[11,-69],[8,-39],[5,-33],[7,-15],[9,-37],[3,-29],[6,-17],[5,8],[22,-40],[8,-20],[29,-86],[10,-26],[9,-33],[7,-6],[5,26],[6,5],[35,-43],[-2,17],[15,-24],[11,-12],[13,3],[12,13],[12,7],[14,0],[7,-5],[18,4],[9,6],[22,-3],[33,-58],[22,-51],[14,-23],[22,-17],[31,10],[10,-7],[12,-19],[9,7],[-8,32],[-10,55],[-3,34],[0,63],[-2,45],[0,95],[3,60],[-4,5],[-5,24],[2,39],[6,32],[5,9],[13,3],[7,-15],[6,31],[7,4],[8,-7],[9,43],[9,-3],[8,-12],[18,-37],[8,-22],[7,9],[6,-3],[4,19],[2,29],[8,32],[-5,-10],[-2,12],[2,35],[6,3],[9,-13],[13,-43],[7,20],[5,-34],[0,-27],[11,-31],[12,-12],[0,-10],[9,0],[11,27],[-1,14]],[[26424,59550],[1,8]],[[26425,59558],[2,10]],[[26427,59568],[9,58],[1,52],[3,37],[7,49],[0,107],[7,27],[4,36],[-2,12],[-6,-6],[0,25],[-12,28],[-2,38],[4,2],[-1,29],[7,18],[7,-2],[5,-28],[5,16],[5,-14],[3,22],[4,-19],[2,31],[4,18],[10,7],[10,21],[-10,35],[-2,36],[7,28],[6,41],[6,9],[10,45],[1,-17],[7,4],[1,11],[8,15],[2,34],[-4,39],[-3,-14],[-11,14],[-9,4],[-1,25],[-5,-15],[-21,-24],[-6,-16],[-14,10],[-5,-10],[-4,16],[-5,-21],[-5,14],[-11,-11],[-8,-24],[4,24],[-9,-11],[5,23],[-7,-12],[-2,-19],[-8,-2],[3,25],[-7,0],[0,22],[6,19],[2,22],[-11,8],[-11,-32],[4,-36],[-5,-23],[7,18],[3,-26],[-3,-11],[-12,2],[-6,-11],[1,68],[-5,-22],[0,-21],[-6,-7],[-3,8],[0,40],[-5,0],[0,-61],[-2,-23],[-7,-21],[-6,11],[-7,-2],[-1,-16],[-5,-5],[-6,-22],[-9,29],[-1,35],[2,16],[-3,31],[3,24],[-8,0],[-4,12],[-3,43],[7,39],[-6,3],[0,29],[4,39],[-3,6],[7,19],[1,14],[-11,6],[-3,13],[-9,-24],[-5,-27],[-8,-2],[-2,-46],[-4,-2],[-7,-23],[-3,-21],[-5,5],[-10,-66],[-15,-67],[-6,-17],[-10,-17],[-13,-14],[-11,-32],[-7,3],[-6,-22],[-1,24],[-5,-17],[-15,-10],[-13,-29],[-5,-18],[-10,0],[-5,15],[-6,-28],[-7,-6],[-6,28],[-8,-18],[-10,3],[-8,25],[-9,51],[-7,28],[-9,68],[-6,22],[0,20],[-9,2],[-2,12],[-12,-9],[-18,-25],[-6,2],[-5,23],[-6,-7],[-9,1],[-8,30],[-1,32],[4,18],[-26,-55],[-18,-21],[-15,1],[-8,18],[-13,-17],[-6,7],[-4,24],[-3,-7],[-10,19],[-1,22],[-8,11],[-3,20],[1,16],[-4,45],[2,26],[-6,35],[0,60],[-5,21],[-7,-15],[-7,2],[-5,55],[-5,8],[-6,-15],[-3,30],[-6,-13],[-7,13],[3,17],[-3,12],[2,16],[-4,20],[-9,-13],[-3,10],[0,47],[-3,27],[-5,-7],[-4,11],[0,36],[2,37],[4,22],[-9,-20],[-3,4],[-9,-20],[-4,-44],[-5,0],[-2,-23],[1,-28],[3,-10],[6,4],[5,-22],[-1,-30],[6,-15],[4,-44],[3,8],[1,-23],[-3,-31],[4,0],[4,19],[5,-13],[5,16],[2,-12],[-5,-18],[0,-27],[4,-3],[1,-41],[5,-13],[3,-25],[0,-41],[-3,-23],[-8,-17],[-4,3],[-5,38],[-3,-1],[-6,29],[0,28],[-4,13],[-23,-23],[-5,-32],[-10,17],[-1,42],[3,9],[1,29],[-2,21],[-8,9],[2,25],[-5,8],[0,21],[-6,29],[1,32],[-7,13],[-12,12],[-3,18],[-7,-9],[-7,57],[0,-33],[-4,-13],[-1,-29],[2,-20],[1,-49],[-2,-8],[0,-58],[-2,-27],[-4,-20],[0,-16],[15,-70],[0,-49],[-3,-22],[-5,8],[-1,29],[-9,43],[-2,18],[6,16],[-11,21],[-5,36],[0,42],[-2,13],[1,52],[6,9],[-6,17],[-3,29],[-8,30],[0,21],[-9,10],[-12,34],[0,21],[-6,15],[-11,100],[-5,20],[-3,46],[-3,17],[-4,49],[-12,86],[2,37],[-7,26],[-3,34],[-8,30],[-1,35],[-4,12],[0,19],[-6,21],[-2,43],[-8,33],[-13,88],[-6,24],[-2,20],[-6,15],[-6,27],[-5,34],[2,14],[-4,10],[-1,23],[6,38]],[[25508,61862],[-7,-8]],[[25501,61854],[-11,-10],[-5,-23],[-2,-36],[-10,-29],[-5,-22],[-2,-40],[5,-19],[0,-37],[4,-13],[1,-45],[7,-63],[5,-21],[0,-17],[4,-15],[-2,-53],[-10,-36],[-8,22],[-5,34],[-4,12],[-10,-7],[-17,8],[-11,-11],[5,-27],[0,-19],[4,-10],[-1,-16],[3,-23],[-3,-39],[14,-51],[5,-53],[-4,-45],[1,-21],[-8,-33],[0,-18],[12,8],[1,-35],[3,-28],[-2,-22],[-4,-5],[-4,-37],[-4,-10],[-1,-25],[13,-20],[0,-19],[-7,-20],[-1,-25],[-8,-10],[-7,-30],[-1,-25],[-9,-12],[-17,0],[-8,-27],[3,-4],[-2,-30],[-3,-3],[-12,11],[-2,13],[-7,2],[-9,-20],[0,-14],[-8,-19],[-1,-16],[17,-71],[2,-17],[-9,-12],[-1,-45],[1,-22],[-6,0],[-7,-28],[-7,-4],[-1,-13],[-6,-10],[-2,13],[-8,-3],[-4,-28],[-13,22],[-10,-25],[-8,-27],[-7,-14],[-1,14],[-10,5],[-8,-31],[-5,-6],[-1,14],[-7,-6],[-2,-36],[-7,-5],[-2,11],[-9,0],[-5,15],[-3,-21],[-3,20],[-1,30],[-16,-1],[-1,-40],[-18,-25],[-12,19],[1,-27],[-5,-2],[1,14],[-6,7],[-7,-15],[-3,-18],[-67,-165],[-25,-28],[-41,-50],[-36,-40],[-12,-16],[-69,-79],[-34,-41],[-70,-81],[1,-38],[-4,-19],[-4,-48],[-3,-15],[-2,-52],[-4,-3],[0,-28],[-7,-36],[-3,-40],[-16,-6],[-1,-32],[-2,9],[-9,5],[1,-42],[-6,-22],[-4,7],[0,20],[-6,-6],[-7,15],[-6,-56]],[[24721,59401],[8,-30],[15,-43],[7,10],[15,-32],[27,-43],[17,-15],[18,-29],[10,-33],[8,-34],[14,-48],[9,-51],[12,-50],[12,-29],[23,-25],[12,-4],[12,25],[10,-14],[22,-24],[7,5],[15,-2],[22,-37],[8,-23],[25,-56],[9,-32],[9,-65],[5,-9],[6,-35],[4,-8],[3,12],[13,-2],[6,-18],[13,6],[12,-29],[11,-81],[0,-24],[8,-52],[12,-22],[6,-39],[9,-20],[7,-8],[7,-45],[10,-40],[8,-25],[12,-14],[3,50]],[[25494,57942],[5,-14],[9,15],[-6,17],[-8,-18]],[[25436,57845],[13,1],[10,16],[14,38],[0,42],[2,26],[-10,-5],[-7,22],[-6,-1],[-7,15],[-8,-17],[-9,-1],[-22,14],[-2,37],[8,39],[-8,16],[-14,47],[-12,16],[-11,64],[-7,13],[-3,26],[-6,29],[-10,20],[-6,0],[-4,14],[-4,33],[0,51],[3,5],[-5,22],[-2,-14],[-6,4],[-3,15],[0,35],[-3,27],[-14,32],[-1,41],[-4,44],[0,17],[-5,21],[-7,48],[-5,2],[-2,-21]],[[25273,58678],[-4,-44],[-7,-16],[0,-61],[5,-25],[11,-31],[4,-35],[0,-42],[-2,-25],[3,-16],[2,-36],[-6,-4],[-5,29],[2,9],[-9,21],[-1,34],[7,-44],[6,6],[1,56],[-5,41],[-6,0],[-12,14],[-3,-47],[-15,-17],[-10,5],[-6,-8],[-4,-33],[0,-31],[-3,-8],[5,-24],[1,-27]],[[25222,58319],[-2,-57],[4,-12],[8,-6],[23,-87],[6,-34],[6,-51],[6,-23],[2,-21],[13,-31],[21,-41],[6,-22],[12,-10],[6,-18],[1,-19],[15,-17],[10,-1],[12,-15],[12,-1],[2,-12],[15,-6],[21,5],[0,9],[15,7],[0,-11]],[[25210,56694],[11,-28],[7,-6],[-18,34]],[[25213,56702],[2,4],[22,-32],[2,6],[7,-26],[4,6],[9,-40],[5,-3],[-4,21],[-5,6],[-7,34],[13,-43],[15,-35],[-13,55],[-14,43],[18,-48],[-6,25],[-17,50],[-1,9],[-13,33],[-15,47],[4,11],[2,-19],[11,-31],[2,48],[-4,20],[-14,38],[-9,32],[-13,29],[-12,19],[-14,-1],[-5,6],[-16,50],[-4,-2],[-13,32],[-3,19],[-12,26],[1,32],[6,-8],[9,6],[12,-18],[-3,18],[-28,50],[-13,19],[-15,32],[-1,8],[-12,10],[-8,-14],[-3,-32],[-9,-3],[2,-24],[7,-29],[-4,-11],[13,-25],[1,-26],[-7,28],[-9,15],[0,-31],[13,-47],[18,-43],[26,-53],[23,-50],[11,-13],[3,-18],[17,-20],[14,-33],[4,-32],[29,-60],[1,-17]],[[26435,59522],[3,-11],[8,-57],[9,-10],[4,22],[14,-6],[5,45],[-10,145],[2,78],[5,58]],[[26475,59786],[4,27],[-4,12],[1,80],[5,19],[-3,25],[7,53],[2,38],[20,65],[0,52],[8,27],[6,77],[15,-9],[21,-96],[19,27],[29,-32],[23,27],[38,181],[-22,149],[-23,148],[39,105],[261,700],[85,2197],[26,661],[-81,930],[-3,18]],[[26948,65267],[0,23]],[[26948,65290],[2,30],[-9,46],[-6,81],[0,50],[-3,48],[0,37],[2,26]],[[26934,65608],[2,37],[-5,47],[0,23],[-7,85],[0,43],[-4,49],[-16,68],[-1,16],[-6,9],[-5,-14],[-5,4],[-6,21],[-4,29],[-42,237],[-33,42],[-3,12],[-17,15],[-12,19],[-5,14],[-5,30],[-8,81],[-2,100],[3,78],[-7,133],[11,136]],[[26757,66922],[-1,1],[-57,229],[-28,115],[-10,2]],[[26658,67269],[3,0]],[[26658,67269],[-2,0]],[[26653,67270],[3,-1]],[[25668,66070],[-14,-515],[-14,-549],[-5,-147],[-5,-205],[0,-203],[4,-199],[4,-126],[10,-246],[15,-297],[8,-139],[11,-202],[1,-4],[5,-96],[8,-119],[15,-235],[10,-131],[19,-234],[9,-94],[13,-122],[10,-77],[19,-120],[29,-148],[12,-51],[50,-176],[-69,-169],[-73,-180],[-94,3],[-23,165],[-36,165],[-27,64],[-9,210],[-37,-30],[-6,-1]],[[24721,59401],[-1,-3],[8,-70],[109,-1054],[12,-113]],[[24849,58161],[113,-1069],[16,-159],[3,-23]],[[24981,56910],[41,68],[17,-45],[166,-427],[87,-108],[210,535],[767,1917],[27,434],[58,294],[22,14],[9,-61],[6,-20],[7,3],[6,-17],[9,2],[14,25],[8,-2]],[[25213,56702],[0,0]],[[25436,57845],[0,0]],[[26551,60418],[0,0]],[[26629,60487],[0,0]],[[26567,60187],[0,0]],[[26881,65949],[0,0]],[[26880,65893],[4,-13]],[[26879,65901],[1,-8]],[[26876,65900],[0,0]],[[26876,65901],[0,-1]],[[26880,65893],[-1,8]],[[26884,65880],[-4,13]],[[24957,56934],[15,-1],[-16,18],[-3,13],[-7,3],[-2,-27],[-9,28],[2,40],[-4,-17],[-7,4],[-3,19],[3,15],[-12,28],[-6,27],[-14,38],[-16,30],[-5,0],[-6,16],[-10,7],[0,17],[-11,30],[-15,27],[-7,2],[-8,13],[-1,10],[-11,15],[-13,5],[-6,25],[-12,2],[-7,9],[-25,45],[-13,9],[-14,18],[0,10],[-9,8],[-18,29],[-5,25],[-10,18],[-21,54],[-6,7],[-12,28],[-12,34],[-4,20],[-15,50],[-7,15],[-15,59],[-22,82],[-19,67],[-8,41],[-7,18],[-15,78],[-2,32],[-4,7],[-17,86],[-5,32],[-8,23],[-13,63],[0,11],[-7,22],[-2,17],[-9,25],[-13,71],[-12,23],[-4,25],[-15,25],[-5,46],[-3,-1],[-11,43],[1,20],[-6,0],[0,20],[-5,-1],[-1,14],[-5,0],[-11,45],[-9,46],[-2,19],[-4,4],[-6,28],[-9,3],[-3,19],[-7,9],[-10,43],[-16,45],[-4,21],[-8,18],[-12,48],[-8,25],[1,28],[5,36]],[[24260,59085],[7,43],[8,32]],[[24275,59160],[-10,-35],[-5,-40]],[[24260,59085],[-4,-12],[-2,-36],[-4,17],[4,27],[-2,4]],[[24252,59085],[-1,0]],[[24251,59085],[-4,-22],[-6,23],[-8,52]],[[24233,59138],[-1,0]],[[24232,59138],[-3,-5],[-5,25]],[[24224,59158],[0,3]],[[24224,59161],[-2,31],[3,23],[-2,10]],[[24223,59225],[0,16]],[[24223,59241],[0,-1]],[[24223,59240],[0,13],[-19,4],[-6,-28],[1,38],[0,169],[-1,9],[0,787],[-11,16],[-3,33],[-2,49],[-6,3],[-11,-23],[-9,20],[-3,42],[-4,28],[-14,-17],[-8,24],[-1,31],[-14,17],[-3,11],[-7,0],[0,17],[-5,0],[-6,31],[-8,17],[-9,56],[0,27],[-7,21],[1,54],[-5,19],[-1,37],[-8,42],[-16,38],[-3,95],[-2,15],[0,120],[4,25],[13,11],[15,-12],[13,45],[-1,44],[8,39],[5,45],[7,12],[2,35],[0,62],[-8,29],[0,14],[-7,24],[1,41],[-10,53],[-7,19],[2,51],[-2,10],[2,67],[-3,10],[-1,36],[4,17],[-1,43],[3,30],[1,35],[-12,43],[-5,25],[1,27],[10,39],[-2,37],[0,56],[5,27],[1,31],[-3,50],[-4,8],[3,52],[-2,14],[1,37],[-4,45],[0,25],[-7,47],[0,31],[4,17],[16,37],[11,43],[8,43],[11,29],[2,12],[-1,39],[6,5],[4,20],[4,-8],[7,39],[-1,19],[8,-9],[8,15],[10,6],[9,-5],[10,13],[13,2],[7,19],[5,51],[-1,20],[6,39],[9,27],[9,36],[15,19],[11,8],[5,16],[13,14],[6,25],[17,33],[7,23],[2,19],[6,15],[3,41],[-3,34],[8,19],[2,32],[-1,45],[4,26],[0,19],[13,35],[4,26],[12,27],[5,19],[10,9],[3,17],[0,25],[8,11],[9,55],[12,29],[6,30],[23,16],[4,13],[5,-1],[8,13],[9,61],[5,12],[7,33],[1,28],[4,12],[2,23],[5,12],[2,30],[10,51],[4,77],[4,20],[1,22],[-3,32],[0,32],[-3,21],[0,37],[-2,25],[1,38],[2,4],[-1,55],[2,19],[8,32],[0,30],[-4,26],[4,44],[4,12],[0,22]],[[23039,64465],[0,-1693],[1,-48],[0,-405],[-1,-192],[0,-605],[-7,-58],[0,-20],[-6,-31],[-19,-33],[-14,-36],[-18,-5],[-7,-34],[-8,-52],[-2,-41],[-5,-46],[-9,-67],[-15,-70],[-1,-28],[2,-45],[10,-39],[6,-10],[13,-51],[5,-8],[11,-42],[6,-14],[7,-34],[-1,-19],[9,-44],[9,-55],[1,-78],[1,-3],[1,-94]],[[23008,60465],[1,-21],[-3,-28],[-1,-121],[5,-39],[0,-78],[-2,-5],[-1,-41],[-3,-20],[1,-51],[-4,-6],[2,-43],[-4,-26],[1,-51],[-2,-28],[2,-32],[-2,-25],[0,-52],[-5,-16],[-3,-23],[-5,5],[-6,-66],[-7,-53],[-2,7],[-1,-33],[-3,4],[-2,-25],[3,-30],[-4,-8],[-2,-36],[-1,-86],[-4,-2],[3,-32],[-2,-34],[-7,-21],[1,-33],[-5,-6],[-1,-51],[-2,-7],[0,-43],[3,3],[1,-41],[-2,-3],[3,-33],[0,-38],[-5,-57],[3,-10],[-3,-14],[1,-26],[-2,-22],[7,-33],[-2,-36],[3,-41],[0,-38],[4,-16],[-1,-31],[-8,11],[-2,-29],[1,-37],[-8,-6],[0,-55],[-3,-9],[6,-56],[-3,6],[2,-27],[-2,-20],[2,-42],[-1,-47],[-3,-22],[0,-36],[2,-10],[0,-39],[-4,-12],[3,-13],[-4,-6],[3,-22],[-2,-75],[1,-22],[-3,-49],[4,-19],[-5,-19],[4,-5],[-3,-22],[4,-15],[-5,-11],[3,-16],[-4,-2],[-1,-30],[5,-12],[-1,-27],[-6,-34],[3,-25],[-3,-47],[1,-26],[-3,-7],[5,-17],[-4,-5],[5,-12],[-1,-28],[-5,-26],[5,-16],[-3,-6],[4,-22],[-4,-10],[4,-55],[-2,-31],[-7,-19],[-2,-29],[1,-64],[-3,2],[-1,-31],[-6,-32],[-1,-36],[-3,-12],[2,-31],[-2,-21],[-9,-29],[3,-11],[-3,-17],[-7,-17],[4,0],[-2,-48],[-3,-2],[-2,-56],[-6,-8],[2,-79],[-5,-17],[0,-16],[-6,-14],[1,-22],[-2,-26],[2,-31],[-3,-8],[-2,-33],[1,-24],[-2,-40],[-8,-32],[1,-29],[-3,-31],[-4,-2],[1,-18],[-3,-33],[-4,-9],[6,-38],[-5,5],[-2,-40],[2,-37],[4,-10],[-4,-37],[2,-18],[-3,-9],[6,-12],[1,-16],[-7,-13],[6,-2],[1,-34],[-5,-2],[4,-13],[0,-23],[-3,-11],[5,-15],[-7,2],[4,-12],[-2,-36],[-6,-20],[6,-15],[-8,-38],[9,-19],[-2,-29],[5,4],[-7,-23],[6,-1],[0,-16],[-7,-1],[6,-20],[-5,-36],[-5,-8],[7,-10],[-3,-49],[6,-17],[-7,4],[3,-29],[-5,-9],[-2,-19],[8,2],[0,-9],[-10,-7],[8,-22],[-4,-17],[5,0],[0,-28],[7,-40],[-4,-14],[7,-11],[-2,-19],[4,-30],[-1,-34],[4,-3],[-6,-13],[-3,-24],[3,-3],[-8,-38],[3,-12],[-4,-7],[1,-22],[-4,-2],[2,-26],[-4,-14],[4,-11],[-10,-35],[7,-11],[-1,-10],[-8,-3],[3,-11],[-2,-24],[3,-3],[1,-26],[-5,-23],[3,-25],[-6,-6],[3,-27],[-6,-16],[-2,-26],[1,-24],[-6,-26],[2,-29],[-3,-5],[0,-32],[4,-15],[-1,-13]],[[22823,55170],[89,0],[6,1],[288,0],[10,1],[95,0],[7,1],[83,0],[0,-689],[7,25],[20,30],[12,-5],[7,-22],[9,-2],[29,82],[10,5],[-2,49],[7,143],[0,29],[7,132],[7,45],[15,321],[3,52],[0,30],[-3,33],[3,24],[-6,28],[3,27],[0,41],[2,19],[6,16],[7,44],[6,7],[9,35],[9,2],[6,27],[26,11],[6,-27],[10,-3],[11,15],[10,-12],[13,24],[3,23],[-1,39],[2,14],[25,14],[18,4],[7,-5],[10,10],[7,-5],[15,17],[30,6],[3,9],[4,50],[4,31],[-2,97],[6,15],[22,-5],[5,6],[13,-4],[4,-24],[6,16],[6,-14],[4,6],[16,-14],[6,-14],[8,-7],[3,-36],[-3,-34],[1,-11],[7,-2],[9,-29],[2,10],[8,-3],[5,-12],[1,-24],[26,-29],[13,1],[8,34],[26,-8],[28,7],[10,-12],[0,39],[6,3],[5,18],[5,3],[19,41],[27,57],[20,-12],[6,6],[3,44],[-1,28],[-20,12],[-4,56],[7,34],[9,13],[22,-7],[11,-13],[8,0],[9,51],[6,8],[0,23],[-6,51],[1,25],[11,93],[5,17],[10,111],[3,17],[5,-15],[12,-19],[11,-11],[-6,-29],[-3,-35],[2,-38],[-4,-18],[3,-13],[2,-33],[8,-22],[15,17],[1,-11],[7,0],[0,-11],[9,-14],[1,17],[17,4],[7,-10],[3,44],[4,16],[9,10],[-4,39],[2,56],[5,9],[3,26],[2,-13],[5,3],[-2,32],[5,5],[7,-15],[7,1],[2,19],[5,14],[1,22],[13,-9],[10,20],[11,2],[0,-9],[8,11],[-3,51],[5,-3],[-1,34],[3,14],[-1,29],[-3,20],[8,-11],[-1,16],[5,8],[4,-9],[4,28],[23,-19],[-3,25],[-2,78],[2,9],[7,-17],[15,-26],[11,-1],[3,34],[13,-13],[6,-22],[9,-7],[14,-1],[11,-17],[3,-18],[7,-15],[6,-34],[2,0],[13,-47],[0,-10],[26,-61],[5,0],[14,-52],[17,-20],[8,-27],[3,15],[8,-12],[3,18],[0,96],[9,4],[2,30],[6,-2],[-1,23],[-5,20],[6,24],[4,45],[16,2],[5,-8],[12,-5],[4,-15],[10,-10],[3,-10],[7,11],[-4,18],[4,19],[21,-9],[4,-12],[8,16],[10,-11],[7,23],[10,-6],[8,-17],[6,11],[16,-15],[12,-1],[13,-8],[8,15],[6,-1],[10,14],[10,21],[8,61],[-1,32],[11,33],[6,-5],[3,27],[8,21],[6,3],[12,-25],[3,-26],[6,1],[12,-15],[10,9],[5,19],[7,-6],[11,10],[8,-19],[0,14],[8,19],[3,-4]],[[24223,59225],[0,16]],[[24224,59161],[-1,14],[7,10],[0,15],[-7,25]],[[24232,59138],[-8,20]],[[24251,59085],[-10,22],[-2,31],[-6,0]],[[24275,59160],[-5,-5],[-14,-65],[-4,-5]],[[24849,58161],[-12,-2],[-107,-11],[-78,-7],[-99,281],[-41,115],[-86,237],[-23,60],[-38,96],[-90,230]],[[24260,59085],[-5,-36],[0,-35],[7,-18],[12,-48],[8,-18],[4,-21],[16,-45],[11,-45],[6,-7],[3,-19],[9,-3],[6,-28],[4,-4],[2,-19],[11,-55],[9,-36],[5,0],[1,-14],[5,1],[0,-20],[6,0],[-1,-20],[10,-41],[4,-1],[5,-46],[7,-8],[9,-20],[3,-22],[9,-13],[16,-81],[9,-25],[2,-17],[7,-22],[0,-11],[13,-63],[8,-23],[4,-29],[4,4],[0,-20],[16,-79],[4,-33],[15,-78],[9,-25],[6,-34],[30,-111],[11,-38],[15,-59],[7,-15],[15,-50],[4,-20],[21,-56],[11,-17],[7,-22],[25,-56],[2,-15],[18,-29],[9,-8],[0,-10],[14,-18],[16,-13],[22,-41],[7,-9],[12,-2],[6,-25],[13,-5],[11,-15],[1,-10],[9,-14],[6,-1],[15,-27],[11,-30],[0,-17],[8,-12],[3,6],[5,-17],[21,-30],[14,-38],[6,-27],[12,-28],[-3,-15],[3,-19],[9,-10],[2,-29],[7,-16],[2,27],[6,-1],[4,-15],[16,-18],[-15,0]],[[24957,56933],[22,-26],[2,3]],[[24999,75149],[-1,14],[-11,44],[-8,-8],[-1,-21],[3,-27]],[[24965,75150],[6,31],[0,24],[-7,32],[0,21],[10,71],[-1,22],[-5,29],[-4,4],[-16,-9],[-5,20],[2,27],[6,20],[14,28],[2,33],[-21,11],[-7,-12],[-9,8],[-8,-4],[-3,21],[7,31],[18,57],[6,29],[0,42],[-9,30],[-11,17],[-4,16],[-2,80],[-5,39]],[[23550,75148],[0,-727]],[[23358,69944],[-1,-17],[-12,-32],[-10,3],[-6,-12],[-2,-42],[3,-12],[0,-35],[5,-25],[-3,-24],[-5,-3],[-4,-19],[0,-20],[-6,-16],[-7,-30],[-1,-18],[4,-30],[0,-26],[-6,-23],[-8,1],[-10,-25],[1,-40],[-10,-16],[-3,-14],[-7,-3],[-6,11],[-3,-6],[2,-25],[6,-8],[1,-31],[-5,-23],[0,-31],[-5,-34],[1,-50],[-3,-20],[-8,-26],[-1,-52],[11,-19],[2,-39],[-5,-30],[-6,7],[-1,45],[-17,5],[-3,-9],[1,-40],[-3,-32],[3,-11]],[[25257,83945],[13,12],[4,-10],[8,3],[-14,13],[-11,-18]],[[25131,83944],[-11,0],[14,-8],[-3,8]],[[25096,83923],[-5,16],[-7,2],[2,-11],[-13,-12],[16,-2],[4,6],[5,-26],[-2,27]],[[25195,83889],[16,24],[22,15],[-2,5],[-27,-18],[-10,-14],[-9,6],[-4,-5],[14,-13]],[[25236,83769],[0,17],[-5,-13],[5,-4]],[[25152,83711],[11,16],[2,18],[-13,-34]],[[25229,83689],[7,11],[0,62],[-3,0],[-3,-38],[-5,-12],[4,-23]],[[25284,83706],[-4,0],[5,50],[-5,8],[-2,-12],[-7,-4],[-4,-14],[-5,10],[3,19],[1,-24],[3,2],[1,31],[-9,27],[-7,-1],[-3,-22],[-6,-11],[-8,-2],[1,-47],[5,-12],[-6,0],[-1,-15],[-6,-2],[-7,-16],[2,28],[-1,25],[-8,19],[-7,-3],[-11,26],[-13,-9],[-7,-26],[-9,-19],[8,-1],[-9,-15],[-8,-22],[-2,-30],[-8,13],[-16,-11],[-6,13],[-10,-9],[-4,6],[4,20],[2,-7],[16,1],[4,-10],[15,22],[0,20],[-22,-4],[-18,8],[-23,26],[-27,49],[-11,12],[-14,23],[-5,3],[-1,-37],[11,-18],[-6,-2],[-3,-16],[3,-7],[-9,-4],[-1,-13],[-11,6],[-7,30],[4,5],[-4,16],[10,-13],[5,36],[-2,18],[-10,24],[-5,23],[-9,16],[-3,15],[2,20],[-8,32],[1,26],[-10,-9],[-5,17],[-7,4]],[[24751,77311],[51,1],[141,0],[74,2],[71,-2],[87,0],[14,-1],[149,0]],[[20923,55171],[0,1083],[1,10],[0,772],[1,3],[0,321],[-1,8],[0,3080]],[[20924,60448],[0,144],[1,127],[0,1306],[-5,1]],[[20920,62026],[-53,-2],[-76,0],[-9,-1],[-89,-1],[0,-2],[-273,0],[-17,0],[-4,12],[-94,0],[-53,-2],[-51,0],[-42,-2],[-81,-1],[-14,-7],[-42,-1],[-77,1],[-88,0],[-52,-1],[-55,1],[-185,0],[-45,2],[-5,-10],[-95,2],[-36,3],[-50,2],[-33,-3],[-67,-1],[-23,12],[-26,0],[-21,-7],[-11,12],[-24,2],[-61,0],[-22,-18],[-25,2],[-50,1],[0,189],[-1,20],[0,101],[1,21],[0,369],[1,8],[0,116],[1,43]],[[17580,55169],[99,0],[63,1],[57,2],[57,0],[121,-3],[84,0],[70,4],[49,0],[35,2],[67,0],[27,-1],[179,0],[8,-1],[205,0],[117,4],[44,-1],[74,0],[121,-3],[101,0],[8,-1],[115,0],[7,-1],[103,0],[9,-1],[128,2],[273,0],[9,-1],[91,0],[8,1],[76,0],[7,-1],[236,0],[7,1],[178,0],[75,-1],[7,1],[187,0],[11,1],[68,0],[9,-1],[85,0],[68,-1]],[[28027,78918],[-2,-8]],[[28025,78910],[0,-2]],[[28025,78908],[19,-27],[28,-26]],[[28072,78855],[-1,10],[-34,47],[-8,17],[-2,-11]],[[28192,78844],[-1,14],[-6,4],[3,-21],[4,0]],[[28192,78841],[0,3]],[[28192,78841],[2,-9],[0,35],[-2,24],[-1,52],[-13,-25],[0,-14],[5,-33],[6,-8],[3,10],[0,-29]],[[28192,78764],[0,16],[-6,13],[3,-31],[3,2]],[[28211,78668],[-6,86],[-6,54],[-2,-13],[3,-14],[-4,-4],[6,-17],[1,-111],[9,-5],[0,-24],[3,6],[-4,42]],[[28219,78522],[5,-39],[9,-16],[-5,21],[-12,118],[-2,-9],[5,-75]],[[28392,77882],[2,2],[-13,44],[-16,43],[-2,-29],[7,11],[11,-29],[11,-42]],[[28408,77845],[1,5],[-13,28],[3,-15],[9,-18]],[[28412,77842],[5,-20],[7,-12],[1,10],[-13,22]],[[28571,77771],[4,1],[7,25],[5,4],[5,18],[-2,13],[-9,-34],[-11,-21],[-16,-21],[-1,-13],[18,28]],[[28569,77742],[-6,-2],[8,-10],[-2,12]],[[28592,77727],[-6,3],[-1,-14],[7,11]],[[28576,77711],[4,16],[11,17],[0,9],[-16,-22],[1,-20]],[[28535,77726],[8,-10],[6,24],[-15,-5],[-23,4],[-19,11],[-30,24],[-20,22],[-9,18],[-4,-12],[12,-21],[12,-12],[8,1],[41,-31],[5,-12],[16,2],[3,-21],[9,18]],[[28550,77701],[-2,21],[-3,-16],[5,-5]],[[28597,77679],[-1,-4]],[[28596,77675],[0,-1]],[[28596,77674],[1,5]],[[28546,77684],[-5,-1],[7,-20],[-2,21]],[[28641,77556],[-12,57],[-7,44],[-11,58],[-13,82],[-8,62],[-2,35],[-5,-40],[7,0],[11,-86],[2,-33],[6,-12],[-1,-17],[7,-18],[0,-23],[4,1],[-4,-20],[5,8],[16,-85],[5,-13]],[[28658,77472],[1,7],[-9,35],[-2,-5],[10,-37]],[[28657,77299],[4,2],[1,22],[-5,-24]],[[28706,77292],[-20,75],[-18,80],[-7,26],[1,-15],[16,-62],[6,-36],[10,-37],[4,-29],[8,-37],[5,-13],[3,-24],[6,-20],[8,17],[-16,50],[-6,25]],[[28762,77122],[-19,56],[-5,23],[3,-32],[0,-33],[8,4],[19,-44],[29,-56],[5,0],[-20,38],[-20,44]],[[28664,76857],[-5,1],[0,-26],[5,25]],[[28642,76812],[-9,12],[-1,-8],[10,-4]],[[28882,76344],[-8,-50],[0,-44],[-6,-55],[2,0],[6,41],[7,99],[1,47],[4,76],[-1,68],[-4,68],[-2,79],[0,63],[-3,36],[-1,41],[-3,42],[-2,80],[-3,50],[-9,-15],[-10,1],[-13,14],[-28,52],[-4,-3],[16,-31],[6,-31],[2,19],[10,-12],[2,-16],[9,-29],[22,-24],[0,-73],[1,-42],[5,-36],[1,-75],[2,-25],[0,-110],[3,-4],[1,-48],[0,-80],[-6,-66],[3,-7]],[[28822,75962],[10,26],[-2,27],[6,-11],[7,53],[2,29],[-8,-32],[7,44],[-2,36],[-9,-7],[-2,-41],[1,-23],[-3,-23],[-7,-26],[-1,-20],[-7,-18],[0,-14],[8,0]],[[28775,75907],[-1,23],[-8,9],[-7,23],[-7,-31],[12,-24],[2,9],[9,-9]],[[28825,75858],[-3,21],[-9,-13],[3,-29],[4,21],[4,-19],[1,19]],[[28781,75400],[6,13],[-1,33],[-5,-17],[0,-29]],[[28773,75234],[-3,5],[0,-25],[3,20]],[[28770,75110],[-6,8],[1,-21],[5,13]],[[28775,75074],[5,131],[5,77],[2,59],[9,141],[8,85],[4,59],[6,64],[12,103],[7,49],[4,44],[5,37],[9,91],[6,48],[5,68],[6,53],[-6,-18],[0,-16],[-6,-19],[1,-16],[-7,-35],[-4,-51],[3,-24],[-13,-86],[-6,-6],[-5,-65],[1,-10],[-3,-46],[-2,-6],[-10,25],[-1,-14],[-1,-123],[-4,-42],[0,-23],[-5,-71],[-6,-6],[-3,-21],[2,-38],[-1,-18],[-5,-8],[0,-77],[-2,-35],[-4,-10],[2,-31],[-2,-34],[-8,-25]],[[28773,75234],[-1,-15],[4,-11],[-5,-5],[-3,-26],[3,-1],[1,-60],[-2,-6]],[[28770,75110],[-3,-17],[1,-19]],[[28768,75074],[7,0]],[[28734,75074],[9,0]],[[28743,75074],[5,16],[0,-16]],[[28748,75074],[12,0]],[[28760,75074],[2,6],[0,76],[-2,15],[-12,-17],[-7,2],[5,-44],[-8,-7],[-4,-31]],[[28752,75484],[1,-25],[-6,-11],[0,-42],[-2,10],[-7,0],[-1,13],[7,-1],[2,30],[5,-2],[0,18],[-4,-1],[-1,20],[6,43],[0,27],[-5,14],[12,58],[-19,-20],[-9,-20],[-1,-18],[-5,-17],[-1,-21],[-8,-11],[-7,-31],[-1,-18],[-8,-29],[-9,-1],[-2,-15],[-6,9],[-1,-29],[5,1],[-3,-20],[-7,0],[1,-22],[-4,-6],[5,34],[5,-2],[2,15],[-5,0],[-4,19],[4,23],[3,0],[5,33],[5,0],[6,21],[4,40],[-6,-1],[4,17],[6,1],[7,16],[2,38],[4,35],[-3,12],[-8,9],[-4,-15],[-5,6],[-2,-23],[-1,23],[5,14],[-12,10],[-6,-2],[-7,-27],[-10,-59],[-11,-35],[3,42],[9,31],[2,28],[6,32],[7,16],[-7,14],[-6,-5],[-19,-35],[-4,-17],[-6,-7],[-9,2],[-5,-42],[-17,-35],[-5,0],[11,46],[9,26],[8,36],[7,-4],[2,18],[10,12],[0,9],[-20,12],[-8,9],[-5,-31],[1,33],[-10,-6],[-2,-15],[-5,2],[6,19],[13,16],[-13,47],[-1,15],[-15,23],[-17,-3],[-5,-21],[-3,-45],[-9,26],[-5,2],[-6,-13],[-4,-28],[1,-66],[-5,-1],[-1,-33],[-4,-25],[1,-71],[4,-42],[9,-54],[-2,-49],[-6,-7],[-9,-29],[-7,-44],[-6,-14],[-11,0],[-3,-14],[-16,-24],[-3,1],[-11,-21],[9,25],[10,10],[6,14],[15,21],[4,-5],[6,18],[5,36],[6,28],[5,12],[1,34],[-3,24],[-7,27],[-5,39],[-1,91],[8,73],[-1,42],[4,31],[3,5],[0,49],[6,5],[0,22],[-12,50],[1,28],[4,-13],[12,17],[15,-5],[7,-8],[9,2],[13,-14],[5,-15],[25,-32],[5,16],[2,21],[-2,14],[2,24],[7,-16],[10,9],[0,14],[10,-5],[-10,-28],[12,-35],[28,-31],[31,6],[10,29],[3,20],[-5,19],[-9,-21],[-3,40],[-9,-28],[0,17],[10,33],[1,11],[7,-34],[8,10],[-8,44],[-1,34],[-4,11],[-12,-13],[5,18],[6,8],[0,46],[3,17],[0,55],[-4,7],[2,-22],[-6,18],[-7,-46],[-5,11],[0,24],[7,6],[5,20],[5,-10],[3,11],[1,30],[-3,26],[0,26],[3,-5],[2,24],[-4,15],[-11,-1],[-6,-7],[5,28],[9,0],[2,-10],[7,34],[4,-11],[4,-31],[5,-106],[1,-62],[-3,-30],[5,-31],[-3,-44],[2,-3],[0,-41],[3,-3],[9,-41],[8,19],[2,34],[2,-33],[-5,-22],[6,-12],[8,19],[4,-6],[10,8],[-10,-31],[-5,3],[4,-28],[-2,-23],[7,10],[8,23],[-3,10],[9,18],[0,22],[4,10],[1,29],[4,9],[0,52],[4,17],[2,45],[-1,34],[-3,13],[3,15],[-1,27],[3,9],[0,35],[3,30],[-7,17],[-1,-27],[-6,-8],[-4,31],[4,10],[-1,18],[3,19],[4,1],[3,37],[-5,27],[-9,14],[2,21],[-5,11],[-9,6],[4,-27],[-5,-6],[-8,10],[0,-18],[-4,-40],[-3,-11],[-2,46],[-2,2],[5,32],[-11,20],[2,26],[-9,15],[-5,28],[-5,-11],[-2,15],[6,13],[1,16],[-7,10],[-4,20],[2,10],[-7,38],[2,3],[-2,37],[-2,2],[-3,-32],[-6,-7],[2,20],[-7,26],[-2,19],[6,9],[-2,20],[-7,6],[-5,18],[-8,-3],[1,21],[-7,19],[2,-17],[-6,-10],[-12,10],[-2,-29],[-7,-12],[1,-30],[-3,18],[2,42],[-4,11],[-10,-17],[3,-17],[-3,-13],[-5,2],[1,-21],[-9,-41],[-3,17],[4,8],[-4,24],[5,37],[-12,-9],[-2,14],[-7,-24],[2,-10],[14,17],[0,-14],[-10,-41],[4,-4],[-1,-26],[-10,-40],[0,47],[-8,31],[1,-19],[-3,-31],[-1,38],[-7,3],[5,43],[-7,-10],[-13,-44],[5,-31],[-9,-9],[-3,-20],[4,-5],[4,-25],[10,18],[-8,-27],[-6,22],[-3,-14],[0,-25],[-7,-26],[14,0],[7,9],[11,-12],[1,-39],[4,-15],[-9,-38],[0,21],[4,5],[-4,30],[-6,-1],[-8,12],[-8,-13],[-12,-3],[-2,10],[-13,-40],[1,20],[10,29],[-13,24],[-2,17],[-5,-6],[1,15],[14,-24],[12,39],[-3,34],[1,19],[5,27],[-5,1],[6,20],[2,32],[-5,-1],[-16,-22],[-3,-18],[3,-20],[-8,21],[-8,-19],[-9,3],[-5,12],[-3,-18],[-4,0],[-9,-22],[1,-27],[7,-12],[-8,4],[-3,31],[-14,-14],[-8,0],[-7,-24],[-6,-4],[1,-12],[-8,4],[-18,-76],[-12,-17],[12,36],[6,36],[-10,-21],[6,30],[14,32],[3,17],[2,39],[12,-24],[5,21],[7,12],[10,2],[7,39],[-4,32],[6,-12],[0,-21],[21,33],[5,0],[6,21],[-11,7],[-11,47],[3,9],[2,-19],[10,-25],[7,-1],[-3,16],[9,-18],[7,14],[8,-3],[-1,51],[2,32],[4,-15],[-3,-7],[2,-41],[3,-6],[13,6],[5,28],[0,23],[4,-24],[-3,-15],[8,4],[1,54],[8,-3],[-6,25],[2,20],[-6,11],[-4,-11],[-1,14],[7,12],[-6,8],[-5,-12],[-15,-12],[5,10],[2,23],[7,1],[4,27],[-6,13],[-5,-8],[-8,-30],[2,20],[-5,6],[0,20],[-7,14],[-9,-18],[-5,39],[-12,13],[1,16],[8,4],[2,-17],[8,-25],[6,8],[7,-2],[4,11],[-4,31],[11,-29],[-5,-4],[2,-25],[10,34],[0,12],[-7,60],[-6,5],[-4,-16],[-1,28],[4,-7],[-3,34],[-9,13],[-2,14],[-14,36],[-3,-7],[-7,7],[8,3],[-3,25],[-11,15],[-1,-10],[-4,31],[-9,20],[-9,-21],[-4,-22],[-8,-13],[-9,-35],[-7,-9],[4,-26],[-6,13],[2,-56],[-5,38],[-5,-1],[-8,-28],[-5,-55],[-4,-29],[-7,-20],[-5,9],[7,13],[4,45],[-9,40],[-4,3],[-12,-9],[10,14],[9,-6],[4,-34],[8,31],[0,12],[8,42],[0,24],[3,30],[8,23],[3,17],[11,19],[-1,12],[9,4],[5,16],[10,-5],[15,35],[-4,20],[3,3],[3,-33],[6,-2],[6,-41],[6,-6],[8,28],[-2,40],[9,16],[-7,-21],[5,-24],[-9,-38],[-1,-17],[5,-19],[8,-11],[11,15],[-1,24],[2,20],[4,1],[6,23],[0,17],[4,6],[-3,-35],[-5,-19],[-4,-36],[5,-30],[12,-7],[4,16],[-2,12],[6,-1],[-2,36],[6,-38],[-6,-33],[6,-12],[-5,-5],[4,-32],[6,28],[-3,-26],[4,-6],[-6,-16],[1,-26],[10,24],[-1,83],[4,0],[-2,53],[-10,1],[4,14],[-3,15],[7,34],[-2,-28],[3,-13],[6,0],[4,-16],[0,28],[6,0],[-2,-28],[4,7],[-3,-35],[6,5],[12,23],[-1,-27],[-5,-26],[-4,-37],[10,22],[-2,-23],[8,18],[-4,2],[1,26],[4,30],[4,11],[-2,34],[-4,-2],[1,19],[-11,-13],[-7,10],[1,11],[6,-5],[-3,24],[9,0],[-6,35],[-9,11],[-5,26],[-3,-6],[2,-25],[-4,-16],[-3,34],[1,32],[-2,20],[-3,-8],[-13,97],[-3,-2],[-1,-25],[5,-10],[-3,-13],[-7,20],[2,29],[-6,11],[4,26]],[[28596,77674],[1,5]],[[28597,77679],[0,1]],[[28597,77681],[0,-1]],[[28597,77681],[0,9]],[[28597,77690],[-2,12],[-18,-1],[0,-32],[-4,-2],[2,-20],[5,-5],[0,-20],[-7,9],[-5,-51],[-4,9],[2,16],[0,48],[-3,46],[3,20],[-7,14],[-5,-11],[-3,-40],[4,-20],[-10,-35],[-13,-8],[-8,32],[6,9],[7,-13],[4,19],[-1,17],[-5,13],[7,-1],[2,13],[-11,-7],[-29,-10],[-17,3],[-30,47],[-8,16],[-3,-5],[-13,18],[-4,-5],[5,-14],[0,-34],[-7,-30],[0,-29],[-5,-23],[-5,0],[6,42],[-2,14],[5,10],[0,49],[-6,9],[1,14],[-8,-12],[3,27],[-15,42],[-3,18],[-18,75],[-8,19],[-8,-2],[0,-29],[-3,7],[-14,-39],[7,-5],[11,-57],[-11,-86],[-5,-13],[-2,-29],[-3,18],[-7,-35],[3,28],[-1,55],[6,-17],[0,19],[11,53],[-1,27],[-7,20],[-8,-12],[-6,12],[3,30],[6,33],[6,-12],[9,32],[-3,49],[-9,14],[-5,-4],[-1,21],[15,-28],[6,-52],[3,22],[-1,19],[-13,26],[-27,66],[-22,68],[-12,43],[-13,54],[7,-43],[-17,79],[-8,45],[-5,15],[-7,40],[-6,44],[-5,25],[-7,10],[-9,57],[0,12]],[[28219,78522],[-2,15],[-6,84],[0,16],[-8,11],[-2,-23],[0,-86],[-5,-16],[0,-30],[-3,-38],[-4,29],[6,76],[0,34],[2,47],[-2,11],[1,29],[-3,16],[-1,48],[-3,15],[-9,68],[-6,12],[-4,23],[6,15],[-25,-28],[-15,-8],[-20,4],[9,-12],[-7,-8],[-10,16],[-34,15],[6,-10],[0,-50],[-2,-4],[-2,49],[-6,-5],[2,18]],[[28072,78855],[-42,37],[-5,16]],[[28025,78908],[-4,-13]],[[28021,78895],[-1,-5]],[[28020,78890],[-7,-33],[-22,-90],[-14,-64],[-41,-171],[-29,-128],[-18,-73],[-42,-183],[-15,-61],[-28,-129],[-28,-114],[-62,-261],[-67,-2],[-82,-9],[-89,-7],[-75,-4],[0,-22],[4,-121],[0,-22],[-19,-112],[-10,-54],[-13,-79],[-31,90],[-5,-43],[4,-35],[4,-10],[-4,-57],[4,-4],[-46,-13],[-88,-18],[-93,-18],[-61,-9],[-60,-14],[-11,21],[-6,-12],[-5,3],[-3,16],[-3,-16],[0,-29],[-11,22],[-3,40],[-6,7],[-1,-21],[-8,5],[-2,18],[-8,7],[-6,-10],[-2,16],[-13,21],[-4,-2],[-4,19],[-4,-8],[-4,18],[-9,-9],[1,25],[-4,18],[-8,2],[-7,36],[-8,5],[-1,-29],[-40,54],[-25,32],[-25,35]],[[26419,77321],[2,-93],[6,-187],[1,-57],[19,-63],[5,27],[6,14],[21,-16],[2,6],[5,-20],[8,-12],[8,-42],[-3,-19],[1,-34],[-2,-15],[8,-35],[0,-30],[-4,-28],[7,-17],[0,-15],[7,-20],[4,-21],[7,-15],[5,-1],[9,-62],[10,-4],[7,-9],[14,-51],[14,-1],[9,-8],[17,0],[8,-15],[4,21],[28,-7],[4,-32],[7,-30],[7,1],[8,-20],[10,-35],[4,-22],[7,11],[6,-3],[1,-20],[10,-31],[0,-28],[4,-18],[12,2],[4,-7],[5,-43],[16,-16],[8,-27],[8,0],[18,20],[7,-20],[0,-18],[8,-51],[4,-2],[-1,-42],[6,-6],[1,-13],[-6,-69],[5,4],[0,-25],[8,-12],[6,4],[8,39],[5,-7],[1,-26],[4,-11],[0,-34],[2,-32],[18,-37],[12,-42],[9,-18],[6,15],[0,13],[7,15],[-5,30],[1,33],[-1,37],[9,3],[6,13],[2,-13],[12,-23],[13,-39],[5,-45],[9,-64],[15,-47],[5,1],[13,-29],[6,12],[7,-7],[8,-40],[11,24],[8,-10],[5,65],[14,-2],[5,-10],[1,-18],[8,4],[3,-32],[28,-205],[2,-21],[7,-13],[8,-39],[17,-33],[1,15],[7,13],[8,-3],[8,10],[1,-11],[-5,-13],[-5,-89],[6,-13],[1,-52],[5,-7],[0,-72],[-3,-18],[5,-38],[0,-25],[4,-2],[0,-27]],[[27156,75019],[27,4],[17,8],[40,8],[23,-1],[35,6],[44,11],[29,2],[15,4],[43,-4],[9,4],[57,11],[46,12],[48,2],[109,0],[41,2],[43,-1],[97,0],[3,-1],[114,0],[14,2],[87,-5],[115,0],[1,-1],[177,0],[92,2],[0,-12],[24,2],[222,0]],[[28728,75074],[2,49],[-7,3],[3,14],[-8,-15],[-4,24],[11,-7],[9,82],[6,14],[5,0],[3,27],[-5,-19],[-5,4],[1,31],[5,13],[5,38],[4,16],[-2,-49],[5,12],[1,-33],[-4,-1],[3,-23],[3,2],[0,39],[2,12],[-4,39],[5,20],[5,44],[1,34],[3,17],[6,2],[-1,31],[-3,10],[2,28],[7,51],[0,33],[5,18],[0,21],[7,51],[-2,19],[4,34],[-2,8],[-15,-48],[-4,-29],[1,-49],[-4,-38],[-9,-35],[-3,-50],[-8,-17],[0,-10]],[[28752,75491],[0,-7]],[[23008,60465],[-21,-1],[-211,0],[-71,1],[-1,-1],[-130,0],[-2,-1],[-80,0],[-45,-3],[-110,-3],[-96,0],[-65,-2],[-90,0],[-40,-2],[-43,0],[-38,-2],[-193,0],[-28,-1],[-167,0],[-2,-1],[-168,0],[-20,-1],[-463,0]],[[20923,55171],[43,1],[329,0],[7,1],[252,0],[8,-1],[696,0],[3,-1],[252,0],[6,-1],[304,0]],[[20922,68406],[0,-3146]],[[20922,65260],[63,2],[90,4],[140,0],[46,1],[87,0],[24,1],[99,0],[65,3],[173,-1],[47,-1],[294,0],[25,1],[286,0],[37,-1],[71,0],[1,21],[8,61],[6,28],[7,-3],[22,49],[4,22],[16,21],[6,3],[11,38],[10,18],[7,-4],[5,29],[7,20],[12,44],[0,13],[14,17],[9,-12],[7,1],[5,-11],[13,-64],[4,-52],[4,-25],[9,-6],[8,39],[9,14],[10,-35],[5,3],[5,36],[3,4],[7,-24],[7,-10],[3,-14],[7,-7],[1,32],[5,4],[11,-19],[6,0],[5,-13],[4,19],[12,6],[7,-33],[9,5],[7,14],[6,-3],[8,-17],[4,17],[7,7],[9,-1],[5,26],[4,49],[8,2],[8,22],[4,30],[4,4],[19,-3],[9,16],[12,6],[3,13],[0,47],[7,3],[9,-25],[6,5],[5,17],[4,-2],[7,23],[7,9],[0,50],[9,12],[12,-3],[8,21],[1,29],[-5,27],[2,28],[8,42],[5,6],[7,33],[0,35],[6,30],[6,1],[6,-20],[10,3],[6,43],[9,13],[9,-15]],[[30210,65150],[1,26],[-4,-1],[-1,-21],[4,-4]],[[30178,65053],[0,23],[-4,-12],[0,-33],[-3,30],[-4,6],[0,43],[-3,21],[-5,7],[-5,22],[0,18],[15,-5],[5,20],[3,-23],[-8,-18],[2,-33],[0,-37],[12,-1],[9,36],[4,5],[5,24],[0,19],[8,17],[2,16],[-5,25],[-1,20],[-9,51],[-1,30],[-8,46],[1,31],[-3,-2],[-2,32],[-3,-26],[-4,29],[7,6],[-2,31]],[[29724,65702],[-4,-32],[0,-18],[-6,-25],[-5,15],[1,-28],[-9,-41],[-1,-48],[-2,-23],[0,-50],[6,-20],[2,-28],[-1,-51],[-2,-11],[5,-16],[12,-13],[4,-18],[-1,-22],[6,-17],[-5,-20],[0,-37],[-2,-20],[8,-34],[-1,-47],[3,-20],[-3,-30],[-4,-9],[1,-48],[3,-12],[-2,-19],[4,-23],[-1,-75],[5,-16],[4,-34],[3,-53],[-4,-26],[6,-36],[-7,-10],[-1,-25],[4,-21],[2,-52],[1,-61],[3,-29],[0,-23],[-5,-29],[5,-40],[0,-57],[8,-24],[7,-31],[-2,-20],[9,-80],[0,-58],[8,-45],[12,-26],[7,-34],[0,-24],[5,-29],[1,-74],[-1,-21],[5,-12],[-1,-25],[16,-65],[-1,-33],[8,-38],[-6,-3],[-1,-42],[3,-11],[3,-37],[3,6],[2,-40],[4,-6],[4,-32],[-2,-11],[6,-10],[0,-33],[-6,4],[0,-33],[5,-8],[-2,-19],[0,-41],[-2,-2],[-4,-39],[3,-44],[1,-50],[-3,-17],[1,-20],[-3,-13],[4,-25],[6,-18],[0,-31],[5,0],[8,-17],[0,-9],[16,-2],[3,-15],[8,6],[4,14],[17,-32],[0,-46],[3,-1],[2,-26],[10,-12],[5,8],[1,-13],[7,-1],[15,-55],[0,-22],[5,-14],[1,-21],[11,-12],[1,-24],[5,-7],[-5,-23],[6,-31],[-7,-29],[2,-13],[11,-11],[4,-21],[-2,-23],[-3,3],[0,-48],[-2,-43],[-7,-13],[1,-26],[-3,-7],[-2,-43],[-7,-41],[-1,-42],[3,-4],[8,-45],[5,-15],[-1,-40],[4,-11],[3,-26],[-1,-20],[17,-96],[-6,-24],[0,-55],[-7,-40],[3,-31],[7,-11],[7,10],[2,-17],[-8,0]],[[29991,61999],[2,-52],[-3,-2],[2,-38],[5,-24],[3,-1],[5,-44],[7,-27],[-3,-29],[3,-35],[8,-62],[-1,-16],[-12,-37],[7,3],[3,-13],[7,10],[7,-28],[-1,-28],[7,-7],[14,-46],[5,11],[1,29],[6,17],[3,27],[10,-5],[5,20],[4,-13],[5,14],[6,-24],[6,-71],[5,-12]],[[30107,61516],[2,68],[0,67],[2,87],[2,157],[0,61],[2,81],[0,61],[3,141],[0,65],[2,79],[0,86],[1,78],[1,8],[0,83],[1,24],[0,122],[1,76],[1,7],[0,87],[1,6],[0,93],[1,14],[0,104],[1,12],[0,109],[1,11],[0,92],[1,61],[0,89],[1,13],[0,100],[1,32],[0,107],[1,10],[0,159],[2,80],[0,76],[1,2],[0,81],[1,2],[0,86],[1,60],[5,16],[1,25],[-3,6],[2,26],[-3,68],[1,73],[-6,29],[-1,62],[4,28],[0,24],[4,21],[7,1],[5,20],[0,21],[4,5],[-2,22],[6,14],[1,17],[12,30],[0,16],[4,2],[5,28],[-3,18],[0,35],[-2,9],[0,34],[-2,24],[1,26]],[[29151,70946],[-3,24],[-3,-15],[6,-9]],[[29170,70828],[3,25],[-5,-9],[2,-16]],[[29181,70852],[4,-5],[2,-45],[2,23],[6,-9],[-2,-13],[10,-9],[-15,76],[-6,22],[-6,-41],[5,15],[0,-14]],[[29191,70792],[1,-43],[5,7],[-4,-28],[15,-12],[-1,21],[3,10],[-2,19],[-14,30],[-3,-4]],[[29210,70607],[3,28],[-5,-4],[2,-24]],[[29262,70312],[6,0],[-6,39],[-9,84],[-11,72],[-6,53],[-14,96],[-8,42],[-3,-3],[11,-51],[0,-9],[12,-75],[9,-65],[0,-24],[12,-62],[4,-38],[3,-47],[-7,-3],[7,-9]],[[28914,70937],[-8,-28],[-1,-25],[-9,-14],[-9,-62],[-12,-43],[-8,-3],[-3,-29],[1,-25]],[[28866,70707],[-1,1]],[[28866,70707],[3,3],[0,-62],[-2,-9],[5,-20],[1,-19],[6,-7],[-9,-18],[-9,-34]],[[28860,70506],[7,-26],[7,-41],[0,-31],[6,-31],[3,2],[1,-37],[3,-34],[5,-24],[19,-49],[-1,-10],[13,-23],[4,-15],[14,-7],[12,-13],[10,-31],[15,-12],[3,-25],[0,-40],[-2,-18],[1,-30],[5,7],[10,-37],[5,-27]],[[29000,69954],[4,-29],[9,-13],[12,-49],[12,-28],[5,0],[13,-18],[5,-22],[5,-44],[11,9],[7,-21],[6,-3],[4,-16],[1,-20],[-4,-26],[-5,-10],[-7,-55],[-7,-23],[-10,-20],[-5,-34],[0,-18],[-9,-47],[-6,-7],[-10,-45],[0,-28],[-5,-48],[-7,-19],[-10,7],[-9,-20],[-4,-63],[3,-28],[-2,-103],[-9,-39],[-11,-10],[-8,17],[-4,-4],[-5,-82],[3,-27],[-3,-17],[7,-36],[-8,-30],[6,-67],[-4,-27],[5,-12],[2,-29],[11,5],[9,-37],[0,-18],[5,-27],[-4,-28],[9,-1],[4,-37],[-7,-33],[-1,-32],[-7,-29],[-4,-31],[0,-24],[-4,-2],[1,-37],[17,-40],[12,-33],[3,-37],[13,-34],[0,-15],[-7,11],[5,-36],[15,-40],[6,-45],[5,-20],[6,-58],[-2,-24],[6,-33],[4,-51],[11,-37],[-1,-16],[6,-5],[8,-34],[13,-13]],[[29100,67859],[7,11],[33,84],[36,95],[17,49],[34,80],[9,24],[86,209]],[[29322,68411],[-4,81],[-4,65],[-8,85],[-3,15],[-1,29],[-5,27],[-2,28],[-7,45],[-2,63],[-8,33],[-2,-7],[-2,36],[-5,3],[6,18],[-10,-14],[5,15],[-1,16],[-15,8],[10,-65],[1,-42],[3,-26],[-5,21],[-2,23],[-6,30],[-2,37],[-3,-7],[-10,34],[-3,23],[0,46],[-4,57],[-3,-5],[-6,14],[1,50],[-5,33],[-7,-18],[-8,13],[-3,32],[5,-27],[6,-10],[0,14],[5,10],[4,39],[19,37],[4,-27],[5,19],[8,-14],[11,23],[12,32],[13,12],[6,15],[0,26],[-10,-9],[-1,10],[-13,26],[-1,22],[5,-19],[6,-4],[2,-14],[9,-5],[4,6],[0,21],[-7,15],[-6,51],[8,-28],[5,1],[1,-63],[-1,-42],[-4,-61],[-3,-3],[-1,-30],[-4,-9],[6,-9],[0,14],[6,45],[-1,22],[2,39],[1,85],[-1,44],[-6,134],[-4,61],[-6,7],[-3,-25],[0,35],[9,-13],[-7,126],[-3,-8],[-10,21],[-5,-44],[1,29],[6,25],[10,-22],[0,37],[-6,136],[-2,29],[0,43],[-3,45],[-5,220],[-6,-27]],[[29262,70270],[3,0]],[[29265,70270],[3,-3],[2,-96],[1,-169],[3,-9],[0,-48],[6,-49],[1,-50],[-5,12],[-15,5],[9,9],[9,-4],[0,15],[-7,19],[-1,23],[-6,-19],[-5,10],[5,8],[-2,16],[-10,12],[6,14],[4,-12],[1,64],[-8,21],[-8,-18],[-8,4],[5,13],[6,1],[7,15],[7,-6],[0,16],[-7,30],[0,70],[-5,13],[2,10],[-7,22],[0,25],[-4,18],[-2,69],[-2,11],[8,9],[1,24],[-4,7],[5,10],[-5,10],[-1,24],[-5,4],[3,12],[-7,12],[0,34],[-10,9],[-4,37],[1,19],[-6,-13],[-9,30],[-3,28],[-4,-3],[0,22],[6,26],[6,11],[-2,45],[-8,-1],[1,-44],[-10,-10],[-8,10],[-2,-27],[-5,-1],[2,26],[0,50],[9,35],[-1,10],[-6,-14],[-2,18],[5,24],[-5,-4],[5,31],[-3,27],[-8,-52],[-7,14],[-2,41],[-5,0],[-2,36],[9,-1]],[[29167,70857],[5,5],[7,28],[2,18],[-24,52],[-10,30],[5,-44],[10,-24],[-4,1],[1,-18],[-4,-24],[-4,-4],[-2,64],[-6,10],[4,23],[-11,24],[-5,-13],[-10,11],[-8,-5],[0,-17],[-9,-12],[10,40],[-1,17],[5,-3],[5,18],[-3,11],[-1,30],[13,-38],[7,-28],[0,26],[-6,12],[-11,49],[-7,40],[-9,30],[3,2],[5,-27],[0,15],[-10,53],[-7,64],[-1,-26],[-3,32],[5,13],[-10,57],[-2,20],[-10,58],[6,-59],[-18,61],[-6,1],[-1,16],[5,19],[5,-11],[6,-35],[3,37],[-8,25],[-14,64],[-3,-19],[4,-29],[-4,1],[1,42],[-10,19],[-16,1],[-2,-21],[3,-41],[2,-54],[3,-33],[13,-103],[3,-88],[-4,-26],[-5,-2],[-12,-22],[-13,-1],[-6,-6],[2,-41],[-4,-4],[-3,18],[-11,7],[-6,-6],[-8,48],[-9,-34],[2,-12],[-4,-49],[-4,-1],[-4,-28],[-11,-21],[2,-10],[-3,-22],[-7,-10],[-5,18],[-7,-27],[-6,-56],[-8,4]],[[21215,74419],[0,150],[-1,214],[0,364]],[[21214,75147],[-11,0],[1,163],[0,1105],[-1,181],[0,2202],[-1,55],[0,208],[-1,184],[-1,79],[-1,255],[0,184],[-2,408],[0,1333],[-73,0],[-109,1],[-207,0],[-20,-1],[-129,0],[-85,-1],[-195,-1],[-172,2],[-6,32],[6,8],[1,21],[-4,45],[5,6],[-10,28],[5,17],[-2,28],[9,34],[-1,14],[8,40],[12,6],[2,19]],[[20232,81802],[-468,0],[0,617],[-135,0],[-18,2],[-81,0]],[[18139,66860],[0,1837],[-1,11],[0,1027],[-1,16],[0,2330],[-1,28],[0,222],[1,16],[0,431],[-1,16],[0,220],[1,20],[0,260],[-1,10],[0,1115]],[[16478,66858],[57,1],[121,0],[11,1],[175,3],[54,-6],[132,-3],[143,-2],[136,-1]],[[29413,69034],[-2,14],[-16,4],[-18,-1],[-9,-5],[-1,-9],[15,5],[10,-9],[17,2],[-1,-35],[6,12],[-1,22]],[[29419,69012],[0,-10],[8,-1],[-3,21],[-5,-10]],[[29350,69003],[2,-13],[4,13],[-5,15],[-1,-15]],[[29439,69003],[-4,-10],[5,-7],[-1,17]],[[29463,68972],[-5,15],[0,-16],[5,1]],[[29342,68966],[3,9],[0,34],[-5,-10],[2,-33]],[[29273,68950],[7,75],[-4,25],[-16,65],[-3,-7],[-6,27],[-17,42],[-9,7],[-2,-17],[4,-21],[-1,-37],[9,-16],[6,-63],[-3,-19],[2,-39],[6,-15],[7,10],[20,-17]],[[29504,68933],[2,16],[-4,21],[-15,-4],[-14,17],[-9,16],[-21,27],[-29,33],[2,-17],[13,-17],[5,-19],[2,21],[13,-29],[4,-20],[1,12],[7,4],[6,-14],[7,-28],[7,-1],[7,9],[5,-13],[11,-14]],[[29640,68774],[-12,18],[-30,52],[-19,41],[-27,47],[-48,58],[-16,3],[3,-13],[9,8],[28,-37],[19,-16],[24,-37],[10,-22],[15,-40],[5,0],[3,-14],[5,0],[19,-32],[5,-18],[7,2]],[[29330,68739],[-5,-2],[0,-16],[5,18]],[[29721,68443],[3,2],[2,29],[-5,-31]],[[29764,68270],[11,15],[-1,17],[-7,-6],[-5,-24],[3,34],[8,-2],[4,64],[-12,-43],[-3,17],[-9,-17],[1,20],[-6,-17],[-3,-26],[5,-9],[2,-19],[7,-31],[5,27]],[[29827,68251],[3,3],[-2,25],[0,37],[-3,13],[0,-41],[-6,-24],[-7,-8],[6,-23],[9,18]],[[29385,68998],[-4,19],[-1,-27],[-5,24],[5,-5],[2,26],[-16,-2],[-19,17],[-22,40],[-5,3],[-9,21],[1,-20],[7,-14],[9,-6],[7,-19],[7,-5],[14,-40],[3,18],[0,-30],[7,-19],[0,-11],[-8,22],[-14,-40],[-11,10],[-9,34],[5,47],[-5,20],[-2,-18],[-8,19],[-18,9],[-5,-7],[4,-14],[-4,-28],[-5,-4],[-3,-17],[1,-35],[9,-41],[-4,-22],[8,-39],[6,-2],[2,-53],[8,-57],[7,-21],[5,27],[6,-10],[6,31],[0,-33],[-3,-6],[11,-24],[7,18],[5,-10],[3,35],[3,11],[1,-51],[-4,-20],[5,-31],[8,18],[2,35],[2,-27],[-2,-37],[-5,11],[-2,-26],[2,-25],[5,-6],[9,16],[8,47],[-1,-78],[6,-36],[3,7],[13,-26],[8,8],[6,-15],[5,17],[-3,34],[-5,-5],[3,-17],[-1,-17],[-5,11],[1,40],[11,8],[-2,-27],[5,-6],[1,24],[7,30],[-2,-49],[-7,-48],[3,-38],[8,17],[5,1],[3,23],[-6,7],[4,28],[11,-17],[4,13],[2,-21],[4,5],[2,-20],[-4,-9],[-6,10],[-5,-29],[4,-22],[6,32],[7,17],[6,-8],[24,30],[3,22],[7,12],[-5,-30],[8,-16],[10,-9],[-7,15],[2,30],[8,-58],[0,-36],[-4,-20],[8,-1],[3,-10],[6,28],[8,6],[-6,-30],[4,-1],[8,15],[4,19],[3,-8],[-5,-12],[25,-3],[15,6],[17,-12],[17,7],[9,-6],[14,-17],[15,-1],[14,-24],[7,-21],[12,-46],[13,-23],[7,-46],[9,-6],[7,-18],[3,-26],[4,-8],[3,-28],[7,5],[8,-25],[9,-2],[10,-11],[-7,48],[-12,31],[5,-24],[7,-15],[-4,-9],[-2,18],[-10,-19],[-6,43],[-3,3],[-5,29],[-11,32],[-2,32],[7,6],[0,25],[-4,4],[-9,-9],[-4,18],[0,17],[4,38],[-7,-31],[-5,30],[-5,-4],[-11,24],[-4,32],[-6,26],[-6,13],[-5,-5],[-5,18],[4,23],[12,1],[2,-14],[7,8],[10,23],[10,-13],[5,-21],[1,-38],[3,-10],[9,-6],[8,-57],[-1,-42],[3,28],[13,-3],[1,-17],[-5,-35],[6,-10],[4,33],[-1,22],[8,5],[3,-18],[2,15],[3,-23],[1,-37],[2,-5],[7,16],[6,45],[3,-63],[4,-11],[5,16],[-1,36],[3,-4],[8,46],[7,-7],[1,-17],[6,-7],[0,22],[5,-6],[0,-17],[-4,-13],[8,2],[9,-39],[5,7],[5,-13],[-1,-33],[6,-9],[3,31],[4,11],[1,-16],[-7,-30],[9,-10],[3,16],[10,3],[-5,33],[-8,17],[-14,19],[-35,71],[-13,22],[-20,43],[-7,10],[-14,35],[-34,70],[-20,34],[14,-33],[-5,6],[-4,-24],[-15,-8],[3,23],[-3,31],[-11,-28],[-3,43],[-4,-5],[-4,14],[-1,25],[12,-13],[13,-26],[4,1],[-63,100],[-13,18],[6,-20],[8,-5],[5,-12],[11,-13],[-4,-13],[-14,8],[-6,-20],[0,18],[-6,-3],[3,23],[-6,-8],[3,16],[-14,-3],[-8,-13],[5,24],[1,22],[-6,9],[-4,18],[-10,4],[0,-22],[-11,-5],[-6,25],[-6,2],[-6,-12],[-10,4],[-3,27],[-21,19],[-4,-13],[-8,0],[6,11],[-5,34],[-6,-1],[-10,-18],[-5,4],[-3,-14],[-12,48],[-10,-4],[-1,10],[-9,20],[-14,21],[-7,-4],[-11,16],[-2,-14],[-4,10],[-5,39],[-1,-21],[-5,-7],[-10,6],[2,34],[-4,7],[-2,-19],[-5,-14],[0,18],[-5,-3],[-8,37],[-8,3],[1,-43],[-7,1],[4,11]],[[29808,68114],[-8,11],[-4,28],[-3,-21],[5,-13],[10,-5]],[[29873,67958],[-1,9],[-13,19],[-8,31],[-9,3],[4,-17],[0,-20],[4,7],[4,-15],[7,-8],[7,4],[5,-13]],[[27896,65240],[7,-57],[-1,-19],[13,2],[10,17],[5,21],[1,30],[-8,16],[-7,34],[3,49],[-6,-1],[-14,-47],[-3,-20],[0,-25]],[[28639,63846],[7,-32],[6,-2],[-8,43],[-5,-9]],[[28613,63836],[10,-46],[8,-5],[-2,22],[-10,27],[-6,2]],[[28659,63640],[3,-11],[12,-18],[8,7],[-6,34],[0,16],[-9,42],[-8,11],[-1,-9],[5,-27],[0,-27],[-4,-18]],[[28631,63591],[4,-19],[7,-2],[-3,30],[-7,3],[-1,-12]],[[29390,68447],[-18,58],[-18,90],[-4,45],[-4,-3],[0,33],[5,23],[-14,19],[-6,-14],[0,14],[-6,-4],[-7,14],[-1,17],[-5,-6],[-4,42],[-5,26],[-1,49],[-12,21],[-1,-11],[3,-37],[0,-33],[4,-23],[5,-48],[9,-66],[-1,-13],[7,-43],[6,-107],[4,-41],[0,-28],[5,-85],[1,-45],[-1,-23],[0,-109],[-2,-40],[-6,22],[3,-41],[-12,-54],[-6,-6],[0,-17],[-4,-17],[10,-40],[-9,-26],[-6,-30],[0,18],[8,30],[-6,41],[1,60],[3,2],[0,32],[3,32],[7,25],[6,38],[-4,105],[0,42],[5,30],[0,46]],[[29100,67859],[3,-15],[-8,-44],[-6,-10],[1,-44],[-6,6],[-11,-2],[-2,-26],[-6,15],[-9,-20],[-9,10],[0,-26],[-5,-10],[0,-16],[-10,-19],[-5,11],[-6,-5],[0,-36],[-6,-10],[1,-18],[-7,-23],[3,-13],[-2,-25],[-6,-15],[-1,-20],[-5,-16],[-3,-24],[4,-15],[5,0],[-2,-27],[0,-41],[-3,-18],[3,-15],[-5,-47],[5,-2],[-1,-60],[-2,-21],[-11,-9],[0,-29],[6,-14],[2,-22],[-6,0],[-6,-15],[0,-32],[-8,-15],[-4,9],[-3,-36],[-3,14],[-6,-12],[-6,18],[-5,-16],[-5,8],[0,-22],[-4,-20],[1,-38],[-2,-37],[-5,-24],[-4,7],[-9,-36],[0,-34],[-6,-13],[-33,2],[-75,-1],[-71,0],[-28,-1],[-419,0],[-38,5],[-127,-5],[-58,0],[-27,2],[-32,-1],[-15,4],[-69,0],[-37,-5],[-111,3],[-42,2],[-29,-6],[-15,3],[0,-426]],[[27689,66426],[22,-44],[14,-36],[7,-28],[6,-9],[17,-47],[14,-49],[8,-15],[6,-28],[2,-35],[3,3],[13,-44],[1,-19],[4,7],[7,-24],[11,-15],[7,-24],[20,-38],[10,-7],[3,-21],[1,-33],[3,-20],[16,-70],[0,-34],[4,-36],[11,-21],[4,-1],[7,-24],[15,-29],[2,-13],[11,-36],[5,-29],[-1,-21],[-5,-37],[4,-33],[-4,-14],[-4,-32],[0,-19],[-4,-23],[1,-25],[-3,-61],[-9,-41],[4,-39],[10,-21],[0,-51],[-9,-28],[-8,-9],[-14,-3],[-16,-11],[-2,-14],[3,-26],[-3,-26],[7,-29],[-2,-48],[1,-54],[-2,-12],[1,-65],[-4,-19],[18,-23],[11,-10],[8,-15],[26,-38],[17,-16],[11,-17],[10,-5],[13,-20],[30,-27],[16,-8],[4,6],[30,-9],[18,8],[14,-1],[5,5],[15,-2],[5,-7],[18,-1],[19,14],[10,3],[5,-6],[15,19],[13,12],[22,15],[11,4],[12,22],[-1,28],[5,-2],[11,39],[7,13],[18,57],[9,8],[10,-25],[16,-19],[5,-13],[23,-16],[23,4],[14,-11],[12,3],[17,-11],[7,13],[10,7],[1,9],[19,-3],[-5,21],[6,14],[2,20],[4,-5],[3,22],[4,7],[-1,-21],[-4,-11],[0,-51],[14,-31],[7,0],[7,-14],[12,-7],[9,-18],[9,-32],[6,-8],[-1,49],[3,-6],[1,-42],[3,-7],[12,-69],[2,-22],[21,-71],[22,-42],[5,-33],[14,-42],[14,-7],[5,18],[15,3],[4,-10],[14,-18],[5,-27],[4,-67],[0,-45],[7,-10],[-6,-8],[1,-12],[7,-7],[1,-34],[-6,-16],[-2,-17],[-2,22],[-1,-72],[-2,-63],[-5,-69],[0,-20],[-8,-33],[-4,2],[1,-21],[-9,-1],[1,-30],[7,-33],[11,-14],[2,15],[-4,21],[6,1],[2,21],[2,-21],[14,-43],[7,-9],[0,-50],[-3,-28],[9,-21],[5,-29],[8,-1],[0,-25],[-3,-14],[-4,7],[-10,39],[-13,19],[-1,-21],[-8,6],[-2,-26],[3,-17],[15,-25],[5,-23],[1,-23],[-9,13],[-4,-6],[5,-21],[0,-20],[-6,-10],[-9,16],[-3,-6],[4,-30],[-5,15],[-8,7],[-6,22],[-5,51],[1,14]],[[28659,63640],[-4,3],[-3,-30],[2,-5],[1,-46],[-11,-11],[7,-24],[-11,16],[-3,-8],[4,-15],[-6,-24],[-9,-21]],[[28626,63475],[13,-35],[11,-106],[8,-7],[11,-1],[15,-28],[8,-30],[0,-67],[9,-25],[9,-6],[15,-52],[12,-26],[9,8],[6,-10],[7,-32],[3,1],[12,-46],[13,-59],[4,-65],[11,-71],[13,-51],[6,-32],[22,-86],[32,-143],[14,-45],[9,-38],[2,-23],[6,-6],[7,-23],[7,-35],[3,5],[9,-34],[-2,-16],[25,-68],[5,0],[10,-26],[7,-6],[2,-30],[8,-7],[2,-12],[9,-4],[1,-9],[10,-20],[6,-19],[3,-32],[13,-13],[11,4],[5,-29],[6,0],[11,-25],[7,2],[3,17],[8,-2],[1,18],[8,7],[8,-21],[5,6],[57,3],[40,10],[37,-1],[15,2],[66,-16],[36,-4],[32,1],[49,-9],[42,-4]],[[29478,62004],[-3,51],[4,20],[0,84],[-5,20],[-3,63],[-4,26],[1,22],[12,53],[1,26],[-4,22],[-5,47],[1,89],[-3,25],[0,25],[-4,41],[-1,35],[4,29],[-2,18],[7,49],[5,14],[2,31],[3,6],[0,22],[4,18],[2,38],[0,45],[2,22],[-5,54],[-1,26],[-5,21],[-1,31],[3,30],[0,51],[4,54],[-4,50],[-2,-1],[-7,34],[-1,24],[-8,25],[-4,82],[-3,10],[0,59],[-4,30],[-3,59],[9,37],[-1,82],[1,2],[0,73],[3,37],[6,42],[-2,39],[3,10],[-6,31],[4,29],[0,17],[6,21],[2,21],[-6,48],[0,31],[-9,54],[0,27],[-7,63],[3,19],[-1,35],[-3,24],[9,30],[5,-14],[-2,-20],[5,-27],[1,-28],[9,-7],[9,1],[0,26],[3,12],[-1,40],[9,16],[4,24],[2,42],[-2,7],[0,167],[-1,18],[0,129],[-1,5],[0,121],[-4,325],[0,81],[-1,29],[0,87],[-1,48],[0,94],[-2,-2],[0,43],[-2,9],[4,89],[4,1]],[[29390,68423],[-1,20]],[[29389,68443],[1,4]],[[27689,66426],[0,-386]],[[27689,66040],[231,-499],[5,-81],[3,-34],[0,-37],[-4,-38],[-4,-14],[-8,-3],[-3,-17],[-11,-27],[-3,-49],[7,-63],[-2,-16],[-19,-19],[5,-47]],[[27886,65096],[-4,-21],[8,-29],[0,-9]],[[27890,65037],[0,-9]],[[27890,65028],[-3,-29],[1,-52],[-2,-87],[-4,-13],[-36,-302],[142,-290],[528,0],[79,-597],[20,-153],[11,-30]],[[26839,67534],[-2,-2]],[[26837,67532],[0,-2]],[[26837,67530],[1,-5]],[[26838,67525],[1,9]],[[26861,67470],[4,-23],[11,8],[1,28],[-6,16],[-10,-29]],[[26831,67400],[2,-13],[7,4],[-1,19],[-5,19],[-3,-29]],[[26836,67344],[7,-16],[-2,36],[-5,-20]],[[26833,67303],[4,-21],[3,26],[-7,-5]],[[27478,68966],[-16,40],[-6,-18],[-7,9],[-12,55],[9,56],[4,52],[7,48],[0,29],[-4,33],[0,49],[-6,30],[7,22],[-1,51],[3,48],[-4,27],[0,35],[-10,36],[-3,29],[-2,50],[-4,14],[-6,43],[-1,90],[-8,23],[-1,22],[3,19],[0,32],[-4,48],[2,17],[-1,35],[-5,14],[-1,39],[2,37],[-14,-9],[-1,24],[5,33],[0,18],[-9,26],[1,43],[-1,26],[-5,27],[-7,21],[-1,18],[11,66],[0,18],[-9,18],[-1,65],[-2,36],[-5,16],[-12,3],[-25,95],[-11,54],[-9,35],[-4,37],[-7,38],[-14,18],[-7,41],[-3,28],[-7,-5],[-16,30],[-11,37],[-11,6],[-6,-39],[-1,-33],[-9,-31],[-10,18],[-6,36],[-10,22],[-7,31],[-2,56],[1,36],[-3,17],[-10,-14],[-14,-2],[-6,7],[-4,22],[1,49],[-10,14],[-2,34],[-6,18],[4,63],[0,57],[-6,30],[-4,6],[-10,-5],[3,50],[11,44],[-1,44],[-3,14],[-1,32],[7,32],[-3,23],[-6,-6],[-9,-31],[-4,7],[-3,25],[0,30],[-5,28],[-8,19],[-5,-7],[-6,-23],[9,-60],[-5,-45],[-7,-45],[-11,0],[-1,-28],[-5,-24],[-5,-2],[-6,20],[-2,33],[-12,31],[-5,41],[-1,29],[-9,50],[2,29],[0,42],[-5,33],[-9,16],[-7,24],[-1,37],[7,28],[0,23],[3,30],[-2,50],[5,75],[0,41],[-5,21],[-8,5],[-10,-11],[-10,24],[-1,70],[-2,13],[0,45],[-3,44],[-7,39],[-13,10],[-5,-7],[-25,31],[-13,19],[-10,-1],[-6,-25]],[[26653,67270],[0,0]],[[26656,67269],[-3,1]],[[26656,67269],[2,0]],[[26661,67269],[-3,0]],[[26661,67269],[-4,14],[-3,31],[1,14],[7,-1],[6,-25],[2,13],[-4,17],[11,1],[4,8],[8,-1],[7,-24],[5,18],[1,18],[8,11],[11,34],[1,16],[6,4],[10,20],[13,17],[7,1],[11,28],[1,14],[9,49],[13,41],[13,20],[-9,-6],[-16,16],[-22,9],[6,6],[21,-15],[2,3],[15,-11],[13,-5],[9,-26],[5,-48],[-3,-17],[8,-17],[4,29]],[[26838,67525],[-1,5]],[[26837,67530],[0,2]],[[26837,67532],[-3,34],[-10,30],[12,-20],[0,-34],[3,-8]],[[26839,67534],[0,-1]],[[26839,67533],[3,18],[-4,31],[12,-8],[7,-14],[11,15],[-5,52],[-5,-14],[-7,16],[-10,-6],[-4,25],[-7,-18],[-7,18],[-18,6],[-6,-4],[-4,31],[-6,14],[-4,-8],[-8,1],[-2,18],[4,-2],[5,18],[0,18],[10,-34],[7,45],[7,6],[10,-25],[9,-8],[8,-23],[0,-26],[6,0],[2,14],[11,30],[8,-9],[9,-21],[4,15],[6,-2],[-1,17],[12,33],[4,5],[-22,-96],[0,-15],[7,41],[16,70],[10,19],[16,39],[12,-1],[13,-26],[16,-42],[9,-5],[10,3],[12,-9],[18,-50],[0,-7],[11,-12],[10,-19],[25,-35],[8,-2],[16,36],[22,12],[14,-19],[18,13],[8,-17],[7,-28],[18,-43],[16,-60],[12,-53],[8,-14],[9,-37],[5,-33],[10,-39],[23,-71],[11,-25],[7,-3],[11,-16],[28,-71],[10,-15],[23,-46],[14,-14],[14,-9],[17,-35],[8,-11],[5,-21],[6,4],[24,-32],[9,-18],[7,-6],[31,-53]],[[27478,66886],[0,1716],[1,61],[-1,69],[0,234]],[[26757,66922],[11,142],[108,293],[79,0],[321,-833],[204,-185]],[[27480,66339],[-2,547]],[[23587,79230],[-1,18],[-11,13],[-2,-13],[5,-21],[-6,3],[-6,16],[-2,-15],[7,-13],[-1,-22],[-5,6],[-4,23],[-3,-6],[8,-33],[-5,4],[-1,-25],[-3,0],[1,23],[-3,7],[-7,-27],[-1,19],[-5,-4],[0,-17],[-6,-15],[-4,14],[-7,-6],[3,-25],[-8,-12],[2,36],[-5,-4],[-4,-22],[4,-10],[-6,-4],[-1,-13],[-6,-7],[8,-31],[-6,-13],[-2,25],[-5,18],[-4,-12],[0,-37],[-4,13],[1,24],[-10,-6],[-5,-28],[-8,-16],[-3,-18],[3,-41],[-3,-15],[-1,29],[-5,4],[-3,-17],[3,-17],[-6,-9],[-1,-34],[-6,14],[-5,-21],[-5,8],[-7,-6],[-5,-75],[-3,16],[0,31],[-3,4],[-3,-24],[7,-24],[-5,-8],[-8,23],[-3,-13],[3,-16],[-1,-17],[-8,1],[-8,-20],[-10,-16],[-10,38],[1,51],[-4,14],[0,-24],[-6,5],[2,36],[-9,-1],[-6,-16],[-2,22],[-18,9],[-14,-7],[-1,-25],[-8,19],[-5,1],[0,-31],[-6,20],[-7,-7],[1,-38],[-3,-23],[-10,-15],[-3,25],[-7,21],[-11,4],[-7,30],[-4,1],[-6,-16],[-8,10],[2,49],[-6,6],[-7,-17],[-6,5],[1,23],[-8,3],[-2,-14],[-7,-13],[-11,-34],[-5,-6],[0,26],[-4,17],[-9,6],[0,-18],[-5,-9],[1,28],[-7,16],[1,-18],[-8,24],[-5,-2],[-8,-26],[1,29],[-4,-5],[-4,18],[-5,2],[-7,20],[-3,31],[1,29],[-9,23],[-8,-2],[-9,-21],[-9,3],[-4,35],[1,30],[-4,34],[-7,13],[-4,-4],[-2,-32],[-13,-66],[-2,-21],[-8,-10],[-2,8],[-13,3],[-3,-15],[-1,-38],[-4,-17],[-11,6],[-16,-36],[3,-28],[9,-30],[-1,-13],[-10,0],[-8,-26],[-8,36],[-6,47],[-12,22],[-7,6],[-11,-54],[-16,25],[-5,-48],[-4,-74],[-9,-17],[-11,26],[-1,-29],[-5,12],[0,26],[3,27],[0,29],[-10,61],[-7,9],[-4,-27],[-8,7],[0,20],[7,1],[4,12],[0,19],[-10,9],[-3,27],[3,29],[0,33],[-5,34],[-4,7],[-10,-8],[-11,-52],[1,-25],[-4,-32],[1,-35],[9,-22],[-1,-37],[-4,-47],[-6,-19],[-6,1],[-5,16],[-2,55],[-6,1],[-8,-33],[-2,23],[-5,20],[2,-33],[-4,0],[-1,31],[-5,39],[-4,14],[-15,0],[-10,-29],[3,-43],[-2,-48],[-11,-21],[-8,11],[-4,14],[-13,-1],[-3,-21],[3,-49],[-6,-22],[-11,-26],[-6,-7],[-8,22],[-2,24],[-7,31],[-9,4],[0,29],[-6,-6],[2,26],[-5,-1],[-2,29],[-4,-2],[-4,31],[-10,13],[-8,-11],[-12,-32],[-4,2],[-9,-29],[2,-19],[6,0],[1,-35],[-6,-7],[4,-11],[4,-49],[-8,-30],[-12,17],[-8,0],[-10,-11],[0,-17],[-6,-21],[6,-18],[-10,-35],[0,-26],[5,-21],[3,-45],[-6,-31],[-6,7],[-6,37],[-4,12],[-14,-11],[-4,-18],[-6,8],[-12,-7],[-7,-22],[-12,-10],[-5,13],[1,18],[-5,9],[0,42],[-3,14],[-10,10],[-9,26],[-7,-13],[-9,-49],[-7,-23],[3,-13],[-14,-39],[-4,6],[-10,-11],[-11,44],[-13,-3],[-6,15],[-2,-17],[-11,-27],[-8,-9],[-7,1],[0,16],[-5,-8],[1,-16],[-13,-22],[-9,-42],[-4,16],[-7,-29],[-3,18],[-10,2],[-2,13],[-9,-19],[-8,11],[-7,-3],[1,-19],[-8,17],[-10,-11],[-1,-93],[-4,-9],[-1,-34],[1,-36],[-7,-6],[2,-11],[-6,-38],[-3,4],[-4,-20],[4,-4],[0,-19],[-5,5],[-2,-20],[-9,6],[-1,-17],[-10,-28],[0,-19],[-5,-6],[-6,24],[0,37],[3,8],[-3,17],[0,31],[-9,-11],[1,19],[-4,-2],[-7,-34],[-6,-2],[-7,-23],[-5,4],[-12,-10],[-3,12],[0,26],[-5,23],[-6,2],[-7,-13],[-5,13],[-8,-7],[-5,-17],[-3,-26],[-9,-17],[-3,-25],[-5,-8],[-9,-48],[-1,-28],[-10,-21],[-7,-45],[-9,-27],[-3,-17],[-6,-5],[-7,24],[-8,3],[0,-2782],[-499,0],[-13,-1],[-325,0]],[[15316,64685],[0,2]],[[15316,64687],[0,-21]],[[15316,64666],[0,5]],[[15316,64671],[2,3]],[[15318,64674],[-2,11]],[[15318,64672],[-2,-1]],[[15316,64666],[0,-2]],[[15316,64664],[2,7]],[[15318,64671],[0,1]],[[15334,64109],[-5,-12],[3,-11],[2,23]],[[15579,60117],[-11,9],[-4,-7],[15,-2]],[[15459,60067],[-2,-3]],[[15457,60064],[8,-15],[-6,18]],[[15453,60055],[-8,9],[5,-24],[3,15]],[[15441,60054],[-2,1],[2,-25],[0,24]],[[15470,60032],[-2,-26],[11,4],[-2,30],[-7,-8]],[[15467,59995],[-4,47],[-6,-5],[-3,-15],[9,-10],[4,-17]],[[15485,59980],[-6,23],[-11,-4],[4,-27],[13,8]],[[15457,60064],[2,3]],[[15459,60067],[9,-22],[9,0],[2,-32],[6,-25],[7,-12],[2,-18],[9,3],[7,29],[11,35],[2,33],[13,58],[16,8],[9,-1],[4,9],[14,-11],[4,-33],[0,-23]],[[15583,60065],[12,-26],[13,3],[24,71],[9,18],[13,54],[16,30],[5,35],[2,59],[6,24],[1,30],[11,66],[2,43],[-2,41],[7,57],[1,47],[-4,53],[9,77],[2,49],[-2,38],[-2,43],[2,52],[6,20],[12,24],[2,12],[16,30],[16,7],[10,16],[20,23],[5,16],[9,4],[13,-13],[6,9],[5,28],[5,12],[15,-7],[4,3],[20,-35],[9,-23],[9,-3],[20,-44],[11,-13],[10,-28],[2,-15],[6,-1],[9,-20],[5,-46],[15,-31],[7,-5],[13,14],[18,5],[7,-15],[6,-2],[23,-20],[13,-14],[16,40],[18,16],[8,-20],[9,-1],[10,12],[10,31],[14,19],[4,36],[0,48],[7,21],[8,-4],[10,-37],[9,-34],[11,-15],[16,15],[9,-13],[4,3],[4,27],[9,-18],[9,-37],[24,-35],[22,-37],[9,-32],[8,-18],[13,2],[8,12],[9,39],[11,30],[29,-9],[27,-34],[19,-7],[12,-62],[7,-14],[17,-17],[32,-73],[17,-7],[30,-32],[8,3],[29,-19],[12,-77],[6,-28],[9,-10],[13,28],[11,4],[10,-18],[24,-7],[11,-19],[19,-12],[17,20],[6,1],[13,-9],[9,-17],[9,-26],[13,-31],[8,-39],[55,-2],[49,1],[209,0],[44,1],[41,3],[47,-1],[10,4],[16,-3],[89,2],[17,3]],[[15305,66853],[-16,-75],[-6,-1],[-7,-32],[-4,-30],[-6,-24],[0,-59],[-5,-29],[2,-40],[-4,-22],[-1,-38],[-9,-46],[1,-65],[-1,-37],[-6,-10],[2,-38],[0,-101],[0,-18],[13,-23],[3,-21],[0,-23],[6,-14],[-10,11],[1,18],[-4,28],[-9,20],[-2,-19],[4,-35],[0,-66],[3,-31],[6,-76],[-4,-49],[0,-43],[-3,-34],[0,-24],[-10,-23],[1,-19],[-4,-19],[-4,-49],[-5,-18],[-6,6],[-3,-82],[-4,-50],[-7,-31],[2,2],[8,-62],[9,-70],[10,-111],[7,-119],[0,-44],[0,-34],[2,-15],[7,-82],[2,-42],[0,-38],[4,-74],[-4,-52],[0,-19],[5,-38],[8,-20],[8,12],[-3,14],[3,60],[1,0],[0,-44],[-1,-18],[1,-30],[7,-35],[2,-26],[9,-43],[5,-7],[4,7],[0,61],[4,17],[7,-3],[2,18]],[[15316,64685],[2,-11]],[[15318,64674],[0,-2]],[[15318,64671],[-2,-7]],[[15316,64664],[0,-7]],[[15316,64657],[-7,-31],[1,-27],[-7,-41],[4,-21],[-8,4],[-1,34],[-11,21],[-2,26],[-9,46],[-1,20],[-5,1],[8,-53],[11,-115],[14,-210],[4,-114],[9,-17],[-2,-11],[7,-28],[4,-52],[2,-8],[2,26],[5,19],[13,31],[14,-9],[13,13],[7,14],[7,42],[-5,-46],[-11,-20],[-11,-10],[-14,5],[-8,-13],[-7,-33],[-3,-35],[-8,2],[-3,17],[0,57],[-9,28],[7,-150],[3,-88],[2,-94],[2,-35],[0,-38],[2,-38],[0,-88],[5,23],[-1,40],[7,20],[3,-10],[8,1],[0,20],[3,-31],[-3,2]],[[15347,63703],[0,-6]],[[15347,63697],[-6,0],[-7,17],[-4,-13],[0,-39],[-1,-30],[-4,-5],[4,-67],[1,-47],[0,-75],[2,-47],[0,-70],[0,-5],[0,-82],[0,-42],[2,-56],[3,-25],[4,-133],[6,-29],[8,32],[8,0],[-8,-11],[1,-23],[-6,-22],[-9,36],[0,-70],[0,-57],[2,-23],[0,-40],[2,-46],[0,-67],[7,-19],[0,20],[7,17],[-1,35],[10,9],[-9,-21],[2,-20],[2,-39],[-7,3],[-6,-16],[-4,17],[1,-79],[-6,-13],[4,-8],[2,-34],[0,-62],[-4,-56],[0,-38],[4,-11],[-1,-42],[4,-15],[6,-103],[2,20],[5,-35],[-4,-11],[-3,-23],[3,-93],[2,-34],[0,-37],[3,-28],[-5,-1],[2,-57],[7,-24],[2,-65],[0,-23],[9,-44],[0,23],[4,-8],[-4,-31],[-3,-1],[-4,26],[0,-66],[-2,-9],[4,-58],[0,-29],[5,0],[-2,-29],[-3,13],[0,-51],[-4,-47],[-9,0],[9,-14],[2,-51],[4,-87],[2,15],[-4,68],[0,12],[7,-33],[2,-41],[-5,-24],[-6,-49],[2,-53],[3,-28],[1,-93],[3,15],[-2,36],[0,47],[11,37],[2,13],[4,-9],[5,-30],[-5,-3],[0,-29],[-4,-12],[-2,-48],[-4,-2],[-9,-21],[2,-37],[2,-103],[4,-23],[0,-36],[11,2],[2,-23],[-11,-12],[-4,28],[0,51],[-2,-9],[0,-93],[-2,-24],[-5,-11],[-2,-34],[-4,1],[4,-37],[2,-58],[0,-135],[-7,-77],[5,-20],[2,-19],[9,-18],[0,-42],[4,-6],[-4,-20],[0,-56],[-2,-63],[-5,-88],[-9,-89],[-8,-56],[4,-15],[5,25],[-4,-1],[4,28],[4,-6],[18,49],[0,22],[15,20],[7,-14],[4,36],[0,52],[3,-1],[-2,-54],[9,6],[-10,-17],[2,-17],[-6,-17],[-4,0],[-7,-28],[15,-3],[14,-24],[0,18],[11,40],[16,-5]],[[15521,59999],[0,14],[-11,-39],[0,-13],[7,-13],[4,11],[0,40]],[[15485,59980],[-6,-9],[8,-26],[3,11],[-5,24]],[[15512,59938],[5,7],[-5,10],[-4,-23],[4,6]],[[15503,59938],[3,16],[-9,-6],[6,-10]],[[15515,59938],[-7,-8],[4,-8],[3,16]],[[15359,59879],[4,30],[-8,-22],[4,-8]],[[29000,69954],[-5,20],[-15,24],[-3,24],[2,71],[-5,22],[-13,6],[-5,20],[-11,22],[-16,-10],[-18,43],[-13,41]],[[27769,70368],[-231,0],[-60,-1],[0,-371],[1,-7],[0,-283],[-1,-6],[0,-291],[1,-19],[0,-172],[-1,-4],[0,-248]],[[27478,66886],[20,-39],[14,-19],[10,-22],[10,-13],[15,-34],[10,-31],[14,-26],[8,-25],[4,-45],[6,-37],[5,-14],[11,2],[-4,6],[2,17],[-14,5],[-5,20],[-3,42],[8,-15],[11,-31],[3,0],[11,-23],[27,-73],[10,-22],[6,-21],[7,-5],[9,-17],[11,-33],[5,-7]],[[27480,66339],[121,-109],[88,-190]],[[29972,68061],[4,13],[-3,33],[0,30],[6,24],[-2,12],[-14,7],[-3,-9],[0,-24],[5,-29],[6,11],[-1,-75],[2,7]],[[30029,67647],[2,20],[-5,0],[-3,-15],[1,36],[-5,25],[1,-25],[-1,-44],[5,2],[1,-23],[-4,-31],[4,-67],[4,-4],[2,102],[-2,24]],[[30070,67417],[-6,12],[6,11],[-6,4],[-1,59],[2,10],[0,68],[1,27],[-4,33],[2,29],[-7,-20],[-3,14],[-4,-15],[-2,31],[-4,28],[-3,-14],[-4,14],[-6,3],[-2,-17],[8,-33],[0,16],[5,-10],[-2,-46],[4,-65],[7,-40],[0,-23],[4,-33],[-1,-15],[5,-24],[5,-4],[5,-26],[1,26]],[[30036,67394],[1,29],[5,5],[4,19],[-3,53],[-4,9],[-2,-36],[3,-32],[-7,-15],[-1,-25],[2,-28],[2,21]],[[30097,67637],[-6,9],[1,11],[-9,24],[1,11],[-8,7],[2,-40],[-5,-27],[2,-20],[-3,-25],[1,-23],[-4,-23],[3,0],[-1,-46],[3,-15],[-4,-44],[3,-51],[3,-26]],[[30067,67300],[-4,22],[0,-26],[-6,-13],[5,36],[3,36],[-5,21],[-2,33],[-8,-57],[0,21],[-5,9],[1,-33],[3,-10],[0,-34],[4,-41],[-1,-35],[-2,4],[-1,62],[-4,12],[-1,-23],[-8,-3],[-8,-64],[-1,-37],[-6,-37],[6,-27],[0,-34],[-5,55],[-4,0],[1,19],[6,24],[-3,10],[1,45],[2,22],[-3,11],[7,37],[0,33],[-3,30],[-4,-5],[0,-29],[-3,10],[-13,-9],[0,30],[6,1],[5,32],[1,94],[-10,19],[0,26],[7,49],[-2,41],[1,48],[-3,1],[1,27],[-8,37],[0,36],[-5,26],[-5,42],[-6,-17],[0,-18],[4,-31],[-3,-15],[-4,61],[-8,3],[-18,19],[-23,35],[-3,12],[-12,13],[-5,-7],[-18,21],[-6,16],[2,-38]],[[27371,81401],[6,-7],[-4,32],[-6,1],[1,-34],[3,8]],[[27361,81395],[3,-11],[3,13],[0,35],[7,21],[-8,-6],[-10,-46],[5,-6]],[[27376,81383],[2,1]],[[27378,81384],[-7,13],[0,-17],[5,3]],[[27378,81384],[-2,-1]],[[27376,81383],[-3,-44],[11,-32],[6,-5],[-1,40],[-7,33],[-4,9]],[[27369,81310],[1,-3]],[[27370,81307],[3,-1]],[[27373,81306],[1,2]],[[27374,81308],[0,-6]],[[27374,81302],[-2,-8]],[[27372,81294],[0,-3]],[[27372,81291],[6,4],[-4,18],[-2,35],[-7,-9],[6,-13],[-2,-16]],[[27421,81132],[14,50],[2,20],[-9,42],[-4,30],[-11,42],[-17,39],[-4,-7],[5,-38],[5,-16],[3,-35],[-1,-54],[6,-8],[6,-22],[-2,-22],[7,-21]],[[27407,81158],[4,-32],[6,11],[-4,17],[1,19],[-5,21],[-6,1],[4,-37]],[[27481,81039],[8,-12],[8,32],[-9,14],[-17,43],[-8,13],[-1,-19],[7,-36],[-1,-11],[10,-12],[3,-12]],[[27418,81080],[-2,8],[-6,-16],[-1,-16],[-6,-28],[4,-3],[8,33],[3,22]],[[27481,81039],[-8,7],[4,-26],[3,7]],[[27480,81027],[0,2]],[[27480,81029],[1,10]],[[27480,81027],[4,-22],[5,18]],[[27489,81023],[-9,6]],[[27489,81023],[-2,-18],[3,-26],[3,-3],[8,-41],[2,6],[-1,46],[-6,53],[-7,-17]],[[27483,80838],[6,8],[-2,26],[-14,-2],[-3,-48],[6,-6],[7,22]],[[27441,80817],[9,-6],[6,26],[12,-9],[2,21],[-2,15],[-14,32],[16,-21],[5,9],[14,5],[3,12],[4,40],[-3,27],[-2,-15],[-10,17],[0,12],[-15,33],[6,32],[-6,16],[0,12],[-8,45],[-11,33],[-4,-9],[0,-125],[-1,-6],[7,-29],[-2,-7],[-7,39],[-4,-10],[1,-54],[-1,-20],[6,-36],[-4,-20],[-6,-1],[-1,-40],[3,-23],[7,5]],[[27523,80814],[-6,19],[-2,-14],[-2,32],[-5,4],[-2,-24],[4,-28],[-1,-39],[9,16],[5,34]],[[27416,80763],[13,16],[6,14],[-5,32],[0,46],[8,17],[1,20],[-7,4],[3,30],[-1,41],[-3,11],[7,34],[0,64],[-6,-3],[-4,-16],[-5,-38],[-8,-18],[-7,-46],[-8,-70],[-3,-54],[6,-6],[3,-66],[10,-12]],[[27548,80655],[-7,14],[6,-22],[1,8]],[[27632,80621],[4,-25],[11,-17],[7,-27],[1,7],[-10,32],[-13,30]],[[27650,80561],[-8,7],[-3,22],[-8,-11],[20,-37],[-1,19]],[[27642,80555],[-3,-1],[7,-39],[0,25],[-4,15]],[[27659,80497],[-5,48],[-6,-10],[0,-21],[7,-18],[4,1]],[[27674,80427],[1,13],[-7,19],[-7,-8],[13,-24]],[[27682,80411],[10,-25],[0,-7]],[[27692,80379],[4,-17],[5,9],[-1,19],[-10,14],[-13,29],[5,-22]],[[27692,80363],[-9,9],[8,-17],[1,8]],[[27705,80350],[-4,13],[-5,-17],[6,-21],[4,4],[-1,21]],[[27716,80269],[4,26],[-12,34],[-3,-10],[1,-25],[7,-17],[-4,-4],[5,-15],[2,11]],[[27728,80235],[-1,-29],[6,18],[-5,11]],[[27723,80241],[8,-2],[3,-15],[9,-7],[-3,38],[-10,12],[-9,24],[-4,-17],[-2,-31],[8,-2]],[[27803,80087],[-2,24],[-1,-22],[3,-2]],[[27792,80088],[6,4],[1,17],[-10,4],[3,-25]],[[27783,80090],[0,-2]],[[27783,80088],[5,-12],[0,21],[-5,-7]],[[27793,80052],[7,18],[0,13],[-10,-1],[-3,-31],[6,1]],[[27807,80046],[-3,33],[-2,-26],[6,-32],[-1,25]],[[27830,79885],[0,11],[-10,-12],[7,-17],[3,18]],[[28027,78918],[-5,-7]],[[28022,78911],[3,-1]],[[28022,78911],[-1,-16]],[[28025,78908],[-3,3]],[[27690,80332],[-2,-4],[-8,50],[5,16],[7,-31]],[[27692,80363],[0,16]],[[27692,80379],[-1,8],[-15,28],[-13,29],[-8,-28],[-6,4],[0,-44],[6,-27],[-2,-33],[9,-7],[4,-16],[4,-56],[-1,-13],[-3,45],[-4,24],[-5,-2],[-6,21],[0,45],[-8,-3],[1,-21],[-3,-16],[-5,-3],[-2,-37],[3,-21],[7,-14],[-3,-27],[5,-16],[-1,-40],[-4,6],[4,11],[-5,32],[2,31],[-4,4],[-6,28],[0,40],[9,20],[0,57],[3,23],[0,25],[-4,4],[-8,-31],[1,-50],[-8,-20],[-5,18],[-8,-23],[8,32],[4,-10],[7,2],[1,21],[-3,21],[8,41],[6,22],[14,5],[-4,34],[-14,11],[2,14],[-4,23],[-1,28],[-6,-3],[3,15]],[[27633,80590],[2,10],[-12,25],[-4,-4],[5,-34],[-1,-30],[4,-8],[0,-35],[-6,-15],[0,-62],[-5,3],[-7,-14],[-5,10],[-10,-21],[2,12],[8,14],[5,-10],[5,12],[7,3],[-1,55],[6,12],[0,30],[-5,15],[2,20],[-6,40],[-7,2],[-11,29],[-15,4],[4,13],[6,1],[14,-40],[8,-2],[8,13],[2,14],[-4,11],[-9,-1],[-19,17],[-11,27],[-6,26],[-3,0],[-8,-36],[-2,1],[-5,-33],[-8,-11],[1,-45],[5,0],[-1,-36],[7,1],[-1,-19],[8,-15],[6,-21],[-6,-7],[-7,13],[-3,31],[-4,-2],[-4,16],[4,17],[-6,7],[-10,-29],[5,29],[4,1],[-3,41],[-7,1],[-4,-19],[-1,28],[7,27],[6,-14],[3,19],[6,-5],[6,35],[7,15],[-1,11],[-21,54],[-17,58],[-3,-39],[-3,-7],[0,-36],[-2,24],[-5,-23],[-9,-15],[6,-18],[2,-24],[-3,-19],[3,-34],[-7,-1],[-2,17],[7,-18],[-2,26],[1,47],[-7,7],[2,35],[0,44],[-2,10],[-17,-3],[-6,-14],[-9,-34],[0,-19],[-5,-30],[-4,0],[0,25],[5,-13],[2,41],[6,22],[-10,5],[-6,-55],[-5,4]],[[27457,80752],[0,-2]],[[27457,80752],[-15,-25],[7,20],[10,18],[6,18],[2,27],[-8,5],[-7,-24],[-10,8],[-6,-17],[-18,-18],[-5,-13],[-8,23],[-2,46],[-6,4],[-4,-20],[0,-19],[-5,-14],[3,-19],[-2,-22],[-1,34],[-8,-12],[9,37],[3,35],[3,80],[0,41],[6,27],[3,46],[-2,11],[-14,-53],[4,30],[4,4],[5,31],[-3,34],[1,20],[-5,5],[-8,-26],[-8,-1],[16,35],[4,-1],[3,-40],[3,-5],[6,38],[0,45],[-4,-2],[-4,47],[2,36],[-8,-2],[-3,-11],[-7,-3],[-6,8],[1,-21]],[[27381,81197],[-3,10],[2,29],[7,-20],[16,26],[-9,31],[-3,20],[-5,-1],[-8,31],[-3,-5],[4,-22],[-7,-5]],[[27372,81291],[0,3]],[[27372,81294],[2,8]],[[27374,81302],[0,5]],[[27374,81307],[-1,-1]],[[27373,81306],[-3,1]],[[27370,81307],[-1,3]],[[27369,81310],[1,16],[-6,16],[9,21],[-5,26],[-8,-9],[1,15]],[[27361,81395],[-6,7],[-5,-7],[-5,-28],[-4,-4],[-6,23],[-6,-3],[-9,-20]],[[27320,81363],[-1,-10]],[[27319,81353],[-7,-10]],[[28020,78890],[0,26],[6,19],[-13,9],[-17,28],[-16,32],[-28,83],[-15,59],[-10,44],[-21,103],[-13,76],[-3,27],[-13,55],[-13,99],[-6,88],[-2,-7],[0,40],[-4,74],[-1,44],[2,24],[-2,16],[-4,-54],[-1,-46],[2,-16],[-3,-14],[-15,6],[-5,-22],[4,-24],[4,-55],[12,-71],[3,-3],[11,-60],[-1,-7],[-5,35],[-11,31],[-2,26],[-11,51],[-1,-31],[-1,39],[-7,43],[0,50],[6,44],[16,27],[4,32],[-1,26],[6,10],[-3,37],[-12,45],[-2,-49],[-5,-15],[-6,0],[-2,15],[-5,4],[5,11],[7,1],[5,29],[0,23],[-8,12],[3,-29],[-7,-16],[-7,2],[-5,-13],[-5,2],[-7,-15],[26,38],[2,22],[-28,80],[0,25],[-13,-27],[0,15],[5,30],[-6,15]],[[27783,80088],[0,2]],[[27783,80090],[-1,9],[-13,7],[2,-39],[-3,16],[0,26],[-3,-6],[-6,-38],[-14,29],[-6,18],[-1,24],[-5,19],[-3,25],[0,24],[-7,14],[0,-40],[-9,77],[-15,60],[-3,-16],[-6,33]],[[20922,65260],[0,-456],[-1,-4],[0,-2681],[-1,-93]],[[26599,75001],[25,5],[68,0],[18,-1],[4,6],[186,0],[14,-3],[165,2],[5,1],[3,-32],[45,5],[32,1],[-8,34]],[[22828,89436],[3,-11],[1,29],[-4,-18]],[[22834,89161],[2,25],[1,55],[2,27],[1,85],[3,74],[-3,-4],[1,-25],[-4,-59],[1,-62],[-2,-9],[0,-52],[-2,-5],[0,-50]],[[22834,89161],[-2,-4],[0,-41]],[[22832,89116],[2,45]],[[22825,88990],[6,100],[-3,-3],[1,-23],[-3,-39],[-4,-25],[3,-10]],[[22824,88971],[-5,12],[2,-34],[3,22]],[[22816,88858],[2,29],[-3,5],[-2,-25],[3,-9]],[[22802,88764],[-2,3],[-2,-38],[4,35]],[[22801,88672],[7,76],[8,110]],[[22816,88858],[-3,-9]],[[22813,88849],[-5,-30],[0,16],[-8,-43],[-6,-3]],[[22794,88789],[10,-3],[0,-30],[-4,-28],[-5,-17],[1,-13],[-5,-27],[3,-32]],[[22794,88639],[4,29],[0,18],[5,37],[-2,-51]],[[22787,88574],[3,5],[2,26],[-8,-38]],[[22784,88567],[3,7]],[[22745,88359],[5,14],[0,19],[-4,2],[-6,-20],[8,4],[-3,-19]],[[22801,88672],[-4,-19],[-2,-45],[-5,-38],[-3,4]],[[22787,88574],[-2,-37],[3,-5],[-4,-20],[-1,-48],[-4,-14],[2,-88]],[[22781,88362],[3,-13]],[[22784,88349],[2,63],[7,136],[4,49],[4,75]],[[22755,88229],[6,-16],[-1,19],[-5,21],[0,-24]],[[22759,88165],[1,43],[-4,-14],[0,-27],[3,-2]],[[22758,88157],[-4,3],[1,-37],[3,34]],[[22784,88349],[-6,-16],[2,-46],[-2,-87],[1,-63],[-1,-71],[2,-121],[3,-46]],[[22783,87899],[0,-5]],[[22783,87894],[0,-29],[4,-13],[-3,-30],[5,-14],[-3,-22],[0,-51],[9,-67],[0,-29],[6,-55],[2,-5],[7,-67],[3,-7],[1,-36],[4,-19],[0,-29],[7,-40],[2,26],[3,2],[-9,87],[-15,135],[-5,55],[-7,102],[-8,129],[-4,132],[-1,74],[0,100],[3,126]],[[22840,87262],[9,-27],[4,-34],[5,-23],[-1,-22],[7,-8],[1,-24],[-14,11],[-1,-9],[21,-19],[3,9],[-12,58],[-22,150],[-9,82],[-3,-24],[4,-20],[0,-45],[8,-55]],[[22872,87069],[-2,31],[-4,5],[-2,-24],[5,3],[3,-15]],[[22922,86805],[5,14],[-18,77],[-20,102],[-14,98],[-3,2],[3,-35],[2,-48],[9,-23],[9,-77],[-4,5],[4,-31],[3,6],[8,-10],[1,-27],[6,0],[-1,-30],[4,-16],[6,-7]],[[22999,86521],[6,-22],[7,-2],[4,-23],[17,-12],[10,-17],[2,-36],[-3,-2],[7,-38],[3,1],[2,51],[0,-37],[3,24],[-9,51],[-9,27],[-15,28],[-13,29],[-17,46],[-25,76],[-32,114],[-8,33],[-9,-21],[1,-37],[-4,-5],[5,-27],[3,10],[-4,34],[3,9],[2,-28],[8,4],[5,-15],[3,-28],[-4,3],[0,-45],[7,-18],[11,3],[12,-12],[5,-26],[10,-18],[-2,-13],[7,-29],[11,-32]],[[23052,86365],[-3,-18],[5,1],[-2,17]],[[23061,86378],[-4,0],[14,-53],[3,8],[-13,45]],[[23106,86099],[11,-7],[-2,18],[-13,20],[-2,-30],[6,-15],[0,14]],[[23405,85467],[-7,1],[1,-28],[4,2],[2,25]],[[23518,85119],[2,7],[-11,32],[-7,30],[-41,112],[-39,115],[-8,37],[-2,-5],[6,-42],[7,-12],[12,-33],[16,-66],[8,-21],[-3,-12],[3,-11],[7,-3],[0,-22],[7,-17],[15,-12],[0,-10],[-13,10],[4,-15],[11,-20],[8,-3],[7,-14],[0,-20],[11,-5]],[[23504,85121],[1,16],[-6,15],[-6,-7],[1,-37],[3,-9],[7,22]],[[23456,84718],[-6,-66],[8,54],[-2,12]],[[23435,84619],[-3,-21],[5,1],[-2,20]],[[23419,84523],[4,0],[-3,21],[-4,-11],[3,-10]],[[23471,85168],[-3,-13],[-9,-14],[1,20],[-3,21],[-9,20],[-5,0],[2,21],[-9,41],[-1,22],[-17,43],[-6,-23],[-10,0],[-10,-21],[-5,1],[5,14],[1,17],[7,-9],[2,43],[-5,62],[-8,17],[-1,17],[4,19],[-10,43],[-3,32],[2,12],[7,-13],[13,-44],[-2,-22],[5,9],[4,-21],[2,14],[-7,20],[-23,80],[-4,2],[-2,21],[-5,16],[-7,36],[-28,98],[-24,34],[-33,84],[-26,64],[7,-26],[1,-20],[-9,20],[-12,16],[-2,-14],[-12,0],[-26,45],[-15,22],[-3,21],[3,8],[-7,66],[8,-7],[28,-52],[-1,-8],[11,-16],[4,-14],[10,-15],[11,-24],[3,4],[-32,79],[-12,21],[-4,13],[-24,46],[-8,11],[-47,96],[-20,48],[-18,52],[-9,33],[-4,-18],[4,-6],[9,-33],[13,-32],[1,-13],[22,-49],[25,-43],[3,4],[4,-23]],[[23153,86123],[15,-22],[3,-17],[-2,-38],[3,-18],[-8,-2],[-2,18],[-7,-11],[-16,35],[-16,15],[-7,-23],[-9,22],[-6,-32],[5,-20],[-1,-16],[7,-27],[3,-37],[-2,-22],[6,-25],[-7,6],[-4,24],[2,19],[-3,21],[-14,18],[-6,-4],[-7,25],[1,28],[-6,5],[-10,23],[0,-46],[-7,-6],[-3,-22],[3,-53],[-4,-22],[-11,31],[2,9],[7,-10],[-4,54],[4,11],[-4,29],[7,16],[-1,16],[7,-1],[-31,68],[1,-28],[3,9],[10,-20],[-7,-56],[-6,46],[-8,-13],[4,-21],[-5,-13],[-10,1]],[[23012,86047],[-4,-2],[-2,-30],[4,-37],[-6,-5],[-2,-37],[-16,18],[-3,-15],[0,24],[-3,13],[8,31],[1,22],[6,25],[-3,27],[3,24],[-2,25],[-6,9],[10,0],[9,-16],[3,19],[10,18],[5,41],[6,18],[-9,11],[-5,21],[-7,-4],[0,13],[11,9],[5,-27],[7,-10],[-1,-9],[11,30],[2,19],[8,21],[2,35],[-9,1],[-13,34],[-4,4],[-21,44],[-21,51],[-6,6],[5,-19],[-3,-9],[-4,14],[-5,-19],[-5,3],[3,-29],[-3,-51],[-11,-4],[-3,-43],[-9,-24],[0,-30],[-10,22],[0,18],[10,-5],[7,63],[-5,11],[-15,-44],[-6,22],[1,15],[7,34],[11,28],[0,61],[-5,35],[6,40],[-3,42]],[[22943,86599],[-8,25],[-4,25]],[[22931,86649],[0,-8],[-9,25],[-15,55],[-1,12],[-7,3],[-2,-12],[5,-22],[-1,-28],[6,-25],[0,-26],[-4,-19],[4,-17],[3,-46],[-5,24],[-2,-5],[-3,32],[-4,20],[6,24],[-6,35],[-3,55],[-9,-14],[-2,-14],[0,-42],[3,-10],[-3,-17],[-4,19],[-6,8],[-17,35],[-4,15],[-6,-38],[-9,16],[-1,19],[8,18],[-12,39],[-11,60],[7,-19],[15,32],[3,21],[-3,16],[1,21],[-5,13],[-4,32],[3,0],[3,-31],[6,-7],[0,-17],[8,-34],[-5,-12],[6,-27],[9,-2],[-2,-13],[7,-9],[5,-22],[1,-21],[6,18],[-4,22],[0,39],[2,34],[-6,12],[-4,40],[-19,99],[0,23],[-7,32],[-8,69],[-9,2],[-1,-23],[-6,-24],[-2,-23],[-8,-6],[-14,19],[-8,20],[7,-26],[-1,-16],[-22,17],[-12,-4],[0,10],[-7,6],[-2,-29],[-5,7],[-3,25],[9,20],[2,23],[6,4],[6,-12],[5,13],[3,-15],[8,-4],[-3,31],[0,52],[4,32],[6,27],[7,16]],[[22795,87271],[-2,6],[2,29],[4,1],[-3,31],[-6,11],[2,11],[9,-26],[3,-18],[-2,-35],[14,17],[-4,26],[-2,32],[-6,48],[1,31],[-8,29],[-3,47],[-5,52],[0,23],[-5,41],[0,51],[-6,46],[-5,64],[-8,15],[-4,-1],[-9,21],[-7,30],[-9,-8],[7,-32],[4,3],[-1,-27],[7,-22],[-2,-56],[5,-12],[1,-18],[-5,-19],[3,-3],[-4,-28],[5,-7],[-7,-5],[1,31],[-9,3],[-4,-22],[1,-25],[-2,-24],[-1,40],[4,42],[-2,15],[9,-16],[1,14],[8,15],[-7,13],[0,13],[-11,54],[-8,23],[0,-18],[-6,25],[-7,-6],[5,25],[-4,19],[-4,-7],[-2,-39],[-5,-5],[-5,-33],[2,-12],[-19,-84],[-2,18],[5,35],[-5,11],[8,3],[5,40],[-1,9],[5,31],[5,5],[-2,26],[-17,22],[-3,-17],[-7,1],[9,25],[13,-7],[9,-11],[5,45],[10,-1],[14,18],[7,-2],[6,-20],[15,-23],[6,1],[-3,84],[-4,33],[0,76]],[[22762,88062],[-5,25],[-8,-4],[0,22],[5,32],[-4,1],[0,25],[5,10],[1,19],[-3,23],[-14,5],[-2,-6],[-6,17],[1,17]],[[22732,88248],[-1,45],[5,40],[-4,24],[1,51],[-4,14],[5,22],[7,9],[7,48],[8,40],[1,73],[5,62],[1,61],[3,13],[4,52],[0,35],[-2,11]],[[22768,88848],[0,37],[-5,30],[-5,-11],[-4,22],[8,1],[6,17]],[[22768,88944],[-1,18],[-5,22]],[[22762,88984],[4,9],[2,-18],[5,11],[8,-3],[2,43],[-5,14],[2,13],[10,-1],[-13,10],[-4,17],[7,-3],[2,-13],[9,-9],[3,31],[-6,25],[2,3],[1,61],[9,-12],[-6,28],[1,36],[-4,42],[4,-8],[-1,-29],[6,3],[5,30],[-3,51],[6,42],[-4,21],[8,28],[7,9],[12,4],[-3,17]],[[22828,89436],[0,29],[-31,75],[1,3],[25,-64],[12,-26],[-1,9],[-18,40],[0,14],[6,4],[-6,38],[9,-1],[7,-30],[11,-21],[0,-51],[3,79],[0,43],[-9,-14],[-2,14],[-6,-5],[-19,9],[0,21],[-8,-3],[-6,26],[-3,-16],[-9,18],[-2,13],[5,26],[-4,60],[-9,3],[-1,-32],[-2,27],[-3,1],[-8,-39],[0,-18],[-4,-5],[-8,11],[0,-25],[-7,17],[-3,-28],[1,-17],[-4,1],[0,-19],[-11,2],[1,-38],[-5,7],[-6,-45],[-8,-22],[3,-20],[-8,6],[2,-14],[-7,5],[-7,-14],[-15,14],[0,-24],[-3,16],[-6,-5],[-1,-31],[-17,10],[-8,-19],[-12,18],[-5,-12],[-3,12],[-5,-19],[-15,4],[-2,29],[-7,-5],[-4,-24],[-5,7],[-2,-11],[-7,6],[-2,-12],[-2,30],[-4,-20],[-6,-13],[0,14],[-5,13],[-7,-30],[-8,5],[0,-9],[-10,-35],[4,-11],[-7,-6],[-1,18],[-5,-13],[-5,-40],[1,-25],[-15,11],[-4,-32],[-12,-24],[1,-30],[-11,5],[1,12],[-8,3],[1,-20],[-9,-2],[-2,-24],[-6,25],[0,-22],[-4,8],[-1,-28],[-4,-2],[-6,16],[-1,-17],[-3,21],[-10,10],[-3,-9],[0,-26],[-11,-11],[5,-9],[-6,-25],[-8,2],[-2,-12],[6,0],[-4,-35],[-4,8],[-6,-6],[-4,-47],[-7,-6],[-3,14],[-5,-8],[-11,13],[-2,-21],[-6,-9],[-2,-20],[-1,29],[-6,-6],[1,-21],[-6,-11],[-3,11],[-8,1],[-2,-19],[-7,-6],[-5,18],[-6,0],[-1,-14],[-7,-28],[3,-14],[3,-50],[-9,-58],[-13,-19],[0,-44],[-2,-64],[-6,-46],[-3,-50],[0,-40],[-8,-28],[-1,-55],[-6,-36],[-1,-36],[-8,-29],[-6,-1],[-3,-16],[2,-44],[-8,-20],[-8,-9],[-3,-12],[-1,-27],[5,-15],[-8,-28],[-2,-23],[-6,4],[-4,-12],[1,-29],[-3,-28],[5,-17],[2,-24],[-4,-13],[3,-17],[-2,-47],[3,-5],[1,-29],[-2,-42],[-3,-9],[1,-41],[-6,-24],[-7,11],[-3,-14],[3,-32],[-4,-15],[-6,3],[-4,-11],[9,-33],[0,-38],[3,-19],[2,-43],[-3,-33],[4,-36],[1,-30],[-6,-15],[-7,-2],[1,-56],[3,-25],[-5,-20],[-2,-30],[-5,-17],[-7,16],[1,-23],[-5,-27],[-7,2],[-5,16],[-8,-12],[1,-28],[-7,-6],[-7,4],[-16,-98],[-4,3],[-5,-16],[-2,-35],[-9,5],[-2,-38],[-8,-5],[1,-51],[-8,-37],[0,-24],[3,-15],[-2,-25],[-6,-9],[-5,-27],[2,-55],[-14,-10],[-4,-14],[-5,-48],[-1,-40],[-10,-23],[-1,-31],[-4,-14],[-4,-39],[-11,-14],[-4,-13],[-6,0],[-3,-14],[-11,-18],[-3,-58],[-8,0],[-8,-43],[-4,-13],[2,-51],[-8,-39],[0,-14],[-8,-42],[-1,-25],[3,-20],[0,-30],[-9,-40],[9,-21],[1,-13],[-14,-17],[-5,-24],[-3,-28],[4,-25],[0,-20],[-9,-13],[-5,-18],[1,-43],[-5,0],[-4,-16],[-6,-7],[-4,-65],[2,-10],[0,-34],[-7,-20],[-1,-67],[-3,-26],[-8,-1],[0,-33],[-4,-11],[-4,-36],[1,-20],[-10,-5],[2,-24],[-7,-26],[2,-15],[-1,-71],[-4,-43],[0,-50],[-5,-46],[-12,-21],[-3,-29],[-7,-11],[-4,-21],[3,-18],[-5,-54],[-4,-2],[0,-25],[-6,-9],[1,-15],[-5,5],[-6,-20],[-7,-6],[-2,-37],[-15,-32],[-1,-18],[-5,-2],[-14,-29],[-2,-32],[-5,-18],[-2,-35],[-4,-12],[0,-24],[-8,-15],[-8,2],[-4,-14],[-6,1],[-6,-35],[0,-14],[-18,-12],[-5,5],[0,-39],[4,-21],[-3,-46],[1,-26],[-4,-17],[-5,18],[1,38],[-4,22],[-5,-14],[-1,-38],[4,-43],[-2,-17],[-12,-9],[-4,15],[-3,-37],[1,-25],[-8,-24],[1,-27],[-6,-22],[6,-15],[-2,-12],[-9,29],[-4,0],[-2,-26],[1,-24],[-8,5],[-5,27],[-11,7],[1,-55],[-3,-16],[-8,29],[1,26],[-9,-5],[-7,5],[-5,22],[-4,-22],[-4,14],[-3,-11],[-7,9],[-2,-19],[-4,6],[-12,-24],[-3,14],[-6,-3],[1,-32],[-6,-4],[0,28],[-8,-27],[-6,18],[-11,-3],[-5,16],[0,-21],[-8,2],[-4,-24],[-2,25],[-4,-12],[-4,12],[-6,-9],[-5,25],[-9,-12],[-9,3],[-17,-45],[-1,-28],[-3,12],[-9,-4],[-2,-11],[-9,-7],[0,-19],[-5,7],[-1,-12],[-10,-10],[0,21],[-5,-8],[-6,27],[0,25],[-4,33],[0,23],[-5,27],[-4,7],[-15,-24],[-5,8],[-2,-14],[-8,3],[1,26],[-10,27],[-5,-36],[-2,18],[-12,15],[-5,18],[-12,-10],[-4,27],[-2,33],[1,32],[-4,8],[-4,31],[-4,5],[0,46],[-2,17],[-6,-6],[1,33],[-3,-1],[1,33],[-6,8],[0,14],[-5,13],[1,43],[-7,61],[0,50],[5,12],[-4,4],[-2,25],[-3,4],[2,21],[-6,10],[-5,-3],[-3,51],[0,37],[-4,11],[-1,29],[10,22],[1,25],[-9,19],[-4,-13],[-1,37],[-8,3],[-2,17],[-7,-15],[-5,10],[0,26],[-5,32],[0,15],[-6,16],[1,16],[-7,3],[-6,14],[1,17],[-7,20],[0,57],[-5,23],[1,21],[-14,17],[-1,-11],[-16,-13],[-4,12],[-7,-20],[-4,25],[-1,-29],[-8,-8],[2,-25],[-8,9],[-2,-16],[4,-17],[-6,-4],[0,19],[-4,16],[-11,-17],[-8,-20],[-1,-15],[-7,-22],[-3,11],[0,-26],[-8,-42],[-7,-6],[0,-22],[-8,-11],[-1,-17],[-11,10],[-4,-19],[-11,8],[-2,-14],[-18,-27],[-6,-25],[0,-17],[-7,1],[-4,-9],[2,-21],[-2,-30],[-5,9],[-2,-19],[-5,5],[-3,-12],[-17,-13],[-6,5],[-1,-13],[-12,-7],[-3,4],[-15,-27],[-14,-39],[-8,-39],[-9,-18],[-6,-4],[-5,-49],[-10,-37],[1,-41],[-5,9],[-1,-25],[-7,-22],[-14,-12],[-8,4],[-15,-49],[-1,-20],[-17,-50],[-15,-50],[-9,-51],[-2,-74],[-5,-16],[1,-23],[-4,-37],[-11,-46],[-3,-52],[-3,-7],[-5,-39],[-5,-12],[-1,-85],[-3,1],[1,-38],[-5,-29],[3,-19],[-3,-17],[6,-58],[-3,-10],[0,-45],[2,-8],[0,-54],[-3,-16],[-4,-62],[-5,-28],[-6,-5],[-2,-13],[-1,-42],[-4,-3],[-4,-28],[-9,-32],[3,-5],[-1,-31],[-4,4],[-8,-23],[1,-29],[-2,-55],[-2,-5],[1,-53],[-1,-22],[-4,-9],[1,-20],[-7,-69],[-4,-5],[-2,-25],[-6,2],[-7,-14],[-3,-28],[0,-38],[-6,-31],[-6,9],[-10,-10],[1,-16],[-6,-2],[1,-11],[-9,-31],[0,-18],[-9,-15],[-5,4],[1,-25],[-5,3],[-6,-33],[-5,14],[0,-32],[-12,15],[-2,-19],[-10,-22],[-1,21],[-4,-2],[0,-25],[-9,-9],[-3,-20],[-10,1],[1,-30],[-8,-39],[-12,-33],[-9,-35],[0,-21],[-4,0],[-5,-25],[-8,-8],[-6,-45],[0,-33],[-6,-49],[-7,-21],[-4,2],[-1,-23],[-20,-35],[0,-12],[-7,-23],[-9,-2],[-1,-35],[-4,-13],[-12,-59],[-9,-60],[-8,-3],[-3,-29],[-7,-1],[-4,-35],[-2,-36],[-4,0],[-10,-37],[-20,-7],[-10,-36],[-5,0],[-8,-19],[-4,-23],[-9,-13],[-4,-20],[-1,-31],[-4,-15],[-2,-40],[-10,-30],[-6,-80],[-15,-108],[-5,-18],[-1,-23],[-10,-28],[-12,-18],[-4,19],[-6,1],[-10,-47]],[[23767,84643],[0,18],[-6,2],[-28,-8],[-14,4],[-20,22],[-11,18],[-25,48],[-14,23],[-18,37],[-34,58],[-45,87],[-16,39],[-9,30],[-8,56],[-4,-5],[-5,13],[-5,-1],[1,-18],[13,-59],[10,-27],[0,-20],[8,-29],[7,6],[8,-9],[5,-17],[0,-23],[4,-20],[6,-8],[6,16],[13,6],[7,-50],[-3,-7],[-6,15],[-7,6],[-6,-41],[-6,-3],[-12,23],[-31,30],[-5,10],[-11,-2],[-3,-26],[7,9],[4,-15],[-2,-14],[5,-14],[7,-54],[4,-54],[0,-38],[2,-12],[0,-78],[-4,-15],[-6,-2],[1,-35],[-4,-3],[-12,26],[-7,9],[3,-18],[-2,-29],[-9,39],[4,18],[-9,47],[-5,65],[-8,19],[-6,0],[-4,-45],[-9,-11],[-11,-28],[-3,3],[-3,-36],[-7,0],[3,-20],[-1,-24],[-4,-9],[1,-19],[-6,-32],[-5,15],[2,16],[7,12],[-10,8],[0,28],[5,2],[5,21],[3,57],[14,9],[6,27],[-9,41],[0,25],[9,36],[-9,47],[-1,30],[7,36],[9,16],[14,12],[-4,34],[-5,-10],[-8,24],[9,2],[1,31],[-6,16],[3,6],[13,-3],[-5,-31],[8,26],[0,60],[7,15],[-8,19],[-4,0],[0,24],[4,16],[-3,34]],[[18973,66848],[0,352],[1,308],[-1,91],[0,813],[129,2],[57,2],[92,-4],[114,-1],[58,-2],[107,-1]],[[28747,75061],[13,-7],[0,20]],[[28748,75074],[-1,-13]],[[28747,75061],[-4,-1],[3,-18],[1,19]],[[28757,74955],[1,18],[-6,-19],[1,-15],[4,16]],[[28758,74924],[-5,-5],[1,-28],[3,-1],[1,34]],[[28744,74270],[6,7],[-3,19],[-4,-11],[1,-15]],[[28770,74228],[-4,19],[-5,6],[5,-37],[8,-24],[2,11],[-6,25]],[[28779,74169],[-1,23],[-3,-18],[4,-5]],[[28784,74154],[-2,22],[-2,-12],[4,-10]],[[28792,74116],[-5,33],[-6,-5],[-3,19],[-7,1],[4,-26],[17,-22]],[[28793,74074],[0,26],[-7,15],[-4,-1],[0,-21],[4,12],[7,-31]],[[28786,74013],[-6,6],[2,-22],[4,16]],[[28772,73991],[0,19],[5,-7],[2,34],[-5,6],[-4,39],[-1,39],[4,-8],[2,17],[-4,30],[-7,5],[0,-76],[-5,-13],[5,-10],[2,-49],[6,-26]],[[28792,74053],[2,-61],[2,29],[-4,32]],[[28804,73968],[0,-29],[12,-47],[-1,25],[-8,31],[-3,20]],[[28780,73942],[-5,36],[-8,11],[-3,-5],[4,-27],[6,-6],[-2,-21],[5,-52],[2,20],[-4,13],[0,17],[5,14]],[[28389,73864],[1,16],[-5,32],[-1,-41],[5,-7]],[[28794,73930],[2,-42],[0,-35],[3,2],[-3,69],[-2,6]],[[28833,73759],[-8,55],[-7,57],[-2,-7],[2,-34],[4,-20],[1,-30],[-5,-2],[2,-15],[7,-5],[3,-18],[3,19]],[[28661,73689],[0,20],[-5,-20],[-5,5],[7,-28],[3,23]],[[28828,73651],[0,-4]],[[28828,73647],[8,-13],[-2,-18],[9,-26],[1,-20],[6,15],[-14,86],[-4,35],[-4,10],[-3,-24],[3,-41]],[[28742,73215],[-4,9],[-1,-50],[5,13],[0,28]],[[28887,73098],[0,21]],[[28887,73119],[-4,12],[4,-33]],[[28905,73028],[4,13],[-5,17],[-3,-14],[4,-16]],[[28731,73016],[2,37],[-4,6],[0,-43]],[[28929,72976],[-10,57],[1,27],[-11,15],[0,21],[-6,3],[6,-50],[3,-6],[12,-51],[0,-16],[5,0]],[[28887,73098],[1,-21],[-5,9],[-5,40],[-1,24],[9,3],[1,-34]],[[28887,73119],[3,-7],[9,8],[-2,24],[-4,-3],[-14,62],[-9,55],[-4,42],[-6,36],[-6,62],[-2,-7],[3,-29],[0,-35],[-7,44],[0,25],[5,34],[-4,68],[-5,57],[0,-30],[3,-17],[-6,-7],[-3,-26],[3,-16],[-4,-6],[-8,63],[3,10],[4,-14],[0,38],[5,6],[1,26],[-7,25],[-6,-21],[-4,11],[4,34],[-1,16]],[[28828,73647],[0,3]],[[28828,73650],[0,1]],[[28828,73651],[-4,-5],[-3,29],[-4,-1],[5,-25],[-5,-20],[1,-25],[-3,2],[-10,55],[3,19],[6,-13],[0,13],[7,11],[-5,14],[0,17],[9,-17],[1,42],[-8,9],[-2,-9],[-2,-44],[-3,9],[-4,-20],[-5,-3],[-10,40],[4,-28],[-7,21],[1,21],[-4,18],[4,5],[-3,23],[1,18],[8,21],[-8,9],[-3,13],[-4,-22],[-5,17],[-4,32],[-7,29],[1,17],[-6,45],[-2,58],[1,24],[-3,27],[3,5],[-1,24],[-4,23],[0,96],[-2,19],[-6,0],[-2,-56],[-10,-63],[0,-40],[5,-1],[1,-42],[-4,32],[-3,-3],[-3,-28],[4,-60],[7,-20],[-2,-32],[-1,24],[-6,19],[1,-40],[9,-55],[-1,-19],[6,-14],[5,6],[-7,-24],[8,-42],[-10,21],[0,-34],[6,-41],[5,-4],[11,-40],[-1,-14],[-5,27],[-11,23],[3,-71],[6,-24],[0,-19],[8,-2],[5,9],[12,-11],[-11,4],[-6,-14],[-11,4],[2,-31],[5,-9],[6,15],[-8,-34],[3,-33],[3,-6],[2,30],[8,-12],[2,-21],[-6,10],[-3,-20],[0,-27],[7,-3],[-1,-19],[8,-4],[10,12],[-13,-23],[2,-34],[5,-3],[-3,-16],[11,-15],[-1,-15],[-8,-6],[5,-17],[9,-1],[2,-22],[-6,-7]],[[28795,73289],[3,-16],[-7,-4],[0,-16],[7,-20],[1,22],[7,-1],[2,53],[0,-34],[6,-17],[4,1],[2,-23],[-4,9],[0,-39],[5,-34],[3,21],[4,-4],[1,-25],[-6,-18],[5,-13],[-1,-30],[4,-15],[-20,15],[-2,-25],[8,-36],[4,13],[6,-18],[10,7],[2,-29],[-2,-27],[4,-2],[-1,-17]],[[28840,72967],[3,-11]],[[28911,72925],[0,10],[-7,10],[-3,22],[-4,0],[-2,53],[4,22],[-4,3],[7,25],[-10,13],[0,20],[-5,-5]],[[28949,72907],[-19,126],[-5,54],[-7,54],[-8,29],[-8,-44],[8,7],[4,14],[4,-11],[2,-27],[-10,-3],[1,-20],[10,-19],[0,-12],[8,-24],[-2,-20],[6,-29],[0,-33],[4,5],[2,-33],[4,-11]],[[28640,73507],[-3,15],[-8,-28],[-5,0],[-6,-16],[-2,-27],[-3,14],[-7,-27],[5,-12],[-3,-26],[1,-33],[-4,15],[-9,-28],[8,42],[-3,4],[3,22],[-4,26],[-6,9],[6,4],[-5,15],[-6,-26],[-1,-59],[-10,-59],[-3,-45],[-5,-3],[-9,-25],[2,-21],[-3,-16],[-4,26],[-8,-43],[-6,5],[-7,-20],[-4,-27],[2,-22],[-9,-15],[-3,-45],[-11,-32],[-6,-3],[-4,-27],[1,-54],[-3,21],[-4,-18],[-7,-6],[0,-26],[-4,-67],[-4,-36],[-10,-19],[-6,1],[0,-21],[-5,-11],[-3,23],[-4,5],[0,-18],[-5,-13],[-1,-51],[-2,59],[7,27],[12,-23],[-2,21],[4,13],[15,15],[3,65],[-3,0],[3,35],[-3,28],[2,16],[12,6],[-3,23],[7,25],[5,34],[5,1],[1,16],[8,13],[4,51],[3,10],[1,26],[5,20],[3,33],[4,19],[12,12],[-1,25],[6,16],[10,5],[-1,8],[9,37],[0,28],[5,37],[-1,7],[-8,-13],[9,27],[-4,3],[17,67],[12,-2],[10,5],[6,-5],[0,42],[12,17],[14,3],[11,15],[-3,21],[-8,-2],[2,11],[-8,6],[-13,-7],[-3,19],[-5,-1],[-1,16],[-11,-33],[-5,3],[0,-15],[-5,-14],[-1,12],[-6,-12],[10,35],[6,1],[6,26],[10,14],[5,-9],[0,-20],[9,1],[7,32],[5,3],[1,20],[7,0],[7,20],[-9,20],[11,4],[6,42],[-2,37],[3,33],[-3,27],[-12,-2],[6,11],[2,42],[-2,27],[-1,-21],[-8,-8],[2,-32],[-5,13],[-5,-31],[3,-32],[-5,-25],[4,-26],[-6,21],[3,20],[-2,34],[-11,-25],[-2,-48],[-13,-4],[0,-42],[-2,0],[-1,48],[11,15],[0,58],[-4,-20],[-6,3],[-2,-22],[-9,-17],[2,18],[6,11],[-2,30],[6,13],[1,-11],[4,26],[7,13],[-4,26],[-7,-17],[-6,18],[5,1],[0,21],[-7,3],[9,10],[3,-21],[4,7],[5,-11],[-2,19],[6,11],[-2,34],[2,6],[-11,2],[-11,21],[-6,-6],[-6,10],[-1,-34],[-7,-16],[0,-23],[-3,9],[-5,-18],[-3,-33],[-2,11],[-3,-28],[-7,-25],[-6,-42],[-4,-12],[-3,-38],[-2,8],[-5,-15],[-10,-52],[-4,-44],[-12,-40],[-1,-34],[3,-18],[-4,-28],[2,32],[-7,17],[-6,-26],[-3,22],[-6,20],[-4,-19],[4,-12],[2,-46],[-5,-9],[-4,8],[2,36],[-7,7],[1,-25],[-3,-10],[-10,19],[0,33],[-8,-8],[6,-16],[-2,-6],[-5,22],[6,12],[4,-5],[0,-31],[10,-12],[0,29],[9,-3],[-2,-38],[5,-7],[2,19],[-7,54],[5,12],[5,-7],[7,-36],[5,45],[-1,31],[12,24],[1,36],[3,22],[15,59],[6,52],[8,43],[7,52],[9,29],[-2,12],[12,12],[7,37],[5,4],[3,18],[8,17],[13,-11],[1,22],[8,37],[-1,12],[-10,-20],[-4,15],[7,-7],[3,19],[-5,35],[8,-17],[5,6],[0,17],[6,2],[-4,-14],[6,3],[-3,-22]],[[28637,74181],[4,1],[4,28],[11,23],[-4,22],[-11,14],[0,-14],[-5,-12],[-5,12],[8,13],[3,36],[-2,15],[7,-19],[1,-24],[4,8],[6,-13],[4,18],[-4,47],[-5,81],[-3,1],[4,-38],[-7,22],[-5,-12],[-1,19],[-8,10],[-4,15],[-6,39],[-6,-12],[-6,-43],[-3,-40],[-13,-37],[-5,-22],[0,-17],[-4,-12],[-3,-27],[-4,-1],[5,39],[-4,4],[-4,-28],[-10,-29],[-2,-36],[5,-24],[-4,-54],[-3,-20],[-8,-21],[-10,0],[-10,15],[-8,-4],[7,16],[-2,17],[-5,2],[-6,-26],[-4,-35],[-7,-15],[-14,1],[1,-28],[-4,-20],[1,-18],[6,-9],[-5,-17],[1,-54],[-3,-21],[1,52],[-3,13],[3,18],[-3,43],[3,13],[-11,40],[-7,-5],[-5,-18],[-7,-41],[-1,-38],[-7,-12],[-7,17],[-8,33],[-3,-2],[0,-61],[-12,9],[-2,8],[-10,-1],[-11,-22],[-15,8],[-2,-29],[6,-32],[0,-26],[-5,-9],[-4,15],[0,29],[-6,-4],[-2,-22],[3,-36],[-5,-10],[0,56],[2,12],[10,16],[-5,25],[-2,25],[5,-6],[3,21],[5,10],[6,-7],[1,-16],[5,12],[1,20],[6,5],[5,-18],[11,3],[8,-16],[2,52],[9,13],[4,-33],[8,-17],[4,1],[-1,26],[4,49],[-5,18],[7,-10],[8,14],[13,44],[10,-12],[18,4],[-1,30],[3,-6],[10,34],[5,27],[7,0],[6,-41],[3,-33],[5,32],[-1,52],[2,15],[1,56],[-3,26],[0,27],[4,25],[12,5],[10,23],[-1,29],[-8,-10],[-3,21],[11,-2],[5,-14],[10,29],[3,21],[8,17],[0,28],[-5,-15],[2,38],[-8,22],[0,12],[10,-32],[3,19],[-1,17],[-8,11],[1,13],[-5,16],[-1,22],[-9,22],[-1,19],[4,18],[-1,-26],[6,-1],[0,-12],[6,-14],[1,-25],[7,-16],[8,-7],[1,-26],[3,-8],[14,15],[1,-42],[9,3],[3,91],[-5,7],[-2,22],[-3,-4],[-6,16],[0,17],[5,-23],[4,2],[5,-24],[8,-9],[9,28],[11,2],[3,10],[4,-17],[-7,4],[-12,-8],[-10,-43],[7,-43],[8,32],[1,-14],[-5,-4],[0,-17],[-11,-14],[-1,-22],[1,-48],[8,10],[2,17],[6,-11],[1,-18],[12,35],[13,17],[-1,25],[5,-1],[-3,-26],[11,11],[11,21],[0,15],[-6,13],[3,12],[2,-17],[8,24],[1,31],[1,-53],[-6,-9],[-1,-13],[8,-15],[6,-21],[7,0],[5,12],[7,141],[10,158],[9,92],[8,110],[2,41]],[[28768,75074],[-3,-7],[4,-30],[-3,-16],[3,-8],[-7,-42],[-2,-76],[-6,-65],[-4,-4],[-4,23],[5,3],[-6,46],[4,25],[-6,-2],[-2,36],[0,58],[-2,28],[4,31]],[[28734,75074],[0,-20],[-7,-18],[-2,-23],[-2,13],[5,48]],[[27075,73630],[5,13],[1,24],[5,0],[-18,42],[1,43],[9,9],[6,24],[-2,5],[5,33],[-4,38],[3,34],[8,23],[1,16],[5,-1],[5,24],[3,44],[6,9],[6,-10],[6,4],[11,33],[1,34],[4,-4],[3,16],[12,41],[30,-7],[5,-20],[11,-20],[0,-17],[12,-19],[5,-21],[9,-2],[4,-50],[6,-14],[5,-30],[7,38],[12,47],[19,66],[16,-41],[17,-26],[13,-9],[22,-23],[1,16],[7,-5],[15,-30],[7,-30],[6,-15],[-9,-55],[6,-40],[1,-26],[5,4],[9,31],[7,15],[4,33],[14,-24],[19,-49],[25,-71],[14,-17],[5,35],[-1,32],[6,19],[9,-22],[22,-62],[-1,-7],[10,-13],[9,-21],[4,-37],[-7,9],[-6,-13],[5,-14],[-4,-28],[25,-64],[5,-29],[-9,-27],[-7,-33],[-5,-35],[12,-55],[-3,-7],[3,-47],[7,-19],[-1,-20],[3,-26],[4,-9],[3,-29],[4,-7],[-1,-18],[9,-49],[3,5],[6,-22],[12,-66],[9,-27],[16,-80],[9,-100],[8,-37],[-4,-8],[-1,-33],[7,-30],[-1,-41],[6,-16],[19,-84],[4,1],[1,-18],[7,-11],[0,-18],[-6,-41],[4,-25],[5,-10],[4,-38],[6,5],[4,-13],[-1,-27],[7,-55],[5,-21],[0,-39],[-3,-26],[1,-29],[7,-20],[2,-18],[-3,-14],[3,-62],[4,-30],[31,61],[17,138],[45,68],[9,-9],[0,-21],[4,-9],[4,-27],[3,3],[1,-24],[8,-34],[1,-46],[14,-103],[-1,-11],[4,-45],[7,-44],[8,1],[2,-42],[-2,-8],[1,-41],[4,-38],[5,-25],[3,-45],[5,0],[1,-26],[5,-21],[3,-40],[35,131],[6,-49],[5,-29],[8,-81],[4,-27],[9,-26],[1,-18],[9,-29],[0,47],[11,-32],[6,-33],[3,-31],[5,-20],[8,26],[12,-75],[2,-6],[-6,-22],[13,-55],[7,-41],[11,-26],[6,-27],[3,-31],[7,-22],[-10,-45],[6,-31],[5,-40],[-5,-25],[4,-27],[12,-59],[6,-54],[-8,-9],[7,-44],[-5,-36],[4,-22],[0,-59],[33,113],[6,23],[37,128],[31,111],[12,39],[25,89],[7,-63],[1,-38],[12,-98],[2,-42],[5,-32],[4,-10]],[[28432,71595],[8,11],[1,10]],[[28441,71616],[0,2]],[[28441,71618],[0,4]],[[28441,71625],[1,4]],[[28442,71630],[0,4]],[[28442,71634],[1,2]],[[28443,71636],[1,1]],[[28444,71637],[2,6]],[[28446,71643],[4,29],[-2,36],[0,63],[-3,16],[2,53],[0,37],[-3,14],[-8,-2],[-5,20],[-8,-11],[2,31],[-3,15],[-9,-14],[-7,3],[6,7],[5,17],[5,46],[-9,-5],[0,15],[-11,15],[-3,-27],[6,-27],[-13,-14],[4,28],[-6,15],[0,43],[-3,10],[3,13],[-5,12],[2,30],[-8,47],[0,-22],[-7,-17],[5,26],[1,36],[-3,9],[-7,77],[1,48],[3,43],[-7,-37],[-8,-26],[4,43],[10,44],[5,14],[3,29],[-10,5],[-4,-10],[-8,4],[10,21],[12,-7],[7,17],[6,1],[10,-14],[12,-8],[6,-32],[17,-5],[7,-42],[3,-2],[8,33],[0,65],[-7,23],[-7,-4],[9,16],[9,49],[7,13],[4,21],[1,29],[-4,9],[2,26],[13,18],[10,38],[11,16],[15,-8],[4,3],[8,47],[6,7],[0,38],[3,5],[2,-28],[-5,-26],[6,-20],[0,-13],[10,18],[7,37],[-3,32],[4,-5],[2,-71],[5,10],[3,27],[0,24],[9,33],[9,21],[0,16],[5,30],[-8,8],[-1,15],[-6,6],[8,4],[0,32],[3,2],[-1,-39],[6,0],[14,31],[-5,8],[4,40],[3,7],[-1,-28],[6,0],[7,30],[5,9],[-1,49],[4,6],[-2,-35],[3,-15],[7,10],[0,25],[3,-23],[7,16],[-6,17],[8,-11],[14,34],[4,22],[-12,4],[4,12],[8,2],[1,11],[-1,60],[-5,29],[-4,-3],[1,-46],[-5,20],[-5,5],[-5,-35],[-5,9],[-7,-27],[-10,-9],[0,7],[11,17],[-1,15],[8,16],[3,-15],[8,54],[-3,29],[7,11],[-4,6],[-3,43],[3,29],[-6,-19],[8,65],[-4,22],[-9,-4],[6,15],[-9,8],[6,20],[1,41],[4,6],[1,-23],[7,12],[2,30],[-6,-9],[-13,-3]],[[29478,62004],[74,-9],[31,3],[17,-3],[52,0],[30,4],[15,9],[29,-1],[41,8],[28,-3],[32,0],[34,-4],[22,0],[30,-5],[78,-4]],[[15533,60036],[1,-7],[9,23],[3,34],[11,20],[-12,1],[-8,-9],[-4,-23],[-9,-25],[1,-40],[8,26]],[[15370,59534],[4,27],[5,12],[0,55],[2,13],[0,21],[-7,4],[-2,-50],[-7,-17],[0,-62],[3,-22],[2,19]],[[15346,58723],[8,14],[-2,6],[-6,-20]],[[15399,58717],[6,11],[-2,8],[-4,-19]],[[15715,58394],[5,-8],[-1,-25],[5,-22],[10,24],[-1,53],[-7,-5],[0,36],[-3,-8],[-8,-45]],[[15662,58283],[1,-10],[5,25],[0,33],[4,41],[-7,-40],[0,-28],[-3,-21]],[[15719,58304],[7,-40],[6,1],[3,26],[6,0],[1,28],[-10,13],[-11,-15],[-2,-13]],[[15735,58186],[6,5],[16,62],[-3,33],[-3,-2],[-7,-42],[-5,-26],[-4,-30]],[[15663,58241],[3,-18],[0,-46],[9,-7],[9,-27],[-5,37],[2,16],[-2,42],[4,19],[0,17],[3,24],[-2,55],[-7,16],[-5,-64],[-9,-38],[0,-26]],[[15775,57977],[4,-38],[0,-52],[4,-44],[5,-15],[2,-47],[5,11],[-2,35],[8,32],[-4,22],[4,52],[-2,9],[4,28],[7,4],[7,23],[-7,7],[-11,29],[-4,38],[-7,-8],[4,-45],[3,5],[6,-30],[-2,-28],[-7,6],[0,19],[5,-5],[-2,16],[-9,4],[-2,45],[0,41],[-9,-6],[0,-47],[2,-32],[-2,-29]],[[15781,57724],[7,5],[-4,20],[-3,-25]],[[15824,57680],[-2,-31],[2,-4],[0,35]],[[15757,57520],[4,-19],[5,-1],[-2,-15],[0,-51],[2,-16],[7,29],[6,-7],[2,14],[-2,57],[4,10],[-6,15],[7,33],[0,22],[-3,-9],[-6,14],[8,5],[0,31],[-6,1],[11,23],[-13,16],[-2,-22],[-5,-29],[-5,22],[-2,-13],[0,-63],[-4,-47]],[[15828,56897],[7,13],[-4,6],[-3,-19]],[[15712,56808],[7,-26],[2,29],[0,24],[5,60],[2,-17],[-2,-22],[0,-45],[-5,-49],[7,-10],[0,36],[2,18],[0,49],[5,21],[0,28],[-5,14],[-10,-30],[-5,-40],[0,-37],[-3,-3]],[[15657,56723],[6,-22],[5,10],[-11,12]],[[15706,56532],[5,-49],[6,-41],[3,-42],[3,-9],[10,-70],[2,-31],[2,-61],[5,-7],[4,16],[6,-26],[5,29],[3,44],[-6,24],[12,22],[11,41],[4,41],[-6,21],[-9,9],[-6,-30],[-9,1],[-7,48],[-2,-20],[1,-16],[-6,18],[2,24],[0,24],[-4,19],[-11,5],[-7,10],[4,32],[7,-14],[13,-5],[5,5],[6,27],[0,14],[7,34],[1,35],[4,21],[2,57],[-5,17],[5,48],[4,14],[-1,29],[3,8],[-2,57],[7,-10],[2,-35],[-2,-22],[2,-33],[-4,-41],[9,1],[13,77],[16,31],[4,-1],[0,64],[7,40],[0,41],[-7,43],[0,35],[-7,-11],[3,-21],[-7,21],[-5,-7],[-4,-33],[2,-19],[-2,-34],[-6,-32],[-7,-8],[-7,14],[-2,18],[-6,5],[-1,-15],[2,-30],[-4,-23],[-6,-5],[-8,-37],[3,-19],[0,-33],[-4,-16],[1,-50],[3,-13],[-1,-53],[-3,-36],[-12,-13],[-5,16],[-4,-10],[0,-28],[-6,-27],[-9,-17],[-7,-30],[-2,-17]],[[15723,56090],[7,-13],[0,20],[-7,-7]],[[15688,56028],[5,-15],[9,0],[-3,52],[-5,15],[0,-22],[-6,-30]],[[15657,56086],[6,-68],[3,20],[-1,-72],[7,-11],[8,6],[-3,17],[7,14],[-7,53],[7,37],[-1,36],[3,9],[0,25],[7,-28],[-5,-15],[5,-14],[2,11],[-2,25],[4,12],[-2,51],[-9,-18],[-5,2],[2,18],[-11,-3],[5,-8],[-3,-17],[7,-1],[0,-10],[-9,-12],[-6,3],[-3,-23],[-4,8],[-2,-47]],[[15690,55929],[5,-28],[2,3],[9,42],[0,14],[-9,40],[-7,-41],[0,-30]],[[15739,55980],[3,-36],[-3,-42],[4,3],[3,24],[8,28],[6,11],[1,37],[-6,-14],[-12,19],[-4,-30]],[[15637,55915],[13,-22],[9,16],[6,-5],[5,9],[-4,26],[-7,5],[0,25],[-7,-10],[-4,6],[-4,-53],[-7,3]],[[15715,55907],[2,-5],[3,-29],[3,-9],[12,71],[-7,28],[2,15],[-10,3],[0,-39],[-3,-4],[-2,-31]],[[15586,55886],[8,-41],[-6,60],[-2,-19]],[[15644,55994],[4,-2],[2,24],[-2,14],[-7,-10],[-4,9],[0,40],[2,31],[7,23],[8,-6],[-1,26],[-21,-15],[-9,-31],[3,-18],[-11,7],[-12,-40],[-6,-36],[0,-40],[-3,-21],[1,-49],[6,11],[-4,-28],[4,-46],[3,8],[9,-4],[2,17],[-1,21],[8,15],[10,50],[5,3],[4,20],[-4,10],[7,31],[0,-14]],[[15726,55839],[6,-10],[5,15],[0,21],[-11,-16],[0,-10]],[[15597,55794],[11,10],[5,17],[-8,-7],[-8,-20]],[[15577,55723],[9,2],[-1,12],[7,12],[2,-12],[3,30],[-5,8],[-9,-18],[-6,-34]],[[15634,55836],[3,-23],[2,-29],[9,-40],[6,-13],[5,-46],[9,-8],[9,3],[13,28],[9,32],[16,32],[-4,22],[-12,29],[-4,25],[2,22],[-7,8],[0,-24],[-6,-13],[-4,-45],[-3,6],[-2,-27],[0,-46],[-4,-18],[-6,12],[3,62],[7,27],[0,16],[6,46],[-6,24],[-14,-7],[-6,-18],[0,-44],[-3,-1],[-4,-22],[-3,19],[3,23],[2,28],[-5,-3],[-4,-33],[-4,23],[-3,-27]],[[15741,55682],[9,7],[2,18],[-6,2],[-5,-27]],[[15623,55704],[5,-8],[3,-21],[8,-11],[2,49],[-4,24],[-6,8],[1,-24],[-9,-17]],[[15720,55648],[3,-30],[7,24],[-2,8],[7,57],[11,33],[5,31],[1,39],[-8,-21],[-11,-59],[-3,-36],[-4,-21],[-5,-1],[-1,-24]],[[15665,55587],[10,21],[0,12],[-7,-9],[-3,-24]],[[15617,55167],[15,0]],[[15632,55167],[5,45],[-6,-1],[-10,10],[-4,-54]],[[15739,56213],[-5,-21],[-1,-36],[6,-18],[0,-32],[-6,-33],[-7,-2],[4,-31],[5,9],[13,-28],[7,4],[-3,20],[7,71],[2,4],[0,-60],[5,-4],[6,57],[5,15],[7,0],[7,-30],[-5,-22],[0,-84],[-4,-22],[-1,-28],[-9,-18],[-6,3],[0,-26],[4,20],[13,0],[3,13],[-3,10],[3,14],[6,-3],[9,-42],[2,-35],[-6,-38],[-5,-6],[-11,-54],[3,-27],[-1,-54],[-4,14],[-2,-47],[9,-54],[-7,-11],[-7,-33],[-8,-4],[-9,13],[-12,62],[-4,36],[-5,-38],[8,-83],[-7,-9],[-2,-22],[-9,6],[0,22],[0,-70],[-3,-37],[-9,-27],[-9,-37],[-2,-22],[11,-31],[2,-33],[-8,-20],[-5,17],[-8,-14],[1,-30],[7,-35],[2,12],[9,22],[5,-8],[-2,-34],[-3,-11],[-1,-26]],[[15711,55167],[182,0],[95,9],[54,-4],[44,-1],[21,-2],[66,2],[22,-1],[205,0],[55,2],[40,-1],[530,0],[13,-1],[178,0],[57,3],[32,-1]],[[15583,60065],[-4,3],[-9,29],[-5,5],[-13,-18],[-6,-33],[-18,-58],[-3,-21],[0,-25],[-13,-50],[-9,-2],[-18,21],[-15,2],[-13,-11],[-3,-10],[0,-34],[-2,-24],[-11,10],[-2,20],[-5,-5],[-4,29],[-3,1],[-6,-17],[-3,1],[-4,24],[-4,0],[-11,50],[-14,-21],[-6,-29],[-11,-67],[-9,-11],[-11,40],[4,32],[-5,-13],[-6,19],[2,-53],[2,-9],[2,-47],[0,-58],[0,-92],[1,-11],[0,-109],[-1,-6],[0,-71],[0,-58],[-2,-46],[0,-69],[2,-21],[7,32],[-6,0],[2,29],[8,59],[-2,51],[0,121],[0,53],[3,16],[0,101],[5,10],[6,-11],[8,20],[0,-56],[8,-33],[-3,-16],[-2,-44],[4,5],[0,34],[10,7],[10,29],[3,42],[0,-39],[-13,-39],[-5,-4],[0,-25],[-9,-23],[-2,-38],[6,-12],[1,-28],[6,1],[2,-65],[-4,-7],[-4,-24],[-1,-32],[-9,-43],[0,-43],[5,33],[7,6],[-5,-19],[-2,-28],[5,-13],[1,-32],[-2,-8],[7,-12],[11,-34],[5,-3],[6,24],[0,23],[7,16],[5,-26],[-7,23],[-3,-32],[-6,-29],[-2,-27],[-10,-23],[-2,-36],[-9,20],[0,24],[-8,2],[-9,-22],[2,38],[-5,3],[7,13],[-10,4],[-1,-16],[-7,-16],[-18,-25],[0,-72],[-8,-163],[-5,-51],[7,-13],[6,19],[0,22],[-2,10],[2,34],[9,14],[-4,6],[2,17],[5,-27],[6,29],[5,3],[-9,-44],[-4,-10],[2,-40],[11,-19],[9,-31],[6,3],[7,-16],[16,-17],[6,-21],[9,-8],[3,-29],[-9,23],[-9,-16],[-9,-4],[-11,7],[8,-20],[-8,-4],[-15,2],[-5,-15],[4,-23],[-4,-13],[-3,-32],[-9,-22],[-17,2],[-7,13],[-2,26],[4,29],[0,61],[5,38],[4,-3],[0,20],[-7,-18],[-8,9],[2,11],[-5,4],[0,-48],[0,-155],[0,-8],[-2,-108],[1,-23],[-3,-17],[-5,-125],[-4,-50],[0,-18],[-6,-75],[-5,-14],[-4,4],[-7,-78],[-6,-14],[-1,-53],[-4,-46],[-1,-118],[-3,-92],[-3,-23],[-2,-78],[-3,-32],[0,-37],[-6,-80],[-3,-12],[-2,-83],[-2,-26],[-5,-10],[-8,-28],[-2,-31],[-1,-41],[-6,-21],[-9,-18],[-5,-51],[-10,-26],[-5,-3],[-7,-22],[2,-15],[-6,-67],[-3,-11],[-3,-31],[1,-34],[-4,-24],[0,-85],[-3,-20],[0,-56],[1,-13],[-1,-32],[-4,-18],[-4,-44],[-3,-30],[9,-34],[3,-59],[-4,-31],[6,-29],[0,-36],[-2,-24],[6,-12],[3,-59],[-5,-19],[-4,5],[-5,-29],[-2,-20],[-5,-19],[0,-9]],[[15160,56264],[16,-16],[10,10],[4,32],[10,-11],[8,12],[4,26],[6,6],[22,55],[3,18],[11,34],[9,-1],[7,20],[9,12],[2,14],[8,13],[5,-17],[9,12],[25,61],[8,9],[-2,28],[13,29],[3,13],[15,9],[5,13],[9,-3],[2,8],[15,1],[7,12],[9,-9],[5,8],[9,-1],[4,-8],[11,2],[4,-16],[11,9],[7,16],[5,26],[9,7],[11,-28],[5,5],[8,28],[9,-3],[5,-10],[0,18],[10,19],[8,6],[13,-5],[8,8],[9,-14],[11,9],[9,-24],[12,-54],[8,-28],[5,-3],[-4,19],[-3,-14],[-10,49],[15,-13],[6,9],[2,23],[9,25],[5,30],[3,30],[-1,52],[9,54],[4,7],[0,-31],[-4,-19],[2,-20],[-4,-34],[6,-16],[14,-11],[9,4],[-3,38],[2,26],[12,21],[4,23],[0,43],[-7,29],[10,-5],[4,-11],[2,-43],[0,-36],[-6,-12],[-7,-37],[-5,-2],[5,-23],[-2,-34],[13,-44],[16,-16],[8,-1],[-4,23],[4,23],[-9,25],[-6,30],[5,14],[4,39],[2,26],[4,25],[5,-12],[4,74],[5,29],[6,5],[-2,42],[2,41],[-6,8],[4,8],[9,-27],[0,45],[5,26],[7,2],[-3,19],[-2,-20],[-2,35],[-3,9],[-13,-9],[2,30],[0,34],[-10,36],[-8,17],[2,43],[-3,46],[-5,23],[-3,28],[0,28],[3,21],[-11,18],[-5,-16],[0,-29],[5,-18],[0,-53],[4,-16],[3,-50],[0,-36],[-3,-5],[-4,-66],[-2,14],[-1,41],[2,12],[-1,32],[-7,21],[-2,-2],[2,-52],[-2,-26],[-4,27],[1,73],[3,10],[0,46],[-7,-14],[-2,26],[0,32],[-3,9],[2,30],[-6,41],[2,32],[-7,-8],[-4,34],[-11,25],[-9,90],[-11,61],[0,39],[-11,61],[-7,18],[2,19],[-9,86],[0,18],[-4,32],[0,34],[6,17],[5,2],[4,-31],[9,15],[9,-1],[18,-50],[4,0],[12,-17],[11,-36],[7,-39],[0,-19],[-4,21],[-21,47],[-11,14],[-11,36],[-2,27],[-7,-16],[-9,-11],[-7,3],[-2,-30],[4,-55],[5,-39],[4,-14],[3,-33],[8,-37],[0,-29],[7,-37],[5,-42],[4,-5],[3,-43],[4,-3],[8,-22],[1,-39],[15,-28],[2,-16],[7,-14],[-2,30],[9,-29],[15,-25],[2,-25],[-2,-64],[9,-58],[0,-25],[9,-24],[0,-30],[9,-26],[2,-20],[7,-19],[4,-36],[8,0],[-3,26],[3,45],[4,-8],[0,-36],[-3,-28],[0,-36],[-4,-48],[0,-13],[-7,-22],[0,-24],[4,0],[1,24],[5,10],[9,1],[6,12],[2,83],[4,26],[0,37],[5,21],[0,19],[-4,30],[4,11],[4,28],[0,31],[-11,9],[-10,-7],[-1,-23],[-4,18],[5,30],[-5,34],[-4,13],[-3,26],[-5,-12],[0,-16],[-10,-39],[-3,-23],[-2,25],[6,34],[8,15],[-1,21],[1,56],[-3,10],[9,20],[-2,62],[2,9],[-5,46],[-1,5],[-12,-45],[-2,-32],[-4,-20],[1,-28],[-6,-16],[-4,49],[0,32],[6,-6],[0,44],[3,19],[0,-37],[4,-19],[-2,35],[4,-11],[2,15],[5,2],[2,26],[-14,28],[-6,35],[24,-39],[11,-61],[5,-10],[1,39],[4,4],[-3,16],[0,28],[-1,28],[6,-1],[9,25],[-3,10],[-4,41],[-4,19],[0,23],[0,49],[-5,32],[0,35],[2,14],[-6,70],[-3,21],[3,39],[5,34],[-6,42],[-6,11],[-3,-28],[-20,-28],[-6,11],[4,-33],[-2,-11],[9,-47],[-4,-19],[13,-48],[-2,-22],[0,-43],[-2,7],[-1,46],[-15,32],[0,12],[-9,27],[-2,42],[-9,74],[4,-5],[-1,25],[6,-11],[-2,25],[5,7],[-1,54],[-8,10],[1,53],[-2,20],[-4,-6],[0,-23],[-4,-4],[-5,-40],[-2,-30],[-5,-27],[3,-40],[6,-36],[2,-88],[7,-6],[-9,-6],[3,-29],[-5,6],[-3,-24],[1,-44],[-5,-14],[2,61],[-2,58]],[[15690,58082],[-4,44],[-23,52],[0,56],[-4,3],[2,35],[-2,10],[2,26],[-7,-3],[-10,11],[-3,-14],[-15,6],[-3,-13],[11,-23],[-4,-9],[1,-16],[8,-27],[-7,7],[-4,29],[-11,49],[9,8],[15,-2],[3,11],[15,-8],[-7,57],[-7,1],[-6,25],[-9,-1],[-11,33],[2,6],[7,-32],[9,-3],[-2,52],[-9,1],[-7,28],[0,18],[6,-24],[9,2],[9,-43],[0,-24],[5,-2],[0,16],[11,-56],[0,-18],[6,13],[-2,29],[-9,34],[-1,20],[1,33],[-6,4],[-2,31],[-7,7],[-2,26],[4,9],[2,-23],[14,-40],[2,-14],[0,-37],[4,-28],[0,64],[-1,5],[-1,39],[7,40],[4,3],[-2,-26],[2,-74],[-4,-45],[16,-42],[4,17],[-2,16],[2,43],[2,-8],[0,-64],[3,-24],[9,56],[0,24],[2,14],[15,35],[0,12],[11,-4],[7,-51],[9,-22],[4,-46],[9,-33],[1,-47],[4,-17],[0,-19],[4,-40],[5,-43],[0,-25],[-4,-36],[1,-2],[11,29],[7,38],[7,10],[5,20],[6,-23],[2,-23],[-11,-20],[4,-34],[27,-37],[3,-13],[0,-73],[-3,-24],[-4,-21],[-2,-46],[-7,-11],[4,-14],[2,-39],[-11,-62],[0,-57],[-4,-37],[-2,-8],[6,-14],[3,-21],[8,37],[3,9]],[[15824,57680],[2,-61],[-11,-49],[-9,-11],[-2,-20],[-4,-19],[8,-16],[0,-38],[7,-27],[2,-33],[-2,-37],[0,-16],[-3,-21],[0,-64],[11,-58],[3,-11],[4,-39],[0,-53],[5,-43],[0,-43],[9,-13],[9,-6],[5,-20],[3,-26],[-4,3],[4,-56],[7,2],[-6,-13],[2,-13],[7,1],[1,-13],[-6,4],[-4,-16],[-3,23],[-7,-6],[-8,-28],[0,-21],[-4,1],[-3,-17],[-5,-14],[0,-15],[-6,-17],[-2,-29],[-5,-18],[0,-79],[4,-29],[-4,-18],[0,-27],[-6,-30],[-7,5],[-5,-17],[-6,14],[2,39],[-9,32],[0,38],[9,60],[9,32],[11,53],[5,48],[-7,-4],[-5,-49],[-7,-32],[-4,-3],[-8,-42],[-5,17],[-7,-23],[-4,-58],[-2,-6],[-1,-48],[1,-93],[9,-10],[4,10],[6,-33],[7,9],[11,29],[2,-37],[1,3],[2,-54],[-5,-41],[-15,-36],[-5,-28],[-6,-13],[0,-13],[-11,-4],[-1,-36],[-6,-20],[0,-25],[3,-56],[-3,14],[-5,-4],[-1,30],[-8,10],[-2,17],[-11,7]],[[15739,56213],[0,0]],[[15160,56264],[1,-196],[200,346],[93,99],[38,27],[82,-104],[36,-244],[-13,-54],[-15,-168],[-14,-256],[73,-130],[0,-113],[-89,-304],[65,0]],[[15632,55167],[79,0]],[[25568,61695],[11,-10],[1,71],[-12,-28],[0,-33]],[[25699,61502],[-4,-7],[-2,-22],[5,13],[1,16]],[[25685,61384],[5,-59],[5,35],[2,-15],[14,-6],[7,26],[-3,43],[-4,7],[-2,24],[1,28],[-10,0],[-5,-32],[-3,2],[-3,30],[-4,-12],[3,-36],[-3,-35]],[[25720,61312],[5,5],[2,29],[-7,4],[0,-38]],[[24225,59165],[3,-11],[1,25],[-4,-14]],[[24624,58947],[3,-43],[4,-24],[5,6],[-4,43],[-8,18]],[[24617,59024],[15,-21],[4,-29],[18,-46],[6,-37],[5,-16],[4,2],[4,26],[5,14],[-2,14],[-10,6],[-16,29],[-1,33],[6,5],[-1,18],[-12,11],[-6,-4],[-5,27],[-7,24],[-6,3],[1,-25],[-2,-34]],[[24641,58855],[7,-16],[3,12],[-7,15],[-3,-11]],[[24693,58872],[5,-16],[14,-23],[-8,42],[-5,7],[-6,-10]],[[25501,61854],[8,20],[-6,18],[-4,41],[0,85],[-1,27],[-8,6],[0,16],[-9,-5],[-21,15],[-15,23],[-7,39],[0,32],[4,24],[-1,21],[-5,17],[-4,50],[-4,3],[-6,20],[-5,47],[-5,68],[-5,8],[-5,24],[-4,36],[-1,57],[4,47],[-2,0],[-2,-47],[-6,62],[2,43],[-5,60],[-4,6],[0,23],[8,36],[12,19],[10,-10],[8,-56],[-1,-20],[13,-62],[5,1],[10,-31],[9,-3],[5,-17],[1,-27],[9,-47],[-1,-49],[16,-87],[8,-64],[5,-28],[12,-32],[6,2],[-4,37],[7,-1],[2,-36],[6,3],[4,-21],[5,11],[2,-20],[11,-40],[-2,22],[6,5],[4,28],[4,47],[16,40],[-3,-18],[-10,-25],[-1,-93],[-8,-27],[5,-25],[0,-23],[3,-13],[6,-62],[0,-13],[9,-48],[2,-32],[5,-26],[6,10],[0,-45],[6,-21],[0,-45],[3,-30],[3,6],[-1,-37],[2,-33],[12,15],[1,15],[5,1],[0,-46],[7,-20],[7,1],[0,-65],[6,-48],[7,8],[-1,-22],[2,-42],[3,-8],[2,18],[8,1],[1,-20],[11,6],[3,24],[-4,27],[3,36],[-3,7],[2,19],[-2,18],[-6,4],[0,-16],[-6,-17],[-3,5],[2,23],[-2,12],[-2,50],[0,34],[4,27],[-4,10],[-6,-35],[-3,1],[-1,28],[2,20],[7,19],[-4,61],[-5,-29],[-4,11],[5,49],[-4,8],[-1,-21],[-7,-1],[-1,45],[-4,48],[-7,13],[-7,55],[0,36],[5,20],[-1,17],[-10,22],[-2,26],[4,37],[-18,47],[-4,53],[-6,16],[-5,36],[1,20],[-5,35],[0,22],[-7,77],[-11,94],[-9,37],[-5,61],[-6,47],[-3,46],[-4,97],[-1,42],[-4,44],[0,46],[-5,38],[-3,39],[0,47],[11,131],[-1,32],[-5,47],[-12,46],[-9,17],[-11,38],[-4,43],[0,51],[-8,51],[-3,42],[-1,51],[-5,30],[-2,59],[-3,35],[2,50],[0,69],[9,79],[-4,33],[2,50],[0,45],[-13,106],[-3,14],[-9,79],[-1,99],[1,12],[-3,40],[-15,98],[-7,77],[-2,87],[-3,20],[-3,54],[0,34],[4,34],[0,28],[3,17],[1,34],[-5,43],[0,24],[7,39],[3,47],[-9,43],[0,43],[3,29],[9,32],[3,41],[-1,43],[2,16],[-2,50],[6,76],[11,58],[7,24],[-6,45],[1,29],[-1,51],[-7,57],[-3,53],[-1,46],[3,31],[0,119],[2,31]],[[24223,59240],[8,-38],[7,2],[-4,-12],[-2,-36],[6,13],[4,-45],[7,-12],[0,-14],[5,7],[17,58],[4,10],[1,26],[10,5],[1,-8],[9,10],[18,-19],[16,1],[8,-6],[11,-25],[28,-41],[13,-29],[8,-12],[10,4],[8,-4],[5,-15],[10,-9],[12,-26],[1,-13],[8,4],[5,-6],[5,-31],[17,-35],[5,1],[12,-54],[8,-13],[-1,42],[9,5],[0,-15],[8,-11],[9,5],[3,-11],[0,-28],[9,3],[7,-20],[1,-22],[13,-33],[5,-36],[13,21],[4,-19],[8,-16],[5,-19],[8,12],[1,36],[4,6],[4,-11],[4,14],[1,33],[5,5],[4,35],[-6,5],[0,21],[-5,31],[1,21],[-7,55],[-4,6],[-3,27],[-7,8],[0,28],[-7,21],[2,33],[7,58],[0,18],[-4,21],[-13,35],[-2,57],[-8,42],[1,19],[11,11],[8,-28],[6,-8],[10,-26],[8,-9],[6,-16],[5,-26],[8,-20],[-9,0],[2,-14],[14,8],[-19,-75],[-2,-22],[17,78],[17,63],[0,19],[4,-2],[20,66],[7,15],[11,-13],[17,46],[7,-6]],[[24624,58749],[5,-24],[9,7],[6,38],[1,31],[-13,6],[-5,-25],[-3,-33]],[[24655,58789],[5,-31],[11,-19],[20,-24],[4,22],[-5,39],[-5,3],[0,25],[-7,-15],[-4,15],[-5,-9],[-8,24],[-4,-3],[-2,-27]],[[24648,58734],[6,-32],[6,-8],[0,19],[-10,32],[-2,-11]],[[24592,58676],[8,11],[-1,11],[-7,-22]],[[24563,58686],[11,-11],[4,-17],[-1,66],[-9,-1],[-4,-14],[-1,-23]],[[24639,58674],[3,-26],[6,1],[2,12],[-6,25],[-5,-12]],[[24662,58656],[5,-10],[2,19],[-4,12],[-3,-21]],[[24621,58617],[5,-9],[5,19],[-3,33],[-6,-9],[-1,-34]],[[24655,58609],[4,-17],[0,22],[-4,-5]],[[24677,58598],[8,33],[0,20],[-5,15],[-3,-68]],[[24644,58598],[2,-15],[5,1],[-3,43],[-4,-5],[0,-24]],[[24707,58657],[3,-20],[0,-67],[5,-36],[12,-5],[-1,50],[-2,10],[0,34],[-8,36],[-9,14],[0,-16]],[[25699,61502],[0,0]],[[31866,99868],[9,17],[8,25],[8,-16],[27,-2],[5,8],[-3,11],[-7,0],[-10,29],[-8,11],[-20,12],[-7,11],[-6,-3],[-15,21],[-1,-8],[-17,7],[6,-30],[-3,-48],[1,-19],[5,-12],[10,10],[15,-27],[3,3]],[[31875,99150],[12,5],[5,18],[-4,7],[-7,-5],[5,20],[0,20],[-4,8],[-9,-21],[-12,11],[-3,-26],[12,-21],[5,-16]],[[31831,99155],[13,28],[4,29],[-13,-2],[2,18],[-13,-23],[0,-21],[-8,3],[-4,11],[-8,-30],[-9,12],[-4,-11],[2,-12],[6,-2],[17,-17],[6,19],[9,-2]]]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment