Skip to content

Instantly share code, notes, and snippets.

@nsivertsen
Last active March 10, 2017 19:33
Show Gist options
  • Save nsivertsen/119a7bf7f11d2384b0084125fe6e0b0e to your computer and use it in GitHub Desktop.
Save nsivertsen/119a7bf7f11d2384b0084125fe6e0b0e to your computer and use it in GitHub Desktop.
Berlin Population Density 2015
license: mit
height: 860
border: no
.DS_Store
node_modules
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.block {
/* stroke: none;*/
}
.borders {
fill: none;
opacity: .6;
stroke: #000;
stroke-width: .5;
stroke-linejoin: round;
stroke-linecap: round;
}
</style>
<body>
<svg width="960" height="860"></svg>
<script src="//d3js.org/d3.v4.min.js" charset="utf-8"></script>
<script src="//d3js.org/topojson.v2.min.js"></script>
<script src="//d3js.org/d3-scale-chromatic.v1.min.js"></script>
<script>
var svg = d3.select("svg"),
width = +svg.attr("width"),
height = +svg.attr("height");
var path = d3.geoPath()
.projection(null);
var threshold = d3.scaleThreshold()
.domain([1, 10, 50, 200, 500, 1000, 1300])
.range(d3.schemeOrRd[7]);
var formatNumber = d3.format(".0f");
var x = d3.scaleLinear()
.domain([0, 1300])
.range([0, 920]);
var xAxis = d3.axisBottom(x)
.tickSize(13)
.tickValues(threshold.domain())
.tickFormat(function(d) { return d === 1 ? '' : formatNumber(d); });
var legend = svg.append("g").call(xAxis);
legend.attr("transform", "translate(20,820)");
legend.select(".domain")
.remove();
legend.selectAll("rect")
.data(threshold.range().map(function(color) {
var d = threshold.invertExtent(color);
if (d[0] == null) d[0] = x.domain()[0];
if (d[1] == null) d[1] = x.domain()[1];
return d;
}))
.enter().insert("rect", ".tick")
.attr("height", 8)
.attr("x", function(d) { return x(d[0]); })
.attr("width", function(d) { return x(d[1]) - x(d[0]); })
.attr("fill", function(d) { return threshold(d[0]); });
legend.append("text")
.attr("fill", "#000")
.attr("font-weight", "bold")
.attr("text-anchor", "start")
.attr("y", -6)
.text("Inhabitants / ha");
d3.json("population.json", function(error, einwohnerdichte) {
if (error) return console.error(error);
svg.append("g")
.attr("class", "blocks")
.selectAll("path")
.data(topojson.feature(einwohnerdichte, einwohnerdichte.objects.blocks).features)
.enter().append("path")
.attr("class", "block")
.attr("fill", function(d) { return d3.schemeOrRd[7][d.properties.density]; })
.attr("d", path);
svg.append("path")
.datum(topojson.mesh(einwohnerdichte, einwohnerdichte.objects.blocks), function(a, b) { return a !== b; })
.attr("class", "borders")
.attr("d", path);
});
</script>
population.json: population.xml
ogr2ogr -f GeoJSON /vsistdout/ $< \
-s_srs http://spatialreference.org/ref/epsg/25833/ \
-t_srs http://spatialreference.org/ref/epsg/4326/ \
| ./node_modules/.bin/ndjson-cat \
| ./node_modules/.bin/geoproject \
'd3.geoConicEqualArea().parallels([50, 55]).rotate([0, 0]).fitSize([960, 800], d)' \
| ./node_modules/.bin/ndjson-split 'd.features' \
| ./node_modules/.bin/ndjson-map -r d3 \
'{ \
type: d.type, \
properties: { \
density: d3.bisect([1, 10, 50, 200, 500, 1000, 1300], (+d.properties.EW_HA2015 || 0)), \
},\
geometry: d.geometry, \
id: d.properties.spatial_name \
}' \
| ./node_modules/.bin/ndjson-reduce \
| ./node_modules/.bin/ndjson-map \
'{type: "FeatureCollection", features: d}' \
| ./node_modules/.bin/geo2topo \
blocks=- \
| ./node_modules/.bin/topomerge \
-k \
'd.properties.density' \
blocks=blocks \
| ./node_modules/.bin/toposimplify \
-p 1 -f \
| ./node_modules/.bin/topo2geo \
blocks=- \
| ./node_modules/.bin/geo2topo \
blocks=- \
| ./node_modules/.bin/topoquantize \
1e4 \
> $@
population.xml:
curl -o $@ 'http://fbinter.stadt-berlin.de/fb/wfs/geometry/senstadt/re_einwohnerdichte2015/?service=wfs&request=GetFeature&version=2.0.0&typeNames=fis:re_einwohnerdichte2015&outputFormat=gml2'
.PHONY : clean
clean :
-rm population.xml \
population.json
{
"name": "population-density-berlin",
"version": "1.0.0",
"main": "index.js",
"author": "Nikolai Sivertsen",
"license": "MIT",
"dependencies": {
"d3": "^4.7.2",
"d3-geo-projection": "^1.2.1",
"ndjson-cli": "^0.3.0",
"topojson": "^2.2.0"
}
}
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"blocks":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","id":"0","properties":{"density":0},"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,732,733,734,735,736,737,738,739,740,741,742,743,744]],[[745,746,747,748]],[[749,750]],[[751,752,753,754,755,756,757,758]],[[759,760]],[[761]],[[762]],[[763]],[[764]],[[765,766,767,768]],[[769]],[[770]],[[771]],[[772,773]],[[774,-775,775]],[[776]],[[777]],[[778,779]],[[780,781]],[[782,783,784,785]],[[786]],[[787,788]],[[789,790]],[[791,792,793,794]],[[795,796]],[[797,798]],[[799,800]],[[801]],[[802]],[[803,804]],[[805,806]],[[807]],[[808,809]],[[810]],[[811]],[[812]],[[813]],[[814]],[[815]],[[816]],[[817]],[[818]],[[819]],[[820]],[[821]],[[822]],[[823,824,825,826]],[[827,828]],[[829,830]],[[831,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]],[[880]],[[881,882,883]],[[884]],[[885,886,887,888,889,890,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]],[[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,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001]],[[1002,1003,1004,1005]],[[1006,1007]],[[1008,1009]],[[1010]],[[1011,1012]],[[1013,1014]],[[1015]],[[1016]],[[1017,1018]],[[1019]],[[1020]],[[1021]],[[1022,1023,1024,1025]],[[1026,1027,1028,1029]],[[1030]],[[1031,1032]],[[1033,1034]],[[1035]],[[1036,1037]],[[1038,1039,1040,1041]],[[1042,1043,1044,1045]],[[1046,1047,1048,1049,1050]],[[1051,1052]],[[1053,1054]],[[1055]],[[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]],[[1083,1084,1085]],[[1086]],[[1087,1088]],[[1089,1090]],[[1091,1092]],[[1093]],[[1094]],[[1095]],[[1096,1097]],[[1098]],[[1099]],[[1100,1101]],[[1102]],[[1103]],[[1104]],[[1105,1106]],[[1107]],[[1108]],[[1109]],[[1110]],[[1111]],[[1112]],[[1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129]],[[1130]],[[1131]],[[1132,1133]],[[1134]],[[1135,1136]],[[1137,1138,1139]],[[1140]],[[1141,1142]],[[1143]],[[1144,1145]],[[1146,1147,1148,1149]],[[1150]],[[1151,1152]],[[1153]],[[1154]],[[1155]],[[1156]],[[1157]],[[1158]],[[1159]],[[1160]],[[1161,1162,1163,1164]],[[1165]],[[1166,1167]],[[1168]],[[1169]],[[1170,1171,1172,1173]],[[1174,1175]],[[1176]],[[1177]],[[1178]],[[1179]],[[1180]],[[1181]],[[1182,1183]],[[1184,1185]],[[1186,1187,1188,1189,1190,1191,1192,1193]],[[1194]],[[1195]],[[1196]],[[1197]],[[1198]],[[1199,1200]],[[1201]],[[1202]],[[1203]],[[1204]],[[1205,1206]],[[1207]],[[1208]],[[1209,1210,1211,1212]],[[1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,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,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,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,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461]],[[1462]],[[1463]],[[1464]],[[1465,1466]],[[1467]],[[1468,1469]],[[1470,1471]],[[1472,1473,1474]],[[1475,1476]],[[1477,1478]],[[1479]],[[1480]],[[1481,1482]],[[1483,1484]],[[1485]],[[1486,1487]],[[1488]],[[1489,1490]],[[1491,1492,1493,1494,1495]],[[1496,1497,1498,1499]],[[1500]],[[1501]],[[1502,1503]],[[1504,1505]],[[1506]],[[1507]],[[1508,1509,1510,1511]],[[1512,1513]],[[1514]],[[1515]],[[1516]],[[1517,1518,1519,1520]],[[1521,1522]],[[1523]],[[1524]],[[1525]],[[1526]],[[1527]],[[1528,1529,1530]],[[1531]],[[1532]],[[1533,1534,1535,1536]],[[1537]],[[1538]],[[1539]],[[1540]],[[1541]],[[1542,1543,1544]],[[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,1580,1581,1582]],[[1583]],[[1584]],[[1585]],[[1586,1587]],[[1588]],[[1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,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,1633]],[[1634,1635,1636,1637]],[[1638]],[[1639]],[[1640,1641]],[[1642,1643,1644,1645],[1646]],[[1647]],[[1648,1649,1650,1651,1652]],[[1653,1654]],[[1655,1656]],[[1657]],[[1658]],[[1659,1660]],[[1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679]],[[1680,1681]],[[1682]],[[1683]],[[1684]],[[1685]],[[1686]],[[1687]],[[1688,1689]],[[1690,1691]],[[1692,1693,1694,1695]],[[1696,1697]],[[1698]],[[1699]],[[1700]],[[1701]],[[1702]],[[1703]],[[1704]],[[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,1747]],[[1748]],[[1749]],[[1750,1751]],[[1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822],[1823,1824,1825,1826,1827,1828]],[[1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840]],[[1841,1842]],[[1843]],[[1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,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]],[[1938]],[[1939]],[[1940]],[[1941]],[[1942]],[[1943]],[[1944,1945,1946,1947,1948,1949]],[[1950,1951]],[[1952,1953,1954,1955]],[[1956]],[[1957,1958]],[[1959,1960]],[[1961,1962]],[[1963]],[[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,1991]],[[1992]],[[1993]],[[1994]],[[1995]],[[1996,-1997,1997]],[[1998,1999]],[[2000]],[[2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017]],[[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,2044]],[[2045,2046,2047,2048,2049,2050,2051,2052]],[[2053,2054,2055,2056,2057]],[[2058,2059,2060,2061,2062]],[[2063]],[[2064,2065,2066,2067,2068,2069,2070,2071,2072,2073]],[[2074,2075]],[[2076,2077,2078,2079]],[[2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094]],[[2095]],[[2096]],[[2097,2098,2099]],[[2100]],[[2101,2102]],[[2103,2104]],[[2105,2106,2107]],[[2108,2109,2110,2111,2112,2113,2114,2115]],[[2116,2117,2118]],[[2119]],[[2120]],[[2121]],[[2122,2123]],[[2124]],[[2125,2126,2127,2128]],[[2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271],[2272],[2273],[2274],[2275]],[[2276,2277]],[[2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293]],[[2294]],[[2295,2296]],[[2297,2298,2299,2300,2301,2302,2303,2304]],[[2305]],[[2306]],[[2307]],[[2308]],[[2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324]],[[2325]],[[2326]],[[2327]],[[2328,2329]],[[2330,2331]],[[2332,2333]],[[2334,2335]],[[2336]],[[2337]],[[2338]],[[2339]],[[2340,2341]],[[2342,2343,2344,2345]],[[2346]],[[2347,2348,2349]],[[2350]],[[2351]],[[2352,2353]],[[2354]],[[2355]],[[2356]],[[2357,2358,2359,2360,2361,2362]],[[2363]],[[2364]],[[2365]],[[2366]],[[2367]],[[2368,2369,2370,2371]],[[2372]],[[2373]],[[2374,2375,2376,2377,2378,2379,2380]],[[2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403],[2404]],[[2405]],[[2406,2407,2408]],[[2409,2410]],[[2411,2412,2413,2414]],[[2415,2416,2417,2418,2419,2420,2421]],[[2422,2423,2424,2425]],[[2426,2427]],[[2428]],[[2429,2430,2431]],[[2432,2433,2434,2435]],[[2436]],[[2437,2438]],[[2439]],[[2440]],[[2441]],[[2442]],[[2443,2444,2445,2446]],[[2447,2448,2449,2450,2451,2452,2453,2454]],[[2455]],[[2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470]],[[2471,2472,2473,2474]],[[2475,2476]],[[2477,2478,2479,2480,2481,2482]],[[2483,2484,2485,2486]],[[2487,2488,2489,2490,2491]],[[2492,2493,2494,2495,2496]],[[2497,2498,2499,2500],[2501],[2502]],[[2503,2504,2505,2506,2507,2508,2509]],[[2510,2511,2512,2513]],[[2514,2515,2516,2517,2518,2519]],[[2520]],[[2521,2522,2523,2524]],[[2525,2526]],[[2527,2528,2529,2530]],[[2531]],[[2532]],[[2533,2534]],[[2535]],[[2536,2537]],[[2538]],[[2539,2540,2541]],[[2542]],[[2543,2544]],[[2545]],[[2546]],[[2547,2548]],[[2549]],[[2550,2551,2552]],[[2553,2554,2555,2556,2557,2558,2559,2560,2561,2562],[2563]],[[2564,2565,2566,2567,2568,2569,2570,2571]],[[2572,2573]],[[2574,2575]],[[2576]],[[2577]],[[2578]],[[2579]],[[2580]],[[2581]],[[2582,2583,2584,2585]],[[2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597]],[[2598,2599,2600,2601]],[[2602]],[[2603,2604]],[[2605]],[[2606,2607]],[[2608,2609]],[[2610,2611]],[[2612,2613,2614,2615]],[[2616]],[[2617,2618]],[[2619,2620]],[[2621,2622]],[[2623]],[[2624,2625,2626,2627,2628,2629,2630,2631,2632,2633]],[[2634,2635]],[[2636]],[[2637]],[[2638,2639]],[[2640,2641,2642,2643]],[[2644,2645]],[[2646]],[[2647]],[[2648]],[[2649,2650]],[[2651,2652]],[[2653,2654,2655,2656]],[[2657,2658,2659,2660]],[[2661]],[[2662,2663]],[[2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688],[2689]],[[2690,2691,2692,2693,2694,2695,2696]],[[2697,2698]],[[2699,2700]],[[2701,2702]],[[2703,2704,2705,2706,2707]],[[2708]],[[2709,2710]],[[2711,2712,2713]],[[2714]],[[2715]],[[2716]],[[2717]],[[2718,2719]],[[2720]],[[2721,2722]],[[2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736]],[[2737,2738,2739,2740,2741,2742,2743,2744]],[[2745,2746,2747]],[[2748,2749,2750,2751]],[[2752,2753,2754,2755,2756,2757,2758,2759,2760]],[[2761,-2762,2762]],[[2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774]],[[2775,2776]],[[2777,2778,2779,2780,2781,2782],[2783]],[[2784,2785,2786,2787]],[[2788,2789,2790,2791]],[[2792,2793,2794,2795]],[[2796,2797]],[[2798,2799]],[[2800]],[[2801]],[[2802]],[[2803]],[[2804]],[[2805]],[[2806,2807]],[[2808]],[[2809,2810]],[[2811]],[[2812,2813]],[[2814]],[[2815,2816]],[[2817,2818]],[[2819]],[[2820]],[[2821,2822]],[[2823,2824,2825,2826]],[[2827,2828,2829,2830]],[[2831,2832]],[[2833,2834,2835,2836]],[[2837,2838]],[[2839,2840,2841,2842]],[[2843]],[[2844]],[[2845]],[[2846]],[[2847]],[[2848]],[[2849]],[[2850]],[[2851]],[[2852]],[[2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926],[2927,2928,2929,2930,2931],[2932,2933,2934,2935]],[[2936,2937]],[[2938]],[[2939,2940]],[[2941]],[[2942]],[[2943,2944]],[[2945,2946]],[[2947]],[[2948]],[[2949]],[[2950,2951]],[[2952]],[[2953]],[[2954,-2955,2955]],[[2956,2957]],[[2958,2959]],[[2960,2961]],[[2962,-2963,2963]],[[2964]],[[2965]],[[2966]],[[2967]],[[2968]],[[2969]],[[2970,2971]],[[2972]],[[2973]],[[2974,2975,2976,2977,2978,2979]],[[2980,2981,2982,2983,2984,2985,2986,2987],[2988]],[[2989]],[[2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001],[3002],[3003],[3004]],[[3005]],[[3006,3007]],[[3008]],[[3009,3010]],[[3011,3012,3013,3014]],[[3015,3016,3017,3018]],[[3019,3020,3021,3022,3023,3024]],[[3025,3026]],[[3027,3028]],[[3029]],[[3030]],[[3031]],[[3032]],[[3033,-3034,3034]],[[3035,3036,3037,3038]],[[3039,3040]],[[3041,3042]],[[3043,3044,3045,3046]],[[3047,3048]],[[3049]],[[3050,3051]],[[3052,3053,3054,3055]],[[3056,3057,3058,3059]],[[3060,3061,3062,3063,3064,3065,3066]],[[3067,3068,3069,3070]],[[3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084]],[[3085,3086,3087,3088]],[[3089,3090,3091,3092]],[[3093,3094]],[[3095,3096,3097,3098,3099,3100]],[[3101]],[[3102]],[[3103]],[[3104]],[[3105]],[[3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118]],[[3119]],[[3120,3121,3122,3123,3124,3125,3126,3127,3128]],[[3129,3130]],[[3131,3132,3133,3134,3135]],[[3136,3137,3138,3139,3140,3141,3142,3143]],[[3144,3145]],[[3146,3147]],[[3148,3149,3150,3151,3152,3153]],[[3154]],[[3155,3156,3157,3158,3159,3160]],[[3161,3162,3163,3164]],[[3165,3166]],[[3167,3168,3169,3170,3171,3172,3173]],[[3174,3175]],[[3176,3177,3178,3179]],[[3180,3181,3182,3183,3184]],[[3185,3186]],[[3187,3188,3189,3190],[3191]],[[3192,3193,3194,3195,3196]],[[3197,3198]],[[3199]],[[3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213]],[[3214,3215]],[[3216,3217,3218,3219]],[[3220,3221,3222,3223]],[[3224,3225,3226,3227]],[[3228,3229,3230,3231]],[[3232,3233]],[[3234,3235,3236,3237]],[[3238,3239,3240,3241]],[[3242,3243,3244,3245]],[[3246,3247,3248,3249]],[[3250]],[[3251,-3252,3252]],[[3253]],[[3254,3255]],[[3256,3257]],[[3258,-3259,3259]],[[3260,-3261,3261]],[[3262,-3263,3263]],[[3264,3265,3266,3267]],[[3268]],[[3269,3270]],[[3271]],[[3272,3273]],[[3274,3275]],[[3276,3277,3278,3279,3280,3281,3282]],[[3283]],[[3284]],[[3285,3286]],[[3287]],[[3288,3289]],[[3290,3291]],[[3292,3293]],[[3294,3295]],[[3296]],[[3297,3298]],[[3299,3300]],[[3301,3302]],[[3303]],[[3304]],[[3305,3306]],[[3307,3308]],[[3309]],[[3310]],[[3311,3312,3313,3314,3315,3316,3317,3318]],[[3319,3320]],[[3321]],[[3322,3323,3324,3325]],[[3326,3327]],[[3328]],[[3329,3330]],[[3331]],[[3332,3333]],[[3334]],[[3335]],[[3336]],[[3337]],[[3338]],[[3339]],[[3340]],[[3341]],[[3342,3343]],[[3344,3345]],[[3346,3347,3348,3349]],[[3350]],[[3351,3352]],[[3353,3354,3355,3356]],[[3357]],[[3358,3359,3360,3361]],[[3362,3363,3364,3365,3366]],[[3367,3368]],[[3369,3370,3371]],[[3372,3373]],[[3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407]],[[3408,3409,3410]],[[3411]],[[3412,3413]],[[3414,3415,3416,3417]],[[3418,3419,3420,3421]],[[3422,3423]],[[3424,3425]],[[3426,3427,3428,3429]],[[3430,3431,3432,3433]],[[3434,3435,3436]],[[3437,3438]],[[3439,3440,3441,3442]],[[3443,3444]],[[3445]],[[3446,3447]],[[3448,3449,3450,3451,3452,3453,3454,3455]],[[3456]],[[3457]],[[3458]],[[3459]],[[3460]],[[3461]],[[3462]],[[3463]],[[3464]],[[3465]],[[3466]],[[3467]],[[3468]],[[3469]],[[3470]],[[3471]],[[3472]],[[3473]],[[3474,3475,3476,3477,3478,3479,3480]],[[3481]],[[3482,3483,3484,3485]],[[3486,3487]],[[3488]],[[3489]],[[3490]],[[3491,3492]],[[3493,3494,3495,3496,3497,3498]],[[3499]],[[3500]],[[3501]],[[3502,3503,3504,3505,3506,3507,3508]],[[3509,3510,3511,3512]],[[3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524]],[[3525,3526,3527,3528]],[[3529,3530,3531,3532]],[[3533,3534]],[[3535,3536]],[[3537,3538]],[[3539,3540,3541,3542,3543,3544],[3545]],[[3546,3547]],[[3548,3549,3550,3551]],[[3552,3553]],[[3554]],[[3555]],[[3556,3557]],[[3558,3559]],[[3560]],[[3561]],[[3562]],[[3563,3564,3565,3566,3567]],[[3568]],[[3569]],[[3570,3571,3572,3573]],[[3574,3575,3576,3577]],[[3578,3579]],[[3580]],[[3581]],[[3582,3583]],[[3584,3585,3586,3587]],[[3588]],[[3589,-3590,3590]],[[3591]],[[3592]],[[3593]],[[3594]],[[3595]],[[3596,3597,3598,3599]],[[3600,3601,3602,3603]],[[3604]],[[3605,3606]],[[3607,3608,3609]],[[3610,3611]],[[3612]],[[3613]],[[3614]],[[3615,3616]],[[3617]],[[3618]],[[3619,3620,3621]],[[3622]],[[3623]],[[3624]],[[3625]],[[3626,3627,3628,3629]],[[3630,3631]],[[3632]],[[3633]],[[3634]],[[3635,3636]],[[3637]],[[3638]],[[3639]],[[3640]],[[3641]],[[3642,3643]],[[3644,3645]],[[3646,3647]],[[3648]],[[3649,3650]],[[3651]],[[3652]],[[3653]],[[3654]],[[3655]],[[3656,3657]],[[3658]],[[3659]],[[3660]],[[3661,3662]],[[3663]],[[3664,3665]],[[3666,3667]],[[3668,3669]],[[3670]],[[3671]],[[3672,3673]],[[3674,3675,3676,3677,3678]],[[3679,3680]],[[3681]],[[3682,3683]],[[3684]],[[3685]],[[3686,3687,3688,3689]],[[3690,3691,3692]],[[3693]],[[3694]],[[3695,3696]],[[3697]],[[3698,3699,3700,3701]],[[3702,3703,3704,3705,3706,3707,3708]],[[3709,3710,3711,3712]],[[3713]],[[3714]],[[3715,3716,3717,3718]],[[3719,3720,3721,3722,3723,3724]],[[3725,3726,3727,3728,3729,3730,3731]],[[3732]],[[3733]],[[3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798],[3799]],[[3800]],[[3801,3802]],[[3803,3804]],[[3805,3806,3807,3808,3809,3810,3811,3812]],[[3813,3814,3815,3816]],[[3817,3818]],[[3819,3820]],[[3821]],[[3822,3823,3824,3825]],[[3826,3827]],[[3828,3829,3830]],[[3831,3832]],[[3833]],[[3834,3835,3836,3837]],[[3838,3839,3840,3841,3842,3843,3844]],[[3845,3846]],[[3847,3848,3849,3850]],[[3851,3852,3853,3854]],[[3855,3856,3857,3858]],[[3859,3860,3861,3862]],[[3863,3864,3865,3866]],[[3867,3868]],[[3869,3870,3871,3872]],[[3873,3874,3875,3876,3877]],[[3878]],[[3879,3880]],[[3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891]],[[3892,3893]],[[3894,3895,3896]],[[3897,3898,3899,3900]],[[3901]],[[3902,3903]],[[3904,3905,3906,3907]],[[3908]],[[3909,3910,3911,3912,3913,3914,3915,3916,3917,3918]],[[3919]],[[3920,3921]],[[3922,3923]],[[3924]],[[3925]],[[3926,3927]],[[3928,3929]],[[3930]],[[3931,3932]],[[3933]],[[3934,3935,3936,3937]],[[3938,3939]],[[3940,3941,3942,3943]],[[3944,3945,3946,3947]],[[3948]],[[3949]],[[3950,3951]],[[3952,3953,3954,3955,3956,3957,3958,3959,3960,3961]],[[3962,3963,3964,3965,3966,3967]],[[3968]],[[3969]],[[3970,3971,3972,3973]],[[3974,3975,3976,3977]],[[3978,3979,3980,3981]],[[3982]],[[3983]],[[3984,3985]],[[3986]],[[3987,3988]],[[3989,3990,3991,3992]],[[3993,3994,3995,3996]],[[3997]],[[3998,3999,4000,4001]],[[4002,4003,4004,4005]],[[4006,4007]],[[4008,4009]],[[4010,4011]],[[4012,4013]],[[4014]],[[4015,4016]],[[4017,4018]],[[4019,4020]],[[4021,4022,4023,4024]],[[4025]],[[4026,4027,4028,4029]],[[4030,4031,4032,4033,4034,4035,4036,4037]],[[4038]],[[4039,4040,4041,4042,4043,4044]],[[4045,4046,4047,4048,4049,4050,4051,4052,4053,4054]],[[4055,4056,4057,4058]],[[4059,4060,4061,4062,4063,4064]],[[4065,4066]],[[4067]],[[4068]],[[4069,4070]],[[4071]],[[4072]],[[4073]],[[4074,4075,4076,4077]],[[4078,4079,4080,4081]],[[4082,4083]],[[4084,4085]],[[4086,4087]],[[4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100]],[[4101,4102]],[[4103,4104]],[[4105,4106,4107,4108,4109,4110]],[[4111]],[[4112]],[[4113]],[[4114]],[[4115]],[[4116]],[[4117,4118]],[[4119]],[[4120]],[[4121]],[[4122]],[[4123,4124,4125,4126,4127,4128]],[[4129,4130,4131,4132,4133,4134,4135,4136]],[[4137]],[[4138,4139,4140,4141,4142]],[[4143]],[[4144,4145]],[[4146]],[[4147,4148,4149,4150]],[[4151]],[[4152,4153,4154,4155]],[[4156]],[[4157,4158,4159,4160]],[[4161,4162]],[[4163]],[[4164,4165,4166,4167,4168,4169]],[[4170,4171,4172]],[[4173,4174]],[[4175,4176]],[[4177]],[[4178,4179,4180,4181]],[[4182,4183]],[[4184,4185]],[[4186]],[[4187]],[[4188,4189]],[[4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208]],[[4209]],[[4210,4211]],[[4212]],[[4213,4214]],[[4215,4216,4217,4218]],[[4219,4220]],[[4221,4222]],[[4223,4224]],[[4225,4226,4227,4228]],[[4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241]],[[4242]],[[4243]],[[4244]],[[4245]],[[4246]],[[4247]],[[4248]],[[4249]],[[4250,4251,4252,4253]],[[4254,4255,4256,4257]],[[4258,4259,4260,4261,4262,4263]],[[4264,4265]],[[4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293]],[[4294,4295,4296,4297,4298]],[[4299]],[[4300,4301,4302,4303]],[[4304,4305,4306,4307,4308]],[[4309,4310,4311]],[[4312,4313]],[[4314]],[[4315,4316]],[[4317,4318]],[[4319,4320,4321,4322]],[[4323,4324]],[[4325,4326]],[[4327,4328]],[[4329,4330,4331,4332]],[[4333,4334]],[[4335,4336,4337,4338,4339,4340,4341]],[[4342,4343,4344,4345]],[[4346]],[[4347,4348]],[[4349,4350]],[[4351,4352]],[[4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363]],[[4364,4365]],[[4366,4367]],[[4368,4369,4370]],[[4371,4372]],[[4373,4374]],[[4375,4376]],[[4377,4378,4379,4380]],[[4381,4382]],[[4383,4384]],[[4385]],[[4386,4387]],[[4388,4389,4390,4391,4392]],[[4393,4394,4395,4396,4397,4398,4399,4400,4401]],[[4402,4403]],[[4404,4405,4406]],[[4407,4408]],[[4409,4410,4411,4412,4413,4414,4415,4416,4417,4418]],[[4419,4420]],[[4421]],[[4422,4423]],[[4424,4425]],[[4426,4427,4428]],[[4429,4430,4431,4432,4433,4434,4435,4436]],[[4437,4438,4439,4440,4441,4442,4443,4444]],[[4445,4446]],[[4447]],[[4448,4449]],[[4450,4451,4452,4453,4454,4455,4456,4457,4458,4459]],[[4460,4461]],[[4462]],[[4463]],[[4464,4465,4466]],[[4467]],[[4468,4469]],[[4470,4471,4472,4473]],[[4474,4475,4476,4477,4478,4479]],[[4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491]],[[4492,4493]],[[4494]],[[4495]],[[4496]],[[4497]],[[4498]],[[4499]],[[4500]],[[4501]],[[4502]],[[4503,4504]],[[4505,4506]],[[4507,4508,4509,4510,4511]],[[4512,4513]],[[4514]],[[4515,4516]],[[4517,4518]],[[4519,4520,4521,4522]],[[4523,4524,4525,4526,4527,4528]],[[4529]],[[4530,4531,4532]],[[4533,4534]],[[4535]],[[4536,4537,4538,4539]],[[4540,4541]],[[4542,4543]],[[4544]],[[4545]],[[4546,4547]],[[4548]],[[4549]],[[4550]],[[4551]],[[4552,4553]],[[4554,4555,4556]],[[4557]],[[4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589]],[[4590,4591]],[[4592,4593]],[[4594,4595,4596,4597]],[[4598,4599]],[[4600,4601]],[[4602]],[[4603,4604,4605,4606,4607,4608]],[[4609,4610]],[[4611,4612]],[[4613,4614]],[[4615,4616]],[[4617,4618,4619,4620]],[[4621,4622,4623,4624]],[[4625]],[[4626]],[[4627,4628]],[[4629,4630,4631,4632,4633,4634,4635]],[[4636]],[[4637,4638,4639,4640,4641]],[[4642]],[[4643]],[[4644,4645]],[[4646,4647]],[[4648,4649]],[[4650]],[[4651]],[[4652]],[[4653,-4654,4654]],[[4655]],[[4656,4657,4658,4659,4660,4661]],[[4662,4663]],[[4664,4665]],[[4666,4667,4668,4669,4670,4671,4672,4673,4674,4675]],[[4676]],[[4677]],[[4678,4679]],[[4680,4681]],[[4682,4683]],[[4684,4685]],[[4686,4687,4688,4689,4690]],[[4691,4692,4693,4694]],[[4695,4696,4697,4698]],[[4699,4700,4701,4702,4703,4704,4705,4706,4707]],[[4708]],[[4709,4710]],[[4711,4712]],[[4713]],[[4714,4715,4716,4717,4718]],[[4719,4720]],[[4721]],[[4722]],[[4723,4724]],[[4725,4726,4727,4728,4729,4730]],[[4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741]],[[4742,4743,4744,4745]],[[4746,4747,4748]],[[4749,4750]],[[4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764]],[[4765,4766,4767,4768]],[[4769,4770,4771,4772]],[[4773,4774,4775,4776]],[[4777,4778,4779,4780,4781]],[[4782,4783,4784,4785]],[[4786]],[[4787,4788]],[[4789]],[[4790]],[[4791]],[[4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805]],[[4806,4807,4808,4809,4810,4811]],[[4812,4813]],[[4814,4815,4816,4817]],[[4818]],[[4819,4820]],[[4821,4822,4823,4824]],[[4825,4826]],[[4827,4828]],[[4829,4830]],[[4831]],[[4832]],[[4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849]],[[4850,4851,4852,4853]],[[4854,4855,4856,4857]],[[4858,4859,4860]],[[4861,4862,4863]],[[4864]],[[4865,4866,4867,4868]],[[4869,4870]],[[4871,4872,4873,4874,4875,4876]],[[4877,4878,4879]],[[4880,4881,4882,4883,4884,4885,4886]],[[4887]],[[4888,4889]],[[4890,4891]],[[4892,4893,4894,4895]],[[4896,4897]],[[4898,4899,4900,4901,4902,4903,4904,4905]],[[4906,4907]],[[4908]],[[4909,4910,4911]],[[4912,4913,4914,4915,4916,4917]],[[4918,4919]],[[4920,4921,4922,4923,4924,4925,4926,4927,4928,4929],[4930,4931]],[[4932,4933,4934,4935]],[[4936,4937,4938,4939,4940,4941,4942]],[[4943,4944,4945,4946]],[[4947,4948]],[[4949]],[[4950]],[[4951,4952,4953,4954]],[[4955,4956,4957,4958]],[[4959,4960]],[[4961,4962,4963,4964]],[[4965,4966,4967,4968]],[[4969]],[[4970,4971,4972,4973,4974,4975,4976,4977,4978]],[[4979,4980]],[[4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994]],[[4995,4996]],[[4997,4998]],[[4999,5000,5001,5002,5003,5004,5005,5006,5007,5008]],[[5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024]],[[5025,5026]],[[5027,5028,5029,5030]],[[5031,5032]],[[5033,5034]],[[5035,5036,5037]],[[5038,-5039,5039]],[[5040,5041]],[[5042,5043]],[[5044,5045]],[[5046,-5047,5047]],[[5048,5049]],[[5050,-5051,5051]],[[5052,5053,5054]],[[5055,-5056,5056]],[[5057,-5058,5058]],[[5059,-5060,5060]],[[5061,-5062,5062]],[[5063,5064,5065]],[[5066,5067]],[[5068,5069,5070,5071,5072,5073]],[[5074]],[[5075]],[[5076]],[[5077,5078,5079,5080]],[[5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091]],[[5092,5093,5094]],[[5095]],[[5096,5097,5098,5099]],[[5100,5101]],[[5102]],[[5103,5104,5105,5106]],[[5107,5108]],[[5109,5110,5111,5112,5113,5114]],[[5115]],[[5116,5117]],[[5118,5119]],[[5120,5121,5122,5123,5124,5125,5126,5127]],[[5128]],[[5129,5130]],[[5131,5132,5133,5134]],[[5135]],[[5136,5137]],[[5138,5139]],[[5140,5141,5142,5143]],[[5144,5145,5146]],[[5147,5148,5149,5150]],[[5151,5152]],[[5153,5154]],[[5155]],[[5156,5157]],[[5158,5159,5160,5161]],[[5162,5163,5164]],[[5165,5166]],[[5167]],[[5168]],[[5169,5170]],[[5171,5172]],[[5173,5174,5175,5176]],[[5177,5178]],[[5179,5180]],[[5181,5182,5183,5184,5185]],[[5186,5187]],[[5188,5189]],[[5190]],[[5191,5192]],[[5193]],[[5194,5195,5196,5197,5198,5199]],[[5200,5201,5202,5203]],[[5204]],[[5205,5206]],[[5207]],[[5208,5209]],[[5210,5211,5212]],[[5213,5214,5215,5216]],[[5217]],[[5218]],[[5219]],[[5220,5221]],[[5222,5223,5224,5225,5226,5227,5228,5229]],[[5230,5231]],[[5232,5233]],[[5234,5235]],[[5236,5237,5238,5239]],[[5240,5241,5242,5243,5244,5245,5246,5247,5248,5249]],[[5250,5251]],[[5252,5253,5254,5255]],[[5256,5257]],[[5258]],[[5259,5260,5261]],[[5262]],[[5263]],[[5264,5265]],[[5266]],[[5267,5268,5269,5270]],[[5271,5272]],[[5273,5274,5275]],[[5276,5277]],[[5278]],[[5279]],[[5280]],[[5281]],[[5282]],[[5283]],[[5284]],[[5285]],[[5286]],[[5287]],[[5288]],[[5289]],[[5290]],[[5291]],[[5292]],[[5293]],[[5294]],[[5295,5296]],[[5297]],[[5298]],[[5299]],[[5300]],[[5301]],[[5302]],[[5303]],[[5304]],[[5305]],[[5306]],[[5307]],[[5308]],[[5309]],[[5310]],[[5311]],[[5312]],[[5313]],[[5314]],[[5315]],[[5316]],[[5317,5318]],[[5319,5320]],[[5321]],[[5322]],[[5323]],[[5324]],[[5325]],[[5326]],[[5327]],[[5328]],[[5329]],[[5330]],[[5331]],[[5332]],[[5333]],[[5334]],[[5335]],[[5336]],[[5337]],[[5338]],[[5339]],[[5340,5341,5342,5343]],[[5344,5345,5346,5347]],[[5348,5349]],[[5350,5351,5352,5353]],[[5354]],[[5355,5356]],[[5357,5358]],[[5359,5360,5361]],[[5362,5363]],[[5364,5365,5366,5367,5368,5369,5370,5371]],[[5372,-5373,5373]],[[5374,5375,5376,5377,5378,5379,5380,5381,5382,5383]],[[5384,5385,5386,5387,5388,5389]],[[5390]],[[5391,5392,5393,5394,5395,5396,5397,5398]],[[5399]],[[5400]],[[5401]],[[5402]],[[5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418]],[[5419,5420,5421,5422]],[[5423]],[[5424,5425]],[[5426,5427]],[[5428,5429]],[[5430,5431,5432,5433,5434,5435,5436,5437,5438]],[[5439]],[[5440,5441]],[[5442,5443]],[[5444,5445,5446]],[[5447,5448,5449,5450,5451]],[[5452,5453]],[[5454,5455,5456]],[[5457,5458]],[[5459]],[[5460,5461,5462,5463,5464,5465]],[[5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482]],[[5483,5484]],[[5485,5486]],[[5487,5488,5489,5490,5491,5492]],[[5493]],[[5494]],[[5495,5496]],[[5497,5498]],[[5499,5500]],[[5501]],[[5502,5503]],[[5504,5505]],[[5506]],[[5507,5508]],[[5509]],[[5510,5511,5512]],[[5513,5514]],[[5515]],[[5516,5517]],[[5518]],[[5519,5520]],[[5521]],[[5522]],[[5523]],[[5524]],[[5525,5526,5527,5528,5529,5530,5531,5532]],[[5533]],[[5534,5535]],[[5536,5537,5538,5539,5540,5541]],[[5542]],[[5543,5544]],[[5545]],[[5546]],[[5547]],[[5548,5549]],[[5550]],[[5551]],[[5552]],[[5553]],[[5554,5555]],[[5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592],[5593]],[[5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612]],[[5613,5614,5615,5616,5617,5618]],[[5619,5620,5621]],[[5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727],[5728],[5729]],[[5730]],[[5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747]],[[5748]],[[5749,5750,5751,5752]],[[5753]],[[5754,5755,5756,5757]],[[5758]],[[5759,5760]],[[5761,5762,5763]],[[5764,5765]],[[5766,5767,5768]],[[5769]],[[5770]],[[5771]],[[5772]],[[5773]],[[5774]],[[5775,5776]],[[5777]],[[5778,5779]],[[5780,5781]],[[5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899],[5900]],[[5901,5902]],[[5903,5904]],[[5905,5906]],[[5907,5908,5909,5910]],[[5911,5912,5913]],[[5914,5915,5916,5917]],[[5918,-5919,5919]],[[5920,5921,5922,5923]],[[5924,5925,5926]],[[5927,5928,5929,5930]],[[5931,5932,5933,5934]],[[5935]],[[5936]],[[5937,5938]],[[5939]],[[5940]],[[5941]],[[5942,5943,5944,5945]],[[5946,5947]],[[5948,5949]],[[5950]],[[5951,5952,5953,5954,5955,5956]],[[5957,5958,5959,5960,5961,5962,5963,5964]],[[5965,5966,5967,5968,5969,5970,5971,5972]],[[5973]],[[5974]],[[5975,5976]],[[5977,5978]],[[5979]],[[5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995]],[[5996]],[[5997,5998]],[[5999]],[[6000,6001]],[[6002]],[[6003,6004,6005,6006,6007,6008],[6009]],[[6010,6011]],[[6012,6013,6014,6015,6016,6017]],[[6018]],[[6019,6020,6021,6022,6023,6024,6025,6026,6027,6028]],[[6029,6030,6031,6032,6033,6034,6035,6036]],[[6037,6038]],[[6039]],[[6040,6041]],[[6042,6043,6044]],[[6045]],[[6046,6047,6048,6049,6050,6051]],[[6052,6053,6054,6055]],[[6056,-6057,6057]],[[6058,6059]],[[6060,6061]],[[6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072]],[[6073,6074,6075,6076]],[[6077,6078]],[[6079,6080,6081,6082,6083]],[[6084,6085]],[[6086,6087]],[[6088]],[[6089,6090,6091,6092,6093]],[[6094]],[[6095]],[[6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123]],[[6124,6125,6126,6127]],[[6128,6129]],[[6130,6131]],[[6132]],[[6133,6134,6135,6136]],[[6137,6138,6139,6140]],[[6141,6142]],[[6143,6144,6145,6146,6147,6148,6149,6150]],[[6151,-6152,6152]],[[6153,6154,6155,6156]],[[6157,6158]],[[6159,6160,6161,6162]],[[6163,6164,6165,6166,6167,6168,6169,6170]],[[6171,6172,6173,6174]],[[6175,6176]],[[6177,6178]],[[6179]],[[6180,6181,6182,6183]],[[6184]],[[6185]],[[6186]],[[6187]],[[6188]],[[6189,6190,6191,6192]],[[6193,6194]],[[6195,6196]],[[6197]],[[6198]],[[6199]],[[6200]],[[6201]],[[6202]],[[6203]],[[6204]],[[6205,6206]],[[6207]],[[6208],[6209]],[[6210,6211]],[[6212,6213,6214,6215,6216,6217]],[[6218]],[[6219]],[[6220,6221]],[[6222,6223,6224]],[[6225,6226,6227,6228]],[[6229,6230]],[[6231,6232]],[[6233,6234,6235]],[[6236,6237,6238,6239]],[[6240,6241,6242,6243]],[[6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343],[6344]],[[6345,6346,6347,6348]],[[6349,6350,6351,6352]],[[6353,6354]],[[6355,6356,6357]],[[6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383]],[[6384]],[[6385]],[[6386]],[[6387]],[[6388]],[[6389,6390,6391,6392]],[[6393,6394,6395,6396,6397]],[[6398,6399,6400,6401]],[[6402,6403]],[[6404,6405,6406,6407]],[[6408,6409,6410,6411]],[[6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431]],[[6432]],[[6433,6434]],[[6435,6436]],[[6437]],[[6438]],[[6439]],[[6440,6441]],[[6442]],[[6443]],[[6444]],[[6445]],[[6446,6447]],[[6448,6449,6450,6451]],[[6452,6453]],[[6454,6455,6456,6457]],[[6458]],[[6459]],[[6460,6461]],[[6462,6463,6464,6465]],[[6466,6467,6468,6469,6470,6471]],[[6472,6473]],[[6474,6475]],[[6476,6477]],[[6478,6479,6480,6481]],[[6482,6483,6484]],[[6485,6486]],[[6487,6488]],[[6489,6490,6491,6492,6493,6494,6495,6496]],[[6497,6498,6499,6500]],[[6501,6502]],[[6503]],[[6504,6505,6506,6507,6508,6509,6510,6511]],[[6512,6513]],[[6514,6515]],[[6516,6517]],[[6518,6519]],[[6520,6521]],[[6522,6523]],[[6524,6525,6526]],[[6527,6528]],[[6529,6530]],[[6531,6532]],[[6533,6534]],[[6535,6536]],[[6537]],[[6538,6539]],[[6540,6541]],[[6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556]],[[6557,6558,6559,6560,6561,6562,6563,6564,6565,6566]],[[6567,6568,6569,6570]],[[6571]],[[6572,6573]],[[6574,6575]],[[6576,6577,6578,6579,6580,6581,6582]],[[6583]],[[6584]],[[6585]],[[6586,6587]],[[6588,6589]],[[6590]],[[6591]],[[6592,6593,6594,6595]],[[6596,6597]],[[6598]],[[6599]],[[6600]],[[6601,6602]],[[6603,6604]],[[6605]],[[6606]],[[6607,6608]],[[6609,6610,6611,6612]],[[6613,6614,6615,6616]],[[6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627]],[[6628,6629,6630]],[[6631,6632,6633,6634]],[[6635,6636,6637,6638]],[[6639,6640]],[[6641,6642]],[[6643,6644,6645]],[[6646]],[[6647]],[[6648]],[[6649,6650]],[[6651,6652,6653,6654,6655]],[[6656,6657]],[[6658,6659]],[[6660,6661]],[[6662,6663]],[[6664]],[[6665,6666]],[[6667]],[[6668,6669]],[[6670,6671,6672]],[[6673,6674]],[[6675,6676]],[[6677,6678]],[[6679,6680,6681,6682]],[[6683]],[[6684,6685,6686]],[[6687,6688,6689,6690,6691,6692]],[[6693,6694]],[[6695,6696]],[[6697]],[[6698]],[[6699,6700]],[[6701,6702,6703,6704,6705]],[[6706]],[[6707,6708]],[[6709]],[[6710,6711,6712,6713]],[[6714]],[[6715]],[[6716,6717]],[[6718]],[[6719,6720,6721,6722]],[[6723,6724,6725,6726]],[[6727]],[[6728,6729,6730,6731]],[[6732,6733,6734]],[[6735,6736,6737]],[[6738,6739,6740,6741,6742,6743,6744]],[[6745,6746]],[[6747,6748]],[[6749,6750]],[[6751,6752,6753,6754]],[[6755,6756]],[[6757,6758,6759,6760,6761,6762]],[[6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773]],[[6774,6775]],[[6776]],[[6777,6778,6779,6780]],[[6781,6782,6783,6784,6785,6786,6787,6788,6789,6790]],[[6791,6792,6793]],[[6794,6795]],[[6796,6797]],[[6798]],[[6799,6800,6801,6802]],[[6803]],[[6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815]],[[6816,6817]],[[6818]],[[6819]],[[6820]],[[6821,6822,6823]],[[6824,6825,6826]],[[6827,6828]],[[6829,6830]],[[6831,6832,6833,6834]],[[6835,6836]],[[6837,6838]],[[6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856]],[[6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962],[6963,6964,6965,6966],[6967]],[[6968,6969]],[[6970]],[[6971]],[[6972,6973,6974,6975]],[[6976,6977,6978,6979]],[[6980,6981,6982,6983]],[[6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012]],[[7013,7014]],[[7015,7016,7017,7018,7019]],[[7020,7021,7022,7023,7024,7025]],[[7026]],[[7027,7028]],[[7029,7030,7031,7032,7033]],[[7034,7035,7036,7037]],[[7038,7039]],[[7040,7041,7042,7043,7044,7045,7046,7047]],[[7048,7049,7050,7051,7052,7053]],[[7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069]],[[7070,7071]],[[7072,7073]],[[7074,7075]],[[7076,7077]],[[7078,7079]],[[7080]],[[7081,7082]],[[7083,7084,7085,7086,7087,7088]],[[7089,7090]],[[7091,7092,7093,7094]],[[7095,7096]],[[7097]],[[7098,7099]],[[7100,7101]],[[7102,7103]],[[7104,-7105,7105]],[[7106,7107]],[[7108,7109]],[[7110]],[[7111]],[[7112,7113]],[[7114,7115]],[[7116,7117,7118]],[[7119,7120,7121,7122]],[[7123,-7124,7124]],[[7125]],[[7126,7127]],[[7128,7129]],[[7130,7131]],[[7132,7133,7134,7135,7136,7137,7138,7139]],[[7140,7141,7142,7143]],[[7144]],[[7145,7146]],[[7147]],[[7148,7149]],[[7150,7151]],[[7152]],[[7153,7154]],[[7155]],[[7156]],[[7157]],[[7158]],[[7159]],[[7160]],[[7161]],[[7162]],[[7163]],[[7164]],[[7165]],[[7166]],[[7167]],[[7168]],[[7169]],[[7170]],[[7171]],[[7172]],[[7173]],[[7174]],[[7175]],[[7176]],[[7177]],[[7178]],[[7179]],[[7180]],[[7181]],[[7182]],[[7183]],[[7184]],[[7185]],[[7186]],[[7187]],[[7188]],[[7189]],[[7190]],[[7191]],[[7192]],[[7193]],[[7194]],[[7195]],[[7196]],[[7197]],[[7198]],[[7199]],[[7200]],[[7201]],[[7202]],[[7203,7204]],[[7205]],[[7206,7207]],[[7208]],[[7209,7210,7211,7212,7213,7214,7215]],[[7216]],[[7217,7218,7219]],[[7220,7221]],[[7222]],[[7223,7224]],[[7225]],[[7226]],[[7227,7228]],[[7229]],[[7230]],[[7231]],[[7232]],[[7233]],[[7234,7235]],[[7236,7237]],[[7238,7239]],[[7240,7241]],[[7242]],[[7243,7244]],[[7245,7246]],[[7247,7248]],[[7249,7250,7251,7252]],[[7253,7254,7255,7256]],[[7257,7258]],[[7259,7260,7261,7262]],[[7263,7264,7265,7266]],[[7267,7268]],[[7269,7270]],[[7271]],[[7272,7273]],[[7274,7275,7276]],[[7277]],[[7278]],[[7279]],[[7280,7281,7282,7283,7284,7285,7286,7287,7288,7289]],[[7290,7291]],[[7292,7293]],[[7294,7295]],[[7296]],[[7297,7298,7299,7300]],[[7301,7302,7303,7304,7305,7306]],[[7307,7308]],[[7309]],[[7310,7311]],[[7312,7313,7314]],[[7315,7316]],[[7317,7318]],[[7319]],[[7320,7321,7322]],[[7323,7324,7325,7326]],[[7327,7328,7329,7330,7331,7332,7333,7334]],[[7335,7336,7337]],[[7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351]],[[7352,7353,7354]],[[7355,7356,7357]],[[7358,7359,7360]],[[7361,7362,7363,7364,7365,7366]],[[7367,7368,7369,7370,7371]],[[7372,7373]],[[7374,7375,7376,7377,7378,7379,7380]],[[7381,7382]],[[7383,7384]],[[7385,7386,7387,7388]],[[7389]],[[7390,7391,7392,7393,7394,7395,7396,7397,7398]],[[7399,7400]],[[7401]],[[7402,7403]],[[7404,7405,7406,7407,7408]],[[7409,7410,7411,7412,7413]],[[7414,7415]],[[7416,7417,7418,7419]],[[7420,7421,7422,7423]],[[7424,7425,7426]],[[7427,7428,7429,7430]],[[7431]],[[7432,7433]],[[7434,7435,7436,7437,7438,7439,7440]],[[7441,7442]],[[7443,7444]],[[7445,7446,7447]],[[7448,7449]],[[7450,7451,7452]],[[7453]],[[7454,7455]],[[7456,7457,7458,7459]],[[7460,7461]],[[7462,7463,7464,7465,7466,7467]],[[7468,7469,7470,7471,7472,7473,7474,7475,7476]],[[7477,7478]],[[7479,7480,7481]],[[7482,7483,7484,7485]],[[7486,7487,7488,7489]],[[7490,7491,7492,7493]],[[7494,7495]],[[7496,7497,7498,7499]],[[7500,7501,7502,7503]],[[7504,7505,7506,7507]],[[7508,7509]],[[7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535]],[[7536,7537,7538,7539,7540,7541]],[[7542,7543]],[[7544,7545]],[[7546,7547,7548,7549,7550,7551,7552,7553,7554,7555]],[[7556,7557,7558,7559]],[[7560,7561]],[[7562,7563]],[[7564,7565]],[[7566]],[[7567]],[[7568,-7569,7569]],[[7570]],[[7571]],[[7572]],[[7573]],[[7574]],[[7575]],[[7576]],[[7577]],[[7578]],[[7579]],[[7580,7581]],[[7582,7583,7584,7585,7586,7587]],[[7588,7589]],[[7590,7591]],[[7592]],[[7593,7594,7595,7596,7597,7598]],[[7599,7600]],[[7601,7602]],[[7603]],[[7604,7605,7606,7607,7608,7609]],[[7610,7611,7612,7613]],[[7614,7615]],[[7616,7617,7618]],[[7619,7620]],[[7621,7622,7623]],[[7624,7625]],[[7626,7627]],[[7628,7629,7630]],[[7631,7632]],[[7633]],[[7634]],[[7635]],[[7636]],[[7637,7638,7639,7640]],[[7641]],[[7642,7643]],[[7644]],[[7645,7646,7647,7648]],[[7649,7650]],[[7651,7652]],[[7653]],[[7654,7655]],[[7656,7657]],[[7658]],[[7659,7660,7661,7662]],[[7663,7664]],[[7665,7666,7667,7668,7669,7670,7671,7672]],[[7673,7674,7675]],[[7676,7677,7678,7679]],[[7680,7681]],[[7682,7683,7684,7685]],[[7686,7687]],[[7688,7689,7690,7691,7692,7693]],[[7694]],[[7695,7696,7697,7698,7699,7700,7701]],[[7702,7703,7704]],[[7705,7706,7707]],[[7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739]],[[7740,7741,7742,7743]],[[7744,7745,7746,7747]],[[7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763]],[[7764]],[[7765]],[[7766,7767]],[[7768]],[[7769]],[[7770,7771]],[[7772,7773,7774]],[[7775,7776,7777,7778,7779,7780,7781]],[[7782]],[[7783,7784,7785]],[[7786,7787,7788,7789,7790,7791,7792,7793,7794,7795]],[[7796,7797]],[[7798,7799]],[[7800,7801]],[[7802,7803,7804,7805,7806,7807]],[[7808]],[[7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824]],[[7825,7826,7827,7828]],[[7829]],[[7830,7831]],[[7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857]],[[7858]],[[7859,7860]],[[7861,7862]],[[7863,7864]],[[7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877],[7878]],[[7879]],[[7880,7881,7882,7883,7884,7885]],[[7886]],[[7887]],[[7888]],[[7889]],[[7890]],[[7891]],[[7892]],[[7893,7894,7895,7896,7897]],[[7898,7899]],[[7900,7901]],[[7902,7903,7904,7905]],[[7906,7907,7908]],[[7909]],[[7910,7911,7912,7913,7914,7915,7916,7917,7918,7919]],[[7920,7921]],[[7922,7923]],[[7924,7925,7926,7927,7928,7929]],[[7930,7931,7932,7933,7934,7935,7936,7937]],[[7938,7939,7940,7941]],[[7942]],[[7943]],[[7944,7945]],[[7946,7947]],[[7948,-7949,7949]],[[7950,7951]],[[7952,7953]],[[7954,7955]],[[7956,7957]],[[7958,7959]],[[7960,7961,7962]],[[7963,7964,7965,7966]],[[7967,7968,7969,7970]],[[7971,7972,7973,7974]],[[7975,7976,7977,7978]],[[7979,7980,7981,7982]],[[7983,7984,7985,7986]],[[7987,7988,7989,7990]],[[7991,7992,7993,7994]],[[7995,7996,7997,7998]],[[7999,8000,8001,8002]],[[8003,8004,8005,8006]],[[8007,8008,8009,8010]],[[8011,8012,8013,8014,8015,8016]],[[8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035]],[[8036,8037]],[[8038]],[[8039,8040]],[[8041,8042,8043,8044,8045]],[[8046]],[[8047]],[[8048]],[[8049,8050]],[[8051,8052]],[[8053]],[[8054]],[[8055]],[[8056]],[[8057]],[[8058]],[[8059]],[[8060,8061,8062,8063]],[[8064]],[[8065]],[[8066]],[[8067,8068]],[[8069,8070]],[[8071]],[[8072,8073,8074,8075]],[[8076,8077,8078,8079,8080,8081]],[[8082,8083,8084,8085]],[[8086,8087,8088,8089]],[[8090,8091,8092]],[[8093]],[[8094]],[[8095]],[[8096,8097,8098,8099,8100]],[[8101]],[[8102]],[[8103]],[[8104]],[[8105,8106,8107,8108,8109,8110]],[[8111]],[[8112,8113]],[[8114,8115,8116,8117,8118]],[[8119,8120]],[[8121,8122,8123,8124]],[[8125,8126,8127,8128,8129,8130,8131,8132]],[[8133,8134,8135,8136,8137]],[[8138,8139,8140,8141,8142]],[[8143,8144,8145,8146]],[[8147,8148,8149,8150,8151,8152,8153]],[[8154,8155]],[[8156,8157]],[[8158,8159,8160]],[[8161]],[[8162,8163,8164,8165,8166,8167,8168,8169,8170]],[[8171]],[[8172,8173,8174,8175,8176,8177,8178,8179]],[[8180]],[[8181,8182,8183,8184]],[[8185,8186,8187,8188]],[[8189,8190]],[[8191,8192]],[[8193,8194]],[[8195,8196,8197]],[[8198,8199]],[[8200]],[[8201,8202]],[[8203,8204]],[[8205]],[[8206]],[[8207,8208]],[[8209,8210]],[[8211,8212,8213,8214]],[[8215,8216,8217]],[[8218,8219]],[[8220,8221,8222]],[[8223,8224,8225]],[[8226,8227]],[[8228,8229]],[[8230,8231,8232,8233,8234,8235,8236]],[[8237,8238,8239,8240,8241,8242,8243,8244]],[[8245,8246,8247,8248]],[[8249,8250]],[[8251]],[[8252]],[[8253,8254,8255]],[[8256,8257,8258,8259,8260]],[[8261]],[[8262,8263]],[[8264,8265]],[[8266,8267,8268,8269]],[[8270]],[[8271,8272,8273,8274]],[[8275,8276]],[[8277]],[[8278]],[[8279]],[[8280,8281]],[[8282]],[[8283]],[[8284]],[[8285,8286,8287,8288,8289,8290]],[[8291]],[[8292,8293,8294,8295]],[[8296]],[[8297,8298,8299,8300,8301,8302,8303,8304]],[[8305,8306]],[[8307,8308]],[[8309,8310]],[[8311,8312,8313,8314]],[[8315,8316,8317,8318,8319,8320]],[[8321,8322]],[[8323]],[[8324,8325]],[[8326]],[[8327]],[[8328,8329]],[[8330]],[[8331,8332]],[[8333,8334]],[[8335]],[[8336,8337]],[[8338]],[[8339,8340]],[[8341,8342]],[[8343,8344,8345,8346]],[[8347]],[[8348]],[[8349,8350,8351,8352]],[[8353,8354]],[[8355]],[[8356,8357]],[[8358]],[[8359,8360]],[[8361]],[[8362,8363]],[[8364]],[[8365]],[[8366,8367]],[[8368,8369]],[[8370,8371]],[[8372,8373,8374]],[[8375,8376]],[[8377,8378]],[[8379,8380,8381,8382,8383,8384]],[[8385,8386]],[[8387,8388]],[[8389]],[[8390]],[[8391]],[[8392]],[[8393]],[[8394]],[[8395]],[[8396]],[[8397]],[[8398]],[[8399]],[[8400]],[[8401,8402,8403]],[[8404,8405,8406,8407]],[[8408]],[[8409,8410]],[[8411]],[[8412]],[[8413]],[[8414,8415]],[[8416]],[[8417]],[[8418,8419]],[[8420]],[[8421]],[[8422]],[[8423,8424]],[[8425,8426]],[[8427]],[[8428,8429]],[[8430]],[[8431,8432,8433]],[[8434]],[[8435,8436]],[[8437,8438]],[[8439]],[[8440]],[[8441,8442,8443]],[[8444,8445]],[[8446,-8447,8447]],[[8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462]],[[8463]],[[8464]],[[8465]],[[8466]],[[8467,8468,8469,8470]],[[8471]],[[8472]],[[8473]],[[8474,8475,8476,8477]],[[8478,8479]],[[8480]],[[8481,8482]],[[8483]],[[8484,8485]],[[8486,8487]],[[8488,8489]],[[8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506]],[[8507,8508,8509,8510]],[[8511,8512]],[[8513,8514,8515,8516]],[[8517,8518]],[[8519]],[[8520]],[[8521]],[[8522,8523]],[[8524]],[[8525,8526]],[[8527]],[[8528,8529]],[[8530]],[[8531,8532,8533,8534,8535,8536,8537,8538]],[[8539]],[[8540,8541]],[[8542,8543]],[[8544]],[[8545]],[[8546,8547,8548]],[[8549]],[[8550]],[[8551]],[[8552,8553]],[[8554,8555]],[[8556]],[[8557,8558,8559,8560,8561,8562]],[[8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593]],[[8594,8595]],[[8596,8597,8598,8599]],[[8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620]],[[8621,8622,8623,8624]],[[8625]],[[8626,8627,8628,8629,8630]],[[8631,8632,8633]],[[8634]],[[8635]],[[8636]],[[8637]],[[8638]],[[8639]],[[8640]],[[8641]],[[8642]],[[8643]],[[8644]],[[8645]],[[8646]],[[8647]],[[8648,8649]],[[8650,8651]],[[8652]],[[8653,8654]],[[8655,8656]],[[8657,8658]],[[8659]],[[8660]],[[8661]],[[8662]],[[8663,8664]],[[8665]],[[8666,8667]],[[8668,8669]],[[8670]],[[8671,8672]],[[8673]],[[8674]],[[8675]],[[8676]],[[8677]],[[8678,8679,8680,8681]],[[8682,8683]],[[8684,8685]],[[8686,8687]],[[8688,8689]],[[8690,8691]],[[8692]],[[8693,8694]],[[8695,8696]],[[8697,8698,8699,8700]],[[8701,8702]],[[8703,8704,8705]],[[8706,8707,8708,8709]],[[8710,8711]],[[8712,8713]],[[8714]],[[8715,8716,8717,8718,8719,8720]],[[8721,8722]],[[8723]],[[8724,8725,8726,8727]],[[8728,8729,8730,8731]],[[8732,8733,8734,8735,8736,8737,8738,8739]],[[8740]],[[8741]],[[8742,8743]],[[8744,8745]],[[8746,8747,8748,8749]],[[8750]],[[8751,8752]],[[8753,-8754,8754]],[[8755]],[[8756,8757]],[[8758]],[[8759,8760,8761]],[[8762,8763]],[[8764,8765,8766,8767,8768,8769,8770]],[[8771,8772,8773,8774]],[[8775]],[[8776]],[[8777,8778]],[[8779]],[[8780]],[[8781]],[[8782]],[[8783]],[[8784]],[[8785]],[[8786]],[[8787]],[[8788]],[[8789,8790,8791,8792,8793,8794]],[[8795,8796]],[[8797,8798]],[[8799,8800,8801,8802]],[[8803,8804]],[[8805]],[[8806]],[[8807]],[[8808]],[[8809]],[[8810,8811]],[[8812,8813,8814,8815,8816,8817,8818]],[[8819]],[[8820,8821,8822,8823]],[[8824,8825]],[[8826,8827,8828,8829,8830,8831]],[[8832,8833,8834,8835]],[[8836,8837,8838,8839]],[[8840,8841]],[[8842,8843]],[[8844]],[[8845]],[[8846,8847,8848]],[[8849,8850,8851,8852]],[[8853]],[[8854,8855,8856]],[[8857,8858,8859,8860]],[[8861]],[[8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890]],[[8891,8892,8893,8894]],[[8895]],[[8896,8897,8898,8899]],[[8900]],[[8901,8902,8903,8904,8905,8906,8907,8908]],[[8909]],[[8910,8911,8912,8913]],[[8914,8915,8916,8917]],[[8918]],[[8919,8920]],[[8921]],[[8922]],[[8923]],[[8924,8925]],[[8926]],[[8927]],[[8928,8929]],[[8930,8931]],[[8932,8933]],[[8934]],[[8935]],[[8936,8937]],[[8938,8939]],[[8940,8941,8942,8943]],[[8944]],[[8945]],[[8946]],[[8947]],[[8948]],[[8949,8950]],[[8951]],[[8952,8953,8954,8955,8956]],[[8957,8958,8959]],[[8960]],[[8961,8962]],[[8963,8964]],[[8965,8966]],[[8967]],[[8968]],[[8969,8970]],[[8971,8972]],[[8973]],[[8974]],[[8975]],[[8976,8977]],[[8978]],[[8979,8980]],[[8981,8982]],[[8983,8984,8985,8986]],[[8987,8988]],[[8989,8990]],[[8991,8992]],[[8993]],[[8994]],[[8995,8996]],[[8997]],[[8998,8999]],[[9000,9001]],[[9002,9003]],[[9004,9005]],[[9006]],[[9007]],[[9008,9009,9010,9011,9012,9013,9014,9015]],[[9016,9017]],[[9018]],[[9019]],[[9020,9021]],[[9022,9023]],[[9024,9025]],[[9026,9027,9028]],[[9029,9030]],[[9031]],[[9032]],[[9033]],[[9034]],[[9035]],[[9036]],[[9037]],[[9038,9039]],[[9040,9041]],[[9042,9043]],[[9044]],[[9045,9046]],[[9047,9048,9049,9050]],[[9051,9052]],[[9053]],[[9054]],[[9055,9056]],[[9057,9058,9059,9060]],[[9061,9062,9063]],[[9064,9065]],[[9066,9067]],[[9068]],[[9069]],[[9070,9071]],[[9072,-9073,9073]],[[9074]],[[9075]],[[9076]],[[9077]],[[9078,9079]],[[9080,9081,9082,9083]],[[9084,9085]],[[9086]],[[9087]],[[9088,9089,9090,9091]],[[9092,9093,9094,9095]],[[9096]],[[9097,9098]]]},{"type":"MultiPolygon","id":"2","properties":{"density":2},"arcs":[[[9099,-1]],[[-44,9100]],[[-152,9101]],[[9102,-170,9103,9104]],[[9105]],[[9106,9107]],[[9108]],[[9109,9110,9111]],[[9112]],[[-36,9113]],[[9114]],[[9115,-240]],[[-17,9116]],[[9117,-231]],[[-19,9118]],[[9119]],[[9120]],[[9121]],[[9122]],[[9123]],[[9124]],[[9125]],[[9126]],[[-261,9127]],[[9128]],[[9129]],[[9130]],[[9131]],[[9132]],[[-270,9133]],[[9134]],[[9135]],[[9136]],[[9137]],[[9138]],[[9139]],[[9140,9141]],[[9142]],[[9143]],[[9144]],[[9145]],[[9146,-287]],[[9147]],[[9148,9149]],[[-297,9150]],[[9151]],[[9152]],[[9153,9154]],[[9155]],[[9156]],[[-22,9157,9158]],[[9159,9160,-318,9161]],[[9162,9163,-324,9164,9165,-24]],[[-32,9166]],[[9167,9168,-456]],[[9169,9170]],[[9171,-386,9172,9173]],[[-400,9174]],[[9175,9176]],[[-381,9177]],[[-477,9178,9179]],[[9180]],[[9181,-481,9182,9183]],[[-509,9184,9185,9186]],[[9187,-138,9188]],[[-54,9189]],[[533]],[[532]],[[9190,9191]],[[9192]],[[9193,9194]],[[9195]],[[9196,-566]],[[9197,9198]],[[9199]],[[9200]],[[9201]],[[9202,9203]],[[-731,9204,9205]],[[9206]],[[-613,9207]],[[9208,-608]],[[9209,9210]],[[-746,9211]],[[9212,-748]],[[9213,9214]],[[-352,9215]],[[9216,-775,9217,9218]],[[9219,9220]],[[9221,9222,9223,9224]],[[9225,9226]],[[9227]],[[9228,9229]],[[-408,9230]],[[9231,-416]],[[9232,9233]],[[-843,9234]],[[9235]],[[9236,-852,-845]],[[9237,9238]],[[-883,9239,-733,9240]],[[9241,9242,9243]],[[9244,9245]],[[9246,9247]],[[-932,9248]],[[9249,9250]],[[9251,9252,9253,9254,9255,9256]],[[9257]],[[-992,9258]],[[9259]],[[9260]],[[9261]],[[9262,-994]],[[-1012,9263,-1009,9264]],[[-1015,9265]],[[9266,9267,-1043,9268]],[[9269]],[[9270,-1062]],[[9271]],[[-1071,9272]],[[9273,9274]],[[9275,-30]],[[9276,-1138,9277]],[[9278,9279]],[[9280,-26]],[[9281,9282]],[[-1189,9283]],[[9284,9285]],[[9286]],[[9287]],[[-1440,9288,9289,9290]],[[9291,-1457,9292]],[[9293]],[[9294]],[[9295]],[[9296,9297]],[[-1520,9298]],[[-1504,9299,-1505,9300]],[[9301]],[[9302,-1407]],[[9303]],[[9304,9305]],[[9306,9307]],[[-1550,9308]],[[9309,9310]],[[9311,9312]],[[-410,9313]],[[-1647]],[[9314]],[[9315]],[[9316]],[[-1662,9317]],[[9318,9319]],[[-1691,9320,-1689,9321]],[[9322,9323,-1679]],[[9324,9325,-396]],[[9326]],[[-124,9327]],[[9328]],[[9329,-1731]],[[9330,-1746,9331]],[[9332,9333]],[[9334]],[[9335]],[[9336]],[[-1757,9337]],[[9338,9339]],[[9340,-1755]],[[9341]],[[9342,-1753]],[[9343,-1835]],[[9344,-1837]],[[9345,9346]],[[-1919,9347,9348,-1916,9349]],[[-1921,9350]],[[-1922,9351]],[[9352]],[[-1925,9353]],[[9354]],[[9355]],[[9356]],[[9357]],[[-2984,9358]],[[9359,9360]],[[9361,9362]],[[9363,9364]],[[9365]],[[9366]],[[9367]],[[9368]],[[9369]],[[9370]],[[-1932,9371]],[[9372]],[[9373]],[[9374,-1958]],[[9375]],[[-1955,9376]],[[9377,-1976,9378,9379]],[[9380,-2988]],[[9381]],[[9382]],[[9383]],[[-1945,9384]],[[9385]],[[9386]],[[9387]],[[9388]],[[9389]],[[9390]],[[9391]],[[9392]],[[9393]],[[9394]],[[9395]],[[9396]],[[9397]],[[9398]],[[9399]],[[9400]],[[9401]],[[-2029]],[[9402,-2020]],[[-2027,9403,9404]],[[9405,-2022]],[[9406]],[[9407,-2030,9408,-2024]],[[9409]],[[-2032,9410]],[[9411]],[[9412]],[[9413]],[[-2041,9414]],[[-2013,9415]],[[9416,-2035]],[[9417]],[[9418,-2038]],[[-2036,9419]],[[9420]],[[9421]],[[-2043,9422]],[[-2045,9423]],[[9424]],[[9425,9426]],[[9427,-2047]],[[-2053,9428]],[[-2057,9429]],[[9430,9431,-2060]],[[9432,9433]],[[9434,-2049]],[[9435]],[[9436]],[[9437]],[[-2077,9438]],[[9439]],[[9440]],[[9441]],[[9442]],[[9443]],[[9444]],[[9445]],[[9446]],[[9447]],[[9448]],[[9449]],[[9450]],[[9451]],[[9452]],[[-2128,9453]],[[9454]],[[9455]],[[9456]],[[9457]],[[9458]],[[9459]],[[-2091,9460]],[[9461]],[[9462,-2089]],[[9463]],[[9464]],[[9465]],[[9466]],[[9467]],[[9468]],[[9469]],[[-2082,9470]],[[-2084,9471]],[[9472]],[[9473]],[[9474]],[[-1781,9475]],[[-1783,9476]],[[9477]],[[9478]],[[9479]],[[9480]],[[9481]],[[9482]],[[-2007,9483]],[[9484]],[[9485]],[[9486]],[[9487]],[[-2114,9488]],[[-2112,9489]],[[-2110,9490]],[[9491,-2095]],[[-2009,9492,-2079,9493]],[[-2123,9494]],[[-2071,9495]],[[9496,-2067]],[[2336]],[[9497,9498,-2292]],[[-2140,9499]],[[-2281,9500]],[[9501,-2283]],[[9502,9503,9504,-2288]],[[9505,9506,9507,9508]],[[-2130,9509,9510,9511]],[[9512,-2132,9513,-2134]],[[9514]],[[9515,-2348,9516]],[[-2312,9517]],[[-2353,9518]],[[-2316,9519]],[[9520,9521]],[[9522]],[[9523,9524]],[[-2369,9525]],[[9526,9527,-2403]],[[9528,-2401,9529]],[[-1816,9530]],[[-1800,9531,9532]],[[9533,9534]],[[-1802,9535]],[[-1804,9536]],[[9537]],[[9538,9539]],[[9540,9541]],[[-2487,9542,-2427,9543]],[[9544]],[[9545]],[[9546]],[[-2392,9547]],[[9548]],[[9549]],[[9550]],[[9551]],[[9552]],[[9553]],[[9554]],[[9555]],[[9556]],[[9557]],[[-2435,9558]],[[-2433,9559]],[[9560]],[[9561,-2519]],[[9562,9563]],[[9564]],[[9565]],[[9566]],[[9567,-1858,9568]],[[9569]],[[9570,9571,-1853]],[[-1849,9572,9573]],[[-1851,9574,9575]],[[9576,9577,-1845]],[[9578]],[[9579,9580,-2459]],[[9581,9582,9583]],[[-2472,9584,9585]],[[9586,9587,-2474]],[[9588,-2407,-2481]],[[9589]],[[9590,9591,9592,9593,9594]],[[9595,9596,-2495]],[[9597]],[[9598]],[[9599]],[[9600]],[[9601]],[[-2507,9602]],[[9603,-2504,9604]],[[-2509,9605]],[[9606,-2515]],[[9607,9608,9609,9610,-2541,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626]],[[-2544,9627]],[[9628]],[[9629,-431]],[[9630,-2572]],[[-2116,9631]],[[9632]],[[-2585,9633]],[[9634]],[[9635]],[[9636,9637]],[[9638]],[[9639]],[[9640]],[[9641]],[[9642,9643]],[[9644,9645]],[[9646]],[[9647,-2601,9648,-2593]],[[9649]],[[9650]],[[9651]],[[9652]],[[9653]],[[-2599,9654]],[[9655]],[[9656]],[[9657]],[[9658]],[[9659]],[[9660]],[[9661]],[[9662]],[[9663]],[[9664]],[[9665,-2461]],[[9666,9667]],[[9668]],[[9669,9670]],[[9671]],[[-2658,9672]],[[-2660,9673,9674,9675]],[[9676]],[[9677]],[[9678]],[[9679]],[[9680,9681]],[[9682]],[[-2608,9683]],[[9684]],[[9685]],[[9686]],[[9687]],[[9688]],[[9689]],[[9690]],[[9691]],[[9692]],[[9693]],[[9694]],[[9695]],[[9696]],[[-2609,9697]],[[9698,9699,-2588]],[[-2611,9700,-2615,9701]],[[9702]],[[9703,9704]],[[9705,9706]],[[9707,-2618]],[[9708]],[[9709]],[[9710]],[[9711]],[[9712]],[[9713]],[[9714]],[[9715,-1797]],[[9716,9717]],[[9718,9719]],[[9720]],[[9721,-1785]],[[-1787,9722]],[[9723]],[[9724]],[[9725]],[[9726]],[[-1791,9727]],[[-1789,9728]],[[-2622,9729]],[[9730,-2469]],[[-2465,9731]],[[9732,-2463]],[[-2467,9733]],[[9734]],[[9735]],[[9736]],[[9737,9738]],[[9739]],[[9740]],[[9741]],[[9742,9743,9744,9745,9746,9747]],[[9748]],[[9749]],[[9750]],[[9751,-2631]],[[9752,9753]],[[9754,9755,-2118]],[[-2655,9756]],[[9757]],[[-2657,9758]],[[9759]],[[9760]],[[-2696,9761]],[[9762,-2691]],[[9763]],[[9764,-1865,9765,9766]],[[9767,-2698]],[[-2688,9768]],[[9769]],[[9770]],[[-2686,9771]],[[-1867,9772,9773]],[[-1869,9774]],[[-1872,9775,9776]],[[9777]],[[9778]],[[-2702,9779]],[[9780]],[[9781]],[[9782]],[[9783]],[[9784,9785,-1873,9786]],[[9787,-2708,9788]],[[-2706,9789]],[[9790,-2665]],[[-2667,9791]],[[9792]],[[9793]],[[9794]],[[9795]],[[-2669,9796]],[[-2671,9797]],[[-2710,9798]],[[9799,9800,9801,9802,-2712,9803,-1863,9804]],[[9805]],[[9806]],[[9807,-2500]],[[9808,-2498]],[[9809]],[[9810]],[[9811]],[[9812]],[[9813]],[[9814]],[[9815]],[[9816]],[[9817]],[[9818]],[[-2718]],[[9819,-2683]],[[-2719,9820]],[[9821,-1880,9822]],[[9823]],[[9824]],[[9825]],[[9826]],[[-2773,9827]],[[9828,-2771]],[[9829]],[[-2734,9830,-2769]],[[9831,-2732,9832]],[[-2729,9833,9834]],[[9835,9836]],[[-2723,9837]],[[-2765,9838]],[[9839,-2767]],[[9840]],[[9841]],[[9842]],[[9843]],[[9844]],[[9845,-2736]],[[9846,-2724]],[[9847,-2726]],[[-2740,9848]],[[9849]],[[9850,9851,9852,-2745]],[[9853]],[[9854]],[[9855]],[[9856]],[[9857]],[[9858]],[[9859]],[[9860]],[[9861]],[[9862]],[[9863,9864]],[[9865,9866]],[[9867]],[[9868]],[[9869]],[[9870]],[[9871]],[[9872]],[[9873]],[[9874]],[[9875]],[[9876]],[[9877]],[[9878]],[[9879]],[[9880]],[[9881]],[[9882]],[[-2742,9883]],[[9884]],[[-1886,9885,9886]],[[9887,9888]],[[9889,-2752,9890]],[[9891,-2746,9892,-2750]],[[9893]],[[9894,-2758]],[[9895]],[[9896]],[[9897]],[[9898,-2756]],[[9899]],[[9900]],[[9901]],[[9902]],[[-2762,9903]],[[9904,-2775]],[[9905,-2679]],[[9906]],[[-2782,9907]],[[-2778,9908]],[[9909]],[[9910]],[[-2760,9911]],[[9912,9913,-2753]],[[-2787,9914]],[[-2785,9915]],[[9916]],[[9917]],[[9918]],[[9919]],[[9920]],[[-2790,9921]],[[-2792,9922]],[[9923]],[[9924]],[[9925]],[[9926]],[[9927]],[[9928]],[[-2842,9929]],[[9930,9931]],[[9932,-2946]],[[9933]],[[9934,9935]],[[9936]],[[9937,9938]],[[9939,9940]],[[9941]],[[9942]],[[9943,9944]],[[9945]],[[9946]],[[-2961,9947]],[[9948]],[[9949]],[[9950]],[[9951]],[[9952]],[[9953]],[[9954]],[[9955]],[[9956,9957]],[[9958]],[[9959]],[[-3001,9960]],[[9961]],[[9962]],[[9963]],[[9964]],[[9965]],[[9966]],[[9967]],[[9968]],[[9969]],[[9970]],[[9971]],[[9972]],[[9973]],[[9974]],[[9975]],[[9976]],[[-2989]],[[9977,-1930]],[[9978]],[[9979]],[[9980]],[[-3011,9981]],[[9982]],[[9983]],[[9984]],[[9985]],[[9986,-3014]],[[-3012,9987]],[[-3018,9988,9989,9990]],[[9991]],[[9992]],[[9993]],[[9994]],[[9995]],[[9996]],[[9997,-3022]],[[-3024,9998]],[[9999,10000]],[[10001]],[[10002]],[[10003,-3028]],[[10004]],[[10005]],[[10006]],[[10007]],[[10008]],[[10009,10010,10011,-3007,10012,-95]],[[10013]],[[10014]],[[10015]],[[-3040,10016]],[[10017]],[[10018]],[[10019]],[[10020]],[[10021]],[[10022]],[[10023]],[[10024]],[[10025]],[[-2993,10026]],[[10027]],[[10028]],[[10029,10030,-3038,10031]],[[-2991,10032]],[[10033]],[[-3036,10034]],[[10035]],[[10036]],[[10037]],[[-104,10038,10039]],[[10040,10041,-102]],[[-150,10042]],[[10043]],[[10044]],[[10045]],[[10046]],[[10047]],[[-3044,10048]],[[-3049,10049]],[[10050]],[[-3179,10051]],[[10052]],[[10053]],[[10054]],[[10055]],[[10056]],[[10057]],[[10058]],[[10059,-3177]],[[10060]],[[10061]],[[10062,10063]],[[-3109,10064,10065]],[[10066]],[[10067]],[[10068]],[[10069,10070]],[[10071]],[[10072]],[[-3053,10073]],[[-3055,10074]],[[10075]],[[10076]],[[10077]],[[10078]],[[10079]],[[-3057,10080]],[[-3066,10081]],[[10082,-3068]],[[-3070,10083]],[[10084]],[[10085]],[[10086,10087]],[[10088]],[[10089,-3077]],[[10090]],[[10091]],[[10092]],[[10093]],[[10094,-3081,10095]],[[10096]],[[10097]],[[-3090,10098]],[[-3100,10099]],[[-3098,10100]],[[-3135,10101]],[[-3133,10102,10103]],[[-3139,10104]],[[10105]],[[-3111,10106,-3145,10107]],[[10108]],[[10109]],[[10110,10111]],[[-3153,10112]],[[-3149,10113]],[[10114,10115,-3484,10116]],[[10117]],[[10118,10119]],[[10120,-3161]],[[10121,10122,10123]],[[10124,-3163]],[[10125]],[[10126,10127,10128,10129,-3170]],[[10130,10131]],[[10132,10133]],[[10134]],[[10135]],[[10136]],[[10137]],[[-3199,10138]],[[10139,-3211]],[[10140,-3213]],[[10141]],[[10142]],[[10143,-3201]],[[10144]],[[10145]],[[10146,-3203]],[[10147]],[[-3209,10148]],[[10149]],[[10150]],[[10151]],[[10152,-90]],[[10153]],[[10154]],[[10155]],[[10156]],[[10157]],[[10158]],[[10159]],[[10160]],[[10161]],[[10162]],[[10163]],[[-3215,10164]],[[10165,-3219]],[[-3217,10166]],[[10167]],[[10168]],[[10169]],[[10170]],[[10171,-3228]],[[-3231,10172]],[[-3229,10173]],[[10174]],[[-3235,10175]],[[10176]],[[10177,-3239]],[[-3243,10178]],[[-3249,10179]],[[-3247,10180]],[[10181]],[[10182]],[[10183]],[[10184]],[[10185]],[[10186]],[[10187]],[[10188]],[[10189]],[[10190]],[[10191]],[[10192]],[[10193]],[[10194]],[[10195]],[[-3277,10196]],[[10197]],[[10198]],[[10199]],[[10200]],[[10201]],[[10202]],[[10203]],[[10204]],[[10205]],[[10206,-3279]],[[10207]],[[10208]],[[10209]],[[10210]],[[10211]],[[10212]],[[10213]],[[10214]],[[10215]],[[-3252,10216]],[[10217]],[[10218]],[[10219]],[[10220]],[[10221,-3115]],[[10222,10223]],[[10224]],[[10225]],[[10226]],[[10227]],[[10228,10229]],[[10230]],[[10231]],[[10232,10233]],[[10234]],[[10235]],[[10236]],[[10237,10238]],[[10239]],[[10240,-3223]],[[-86,10241]],[[10242,-88]],[[10243]],[[10244]],[[10245]],[[10246]],[[10247]],[[10248]],[[10249]],[[10250]],[[10251]],[[10252]],[[10253,-3289]],[[10254]],[[10255]],[[10256]],[[-3291,10257]],[[-3293,10258]],[[10259]],[[10260]],[[10261]],[[10262]],[[-3295,10263]],[[10264]],[[10265]],[[10266]],[[10267]],[[10268]],[[10269]],[[10270]],[[-3343,10271]],[[-3299,10272]],[[10273]],[[10274]],[[10275]],[[-3300,10276]],[[-3302,10277]],[[10278]],[[10279]],[[10280]],[[10281]],[[10282]],[[10283]],[[-3307,10284]],[[-3308,10285]],[[10286]],[[10287]],[[10288]],[[10289]],[[10290]],[[10291]],[[10292]],[[10293]],[[10294]],[[-3314,10295]],[[-3316,10296]],[[-3318,10297]],[[10298,-3312]],[[10299]],[[10300]],[[10301]],[[10302]],[[10303]],[[-3320,10304]],[[10305]],[[10306]],[[10307]],[[10308]],[[10309]],[[10310]],[[10311]],[[10312,-3323]],[[-3325,10313]],[[10314]],[[10315]],[[10316]],[[10317,-3327]],[[10318]],[[10319]],[[-3330,10320]],[[10321]],[[10322]],[[10323]],[[10324]],[[10325]],[[10326]],[[10327]],[[10328,-3333]],[[10329]],[[10330]],[[10331]],[[10332]],[[10333]],[[10334]],[[10335]],[[10336]],[[10337,10338]],[[10339]],[[-3349,10340]],[[-3347,10341]],[[10342,-3356]],[[-3354,10343]],[[-3359,10344]],[[10345,-2999]],[[10346,-2997]],[[10347,10348,-3363]],[[-1903,10349]],[[10350,-3369]],[[-3374,10351,-3371,10352,10353]],[[10354,10355,-3409]],[[-3495,10356]],[[10357,-84]],[[10358,-82]],[[10359]],[[10360]],[[10361]],[[10362]],[[10363]],[[10364]],[[10365]],[[10366]],[[10367]],[[10368]],[[10369]],[[10370]],[[10371]],[[10372]],[[10373]],[[10374]],[[10375]],[[10376]],[[-3413,10377]],[[10378]],[[10379]],[[-3416,10380]],[[-3423,10381,-3419,10382]],[[-3421,10383]],[[10384,-3425]],[[-3429,10385]],[[10386]],[[10387]],[[-3432,10388]],[[10389]],[[10390]],[[10391]],[[-3434,10392]],[[-3437,10393,10394]],[[10395]],[[-3399,10396]],[[10397]],[[10398]],[[10399]],[[10400,-3438,10401,10402]],[[10403]],[[10404]],[[-3450,10405]],[[10406,-3452]],[[-3454,10407]],[[-3456,10408]],[[10409,10410]],[[10411,-3480]],[[10412]],[[10413]],[[10414,10415]],[[10416,10417]],[[10418]],[[10419]],[[10420]],[[10421,10422]],[[10423]],[[10424]],[[10425]],[[10426]],[[10427,10428]],[[10429]],[[10430]],[[10431]],[[10432]],[[10433]],[[-3522,10434]],[[10435]],[[10436]],[[10437]],[[10438]],[[10439]],[[10440]],[[10441]],[[10442]],[[-3506,10443]],[[10444,-3504,10445]],[[10446]],[[10447]],[[10448]],[[10449]],[[10450]],[[-3389,10451]],[[10452,-3387,10453]],[[-3385,10454,10455]],[[10456]],[[10457,-3510]],[[10458,-3379]],[[10459]],[[-3391,10460]],[[-3395,10461]],[[-3526,10462]],[[10463]],[[10464]],[[-3535,10465]],[[10466,-1890]],[[10467,10468]],[[10469,-1895,10470]],[[10471]],[[10472,-3538]],[[-3546]],[[-3552,10473]],[[10474,-3550]],[[10475]],[[10476,-3542]],[[10477,-3540]],[[-3544,10478]],[[10479,-3383,10480]],[[10481,-3381,10482]],[[-3397,10483,-3548,10484]],[[-3577,10485]],[[10486]],[[10487,-3610,10488,-3627,10489]],[[10490,10491,-2888,10492]],[[10493,10494,10495,10496,10497]],[[10498,10499,-3629,10500]],[[10501,-2931,10502,10503,-2928]],[[-3665,10504]],[[10505]],[[10506]],[[10507,10508,10509,10510]],[[10511]],[[10512]],[[-3965,10513]],[[10514,10515,10516]],[[10517,10518]],[[10519,-3678]],[[-2868,10520]],[[10521]],[[10522,-3796,10523,10524]],[[-3810,10525]],[[10526,10527,10528,10529]],[[10530]],[[10531,-3891,10532,-3830]],[[-3756,10533]],[[10534]],[[10535]],[[10536]],[[10537]],[[-3833,10538]],[[10539]],[[10540]],[[10541]],[[10542]],[[10543]],[[10544]],[[10545]],[[10546]],[[10547]],[[10548]],[[10549]],[[10550]],[[-3853,10551]],[[-3857,10552]],[[10553,-3865]],[[-3851,10554]],[[-3855,10555]],[[10556,-3859]],[[10557,-3867]],[[10558]],[[10559]],[[10560,10561]],[[10562]],[[10563]],[[10564]],[[10565]],[[-3875,10566,10567]],[[10568]],[[10569,-3762]],[[10570]],[[-3126,10571]],[[-3909]],[[10572]],[[10573]],[[10574]],[[10575,-3730,10576]],[[10577,10578]],[[10579]],[[10580]],[[10581]],[[10582]],[[10583]],[[10584]],[[10585]],[[10586,10587]],[[10588]],[[10589]],[[-3823,10590]],[[10591]],[[10592]],[[10593,10594]],[[10595,10596]],[[10597]],[[-3935,10598]],[[10599]],[[10600]],[[10601]],[[10602]],[[10603]],[[10604]],[[10605]],[[10606]],[[10607,10608]],[[10609]],[[-3946,10610]],[[-3948,10611]],[[10612,-3887,10613,10614]],[[10615,10616,10617,10618,10619,10620,10621,10622]],[[10623,10624,10625,10626]],[[10627]],[[-3953,10628]],[[10629,-3957]],[[-3959,10630]],[[10631]],[[-3676,10632,10633]],[[10634,-3737,10635]],[[10636]],[[10637]],[[10638,-3742]],[[10639]],[[10640]],[[10641]],[[10642]],[[10643,-3981]],[[10644,-3979]],[[-2878,10645,10646]],[[10647]],[[10648]],[[-4052,10649]],[[10650]],[[10651]],[[10652]],[[10653,-3996]],[[-4002,10654]],[[10655]],[[10656,10657]],[[10658]],[[10659]],[[-4003,10660]],[[10661]],[[10662,10663]],[[10664]],[[10665,10666]],[[10667,10668]],[[10669]],[[10670]],[[-3808,10671]],[[10672]],[[10673]],[[10674,10675]],[[10676]],[[-4022,10677]],[[10678,10679]],[[-4027,10680]],[[10681,10682,-4033,10683,10684,10685]],[[-4037,10686]],[[-3777,10687]],[[10688]],[[10689]],[[10690]],[[10691]],[[10692]],[[10693,10694]],[[10695,10696,-4095]],[[10697]],[[10698]],[[10699,10700,10701,-2911]],[[-4097,10702]],[[10703,-4099]],[[10704]],[[10705,10706,-4149]],[[10707,-2884]],[[10708,10709,-2907]],[[-4160,10710]],[[10711]],[[10712]],[[10713]],[[-4176,-4162,10714]],[[10715,-4184]],[[-4189,10716]],[[10717]],[[10718]],[[10719]],[[10720,10721,10722]],[[10723]],[[-4243]],[[-4232,10724]],[[10725]],[[10726]],[[10727]],[[10728]],[[10729]],[[10730,10731]],[[10732]],[[10733]],[[10734]],[[10735]],[[10736,10737]],[[10738]],[[10739]],[[10740]],[[10741]],[[10742]],[[10743]],[[10744]],[[10745]],[[10746]],[[10747,10748]],[[10749,10750]],[[10751]],[[10752,10753]],[[10754,-4124,10755]],[[4299]],[[10756,10757]],[[-4330,10758]],[[10759,10760,10761,10762]],[[10763,10764]],[[10765,-4345,10766]],[[10767,10768,10769]],[[10770]],[[10771]],[[10772]],[[10773]],[[10774]],[[10775]],[[10776]],[[10777,-4012]],[[10778]],[[10779]],[[10780]],[[10781]],[[10782]],[[10783]],[[10784,10785]],[[10786,10787]],[[10788]],[[10789]],[[10790]],[[10791]],[[10792]],[[10793]],[[10794]],[[-4376,10795]],[[10796,-4378]],[[10797,-4383]],[[10798]],[[10799]],[[10800,-4384]],[[10801]],[[10802]],[[10803]],[[10804,-4387]],[[10805]],[[10806]],[[10807,-4392]],[[10808]],[[10809]],[[-4406,10810,10811]],[[10812,10813]],[[-4410,10814,-4472,10815]],[[10816,10817]],[[10818]],[[10819,10820,-4427]],[[10821]],[[10822,10823,-4432]],[[-4434,10824]],[[10825,10826,10827]],[[10828]],[[10829]],[[-4364,10830]],[[10831]],[[-4362,10832]],[[10833]],[[10834]],[[10835]],[[10836,10837]],[[10838]],[[10839]],[[10840]],[[10841]],[[10842]],[[10843]],[[10844]],[[10845]],[[10846]],[[10847]],[[10848]],[[10849]],[[10850]],[[10851]],[[10852,-4494]],[[10853]],[[10854]],[[10855]],[[10856]],[[10857]],[[10858]],[[10859]],[[10860]],[[10861]],[[10862]],[[10863]],[[10864]],[[10865]],[[10866,-4459]],[[10867,-4457]],[[10868,-4461]],[[10869]],[[10870]],[[10871]],[[10872]],[[10873]],[[10874]],[[10875]],[[10876]],[[10877,10878]],[[10879]],[[10880]],[[10881]],[[10882,10883]],[[10884,10885]],[[10886]],[[10887]],[[10888]],[[10889]],[[10890]],[[10891]],[[10892]],[[10893]],[[10894]],[[10895,10896,10897,-4359]],[[10898,-4357,10899]],[[10900]],[[10901]],[[10902]],[[10903]],[[10904]],[[10905]],[[10906]],[[10907]],[[10908]],[[10909]],[[10910]],[[10911]],[[10912]],[[10913]],[[10914]],[[10915]],[[10916]],[[10917]],[[-4522,10918]],[[10919]],[[10920]],[[10921]],[[10922]],[[10923]],[[10924]],[[10925,10926]],[[10927,10928]],[[10929]],[[10930]],[[10931]],[[10932]],[[10933]],[[10934]],[[10935]],[[10936]],[[10937]],[[10938]],[[-4476,10939]],[[-4478,10940]],[[10941]],[[10942]],[[10943,-4480]],[[10944]],[[10945,-4526]],[[10946]],[[10947]],[[10948]],[[10949]],[[10950]],[[10951]],[[10952]],[[10953]],[[10954]],[[10955]],[[10956]],[[10957]],[[-4488,10958]],[[10959,-4486]],[[-4484,10960]],[[-4482,10961]],[[-4492,10962]],[[-4467,10963,10964]],[[10965]],[[10966,10967]],[[10968,10969]],[[10970,10971,10972,10973]],[[10974,10975]],[[10976,-4533,10977]],[[10978,-4547]],[[10979]],[[10980]],[[10981]],[[-4575,10982]],[[10983,10984,10985,10986]],[[10987]],[[10988,-4665,10989,10990]],[[10991,10992,10993]],[[10994,10995,10996,10997]],[[-4789,10998]],[[-4698,10999]],[[11000]],[[11001,-4702]],[[-4728,11002,11003,11004,-4708,11005,-4733,11006]],[[-4206,11007]],[[4721]],[[11008,11009,-4199]],[[11010,-4202]],[[11011]],[[11012]],[[11013]],[[11014]],[[11015]],[[11016]],[[-4310,11017,11018]],[[11019,11020,11021]],[[11022]],[[-4288,11023]],[[11024,11025]],[[11026]],[[11027,11028,-4276]],[[11029]],[[-4274,11030,11031]],[[11032,-4750,11033,-4757]],[[11034,-4769]],[[11035,-4772]],[[-4776,11036]],[[11037,11038,-4780]],[[11039,-4778]],[[-4774,11040]],[[11041]],[[-4770,11042]],[[11043]],[[-4767,11044]],[[11045]],[[11046,-4855]],[[-4761,11047]],[[11048]],[[-4755,11049]],[[11050,-4837]],[[11051]],[[-4753,11052]],[[-4839,11053]],[[11054,-4841]],[[-4786,11055]],[[11056,-4784]],[[11057,-4765]],[[11058]],[[11059,11060]],[[11061,-4731]],[[11062]],[[11063,11064,11065,11066,11067]],[[11068,11069,-4691]],[[-4282,11070]],[[11071,-4284]],[[-4817,11072]],[[-4815,11073]],[[11074]],[[11075,-4835]],[[11076,11077,11078,-4268]],[[11079,11080,11081,-4830]],[[11082,11083,11084,-4279]],[[11085,-4763]],[[11086,11087]],[[-4882,11088]],[[11089]],[[11090,-4861,11091,11092,11093]],[[11094]],[[11095,11096]],[[11097]],[[11098]],[[11099]],[[11100]],[[-4905,11101]],[[11102]],[[11103]],[[11104]],[[-4901,11105]],[[11106]],[[11107]],[[11108]],[[11109,11110]],[[-4864,11111,11112]],[[11113,-4336,11114]],[[11115]],[[11116]],[[11117]],[[11118]],[[11119,11120,11121,-4341]],[[11122]],[[11123]],[[11124,11125]],[[11126,-4884,11127]],[[11128,11129]],[[11130,11131,11132,-4867]],[[11133]],[[11134]],[[11135]],[[11136]],[[11137]],[[-4893,11138]],[[11139]],[[11140,11141]],[[11142]],[[11143]],[[11144,11145]],[[11146]],[[11147]],[[4908]],[[-4844,11148,11149]],[[11150,11151]],[[11152,11153]],[[11154,11155]],[[11156,-4920,11157,11158,-4912]],[[11159,11160,11161,11162,-4929]],[[11163]],[[11164]],[[11165]],[[11166]],[[11167]],[[11168]],[[11169]],[[11170]],[[11171]],[[11172,-4944]],[[-4946,11173,-4948,11174]],[[11175]],[[11176]],[[11177]],[[11178]],[[11179]],[[11180]],[[11181]],[[11182]],[[11183]],[[11184]],[[11185]],[[11186]],[[11187]],[[11188]],[[11189]],[[11190]],[[11191]],[[11192]],[[11193]],[[11194,11195]],[[11196,11197]],[[11198,11199]],[[11200,-5148]],[[11201]],[[11202]],[[11203]],[[11204,-5045]],[[-5056,11205]],[[11206,-5055,11207]],[[11208]],[[11209]],[[11210,-5058]],[[11211,-5047]],[[11212]],[[11213]],[[-4957,11214]],[[11215]],[[11216]],[[11217]],[[11218]],[[11219]],[[11220]],[[11221,-4961]],[[11222]],[[-5147,11223,11224]],[[11225,-5073]],[[-5051,11226]],[[-5049,11227]],[[11228]],[[11229]],[[-4972,11230,11231]],[[11232,-4974]],[[11233]],[[-4980,11234]],[[11235]],[[11236]],[[11237]],[[11238]],[[11239]],[[11240]],[[11241,11242]],[[11243]],[[11244]],[[-4998,11245]],[[11246]],[[11247]],[[11248]],[[11249]],[[11250]],[[11251,-4990]],[[-4994,11252]],[[11253]],[[11254]],[[11255]],[[11256]],[[-5137,11257]],[[11258]],[[11259]],[[11260]],[[11261]],[[11262]],[[11263,11264]],[[11265]],[[-5008,11266]],[[-5004,11267]],[[11268]],[[11269]],[[11270]],[[11271]],[[11272]],[[11273]],[[-5022,11274]],[[-5028,11275]],[[11276]],[[11277]],[[-5032,11278]],[[11279]],[[11280,-5034]],[[-5002,11281]],[[11282]],[[11283]],[[-5071,11284]],[[11285,11286,-5017,11287]],[[11288]],[[-5079,11289]],[[11290,-5091]],[[11291]],[[-5082,11292]],[[11293]],[[11294,11295,-5065,11296,11297]],[[11298,-4984]],[[11299]],[[11300,11301]],[[-5100,11302]],[[11303]],[[11304]],[[11305,11306]],[[11307,11308]],[[11309,-5036,11310]],[[11311,11312]],[[11313]],[[11314]],[[11315]],[[11316,-4978]],[[-5114,11317]],[[5115]],[[11318,11319]],[[-5117,11320]],[[11321,11322,11323]],[[11324]],[[11325]],[[11326]],[[-5024,11327]],[[11328,11329]],[[11330]],[[11331]],[[-5131,11332]],[[5135]],[[11333,-5000,11334,11335,-5135]],[[11336]],[[11337,11338,11339,11340]],[[11341,11342]],[[11343]],[[11344,-5433,11345,11346]],[[11347,-4913]],[[-5163,11348,11349]],[[11350]],[[11351,11352,-1230]],[[11353,11354,11355,11356]],[[-1235,11357]],[[11358,11359,11360,11361]],[[11362,-5183,11363]],[[11364]],[[-1403,11365]],[[-1389,11366]],[[11367,-1369]],[[11368,-1429,11369]],[[11370]],[[11371]],[[11372]],[[-1423,11373]],[[-1377,11374,11375]],[[11376,-1379]],[[-1425,11377,11378]],[[-1434,11379]],[[11380]],[[11381]],[[11382]],[[-1436,11383]],[[11384]],[[11385,11386]],[[11387,11388]],[[11389]],[[11390]],[[11391,11392,-1421]],[[11393,11394,-1418]],[[11395]],[[11396,11397,-5212]],[[-5214,11398]],[[11399]],[[-4610,11400]],[[11401,11402]],[[11403,11404]],[[-5238,11405]],[[-5240,11406]],[[11407]],[[11408]],[[11409]],[[11410]],[[11411]],[[11412]],[[11413]],[[11414]],[[11415]],[[11416]],[[11417]],[[11418]],[[-5242,11419,11420]],[[-5248,11421]],[[-5246,11422]],[[11423]],[[11424]],[[11425]],[[11426]],[[-5251,11427]],[[11428]],[[11429]],[[11430]],[[11431]],[[-4605,11432]],[[11433,-4609]],[[-5253,11434]],[[11435,11436]],[[-5225,11437]],[[11438,-5227]],[[11439]],[[11440,11441,-5260]],[[11442,11443]],[[-5244,11444]],[[11445]],[[11446]],[[11447]],[[11448,11449]],[[11450,11451]],[[11452,11453]],[[11454]],[[-5273,11455]],[[11456]],[[11457]],[[11458]],[[11459]],[[-5318,11460]],[[-5320,11461]],[[11462]],[[11463]],[[11464,11465]],[[11466,-5346]],[[11467]],[[11468]],[[-5014,11469]],[[-5012,11470]],[[11471]],[[11472]],[[11473]],[[-5353,11474]],[[11475,-5351]],[[-5341,11476]],[[11477,11478,11479,11480,11481,11482,11483]],[[11484]],[[11485]],[[11486,-1250]],[[11487,-1252]],[[11488,-1254]],[[11489,-1256]],[[-5356,11490]],[[11491]],[[11492,11493]],[[-1258,11494]],[[11495,-1260]],[[11496]],[[11497]],[[11498]],[[11499]],[[11500]],[[11501,11502]],[[11503]],[[11504]],[[11505]],[[11506]],[[11507]],[[11508]],[[11509]],[[11510]],[[11511]],[[11512]],[[-5394,11513]],[[11514]],[[11515]],[[11516,11517]],[[-5358,11518]],[[11519]],[[11520]],[[11521]],[[11522]],[[11523,11524]],[[11525]],[[-5360,11526,11527]],[[-5363,11528]],[[-5387,11529]],[[-5389,11530]],[[11531]],[[11532]],[[11533]],[[11534]],[[11535]],[[11536,-5369]],[[-5367,11537]],[[-5371,11538]],[[11539,-5365]],[[11540,11541]],[[11542]],[[11543]],[[11544]],[[11545]],[[11546]],[[11547]],[[11548]],[[11549]],[[11550]],[[-5437,11551]],[[11552,11553]],[[11554]],[[11555]],[[11556]],[[11557]],[[11558,-5463]],[[11559,-5376]],[[-5378,11560]],[[-5380,11561,-5461,11562]],[[11563,-5373,11564,-5382]],[[11565]],[[11566,-5384]],[[-5406,11567]],[[-5408,11568]],[[11569,-5410]],[[-5412,11570]],[[11571]],[[11572]],[[11573]],[[11574]],[[-5452,11575]],[[-5385,11576]],[[11577]],[[11578,11579]],[[-1276,11580]],[[11581]],[[11582]],[[11583]],[[11584]],[[11585]],[[11586]],[[11587]],[[-5392,11588]],[[11589,-1262]],[[11590]],[[11591]],[[-1274,11592]],[[11593,-1272]],[[11594]],[[11595]],[[11596,-1264]],[[-1266,11597]],[[-1268,11598]],[[-1270,11599]],[[11600]],[[-5414,11601]],[[-5416,11602]],[[-5418,11603]],[[-5421,11604]],[[-5423,11605]],[[11606,-5404]],[[-5435,11607,-5084,11608]],[[11609,11610]],[[11611,11612]],[[11613,-5441]],[[11614,11615]],[[-5443,11616]],[[11617,-5445,11618]],[[11619,11620]],[[11621,11622]],[[11623]],[[11624]],[[-5454,11625]],[[11626,-5455,11627]],[[11628,11629]],[[11630,11631]],[[11632,11633,11634,-5459]],[[11635]],[[11636]],[[11637,11638]],[[11639,-5486]],[[11640,-5470]],[[11641,-5482,11642]],[[11643,-5497,11644,11645]],[[-5499,11646]],[[11647]],[[11648]],[[-5503,11649]],[[11650]],[[11651]],[[11652]],[[11653]],[[11654]],[[11655]],[[11656]],[[11657]],[[11658]],[[11659]],[[11660]],[[11661]],[[11662]],[[11663]],[[11664]],[[11665]],[[11666]],[[11667]],[[11668]],[[11669]],[[-1291,11670]],[[11671]],[[11672]],[[11673]],[[11674]],[[11675]],[[11676]],[[-1293,11677]],[[11678]],[[11679]],[[-1295,11680]],[[11681,-1297]],[[11682]],[[11683]],[[11684]],[[11685]],[[-1299,11686]],[[11687,-1301]],[[11688]],[[11689]],[[11690]],[[11691]],[[11692]],[[11693]],[[11694]],[[11695]],[[11696]],[[11697]],[[11698]],[[11699]],[[11700]],[[11701]],[[11702]],[[11703]],[[11704]],[[11705]],[[11706]],[[11707]],[[11708]],[[11709]],[[11710]],[[11711]],[[11712]],[[11713]],[[11714]],[[11715]],[[11716]],[[11717]],[[11718]],[[11719]],[[11720]],[[11721]],[[11722]],[[11723,-5489]],[[-5493,11724]],[[11725,11726]],[[-5508,11727]],[[11728]],[[11729]],[[11730]],[[11731,11732]],[[11733]],[[11734]],[[11735,11736]],[[11737]],[[11738]],[[11739]],[[11740]],[[11741]],[[11742]],[[11743]],[[11744]],[[11745]],[[11746]],[[11747]],[[11748]],[[-5528,11749]],[[-5530,11750]],[[11751]],[[11752]],[[-5532,11753]],[[11754]],[[11755,-1280]],[[-5526,11756]],[[11757,-1288,11758]],[[11759,11760,-1285,11761,-5511]],[[11762]],[[11763]],[[-5517,11764]],[[11765,-5474]],[[11766]],[[11767]],[[11768,11769]],[[11770]],[[11771]],[[11772]],[[11773]],[[-5520,11774]],[[-1449,11775]],[[-5541,11776]],[[11777]],[[11778,11779,11780,-1365]],[[11781,11782]],[[11783,-1367]],[[11784,-1360]],[[-5610,11785,11786,11787]],[[11788,-5615,11789,11790]],[[11791,-5560]],[[11792,-5620,11793,11794,11795]],[[-5635,11796]],[[11797]],[[-5758,11798]],[[11799]],[[11800]],[[-5821,11801,11802]],[[11803,11804,-1322]],[[11805]],[[11806,-5756]],[[11807]],[[-5732,11808,11809]],[[-5613,11810]],[[11811,-5743,11812,11813]],[[11814,11815,-5812,11816,-5902]],[[-5762,11817,11818]],[[11819,-5604,11820,-5602,11821]],[[-5606,11822,11823]],[[-5638,11824,-5768,11825,11826]],[[11827,-5640]],[[11828]],[[11829]],[[11830]],[[11831]],[[11832]],[[11833]],[[11834]],[[11835]],[[11836]],[[11837]],[[11838]],[[11839]],[[-5781,11840]],[[11841]],[[11842]],[[11843]],[[11844]],[[11845]],[[11846]],[[11847]],[[11848]],[[11849]],[[11850]],[[11851]],[[11852]],[[11853]],[[-5884,11854]],[[11855]],[[11856]],[[11857,-5886]],[[11858]],[[11859,-5888]],[[11860]],[[11861]],[[11862,-5890]],[[11863]],[[11864]],[[11865]],[[11866,11867,11868,11869]],[[11870,11871,-5810]],[[-5806,11872]],[[11873,-5800]],[[-5798,11874,11875]],[[11876,-5910]],[[11877,11878]],[[11879,11880]],[[11881]],[[11882]],[[11883]],[[11884]],[[-5791,11885]],[[11886]],[[11887]],[[11888]],[[11889,-5897]],[[11890,-5899]],[[11891]],[[11892]],[[11893]],[[-5785,11894]],[[11895]],[[11896,-1318]],[[11897]],[[11898]],[[11899]],[[-5949,11900]],[[11901]],[[-5827,11902]],[[11903,-5831]],[[-1316,11904]],[[11905,-1314]],[[-1412,11906]],[[11907]],[[11908]],[[11909]],[[11910]],[[11911]],[[-5934,11912]],[[11913]],[[11914]],[[11915,-5938]],[[-1312,11916,11917]],[[-5836,11918]],[[11919,-5947]],[[11920]],[[11921]],[[11922]],[[11923]],[[11924]],[[11925]],[[11926,-5962]],[[11927,-5964]],[[11928,-1303]],[[11929,-1305]],[[-1309,11930]],[[11931]],[[11932]],[[11933]],[[11934,-5952]],[[11935,-5954]],[[11936]],[[11937,-5956]],[[-5966,11938]],[[-5970,11939]],[[-5968,11940]],[[11941]],[[11942]],[[11943]],[[11944]],[[11945]],[[11946,-5972]],[[11947,-5958]],[[11948]],[[11949]],[[11950,-5838]],[[11951,-5840]],[[11952]],[[11953]],[[11954]],[[11955]],[[11956,-5842]],[[11957]],[[11958]],[[11959]],[[11960,-5844]],[[11961]],[[11962]],[[11963]],[[11964]],[[-5846,11965]],[[11966]],[[11967]],[[11968]],[[11969,11970]],[[11971,-5849,11972]],[[-5978,11973]],[[-5851,11974,11975]],[[11976,-5853,11977]],[[11978]],[[11979,-5855]],[[11980]],[[11981]],[[11982,-5992]],[[11983,11984]],[[-5857,11985]],[[11986,-5867]],[[11987,-5865,11988]],[[11989,-5863]],[[11990,-5988]],[[-6010]],[[11991,-5986]],[[-5984,11992]],[[-5982,11993]],[[11994,-5996,11995,-6011]],[[-6006,11996]],[[11997]],[[-5994,11998,-6008,11999]],[[12000,-5870]],[[12001,-5671]],[[12002,12003]],[[12004,-5661]],[[12005,-6047]],[[12006,-6051]],[[12007,-6049]],[[12008]],[[12009]],[[12010]],[[12011]],[[12012,12013]],[[12014,-5657]],[[12015]],[[12016]],[[-6034,12017]],[[-6036,12018]],[[12019]],[[12020]],[[-5655,12021]],[[12022,-5653]],[[12023,12024,-6028]],[[12025,12026]],[[12027,-6026,12028]],[[-6024,12029]],[[12030]],[[-6022,12031]],[[-6020,12032]],[[12033,-6032]],[[12034,-6030]],[[-6014,12035]],[[12036,-6016]],[[-6018,12037]],[[12038]],[[12039]],[[12040]],[[-6038,12041]],[[12042]],[[12043]],[[12044]],[[12045]],[[12046]],[[12047]],[[12048,12049]],[[12050]],[[12051]],[[12052,-5872]],[[12053]],[[12054,-5874]],[[12055]],[[12056]],[[12057]],[[12058]],[[12059,12060]],[[12061,12062]],[[12063]],[[12064]],[[12065]],[[12066]],[[12067]],[[12068]],[[12069]],[[12070,-5878]],[[12071]],[[12072]],[[12073]],[[-5876,12074]],[[12075]],[[12076]],[[12077,12078,-5882]],[[12079,12080]],[[12081,12082]],[[12083,-6045,12084]],[[12085,-5650,12086]],[[12087,-6056,12088]],[[12089,12090,-6054]],[[12091,12092]],[[12093]],[[12094]],[[12095]],[[12096]],[[12097]],[[12098]],[[12099]],[[12100]],[[12101,-6183]],[[-6181,12102]],[[12103]],[[12104]],[[12105]],[[12106]],[[12107]],[[12108]],[[12109]],[[12110]],[[12111]],[[12112]],[[12113]],[[12114]],[[12115]],[[12116]],[[12117]],[[12118]],[[12119]],[[12120]],[[12121]],[[12122]],[[12123]],[[12124]],[[12125]],[[12126]],[[12127]],[[12128]],[[12129]],[[12130]],[[-6063,12131]],[[12132]],[[12133]],[[12134]],[[12135]],[[12136]],[[12137]],[[12138]],[[12139]],[[12140]],[[12141,-6059]],[[12142]],[[12143]],[[12144]],[[12145]],[[12146]],[[12147]],[[12148]],[[-6062,12149]],[[12150]],[[-6066,12151]],[[-6068,12152]],[[12153,-6070]],[[12154,-6072]],[[-6074,12155]],[[-6076,12156]],[[12157]],[[12158]],[[12159,12160,-5721]],[[12161,-5718]],[[-5716,12162,-5714,12163]],[[12164]],[[12165]],[[12166]],[[-6083,12167,-5712,12168]],[[-6079,12169]],[[12170]],[[12171]],[[12172]],[[12173,-5709]],[[12174]],[[12175]],[[12176]],[[-6092,12177,12178]],[[-5701,12179,-6169,12180]],[[12181,-6150,12182,6151,12183,-6148]],[[12184,-6123]],[[-6144,12185]],[[-6146,12186]],[[-6171,12187]],[[6118,-6119,12188]],[[12189,-6167]],[[12190,-6165]],[[-6117,12191]],[[12192,-6109]],[[-6115,12193]],[[12194,-6111]],[[-6127,12195]],[[12196,-6160]],[[12197,-6101]],[[-6097,12198]],[[12199,-5699]],[[12200,-5697]],[[12201,-5695]],[[12202,-5693]],[[-5691,12203]],[[12204]],[[12205,-5689]],[[-5687,12206]],[[12207,-5685]],[[12208]],[[12209]],[[12210]],[[12211]],[[12212]],[[12213,-6158]],[[12214]],[[-6155,12215]],[[-6157,12216]],[[12217]],[[-6130,12218]],[[-6196,12219]],[[12220,-6195]],[[12221]],[[12222]],[[12223]],[[12224,12225]],[[12226]],[[12227]],[[12228]],[[12229]],[[12230]],[[12231]],[[12232]],[[12233]],[[12234]],[[-6192,12235]],[[12236]],[[12237]],[[12238]],[[12239]],[[12240]],[[12241]],[[12242]],[[12243,-6190]],[[12244,-5572]],[[12245,-5570]],[[12246,12247]],[[-6137,12248,12249]],[[12250,12251,12252,-6139]],[[12253]],[[12254,-5892,12255]],[[12256,-5648]],[[-6173,12257]],[[-5574,12258,12259]],[[12260,-6236,12261,-5584]],[[-5579,12262]],[[12263]],[[12264]],[[12265]],[[12266,-5577]],[[12267]],[[12268]],[[12269]],[[-6214,12270]],[[12271]],[[-5728,12272]],[[-5562,12273]],[[12274,-5564]],[[12275,12276,12277,12278,-6224]],[[12279]],[[-6228,12280]],[[12281]],[[12282]],[[-5625,12283,12284,12285]],[[12286]],[[12287,-5631]],[[12288]],[[12289]],[[12290]],[[-6237,12291]],[[-6243,12292]],[[-6348,12293]],[[-6346,12294]],[[12295]],[[12296]],[[12297]],[[12298]],[[12299]],[[12300,-1344]],[[12301]],[[12302]],[[12303]],[[12304]],[[12305,-1340]],[[12306,12307]],[[-6397,12308,12309]],[[12310,12311]],[[12312]],[[12313]],[[12314,12315]],[[12316]],[[12317]],[[12318,12319]],[[12320]],[[12321]],[[12322]],[[12323]],[[12324,-6371]],[[-6377,12325]],[[12326,-6373]],[[-6375,6374,12327]],[[12328]],[[12329]],[[12330]],[[12331]],[[-6383,12332]],[[-6381,12333]],[[12334]],[[-6379,12335]],[[12336]],[[12337]],[[12338]],[[12339]],[[12340]],[[12341]],[[12342,12343]],[[12344,-6390]],[[-6392,12345]],[[12346]],[[12347,12348]],[[12349]],[[12350,12351]],[[12352]],[[12353]],[[12354,-5588]],[[12355]],[[12356]],[[12357]],[[12358,-6410]],[[-6405,12359]],[[12360]],[[12361]],[[12362]],[[-5537,12363]],[[-6435,12364]],[[12365]],[[12366]],[[12367]],[[12368,12369]],[[12370]],[[12371,12372,-1353]],[[12373]],[[12374,12375]],[[12376]],[[12377,12378,-6343]],[[12379]],[[12380]],[[12381,12382,-6427]],[[-6324,12383]],[[12384]],[[12385,12386,-6429]],[[12387]],[[-6454,12388]],[[-6336,12389]],[[12390,12391,-6339]],[[12392]],[[-6413,12393]],[[12394,12395,-1357,-1355]],[[12396]],[[12397,-6421]],[[12398,-6457]],[[12399,-1455]],[[-6415,12400]],[[-6506,12401,12402,12403,-6500,12404,12405]],[[-6510,12406,12407]],[[12408,-6494,12409,12410]],[[12411,12412,12413,12414]],[[12415,12416]],[[12417,12418]],[[-6555,12419]],[[12420,12421]],[[12422,12423]],[[-6575,12424]],[[12425,-6581,12426]],[[12427,12428,12429,12430,12431,12432]],[[12433,12434]],[[12435]],[[12436,12437]],[[12438,12439,12440,12441]],[[12442,12443]],[[12444,12445]],[[-6610,12446]],[[-1122,12447]],[[-6564,12448]],[[-6626,12449]],[[-6573,12450]],[[12451,12452,-6620]],[[12453,12454]],[[12455,-6720]],[[12456]],[[12457]],[[12458]],[[12459,12460,12461,12462]],[[12463]],[[12464,12465]],[[12466]],[[12467]],[[12468,12469]],[[6687,12470,12471,12472,-6692]],[[12473]],[[12474]],[[12475]],[[-6719]],[[12476,12477,12478,12479,12480,12481,-6703,12482]],[[-1002,12483]],[[-6800,12484]],[[12485,12486,-6733]],[[12487,-6740,12488,-6736]],[[-6755,12489,12490,12491]],[[-6763,12492]],[[12493]],[[-6775,12494,12495,12496,-6772,12497]],[[-6770,12498,12499]],[[12500,12501,12502,-6764,12503,12504]],[[-6780,12505,12506]],[[12507,-6767]],[[12508,-6756]],[[12509]],[[12510]],[[12511]],[[12512]],[[12513]],[[12514,12515,12516,-7150]],[[12517,12518]],[[-6805,12519]],[[12520,-6815]],[[12521,-6813]],[[12522,-6811]],[[-6809,12523]],[[12524,-6817]],[[-6828,12525]],[[12526]],[[12527]],[[12528]],[[12529,-6831,12530,-6834]],[[-6835,12531,12532,12533]],[[12534,-6833]],[[12535,-6954]],[[12536,12537]],[[-6838,12538]],[[12539]],[[-6856,12540]],[[12541]],[[12542]],[[12543]],[[12544]],[[12545]],[[12546]],[[-6969,12547]],[[12548,12549]],[[-6956,12550]],[[12551,12552]],[[12553,-6960,12554]],[[-6962,12555,12556]],[[-6862,12557,12558,12559,12560]],[[12561]],[[12562]],[[12563]],[[-6860,12564]],[[12565]],[[12566,-6858]],[[-6852,12567]],[[-6854,12568]],[[12569,-6848]],[[-7155,12570]],[[12571]],[[12572]],[[12573,-6846]],[[12574,-6844]],[[12575,-6842]],[[12576]],[[12577,-6840]],[[12578]],[[12579]],[[6971]],[[12580,-6973,12581,12582]],[[12583]],[[12584,12585]],[[12586,12587]],[[12588,12589]],[[-6850,12590]],[[12591,-7010]],[[12592]],[[12593]],[[12594]],[[-7014,12595]],[[12596,-7012]],[[12597]],[[-6865,12598]],[[-7018,12599]],[[12600,12601,-7016]],[[12602]],[[-7022,12603]],[[12604,-7024]],[[-7026,12605]],[[-7028,12606]],[[12607]],[[12608]],[[12609]],[[12610]],[[-7031,12611,12612]],[[12613,-7033]],[[12614]],[[12615]],[[12616,-7008]],[[-7006,12617]],[[12618]],[[12619]],[[12620]],[[12621]],[[12622]],[[12623]],[[12624]],[[12625,-7004]],[[-7000,12626]],[[12627,-7002]],[[12628]],[[12629]],[[12630]],[[12631]],[[12632]],[[12633]],[[-7035,12634]],[[-7037,12635]],[[12636,12637]],[[12638,12639]],[[12640]],[[12641]],[[12642,-6998]],[[-6985,12643]],[[12644,-6987]],[[-7042,12645]],[[-7052,12646]],[[12647,-7044]],[[12648,12649]],[[12650,-6992]],[[12651,-6994]],[[12652]],[[12653,12654]],[[12655]],[[12656]],[[12657]],[[12658]],[[-7071,12659]],[[12660]],[[12661]],[[12662]],[[-6867,12663]],[[12664]],[[12665]],[[12666]],[[12667]],[[12668]],[[12669]],[[12670,-6869]],[[-6871,12671]],[[-6873,12672]],[[-6944,12673]],[[-7073,12674,-6942,12675]],[[12676,-6946]],[[12677,-6948]],[[12678]],[[12679]],[[12680]],[[12681]],[[12682]],[[12683]],[[12684]],[[12685]],[[12686]],[[12687]],[[12688]],[[12689]],[[12690]],[[12691]],[[12692]],[[12693]],[[12694]],[[12695]],[[12696]],[[12697,-6936]],[[12698,-6932]],[[-6934,12699]],[[12700,-6930]],[[12701]],[[12702,-6928]],[[-6926,12703]],[[12704,-6964]],[[12705,-6924]],[[12706,-6922]],[[12707]],[[12708]],[[12709]],[[12710]],[[12711]],[[12712]],[[12713]],[[12714]],[[12715]],[[12716]],[[12717]],[[12718]],[[12719]],[[12720]],[[12721]],[[12722]],[[-7075,12723]],[[12724]],[[12725]],[[12726]],[[12727]],[[12728]],[[12729]],[[12730]],[[12731]],[[12732]],[[12733]],[[12734,-6890]],[[12735]],[[12736,-6888]],[[12737,-6886]],[[12738]],[[12739,-6882]],[[-6884,12740]],[[-6879,12741]],[[-6877,12742]],[[-6875,12743]],[[12744,12745]],[[12746,12747,-6990]],[[12748,12749]],[[12750]],[[12751,12752]],[[12753,12754]],[[12755]],[[12756]],[[12757]],[[12758]],[[12759]],[[12760]],[[12761,12762]],[[12763,12764]],[[-7077,12765]],[[12766,12767]],[[12768]],[[12769]],[[12770,12771]],[[12772,12773]],[[12774]],[[-7081]],[[12775,-7079,12776,-7067]],[[12777,-7069]],[[12778,-7065]],[[12779,-7057]],[[12780,-7059]],[[12781,-7061]],[[12782]],[[-7082,12783]],[[12784]],[[12785]],[[12786]],[[12787]],[[12788]],[[12789]],[[12790,-7121,12791,-7055]],[[12792,-7088]],[[12793,12794,-7084,12795]],[[-7086,12796]],[[-7127,12797]],[[12798]],[[-7090,12799]],[[12800]],[[-7094,12801]],[[12802,-7092]],[[12803]],[[12804]],[[12805]],[[12806]],[[-6896,12807]],[[12808,-6898]],[[12809]],[[12810,12811]],[[12812,12813,12814]],[[12815]],[[12816]],[[12817]],[[12818]],[[12819]],[[12820]],[[12821]],[[12822]],[[12823]],[[12824]],[[12825]],[[12826]],[[12827]],[[12828]],[[12829]],[[12830,-7099]],[[12831]],[[-6894,12832]],[[-7101,12833]],[[12834,12835]],[[12836,12837,12838,12839,12840,12841]],[[12842,-6902]],[[12843]],[[12844,12845]],[[12846,12847]],[[12848,12849]],[[12850,-7118,12851]],[[12852,12853]],[[12854,12855]],[[12856,12857,12858,12859]],[[12860]],[[12861]],[[12862]],[[12863]],[[12864]],[[12865]],[[12866,12867]],[[12868,12869]],[[12870]],[[12871]],[[12872]],[[12873]],[[12874]],[[12875]],[[12876]],[[12877]],[[12878]],[[12879]],[[-7135,12880]],[[12881]],[[12882]],[[12883,-7139]],[[12884,-7133]],[[12885]],[[12886,-7151]],[[12887]],[[12888]],[[12889]],[[12890]],[[12891]],[[12892]],[[12893]],[[12894]],[[12895]],[[12896]],[[12897,-7131]],[[12898,-7218,12899,12900,12901,12902,12903]],[[-738,12904]],[[12905]],[[-7239,12906]],[[12907]],[[12908,-7497]],[[12909]],[[12910]],[[-7250,12911,-7248,12912]],[[12913]],[[12914,12915,-7211]],[[12916,12917,12918]],[[12919]],[[12920,12921]],[[12922,12923,12924,12925]],[[12926,12927]],[[12928,12929]],[[12930]],[[12931,-7283,12932]],[[12933,-623]],[[12934]],[[12935]],[[12936]],[[12937]],[[-615,12938]],[[-7298,12939]],[[-7300,12940]],[[12941]],[[12942]],[[12943]],[[12944]],[[12945]],[[12946,-7308]],[[12947,12948]],[[12949,-7311]],[[-7305,12950]],[[12951]],[[12952,-621]],[[12953]],[[-7316,12954]],[[-7318,12955]],[[12956]],[[-631,12957]],[[12958,12959]],[[12960,12961]],[[-625,12962,-7321]],[[12963]],[[12964]],[[12965]],[[12966]],[[12967]],[[12968]],[[12969]],[[12970]],[[12971]],[[-7332,12972]],[[12973,-7334]],[[-7352,12974]],[[12975,12976]],[[12977,12978]],[[12979]],[[12980]],[[12981,12982,-7336,12983,-7354,12984]],[[-7379,12985,12986,12987]],[[12988]],[[12989]],[[12990]],[[12991]],[[12992]],[[12993]],[[12994]],[[12995]],[[12996,-7356,12997]],[[12998]],[[12999,13000]],[[13001,13002,13003]],[[-7365,13004,13005]],[[13006,13007]],[[13008,13009]],[[13010]],[[13011]],[[13012,13013]],[[13014,13015]],[[13016,13017]],[[13018,13019]],[[13020]],[[13021]],[[13022]],[[13023]],[[13024,13025]],[[13026,13027]],[[-7328,13028]],[[13029,13030]],[[13031]],[[13032]],[[13033]],[[13034]],[[13035]],[[13036]],[[-7386,13037]],[[13038,13039]],[[13040,13041]],[[13042]],[[13043]],[[13044]],[[13045,13046]],[[13047]],[[13048,13049]],[[13050,13051]],[[13052,-7286,13053,13054,13055]],[[13056,13057]],[[-7391,13058,13059]],[[13060,13061]],[[13062]],[[13063,13064]],[[13065,13066]],[[13067]],[[13068,-7407,13069]],[[13070,13071]],[[13072,-7414,13073]],[[13074]],[[13075]],[[-7415,13076]],[[13077]],[[13078]],[[13079]],[[-7417,13080]],[[-7419,13081]],[[13082,13083]],[[13084]],[[13085,13086,13087,13088]],[[13089,13090,-7405,13091,-7422]],[[-7393,13092]],[[13093]],[[13094]],[[-7436,13095]],[[13096,-7439,13097]],[[-7441,13098]],[[13099,13100]],[[13101,13102,13103,-7442]],[[13104]],[[13105]],[[13106]],[[13107]],[[13108]],[[13109]],[[13110]],[[13111]],[[-7445,13112]],[[13113]],[[13114]],[[-7448,13115,13116]],[[13117]],[[13118]],[[13119]],[[13120]],[[13121,13122,13123,-7450]],[[13124]],[[13125]],[[13126,13127,13128,13129,13130]],[[13131]],[[13132]],[[13133,13134]],[[13135]],[[13136]],[[13137]],[[13138]],[[13139]],[[13140]],[[13141,13142]],[[13143,13144,13145,13146]],[[-7458,13147,13148,13149]],[[13150,13151]],[[13152,13153]],[[13154,13155]],[[13156,13157]],[[13158,13159]],[[13160,13161]],[[-7464,13162]],[[13163,13164]],[[13165,-7475,13166]],[[13167,13168]],[[13169]],[[-7483,13170,-7480,13171,-7489,13172,13173,13174]],[[-7485,13175]],[[13176,-7487,13177]],[[13178]],[[-7494,13179]],[[13180,-7492]],[[13181]],[[-7495,13182]],[[13183,13184]],[[13185,-7451,13186]],[[13187,13188]],[[13189,13190]],[[13191,13192]],[[13193]],[[13194]],[[13195]],[[13196,13197]],[[-7397,13198]],[[-7503,13199]],[[-7501,13200]],[[13201,13202,-7505,13203]],[[-7340,13204]],[[-7542,13205]],[[13206,-7538]],[[-7545,13207]],[[13208,-7511]],[[-7551,13209]],[[13210]],[[13211,-7558]],[[-7560,13212]],[[-7569,13213]],[[13214]],[[13215]],[[13216]],[[-7561,13217]],[[13218,-7555]],[[13219,-7553]],[[13220,-7549,13221,-7563]],[[13222,-7471]],[[-7565,13223]],[[13224]],[[13225,13226]],[[-7547,13227]],[[-6938,13228]],[[13229,-7583]],[[-7587,13230]],[[13231,-7585]],[[13232,13233]],[[13234]],[[13235]],[[13236]],[[13237]],[[13238]],[[13239]],[[13240]],[[13241]],[[13242]],[[13243]],[[13244]],[[13245]],[[13246]],[[13247]],[[-6912,13248]],[[13249]],[[13250]],[[-7589,13251]],[[-7594,13252]],[[-7598,13253,-7601,13254]],[[13255,-7596]],[[13256,-7605]],[[13257,-7613]],[[13258,-7611]],[[13259]],[[13260]],[[13261]],[[-7607,13262]],[[-7609,13263]],[[13264,-7615]],[[13265]],[[-7619,13266,13267]],[[-7641,13268,-7621,13269]],[[13270,-701]],[[13271,-707,13272]],[[-7677,13273,13274,13275,-7681,13276]],[[13277,13278]],[[-7656,13279,13280,13281]],[[13282]],[[13283,13284,-7676]],[[13285,13286]],[[-7698,13287]],[[13288,-7707,13289,13290,-7703]],[[13291]],[[13292,13293,-7757]],[[13294]],[[13295]],[[13296]],[[13297]],[[13298]],[[13299,13300,13301,13302]],[[-7769]],[[13303]],[[-7727,13304]],[[13305]],[[-1597,13306,-1595,13307]],[[-1623,13308]],[[-2562,13309]],[[-2560,13310]],[[13311,-2558]],[[13312,-2556]],[[-2554,13313]],[[-1625,13314]],[[13315,-1590]],[[-7792,13316]],[[-7751,13317]],[[13318,-7814]],[[13319]],[[13320]],[[-7826,13321]],[[13322,-7828]],[[-7818,13323]],[[13324]],[[13325]],[[13326]],[[13327]],[[13328,13329]],[[13330]],[[13331]],[[13332]],[[13333]],[[-2152,13334]],[[-2221,13335]],[[13336]],[[13337]],[[13338]],[[13339]],[[13340]],[[13341]],[[13342]],[[13343]],[[13344]],[[13345]],[[13346]],[[13347]],[[13348]],[[13349]],[[13350]],[[13351]],[[13352]],[[13353]],[[13354]],[[13355]],[[-1611,13356]],[[-1605,13357]],[[13358,-1603]],[[-1599,13359]],[[-2275]],[[13360,-2148]],[[13361,-7864]],[[13362,-2219]],[[13363]],[[13364,13365,-7894]],[[-7897,13366]],[[-1615,13367]],[[-2146,13368]],[[-1619,13369]],[[13370]],[[13371,-2158,13372]],[[13373,-7803]],[[13374,-1607]],[[13375,-8205,13376,13377,-7908]],[[13378]],[[-7816,13379]],[[-2161,13380]],[[13381,-2165]],[[-2276]],[[13382,-7867]],[[13383,-7869]],[[13384]],[[13385]],[[13386]],[[13387]],[[13388,-2190]],[[13389]],[[13390]],[[13391]],[[13392]],[[13393]],[[13394]],[[13395]],[[13396]],[[13397]],[[13398,-2186]],[[13399]],[[13400]],[[13401]],[[13402]],[[-7881,13403]],[[13404]],[[13405,-2184]],[[13406]],[[13407]],[[13408]],[[13409]],[[13410]],[[-7883,13411]],[[13412,-2180]],[[13413]],[[13414]],[[13415]],[[13416]],[[-2176,13417]],[[13418]],[[-2172,13419]],[[13420,13421,-2168]],[[13422,-2192]],[[-2170,13423]],[[-2204,13424]],[[13425,-2206,13426,13427]],[[13428]],[[13429]],[[13430]],[[13431]],[[13432]],[[13433]],[[13434]],[[13435]],[[13436]],[[13437]],[[13438]],[[13439]],[[13440]],[[13441]],[[-7919,13442]],[[13443,-7917]],[[13444]],[[13445]],[[13446]],[[13447]],[[13448]],[[13449]],[[-7922,13450]],[[13451]],[[13452]],[[13453]],[[13454]],[[13455]],[[13456]],[[13457]],[[13458]],[[13459]],[[13460]],[[13461]],[[13462]],[[13463,-7924]],[[13464]],[[13465]],[[13466]],[[-2215,13467,13468]],[[13469]],[[13470]],[[13471]],[[13472]],[[13473]],[[13474]],[[13475]],[[13476]],[[13477,13478,13479,-2200]],[[-2202,13480,13481,13482,13483,13484,13485]],[[13486,-2198]],[[-2196,13487]],[[13488,13489]],[[13490,-7928]],[[13491,-7947]],[[13492]],[[-7937,13493]],[[-7952,13494,13495,13496]],[[13497,-7956]],[[13498,-7933]],[[13499]],[[13500,-7931]],[[13501]],[[-2194,13502]],[[-7878,13503]],[[-7873,13504]],[[13505,-7939]],[[-7941,13506]],[[13507]],[[-2269,13508]],[[13509]],[[13510]],[[13511]],[[13512]],[[13513]],[[13514]],[[13515]],[[13516]],[[13517]],[[13518]],[[13519,13520,-7960,-7961]],[[13521]],[[13522]],[[13523]],[[13524]],[[13525]],[[13526,13527,-7876]],[[13528,-2262,13529]],[[-2265,13530]],[[-7964,13531]],[[-7966,13532]],[[-7970,13533]],[[-7974,13534]],[[-7978,13535]],[[-7976,13536]],[[13537,-7982]],[[-7980,13538]],[[-7986,13539]],[[13540,-7984]],[[-7988,13541]],[[-7990,13542]],[[-7994,13543]],[[13544,-7996]],[[-7998,13545]],[[13546]],[[13547]],[[13548]],[[-8001,13549]],[[-8003,13550]],[[-8006,13551]],[[-8004,13552]],[[13553,-8009]],[[-8011,13554]],[[-8014,13555]],[[-8012,13556]],[[-8016,13557,-8024,13558]],[[13559,-8022]],[[13560]],[[13561]],[[-8040,13562]],[[13563]],[[13564]],[[13565,-8044]],[[13566,-8046,13567]],[[13568]],[[13569]],[[13570]],[[13571]],[[13572]],[[13573]],[[13574]],[[13575]],[[13576]],[[13577]],[[13578]],[[13579]],[[13580]],[[13581]],[[13582,-8028]],[[13583]],[[13584]],[[13585]],[[13586]],[[13587]],[[13588]],[[13589]],[[13590]],[[13591]],[[13592]],[[13593]],[[13594]],[[13595]],[[13596]],[[13597]],[[13598]],[[13599]],[[13600]],[[13601]],[[-8088,13602]],[[8048]],[[13603]],[[13604]],[[13605]],[[13606,-8077]],[[13607]],[[13608]],[[13609]],[[13610]],[[13611]],[[13612]],[[13613]],[[13614]],[[13615]],[[13616]],[[13617]],[[13618]],[[13619]],[[13620]],[[-8050,13621]],[[13622]],[[13623,13624]],[[8053]],[[13625]],[[13626]],[[13627]],[[13628,13629]],[[13630]],[[13631]],[[13632]],[[8054]],[[13633]],[[13634]],[[-8056]],[[13635]],[[13636]],[[8056]],[[13637]],[[13638]],[[13639]],[[8057]],[[13640]],[[13641]],[[13642]],[[13643]],[[13644]],[[13645]],[[13646]],[[13647]],[[13648]],[[8058]],[[13649]],[[13650]],[[13651]],[[13652]],[[13653]],[[13654]],[[13655]],[[-8026,13656]],[[13657]],[[13658]],[[13659]],[[13660]],[[13661]],[[13662]],[[13663]],[[13664]],[[13665]],[[13666]],[[13667]],[[13668]],[[-8090,13669]],[[13670]],[[13671]],[[13672]],[[13673]],[[13674]],[[13675]],[[13676]],[[13677]],[[13678]],[[13679]],[[13680]],[[13681]],[[13682]],[[13683,-8063]],[[-8061,13684]],[[13685]],[[13686]],[[13687]],[[13688]],[[13689]],[[13690]],[[13691]],[[13692]],[[13693]],[[13694]],[[13695]],[[-664,13696]],[[13697,-662]],[[13698,-7957]],[[-2250,13699]],[[13700,13701,-2248,13702]],[[13703]],[[-8073,13704,13705]],[[13706]],[[13707,13708]],[[13709,-8079]],[[13710,-8085]],[[13711,-8083]],[[-2246,13712]],[[13713]],[[13714]],[[13715]],[[13716,-2244]],[[13717]],[[-2242,13718]],[[13719]],[[13720]],[[13721]],[[13722]],[[-2240,13723,13724]],[[13725]],[[13726]],[[13727]],[[13728]],[[-672,13729]],[[13730]],[[13731]],[[13732,13733,-2231]],[[13734,-2234]],[[13735]],[[13736,-2236]],[[13737]],[[13738]],[[13739]],[[13740]],[[13741]],[[13742]],[[13743]],[[13744]],[[13745]],[[13746]],[[13747]],[[13748]],[[13749]],[[13750]],[[13751]],[[13752]],[[13753]],[[-2227,13754]],[[13755]],[[13756]],[[13757]],[[13758]],[[-2225,13759]],[[13760]],[[13761]],[[-7824,13762]],[[13763,13764]],[[-8099,13765,13766]],[[13767,13768]],[[13769]],[[13770,-7513]],[[13771]],[[13772]],[[13773]],[[13774]],[[13775]],[[13776]],[[13777]],[[13778]],[[13779]],[[13780]],[[13781]],[[13782]],[[13783]],[[13784]],[[13785]],[[13786]],[[-660,13787]],[[13788]],[[13789]],[[13790]],[[13791]],[[13792]],[[13793]],[[13794]],[[13795]],[[13796]],[[13797]],[[13798]],[[13799]],[[-7515,13800]],[[-658,13801,13802]],[[13803]],[[13804]],[[13805]],[[13806]],[[13807]],[[13808]],[[13809]],[[13810]],[[13811]],[[-7521,13812]],[[-7519,13813]],[[-7517,13814]],[[13815,13816]],[[13817]],[[13818]],[[13819,-7523,13820]],[[13821]],[[13822,-655]],[[13823]],[[13824,-8111,13825,13826,13827]],[[-8112]],[[-7525,13828,13829]],[[13830,-2223]],[[-2229,13831]],[[13832,-666]],[[-668,13833]],[[13834,13835,-2238]],[[13836]],[[13837,13838]],[[-7822,13839,-8115,13840]],[[-8117,13841]],[[-677,13842,13843]],[[-8120,13844]],[[13845]],[[13846,-679]],[[13847]],[[13848]],[[-7845,13849]],[[13850]],[[13851]],[[13852]],[[13853]],[[13854]],[[13855]],[[13856]],[[13857]],[[13858]],[[13859]],[[-653,13860]],[[13861]],[[13862]],[[13863]],[[13864]],[[13865,-8125]],[[-8127,13866]],[[-8133,13867]],[[-8131,13868,-8143,13869]],[[-8249,13870]],[[13871,13872,13873,-7843]],[[13874,-8107]],[[13875,13876,13877,-7527]],[[13878]],[[13879,-7529]],[[-7531,13880]],[[13881,-7533]],[[13882]],[[13883]],[[13884]],[[-8146,13885]],[[-8144,13886]],[[13887,-8136,13888]],[[13889]],[[-8149,13890,13891]],[[-8155,13892]],[[13893]],[[13894]],[[13895,-8154]],[[-8157,13896]],[[-7344,13897]],[[-7346,13898]],[[-8109,13899]],[[13900,13901,13902,-8160]],[[13903,13904]],[[13905,13906,13907]],[[13908,-8152,13909]],[[13910,13911,13912,13913,13914,13915,13916]],[[-8167,13917]],[[-7342,13918,-8169,13919]],[[13920,13921]],[[13922,13923]],[[13924]],[[13925]],[[13926]],[[13927]],[[13928,13929]],[[13930]],[[13931]],[[-685,13932]],[[13933]],[[13934]],[[-7717,13935,13936]],[[13937]],[[13938]],[[13939]],[[13940]],[[13941]],[[13942]],[[-8201]],[[13943,-7715,13944,13945,13946,13947,13948]],[[13949]],[[13950]],[[13951]],[[13952]],[[13953,13954,13955,13956,-8140]],[[13957]],[[13958]],[[13959,13960,-646]],[[-8211,13961]],[[-8203,13962]],[[13963,-644,13964]],[[13965]],[[13966]],[[13967]],[[13968]],[[13969]],[[13970,13971,-8192,13972]],[[13973]],[[13974]],[[13975,-7796,13976,-7794,13977,13978]],[[13979]],[[13980]],[[13981,-8208]],[[13982,13983]],[[13984]],[[13985]],[[13986]],[[-8213,13987]],[[13988,13989,-8217]],[[13990]],[[13991,13992]],[[-8222,13993,-8224,13994]],[[13995]],[[13996,13997]],[[-687,13998]],[[-8244,13999]],[[14000,-8242]],[[-8247,14001]],[[-8253]],[[-8254,14002,14003]],[[-8259,14004,14005]],[[14006]],[[14007]],[[14008]],[[-8311,14009,14010,14011]],[[-8298,14012]],[[14013]],[[14014]],[[14015,14016]],[[14017,14018]],[[14019]],[[14020]],[[14021,14022]],[[14023,14024]],[[14025]],[[-8375,14026,14027,-8376,14028]],[[-6316,14029]],[[14030]],[[14031,-6314]],[[14032]],[[14033]],[[14034]],[[14035]],[[14036]],[[14037]],[[14038]],[[14039]],[[14040]],[[14041]],[[14042]],[[14043]],[[14044]],[[14045,14046,14047]],[[14048,14049]],[[14050]],[[14051]],[[14052]],[[14053,14054]],[[14055,14056]],[[14057]],[[14058]],[[14059]],[[14060]],[[14061]],[[14062]],[[14063,14064]],[[14065,14066,14067]],[[14068]],[[14069]],[[14070]],[[14071]],[[14072]],[[14073]],[[14074,14075]],[[14076]],[[14077]],[[14078]],[[14079,14080,-8432]],[[14081]],[[14082,-8442,14083]],[[14084,-8446]],[[14085]],[[14086]],[[14087]],[[14088]],[[-8473]],[[-8510,14089]],[[14090]],[[14091]],[[14092]],[[14093]],[[14094]],[[14095]],[[14096]],[[14097]],[[14098]],[[14099]],[[14100]],[[14101]],[[-8447,8446,14102]],[[14103]],[[14104]],[[14105]],[[14106]],[[14107]],[[14108]],[[14109]],[[14110]],[[14111]],[[14112]],[[14113]],[[-8476,14114]],[[-8478,14115]],[[14116]],[[14117]],[[14118]],[[14119]],[[14120]],[[14121]],[[14122]],[[14123]],[[14124]],[[14125]],[[14126]],[[14127]],[[14128,14129]],[[14130,14131]],[[14132]],[[14133]],[[-8479,14134]],[[14135]],[[14136]],[[14137]],[[14138]],[[14139]],[[14140]],[[14141]],[[14142]],[[14143]],[[14144]],[[14145]],[[-8430,14146]],[[-8482,14147]],[[14148]],[[14149]],[[14150]],[[14151]],[[14152]],[[14153]],[[14154]],[[14155]],[[-8485,14156]],[[14157]],[[14158]],[[14159]],[[14160,14161]],[[14162]],[[14163]],[[14164]],[[14165]],[[14166]],[[14167]],[[14168,14169]],[[14170]],[[14171]],[[14172]],[[-8449,14173]],[[14174,-8451]],[[14175,-8453]],[[14176,-8455]],[[-8508,14177]],[[14178,-8512]],[[14179,-8507]],[[14180,14181,-8492]],[[14182]],[[14183,-6283]],[[14184]],[[14185]],[[14186,-8519]],[[14187,-6289]],[[-6306,14188]],[[14189]],[[-6308,14190]],[[14191]],[[14192]],[[-6310,14193]],[[-6304,14194]],[[14195]],[[14196]],[[14197]],[[14198]],[[14199]],[[14200]],[[14201,-6300]],[[14202,-6302]],[[14203,-6296]],[[14204]],[[14205,-6291]],[[14206]],[[-8516,14207]],[[14208,-6277]],[[14209]],[[14210]],[[-6275,14211]],[[-6293,14212]],[[14213]],[[-8526,14214]],[[14215]],[[14216,-8529]],[[-6281,14217]],[[14218]],[[14219]],[[14220]],[[14221]],[[14222]],[[14223]],[[14224]],[[14225]],[[14226]],[[-1348,14227]],[[-6245,14228]],[[-6247,14229]],[[-6251,14230]],[[14231]],[[14232]],[[-8559,14233]],[[14234]],[[14235]],[[14236]],[[14237]],[[14238,14239]],[[14240]],[[14241]],[[14242]],[[14243]],[[14244]],[[14245]],[[14246,-8533]],[[-8535,14247]],[[14248]],[[14249]],[[14250]],[[14251]],[[14252]],[[14253]],[[14254,14255]],[[14256]],[[14257]],[[14258]],[[14259,14260]],[[14261]],[[14262]],[[14263,-6257]],[[14264]],[[14265]],[[14266]],[[14267]],[[-6259,14268]],[[14269,14270]],[[14271]],[[14272]],[[14273]],[[14274]],[[14275]],[[-6261,14276]],[[14277]],[[14278]],[[14279]],[[14280,-6263]],[[14281,-6265]],[[14282]],[[14283]],[[14284]],[[14285]],[[14286]],[[14287]],[[14288]],[[14289]],[[14290]],[[14291]],[[14292]],[[14293]],[[14294]],[[14295]],[[14296,-8555]],[[14297]],[[14298,-14299,14299]],[[-6267,14300]],[[-8797,14301,14302,-8548,14303]],[[14304]],[[14305]],[[14306]],[[14307]],[[14308,14309]],[[14310,14311]],[[14312]],[[14313]],[[14314,14315,14316]],[[14317]],[[14318,14319]],[[-7137,14320]],[[-6983,14321]],[[14322,-7143]],[[14323,14324,14325,-8589]],[[-8567,14326]],[[-8569,14327]],[[-8571,14328]],[[14329]],[[14330]],[[-8573,14331]],[[14332]],[[14333,-8578]],[[14334]],[[14335,14336]],[[14337,-8600]],[[-8598,14338]],[[14339,-8595]],[[14340]],[[14341]],[[14342]],[[-8621,14343]],[[14344]],[[14345]],[[14346]],[[14347,-8586]],[[14348]],[[14349]],[[14350]],[[14351]],[[14352]],[[14353,-8582]],[[14354]],[[14355,-8624]],[[14356,-8622]],[[14357]],[[14358,-8606,14359]],[[14360]],[[14361,14362]],[[-8616,14363,14364]],[[14365,14366,-8632]],[[14367,-8611,14368]],[[-8609,14369,14370]],[[-8619,14371,14372]],[[14373,14374]],[[14375,-8300]],[[14376,14377,-8649,14378]],[[14379,-8630,14380]],[[14381,-8575,14382,14383,14384]],[[-8669,14385]],[[14386,14387]],[[14388,14389,-6759,14390]],[[14391]],[[14392]],[[14393,14394]],[[-7141,14395]],[[14396]],[[14397]],[[14398]],[[14399,14400]],[[14401,14402]],[[14403]],[[14404]],[[14405]],[[14406]],[[14407]],[[14408,14409,14410,14411]],[[14412]],[[14413]],[[14414]],[[14415]],[[14416]],[[14417]],[[14418]],[[14419]],[[14420]],[[14421]],[[14422]],[[14423]],[[14424,14425]],[[14426]],[[14427]],[[14428]],[[14429]],[[14430]],[[14431]],[[14432]],[[14433]],[[14434]],[[14435]],[[14436]],[[14437]],[[14438]],[[14439]],[[14440]],[[14441]],[[14442]],[[-6785,14443]],[[14444]],[[14445,14446]],[[14447,-6787]],[[14448,14449]],[[14450]],[[14451]],[[14452,-8700]],[[14453,-8698]],[[-8682,14454]],[[14455]],[[14456,14457]],[[-8704,14458,14459]],[[-8720,14460]],[[-8718,14461]],[[14462]],[[14463]],[[14464,-8733]],[[14465,-8716]],[[14466]],[[14467]],[[14468]],[[14469]],[[14470]],[[14471]],[[-8731,14472]],[[14473]],[[14474]],[[14475,14476]],[[14477]],[[14478]],[[14479,14480]],[[14481]],[[14482]],[[-8762,14483,14484]],[[14485]],[[14486]],[[14487]],[[14488]],[[14489]],[[14490]],[[14491,-6369]],[[14492]],[[-8561,14493]],[[14494]],[[14495]],[[14496,14497]],[[-8563,14498]],[[14499]],[[14500]],[[14501]],[[14502]],[[-6367,14503]],[[14504]],[[14505]],[[14506,-6363]],[[-6361,14507]],[[14508]],[[-6359,14509]],[[14510]],[[14511]],[[14512]],[[14513]],[[14514]],[[14515]],[[14516]],[[14517]],[[14518]],[[14519]],[[14520]],[[14521]],[[14522]],[[14523]],[[14524]],[[14525]],[[14526]],[[14527]],[[14528]],[[14529]],[[14530]],[[14531]],[[14532]],[[14533]],[[14534]],[[14535]],[[14536]],[[14537]],[[14538]],[[14539,-8537]],[[-8539,14540]],[[14541]],[[14542]],[[14543]],[[14544]],[[14545]],[[14546]],[[14547]],[[14548]],[[14549]],[[14550]],[[14551]],[[14552]],[[14553]],[[14554]],[[14555]],[[14556]],[[14557]],[[14558]],[[14559]],[[14560]],[[14561]],[[-8794,14562]],[[14563,-8790]],[[14564,-8792]],[[14565,14566]],[[14567]],[[14568]],[[14569]],[[14570]],[[14571]],[[14572]],[[14573]],[[14574]],[[14575]],[[14576]],[[14577]],[[14578]],[[14579]],[[14580]],[[14581]],[[14582]],[[14583]],[[14584]],[[14585]],[[14586]],[[14587]],[[14588]],[[14589]],[[14590]],[[-8804,14591]],[[14592]],[[14593]],[[14594]],[[14595]],[[14596]],[[14597]],[[14598]],[[14599]],[[14600]],[[14601]],[[14602]],[[14603]],[[14604]],[[14605]],[[14606]],[[14607]],[[14608]],[[14609]],[[14610]],[[14611]],[[14612]],[[14613]],[[14614]],[[14615]],[[14616]],[[14617]],[[14618]],[[14619]],[[14620]],[[14621]],[[14622]],[[14623]],[[14624]],[[14625]],[[14626]],[[14627]],[[14628]],[[14629]],[[14630]],[[14631]],[[14632]],[[14633]],[[14634]],[[14635]],[[14636]],[[14637]],[[14638]],[[14639]],[[14640]],[[14641]],[[14642]],[[14643]],[[14644]],[[14645]],[[14646]],[[14647]],[[14648]],[[14649]],[[14650]],[[14651]],[[14652]],[[14653]],[[14654]],[[14655]],[[14656]],[[14657]],[[14658]],[[14659]],[[14660]],[[14661]],[[14662]],[[14663]],[[14664]],[[14665]],[[14666]],[[14667]],[[14668]],[[14669]],[[14670]],[[14671]],[[14672]],[[14673]],[[14674]],[[14675]],[[14676]],[[14677]],[[14678]],[[14679]],[[14680]],[[14681]],[[14682]],[[14683]],[[14684]],[[14685,-8811]],[[14686]],[[14687]],[[14688]],[[-8818,14689]],[[14690]],[[14691]],[[-8816,14692]],[[-8814,14693,14694]],[[14695]],[[14696,-8823]],[[-8825,14697]],[[14698]],[[14699]],[[14700]],[[14701]],[[14702]],[[-8828,14703]],[[14704,-8830]],[[14705,-8832]],[[14706]],[[-8835,14707]],[[-8833,14708]],[[-8839,14709]],[[14710,-8837]],[[14711]],[[14712]],[[14713]],[[14714]],[[14715]],[[-8841,14716]],[[14717]],[[14718]],[[14719]],[[14720]],[[14721]],[[14722]],[[14723]],[[14724]],[[-8843,14725]],[[14726]],[[14727]],[[14728]],[[14729]],[[14730]],[[14731]],[[14732]],[[14733]],[[-8800,14734]],[[14735]],[[14736]],[[14737]],[[14738]],[[14739]],[[14740]],[[14741]],[[14742]],[[14743]],[[14744]],[[14745]],[[14746]],[[14747]],[[14748]],[[14749]],[[14750]],[[14751,14752]],[[14753]],[[14754]],[[14755]],[[14756]],[[14757]],[[14758]],[[14759]],[[14760]],[[14761]],[[14762]],[[14763]],[[14764]],[[14765]],[[14766]],[[14767]],[[14768]],[[14769]],[[14770]],[[14771]],[[14772]],[[14773]],[[14774]],[[14775]],[[14776]],[[14777]],[[14778]],[[14779]],[[14780]],[[14781]],[[14782]],[[14783]],[[14784,-8849,14785]],[[-8854]],[[-8852,14786]],[[14787,-8850]],[[14788]],[[14789,14790,14791]],[[14792]],[[-8802,14793]],[[14794]],[[14795]],[[14796]],[[14797]],[[14798]],[[14799]],[[14800]],[[-8874,14801]],[[14802]],[[14803]],[[14804]],[[14805,14806]],[[14807]],[[14808]],[[14809,14810,-8856]],[[14811,14812]],[[14813,14814,-8860]],[[14815,-8858,14816]],[[14817,14818]],[[14819,14820]],[[14821]],[[14822]],[[14823]],[[14824]],[[14825]],[[14826]],[[14827,-8876]],[[14828]],[[-8878,14829]],[[14830]],[[14831]],[[14832]],[[-8880,14833]],[[14834]],[[14835]],[[14836]],[[14837]],[[14838]],[[14839]],[[14840]],[[14841]],[[14842]],[[14843]],[[14844]],[[14845]],[[14846]],[[14847]],[[14848,-8882]],[[-8884,14849]],[[14850,-8886]],[[14851,-8866]],[[-8864,14852,14853]],[[14854,-8890]],[[-8888,14855]],[[-8868,14856]],[[14857]],[[14858]],[[14859]],[[14860]],[[14861]],[[14862]],[[14863]],[[14864]],[[14865]],[[14866]],[[14867]],[[14868]],[[14869]],[[14870]],[[14871]],[[14872]],[[14873]],[[14874]],[[14875]],[[-8894,14876]],[[14877,-8892]],[[14878]],[[14879]],[[14880]],[[14881]],[[14882]],[[14883,14884]],[[14885,14886]],[[14887]],[[14888]],[[14889]],[[14890,14891]],[[14892,14893]],[[14894]],[[14895,-8897]],[[14896,-8899]],[[14897]],[[14898]],[[14899]],[[14900]],[[14901]],[[14902]],[[14903]],[[14904]],[[14905]],[[14906]],[[14907]],[[14908]],[[14909]],[[14910]],[[14911]],[[-8903,14912]],[[-8909,14913]],[[14914]],[[14915]],[[14916]],[[-8914,14917]],[[-8912,14918]],[[14919]],[[-9067,14920,14921,14922]],[[14923]],[[14924]],[[14925]],[[14926]],[[14927]],[[14928]],[[14929,-8907]],[[-8905,14930]],[[14931]],[[14932]],[[14933]],[[-8918,14934]],[[14935,-8916]],[[14936]],[[14937]],[[14938]],[[14939]],[[14940]],[[14941]],[[14942]],[[14943]],[[14944]],[[14945]],[[14946]],[[14947]],[[14948]],[[14949]],[[14950]],[[14951]],[[14952]],[[14953]],[[14954]],[[14955]],[[14956,14957]],[[-8920,14958]],[[14959]],[[14960]],[[14961]],[[14962]],[[14963,14964]],[[14965]],[[-9050,14966]],[[-8930,14967]],[[-8931,14968]],[[14969]],[[14970]],[[14971]],[[14972]],[[-8872,14973]],[[8934]],[[14974,-8933]],[[14975]],[[14976]],[[14977,14978]],[[14979,14980]],[[14981]],[[14982]],[[14983]],[[14984]],[[14985]],[[14986]],[[14987]],[[14988]],[[14989]],[[14990]],[[14991,14992]],[[14993]],[[14994,-6269]],[[-6273,14995]],[[-8937,14996]],[[14997,14998]],[[14999]],[[15000]],[[-8940,15001]],[[15002]],[[15003]],[[-8870,15004]],[[15005,15006]],[[15007,15008]],[[15009]],[[15010]],[[15011]],[[15012]],[[15013]],[[15014]],[[15015]],[[15016]],[[15017]],[[15018]],[[-8941,15019,15020]],[[15021,15022,-8943]],[[15023]],[[15024]],[[15025]],[[15026]],[[15027]],[[15028]],[[15029]],[[15030]],[[15031]],[[15032]],[[15033]],[[15034]],[[15035]],[[-8951,15036]],[[15037]],[[15038]],[[15039]],[[15040]],[[15041]],[[15042]],[[15043]],[[15044]],[[15045,15046]],[[15047,15048]],[[15049,15050]],[[15051]],[[15052]],[[15053]],[[15054]],[[15055]],[[15056]],[[15057]],[[15058]],[[15059]],[[15060]],[[15061]],[[15062]],[[15063]],[[15064]],[[15065]],[[15066]],[[15067]],[[15068]],[[15069]],[[15070]],[[-8959,15071,15072]],[[15073,15074]],[[-8964,15075]],[[15076]],[[15077]],[[15078]],[[15079,15080]],[[15081,-9027,15082]],[[15083,15084,15085,15086]],[[-9058,15087]],[[-8990,15088,15089,15090]],[[15091,15092,-8989,15093]],[[15094,15095,15096,15097,15098]],[[-9099,15099]],[[-9063,15100,15101]],[[-8460,15102]],[[15103,-8458,15104]],[[15105,-8495]],[[15106,15107]],[[-9014,15108]],[[15109,15110,15111,15112]],[[15113]],[[15114]],[[15115,-9039,15116,-9016]],[[9072,15117]],[[15118,-9091]]]},{"type":"MultiPolygon","id":"4","properties":{"density":4},"arcs":[[[-3,15119]],[[15120,15121,-6]],[[15122,15123,-155]],[[15124,15125]],[[15126,15127]],[[-174,15128,15129]],[[15130]],[[15131]],[[15132]],[[15133]],[[-180,15134]],[[15135]],[[15136]],[[15137,-182]],[[-184,15138]],[[-9107,15139]],[[-187,15140]],[[15141]],[[15142]],[[15143]],[[15144]],[[15145]],[[15146]],[[15147]],[[15148,-188]],[[15149]],[[15150]],[[15151]],[[15152]],[[15153]],[[15154,15155]],[[15156]],[[15157]],[[15158]],[[15159]],[[15160,15161]],[[15162,15163]],[[15164,15165]],[[-192,15166]],[[15167,-194]],[[15168,-9110,15169]],[[15170,15171,-198]],[[15172,15173]],[[15174]],[[15175]],[[15176]],[[15177,15178]],[[15179]],[[15180,15181]],[[15182,15183]],[[15184]],[[15185]],[[15186]],[[15187]],[[15188]],[[15189]],[[15190]],[[15191]],[[-207,15192]],[[15193]],[[15194]],[[15195]],[[15196,15197]],[[-212,15198]],[[15199]],[[15200]],[[15201]],[[15202]],[[15203]],[[15204]],[[15205]],[[15206]],[[15207]],[[15208]],[[15209]],[[15210]],[[15211]],[[-15,15212]],[[-11,15213]],[[15214]],[[15215]],[[-13,15216]],[[15217]],[[15218,15219]],[[15220]],[[15221]],[[15222,-9141]],[[15223]],[[15224]],[[-294,15225]],[[-9150,15226,-295,15227]],[[15228,15229]],[[15230]],[[15231,15232]],[[-310,15233]],[[15234,-244]],[[-308,15235]],[[15236]],[[15237,15238]],[[15239]],[[15240,15241]],[[15242]],[[15243]],[[-329,15244]],[[-1090,15245,-336,15246,15247]],[[15248]],[[-338,15249]],[[15250,15251]],[[15252,15253]],[[15254]],[[15255,15256,-340,15257]],[[15258]],[[15259,-345]],[[-347,15260]],[[-9169,15261,-457]],[[15262]],[[15263,-383]],[[-379,15264]],[[15265]],[[-9172,15266,-387]],[[15267]],[[15268]],[[15269]],[[-489,15270]],[[15271]],[[15272]],[[15273]],[[15274]],[[15275]],[[15276]],[[15277,-472]],[[-474,15278]],[[15279]],[[15280]],[[15281]],[[15282]],[[15283]],[[15284]],[[15285]],[[15286]],[[15287]],[[15288]],[[15289,-491]],[[15290]],[[15291]],[[15292]],[[15293]],[[15294]],[[15295]],[[15296]],[[15297]],[[15298,15299]],[[15300]],[[15301]],[[15302]],[[15303]],[[-486,15304]],[[-487,15305]],[[15306]],[[15307]],[[15308]],[[15309,15310]],[[15311]],[[15312]],[[15313]],[[15314,-496]],[[15315]],[[15316]],[[-498,15317]],[[15318]],[[15319]],[[15320]],[[15321]],[[15322]],[[15323]],[[15324]],[[15325]],[[15326]],[[-510,15327]],[[15328]],[[15329]],[[15330]],[[15331]],[[15332]],[[15333]],[[15334,-141]],[[15335,15336,-143]],[[-519,15337]],[[-517,15338]],[[15339,-502]],[[-132,15340]],[[15341]],[[15342]],[[15343,-555]],[[15344]],[[-560,15345]],[[15346]],[[15347,-571,-574]],[[15348]],[[-586,15349,15350]],[[15351,15352]],[[-589,15353]],[[15354]],[[15355]],[[15356]],[[15357,-726,15358]],[[-595,15359]],[[15360,-591]],[[15361,-593]],[[15362]],[[-596,15363]],[[15364]],[[-600,15365,15366]],[[15367,-9203,15368,-598]],[[15369]],[[15370]],[[15371]],[[15372]],[[15373]],[[-9205,-730,15374]],[[15375]],[[-9211,15376]],[[15377]],[[15378]],[[15379]],[[15380]],[[15381]],[[15382]],[[15383]],[[15384]],[[-756,15385]],[[-758,15386]],[[15387]],[[-9222,15388]],[[15389,15390]],[[15391]],[[15392,-752]],[[15393]],[[15394]],[[15395]],[[15396]],[[15397]],[[-766,15398]],[[-768,15399]],[[15400,15401]],[[15402]],[[15403]],[[15404]],[[15405]],[[-754,15406]],[[15407]],[[-9214,15408]],[[15409,-369]],[[-371,15410]],[[-9219,15411,-356,15412]],[[15413,-360]],[[-362,15414]],[[15415]],[[15416]],[[15417]],[[-780,15418]],[[15419]],[[15420,-786]],[[15421,-9220]],[[15422]],[[15423,15424,-9226,15425]],[[15426]],[[15427]],[[15428,-793]],[[15429,15430]],[[15431]],[[15432]],[[15433,15434]],[[15435]],[[15436]],[[15437]],[[15438]],[[-800,15439]],[[15440]],[[15441]],[[15442]],[[15443]],[[15444]],[[15445]],[[15446]],[[15447]],[[15448]],[[15449]],[[15450]],[[15451]],[[15452]],[[15453]],[[-804,15454]],[[15455]],[[15456]],[[15457]],[[15458]],[[15459]],[[15460]],[[15461]],[[15462]],[[15463]],[[15464,-375]],[[-827,15465]],[[-825,15466]],[[15467]],[[-9229,15468]],[[15469]],[[15470]],[[15471]],[[15472,15473]],[[15474,15475]],[[15476]],[[15477]],[[15478]],[[15479]],[[15480]],[[15481]],[[15482]],[[15483]],[[15484]],[[15485]],[[15486,15487]],[[15488,-850]],[[15489]],[[15490]],[[15491]],[[15492]],[[15493]],[[15494,-9238]],[[15495]],[[-856,15496]],[[-864,15497]],[[-866,15498]],[[15499,-877,15500]],[[-875,15501]],[[15502]],[[15503]],[[15504]],[[15505]],[[15506,-9243,15507]],[[15508]],[[-886,15509]],[[-894,15510]],[[15511]],[[15512]],[[15513]],[[15514]],[[15515]],[[15516]],[[15517]],[[15518,-888]],[[-892,15519]],[[15520]],[[15521]],[[15522]],[[15523]],[[15524]],[[15525]],[[-912,15526]],[[15527,-910]],[[-963,15528]],[[15529]],[[15530]],[[15531]],[[15532]],[[15533]],[[15534]],[[15535]],[[15536]],[[15537]],[[15538]],[[15539]],[[15540]],[[15541]],[[15542]],[[15543]],[[15544]],[[15545]],[[15546]],[[15547]],[[15548]],[[15549]],[[15550]],[[-919,15551]],[[15552]],[[15553]],[[-12463,15554]],[[15555]],[[15556]],[[-930,15557,-928,15558]],[[15559]],[[15560]],[[15561]],[[15562]],[[15563]],[[-9250,15564]],[[-942,15565]],[[15566]],[[15567]],[[15568]],[[15569,-934]],[[-938,15570,-946,15571]],[[-940,15572]],[[15573]],[[15574]],[[15575]],[[15576]],[[15577]],[[15578]],[[15579,15580]],[[15581,15582]],[[15583,15584,-970,15585,-974]],[[15586,15587,-968]],[[15588]],[[-975,15589]],[[15590]],[[15591]],[[15592]],[[-1003,15593]],[[15594]],[[15595]],[[15596]],[[15597]],[[15598]],[[15599]],[[15600]],[[15601]],[[15602]],[[15603]],[[15604]],[[15605]],[[15606]],[[15607,-1023]],[[15608,-1025,15609,15610]],[[15611,15612]],[[15613]],[[15614,15615]],[[15616,15617]],[[-1029,15618]],[[15619]],[[15620]],[[15621]],[[15622]],[[15623]],[[15624]],[[15625]],[[15626]],[[15627]],[[15628,-1032]],[[15629]],[[15630]],[[15631]],[[15632]],[[15633]],[[15634,15635,-1034,15636]],[[15637]],[[15638]],[[15639]],[[15640]],[[15641]],[[15642]],[[15643]],[[15644]],[[-1037,15645]],[[15646]],[[-1041,15647]],[[15648]],[[15649]],[[-9269,-1046,15650]],[[-9268,15651,-1044]],[[15652]],[[15653]],[[15654]],[[15655]],[[15656]],[[15657]],[[15658]],[[15659]],[[15660]],[[15661]],[[15662]],[[15663]],[[15664]],[[15665]],[[-1052,15666]],[[15667]],[[15668]],[[15669]],[[15670]],[[15671]],[[15672]],[[15673,15674]],[[15675]],[[15676]],[[15677]],[[-1092,15678]],[[15679,15680,15681,-1080]],[[15682,15683]],[[-1079]],[[15684]],[[15685]],[[15686,-1082]],[[15687,-1084,15688]],[[-1087]],[[15689]],[[15690]],[[15691]],[[15692]],[[-1098,15693,15694,15695]],[[15696]],[[15697]],[[15698]],[[15699]],[[15700,15701]],[[15702]],[[15703]],[[15704]],[[15705]],[[15706]],[[15707]],[[15708,15709,15710,15711]],[[15712]],[[15713]],[[15714]],[[15715]],[[15716]],[[-1116,15717,15718]],[[15719]],[[15720]],[[15721]],[[15722,15723]],[[15724]],[[15725,15726]],[[15727]],[[-1106,15728,15729,15730]],[[15731]],[[15732]],[[15733,15734]],[[15735,15736]],[[15737]],[[15738]],[[15739,15740]],[[15741]],[[15742,15743]],[[15744]],[[-1134,15745]],[[15746]],[[15747]],[[15748]],[[15749]],[[15750]],[[15751]],[[15752]],[[15753]],[[-9278,-1140,15754]],[[-1118,15755]],[[15756]],[[15757]],[[15758,15759]],[[15760]],[[15761]],[[-1153,15762]],[[-1120,15763]],[[-9279,15764]],[[15765]],[[15766]],[[15767]],[[15768]],[[15769,15770]],[[15771]],[[-1166]],[[15772]],[[15773]],[[15774]],[[-9282,15775]],[[-9285,15776]],[[-1173,15777]],[[-1171,15778]],[[-1176,15779]],[[15780]],[[15781]],[[15782,15783]],[[15784,15785]],[[15786,-1200]],[[15787,-1185]],[[15788]],[[15789]],[[15790]],[[15791]],[[15792]],[[15793]],[[15794]],[[15795]],[[15796]],[[15797]],[[15798]],[[15799]],[[15800]],[[15801]],[[15802]],[[15803]],[[15804]],[[15805]],[[15806]],[[-1469,15807]],[[15808]],[[15809]],[[15810]],[[15811,-1482,15812,15813]],[[15814]],[[-1484,15815]],[[15816,15817]],[[-1487,15818]],[[15819]],[[15820]],[[15821]],[[15822]],[[15823]],[[15824]],[[-1490,15825]],[[15826]],[[15827]],[[15828]],[[15829]],[[-1494,15830,15831]],[[15832,15833]],[[15834]],[[15835,15836]],[[15837,-1497]],[[15838]],[[15839]],[[15840,15841]],[[15842]],[[15843]],[[15844]],[[15845]],[[15846]],[[15847]],[[15848]],[[15849]],[[15850]],[[15851]],[[15852]],[[15853]],[[15854]],[[15855]],[[15856]],[[15857]],[[-1405,15858]],[[15859,15860]],[[15861]],[[15862]],[[15863]],[[15864]],[[15865]],[[15866]],[[-9305,15867]],[[15868]],[[15869]],[[15870]],[[15871]],[[15872]],[[15873]],[[15874]],[[15875]],[[-1513,15876]],[[15877,15878]],[[15879]],[[15880]],[[15881]],[[15882]],[[15883]],[[15884]],[[15885]],[[15886]],[[15887]],[[15888]],[[-1536,15889]],[[-1518,15890]],[[15891]],[[15892]],[[15893]],[[15894]],[[15895]],[[15896]],[[15897]],[[15898]],[[15899]],[[15900]],[[15901]],[[15902]],[[15903]],[[15904]],[[15905]],[[15906]],[[15907]],[[15908]],[[15909]],[[15910]],[[15911]],[[15912]],[[-9307,15913]],[[15914]],[[15915]],[[15916]],[[15917]],[[15918]],[[15919]],[[15920]],[[15921]],[[15922,-1529,15923]],[[15924]],[[15925]],[[15926]],[[15927,15928]],[[15929]],[[15930]],[[15931]],[[15932]],[[15933]],[[15934,15935]],[[15936]],[[15937,15938]],[[15939]],[[15940]],[[15941,-1557,15942]],[[15943]],[[15944]],[[15945,-1632]],[[15946]],[[15947]],[[15948,15949]],[[-1643,15950]],[[15951,15952]],[[15953]],[[15954]],[[15955]],[[15956]],[[15957]],[[15958]],[[15959]],[[15960]],[[15961]],[[15962]],[[-452,15963,15964]],[[-9319,15965]],[[15966]],[[-454,15967]],[[15968,15969]],[[-398,15970]],[[15971]],[[15972]],[[15973]],[[15974]],[[15975,-1693]],[[15976]],[[15977,-393]],[[15978]],[[15979]],[[15980,15981]],[[15982,-1706]],[[15983]],[[15984]],[[15985]],[[15986]],[[15987]],[[15988]],[[15989]],[[15990]],[[15991]],[[15992]],[[15993]],[[15994]],[[15995]],[[15996]],[[15997]],[[-1713,15998]],[[15999]],[[16000]],[[16001]],[[16002]],[[16003]],[[16004,16005]],[[16006]],[[16007]],[[16008]],[[16009]],[[16010]],[[16011]],[[-1715,16012,16013]],[[16014]],[[16015]],[[16016]],[[16017]],[[16018]],[[16019]],[[16020]],[[16021]],[[16022]],[[16023]],[[16024]],[[16025]],[[16026,16027]],[[-1722,16028]],[[16029]],[[16030]],[[-60,16031]],[[16032]],[[16033]],[[16034]],[[16035]],[[16036]],[[16037]],[[16038]],[[16039]],[[16040]],[[16041]],[[16042]],[[16043]],[[16044]],[[16045]],[[16046]],[[16047]],[[16048]],[[16049]],[[16050]],[[16051]],[[16052]],[[16053]],[[16054]],[[16055]],[[16056]],[[16057]],[[16058]],[[16059]],[[16060,16061]],[[16062]],[[16063]],[[16064]],[[16065]],[[16066]],[[16067]],[[16068]],[[16069]],[[16070]],[[16071]],[[16072]],[[16073]],[[16074]],[[16075]],[[16076]],[[16077]],[[16078]],[[16079]],[[-70,16080]],[[16081,16082]],[[-9334,16083]],[[16084]],[[16085]],[[16086]],[[16087]],[[16088]],[[16089]],[[16090]],[[16091,-66]],[[16092,-64]],[[16093,-62]],[[16094]],[[16095]],[[16096,-113]],[[16097]],[[16098,-115]],[[16099]],[[16100,-117]],[[16101]],[[16102,-119]],[[16103]],[[16104,16105,-121]],[[16106]],[[16107,16108]],[[16109]],[[16110]],[[16111]],[[16112]],[[16113]],[[16114]],[[16115]],[[16116]],[[16117]],[[16118]],[[16119]],[[16120]],[[16121,16122]],[[16123]],[[16124]],[[16125]],[[16126]],[[16127]],[[16128]],[[16129]],[[16130]],[[16131]],[[16132]],[[-1989]],[[16133]],[[16134]],[[16135]],[[16136]],[[16137]],[[16138]],[[16139]],[[16140]],[[16141]],[[16142]],[[16143]],[[16144]],[[16145]],[[16146]],[[16147]],[[16148]],[[16149]],[[16150]],[[16151]],[[16152]],[[16153]],[[16154]],[[16155]],[[16156]],[[16157,16158,-1778]],[[-2103,16159]],[[-2105,16160]],[[16161]],[[16162]],[[16163]],[[16164]],[[16165]],[[16166]],[[-2107,16167,16168]],[[-2006,16169]],[[16170]],[[16171]],[[16172]],[[16173]],[[16174]],[[16175,-2298]],[[-2279,16176]],[[16177]],[[-2310,16178]],[[16179,16180,-2285]],[[16181,-9506]],[[16182]],[[16183]],[[16184,16185,-2335,16186]],[[16187]],[[16188]],[[16189]],[[16190]],[[16191]],[[16192]],[[16193]],[[16194]],[[16195]],[[16196]],[[16197]],[[16198]],[[16199]],[[16200]],[[16201]],[[16202]],[[16203]],[[16204]],[[16205]],[[16206]],[[16207]],[[16208]],[[-2341,16209]],[[-2345,16210]],[[-2343,16211]],[[16212]],[[16213]],[[16214]],[[16215]],[[16216]],[[16217]],[[16218]],[[16219]],[[16220]],[[16221]],[[16222]],[[16223]],[[16224]],[[16225]],[[16226]],[[16227]],[[16228]],[[-1776,16229]],[[16230]],[[-1770,16231]],[[-1810,16232]],[[16233,-1824]],[[16234]],[[16235]],[[16236]],[[16237]],[[16238]],[[16239]],[[16240]],[[16241]],[[16242]],[[16243]],[[16244]],[[16245]],[[16246]],[[16247]],[[16248]],[[16249]],[[16250]],[[16251]],[[16252]],[[16253]],[[16254]],[[16255]],[[16256]],[[16257]],[[16258]],[[16259]],[[16260]],[[16261]],[[16262]],[[16263]],[[16264]],[[16265]],[[16266]],[[16267]],[[16268]],[[16269]],[[16270]],[[16271]],[[16272]],[[16273]],[[16274]],[[16275,16276,-2379]],[[-1818,16277]],[[16278]],[[-2430,16279,-2398,16280]],[[16281,16282]],[[16283,16284,-9582]],[[16285]],[[16286]],[[16287]],[[16288,-2531]],[[16289,-2529]],[[16290]],[[16291,-2324]],[[16292,-9617]],[[16293,-9613]],[[-9623,16294]],[[-9627,16295]],[[16296]],[[16297]],[[16298]],[[16299,-2548]],[[16300,-2569,16301]],[[16302]],[[16303]],[[-427,16304]],[[16305]],[[16306]],[[16307]],[[16308]],[[16309]],[[16310]],[[16311]],[[16312]],[[16313]],[[16314]],[[-435,16315]],[[16316]],[[-2604,16317]],[[16318]],[[16319]],[[-2597,16320,16321]],[[16322]],[[16323]],[[16324]],[[16325]],[[-2644,16326]],[[16327,16328,-9743,16329]],[[16330,-9747]],[[-2646,16331]],[[16332]],[[16333,-107]],[[16334]],[[16335]],[[16336]],[[16337]],[[16338]],[[16339]],[[16340]],[[16341]],[[16342]],[[16343]],[[16344]],[[-2795,16345]],[[16346]],[[16347]],[[16348]],[[16349]],[[16350]],[[16351]],[[16352]],[[16353]],[[16354]],[[16355]],[[16356]],[[16357]],[[16358]],[[16359]],[[16360]],[[16361]],[[16362]],[[16363]],[[16364]],[[16365]],[[16366]],[[16367]],[[16368]],[[16369]],[[16370]],[[16371]],[[16372]],[[16373]],[[16374]],[[16375]],[[16376]],[[16377]],[[16378]],[[16379]],[[16380]],[[16381]],[[16382]],[[16383]],[[16384]],[[16385]],[[16386]],[[16387]],[[16388]],[[16389]],[[16390]],[[16391]],[[16392]],[[16393]],[[16394]],[[16395]],[[16396]],[[16397]],[[16398]],[[16399]],[[-2810,16400]],[[16401]],[[16402]],[[16403]],[[16404]],[[16405]],[[16406]],[[16407,-2817]],[[16408]],[[16409]],[[16410]],[[16411]],[[16412]],[[16413]],[[16414]],[[16415]],[[16416]],[[16417]],[[16418]],[[16419]],[[16420]],[[16421]],[[16422]],[[16423]],[[16424]],[[16425]],[[16426]],[[16427]],[[16428]],[[16429]],[[16430]],[[16431]],[[16432]],[[16433,16434]],[[16435]],[[16436]],[[16437]],[[16438]],[[16439]],[[16440,-2838,16441,-2824]],[[16442]],[[16443]],[[16444]],[[16445]],[[16446]],[[16447]],[[-2828,16448]],[[16449]],[[16450]],[[16451,-2834]],[[16452]],[[16453]],[[16454]],[[16455]],[[16456,-2840]],[[-2830,16457]],[[-9932,16458]],[[16459]],[[16460]],[[16461]],[[16462]],[[16463]],[[16464]],[[16465]],[[16466]],[[16467]],[[16468]],[[16469]],[[16470]],[[16471]],[[16472]],[[16473]],[[16474]],[[16475]],[[16476]],[[16477]],[[16478]],[[16479]],[[16480]],[[16481]],[[16482]],[[16483]],[[-9939,16484]],[[16485]],[[16486]],[[16487]],[[16488]],[[16489]],[[16490]],[[16491]],[[16492]],[[16493]],[[16494]],[[16495]],[[16496]],[[16497]],[[16498,16499]],[[16500]],[[16501]],[[16502]],[[16503]],[[16504]],[[16505]],[[16506]],[[16507]],[[16508]],[[16509]],[[16510]],[[16511]],[[16512]],[[-2952,16513,16514,16515,16516,16517]],[[16518]],[[16519]],[[16520,-2955]],[[16521]],[[16522]],[[16523]],[[16524]],[[16525]],[[16526]],[[16527]],[[16528]],[[16529]],[[16530]],[[16531]],[[16532]],[[16533]],[[16534]],[[16535]],[[16536]],[[16537]],[[16538]],[[16539]],[[16540]],[[-2980,16541]],[[16542,-2976]],[[16543]],[[16544]],[[16545]],[[16546,-16547,16547]],[[16548]],[[16549]],[[16550,-3182,16551]],[[16552]],[[16553]],[[16554]],[[16555]],[[16556]],[[16557]],[[16558]],[[16559]],[[16560]],[[16561]],[[16562]],[[16563]],[[16564]],[[16565]],[[16566]],[[16567]],[[16568]],[[16569]],[[-3557,16570]],[[16571]],[[16572]],[[16573]],[[16574]],[[16575]],[[16576,-3559]],[[16577]],[[16578]],[[16579]],[[16580]],[[16581]],[[16582]],[[16583]],[[16584]],[[16585]],[[16586]],[[16587]],[[16588]],[[16589,16590,16591]],[[16592]],[[16593]],[[16594]],[[16595]],[[16596]],[[16597]],[[16598]],[[16599]],[[16600]],[[16601]],[[16602]],[[16603]],[[16604,16605]],[[16606]],[[16607]],[[16608]],[[-3579,16609]],[[16610]],[[16611]],[[16612]],[[16613]],[[16614]],[[16615]],[[16616]],[[16617]],[[16618]],[[16619]],[[16620]],[[16621]],[[16622]],[[16623]],[[16624]],[[16625]],[[-3584,16626]],[[16627,16628]],[[16629]],[[16630]],[[16631]],[[16632]],[[16633]],[[16634]],[[16635]],[[16636]],[[16637]],[[16638]],[[16639]],[[16640]],[[16641,16642]],[[16643]],[[16644]],[[16645]],[[16646]],[[-3587,16647]],[[16648]],[[16649]],[[16650]],[[16651]],[[16652]],[[16653]],[[16654]],[[16655]],[[16656]],[[16657,-3599]],[[16658]],[[16659]],[[16660]],[[16661]],[[16662]],[[16663]],[[16664]],[[16665]],[[16666]],[[16667]],[[16668]],[[16669]],[[16670]],[[16671]],[[16672]],[[-3603,16673]],[[-3601,16674]],[[16675]],[[16676]],[[16677]],[[16678]],[[16679]],[[16680]],[[16681]],[[16682]],[[-1572,16683]],[[16684]],[[16685,16686]],[[16687,16688]],[[16689]],[[16690]],[[16691]],[[-2918,16692]],[[16693]],[[16694]],[[16695]],[[16696,-3608,-10488]],[[16697,16698]],[[-1582,16699,16700,16701,16702]],[[16703]],[[-2920,16704]],[[-10491,16705]],[[-10496,16706]],[[16707,16708]],[[-3645,16709]],[[16710]],[[16711]],[[16712]],[[16713]],[[16714]],[[16715]],[[16716]],[[16717]],[[16718]],[[16719]],[[-2859,16720]],[[16721]],[[-3650,16722]],[[16723]],[[16724]],[[16725]],[[16726,16727]],[[16728]],[[16729]],[[16730]],[[16731]],[[16732]],[[16733]],[[16734]],[[16735]],[[16736]],[[16737]],[[16738]],[[16739]],[[16740]],[[16741]],[[16742]],[[16743]],[[16744]],[[16745]],[[16746]],[[16747]],[[-2854,16748]],[[16749]],[[16750]],[[16751]],[[16752]],[[16753]],[[16754]],[[16755]],[[16756]],[[16757]],[[16758]],[[16759]],[[16760]],[[16761]],[[16762]],[[16763]],[[16764]],[[16765]],[[16766]],[[16767]],[[16768]],[[16769]],[[16770]],[[16771]],[[16772]],[[16773]],[[16774]],[[16775]],[[16776]],[[16777]],[[16778]],[[16779]],[[16780]],[[16781]],[[16782]],[[16783]],[[16784]],[[16785]],[[16786]],[[16787]],[[16788]],[[16789]],[[16790]],[[16791]],[[16792]],[[16793]],[[16794]],[[16795]],[[16796]],[[16797]],[[16798]],[[16799]],[[16800]],[[16801]],[[16802,16803]],[[16804]],[[16805]],[[16806]],[[16807]],[[16808]],[[16809]],[[16810]],[[16811]],[[16812]],[[16813]],[[16814]],[[16815,16816]],[[16817,16818]],[[16819]],[[16820]],[[16821]],[[16822]],[[16823]],[[16824]],[[16825]],[[16826]],[[16827]],[[16828]],[[16829]],[[16830]],[[16831]],[[16832]],[[16833]],[[16834,16835]],[[-10519,16836]],[[16837]],[[-3680,16838]],[[16839]],[[16840]],[[16841]],[[16842]],[[16843]],[[16844]],[[16845]],[[16846]],[[16847]],[[16848]],[[16849]],[[16850]],[[16851]],[[16852]],[[16853]],[[16854]],[[16855]],[[16856]],[[16857]],[[16858]],[[16859]],[[16860]],[[16861]],[[-3683,16862]],[[16863]],[[16864]],[[16865]],[[16866]],[[16867]],[[16868]],[[16869]],[[16870]],[[16871]],[[16872]],[[16873]],[[16874]],[[16875]],[[16876]],[[16877]],[[16878]],[[16879]],[[16880]],[[16881]],[[16882]],[[-3689,16883]],[[16884]],[[16885]],[[16886]],[[16887]],[[16888,16889,-3692]],[[16890]],[[16891]],[[16892]],[[16893]],[[16894]],[[16895]],[[-3703,16896]],[[-3708,16897]],[[16898]],[[16899]],[[16900]],[[16901]],[[16902]],[[16903]],[[16904]],[[16905]],[[16906]],[[16907]],[[16908]],[[16909]],[[16910]],[[16911,-3712]],[[16912]],[[16913]],[[16914]],[[16915]],[[16916]],[[16917]],[[16918]],[[16919]],[[16920]],[[16921]],[[16922,-3705,16923]],[[16924]],[[16925]],[[16926]],[[16927]],[[16928]],[[16929]],[[16930]],[[-3716,16931]],[[16932]],[[-3723,16933]],[[16934]],[[16935]],[[16936,-2872,16937]],[[-3735,16938]],[[16939]],[[16940]],[[16941,-3802]],[[16942]],[[16943,-3768]],[[-3879]],[[-3881,16944]],[[16945,-3916]],[[16946]],[[16947]],[[16948]],[[16949]],[[16950]],[[16951]],[[16952]],[[16953,-3718]],[[16954]],[[16955]],[[16956]],[[16957]],[[16958]],[[16959,-3783]],[[16960,-3785]],[[16961,-3787]],[[16962,-3789]],[[16963,-3781]],[[16964]],[[-3986,16965]],[[16966]],[[16967]],[[16968]],[[16969]],[[16970]],[[16971]],[[16972]],[[16973,-4020]],[[-4024,16974]],[[-4044,16975]],[[16976,-4054]],[[16977,-4046]],[[16978,-4056]],[[16979]],[[16980]],[[-4119,16981]],[[16982]],[[16983]],[[16984]],[[16985]],[[16986]],[[16987]],[[16988]],[[16989]],[[16990]],[[16991]],[[16992]],[[16993]],[[-2908,-10710,16994]],[[16995]],[[16996]],[[16997]],[[16998,-4076]],[[16999]],[[17000,-4079]],[[17001]],[[17002]],[[17003]],[[17004]],[[17005]],[[17006]],[[-4085,17007]],[[17008]],[[-10695,17009]],[[17010]],[[17011]],[[17012]],[[17013]],[[17014]],[[17015]],[[17016]],[[17017]],[[-4087,17018]],[[17019]],[[17020]],[[17021]],[[17022]],[[17023]],[[17024,17025]],[[17026]],[[17027]],[[17028]],[[17029]],[[17030]],[[17031]],[[17032]],[[17033]],[[-4102,17034]],[[17035]],[[17036]],[[17037]],[[-4104,17038]],[[17039]],[[17040,-4108]],[[17041]],[[17042]],[[17043]],[[17044]],[[17045]],[[17046]],[[-4143,17047,-4070,17048,17049]],[[17050]],[[-10700,-2910,17051]],[[17052]],[[17053]],[[-4135,17054]],[[17055]],[[17056]],[[17057]],[[17058]],[[17059,-4173,17060,-4169]],[[17061,17062]],[[17063]],[[17064,17065,-4158,17066]],[[-4222,17067]],[[17068]],[[17069]],[[17070]],[[17071]],[[17072]],[[17073]],[[17074]],[[-4224,17075]],[[17076]],[[17077]],[[17078,17079]],[[17080]],[[17081]],[[17082]],[[17083]],[[17084]],[[17085]],[[-10722,17086,17087]],[[17088]],[[17089]],[[17090,-10738]],[[17091]],[[-4297,17092]],[[17093]],[[17094]],[[17095,-4316,17096,-4352]],[[17097]],[[-4326,17098]],[[-4328,17099]],[[17100]],[[-10765,17101]],[[-4344,17102,17103,-10767]],[[-10827,17104,17105]],[[17106]],[[-4395,17107]],[[17108,17109,-4402]],[[-4399,17110]],[[17111,-4403]],[[17112]],[[17113]],[[17114]],[[17115,17116]],[[17117,17118,17119,17120]],[[-4509,17121,17122]],[[17123]],[[17124]],[[17125]],[[17126]],[[17127]],[[17128]],[[17129]],[[17130]],[[17131]],[[17132]],[[17133]],[[17134]],[[-4534,17135]],[[17136]],[[17137]],[[17138]],[[17139]],[[17140]],[[17141]],[[17142]],[[17143]],[[17144]],[[17145]],[[17146]],[[17147]],[[17148]],[[17149]],[[17150,17151]],[[17152]],[[-4538,17153]],[[-5159,17154]],[[17155]],[[17156]],[[-4542,17157]],[[-4543,17158]],[[17159]],[[17160]],[[17161]],[[17162]],[[17163]],[[17164]],[[17165]],[[17166]],[[17167]],[[17168]],[[17169]],[[17170]],[[17171]],[[17172,17173]],[[17174]],[[17175]],[[17176]],[[17177]],[[17178]],[[17179,17180]],[[17181]],[[-4596,17182]],[[17183,17184]],[[-4603]],[[17185]],[[17186]],[[-4619,17187]],[[-4581,17188]],[[17189]],[[17190]],[[-4625,17191]],[[17192,-4640,17193]],[[17194]],[[17195]],[[17196,17197]],[[17198]],[[17199]],[[17200]],[[-10984,17201]],[[17202]],[[17203]],[[17204]],[[17205]],[[17206]],[[17207]],[[17208]],[[17209]],[[17210]],[[-4645,17211]],[[-4648,17212]],[[17213]],[[-4649,17214]],[[17215]],[[17216]],[[17217]],[[17218]],[[17219]],[[17220]],[[17221]],[[17222]],[[17223]],[[17224]],[[17225]],[[17226]],[[17227]],[[17228]],[[17229]],[[17230]],[[17231]],[[-4826,17232]],[[17233]],[[17234]],[[17235]],[[17236]],[[17237]],[[17238]],[[17239]],[[-4659,17240]],[[-4661,17241]],[[17242]],[[17243]],[[17244]],[[17245,17246]],[[17247]],[[17248]],[[17249]],[[17250]],[[17251]],[[17252,-2900]],[[-4681,17253]],[[-10993,17254,-11066,17255]],[[-4675,17256]],[[-4673,17257]],[[-10996,17258]],[[17259,-4679,17260,-10998]],[[17261]],[[17262]],[[17263]],[[17264]],[[17265]],[[17266]],[[17267]],[[-4692,17268]],[[17269]],[[17270]],[[17271,17272]],[[17273,-4735]],[[-4795,17274,17275]],[[17276]],[[-4808,17277]],[[17278,-4813]],[[-11064,17279]],[[17280]],[[-4820,17281,-4628,17282]],[[17283]],[[17284,-11077,-4267]],[[17285]],[[-4869,17286,-11125]],[[17287]],[[17288]],[[17289,17290]],[[17291]],[[17292]],[[17293]],[[17294]],[[-4921,17295]],[[17296,-11162]],[[-4926,17297,17298]],[[17299]],[[-4939,17300]],[[17301,-4941,17302]],[[17303]],[[17304]],[[17305]],[[17306]],[[17307,-4937]],[[-4915,17308]],[[17309]],[[17310,-5106]],[[17311]],[[17312]],[[17313,17314]],[[17315,-11340]],[[17316,-11338]],[[17317]],[[17318]],[[17319,17320]],[[17321,-5139]],[[17322]],[[17323]],[[17324]],[[17325]],[[17326]],[[17327]],[[17328]],[[17329]],[[17330]],[[-5154,17331]],[[17332]],[[17333,17334]],[[17335]],[[17336]],[[17337]],[[-5161,17338]],[[17339,17340,-1227]],[[17341,-1220]],[[17342]],[[17343]],[[17344]],[[17345]],[[17346]],[[17347]],[[17348,-1231,-11353]],[[-11356,17349]],[[17350,-5179]],[[17351]],[[17352]],[[17353]],[[-11361,17354]],[[17355]],[[17356]],[[17357]],[[17358]],[[17359]],[[17360]],[[17361]],[[17362]],[[17363]],[[17364]],[[-5187,17365]],[[17366]],[[17367]],[[17368]],[[17369]],[[17370]],[[17371,-1371]],[[17372]],[[17373]],[[17374,-1432,17375]],[[17376]],[[17377]],[[17378]],[[17379]],[[17380]],[[17381]],[[17382]],[[17383]],[[17384]],[[17385]],[[17386]],[[17387]],[[17388]],[[17389]],[[17390]],[[17391]],[[17392]],[[17393]],[[17394]],[[17395]],[[17396]],[[17397]],[[17398]],[[17399]],[[17400]],[[17401,-5266]],[[-5269,17402,17403]],[[17404]],[[17405,-5425]],[[17406]],[[17407]],[[17408]],[[-5446,-11618,17409]],[[17410,-11621]],[[17411]],[[-5450,17412,17413]],[[17414]],[[17415]],[[17416]],[[-5465,17417]],[[17418,17419]],[[17420]],[[17421]],[[17422]],[[17423]],[[17424]],[[17425]],[[17426]],[[17427]],[[-5544,17428]],[[17429]],[[17430]],[[17431]],[[17432]],[[17433]],[[17434]],[[17435]],[[17436]],[[17437]],[[17438]],[[17439,17440]],[[17441]],[[17442]],[[17443]],[[17444]],[[17445]],[[-11782,17446]],[[17447]],[[-1338,17448]],[[17449]],[[17450]],[[17451]],[[17452,17453]],[[17454]],[[17455]],[[17456]],[[17457]],[[17458,17459]],[[17460]],[[17461]],[[-11786,-5609,17462,17463]],[[17464]],[[17465]],[[17466,-5739]],[[17467]],[[17468]],[[17469]],[[17470,-5753]],[[17471]],[[17472]],[[17473]],[[-5818,17474]],[[17475,-5761]],[[-5763,-11819,17476]],[[17477]],[[17478]],[[17479]],[[17480]],[[17481]],[[-5923,17482]],[[17483]],[[17484,-5642]],[[17485,-5644]],[[-5780,17486]],[[17487,17488]],[[17489,-5913,17490]],[[-5915,17491]],[[17492]],[[17493,17494,-5926]],[[17495]],[[17496]],[[17497]],[[17498,17499]],[[17500]],[[-6357,17501,17502]],[[17503]],[[17504]],[[17505]],[[17506]],[[17507]],[[17508]],[[17509]],[[-6330,17510,17511,-6449,17512,17513]],[[17514,17515]],[[17516]],[[17517]],[[17518]],[[17519]],[[17520]],[[17521]],[[-6326,17522]],[[17523]],[[17524]],[[17525,-6562]],[[17526]],[[17527]],[[17528]],[[17529]],[[17530]],[[17531]],[[17532]],[[17533]],[[17534]],[[17535]],[[17536]],[[17537]],[[17538]],[[17539]],[[17540]],[[17541]],[[17542]],[[17543]],[[17544]],[[17545]],[[17546]],[[17547]],[[17548]],[[17549]],[[17550]],[[17551]],[[17552]],[[17553]],[[17554,-6469]],[[-6479,17555]],[[-6481,17556]],[[17557]],[[17558]],[[-6475,17559]],[[-6477,17560]],[[17561]],[[17562]],[[17563,-6463]],[[-6484,17564,17565,17566,17567]],[[-6489,17568]],[[-6501,-12404,17569]],[[17570]],[[17571,-12405,-6499]],[[17572,17573]],[[17574]],[[17575]],[[17576]],[[17577]],[[17578]],[[-6515,17579]],[[17580]],[[17581]],[[17582]],[[-12414,17583]],[[17584]],[[17585,-12412,17586,17587]],[[17588]],[[17589]],[[17590]],[[-6519,17591,17592,17593]],[[17594,-12418]],[[17595]],[[17596,-6525,17597]],[[17598]],[[17599]],[[17600]],[[-6487,17601]],[[17602,17603]],[[-6530,17604]],[[-6533,17605]],[[-6535,17606]],[[-6537,17607]],[[-6539,17608]],[[17609,-6541]],[[17610]],[[-12426,17611,17612,-6582]],[[17613]],[[17614]],[[-6587,17615]],[[-12432,17616]],[[-12430,17617]],[[17618,-1130]],[[-1128,17619]],[[17620]],[[-1126,17621]],[[17622]],[[17623]],[[17624]],[[17625]],[[17626]],[[17627]],[[-12434,17628]],[[-12437,17629]],[[17630]],[[17631,-6593]],[[-6595,17632]],[[17633]],[[-6597,17634]],[[17635]],[[17636]],[[17637]],[[17638]],[[17639]],[[17640]],[[17641]],[[17642]],[[17643]],[[17644]],[[17645]],[[17646]],[[17647]],[[-12441,17648]],[[17649,-12439]],[[17650,17651]],[[17652]],[[17653]],[[17654,17655,-6603,17656]],[[17657,-6605]],[[-12443,17658]],[[-1124,17659]],[[17660,-6638]],[[-12452,-6619,17661,-6644,17662]],[[-6648]],[[17663]],[[17664]],[[17665]],[[17666,17667]],[[17668,-6650]],[[17669,-12454]],[[-6658,17670]],[[17671]],[[17672]],[[-6660,17673,-6661,17674]],[[17675]],[[-6664,17676]],[[17677]],[[17678]],[[17679]],[[17680,17681]],[[-6670,17682,17683,17684]],[[17685,17686]],[[17687,17688,-6653]],[[17689]],[[17690]],[[17691]],[[17692]],[[17693]],[[17694,-926]],[[17695]],[[17696]],[[17697,-6678]],[[17698]],[[-6683,17699]],[[17700]],[[17701]],[[17702]],[[17703]],[[17704]],[[17705]],[[17706,17707]],[[17708]],[[17709]],[[17710]],[[17711]],[[17712]],[[17713]],[[-12470,17714]],[[17715,-6687,17716]],[[17717,6689,17718,17719]],[[17720,-6694]],[[17721]],[[-6697,17722]],[[17723]],[[17724,17725]],[[17726]],[[17727]],[[-12483,-6702,17728,17729]],[[-6705,17730]],[[17731]],[[17732]],[[17733]],[[17734]],[[17735]],[[17736]],[[17737]],[[17738]],[[17739]],[[-6708,17740]],[[17741]],[[17742]],[[17743]],[[17744]],[[17745]],[[17746]],[[17747]],[[17748]],[[17749]],[[17750,17751]],[[-6731,17752]],[[17753]],[[-6735,17754,-12486]],[[17755,-6745]],[[-6738,17756,-6741,-12488]],[[17757]],[[17758]],[[-6749,17759]],[[17760,-6753]],[[17761]],[[17762,-12496]],[[17763,-6791]],[[17764,17765,17766,17767]],[[17768]],[[17769,-12840]],[[-12842,17770]],[[17771]],[[17772]],[[17773]],[[17774]],[[-6900,17775]],[[-7105,17776]],[[17777]],[[17778]],[[17779]],[[-7115,17780]],[[17781]],[[17782]],[[17783]],[[17784]],[[17785]],[[17786]],[[17787]],[[17788]],[[17789]],[[17790]],[[17791]],[[17792]],[[17793]],[[-12903,17794]],[[-12901,17795]],[[-7219,-12899,17796]],[[17797]],[[-7222,17798]],[[17799]],[[17800]],[[17801]],[[17802]],[[17803]],[[17804]],[[17805]],[[17806]],[[17807]],[[17808]],[[17809]],[[17810]],[[17811]],[[17812]],[[17813]],[[17814,-7224]],[[17815]],[[17816]],[[17817]],[[17818]],[[17819]],[[17820]],[[17821]],[[17822]],[[17823]],[[17824]],[[17825]],[[17826]],[[17827]],[[17828]],[[17829]],[[17830]],[[17831]],[[17832]],[[17833]],[[17834]],[[17835,-7241]],[[17836]],[[-7244,17837]],[[17838,17839]],[[-7257,17840]],[[17841]],[[17842]],[[-12919,17843,17844]],[[17845]],[[17846]],[[17847]],[[17848]],[[-7264,17849]],[[17850]],[[17851]],[[17852]],[[-7274,17853]],[[17854]],[[-7213,17855]],[[17856]],[[17857]],[[17858,17859,-7276]],[[-12923,17860]],[[17861]],[[17862]],[[-744,17863]],[[-742,17864]],[[17865]],[[17866]],[[17867]],[[-12930,17868]],[[17869]],[[17870]],[[17871,17872]],[[17873]],[[17874]],[[17875]],[[17876]],[[17877]],[[17878]],[[17879]],[[17880]],[[17881,-7401]],[[17882]],[[17883]],[[17884]],[[17885,17886]],[[17887,17888]],[[17889,17890]],[[17891,17892]],[[17893,-13154,17894,-13152]],[[-7461,17895]],[[17896]],[[17897,-13161]],[[17898]],[[17899]],[[17900]],[[17901]],[[17902]],[[17903]],[[17904]],[[17905]],[[17906]],[[-7648,17907]],[[17908]],[[-7669,17909]],[[-7667,17910]],[[17911]],[[17912]],[[17913]],[[17914]],[[17915]],[[17916]],[[17917]],[[-7673,17918]],[[-714,17919]],[[-716,17920]],[[17921]],[[-718,17922]],[[17923]],[[17924]],[[17925]],[[17926]],[[17927]],[[17928]],[[-7652,17929]],[[17930]],[[17931]],[[17932]],[[17933]],[[17934]],[[17935]],[[17936]],[[17937]],[[17938]],[[17939]],[[17940]],[[17941]],[[17942]],[[17943,17944]],[[17945]],[[17946]],[[17947]],[[17948,17949]],[[17950]],[[17951]],[[17952]],[[17953]],[[17954]],[[17955]],[[17956,17957]],[[17958]],[[17959]],[[17960]],[[17961]],[[17962]],[[17963,-7663]],[[-7664,17964]],[[17965]],[[17966,-13275]],[[-7685,17967,17968]],[[17969]],[[-13286,17970]],[[17971]],[[-7692,17972,17973]],[[-7701,17974]],[[17975,-7731,17976]],[[-7745,17977]],[[17978]],[[17979]],[[-13302,17980,17981]],[[17982]],[[17983,17984]],[[17985]],[[17986]],[[17987]],[[17988]],[[17989]],[[17990]],[[17991]],[[17992]],[[17993]],[[17994]],[[17995]],[[17996]],[[17997]],[[17998,-13300,17999]],[[18000]],[[18001,-7778,18002]],[[-7763,18003,18004,-7771,18005]],[[-7729,18006]],[[-7760,18007]],[[-7801,18008]],[[18009]],[[18010]],[[18011]],[[18012]],[[18013]],[[18014]],[[18015]],[[18016]],[[18017]],[[18018]],[[18019]],[[18020]],[[18021]],[[18022]],[[18023]],[[-7790,18024]],[[18025,-7805]],[[18026,-7860,18027,18028]],[[18029]],[[18030]],[[18031,18032,-2154]],[[18033]],[[-7903,18034]],[[18035]],[[18036]],[[-8137,-13888,18037]],[[-8134,18038]],[[18039,-8177]],[[18040]],[[18041]],[[18042]],[[18043]],[[-8194,18044]],[[18045]],[[-8198,18046,18047]],[[18048,18049]],[[18050]],[[18051]],[[18052,-13946,18053,-8199]],[[18054]],[[-13998,18055,-13965,-643,18056]],[[-8215,18057]],[[18058,-638,18059]],[[18060,-7359,18061]],[[-13902,18062,18063]],[[-8219,18064]],[[18065,18066,-8232]],[[18067,18068]],[[18069]],[[18070]],[[18071]],[[18072]],[[18073]],[[18074]],[[-8293,18075]],[[18076]],[[18077,18078]],[[18079]],[[-8318,18080]],[[18081]],[[18082]],[[18083]],[[18084,-8320,18085,-8323]],[[18086]],[[18087]],[[18088,-8316]],[[18089]],[[18090]],[[18091,18092]],[[-8334,18093]],[[-8338,18094]],[[-8339]],[[18095]],[[-8341,18096,-14017,18097,-14019,18098]],[[-8345,18099]],[[18100]],[[18101]],[[18102]],[[18103,-8350]],[[18104,-8352]],[[18105,18106]],[[18107]],[[18108]],[[18109]],[[-8357,18110]],[[18111]],[[-8359]],[[18112]],[[18113,-8360]],[[-8362]],[[18114]],[[18115,-8364,18116,18117]],[[-8368,18118]],[[18119]],[[18120,-8378]],[[18121]],[[18122]],[[18123,-8402,18124]],[[-8411,18125]],[[-8413]],[[18126]],[[-8414]],[[18127]],[[-8415,18128]],[[-8417]],[[18129]],[[-8418]],[[18130]],[[-8419,18131]],[[18132,18133,18134,18135,18136]],[[18137,-8427,18138,-8425]],[[18139,-14080,-8434,18140,18141]],[[18142,-8436]],[[18143]],[[18144]],[[18145]],[[18146]],[[18147,18148,-14066]],[[-14084,-8444,18149]],[[18150]],[[18151]],[[18152]],[[18153]],[[18154]],[[18155]],[[18156]],[[18157]],[[18158]],[[18159]],[[18160]],[[18161]],[[18162]],[[-14384,18163]],[[18164]],[[18165,18166]],[[18167]],[[18168]],[[18169]],[[18170]],[[18171]],[[18172]],[[18173]],[[18174]],[[18175]],[[18176]],[[-8658,18177]],[[18178,18179]],[[18180,-8627]],[[18181,18182]],[[18183,18184]],[[18185]],[[18186]],[[18187]],[[18188]],[[18189]],[[18190]],[[18191]],[[18192,-8664,18193,-8696]],[[-8667,18194]],[[18195]],[[18196]],[[-8673,18197,-14387,18198]],[[18199]],[[18200]],[[18201,-8594]],[[18202]],[[18203]],[[18204,-8685]],[[18205]],[[18206]],[[-8709,18207]],[[18208]],[[-14403,18209,-14401,18210]],[[18211,-14409]],[[18212]],[[-14447,18213]],[[-8705,-14460,18214]],[[18215]],[[-14481,18216,-8746,18217]],[[18218]],[[18219]],[[18220]],[[18221]],[[18222,-8748]],[[18223]],[[18224]],[[18225]],[[18226]],[[-8754,18227,-8752,18228]],[[18229,18230]],[[18231,-8757]],[[18232]],[[18233]],[[18234]],[[18235]],[[18236]],[[18237]],[[18238]],[[18239]],[[18240]],[[18241]],[[18242]],[[18243]],[[18244]],[[18245]],[[18246]],[[18247]],[[-8778,18248]],[[18249,18250]],[[18251]],[[18252,-8962]],[[18253]],[[18254]],[[18255]],[[18256]],[[18257]],[[18258]],[[-8971,18259]],[[18260]],[[18261]],[[18262]],[[18263]],[[18264]],[[18265,-8501,18266,-8977]],[[18267]],[[-15093,18268,-15094,-8988]],[[18269,-15098,18270,-15096,18271]],[[-15089,-8991,-15091,18272]],[[18273]],[[18274]],[[-15107,18275]],[[18276]],[[18277]],[[18278,-8999]],[[18279]],[[18280,18281]],[[18282,-9002]],[[18283,-9003]],[[18284]],[[18285,-8468,18286,18287]],[[-9005,18288]],[[18289]],[[18290]],[[18291,-15112,18292]],[[18293,-15110,18294]],[[18295]],[[18296]],[[18297]],[[18298]],[[-9019]],[[18299,18300]],[[-9020]],[[18301,18302]],[[18303]],[[18304,-9021]],[[-9023,18305]],[[18306,-9026]],[[-9031,18307]],[[18308]],[[18309]],[[18310]],[[18311]],[[-15080,18312]],[[-9010,18313]],[[18314]],[[18315,-9044]],[[18316]],[[18317]],[[18318]],[[18319]],[[18320,-9046]],[[18321]],[[18322,-9048]],[[18323]],[[18324]],[[18325,18326]],[[18327]],[[18328]],[[18329]],[[18330]],[[18331]],[[18332]],[[-9065,18333]],[[18334]],[[18335]],[[18336]],[[18337]],[[18338]],[[18339]],[[18340,-9079]],[[18341,-9060]],[[18342]],[[18343]],[[-9081,18344]],[[-9083,18345]],[[-9085,18346]],[[-9095,18347]],[[-9093,18348]]]},{"type":"MultiPolygon","id":"3","properties":{"density":3},"arcs":[[[-15121,-5,18349]],[[-46,18350]],[[18351,-9]],[[18352]],[[18353]],[[18354]],[[-42,18355]],[[-15123,-154,18356]],[[-159,18357,18358]],[[18359]],[[-167,18360]],[[-165,18361]],[[-163,18362]],[[-15129,-173,18363]],[[-9103,18364,-171]],[[18365,-9104,-176]],[[18366]],[[18367]],[[-15161,18368]],[[-15163,18369,-15165,18370]],[[18371,-9111,-15169]],[[-15171,-197,18372]],[[18373,-15173]],[[-201,18374]],[[18375,18376]],[[-214,18377]],[[18378]],[[18379]],[[18380,18381]],[[18382]],[[18383,-34]],[[18384]],[[18385]],[[-15197,18386]],[[-210,18387]],[[18388]],[[18389]],[[18390]],[[18391]],[[18392,-237]],[[18393]],[[-38,18394]],[[18395]],[[18396]],[[18397]],[[18398]],[[18399,-15219]],[[18400]],[[18401]],[[18402]],[[18403]],[[305,-306,18404]],[[18405]],[[18406]],[[-315,18407]],[[18408,-246]],[[18409]],[[18410]],[[-9158,-21,18411]],[[18412]],[[-15238,18413]],[[18414]],[[18415]],[[18416,18417]],[[18418]],[[18419]],[[18420]],[[18421,-9165,-323,-9164]],[[-15247,-335,18422,-330,18423]],[[-332,18424]],[[-15252,18425,-15253,18426]],[[18427]],[[-350,18428]],[[-9173,-385,18429]],[[18430,-402]],[[18431,-470]],[[18432]],[[18433,-9183,-480]],[[-483,18434,18435]],[[18436]],[[18437]],[[18438]],[[18439]],[[18440]],[[-507,18441]],[[18442,-50]],[[-52,18443]],[[-136,18444]],[[18445]],[[-139,-9188,18446]],[[-134,18447]],[[18448]],[[-9191,18449]],[[-500,18450]],[[18451,-546]],[[18452,-551]],[[18453]],[[18454]],[[18455]],[[18456]],[[18457]],[[18458]],[[18459]],[[18460,18461]],[[18462]],[[18463]],[[18464]],[[18465]],[[18466]],[[-9198,18467]],[[-575,-570,18468]],[[18469]],[[18470]],[[18471,-584]],[[18472]],[[-727,-15358,18473]],[[-728,18474]],[[18475,18476]],[[-611,18477,18478]],[[18479,18480,-606]],[[18481]],[[18482]],[[18483,-15391]],[[18484]],[[18485]],[[18486,-760]],[[18487]],[[18488]],[[18489]],[[-364,18490,18491]],[[-367,18492]],[[-773,18493]],[[18494]],[[-354,18495]],[[18496,-358]],[[-781,18497]],[[-9224,18498]],[[-15431,18499,-795,18500]],[[18501]],[[18502,-796,18503,-15424]],[[18504]],[[18505,18506]],[[18507,18508]],[[-831,18509]],[[18510]],[[18511]],[[18512]],[[18513]],[[-860,18514]],[[18515]],[[18516]],[[18517]],[[-832,18518]],[[18519]],[[18520]],[[18521]],[[18522]],[[18523]],[[18524,-855,18525,-405,18526]],[[18527,-7683,18528]],[[18529]],[[-862,18530]],[[-858,18531]],[[18532,-868]],[[18533,-871,18534]],[[-874,18535]],[[18536]],[[18537]],[[-961,18538]],[[-916,18539,18540]],[[-923,18541]],[[18542,18543]],[[18544,-12461]],[[18545]],[[18546]],[[-944,18547]],[[-9253,18548]],[[-17708,18549,-9257,18550]],[[-9255,18551]],[[-990,18552,-15580,18553]],[[18554]],[[18555]],[[18556,-15582]],[[18557,-1008]],[[18558]],[[-971,-15585,18559,-1005,18560,-15587]],[[18561]],[[18562]],[[18563]],[[18564]],[[18565]],[[-15611,18566,-15612,18567]],[[18568,-15617,18569,-15615]],[[-1027,18570]],[[18571]],[[18572,-15635]],[[18573]],[[18574]],[[18575,-1047,18576]],[[18577,18578]],[[18579,18580]],[[-1068,18581]],[[18582]],[[18583]],[[18584]],[[18585]],[[18586]],[[18587]],[[-15695,18588]],[[18589]],[[-15684,18590]],[[-15681,18591]],[[18592,18593]],[[18594]],[[18595,18596]],[[-15701,18597]],[[-15711,18598]],[[-15709,18599]],[[18600,18601]],[[-15718,-1115,18602]],[[-15723,18603]],[[-15726,18604]],[[-15730,18605]],[[18606]],[[-15737,18607,-15734,18608,18609,18610]],[[18611,-15741]],[[-15743,18612]],[[18613]],[[-1164,18614]],[[18615]],[[18616,-15770]],[[18617]],[[-15774]],[[18618]],[[18619]],[[18620]],[[18621,-28]],[[18622]],[[18623]],[[-1210,18624]],[[18625,-1460]],[[-9289,-1462,18626]],[[-9291,18627,-1441]],[[-1458,-9292,18628]],[[18629]],[[18630]],[[18631]],[[18632]],[[-1443,18633]],[[18634]],[[18635]],[[18636]],[[18637]],[[18638]],[[18639]],[[18640]],[[-1471,18641]],[[18642,18643]],[[-1474,18644,18645]],[[-15814,18646]],[[-15818,18647]],[[18648]],[[18649]],[[18650]],[[18651,18652]],[[-1193,18653]],[[18654]],[[-15878,18655]],[[-1509,18656]],[[18657]],[[18658]],[[18659,18660]],[[18661]],[[18662]],[[18663,-1499]],[[18664]],[[18665]],[[-1554,18666]],[[-1560,18667]],[[-15942,18668,-1558]],[[18669]],[[-1580,18670]],[[-1588,18671]],[[18672]],[[18673]],[[18674]],[[18675,-425]],[[18676,-423]],[[18677]],[[-9310,18678]],[[-1634,18679]],[[18680,18681]],[[-1652,18682]],[[18683,18684,-1649]],[[18685]],[[-1660,18686]],[[18687]],[[-451,18688,-15964]],[[18689]],[[18690,-449]],[[18691]],[[-1695,18692]],[[18693]],[[-395,18694,-9325]],[[18695]],[[18696]],[[-1724,18697]],[[-1711,18698]],[[18699]],[[18700,-16013,-1717]],[[18701]],[[18702]],[[18703]],[[18704]],[[18705]],[[18706]],[[18707]],[[-58,18708]],[[18709]],[[18710]],[[18711]],[[18712]],[[18713]],[[-126,18714]],[[-1729,18715]],[[18716]],[[18717]],[[18718]],[[18719]],[[18720]],[[18721]],[[18722]],[[18723]],[[18724]],[[-1740,18725]],[[18726,-16061]],[[-16082,18727]],[[-9331,18728,-1747]],[[18729]],[[18730]],[[18731]],[[-111,18732]],[[18733]],[[18734,-9339]],[[18735]],[[-1751,18736]],[[18737]],[[-1833,18738]],[[-1839,18739]],[[18740]],[[18741]],[[-1843,18742]],[[-9346,18743]],[[18744]],[[-9349,18745,-1917]],[[18746]],[[18747]],[[-1927,18748]],[[18749]],[[-1947,18750]],[[18751]],[[-9360,18752,-1949,18753]],[[18754]],[[18755]],[[18756]],[[18757]],[[18758]],[[18759]],[[18760,-1953]],[[18761]],[[18762,18763]],[[-1961,18764]],[[-1820,18765]],[[18766]],[[18767]],[[18768]],[[18769]],[[18770]],[[18771]],[[18772]],[[18773]],[[18774]],[[18775,-2986]],[[18776,18777]],[[18778]],[[18779]],[[-1762,18780,18781]],[[18782]],[[18783]],[[18784]],[[-1999,18785]],[[18786]],[[18787]],[[18788]],[[18789]],[[18790]],[[18791]],[[18792]],[[18793]],[[18794]],[[18795]],[[18796]],[[18797]],[[18798]],[[18799]],[[18800]],[[18801]],[[18802]],[[18803]],[[18804,18805]],[[-1764,18806]],[[18807]],[[18808]],[[18809]],[[18810]],[[18811]],[[18812]],[[18813]],[[18814]],[[18815]],[[18816]],[[18817]],[[-1841,18818]],[[18819]],[[18820]],[[18821]],[[18822]],[[18823,18824]],[[18825,18826]],[[18827]],[[18828]],[[18829]],[[18830]],[[18831]],[[18832]],[[18833]],[[18834]],[[18835]],[[18836]],[[18837]],[[18838]],[[18839]],[[18840]],[[18841]],[[18842]],[[18843]],[[18844]],[[18845]],[[18846]],[[18847]],[[18848]],[[18849]],[[18850]],[[18851]],[[18852]],[[18853]],[[-9427,18854]],[[18855]],[[-9433,18856]],[[18857]],[[-2051,18858]],[[18859]],[[18860]],[[18861]],[[18862,-2063]],[[18863]],[[18864]],[[-2054,18865,18866]],[[18867]],[[-2075,18868]],[[18869]],[[18870]],[[18871]],[[18872]],[[18873]],[[18874]],[[18875,18876,-2086]],[[18877,-2098,18878]],[[18879]],[[18880]],[[18881]],[[18882]],[[18883]],[[18884]],[[18885]],[[18886]],[[18887]],[[18888]],[[18889]],[[18890]],[[18891]],[[18892]],[[18893]],[[18894]],[[18895]],[[18896]],[[18897]],[[18898]],[[-2106,18899,-16168]],[[18900]],[[18901]],[[18902]],[[18903]],[[-2093,18904]],[[-16159,18905,-1779]],[[-2126,18906]],[[18907]],[[-2069,18908]],[[-2065,18909]],[[-2277,18910]],[[-2138,18911]],[[18912,-2296]],[[-16181,18913,-2286]],[[18914,-9508]],[[-2290,18915]],[[-2332,18916]],[[-9511,18917]],[[18918,-2333]],[[18919,-16185]],[[18920]],[[18921]],[[18922]],[[18923]],[[-9517,-2350,18924]],[[18925]],[[18926]],[[18927]],[[18928]],[[18929]],[[18930]],[[18931]],[[18932]],[[18933]],[[18934]],[[18935]],[[18936,-2314]],[[18937]],[[-2362,18938]],[[18939,-2360]],[[-2358,18940]],[[18941]],[[18942]],[[18943]],[[-9524,18944]],[[18945,-1772]],[[-1812,18946]],[[-9527,-2402,-9529,18947]],[[-1808,18948]],[[-1826,1825,18949]],[[-1806,18950]],[[-2414,18951]],[[-2425,18952]],[[-2376,18953]],[[18954]],[[18955,-9539]],[[-2378,18956,-9541,18957,-16276]],[[18958]],[[18959]],[[18960]],[[18961]],[[18962]],[[18963]],[[18964]],[[18965]],[[18966]],[[-2386,18967]],[[18968,-2388]],[[-2390,18969]],[[18970]],[[18971]],[[18972]],[[18973]],[[18974]],[[18975]],[[18976]],[[18977]],[[-9563,18978]],[[18979]],[[-9572,18980,-1854]],[[18981]],[[-9575,-1850,-9574,18982]],[[18983]],[[18984]],[[18985,-2444]],[[-2446,18986]],[[-2451,18987]],[[18988]],[[-2455,18989]],[[-2449,18990]],[[18991]],[[18992]],[[18993]],[[-2458,18994,-9580]],[[18995,-2476]],[[18996,18997,-2479]],[[18998]],[[18999]],[[19000]],[[19001,-2416,19002,19003]],[[19004,19005,-2423,19006,-2418]],[[-2485,19007]],[[-2453,19008]],[[-2488,19009]],[[-9591,19010]],[[-2491,-2493,19011,-9593,19012]],[[-2490,19013,-9596,-2494]],[[19014,19015]],[[19016]],[[19017,-2522]],[[-2524,19018]],[[-2322,19019]],[[19020]],[[19021]],[[19022]],[[19023]],[[19024]],[[19025]],[[19026]],[[19027,-9621]],[[19028,-9619]],[[19029,-9615]],[[-9625,19030]],[[19031,-9609]],[[-2542,-9611,19032]],[[19033,19034]],[[19035]],[[19036]],[[19037]],[[19038]],[[19039]],[[19040]],[[19041]],[[19042,19043]],[[19044,19045,-2551]],[[19046,-2570,-16301]],[[19047]],[[19048]],[[19049]],[[19050]],[[-2573,19051]],[[-2575,19052,-2566,19053]],[[19054]],[[19055]],[[19056]],[[-429,19057]],[[-439,19058]],[[19059,-441]],[[19060]],[[19061]],[[-1668,19062]],[[-437,19063]],[[19064]],[[-2583,19065]],[[19066]],[[19067]],[[19068]],[[19069]],[[19070]],[[19071]],[[19072]],[[-9637,19073]],[[-9532,-1799,19074]],[[19075]],[[19076]],[[19077]],[[-9645,19078,-9643,19079]],[[-9535,19080]],[[-2591,19081]],[[-2595,19082]],[[19083]],[[19084,19085]],[[19086,-9667]],[[19087]],[[19088,-9670]],[[19089]],[[19090]],[[19091]],[[19092]],[[19093,-9681]],[[19094]],[[19095]],[[19096]],[[19097]],[[19098]],[[-2613,19099]],[[-9704,19100]],[[19101,19102]],[[19103,-1795]],[[19104]],[[-2620,19105,-2482,-2409,19106]],[[-9717,19107]],[[-9719,19108]],[[19109]],[[19110]],[[19111]],[[19112,19113]],[[19114]],[[19115]],[[19116]],[[19117,-2598,-16322]],[[-2633,19118]],[[19119]],[[19120]],[[19121]],[[19122,-9745]],[[19123]],[[19124,-2640]],[[19125]],[[-2627,19126]],[[-2642,19127]],[[19128]],[[-2650,19129]],[[19130]],[[19131]],[[-9785,19132]],[[19133,19134]],[[-9800,19135]],[[-9802,9801,19136]],[[19137]],[[19138]],[[19139]],[[19140]],[[19141]],[[19142]],[[19143]],[[19144]],[[19145]],[[19146]],[[19147]],[[19148]],[[19149]],[[19150]],[[19151]],[[19152]],[[19153]],[[19154]],[[19155]],[[19156]],[[19157]],[[19158]],[[19159]],[[19160]],[[19161]],[[19162]],[[19163]],[[19164]],[[19165]],[[19166]],[[19167]],[[19168]],[[19169]],[[19170]],[[19171]],[[19172]],[[19173]],[[19174]],[[19175]],[[-9853,19176,-2738]],[[19177]],[[-9851,-2744,19178]],[[-2673,19179]],[[-2681,19180]],[[19181,-2675]],[[19182]],[[19183,-2776]],[[19184,19185,19186]],[[19187,-9864]],[[-109,19188]],[[19189]],[[19190,-2797]],[[19191]],[[19192]],[[19193,-2793]],[[19194]],[[19195]],[[-2801]],[[19196]],[[19197]],[[19198]],[[19199]],[[19200]],[[19201]],[[19202]],[[19203]],[[19204]],[[19205]],[[19206]],[[19207]],[[-2807,19208]],[[19209]],[[19210,19211,19212,-2799]],[[19213]],[[19214]],[[19215]],[[19216]],[[-2819,19217]],[[19218]],[[19219]],[[19220,-16434]],[[19221]],[[-2836,19222]],[[19223]],[[19224]],[[19225]],[[19226]],[[19227]],[[19228]],[[-2826,19229]],[[-2944,19230]],[[19231]],[[19232]],[[19233]],[[-2926,19234]],[[19235]],[[19236]],[[19237]],[[19238]],[[19239]],[[19240]],[[-16499,19241]],[[-16517,19242]],[[-9936,19243]],[[-16515,19244]],[[19245]],[[-9940,19246]],[[19247]],[[19248]],[[19249]],[[-2957,19250]],[[19251]],[[19252]],[[19253,-2959]],[[19254]],[[19255]],[[19256]],[[19257]],[[19258]],[[19259]],[[-2963,19260]],[[19261]],[[19262]],[[19263]],[[19264]],[[19265]],[[19266]],[[19267]],[[19268]],[[19269]],[[19270]],[[19271]],[[19272]],[[-9957,19273]],[[19274]],[[19275]],[[19276]],[[19277]],[[19278]],[[19279]],[[19280]],[[19281]],[[19282]],[[19283]],[[19284]],[[-2978,19285]],[[19286]],[[19287]],[[19288]],[[19289]],[[19290]],[[19291]],[[19292]],[[19293]],[[19294]],[[-3016,19295]],[[-9990,19296]],[[19297]],[[19298]],[[19299]],[[-3020,19300]],[[-3026,19301]],[[-98,19302]],[[19303]],[[19304]],[[19305,-10010,-94]],[[19306]],[[19307]],[[19308]],[[19309]],[[19310]],[[19311]],[[-10030,19312]],[[19313]],[[19314]],[[19315]],[[19316]],[[19317]],[[19318]],[[-10040,19319,-105]],[[19320,-16547]],[[19321]],[[19322,3033]],[[19323]],[[-10041,-101,19324,19325]],[[19326]],[[19327]],[[19328]],[[19329]],[[19330]],[[19331]],[[19332]],[[19333]],[[19334]],[[-3052,19335]],[[19336]],[[19337]],[[19338]],[[19339]],[[19340]],[[19341]],[[-3184,19342]],[[19343]],[[19344,-3174]],[[-10065,-3108,19345]],[[19346]],[[19347]],[[19348]],[[19349]],[[19350]],[[19351]],[[19352]],[[19353]],[[19354]],[[19355]],[[19356]],[[19357]],[[19358]],[[19359]],[[19360]],[[-10070,19361]],[[19362]],[[19363]],[[19364]],[[19365]],[[19366]],[[19367]],[[-3064,19368]],[[-3059,19369]],[[19370]],[[19371]],[[19372]],[[19373]],[[-3130,19374]],[[19375,19376,-3061]],[[19377,19378]],[[19379]],[[19380]],[[19381]],[[19382]],[[19383]],[[19384]],[[-10087,19385]],[[19386]],[[19387]],[[19388]],[[19389,-3075]],[[19390]],[[19391]],[[-3087,19392]],[[19393]],[[19394]],[[19395]],[[19396]],[[19397]],[[19398]],[[-3079,19399]],[[-3082,-10095,19400]],[[19401]],[[19402,-3092]],[[19403]],[[19404]],[[19405]],[[19406]],[[19407]],[[19408]],[[-3072,19409,19410,19411,19412]],[[19413,-19411,19414,-3084]],[[19415]],[[19416,19417]],[[-10103,-3132,19418]],[[-3141,19419]],[[-3137,19420]],[[19421]],[[19422]],[[-16552,-3181,19423]],[[19424]],[[19425]],[[19426]],[[-3147,19427]],[[19428]],[[-10111,19429]],[[19430]],[[19431]],[[19432]],[[-10115,19433]],[[-3151,19434]],[[19435,19436]],[[-10120,19437]],[[19438]],[[19439]],[[19440]],[[-3143,19441]],[[19442]],[[-3159,19443]],[[-10123,19444]],[[-3172,19445]],[[19446]],[[19447]],[[19448]],[[19449]],[[-3169,19450,-10127]],[[-10129,19451,-3175,19452]],[[-3190,19453]],[[-3195,19454,19455]],[[-3197,19456]],[[19457]],[[19458]],[[19459]],[[19460]],[[19461]],[[19462]],[[19463]],[[19464]],[[19465]],[[19466]],[[19467]],[[19468]],[[19469]],[[-3207,19470]],[[19471]],[[19472]],[[19473]],[[19474]],[[19475]],[[19476]],[[19477]],[[19478]],[[19479]],[[19480]],[[-3221,19481]],[[-3226,19482]],[[19483,-3233]],[[19484,-3237]],[[-3276,19485]],[[-3274,19486]],[[19487]],[[19488]],[[19489]],[[19490]],[[19491]],[[19492]],[[19493]],[[19494]],[[19495]],[[-3241,19496]],[[-3245,19497]],[[19498]],[[19499]],[[19500]],[[19501]],[[19502]],[[19503]],[[19504]],[[19505]],[[19506]],[[19507]],[[19508]],[[19509]],[[19510]],[[19511]],[[-10223,19512]],[[-10229,19513]],[[19514]],[[19515,19516]],[[19517]],[[19518]],[[-3255,19519]],[[19520]],[[19521]],[[19522]],[[19523]],[[19524]],[[19525]],[[19526]],[[-3259,19527]],[[19528]],[[19529,3260]],[[19530]],[[19531]],[[3262,19532]],[[-3267,19533]],[[-3265,19534]],[[19535]],[[19536]],[[19537]],[[19538,-3205]],[[19539]],[[19540]],[[19541]],[[19542]],[[19543]],[[19544]],[[19545]],[[19546]],[[19547]],[[19548]],[[19549]],[[19550]],[[19551]],[[19552]],[[19553]],[[19554]],[[19555]],[[19556]],[[19557]],[[19558]],[[19559]],[[19560]],[[19561]],[[19562]],[[19563]],[[19564]],[[19565,-3188]],[[19566]],[[-3345,19567]],[[19568]],[[19569,-10338]],[[19570,19571]],[[-3353,19572,-2995,19573]],[[19574]],[[-3361,19575]],[[-3366,19576]],[[19577]],[[19578,19579]],[[19580,19581]],[[19582]],[[19583,-78]],[[-80,19584]],[[19585]],[[19586]],[[19587]],[[19588]],[[19589]],[[19590]],[[19591]],[[19592]],[[19593]],[[19594]],[[19595]],[[19596]],[[19597]],[[19598]],[[19599]],[[-3418,19600]],[[19601]],[[-3427,19602]],[[19603]],[[19604]],[[19605]],[[19606]],[[19607]],[[19608,-3442]],[[19609,-3447]],[[19610]],[[19611,19612,-3477]],[[-3475,19613]],[[19614]],[[19615,-10415]],[[19616]],[[19617]],[[19618]],[[19619]],[[19620]],[[19621]],[[19622]],[[19623,19624]],[[19625]],[[19626]],[[19627]],[[-3486,19628]],[[-3488,19629]],[[19630]],[[19631,-10422]],[[19632]],[[19633,-10429]],[[19634]],[[19635]],[[19636]],[[19637]],[[19638]],[[19639]],[[19640]],[[19641]],[[19642]],[[19643]],[[-10454,-3386,-10456,19644]],[[19645,-3377]],[[-3375,19646]],[[19647,-3393]],[[-3531,19648]],[[19649]],[[19650]],[[19651]],[[-3536,19652]],[[19653]],[[19654]],[[19655,-1892]],[[-3516,19656]],[[19657,-3518]],[[-3553,19658]],[[19659]],[[19660]],[[-3564,19661]],[[-3567,19662,-16590,19663]],[[19664,-3572]],[[-3575,19665]],[[19666,-16605]],[[19667]],[[19668]],[[19669]],[[19670,-3585]],[[19671]],[[19672]],[[19673,-3597]],[[19674]],[[19675,-3590]],[[19676]],[[19677,19678,19679]],[[19680]],[[19681,19682,-1569]],[[-16701,19683,-16698,19684]],[[-1583,-16703,19685]],[[19686,-3612,19687,-16688]],[[19688,19689,-2865]],[[-2933,19690]],[[19691,-3616]],[[-3619]],[[19692]],[[19693,-10696,-4094]],[[-3621,19694,-10494,19695]],[[-16709,19696]],[[-4092,19697]],[[19698]],[[19699]],[[-2858,19700]],[[-16727,19701]],[[-3647,19702]],[[-2856,19703]],[[-3658,19704]],[[19705]],[[19706]],[[19707]],[[19708]],[[19709]],[[19710]],[[-3662,19711]],[[19712]],[[19713]],[[19714]],[[19715]],[[19716]],[[19717]],[[19718]],[[-16818,19719]],[[-3667,19720]],[[19721]],[[19722]],[[19723]],[[19724]],[[19725]],[[19726]],[[-3674,19727]],[[19728]],[[-10510,19729,-3669,19730]],[[-10508,19731]],[[19732]],[[19733]],[[19734]],[[19735]],[[19736]],[[19737]],[[19738]],[[-16835,19739]],[[19740,19741,-10517]],[[19742]],[[19743]],[[19744]],[[19745]],[[19746]],[[19747,-3632]],[[19748]],[[19749]],[[19750]],[[19751]],[[19752]],[[19753]],[[19754]],[[19755]],[[3693]],[[19756]],[[19757]],[[19758]],[[19759]],[[19760]],[[-3695]],[[-2870,19761]],[[19762]],[[19763]],[[19764]],[[-3697,19765]],[[19766]],[[19767]],[[19768]],[[19769]],[[19770,-3702]],[[-3700,19771]],[[19772]],[[19773,-3798]],[[19774]],[[-3710,19775]],[[19776]],[[19777]],[[19778]],[[19779,-3812]],[[19780]],[[19781]],[[-3725,19782]],[[3732]],[[19783]],[[19784]],[[19785]],[[19786]],[[19787]],[[19788]],[[19789]],[[19790]],[[19791]],[[19792]],[[19793,-10525,19794]],[[19795,19796]],[[19797]],[[19798]],[[19799]],[[19800,-3706,-16923]],[[19801]],[[19802]],[[19803,-2875,19804,-3804]],[[19805]],[[19806]],[[19807]],[[-3815,19808]],[[19809]],[[19810]],[[19811]],[[19812]],[[19813]],[[-3821,19814,-3818,19815]],[[19816]],[[19817,-10529]],[[-10527,19818]],[[19819]],[[19820,-3825]],[[19821]],[[19822]],[[19823]],[[19824]],[[-3744,19825]],[[19826]],[[19827,19828]],[[19829]],[[-3746,19830]],[[19831]],[[19832]],[[19833]],[[19834]],[[19835]],[[19836]],[[-3831,-10533,-3890,19837]],[[19838]],[[19839]],[[19840,-3752]],[[-3750,19841]],[[-3748,19842]],[[19843]],[[19844]],[[19845]],[[-3758,19846]],[[19847]],[[19848]],[[19849]],[[19850]],[[19851]],[[19852]],[[19853]],[[19854]],[[19855]],[[19856]],[[19857]],[[19858]],[[19859]],[[19860]],[[19861]],[[19862]],[[19863]],[[19864]],[[19865]],[[19866]],[[19867,-3835]],[[-3837,19868]],[[19869]],[[19870]],[[19871]],[[19872]],[[19873]],[[19874]],[[19875]],[[19876]],[[19877,-3773,19878]],[[19879]],[[19880]],[[19881]],[[19882]],[[19883]],[[19884]],[[19885]],[[19886]],[[19887]],[[19888]],[[19889]],[[19890]],[[19891]],[[19892]],[[19893]],[[19894]],[[19895]],[[19896]],[[-3770,19897]],[[19898]],[[19899]],[[19900]],[[19901]],[[19902]],[[19903]],[[19904]],[[19905]],[[19906]],[[19907]],[[19908]],[[19909]],[[19910]],[[19911]],[[-3839,19912]],[[-3847,19913,19914,-3843,19915]],[[-3849,19916]],[[-3861,19917]],[[-3841,19918]],[[19919]],[[19920,-3863]],[[19921,-10567,-3874]],[[19922]],[[19923,-3868]],[[19924,-10562]],[[19925]],[[-3870,19926]],[[19927,-3872]],[[-3877,19928]],[[19929]],[[19930]],[[19931]],[[19932]],[[19933,-3764]],[[-3766,19934]],[[19935]],[[19936,-3882]],[[19937,19938]],[[19939]],[[19940,-3893]],[[19941,19942,-3895]],[[-3898,19943]],[[-3900,19944]],[[19945,19946,-3128]],[[-3760,19947]],[[-3903,19948]],[[19949,-3775]],[[-3122,19950]],[[19951,19952]],[[19953]],[[19954]],[[19955]],[[19956]],[[19957]],[[19958]],[[19959,-3914]],[[19960]],[[19961]],[[-3912,19962]],[[19963]],[[-3973,19964]],[[19965]],[[19966]],[[-10633,-3675,19967]],[[19968]],[[19969]],[[19970]],[[19971]],[[19972]],[[-3971,19973]],[[-3921,19974]],[[19975]],[[-3924,19976]],[[19977]],[[19978]],[[19979]],[[-3721,19980]],[[19981]],[[19982]],[[19983]],[[19984,-3910]],[[19985]],[[19986]],[[19987]],[[19988]],[[19989]],[[19990]],[[19991]],[[19992,19993]],[[19994]],[[19995]],[[19996]],[[19997]],[[19998]],[[19999]],[[20000]],[[20001,20002]],[[20003,20004]],[[20005]],[[20006]],[[20007]],[[20008]],[[20009]],[[20010]],[[20011]],[[-3927,20012]],[[20013]],[[20014]],[[20015]],[[20016]],[[20017]],[[20018]],[[20019]],[[20020]],[[20021]],[[20022]],[[20023]],[[20024]],[[-3929,20025]],[[20026]],[[20027]],[[20028]],[[20029]],[[20030]],[[20031]],[[20032]],[[20033]],[[20034]],[[20035]],[[20036]],[[20037]],[[-3932,20038]],[[20039,-10588]],[[20040]],[[-3817,20041]],[[20042]],[[20043]],[[20044]],[[20045]],[[20046]],[[20047]],[[20048]],[[20049]],[[20050]],[[20051]],[[20052]],[[-10596,20053,-10594,20054]],[[20055]],[[20056]],[[20057]],[[20058]],[[-3937,20059]],[[20060]],[[20061]],[[20062]],[[20063]],[[20064]],[[20065]],[[20066]],[[20067]],[[20068]],[[20069]],[[20070]],[[20071]],[[20072]],[[20073]],[[20074]],[[-3943,20075]],[[20076,-10609]],[[-3941,20077]],[[20078]],[[20079]],[[20080]],[[20081]],[[20082]],[[20083]],[[20084]],[[20085]],[[20086]],[[20087]],[[20088]],[[-3888,-10613,20089]],[[-10614,-3886,20090]],[[20091]],[[20092]],[[20093]],[[-10622,20094]],[[20095,-10620]],[[-10618,20096]],[[-3951,20097,-10616,20098]],[[20099,-10624]],[[-10626,20100]],[[20101]],[[20102]],[[20103,-3955]],[[-3961,20104]],[[20105]],[[20106]],[[20107]],[[3968]],[[20108]],[[-3738,-10635,20109]],[[20110]],[[20111]],[[20112]],[[20113]],[[20114,20115]],[[20116]],[[20117]],[[20118]],[[20119]],[[20120]],[[20121,20122]],[[20123]],[[20124]],[[20125]],[[20126]],[[-3740,20127]],[[20128]],[[20129,-3793]],[[20130]],[[20131]],[[20132]],[[-3976,20133]],[[20134]],[[20135]],[[20136]],[[20137]],[[20138]],[[20139]],[[-3779,20140]],[[20141]],[[20142]],[[20143]],[[20144]],[[20145]],[[20146]],[[20147]],[[20148]],[[20149]],[[20150,-3988]],[[20151]],[[20152]],[[20153]],[[20154]],[[20155,20156]],[[20157]],[[20158]],[[20159]],[[20160]],[[20161]],[[20162]],[[-3990,20163]],[[20164]],[[20165,-4016]],[[20166,20167]],[[20168]],[[20169]],[[20170]],[[20171]],[[20172]],[[20173]],[[20174]],[[20175]],[[20176]],[[20177,-3994]],[[20178]],[[20179]],[[20180]],[[20181]],[[20182]],[[20183,-4000]],[[20184]],[[20185]],[[-4005,20186]],[[20187]],[[20188]],[[20189]],[[20190]],[[20191]],[[20192]],[[-4007,20193]],[[20194]],[[20195]],[[20196]],[[20197]],[[20198]],[[20199]],[[20200]],[[20201]],[[20202]],[[20203]],[[20204]],[[4025]],[[20205]],[[20206,-10679,20207,-4029]],[[20208]],[[-10685,20209]],[[20210]],[[-10682,20211]],[[20212,-4031]],[[-3992,20213]],[[-4035,20214]],[[20215,-3791]],[[-4042,20216]],[[-4050,20217]],[[-4048,20218,-4058,20219]],[[20220]],[[20221]],[[-4066,20222]],[[20223]],[[20224]],[[20225]],[[20226,20227]],[[20228]],[[20229]],[[20230]],[[20231]],[[20232]],[[20233]],[[20234]],[[20235]],[[20236]],[[20237]],[[20238]],[[20239]],[[20240]],[[20241]],[[20242]],[[20243]],[[20244]],[[20245]],[[-4078,20246]],[[20247]],[[-4081,20248]],[[-4084,20249]],[[20250]],[[20251]],[[20252]],[[20253,20254]],[[20255]],[[20256]],[[20257]],[[20258]],[[20259]],[[20260,-2882]],[[-4128,20261]],[[20262,-4106]],[[20263]],[[-4140,20264]],[[20265]],[[20266]],[[20267]],[[-4146,20268]],[[20269]],[[-4090,20270]],[[-4101,20271]],[[20272,-4151,20273]],[[-4156,20274]],[[20275,-4137]],[[-4133,20276]],[[-2890,20277]],[[20278]],[[-4174,20279]],[[-4181,20280]],[[-4110,20281]],[[-2905,20282]],[[-17062,20283,-4211,20284]],[[-4218,20285]],[[-4216,20286]],[[20287,-4126,20288]],[[20289]],[[20290]],[[20291]],[[-4131,20292]],[[20293]],[[20294]],[[20295]],[[20296]],[[-17079,20297]],[[20298]],[[20299]],[[20300]],[[20301]],[[20302]],[[20303]],[[20304]],[[20305]],[[-10723,-17088,20306]],[[20307]],[[-4226,20308]],[[20309,-4228]],[[20310]],[[20311]],[[20312]],[[20313]],[[-4238,20314]],[[-4236,20315]],[[20316,-4240]],[[20317,-4234]],[[20318,20319]],[[20320]],[[20321]],[[20322]],[[20323,20324,-4230]],[[20325]],[[20326]],[[20327,20328]],[[20329]],[[20330]],[[20331]],[[20332]],[[20333]],[[20334]],[[20335]],[[20336]],[[20337]],[[20338]],[[20339]],[[-4337,-11114,20340]],[[20341]],[[20342]],[[20343]],[[-10749,20344]],[[-4252,20345]],[[20346,-4254]],[[-10750,20347,-4255,20348]],[[-4257,20349]],[[-4195,20350]],[[-4197,20351]],[[-4263,20352]],[[-4261,20353]],[[-4259,20354]],[[20355,20356]],[[20357,-4748,20358]],[[20359]],[[-4295,20360,20361]],[[-10758,20362]],[[-4301,20363]],[[20364,-4303]],[[-11018,-4312,20365,-4305,20366,-11021,20367]],[[-4307,20368]],[[4314]],[[-4314,20369]],[[20370,20371]],[[20372]],[[20373,20374]],[[-4320,20375]],[[20376,-4322,20377,-4324]],[[20378]],[[20379]],[[-4332,20380]],[[-4334,20381]],[[-10762,20382]],[[20383]],[[20384,20385,-4292]],[[20386,20387,20388,-10731]],[[20389]],[[-17065,20390]],[[20391]],[[20392]],[[-4343,20393,-17103]],[[-10769,20394]],[[20395,20396]],[[20397]],[[20398]],[[20399]],[[20400]],[[20401]],[[-4013,20402]],[[20403]],[[20404]],[[20405]],[[20406]],[[20407]],[[20408]],[[20409]],[[20410]],[[20411]],[[20412,-4009]],[[20413]],[[20414]],[[20415]],[[20416]],[[20417]],[[20418]],[[20419]],[[20420]],[[20421]],[[20422]],[[20423]],[[20424]],[[20425]],[[20426]],[[-10787,20427]],[[20428]],[[20429]],[[-4380,20430]],[[20431,-4060,20432,20433,20434]],[[20435]],[[20436]],[[20437]],[[-4397,20438]],[[-17116,20439]],[[-4424,20440,-10817,20441]],[[20442,-17120,20443,20444]],[[20445,-4425,20446,20447]],[[-10663,20448,-10666,20449]],[[20450,-10823,-4431,20451,-4389]],[[20452,-4436]],[[20453]],[[20454,-4440,20455,20456,-10668]],[[20457,-4442]],[[-4447,20458,20459,-4444,20460]],[[20461,-17105,-10826]],[[20462]],[[20463]],[[20464]],[[20465]],[[20466]],[[20467]],[[20468]],[[20469]],[[20470]],[[20471]],[[20472]],[[20473]],[[20474]],[[20475]],[[20476]],[[20477]],[[20478]],[[20479]],[[20480]],[[20481]],[[20482]],[[20483]],[[20484]],[[20485]],[[20486]],[[20487]],[[20488]],[[20489]],[[20490]],[[20491]],[[20492]],[[20493]],[[20494]],[[20495]],[[20496]],[[20497]],[[20498]],[[20499]],[[20500]],[[20501]],[[20502]],[[20503]],[[20504]],[[20505,-4450]],[[20506,-4455]],[[-4453,20507]],[[20508]],[[20509]],[[20510]],[[20511]],[[20512]],[[20513]],[[20514]],[[20515]],[[20516]],[[20517]],[[20518]],[[-10878,20519]],[[20520]],[[20521]],[[20522]],[[20523]],[[20524]],[[20525]],[[20526]],[[20527]],[[20528]],[[20529]],[[20530]],[[20531,-10883]],[[20532,-10886]],[[20533]],[[20534]],[[20535,-4412]],[[20536]],[[-4355,20537]],[[20538]],[[20539,20540]],[[20541,-4470]],[[20542]],[[20543]],[[20544]],[[20545]],[[20546]],[[-4474,20547]],[[20548]],[[20549]],[[20550]],[[20551]],[[20552]],[[20553]],[[20554]],[[-4520,20555]],[[20556]],[[20557]],[[20558]],[[20559]],[[20560]],[[20561]],[[20562]],[[20563]],[[20564]],[[20565]],[[20566]],[[20567]],[[20568]],[[20569]],[[20570]],[[20571]],[[20572]],[[-4524,20573]],[[20574]],[[20575]],[[20576]],[[20577]],[[-4528,20578]],[[20579]],[[20580]],[[20581]],[[20582]],[[20583]],[[20584,-4490]],[[20585]],[[20586,-4451]],[[20587]],[[20588]],[[20589]],[[20590,-4507,20591,20592]],[[20593]],[[20594]],[[20595]],[[20596,-4504]],[[20597]],[[-10964,-4466,20598]],[[20599]],[[20600]],[[20601]],[[20602]],[[-10969,20603,-10967,20604]],[[20605]],[[-4874,20606]],[[20607,-4518,20608,-4516]],[[-4511,20609]],[[20610,20611]],[[-4514,20612]],[[4514]],[[-10971,20613]],[[-10973,20614]],[[20615,20616]],[[20617,20618]],[[20619]],[[20620]],[[-17151,20621]],[[20622]],[[20623,20624,-4555]],[[-17180,20625]],[[-4561,20626]],[[-4567,20627]],[[20628,-4569]],[[20629]],[[20630]],[[20631]],[[-4585,20632]],[[20633]],[[20634,-4577]],[[20635]],[[-4599,20636]],[[20637]],[[-4621,20638]],[[-4579,20639]],[[20640,-4573]],[[20641]],[[20642,-4654]],[[20643]],[[20644]],[[20645]],[[20646]],[[-4565,20647]],[[-4663,20648]],[[20649]],[[20650]],[[-10986,20651]],[[20652,-4671]],[[20653,-4669]],[[-2902,20654,20655]],[[20656,-2894]],[[-4168,20657,20658,-4171,-17060]],[[20659]],[[20660]],[[20661]],[[-4810,20662,-4685,20663]],[[20664]],[[20665]],[[-4688,20666]],[[-4694,20667]],[[20668]],[[20669]],[[20670]],[[20671]],[[20672]],[[20673,-4696]],[[-4710,20674]],[[20675]],[[20676]],[[20677]],[[20678]],[[20679]],[[20680]],[[20681]],[[-4712,20682]],[[-4714]],[[20683]],[[20684]],[[20685]],[[20686]],[[20687]],[[20688]],[[20689]],[[-4717,20690]],[[20691,20692,-4715]],[[20693,20694]],[[20695]],[[20696,20697]],[[20698]],[[-4720,20699]],[[-11010,20700,-4200]],[[20701,-4725,20702,20703]],[[20704]],[[20705]],[[20706]],[[20707]],[[20708]],[[20709]],[[20710]],[[-4852,20711]],[[20712]],[[-11028,-4275,-11032,-4743,20713,-11026,20714]],[[-4759,20715]],[[20716]],[[20717]],[[-11039,20718,-4781]],[[-11087,20719]],[[-4805,20720]],[[20721,20722]],[[20723]],[[-11061,20724]],[[20725]],[[20726,-4632]],[[20727,20728,-4635]],[[-4794,20729,20730,-17275]],[[-4801,20731]],[[20732,-4797]],[[-4812,20733]],[[20734]],[[-11069,-4690,20735]],[[20736,-4286]],[[-4799,20737]],[[20738]],[[20739]],[[-4630,20740]],[[20741]],[[20742,-4704]],[[-4706,20743]],[[20744,-4825]],[[-4823,20745]],[[20746]],[[20747,-4850]],[[-4848,20748]],[[-4857,20749]],[[20750]],[[20751]],[[20752]],[[20753]],[[20754]],[[-11093,20755]],[[20756]],[[20757]],[[20758]],[[20759]],[[-4899,20760]],[[20761]],[[20762]],[[20763,-11132]],[[20764]],[[20765]],[[20766]],[[20767,20768]],[[20769,20770]],[[20771,20772]],[[20773]],[[-4862,-11113,20774]],[[20775]],[[-4339,20776,-11121,20777]],[[20778]],[[-11096,20779]],[[20780]],[[20781]],[[20782]],[[20783]],[[-4872,20784]],[[20785]],[[20786]],[[20787,20788,-4879]],[[20789,20790]],[[20791,-11129,20792,-11110]],[[20793]],[[4887]],[[20794]],[[20795]],[[20796,-4269,-11079,20797]],[[20798]],[[-4889,20799]],[[20800]],[[20801]],[[-4859,-11091,20802,-4828,20803]],[[20804,-4892]],[[20805]],[[20806]],[[20807]],[[20808]],[[20809]],[[20810]],[[20811,20812]],[[-4895,20813]],[[20814]],[[20815]],[[-4903,20816]],[[20817]],[[20818]],[[20819]],[[-4907,20820,-11142,20821]],[[-10753,20822]],[[20823]],[[20824]],[[20825]],[[20826,20827]],[[20828]],[[20829]],[[20830]],[[20831]],[[20832]],[[20833]],[[20834]],[[20835]],[[20836]],[[20837]],[[20838]],[[20839]],[[-4846,20840]],[[20841,-11149,-4843]],[[20842]],[[20843]],[[20844]],[[20845]],[[20846]],[[20847]],[[20848]],[[20849,-4887]],[[20850,20851]],[[20852,-4910,-11159]],[[20853,-11151]],[[20854]],[[20855]],[[20856]],[[-4923,20857]],[[20858,-11160,-4928]],[[4930,20859,-4935,20860,-17298,-4925]],[[-4933,20861]],[[-4737,20862]],[[20863,-4739]],[[-4741,20864]],[[20865,-4942,-17302]],[[20866]],[[20867]],[[20868]],[[20869]],[[-11146,20870]],[[20871]],[[20872]],[[20873]],[[20874]],[[20875]],[[20876]],[[20877]],[[20878]],[[20879]],[[20880]],[[-11196,20881]],[[20882]],[[-11199,20883]],[[20884]],[[20885]],[[20886]],[[-11208,-5054,20887]],[[20888]],[[5059,20889]],[[-5041,20890]],[[20891]],[[20892]],[[20893]],[[20894]],[[-4959,20895]],[[20896]],[[20897]],[[20898]],[[20899]],[[20900]],[[20901]],[[20902]],[[-5043,20903]],[[5061,20904]],[[-4963,20905]],[[20906,-4965]],[[-4966,20907]],[[20908,-4968]],[[20909]],[[20910]],[[20911]],[[20912]],[[20913]],[[20914]],[[-5068,20915]],[[-11297,-5064,20916]],[[4969]],[[20917]],[[20918]],[[20919]],[[20920]],[[20921]],[[20922]],[[20923]],[[-4988,20924]],[[20925]],[[-4997,20926]],[[-5127,20927]],[[20928,-5125]],[[20929,-5123]],[[20930,-5121]],[[20931,-11302,20932,-4982]],[[20933,-4992]],[[20934]],[[20935]],[[20936]],[[-11265,20937]],[[-5006,20938]],[[20939]],[[20940]],[[20941]],[[20942]],[[20943]],[[20944]],[[20945,20946]],[[20947,-5026]],[[-5030,20948]],[[-5069,20949]],[[-11287,20950,-5018]],[[20951,-5081]],[[20952,-5089]],[[20953,-5095,20954,-5087]],[[5095]],[[20955]],[[20956,-11295]],[[-5098,20957]],[[20958]],[[20959]],[[20960]],[[-4976,20961]],[[20962]],[[20963,-5104,20964,-11242]],[[-5108,20965]],[[-5112,20966]],[[20967]],[[20968]],[[20969]],[[20970]],[[20971,-11319]],[[20972]],[[20973,20974,-11323]],[[20975]],[[20976]],[[-11329,20977,-5020,20978]],[[20979]],[[20980,-5132,-11336,20981]],[[20982]],[[20983]],[[-11342,20984]],[[20985]],[[-5016,20986,-11288]],[[20987]],[[20988]],[[20989]],[[-5142,20990]],[[20991]],[[20992,-11224,-5146,20993,-11231,-4971]],[[20994,-5152]],[[-17334,20995]],[[20996,-1224,20997]],[[-11349,-5165,20998]],[[20999,-1228,-17341]],[[21000]],[[21001]],[[-1399,21002]],[[-1397,21003]],[[21004,-1395]],[[21005]],[[-5172,21006]],[[21007]],[[21008,-11354]],[[21009]],[[21010,-5175]],[[21011,-5177]],[[-1391,21012]],[[-1393,21013]],[[21014]],[[21015]],[[-5180,21016]],[[21017]],[[21018]],[[21019]],[[21020,-11359]],[[21021,-4583]],[[21022,-4623]],[[21023]],[[21024]],[[21025]],[[-11364,-5182,21026]],[[21027]],[[21028,-1237]],[[21029,-1218]],[[21030]],[[21031]],[[-5200,21032]],[[21033]],[[21034]],[[21035]],[[-1373,21036]],[[21037,21038,-1375]],[[-1385,21039]],[[21040,-11370,-1428]],[[21041]],[[21042]],[[21043]],[[21044]],[[-5203,21045,-1387,21046]],[[-1383,21047]],[[-17376,-1431,21048]],[[21049]],[[21050,-5206]],[[21051]],[[21052]],[[21053]],[[-11388,21054]],[[21055,-1415,21056]],[[21057]],[[21058]],[[21059,-11394,-1417,21060]],[[21061]],[[21062]],[[21063]],[[21064]],[[21065]],[[21066]],[[21067]],[[21068]],[[21069]],[[21070]],[[21071]],[[21072]],[[21073]],[[21074]],[[21075]],[[21076]],[[21077,-1438]],[[21078]],[[21079]],[[21080]],[[21081]],[[21082]],[[-5210,21083]],[[21084]],[[21085]],[[21086]],[[21087,21088]],[[21089,21090,-11392,-1420]],[[21091,-11397,-5211]],[[21092]],[[21093,-5216]],[[21094]],[[21095,-5222]],[[21096,21097,-5276]],[[21098]],[[21099]],[[21100]],[[21101]],[[21102]],[[21103]],[[-5255,21104]],[[-11436,21105]],[[21106]],[[-5258,21107]],[[21108,21109]],[[21110,-1240,21111]],[[21112,-1242]],[[21113]],[[21114]],[[21115]],[[21116]],[[-5262,21117,-11441]],[[21118]],[[21119]],[[21120]],[[21121]],[[21122]],[[21123]],[[21124]],[[21125]],[[21126]],[[21127,-11443]],[[21128]],[[21129],[21130]],[[21131]],[[-11451,21132,-5229,21133,-11450,21134]],[[-11454,21135]],[[21136]],[[21137]],[[21138,-5277]],[[21139]],[[21140]],[[21141]],[[21142]],[[21143]],[[21144]],[[21145]],[[21146]],[[21147]],[[21148]],[[-11466,21149]],[[21150]],[[21151,-11481]],[[21152,21153,-11483]],[[21154,21155]],[[21156]],[[-11493,21157]],[[21158]],[[21159]],[[21160,-11503]],[[21161]],[[-5396,21162,-11518,21163]],[[-5398,21164]],[[-11541,21165]],[[21166]],[[21167]],[[21168]],[[21169]],[[21170]],[[21171]],[[21172]],[[21173]],[[21174,-5427]],[[21175]],[[21176]],[[-5429,21177]],[[-5431,21178,21179]],[[21180,-5010]],[[-11610,21181]],[[21182,-11612]],[[-11615,21183]],[[-11622,21184]],[[21185]],[[21186]],[[21187]],[[21188,-5456,-11627]],[[11628,-11629,21189]],[[11630,-11631,21190]],[[-11634,21191]],[[21192]],[[21193]],[[-17413,-5449,21194]],[[21195,-5478,21196,-11638]],[[21197]],[[-5484,21198]],[[21199]],[[21200]],[[21201]],[[21202]],[[21203]],[[-5480,21204]],[[21205,-5468]],[[-5483,-11642,21206]],[[21207,-5472]],[[21208]],[[21209]],[[21210]],[[21211,-17419]],[[-11646,21212]],[[21213]],[[21214]],[[21215]],[[21216]],[[21217]],[[-5505,21218]],[[21219]],[[21220]],[[21221]],[[21222]],[[21223,-5491]],[[-11732,21224]],[[21225,-11769]],[[21226]],[[21227]],[[21228]],[[21229]],[[21230]],[[21231]],[[21232]],[[-17441,21233,-5550,21234]],[[21235]],[[21236,-11780]],[[21237,-1363,21238]],[[21239]],[[21240,-1336]],[[-1332,21241]],[[-1334,21242]],[[21243]],[[21244]],[[21245,-5555]],[[21246,-5590]],[[-5592,21247]],[[21248]],[[21249,-5558,21250]],[[21251,-17459]],[[21252]],[[-5611,-11788,21253]],[[21254,-5618]],[[-5616,-11789,21255]],[[-11790,-5614,21256]],[[-5621,-11793,21257]],[[-5747,21258]],[[-5745,21259]],[[-17463,-5608,21260]],[[21261]],[[-5734,21262,21263]],[[21264]],[[21265]],[[21266,-5736]],[[21267,-5737]],[[-5741,21268]],[[-1328,21269]],[[21270]],[[21271]],[[-5754]],[[21272,-11802,-5820]],[[-11805,21273,21274,-1323]],[[21275,-1326]],[[21276,-5596]],[[21277]],[[21278,-5921]],[[21279]],[[21280]],[[21281]],[[21282,5918]],[[-11814,21283]],[[21284,-5816]],[[21285,-5814]],[[21286]],[[21287]],[[-11825,-5637,21288,21289,-5769]],[[21290,-5776]],[[21291]],[[21292]],[[21293]],[[-11869,21294]],[[-11867,21295]],[[-11815,-5903,-11817,-5811,-11872,21296]],[[-5808,21297]],[[-5804,21298]],[[-5802,21299]],[[-11875,-5797,21300]],[[-5793,21301]],[[-5905,21302]],[[21303]],[[21304]],[[-5907,21305]],[[21306]],[[-5908,21307]],[[-5789,21308]],[[21309,-5787]],[[21310]],[[21311]],[[21312]],[[-17488,21313]],[[-5914,-17490,21314]],[[21315,-5917]],[[-17494,-5925,21316]],[[21317]],[[21318,21319]],[[21320]],[[-5825,21321]],[[21322]],[[21323,-5829]],[[21324]],[[-5930,21325]],[[21326,-5928]],[[-5932,21327]],[[21328]],[[21329]],[[21330]],[[21331]],[[21332,-5833,21333]],[[21334]],[[21335,-5943]],[[-12050,21336]],[[-5881,21337,21338,-12078]],[[21339,-12081]],[[21340,21341]],[[-12083,21342]],[[21343]],[[21344]],[[21345,-5568]],[[21346]],[[21347]],[[21348]],[[21349,-12251,-6138]],[[-12253,21350,-6140]],[[21351,-6142]],[[21352,-5575,-12260]],[[21353]],[[21354,-6216]],[[21355,-6218]],[[21356]],[[21357]],[[21358]],[[21359]],[[21360]],[[21361]],[[21362]],[[21363]],[[21364]],[[21365,21366,-5726]],[[21367]],[[21368,-6222]],[[21369]],[[21370]],[[21371]],[[21372]],[[21373]],[[21374]],[[21375]],[[21376]],[[21377]],[[21378]],[[21379]],[[21380,-5566]],[[21381]],[[21382]],[[21383]],[[21384]],[[21385,-12278]],[[-6223,21386,-12276]],[[21387]],[[21388]],[[21389]],[[21390,21391]],[[-12284,-5624,21392]],[[-6226,21393]],[[-5629,21394,21395]],[[21396]],[[21397]],[[-5633,21398]],[[21399]],[[-11795,21400]],[[21401]],[[21402]],[[21403]],[[21404]],[[21405]],[[21406]],[[21407]],[[21408]],[[-6239,21409]],[[-6241,21410]],[[-1346,21411]],[[-1342,21412]],[[21413]],[[-12310,21414,-6398]],[[-6350,21415]],[[21416,-6352]],[[21417]],[[-12311,21418]],[[-6354,21419]],[[21420]],[[21421]],[[21422]],[[-6358,-17503,21423]],[[21424]],[[-12320,21425]],[[21426]],[[21427]],[[21428]],[[21429]],[[21430]],[[-12343,21431]],[[-12348,21432]],[[21433]],[[-12351,21434]],[[21435]],[[21436]],[[21437]],[[21438]],[[-5586,21439]],[[21440]],[[21441]],[[21442]],[[21443]],[[21444]],[[-6401,21445]],[[21446,-6399]],[[21447,-6412]],[[21448]],[[21449]],[[21450]],[[21451]],[[21452]],[[21453]],[[21454]],[[21455]],[[21456]],[[21457]],[[21458]],[[21459]],[[21460]],[[21461]],[[21462]],[[21463]],[[21464]],[[21465]],[[21466]],[[21467]],[[21468]],[[-5539,21469]],[[21470,21471]],[[-6441,21472,21473,21474,-6436,21475],[-6433]],[[21476]],[[-12369,21477]],[[21478]],[[21479]],[[21480]],[[21481]],[[21482]],[[21483]],[[-6447,21484]],[[-12376,21485]],[[21486]],[[21487]],[[21488]],[[21489]],[[21490]],[[21491]],[[21492]],[[21493]],[[21494]],[[21495]],[[21496]],[[21497]],[[21498]],[[21499]],[[21500]],[[21501]],[[21502]],[[21503]],[[-17512,21504,-6450]],[[21505]],[[-17513,-6452,21506,-17515,21507]],[[21508]],[[21509]],[[21510]],[[21511]],[[21512,-12386,-6428,-12383]],[[-6328,21513]],[[21514]],[[21515,21516]],[[21517]],[[21518]],[[21519]],[[21520]],[[21521]],[[21522]],[[21523,-6334]],[[21524]],[[21525]],[[-6338,21526,-12391]],[[21527]],[[21528]],[[21529]],[[-6431,21530]],[[21531,21532]],[[21533]],[[21534]],[[21535]],[[21536]],[[21537]],[[21538]],[[21539]],[[21540,21541]],[[21542]],[[21543]],[[-6419,21544]],[[21545]],[[21546]],[[21547]],[[21548]],[[21549]],[[21550]],[[21551]],[[21552,-1453]],[[21553]],[[21554]],[[21555]],[[21556]],[[21557]],[[21558]],[[21559,-6560]],[[-6558,21560]],[[-6461,21561]],[[21562,-6465]],[[21563,-6566]],[[21564]],[[21565]],[[-6497,21566]],[[21567]],[[-6503,21568]],[[21569]],[[21570,-6322]],[[-17573,21571]],[[-6508,21572]],[[-6505,21573,-12402]],[[-6511,-12408,21574]],[[21575]],[[21576,-12410,-6493]],[[-6514,21577,-6491,21578]],[[21579,-6495,-12409]],[[21580]],[[21581]],[[21582]],[[21583]],[[21584]],[[21585]],[[21586]],[[-6518,21587]],[[-6553,21588]],[[21589]],[[-12417,21590]],[[21591]],[[-17593,21592]],[[-6522,21593,-6526,-17597,21594,-6523,21595]],[[-6318,21596]],[[-17567,21597]],[[21598]],[[-6529,21599,-17604,21600]],[[21601,-6568]],[[21602,21603]],[[21604]],[[21605,21606]],[[-12423,21607]],[[21608]],[[-12428,21609]],[[21610]],[[-6589,21611]],[[21612]],[[21613]],[[21614]],[[21615]],[[21616,-17651]],[[21617]],[[21618]],[[-6551,21619]],[[21620,-6608]],[[21621,-6612,21622,-6616]],[[21623]],[[-6579,21624,21625]],[[-6630,21626,-6546,21627]],[[-6622,21628]],[[-6618,21629,21630,-6645,-17662]],[[-6544,21631],[-6647]],[[21632]],[[21633]],[[21634]],[[21635]],[[21636]],[[-998,21637]],[[21638]],[[21639,-17684,21640,-17681]],[[-6675,21641,-17686,21642,21643,-6672,21644]],[[21645,-17688,-6652]],[[-6722,21646]],[[21647]],[[21648]],[[21649]],[[21650]],[[21651]],[[21652]],[[21653]],[[21654]],[[21655,-6677]],[[21656]],[[21657]],[[21658]],[[21659]],[[21660]],[[-6681,21661]],[[21662]],[[21663]],[[-12465,21664]],[[21665]],[[21666]],[[21667]],[[21668]],[[21669]],[[-6685,-17716,21670]],[[-17720,21671],[12470,-12471,21672],[12471,-12472,21673],[17717,-17718,21674],[-6689,21675]],[[21676]],[[21677]],[[21678,-17725]],[[21679]],[[-6700,21680]],[[21681]],[[21682]],[[21683]],[[-12481,21684]],[[-12479,21685]],[[-12477,-17730,21686]],[[21687]],[[21688]],[[21689,-988]],[[21690,-986]],[[21691]],[[-6713,21692,-17751,21693]],[[-6717,21694]],[[-6725,21695,21696]],[[21697,21698,-6727]],[[21699]],[[21700]],[[21701]],[[21702]],[[-6746,21703]],[[21704]],[[21705]],[[-6751,21706]],[[21707,-12491]],[[21708]],[[21709]],[[21710,21711]],[[21712,-12503,21713]],[[-12499,-6769,21714]],[[-12501,21715]],[[-6777]],[[-6778,21716,21717]],[[-6743,21718]],[[-17767,21719,-6794,21720]],[[-8763,21721,21722,-17765,21723,-6795,21724]],[[21725,-6807]],[[21726,-6827,21727,-6822]],[[-12533,21728]],[[21729,21730]],[[-12537,21731]],[[21732]],[[21733]],[[21734]],[[-12549,21735]],[[21736]],[[21737,-12559]],[[21738]],[[-12583,21739]],[[21740]],[[21741]],[[21742]],[[-6975,21743]],[[-7054,21744]],[[-12612,-7030,21745,-12654,21746]],[[21747,-6920]],[[-6966,21748]],[[21749,-12752,21750,-12755]],[[21751,-12764,21752,-12762,21753,-12767]],[[-12771,21754]],[[-12773,21755]],[[-12813,21756,21757]],[[21758]],[[21759,-12836]],[[21760]],[[21761,-7104]],[[-12838,21762]],[[21763]],[[21764]],[[21765,21766]],[[-7110,21767]],[[-12845,21768]],[[21769,-7114]],[[21770,-12847,21771,-12849]],[[-12852,-7117,21772]],[[-12853,21773,-12855,21774]],[[21775,-12860,21776,-12794]],[[21777,-12858]],[[-7123,21778]],[[21779]],[[7123,21780]],[[-7129,21781]],[[21782]],[[21783]],[[21784]],[[21785]],[[21786]],[[21787]],[[21788]],[[21789]],[[21790]],[[21791]],[[21792]],[[21793]],[[21794]],[[-736,21795]],[[21796]],[[21797]],[[-7229,21798]],[[-7215,21799]],[[21800,-7235]],[[-7238,21801]],[[21802]],[[21803]],[[21804]],[[21805]],[[21806]],[[21807,21808]],[[21809]],[[21810]],[[21811]],[[-7259,21812]],[[21813]],[[21814]],[[21815]],[[21816]],[[-7255,21817]],[[21818]],[[21819]],[[-7260,21820]],[[-7262,21821]],[[-12915,-7210,21822]],[[-12918,21823,-17844]],[[21824]],[[21825]],[[-7266,21826]],[[21827]],[[21828]],[[21829]],[[-7290,21830]],[[21831]],[[21832]],[[-12921,21833,-17872,21834]],[[-7268,21835,-7270,21836]],[[21837]],[[-740,21838]],[[21839,-17859,-7275]],[[-12925,21840]],[[-12927,21841]],[[21842]],[[-7282,21843,-7292,21844,-12933]],[[-7285,21845,-13054]],[[-7293,21846]],[[-7296,21847]],[[-617,21848]],[[21849]],[[21850]],[[-7307,21851]],[[21852]],[[-12948,21853]],[[21854]],[[21855]],[[21856,-7313,21857,-633]],[[21858]],[[21859]],[[21860]],[[21861]],[[21862]],[[-628,21863,21864]],[[21865]],[[21866]],[[-7320]],[[21867]],[[21868]],[[21869]],[[21870]],[[21871]],[[21872]],[[21873]],[[21874,-626,-7323]],[[21875]],[[-7326,21876]],[[21877,-7324]],[[21878]],[[21879]],[[21880]],[[21881]],[[21882]],[[21883]],[[21884]],[[21885]],[[21886]],[[21887]],[[21888,21889]],[[21890,21891]],[[21892]],[[21893]],[[21894]],[[21895]],[[-7330,21896]],[[21897,-12982]],[[-12987,21898,-7377,21899]],[[-7357,-12997,21900]],[[21901,-13001]],[[-13003,21902,-7362,21903]],[[21904]],[[-7369,21905,21906]],[[-7371,21907]],[[-7374,21908,21909,-7381,21910]],[[21911]],[[21912]],[[21913,-13013]],[[-13015,21914]],[[-13017,21915]],[[21916]],[[21917,-7382]],[[21918]],[[-13019,21919]],[[21920]],[[21921]],[[21922,-13030]],[[21923]],[[21924]],[[21925]],[[-7388,21926,-13039,21927]],[[21928]],[[21929,-13041]],[[21930]],[[21931]],[[21932]],[[21933]],[[21934]],[[21935]],[[21936]],[[21937]],[[21938]],[[21939]],[[-13046,21940]],[[21941]],[[21942]],[[21943]],[[21944]],[[21945]],[[21946,21947]],[[21948,21949]],[[21950]],[[21951]],[[21952]],[[-13056,21953]],[[21954]],[[-7288,21955]],[[-13058,21956]],[[21957]],[[21958]],[[21959]],[[21960]],[[21961]],[[21962]],[[21963]],[[-13061,21964]],[[21965]],[[21966,21967,21968,-7403]],[[21969]],[[21970]],[[21971]],[[21972]],[[21973]],[[21974]],[[21975]],[[21976,-7423,-13092,-7409,21977]],[[-7426,21978,21979]],[[21980,-7428]],[[-13089,21981]],[[21982,-17886]],[[21983,-17889,21984,-17890]],[[21985]],[[21986]],[[21987,21988,-7412,21989]],[[21990]],[[21991]],[[21992]],[[21993,21994,-13127]],[[-13129,21995]],[[-13147,21996,-13142,21997]],[[21998,21999]],[[-17893,22000]],[[22001]],[[-13155,22002]],[[-13157,22003]],[[22004]],[[22005]],[[22006]],[[22007]],[[-13160,22008]],[[22009,-7466]],[[22010,-13164]],[[22011]],[[-13166,22012,-7476]],[[22013,22014]],[[-13174,22015]],[[22016]],[[22017]],[[22018]],[[22019]],[[22020]],[[-13071,22021]],[[22022]],[[-7499,22023]],[[22024]],[[22025]],[[22026]],[[-13197,22027]],[[22028]],[[-6914,22029]],[[22030,22031]],[[22032,22033,-7622]],[[-6906,22034]],[[-6908,22035]],[[-7625,22036]],[[22037,22038,-7633,22039,-7631]],[[-6904,22040]],[[22041]],[[22042,-708,-13272]],[[22043]],[[22044]],[[22045,-7671]],[[22046]],[[22047]],[[22048]],[[22049]],[[22050,-720]],[[22051]],[[22052]],[[22053]],[[-722,22054]],[[22055]],[[-13278,22056]],[[-17944,22057]],[[22058]],[[22059]],[[22060]],[[22061]],[[22062]],[[22063]],[[22064]],[[22065]],[[-7661,22066]],[[22067]],[[22068]],[[-7646,22069]],[[22070]],[[22071]],[[22072]],[[-7679,22073]],[[-7675,22074,-13284]],[[22075]],[[22076,22077]],[[22078]],[[22079,-7657]],[[22080]],[[-7694,22081,22082]],[[-7690,22083]],[[22084,-7699]],[[-7696,22085]],[[22086,-710,22087]],[[22088,-712,22089]],[[-13289,-7705,22090,22091,-7708]],[[22092,22093]],[[-7732,-17976,22094]],[[22095]],[[22096]],[[-7739,22097]],[[22098]],[[22099]],[[22100,-7741]],[[-7743,22101]],[[22102]],[[22103,-7747]],[[-7767,22104]],[[22105]],[[22106]],[[22107]],[[22108]],[[-18003,-7777,22109]],[[22110]],[[22111]],[[22112]],[[22113]],[[22114,22115]],[[22116,22117]],[[22118]],[[22119]],[[22120]],[[22121]],[[-7758,-13294,22122]],[[-7755,22123]],[[22124]],[[22125,22126]],[[22127]],[[22128,22129]],[[-17984,22130]],[[22131]],[[22132]],[[22133,-7734]],[[-7775,22134,-7736,22135]],[[-7716,-13944,22136,-13936]],[[22137]],[[22138]],[[22139,-1593,22140,-7784]],[[22141,-7812]],[[22142]],[[22143]],[[22144]],[[22145]],[[22146]],[[22147]],[[22148]],[[-7820,22149]],[[22150]],[[22151]],[[-13330,22152]],[[22153]],[[22154]],[[22155,-7851]],[[-7849,22156]],[[-7832,22157]],[[22158,-7833]],[[-7835,22159]],[[22160]],[[22161]],[[22162]],[[22163]],[[22164]],[[22165]],[[22166]],[[22167]],[[22168]],[[22169]],[[22170]],[[-18029,22171]],[[-1621,22172]],[[22173]],[[22174]],[[22175]],[[22176]],[[22177]],[[-7862,22178]],[[22179]],[[22180]],[[22181]],[[22182]],[[22183]],[[22184]],[[22185]],[[-1617,22186]],[[22187,-1613]],[[-1601,22188]],[[-2217,22189]],[[22190]],[[22191]],[[22192]],[[22193]],[[22194]],[[22195]],[[22196]],[[-7857,22197]],[[-7895,-13366,22198]],[[-7899,22199]],[[22200]],[[22201,-7855]],[[-7853,22202]],[[22203]],[[-18033,22204,-7902,22205,22206,-2155]],[[-2274]],[[22207]],[[-1609,22208]],[[-7905,22209]],[[22210]],[[22211]],[[22212,-7909,-13378]],[[-13971,22213]],[[22214,-2163]],[[22215,-7788]],[[22216]],[[22217,-2188]],[[22218]],[[22219]],[[22220]],[[22221]],[[22222]],[[-2178,22223]],[[22224]],[[22225]],[[-7885,22226]],[[22227,-2174]],[[22228]],[[22229]],[[22230,-13421,-2167]],[[22231]],[[-2208,22232]],[[22233]],[[22234]],[[22235]],[[22236]],[[-7911,22237]],[[-7913,22238]],[[-7915,22239]],[[22240,-2212]],[[22241]],[[22242]],[[22243]],[[22244]],[[22245]],[[22246]],[[-13479,22247,-13481,22248]],[[-7945,22249]],[[-7935,-7949,22250]],[[22251]],[[22252,-13496]],[[22253,-7953]],[[22254,-7871]],[[22255]],[[-2267,22256]],[[22257]],[[-13428,22258]],[[22259]],[[22260,-2210]],[[-7926,22261]],[[22262,-13483]],[[22263,-13485]],[[-13529,22264,-2263]],[[-7968,22265]],[[-7972,22266]],[[22267,-13468,-2214]],[[22268]],[[22269]],[[-8030,22270]],[[-8032,22271]],[[22272]],[[22273]],[[22274]],[[22275]],[[22276]],[[-8034,22277]],[[22278,22279,-8019]],[[22280,-8075]],[[22281]],[[22282]],[[22283]],[[22284]],[[22285,-8081]],[[22286,-13768]],[[-8053,22287,-13630,22288,-13709,22289]],[[22290]],[[22291]],[[22292]],[[22293]],[[22294]],[[22295]],[[22296]],[[22297]],[[22298]],[[22299]],[[22300]],[[22301]],[[22302]],[[22303]],[[22304]],[[-2256,22305]],[[-2254,22306]],[[22307,-2252]],[[-8069,22308]],[[22309]],[[22310,-8070]],[[-13706,22311]],[[22312]],[[-13701,22313]],[[22314,-8091,22315]],[[8094]],[[8093]],[[22316]],[[22317]],[[22318]],[[22319]],[[22320]],[[22321]],[[22322]],[[-670,22323]],[[22324]],[[22325]],[[22326]],[[22327]],[[22328]],[[22329]],[[22330]],[[-674,22331]],[[22332]],[[22333]],[[22334]],[[22335,22336]],[[22337]],[[22338]],[[8095]],[[22339]],[[-13843,-676,22340]],[[22341]],[[22342,-13766,-8098]],[[22343]],[[-7810,22344]],[[22345,-13624]],[[22346]],[[22347]],[[22348]],[[22349]],[[22350]],[[22351]],[[22352]],[[22353]],[[8103]],[[22354]],[[22355]],[[22356]],[[22357]],[[22358]],[[-13817,22359]],[[22360]],[[22361]],[[22362]],[[22363]],[[22364]],[[22365]],[[22366]],[[22367]],[[22368]],[[22369]],[[-8105]],[[22370]],[[-13827,22371,22372]],[[22373,-8101]],[[22374]],[[22375]],[[22376]],[[-7847,22377]],[[22378]],[[22379]],[[22380]],[[22381]],[[22382]],[[22383]],[[22384]],[[22385]],[[22386]],[[22387]],[[22388]],[[22389,-8123]],[[-8150,-13892,22390,-13907]],[[22391]],[[-8141,-13957,22392]],[[22393,22394]],[[-13915,22395,-13913,22396,-13911,22397,-8164,22398]],[[22399,22400]],[[22401,-13924,22402,-13922,22403,-7837]],[[22404,22405,-7839]],[[22406,-8173]],[[-8175,22407]],[[-683,22408]],[[22409]],[[22410]],[[22411,22412]],[[22413]],[[22414,22415]],[[22416]],[[-8184,22417]],[[22418]],[[22419,-8188]],[[22420]],[[22421]],[[22422]],[[22423]],[[-8190,22424]],[[22425]],[[22426]],[[22427]],[[22428]],[[22429]],[[22430]],[[22431,22432]],[[22433]],[[22434]],[[22435]],[[-13948,22436]],[[22437]],[[22438]],[[22439]],[[22440]],[[22441]],[[22442]],[[22443]],[[22444]],[[22445]],[[22446]],[[22447]],[[22448]],[[22449]],[[22450]],[[22451,22452]],[[22453]],[[-651,22454]],[[22455,-649]],[[22456]],[[22457]],[[22458]],[[22459]],[[22460]],[[22461]],[[22462]],[[22463]],[[22464]],[[22465]],[[22466]],[[22467]],[[22468]],[[22469]],[[22470]],[[22471]],[[22472]],[[22473]],[[22474]],[[22475,-641]],[[22476]],[[22477]],[[22478]],[[-7713,22479]],[[-647,-13961,22480]],[[22481]],[[22482]],[[22483]],[[22484]],[[-13989,-8216,22485]],[[-639,-18059,22486]],[[22487]],[[22488]],[[22489]],[[-8228,22490]],[[22491,22492,-13954,-8139,-13869,-8130]],[[22493,22494]],[[22495,-697]],[[-695,22496]],[[22497,-693]],[[22498,-691]],[[-689,22499]],[[-8238,22500]],[[-8240,22501]],[[-8251,22502]],[[22503]],[[-13873,22504,22505]],[[-14003,-8256,22506]],[[-8261,22507]],[[22508,-14005,-8258]],[[22509]],[[-8272,22510]],[[-8281,22511]],[[22512,-8274]],[[-8297]],[[-8295,22513,-8302,22514]],[[22515,-8304]],[[22516]],[[22517,-8308,22518,-18078]],[[-8310,-14012,22519,-14010]],[[-8306,22520]],[[22521]],[[-8326,22522]],[[22523]],[[-8328]],[[22524]],[[22525,-8329]],[[-8331]],[[-14015]],[[-18092,22526,-8333,22527]],[[-14022,22528,-8342,22529]],[[-8347,22530,-14024,22531]],[[22532,-18106]],[[22533]],[[-8314,22534]],[[22535,-8312]],[[-14026]],[[-8354,22536]],[[-18118,22537]],[[22538,-8370]],[[22539]],[[-8374,22540,-8371,22541,-14027]],[[22542,22543,-14046]],[[-8387,22544]],[[-18124,22545,-8407,22546,-8403],[-8409]],[[22547]],[[-14057,22548,-14054,22549]],[[22550,-14064]],[[22551]],[[22552]],[[-8423]],[[22553]],[[22554,22555,-18133]],[[-18136,22556]],[[22557]],[[-14081,-18140,22558,-18141,-8433]],[[22559]],[[-8439,22560]],[[22561,-14067,-18149]],[[22562]],[[22563]],[[22564]],[[22565]],[[22566]],[[22567]],[[22568]],[[22569]],[[22570]],[[22571,-8405]],[[22572]],[[22573]],[[22574]],[[22575]],[[22576]],[[-14130,22577,-14132,22578]],[[22579]],[[22580]],[[22581]],[[-8488,22582]],[[-8490,22583]],[[22584]],[[22585,22586]],[[22587]],[[-8503,22588]],[[-8493,-14182,22589]],[[22590]],[[22591]],[[22592,-8514]],[[-8523,22593]],[[22594]],[[22595]],[[22596]],[[22597,-8544,22598,-14271]],[[22599]],[[22600]],[[22601]],[[22602,-14316,22603]],[[22604]],[[22605]],[[22606]],[[22607]],[[22608]],[[22609]],[[22610]],[[22611,22612]],[[22613]],[[22614,22615]],[[22616]],[[22617,22618,22619,22620]],[[22621,22622]],[[22623]],[[22624]],[[22625]],[[22626]],[[22627]],[[-14319,22628]],[[-8580,22629]],[[22630]],[[22631,-8576,-14382]],[[22632]],[[-14367,22633,-8633]],[[-14372,-8618,22634]],[[-14374,22635]],[[-8648]],[[-18166,22636]],[[22637,-14377,-14336]],[[22638]],[[22639,-8651]],[[-8655,22640]],[[22641,-18179]],[[22642,-18182]],[[22643,-8592]],[[-8663]],[[22644,22645]],[[22646]],[[22647]],[[22648]],[[22649]],[[22650,-8707,22651,-8687]],[[22652]],[[22653]],[[-8690,22654]],[[-6783,22655]],[[22656,-14411]],[[22657]],[[22658,-8691]],[[22659]],[[-14457,22660]],[[22661]],[[-8703,22662]],[[22663,-8288]],[[-8735,22664]],[[22665,-8737]],[[22666,-8739]],[[22667]],[[-14476,22668]],[[22669]],[[22670]],[[22671]],[[-8750,22672]],[[-18231,22673]],[[22674]],[[22675]],[[22676]],[[22677]],[[22678]],[[22679]],[[22680]],[[22681]],[[22682]],[[22683]],[[22684]],[[22685]],[[22686]],[[22687]],[[22688]],[[22689]],[[22690]],[[-8771,22691,22692]],[[-8769,22693]],[[22694,-6365]],[[22695]],[[22696]],[[22697]],[[22698]],[[22699]],[[22700]],[[22701]],[[22702]],[[22703]],[[22704]],[[22705]],[[22706]],[[-14694,-8813,22707]],[[22708,-14752]],[[22709]],[[22710]],[[22711]],[[22712]],[[-14791,22713,22714]],[[22715]],[[22716]],[[22717,-14806]],[[22718]],[[22719,-14810,-8855]],[[22720,-14814,-8859,-14816]],[[22721]],[[22722]],[[-8863,22723,-14853]],[[22724]],[[22725]],[[22726]],[[22727]],[[22728]],[[22729,22730]],[[22731]],[[22732,-14893]],[[22733]],[[-14892,22734]],[[22735]],[[22736,22737]],[[22738,22739]],[[22740]],[[22741]],[[22742]],[[22743]],[[22744]],[[22745]],[[22746]],[[-15007,22747]],[[-15008,22748]],[[22749]],[[22750]],[[22751]],[[22752]],[[22753]],[[-15046,22754,-8955]],[[22755,-15050,22756,-15049,22757,-8953,22758]],[[-8966,22759]],[[22760]],[[22761]],[[22762]],[[22763,-8986]],[[-8984,22764]],[[-18272,-15095,22765]],[[-18271,-15097]],[[22766,-8993,22767,-8499]],[[-8497,22768]],[[-15074,22769]],[[22770,-8997]],[[22771]],[[22772]],[[22773,-18295,-15113,-18292]],[[-8462,22774]],[[22775,-9017,22776,-18302,22777,-18300]],[[-15083,-9029,22778]],[[-15085,22779]],[[22780]],[[-18312]],[[22781,-9041]],[[-8470,22782]],[[22783,-9056]],[[-9089,22784]]]},{"type":"MultiPolygon","id":"1","properties":{"density":1},"arcs":[[[-147,22785]],[[-15127,22786,-160,-18359,22787]],[[22788,-157,22789,-15125]],[[-48,22790]],[[22791,-15155]],[[-18377,22792,-15178,22793]],[[22794,-15183,22795,-18381,22796,-15181]],[[-219,22797]],[[-220,22798]],[[-225,22799]],[[22800]],[[22801]],[[-40,22802]],[[22803]],[[22804]],[[-263,22805]],[[22806]],[[-266,22807]],[[22808]],[[22809]],[[22810]],[[-242,22811]],[[-15229,22812]],[[-9155,22813,-15232,22814]],[[22815]],[[22816,-18417]],[[22817,-15241]],[[-15256,22818]],[[22819,-412]],[[22820]],[[-9176,22821]],[[22822,22823]],[[-15299,22824,22825,22826]],[[-18435,-482,-9182,22827]],[[22828]],[[-494,22829]],[[22830,-15310]],[[22831,-144,-15337]],[[-56,22832,-1737,22833]],[[-539]],[[-537]],[[-538]],[[-130,22834,-1735,22835]],[[-543,22836]],[[22837]],[[22838,-18461]],[[-561,22839,-9194,22840]],[[22841]],[[22842]],[[-15351,22843,-15353,22844,-587]],[[-18476,22845]],[[-601,-15367,22846]],[[-18478,-610,22847,-18480,-605,22848]],[[22849,-15401]],[[-365,-18492,22850]],[[22851]],[[-791,22852]],[[22853,22854,-15434,22855]],[[22856]],[[-373,22857]],[[-798,22858,-828,22859]],[[22860]],[[22861,-9234,22862,-414]],[[-15473,22863,-15475,22864]],[[-18526,-854,-18525,22865,-406]],[[-872,-18534,22866]],[[-15500,22867,-878]],[[-9240,-882,22868,-734]],[[-15507,22869,-9244]],[[22870]],[[-9248,22871]],[[22872,-996]],[[22873]],[[-15675,22874]],[[-1085,-15688,22875,-18593,22876]],[[22877,-18596]],[[22878,-15759]],[[-15786,22879,-15783,22880]],[[-1187,22881]],[[22882]],[[22883,-1206,22884,-1145]],[[22885,-1149]],[[-1212,22886]],[[-1466,22887]],[[22888]],[[22889,-18643]],[[-18645,-1473,22890,-9297,22891]],[[-1477,22892,-1478,22893]],[[-1534,22894]],[[22895]],[[-1496,22896]],[[-15833,22897,-15831,-1493,22898]],[[-15836,22899]],[[-15841,22900]],[[-18652,22901]],[[-1191,22902]],[[22903]],[[-1214,22904]],[[-15861,22905]],[[22906,-1511]],[[-18660,22907]],[[-1522,22908]],[[22909]],[[22910,-15924,-1531,22911,22912,-1543]],[[-15928,22913]],[[-15939,22914]],[[-1578,22915]],[[-1637,22916]],[[22917,-1654]],[[-1641,22918,-9312,22919,-15953,22920]],[[22921]],[[-459,22922]],[[-15949,22923]],[[-1645,22924]],[[22925]],[[-419,22926]],[[-18681,22927]],[[-1650,-18685,22928]],[[22929,-1656,22930,-1635]],[[22931]],[[22932,-1674,22933,-1681]],[[22934]],[[1682]],[[22935,-421]],[[22936,-447]],[[22937,-1664]],[[-1676,22938]],[[22939,-9323,-1678]],[[-391,22940]],[[22941]],[[-1698,22942,-15969,22943]],[[22944]],[[-504,22945]],[[-15981,22946]],[[22947]],[[-16005,22948]],[[22949]],[[-16027,22950]],[[22951]],[[-128,22952]],[[22953]],[[-16106,22954,-122]],[[-16108,22955]],[[-1744,22956]],[[22957,-1934]],[[22958]],[[22959,-18763]],[[-2396,22960]],[[22961]],[[-1966]],[[-1964]],[[-1967]],[[-1965]],[[-1971,22962,-1972,22963,-1975,22964,-9380,22965,-1969,22966,-1822,22967,-1962,22968]],[[-18778,22969,-1952,22970]],[[22971,-9364,22972,-9362,22973,-1982]],[[-1831,22974]],[[-1984]],[[-1761,22975,-18781]],[[1996,22976]],[[-16122,22977,-18805,22978]],[[-1986,22979]],[[-18825,22980]],[[22981,-1991,22982,-18826]],[[22983]],[[-2002,22984]],[[-2017,22985]],[[22986,-2004]],[[-2026,22987,-9404]],[[-2055,-18867,22988,-2061,-9432,22989]],[[-18877,22990,-18879,-2100,22991,-2087]],[[22992]],[[-2119,-9756,22993,-19114,22994]],[[22995,-2011]],[[2124]],[[22996,-2073]],[[22997,-2015]],[[-9499,22998,-2293]],[[-9504,22999,-2329,23000]],[[-2133,-9513]],[[23001,-2136]],[[-2273]],[[23002,-2271]],[[-1774,23003]],[[23004,-9521]],[[23005]],[[23006,-2371]],[[-1768,23007]],[[-1814,23008]],[[23009,-1759]],[[23010,-2381]],[[23011,-1672]],[[23012]],[[23013,-1766]],[[-2410,23014]],[[-2412,23015]],[[23016,-19003,-2422]],[[-2420,23017]],[[23018,-2382]],[[23019,-2384]],[[-16280,-2432,23020,-2399]],[[-9568,23021,-1859]],[[23022,-1856]],[[23023,-1847]],[[23024,-2438,23025,-9577,-1911]],[[-2405]],[[23026,-2394]],[[23027,-2471]],[[-9585,-2475,-9588,23028,-9583,-16285,23029,-16282,23030]],[[-2478,23031,-18997]],[[23032,-19005,-2417,-19002]],[[-9594,-19012,-2497,23033]],[[-1861,23034,-2505,-9604,23035,-19015,23036]],[[-2512,23037]],[[-2517,23038,-2514,23039]],[[23040,-1670]],[[23041,-2527]],[[-2318,23042]],[[-2320,23043,-2534,23044]],[[23045,-2537,23046,-2142]],[[-2144,23047]],[[23048,-19034]],[[23049,-2552,-19046,23050,-19043]],[[-2564]],[[-443,23051]],[[-433,23052]],[[2580]],[[23053,-1666]],[[-445,23054]],[[-19085,23055]],[[23056]],[[23057,-9675]],[[-9700,23058,-2589]],[[-9707,23059]],[[-19102,23060,-1793,23061]],[[23062,-16328]],[[-2625,23063]],[[23064,-9753,23065,-2629]],[[23066,-2653,23067,-1828]],[[23068,-2636,23069,-9738]],[[-2503]],[[-2502]],[[-9804,-2714,23070,-19134,23071,-9766,-1864]],[[23072,-2663]],[[23073,-2694]],[[-2700,23074]],[[-2690]],[[-9773,-1866,-9765,23075]],[[-9776,-1871]],[[-2704,-9788,23076]],[[23077]],[[-1881,-9822,23078]],[[23079,-9833,-2731]],[[23080,-9834,-2728,23081,-9836]],[[23082]],[[-9866,23083]],[[-1883,23084]],[[-1885,23085,-9886]],[[-9888,23086]],[[-2747,-9892,-2749,-9890,23087]],[[-9914,23088,-2754]],[[23089,-2677]],[[23090]],[[23091,-2780]],[[-2784]],[[23092,-1875]],[[23093,-19186,-1877]],[[-1913]],[[-1878,-19185,23094]],[[-1914]],[[23095]],[[23096,-2813]],[[-2832,23097,-2822,23098]],[[-2940,23099]],[[23100]],[[23101]],[[23102]],[[23103]],[[-2974]],[[-2973]],[[-2971,23104,-9944,23105]],[[-2937,23106]],[[23107,-1909]],[[23108,-2982]],[[-1935]],[[23109,-10001,23110,-96,-10013,-3008,-10012]],[[-3005]],[[23111,-74]],[[-100,23112,-19325]],[[23113,-72]],[[-3042,23114]],[[-3046,23115]],[[23116,-10063]],[[-19377,23117,-19379,23118,-3062]],[[-3089,23119,-3096,23120]],[[23121,-3095,23122,-19436,23123,-19417]],[[-19413,23124,-3073]],[[-3117,23125]],[[-3157,23126]],[[-3119,23127]],[[23128,-3165]],[[23129,-3167]],[[-10133,23130,-3186,23131,-92,23132,-10132,23133]],[[-3194,23134,-19455]],[[-19517,23135]],[[23136]],[[23137,-3258,23138,-10233]],[[-10238,23139]],[[23140,-3270]],[[-149]],[[-3113,23141,-3281,23142]],[[-3286,23143]],[[23144]],[[23145]],[[23146]],[[23147]],[[23148]],[[23149]],[[-3192]],[[23150,-19572]],[[-3003]],[[-3004]],[[23151]],[[23152,-3364,-10349]],[[-19582,23153,-19579,23154]],[[-3491]],[[23155,-1907]],[[-1912]],[[-10353,-3370,23156]],[[-3435,-10395,23157]],[[-3440,23158]],[[-10403,23159]],[[-3446]],[[-10410,23160]],[[-3478,-19613,23161]],[[23162]],[[-19625,23163,-10417,23164]],[[23165]],[[23166,-1905]],[[23167]],[[23168,-3444]],[[-3497,23169,-10355,-3411,23170,-76,23171,-3493,23172,-3405,23173,-3403,23174,-3401,23175]],[[-3283,23176,-3499,23177]],[[23178,-3524]],[[23179,-1897]],[[23180,-1899]],[[-1901,23181]],[[-3508,23182]],[[-10446,-3503,23183]],[[23184,-3512]],[[23185,-3533]],[[23186]],[[23187,-3528]],[[23188,-10468,23189,-10471,-1894]],[[23190,-1888]],[[23191,-3514]],[[23192,-3520]],[[23193,-10481,-3382,-10482]],[[23194,-3407]],[[23195]],[[-3566,23196,-16591,-19663]],[[23197,-16642]],[[23198,-19680,23199]],[[-19683,23200,-16686,23201,-1570]],[[-19690,23202,-2866]],[[-2935,23203]],[[23204]],[[-3622,-19696,-10498,23205]],[[-3626]],[[23206]],[[-15936,23207,-1576,23208,-1574,23209]],[[-2914,23210]],[[-10503,-2930,23211]],[[23212,-2863,23213,-2861,23214,-3636,23215,-3644]],[[23216,-16804]],[[23217]],[[-16816,23218]],[[23219,-10515,-19742]],[[-3687,23220]],[[-3691,23221,-16889]],[[-16937,23222,-2873]],[[23223,-19796,23224,-19795,-10524,-3795]],[[-3828,23225]],[[-19829,23226]],[[-3754,23227]],[[23228,-19879,-3772]],[[-19915,23229,-3844]],[[23230,-3726]],[[23231,-3884]],[[-19939,23232]],[[-3897,23233,-19942]],[[-19947,23234,-3129]],[[-3908,23235]],[[23236,-3906,23237,-3124,23238,-19952]],[[23239]],[[-19993,23240,-3731,-10576,23241]],[[-10579,23242,-3918,23243]],[[23244,-20002]],[[23245,-20004]],[[-3939,23246]],[[-3967,23247]],[[23248,-3963]],[[-20115,23249]],[[-20123,23250]],[[-3978,23251,-10646,-2877,23252]],[[-20157,23253]],[[23254,-20433,-4065]],[[23255,-10657,23256,-20456,-4439]],[[23257]],[[-3728,23258]],[[23259,-3806]],[[-10676,23260,-4018,23261]],[[-4039]],[[-4040,23262]],[[-20167,23263,-4064,23264]],[[-20227,23265]],[[-4072]],[[-4071,-17048,-4142,23266,-17049]],[[23267]],[[23268]],[[-20254,23269]],[[-17025,23270]],[[-2912,-10702,23271]],[[4151]],[[-10706,-4148,-20273,23272,-4154,23273]],[[-2886,23274]],[[23275]],[[-4185,23276]],[[-4179,23277]],[[-4215,23278]],[[-4191,23279,-4221,23280]],[[23281]],[[-4242,23282,-20324]],[[-4244]],[[23283,-20328]],[[-10760,23284,-20319,23285,-4266,23286]],[[-20357,23287,-4290,23288]],[[23289,-20361,-4299,23290,-20289,-4125,-10755]],[[-4309,23291,-11022,-20367]],[[-20371,23292]],[[-20375,23293,-4318,23294]],[[23295]],[[-20359,-4747,23296,-4293,-20386,23297,-20388,23298]],[[-4193,23299]],[[-2880,23300]],[[23301]],[[-4370,23302]],[[-20396,23303,-4348,23304]],[[-4350,23305]],[[23306]],[[-4372,23307]],[[-4367,23308,-4365,23309,-4062,23310,-4375,23311,-10785,23312]],[[-20435,23313]],[[-4390,-20452,-4430,23314,-4428,-10821,23315]],[[23316,-17109,-4401]],[[-4405,23317,-10811]],[[-4418,23318,-10813,23319,-4409,23320]],[[-4420,23321,-4416,23322]],[[4421]],[[23323,-4414]],[[-20445,23324]],[[-20448,23325,-17118,23326]],[[23327]],[[-20460,23328,-4445]],[[-10838,23329]],[[23330,-4360,-10898]],[[-4358,-10899,23331,-10896]],[[-20540,23332]],[[-10929,23333,-10926,23334]],[[-20593,23335]],[[23336,-20612,23337,-17122,-4508]],[[-20616,23338,-20618,23339,-10976,23340]],[[-17173,23341]],[[-4559,23342]],[[-4592,23343,-4589,23344,-4638,23345]],[[-4594,23346]],[[-4587,23347]],[[-4598,23348]],[[23349]],[[23350]],[[23351,-4571]],[[-17184,23352]],[[-4617,23353,-4613,23354]],[[23355]],[[23356]],[[23357]],[[-4601,23358]],[[23359,-4607,23360,-4614]],[[-4641,-17193,23361]],[[-4563,23362]],[[23363,-4657]],[[-4667,23364]],[[-20656,23365,-17246,23366,-2903]],[[23367,-2892]],[[23368,23369,23370,23371]],[[23372,-20658,-4167,23373,-4684,23374,-11067,-17255,-10992]],[[-4165,23375]],[[23376,-17272]],[[23377]],[[23378,-4700,-11005]],[[-11003,-4727,23379]],[[23380,-20694,23381,-20692,-4719]],[[-4208,23382]],[[-4204,23383]],[[-4724,-20702,23384,-20703]],[[-4729,-11007,-4732,23385]],[[23386,-4745]],[[-4272,23387]],[[-20697,23388]],[[23389,-20723,23390,-4803]],[[23391,-20728,-4634]],[[-20730,-4793,23392]],[[23393]],[[-4854,23394]],[[-4832]],[[-11080,-4831,-11082,23395,-11083,-4278,23396]],[[-4280,-11085,23397]],[[23398,-20768]],[[-20771,23399,-20772,23400]],[[-20778,-11120,-4340]],[[23401,-4871,23402,-4876]],[[-20791,23403,-20788,-4878,23404]],[[23405,-4885,-11127]],[[-20797,23406,-4270]],[[-20813,23407]],[[23408,-17290,23409,-4897]],[[23410]],[[23411,-20851]],[[-11154,23412,-11156,23413,-20827,23414]],[[23415,-11198]],[[-5150,23416,-17320,23417]],[[-5039,23418]],[[23419,-4955]],[[-5144,23420]],[[23421]],[[-5086,23422,-11347,23423,-5093,-20954]],[[23424]],[[-4986,23425]],[[-5102,23426,-5037,-11310,23427,-11308,23428,-11307,23429]],[[-11313,23430]],[[-20947,23431,-5110,23432]],[[-5120,23433,-20974,-11322,23434]],[[-5133,-20981,23435]],[[-17315,23436]],[[23437,-4953]],[[-1222,23438]],[[-5166,23439,-1216,23440]],[[23441,-5170]],[[-1233,23442]],[[23443,-5190,23444,-1445]],[[-1401,23445]],[[-5192,23446]],[[-11375,-1376,-21039,23447]],[[-5201,23448]],[[-21057,-1414,23449]],[[23450,-1381]],[[-5205]],[[-11379,23451,-1426]],[[23452,-11386]],[[23453,-21088,23454,-21090,-1419,-11395,-21060]],[[-5232,23455,-5223,23456,-5185,23457]],[[-11402,23458,-5235,23459,-5233,23460]],[[-5275,23461,-11404,23462,-21097]],[[23463,-5250]],[[-1239,23464,-21110,23465,-21112]],[[-21131]],[[-17404,23466,-5270]],[[23467,-1244]],[[-5296,23468]],[[23469,-5348,23470,-5349]],[[23471]],[[-11479,23472]],[[-11484,-21154,23473,-21155,23474]],[[23475,-5343]],[[23476,-1246]],[[23477,-1248]],[[-11524,23478]],[[-5362,23479,-11527]],[[23480,-11553]],[[23481,-1278]],[[23482,-1282]],[[-5439,23483,-21179]],[[23484,-5501]],[[-11579,23485,-11726,23486]],[[-11737,23487]],[[23488,-1289,-11758]],[[-1286,-11761,23489,-5515,23490]],[[23491,-5476]],[[23492]],[[-1447,23493]],[[23494]],[[23495,-5535]],[[23496]],[[23497]],[[23498]],[[-5198,23499]],[[-5196,23500]],[[23501,-21239,-1362]],[[23502]],[[23503]],[[-1356]],[[23504,-17454,23505,-21251,-5557]],[[-11810,23506,-21263,-5733]],[[-1330,23507]],[[-5751,23508]],[[-1324,-21275,23509]],[[23510,-1320]],[[23511,-1410]],[[23512,-5598]],[[23513,-5600]],[[-5765,23514,-11823,-5605,-11820,23515]],[[23516,-11826,-5767,-21290]],[[23517,-5795]],[[23518,-5823]],[[23519,-21319]],[[23520]],[[-1311,23521,-11917]],[[-5834,-21333,23522]],[[-5945,23523]],[[23524,-5512,-11762,-1284]],[[-5960,23525]],[[23526,-1307]],[[23527,-5977,23528,-11970,23529,-11973,-5848]],[[23530,-11978,-5852,-11976]],[[23531,-5990,23532,-11985]],[[-5999,23533,-5861,23534]],[[23535,-6004,23536,-6002]],[[-5859,23537]],[[-5681,23538]],[[-5901]],[[-5677,23539]],[[23540,-5679]],[[23541,-12003,23542,-5675]],[[23543,6056,23544,-5673]],[[23545,-5669]],[[23546,-5667]],[[-5665,23547,-5663,23548]],[[-12014,23549,-5659,23550]],[[-12026,23551,-12024,-6027,-12028,23552]],[[23553]],[[-12063,23554,-12061,23555]],[[23556,-21338,-5880]],[[-21342,23557,-6041,23558]],[[-12085,-6044,23559]],[[-5651,-12086,23560]],[[23561,-12092,23562,-12090,-6053,-12088]],[[23563,-12160,-5720]],[[-5715,-12163]],[[23564,-6081]],[[-12169,-5711,23565,-6084]],[[23566,-5707]],[[-5705,23567]],[[-6088,23568,-6085,23569]],[[-6093,-12179,23570]],[[23571,-6090]],[[-5703,23572]],[[23573,-6121]],[[23574,-6113]],[[23575,-6105]],[[23576,-6107]],[[23577,-6125]],[[23578,-6162]],[[-6103,23579]],[[23580,-6099]],[[23581]],[[-6132,23582]],[[23583,-12225]],[[23584]],[[23585]],[[23586,-6134,23587,-12247]],[[-6136,23588,-12249]],[[23589,-6176]],[[23590,-6178]],[[-5723,23591]],[[23592,-5683]],[[23593,-11879,23594,-11881,-5893,-12255]],[[23595,-5895]],[[23596,-5783]],[[-6207,23597,-5646,23598]],[[-5730]],[[-6210]],[[-12258,-6172,23599,-6174]],[[-21366,-5725,23600]],[[-21391,23601]],[[-6230,23602,-17499,23603]],[[23604,-21395,-5628]],[[-12286,23605,-5626]],[[-6212,23606,-6233,23607,-6234,-12261,-5583,23608]],[[23609,-5581]],[[-5594]],[[-12307,23610,-6395,23611]],[[23612,-12316]],[[-6404,23613]],[[-6407,23614]],[[23615,-12379]],[[23616]],[[-21474,23617]],[[-12372,-1352,23618]],[[23619]],[[23620]],[[23621]],[[23622]],[[23623]],[[23624]],[[23625,-1350]],[[23626]],[[23627]],[[23628]],[[23629]],[[23630]],[[23631]],[[23632]],[[23633]],[[23634]],[[23635]],[[23636,-6332]],[[23637]],[[-21516,23638]],[[-6341,23639]],[[23640,-21541,23641,-21532,23642,-21472,23643,-1358,-12396]],[[-6425,23644]],[[23645,-6455]],[[23646,-1451]],[[23647,-6423]],[[-6473,23648,-6467,23649]],[[23650,-6417,23651,-6471]],[[23652,-8383]],[[23653]],[[-6570,23654,-21603,23655,-12421,23656,-21607,23657,-6320,23658]],[[-6614,23659]],[[-1162,23660]],[[-21625,-6578,23661]],[[-6629,23662,-21630,-6628,23663,-6547,-21627]],[[23664,-6557]],[[-6633,23665]],[[-6636,23666]],[[-6635,23667]],[[23668,-6642]],[[-6549,23669]],[[23670,-6640]],[[-6624,23671]],[[-17667,23672]],[[23673,23674]],[[-6655,23675]],[[-1000,23676]],[[23677]],[[-6726,-21697,23678,-21698]],[[23679]],[[-6729,23680]],[[-6802,23681]],[[23682,-6797]],[[23683,-7146]],[[23684,-6761]],[[23685,-21711]],[[-6765,-21713,23686]],[[23687,-12504,-6774]],[[-21717,-6781,-12507,23688]],[[-17766,-21723,23689,-6792,-21720]],[[-6824,23690,-6825,-21727]],[[-21730,23691,-6836,23692]],[[-6961,-12554,23693,-12552,23694,-12556]],[[-6958,23695]],[[23696,-12589,23697,-12588,23698,-12585]],[[-6952,23699,-7207,23700]],[[-6968]],[[-6863,-12561,23701]],[[-6950,23702]],[[-6979,23703]],[[23704,-6977]],[[-6981,23705]],[[23706,-12601,-7020]],[[23707,-12639,23708,-12637]],[[-7040,23709]],[[23710,-7048,-12650,23711,-7050,23712,-12749,23713,-12747,-6989]],[[23714,-7046]],[[-6996,23715]],[[23716,-6880,23717,-12745]],[[-7063,23718]],[[23719]],[[-12811,23720]],[[-7097,23721,-12814,-21758,23722]],[[-6892,23723]],[[-7107,23724,-21767,23725]],[[23726,-12867,23727,-12869]],[[23728,-12519,23729,-12516]],[[23730]],[[23731]],[[23732]],[[-7205,23733]],[[23734]],[[23735,-7252]],[[23736,-17839]],[[-21808,23737]],[[23738]],[[23739,-619]],[[-21858,-7315,23740,-634]],[[23741,-629,-21865,23742,-12962,23743,-12960]],[[23744]],[[-13025,23745]],[[-13027,23746,-21890,23747,-21892,23748]],[[-12976,23749,-7350,23750]],[[23751,-636]],[[-7337,-12983,-21898,-12985,-7353,23752]],[[-12986,-7378,-21899]],[[23753,-13007,23754,-7507,23755,-13004,-21904,-7367,23756,-12979]],[[-7364,23757,-13005]],[[23758,-7375,-21910]],[[-13009,23759,-21906,-7368,23760]],[[23761,-7384]],[[23762,-13052,23763,-13049,23764,-7303,23765,-21950,23766,-21947]],[[-13059,-7399,23767]],[[-21968,23768]],[[-13064,23769]],[[-13066,23770]],[[23771]],[[-13145,23772,-13134,-7395,23773,-21978,-7408,-13069,23774]],[[-13073,23775,-7410]],[[-13083,23776]],[[23777,-7427,-21980]],[[23778,-13090,-7421,23779,-7430,23780,-13087]],[[-21988,23781]],[[-13100,23782,-13103,23783,-7433,23784]],[[-13098,-7438,23785]],[[23786]],[[23787]],[[23788]],[[23789,-7446,-13117]],[[23790,-13123]],[[-21994,-13131,23791]],[[-13149,23792,-22000,23793]],[[-7247,23794]],[[-7456,23795]],[[23796,-7460]],[[-7478,23797,-13168,23798,-22014,23799]],[[-13178,-7490,-13172,-7482,23800]],[[23801,-7452,-13186,23802,-13184,23803,-13190,23804,-13188,23805,-7468]],[[-13192,23806]],[[-13202,23807]],[[23808,-7544]],[[-13227,23809,-7473,23810]],[[-7469,23811]],[[-7509,23812,-7540,23813]],[[23814,-6940]],[[-6918,23815]],[[-7581,23816]],[[-7592,23817]],[[-6916,23818]],[[23819,-13234,23820,-6910]],[[23821,-7602]],[[-13268,23822,-7617]],[[-22032,23823,-7623,-22034,23824,-7639,23825]],[[23826,-7628,23827,-22038,-7630]],[[-7711,23828]],[[-703,23829]],[[23830,-699]],[[-7643,23831]],[[-7650,23832]],[[-22077,23833]],[[23834]],[[-724,23835]],[[-17957,23836]],[[-18529,-7686,-17969,23837]],[[-7687,23838]],[[-7695]],[[-7693,-17974,23839,-17949,23840,-22082]],[[-22087,23841,-22090,-711]],[[-22093,23842]],[[-7709,23843,-13290,-7706,-22092,23844,-705,23845]],[[-7780,23846]],[[-22115,23847,-22117,23848]],[[23849]],[[23850]],[[-22126,23851]],[[-22129,23852,-17981,-13301,-17999,23853]],[[23854,-7737,-22135,-7774]],[[-7782,23855]],[[23856]],[[-22141,-1592,23857,-7785]],[[23858,-7725]],[[-7797,23859,-7799,23860]],[[-7753,23861]],[[23862]],[[23863]],[[23864,-7749]],[[-7723,23865]],[[23866]],[[23867]],[[23868]],[[-2260,23869]],[[23870,-2258]],[[-7887]],[[23871]],[[-7889]],[[-7890]],[[23872,-2159,-13372]],[[-22207,23873,-2156]],[[23874,-7807]],[[-13307,-1596]],[[23875,-2150]],[[23876,-2182]],[[-13480,-22249,-2201]],[[23877,-13489]],[[23878]],[[23879,-7930]],[[23880,-13527,-7875]],[[-7879]],[[23881,-7962,-7959,-13521]],[[-7992,23882]],[[23883,-8036]],[[-8037,23884]],[[-22280,23885,-8020]],[[-8042,-13567,23886]],[[-22316,-8093,23887]],[[-2232,-13734]],[[-22337,23888]],[[-13841,-8119,23889,-13765,23890,-7823]],[[23891,-8114,23892,-13829,-7524,-13820]],[[-13836,23893,-13724,-2239]],[[-13828,-22373,23894,-13838,23895]],[[23896,-13802,-657]],[[23897]],[[-13877,23898]],[[-13992,23899,-8225,-13994,-8221,23900,-13983,23901]],[[-7348,23902]],[[-7535,23903]],[[-18063,-13901,-8159,23904]],[[-8162]],[[23905,-13905,23906,-22394,23907,-13910,-8151,-13906]],[[23908,-8171]],[[-22398,-13917,23909,-8165]],[[-22406,23910,-7840]],[[23911,-8179,23912,-22400]],[[-22412,23913]],[[-22416,23914]],[[-13929,23915]],[[-8182,23916]],[[23917]],[[-7721,23918]],[[-18050,23919,-18047,-8197,23920]],[[23921,-22432]],[[-22452,23922]],[[23923,-13979]],[[23924,-7360,-18061]],[[-8186,23925]],[[-8230,23926]],[[-22492,-8129,23927]],[[-18066,-8231,23928]],[[23929,-18068,23930,-8236]],[[-22495,23931,-8234,23932]],[[-13872,-7842,23933,-22505]],[[23934,-681]],[[-8264,23935]],[[-8266,23936]],[[23937,-7719]],[[-8269,23938]],[[23939,-8267]],[[-8276,23940]],[[-8381,23941]],[[-14049,23942,-8385,23943]],[[23944]],[[-6312,23945,-22543,-14048,23946]],[[23947]],[[23948,-8389]],[[-22556,23949,-14075,23950,-18134]],[[23951]],[[23952]],[[23953]],[[23954,-6298]],[[23955]],[[23956,-14161]],[[-14170,23957]],[[-8505,23958,-22586,23959]],[[23960,-6285]],[[23961,-6287]],[[23962]],[[23963,-6279]],[[23964,-6249]],[[-6253,23965]],[[23966]],[[23967,-14239]],[[23968]],[[23969,-14260]],[[-6255,23970,-8542,23971]],[[23972]],[[23973,-22604,-14315,23974,-22615,23975,-22618,23976,-14256,23977,-8549,-14303,23978,14298,23979,23980,-22613,23981,-14311,23982,-14310,23983,-22622]],[[-8799,23984,-8554,23985]],[[-22620,23986]],[[-14326,23987,-8590]],[[-8588,23988,-14324]],[[23989,-8584]],[[23990]],[[23991,-8602]],[[23992,-8604]],[[-14359,23993,-8607]],[[23994,-14381,-8629,23995,-14362]],[[23996,-8613]],[[23997,-14364,-8615]],[[-14371,23998,-14369,-8610]],[[-14394,23999]],[[24000,-8565]],[[-14389,-8680,24001]],[[-14425,24002]],[[-8694,24003]],[[-6789,24004,-14449,24005]],[[24006,-8714,24007,-8711]],[[24008,-8286]],[[-8729,24009]],[[24010]],[[-8723,24011,-8725,24012]],[[-8290]],[[24013,-8743,24014,-8727]],[[-14484,-8761,24015]],[[24016,-8774]],[[-22693,24017,-8765]],[[-8767,24018]],[[24019,-8772]],[[24020,-18250]],[[-14497,24021]],[[-14566,24022]],[[24023]],[[-8821,24024]],[[-8848,24025,-14786]],[[-22714,-14790,24026]],[[24027]],[[-14812,24028]],[[-14884,24029,-14886,24030]],[[-14958,24031]],[[-22730,24032,-14964,24033]],[[24034,-8925,24035,-14818,24036,-14820]],[[-22739,24037,-22737,24038,-14978,24039]],[[-14980,24040]],[[-14992,24041]],[[-6271,24042]],[[-14998,24043]],[[-15021,24044,-15022,-8942]],[[24045]],[[24046]],[[-22759,-8957,24047]],[[-15072,-8958,24048]],[[-15105,-8457,24049,-8982,24050]],[[-18281,24051]],[[-18288,24052]],[[-15087,24053]],[[-9012,24054]],[[-9052,24055]],[[-18327,24056]],[[-15102,24057,-14922,24058,-9064]],[[24059,-9071]]]},{"type":"MultiPolygon","id":"5","properties":{"density":5},"arcs":[[[24060]],[[24061]],[[24062]],[[24063]],[[24064]],[[24065]],[[24066]],[[24067]],[[24068]],[[24069]],[[-281,24070]],[[-291,24071]],[[24072,-312,24073,-326]],[[-9160,24074]],[[24075]],[[24076,-1183]],[[-9170,24077]],[[-389,24078]],[[-467,24079]],[[24080]],[[-469,24081]],[[24082]],[[24083]],[[24084]],[[-9179,-476,24085]],[[24086]],[[-22823,24087]],[[-22826,24088]],[[24089]],[[24090]],[[24091]],[[24092]],[[24093]],[[24094]],[[24095]],[[24096]],[[-9186,24097]],[[24098]],[[24099]],[[24100]],[[24101]],[[24102]],[[24103]],[[24104]],[[-751,24105]],[[24106]],[[24107]],[[24108]],[[24109]],[[24110]],[[24111]],[[24112,-784]],[[24113,-788]],[[24114,-22854]],[[24115]],[[24116]],[[24117]],[[24118]],[[24119]],[[24120]],[[24121]],[[24122]],[[24123,-806]],[[24124]],[[24125]],[[24126]],[[24127]],[[24128]],[[24129]],[[-18506,24130]],[[24131]],[[24132]],[[-18508,24133]],[[24134,-809]],[[24135]],[[24136]],[[24137]],[[24138]],[[24139]],[[-15488,24140]],[[24141]],[[24142]],[[24143]],[[24144]],[[24145]],[[24146]],[[24147]],[[24148]],[[24149]],[[-9246,24150]],[[24151]],[[24152]],[[24153]],[[24154]],[[24155,-890]],[[24156]],[[24157]],[[24158]],[[24159]],[[24160]],[[24161]],[[24162]],[[24163]],[[24164]],[[24165]],[[24166,-917,-18541]],[[24167]],[[24168]],[[24169]],[[24170]],[[24171,-959]],[[-921,24172]],[[24173]],[[24174]],[[24175]],[[24176]],[[-957,24177]],[[24178]],[[24179]],[[24180]],[[24181]],[[-18544,24182]],[[24183]],[[-966,24184]],[[24185]],[[24186]],[[24187]],[[24188]],[[-1019,24189]],[[24190]],[[24191]],[[24192]],[[24193]],[[24194]],[[24195]],[[24196,-1039]],[[24197]],[[-18577,-1051,24198]],[[-1054,24199]],[[24200]],[[24201]],[[-1049,24202]],[[24203]],[[24204]],[[-18578,24205,-18580,24206]],[[24207]],[[24208]],[[24209]],[[24210]],[[-1075,24211]],[[-1088,24212]],[[-1077,24213]],[[24214]],[[24215]],[[24216]],[[24217]],[[24218,-9275]],[[24219]],[[24220]],[[24221]],[[24222]],[[-1101,24223]],[[24224,-18602]],[[24225]],[[24226]],[[24227]],[[24228]],[[24229]],[[24230]],[[24231]],[[24232]],[[24233]],[[-18610,24234]],[[24235]],[[24236]],[[24237]],[[24238]],[[24239]],[[24240]],[[24241]],[[24242]],[[24243]],[[-1137,24244]],[[24245]],[[24246]],[[24247]],[[24248]],[[24249]],[[24250]],[[24251]],[[24252]],[[24253]],[[24254]],[[24255]],[[-1143,24256]],[[24257]],[[24258]],[[24259]],[[24260]],[[24261]],[[24262]],[[24263]],[[24264]],[[24265]],[[-1147,24266]],[[24267]],[[24268]],[[24269]],[[-1168,24270]],[[24271]],[[24272]],[[-9295]],[[24273]],[[24274]],[[24275]],[[24276]],[[24277]],[[24278]],[[24279]],[[24280]],[[24281]],[[24282]],[[24283]],[[24284]],[[24285]],[[24286]],[[24287]],[[24288]],[[24289]],[[24290]],[[24291]],[[24292]],[[24293]],[[24294]],[[24295]],[[24296]],[[24297]],[[24298]],[[-22913,24299,-1544]],[[24300]],[[-10499,24301]],[[24302]],[[24303]],[[24304]],[[24305]],[[24306]],[[24307]],[[24308]],[[24309]],[[24310]],[[24311]],[[24312]],[[24313]],[[24314]],[[24315]],[[24316]],[[24317]],[[24318]],[[24319]],[[24320]],[[24321]],[[24322]],[[24323,-68]],[[24324]],[[24325]],[[24326]],[[24327,-2300]],[[24328,-2302]],[[-2304,24329]],[[24330]],[[24331]],[[24332]],[[24333]],[[24334]],[[24335]],[[24336]],[[24337]],[[24338]],[[24339]],[[24340]],[[24341]],[[24342]],[[24343]],[[24344]],[[24345,-19212]],[[24346]],[[24347]],[[24348]],[[24349]],[[24350]],[[-3574,24351]],[[24352]],[[24353]],[[24354]],[[-2924,24355]],[[-2922,24356]],[[-16629,24357]],[[24358]],[[24359]],[[24360]],[[24361,-19678,-23199]],[[24362]],[[-3607,24363]],[[24364]],[[-1567,24365]],[[24366]],[[24367]],[[24368]],[[24369]],[[24370]],[[24371]],[[24372]],[[24373]],[[24374]],[[24375]],[[24376,-2916]],[[24377]],[[24378]],[[24379]],[[24380]],[[24381]],[[24382]],[[24383]],[[24384]],[[24385]],[[24386]],[[24387]],[[24388]],[[24389]],[[24390]],[[24391]],[[24392]],[[24393]],[[-4531,-10977,24394]],[[24395]],[[24396]],[[24397]],[[24398]],[[24399]],[[24400]],[[24401]],[[24402]],[[24403]],[[24404]],[[24405]],[[24406]],[[24407,-4540]],[[24408]],[[24409]],[[24410]],[[24411]],[[24412]],[[24413]],[[24414]],[[24415]],[[24416]],[[24417]],[[24418]],[[24419]],[[24420]],[[24421]],[[24422]],[[24423]],[[24424]],[[24425]],[[24426]],[[24427]],[[24428]],[[24429]],[[-4553,24430]],[[-4556,-20625,24431]],[[24432]],[[24433]],[[24434]],[[24435]],[[-17198,24436]],[[24437]],[[24438]],[[24439]],[[24440]],[[24441]],[[24442]],[[24443]],[[24444]],[[24445]],[[24446]],[[24447]],[[24448]],[[24449]],[[24450]],[[24451]],[[24452]],[[24453]],[[24454]],[[24455]],[[24456]],[[24457]],[[24458]],[[24459]],[[24460]],[[24461]],[[24462]],[[-4666,-10989,24463,-10990]],[[24464]],[[24465]],[[24466]],[[24467]],[[24468]],[[24469]],[[24470]],[[24471]],[[24472]],[[24473]],[[24474]],[[24475]],[[24476]],[[24477]],[[24478]],[[24479]],[[24480]],[[24481]],[[24482]],[[24483]],[[-2898,24484]],[[-2896,24485]],[[-23371,24486]],[[-23369,24487]],[[24488]],[[24489]],[[24490]],[[24491,-4917]],[[24492]],[[24493]],[[24494]],[[-1225,-20997,24495]],[[-5157,24496]],[[24497]],[[24498]],[[24499]],[[24500,-17565,-6483]],[[24501]],[[-17588,24502]],[[24503]],[[-17655,24504]],[[-12446,24505]],[[-17613,24506,-6583]],[[-6667,24507]],[[-23674,24508]],[[24509]],[[-6711,24510]],[[24511]],[[24512]],[[24513]],[[24514]],[[-13281,24515]],[[-18004,-7762,24516]],[[24517]],[[-8656,24518]],[[-18184,24519]],[[24520]],[[24521,-22645]],[[24522]],[[-8683,24523]],[[24524,-8973]],[[24525,-8980]],[[24526]],[[24527]],[[24528]],[[24529]],[[24530]]]},{"type":"Polygon","id":"6","properties":{"density":6},"arcs":[[-6673,-21644,24531]]}]}},"arcs":[[[3757,4642],[-13,17]],[[3744,4659],[22,29],[12,14],[13,-18],[-6,-7],[-28,-35]],[[3903,4791],[-24,13]],[[3879,4804],[26,36],[19,-18],[-21,-31]],[[3978,4772],[-31,-36],[-6,-16]],[[3941,4720],[-11,14],[9,10],[-21,25],[-16,-16]],[[3902,4753],[-11,14],[36,53],[19,-17],[32,-31]],[[3893,4972],[4,33],[20,8],[21,16],[4,-10],[-20,-28],[-29,-19]],[[4011,4969],[8,20]],[[4019,4989],[22,-13],[-10,-19],[-20,12]],[[4342,4917],[10,-9],[31,-6]],[[4383,4902],[5,0]],[[4388,4902],[20,8]],[[4408,4910],[5,-3],[9,6],[7,5],[40,35],[5,5],[-9,12]],[[4465,4970],[16,20]],[[4481,4990],[13,-16],[10,10]],[[4504,4984],[16,19],[19,43]],[[4539,5046],[2,5],[-16,13],[14,27],[20,-16],[3,7],[2,5],[3,8]],[[4567,5095],[4,7]],[[4571,5102],[18,21],[1,19]],[[4590,5142],[47,19]],[[4637,5161],[31,17]],[[4668,5178],[4,-17],[5,3],[-5,17]],[[4672,5181],[25,17],[45,36]],[[4742,5234],[31,22],[4,-19]],[[4777,5237],[-36,-28],[7,-14]],[[4748,5195],[-31,-22],[19,-3],[0,5],[47,25],[2,-23],[5,1],[20,15],[3,-11],[7,2],[-4,11],[53,34],[10,-13]],[[4879,5216],[69,38]],[[4948,5254],[118,12],[18,4],[3,-22],[2,-18],[-28,-13],[-54,-54],[2,-4]],[[5009,5159],[2,-18],[20,2]],[[5031,5143],[-11,-18],[-27,6],[-27,-15],[-38,-32],[-16,-12],[-8,37],[7,6],[51,41],[-1,6],[-11,53],[107,27],[-35,-4],[-43,-13],[-21,0],[-62,-35],[-8,2],[-48,-28],[-13,-1],[-7,0],[4,-30],[-33,1],[-1,28],[-5,0],[1,-28],[-52,0],[2,29],[-4,1],[0,-31],[-9,0],[0,34],[-12,2],[-27,-26],[-6,17],[-5,-3]],[[4673,5157],[-41,-21],[-32,-15],[-9,-5]],[[4591,5116],[-5,-4],[-3,-2],[-42,-66],[-20,-47],[-24,-27],[-24,-24],[-29,-29],[-12,-5],[-36,-17],[-38,4],[-19,14],[-10,7],[-29,19]],[[4300,4939],[-4,4],[-3,1]],[[4293,4944],[-5,2]],[[4288,4946],[-23,6],[-23,15],[-20,-1],[-20,-2]],[[4202,4964],[-4,10],[-2,0],[2,-10],[1,-26],[-32,2],[-3,27],[2,15],[29,-1],[3,2],[-3,5],[19,20],[-3,4],[-22,-23],[-22,-2],[12,52],[-4,2]],[[4175,5041],[-20,8]],[[4155,5049],[-5,1]],[[4150,5050],[-25,3]],[[4125,5053],[0,1],[-6,-2],[-7,-34],[-19,29],[-5,-1],[21,-37],[-4,-17],[-28,53],[-6,-1]],[[4071,5044],[-37,-7],[-39,8]],[[3995,5045],[-5,-1]],[[3990,5044],[-30,-14]],[[3960,5030],[-4,-3]],[[3956,5027],[-7,-9]],[[3949,5018],[-5,-6]],[[3944,5012],[-27,-37],[-26,-17]],[[3891,4958],[-11,-3],[-3,-27],[-8,-13],[4,-1],[7,10],[6,-34],[-10,-14],[-38,38],[2,9],[5,33],[-6,2],[-2,-10],[-33,7],[3,17],[-27,24],[-34,57],[-63,98],[-14,17],[-24,17],[-26,9],[-36,3],[-38,-43],[-14,-11],[-3,17]],[[3528,5160],[34,38],[-14,-2],[-27,2]],[[3521,5198],[-10,3],[-25,5]],[[3486,5206],[-19,9],[-20,18],[-18,31]],[[3429,5264],[-4,11],[-6,-4],[-8,39],[-24,82],[-5,47],[0,8]],[[3382,5447],[0,1],[-1,19],[-26,-1],[-33,11]],[[3322,5477],[-16,3],[17,13],[55,11],[-1,7]],[[3377,5511],[-3,28],[-11,42],[-10,-6],[-17,-24],[-12,20]],[[3324,5571],[40,15],[-20,84],[-46,-29],[-2,1],[5,66],[32,-4],[-29,29],[-5,3]],[[3299,5736],[-27,6]],[[3272,5742],[-5,0]],[[3267,5742],[-30,4]],[[3237,5746],[-14,2],[-25,1],[-16,1]],[[3182,5750],[-32,3]],[[3150,5753],[-8,3],[0,-2]],[[3142,5754],[-19,4]],[[3123,5758],[-5,2],[0,-2]],[[3118,5758],[-24,3]],[[3094,5761],[-5,1],[0,-2]],[[3089,5760],[-69,9]],[[3020,5769],[-24,14],[-7,1],[-45,12],[0,14],[-10,-1],[-3,-6],[-37,28],[5,12],[-5,0],[-6,-12],[-6,21],[-52,42],[-2,-2],[-67,37],[-1,1]],[[2760,5930],[-42,18],[-33,-3],[-18,-13],[-31,-80]],[[2636,5852],[5,45],[-4,0],[-3,-46],[-12,-4],[-2,28],[2,46],[-5,48],[8,-16],[14,39],[4,-1],[13,0],[5,8],[-24,-2],[-2,35],[3,18]],[[2638,6050],[16,-16],[6,35],[-7,5]],[[2653,6074],[-16,11],[-12,-21],[-8,-15],[-13,12],[-50,18],[-21,16],[-16,29],[9,11],[-8,7],[13,18],[29,31],[-1,1],[-30,-30],[-10,-16],[-8,-8],[-25,59],[-67,162],[-33,82]],[[2386,6441],[12,6],[2,2],[-22,35],[-32,71]],[[2346,6555],[-2,3],[-4,-4],[-63,159],[-93,262],[-11,37],[-4,4],[-42,111],[2,2],[-20,44],[-28,59],[-181,444],[5,3],[-1,3],[-5,-3],[-76,185],[-104,259],[3,2],[1,3],[-1,0],[-4,-2],[-28,69],[-19,56],[-24,68],[-9,39],[4,7]],[[1642,8365],[7,-4]],[[1649,8361],[4,-7]],[[1653,8354],[8,-42],[22,-62],[9,20],[18,19]],[[1710,8289],[3,-2],[21,-7],[15,-18]],[[1749,8262],[-2,-7],[6,-43],[5,2],[20,-30]],[[1778,8184],[2,-2]],[[1780,8182],[41,-50],[21,-11],[20,17]],[[1862,8138],[15,-10]],[[1877,8128],[6,-16],[-5,-19],[7,-1],[7,24]],[[1892,8116],[30,-18],[37,-26],[37,-21]],[[1996,8051],[-6,-14],[2,-31],[13,-20]],[[2005,7986],[2,-3]],[[2007,7983],[16,-13],[14,-3],[22,-3]],[[2059,7964],[3,-3]],[[2062,7961],[33,-19],[8,-12],[10,3]],[[2113,7933],[13,-92],[-8,-4],[-20,-16],[-22,-24],[-53,-35],[-32,-22],[-62,-40],[-12,-8],[-8,-11],[8,4],[13,11],[41,27],[22,14],[32,21],[52,36],[37,35],[10,4]],[[2124,7833],[3,-17],[9,-8],[2,-24],[-5,-56],[17,-45],[4,-30],[20,-15],[32,-17],[18,-30],[3,-25],[10,-13],[4,11],[32,-9],[26,-12],[43,-8],[30,-52]],[[2372,7483],[-5,-23],[-3,-19],[-15,-20],[-34,-54],[-3,-13],[-11,-80],[-7,-52],[-10,-68],[-48,-8],[-25,-3],[-45,-5],[-26,-1],[2,-6],[70,8],[28,3],[31,3],[18,-2],[14,-37],[37,-90],[38,-93],[20,-49],[18,-45],[8,-24],[4,-30]],[[2428,6775],[-21,-25]],[[2407,6750],[-4,-6]],[[2403,6744],[-4,6],[-9,-11],[-32,-49],[-12,-21],[-3,-39],[2,-47],[5,-16]],[[2350,6567],[1,-7],[27,-45],[24,-14]],[[2402,6501],[20,-23]],[[2422,6478],[-2,-2],[3,-7],[3,-1]],[[2426,6468],[9,-16],[23,-26],[5,5]],[[2463,6431],[29,-43]],[[2492,6388],[-15,-19],[30,-39],[46,-72],[44,-49],[25,-33],[4,4]],[[2626,6180],[6,-9],[-1,7]],[[2631,6178],[8,8],[-8,48],[-5,14],[-16,12],[-9,25],[9,14],[18,-46],[8,-10],[17,4],[10,-14],[6,-10]],[[2669,6223],[11,-45],[16,1],[2,-13]],[[2698,6166],[-36,-48],[12,-14],[20,-12],[20,-3],[17,5],[28,22],[3,-2],[10,-10]],[[2772,6104],[-22,-27],[-8,-21]],[[2742,6056],[-2,-15],[4,-5]],[[2744,6036],[26,-31],[0,-24],[12,-11],[7,14]],[[2789,5984],[32,-39],[23,-23],[-2,-5],[-1,-2],[5,-2],[3,4],[58,-42],[-4,-9],[4,-3]],[[2907,5863],[40,-29]],[[2947,5834],[6,-7],[1,2],[3,7],[37,-38],[5,-6],[0,3]],[[2999,5795],[10,-7],[81,-17]],[[3090,5771],[-1,-3],[6,1]],[[3095,5769],[23,-2]],[[3118,5767],[0,-2],[5,2]],[[3123,5767],[20,-3]],[[3143,5764],[0,-2],[8,2]],[[3151,5764],[32,-5]],[[3183,5759],[5,-1]],[[3188,5758],[9,-1]],[[3197,5757],[19,-4]],[[3216,5753],[8,-1],[15,-2]],[[3239,5750],[4,0]],[[3243,5750],[30,-4]],[[3273,5746],[26,-6]],[[3299,5740],[5,-2],[0,1],[3,42],[46,-33],[-2,-36],[-18,2],[6,-11]],[[3339,5703],[13,-26]],[[3352,5677],[12,-27],[9,-60],[2,-5],[5,1]],[[3380,5586],[4,-47],[12,-23],[33,13],[51,26],[24,7]],[[3504,5562],[20,10],[59,19],[3,-2],[3,-5],[-40,-17],[-24,-16],[-15,-4],[25,-62],[18,29],[36,5]],[[3589,5519],[14,1]],[[3603,5520],[20,-16],[-31,-117],[-30,-11],[-90,35],[-1,1],[-57,22],[-27,10],[1,-14],[19,-8],[-3,-16],[-13,1],[0,-6]],[[3391,5401],[7,-37],[30,-87]],[[3428,5277],[4,-11]],[[3432,5266],[25,-39],[26,-16],[31,-4]],[[3514,5207],[5,1]],[[3519,5208],[17,1],[-11,22],[7,33],[-24,15]],[[3508,5279],[-10,25]],[[3498,5304],[70,41],[25,-12],[7,-15],[33,-42],[6,-16],[-58,-41],[-16,-13],[1,-3],[11,11],[62,42],[0,-16],[1,-46],[5,-4],[25,-17],[32,-45],[109,-25],[-9,14],[-103,24]],[[3699,5141],[4,28]],[[3703,5169],[56,-13],[-18,16],[-23,6]],[[3718,5178],[-20,24],[-29,25]],[[3669,5227],[-2,17],[-22,-9]],[[3645,5235],[0,8],[-1,16],[27,4],[31,-15],[25,-19]],[[3727,5229],[-7,-1],[21,-37],[13,-15],[33,-26],[79,-19],[-4,-28],[-43,10],[6,-13],[26,-6],[-19,-15],[-10,-9],[-5,-2],[-24,38],[21,-40],[-70,-2],[7,-11],[27,2],[5,-9],[-4,-27],[4,-5],[27,-23],[2,8],[6,42],[4,2],[25,-28],[-3,-23],[-3,-16],[4,-1],[6,38],[13,-6],[14,-3],[13,-1],[-5,-35],[17,5],[21,18],[29,37],[14,13],[29,8]],[[3996,5049],[24,-5],[-4,46],[14,-9],[3,-36],[30,4],[4,2]],[[4067,5051],[3,2],[-44,44],[-16,7],[3,15],[19,-11],[50,-50],[3,2],[-2,20],[35,-14],[9,-3],[53,-20],[25,-17],[12,-15],[15,6],[1,1],[10,18],[19,8],[29,-38],[11,-16],[-12,-41],[23,-8],[29,-24]],[[2079,7913],[27,-40],[-4,39],[-23,1]],[[2656,6112],[-11,20],[-33,49],[-40,47],[1,-12]],[[2573,6216],[4,-7],[3,-2],[68,-104],[11,-20],[1,1],[-4,28]],[[3875,4867],[-48,-66],[-10,-19],[23,-26]],[[3840,4756],[-15,-21]],[[3825,4735],[-17,4],[-8,-18]],[[3800,4721],[-12,14],[-10,-23]],[[3778,4712],[-47,-61],[17,-27],[14,17],[55,-77],[-26,-25],[-21,-16],[-29,45],[-17,30],[-14,26],[-18,30],[2,26],[103,146],[29,57],[12,21],[35,-34],[2,-3]],[[4035,4859],[-7,-15],[24,-23]],[[4052,4821],[-17,-19]],[[4035,4802],[-16,15],[-10,-16],[-9,13]],[[4000,4814],[23,42]],[[4023,4856],[12,3]],[[4053,4861],[-13,6],[-34,-8],[-13,16],[-3,-3],[5,-6]],[[3995,4866],[-8,-15],[-21,8],[-6,2]],[[3960,4861],[-7,3],[9,39],[9,41]],[[3971,4944],[13,-3],[15,11],[9,13]],[[4008,4965],[10,-7]],[[4018,4958],[-4,-15],[19,-10],[11,22],[28,-17],[-3,-11],[-33,-14],[-11,-36],[30,-7],[-2,-9]],[[3957,5069],[37,-9],[-1,-8],[-21,-5],[-18,-13],[-9,5],[12,30]],[[3956,5081],[19,21],[29,-1],[-7,-29],[-41,9]],[[3857,4707],[10,24],[9,10]],[[3876,4741],[14,3],[24,-25],[4,6]],[[3918,4725],[25,-28],[-82,-92]],[[3861,4605],[-24,25],[-25,-37]],[[3812,4593],[-41,59]],[[3771,4652],[31,39]],[[3802,4691],[15,-18],[17,-19],[7,36],[16,17]],[[3929,5054],[12,26],[10,-2],[-13,-34],[-9,10]],[[4005,5106],[-21,3],[-23,-10],[-9,-17],[-10,2],[18,30],[12,7],[37,0],[-4,-15]],[[3835,5072],[25,20],[44,-10],[22,-33],[9,-9],[-25,-18],[-30,-12],[-15,4],[-24,20],[-17,30],[11,8]],[[4084,4729],[17,-18]],[[4101,4711],[-9,-10],[-38,17],[11,24],[19,-13]],[[4174,4721],[-32,29]],[[4142,4750],[12,14]],[[4154,4764],[27,-26]],[[4181,4738],[-7,-17]],[[4178,4719],[10,24]],[[4188,4743],[16,-12],[-12,-28],[-14,16]],[[4221,4490],[-23,21],[6,11],[25,-17]],[[4229,4505],[-8,-15]],[[4297,4569],[-8,-23],[-13,8],[8,23],[13,-8]],[[4242,4485],[-12,10],[8,15],[30,-27],[-7,-13],[-19,15]],[[4243,4668],[6,-7],[17,9],[14,-3]],[[4280,4667],[17,-59],[-19,-7]],[[4278,4601],[-9,30],[-9,-16]],[[4260,4615],[-32,25],[15,28]],[[4093,4594],[-11,-8],[-19,55],[12,3],[77,22],[10,-24],[-69,-48]],[[3863,4551],[20,18],[15,-4]],[[3898,4565],[30,-9],[9,20],[17,34]],[[3954,4610],[3,-4],[45,59],[17,22],[19,-22],[10,-12],[-92,-109],[-47,-62],[-4,-22],[34,-58],[-35,-29],[-15,31],[-3,10],[-8,15],[16,22],[9,28],[-40,72]],[[4041,4675],[-15,18],[17,21],[23,-9]],[[4066,4705],[-11,-15],[-14,-15]],[[4036,4720],[-15,-21],[-6,8],[15,18],[6,-5]],[[4103,4957],[27,-9],[-8,-25],[-26,6],[7,28]],[[4167,4935],[33,0],[3,-29],[-32,-8],[-4,37]],[[4322,4907],[-12,23],[24,-15],[-12,-8]],[[4236,4787],[-9,-26],[-6,7],[10,22],[5,-3]],[[4309,4759],[16,3],[8,-19]],[[4333,4743],[-1,-6],[-28,-1],[5,23]],[[4315,4783],[9,36],[5,-32],[-14,-4]],[[4270,4894],[21,7],[-3,-24],[-6,-17],[9,-11]],[[4291,4849],[-27,-13]],[[4264,4836],[7,28],[-9,6]],[[4262,4870],[6,18],[2,6]],[[4159,4968],[-49,17]],[[4110,4985],[3,16],[50,-18],[-4,-15]],[[4486,4768],[-11,-7],[-16,16],[-6,31],[16,6],[17,-46]],[[4386,4776],[10,3],[-2,-36],[-8,33]],[[4510,4946],[11,-34],[-3,-10],[-24,-16]],[[4494,4886],[-8,19],[-17,-9],[-10,18],[33,33],[18,-1]],[[4389,4979],[5,8],[16,-11],[28,8],[-3,-10],[18,-27]],[[4453,4947],[-27,-25],[-37,57]],[[4346,5118],[20,-22],[5,-7],[33,-43],[-35,-35],[-28,39],[-4,6],[-21,22],[-15,18],[28,37],[17,-15]],[[4419,5083],[-10,15],[13,3],[9,-15],[-12,-3]],[[4431,5061],[14,-21],[-15,-16],[-14,21],[15,16]],[[4498,5027],[-12,11]],[[4486,5038],[10,21],[13,-8],[-11,-24]],[[4460,5057],[6,15],[23,-13],[-17,-32],[-12,30]],[[4458,5064],[-7,18],[18,16],[-11,-34]],[[4494,5100],[-3,-35],[-22,12],[4,22],[21,1]],[[4536,5101],[-36,8],[2,21],[38,-19],[-4,-10]],[[4497,5074],[19,-6]],[[4516,5068],[-6,-13],[-14,7],[1,12]],[[4525,4897],[1,-5],[-58,-34],[-2,5],[59,34]],[[4501,4761],[20,12],[2,-8],[-19,-11],[-3,7]],[[4525,4768],[0,7],[32,18],[2,-6],[-34,-19]],[[4470,5136],[-13,-4],[0,-26],[-15,7],[-9,19],[37,4]],[[4493,4849],[-21,-12]],[[4472,4837],[-2,6],[45,26],[18,-48],[-18,-10],[-14,42],[-8,-4]],[[4540,4855],[-12,-7],[-13,33],[14,4],[11,-30]],[[4337,5044],[-30,-46]],[[4307,4998],[-10,12],[-7,13],[30,40],[13,-13],[4,-6]],[[4367,5102],[36,45],[11,8]],[[4414,5155],[7,-20],[-23,-14],[-24,-28],[-7,9]],[[4423,5158],[22,-2],[18,7],[-12,20],[11,26],[-9,11]],[[4453,5220],[4,1],[30,-31],[-9,-7],[3,-6],[9,7],[19,-19]],[[4509,5165],[13,-12],[8,13]],[[4530,5166],[9,-9],[2,-19],[40,2],[0,-16],[-13,-14],[-20,3],[-31,16],[-30,9],[-32,2],[-24,-3],[-8,21]],[[4010,5125],[-41,0],[5,37],[41,-16],[-5,-21]],[[4019,5146],[10,40],[43,-16],[-9,-41],[-44,17]],[[4097,5160],[-5,-20],[-22,8],[5,20],[22,-8]],[[4044,5131],[43,-17],[-11,-41],[-37,36],[5,22]],[[4162,5080],[21,-8],[-5,-24],[-22,9],[6,23]],[[4197,5122],[-11,-45],[-22,8],[10,46],[23,-9]],[[4233,5096],[-13,-32],[-30,11],[11,46],[35,-14],[15,-4],[-5,-18],[-13,11]],[[4256,5051],[-8,-7],[-24,18],[6,23],[14,-6],[-2,-10],[14,-18]],[[4254,5104],[19,-7],[-5,-24],[-19,7],[5,24]],[[4290,5091],[25,-23],[-21,-29],[-9,-12],[-14,18],[-5,5],[-4,3],[18,41],[10,-3]],[[4031,5192],[2,4],[42,-16],[-1,-5],[-43,17]],[[4107,5168],[38,-14],[-1,-5],[-38,14],[1,5]],[[4267,5070],[-7,-15],[-12,23],[19,-8]],[[4041,5369],[0,24]],[[4041,5393],[2,9],[33,-12]],[[4076,5390],[-8,-32]],[[4068,5358],[-27,11]],[[4134,5430],[9,21],[18,-7]],[[4161,5444],[-5,-25],[-22,11]],[[4197,5381],[-20,7],[16,16],[9,-3],[-5,-20]],[[4117,5237],[-16,7],[6,20],[15,-6],[-5,-21]],[[4116,5232],[-6,-20],[-17,8],[6,18],[17,-6]],[[4131,5197],[-6,-30]],[[4125,5167],[-16,6],[6,30],[16,-6]],[[4216,5201],[-23,10],[17,71],[22,-8],[-16,-73]],[[4214,5134],[7,29],[10,-3],[-7,-30],[-10,4]],[[4239,5124],[-14,5],[7,30],[12,-11],[-5,-24]],[[4255,5180],[14,-6],[-15,-56],[-14,5],[15,57]],[[4313,5143],[11,-8],[-26,-37],[-6,3],[-8,5],[26,41],[3,-4]],[[4340,5192],[31,-41],[-23,-25],[-26,26],[-6,-3],[-3,3],[31,54],[-4,-14]],[[4291,5169],[24,54],[43,25],[6,-11],[-38,-53],[-14,-30],[-21,15]],[[4372,5158],[-11,17],[24,23],[10,-16],[-23,-24]],[[4251,5332],[-27,10],[4,21],[31,-12]],[[4259,5351],[-8,-19]],[[4368,5325],[-9,-11],[-6,25],[28,13],[-13,-27]],[[4339,5357],[-32,12],[4,20],[24,-8],[4,-24]],[[4257,5358],[5,19],[42,-15],[-5,-20],[-42,16]],[[4252,5411],[12,-4],[-5,-21],[-23,9],[5,20],[11,-4]],[[4276,5121],[6,27],[9,-1],[-7,-30],[-8,4]],[[4007,5250],[-4,-29]],[[4003,5221],[-12,6],[2,29],[14,-6]],[[4188,5211],[-20,9],[2,20],[23,-8],[-5,-21]],[[4175,5266],[24,-8],[-5,-20],[-23,9],[4,19]],[[4341,5321],[-4,-21]],[[4337,5300],[-24,9],[4,22],[24,-10]],[[4384,5309],[-17,-20],[-6,2],[13,35]],[[4374,5326],[10,-17]],[[4102,5356],[13,-9]],[[4115,5347],[-7,-16],[-13,9],[7,16]],[[4176,5163],[-21,9]],[[4155,5172],[0,2],[3,13],[22,-8],[-3,-13],[-1,-3]],[[4019,5255],[-25,11],[2,41],[35,-24],[-12,-28]],[[4024,5295],[-27,19],[1,20],[29,-11],[18,-7],[-12,-27],[-9,6]],[[4082,5311],[15,-10],[9,20],[17,-11],[-27,-64],[-32,22],[18,43]],[[4313,5230],[-18,-39],[-5,5],[23,34]],[[4355,5252],[-25,-13],[-5,16],[24,14],[6,-17]],[[4257,5117],[7,29],[10,-4],[-3,-30],[-14,5]],[[4279,5168],[7,-5],[-11,-20],[-6,3],[10,22]],[[4367,5238],[2,3]],[[4369,5241],[3,-4],[-23,-33],[-4,3],[22,31]],[[4423,5259],[30,-31]],[[4453,5228],[-4,-4]],[[4449,5224],[-12,15],[-18,-22],[-8,11],[-12,-14]],[[4399,5214],[-11,23]],[[4388,5237],[11,13],[10,-13],[13,15]],[[4422,5252],[1,7]],[[4495,5370],[-6,-12],[-34,-49],[-13,27],[-12,24],[46,49],[25,-29],[-6,-10]],[[4462,5312],[32,-29]],[[4494,5283],[-8,-8],[-21,17],[-3,20]],[[4555,5176],[-7,-26],[-16,21],[-28,30],[10,10],[10,-13],[34,-10],[-3,-12]],[[4704,5304],[-16,-5],[-14,30]],[[4674,5329],[24,7],[6,-32]],[[4620,5439],[5,1],[4,-33],[13,-6],[4,-24],[-24,-7],[-4,25],[9,11],[-7,33]],[[4650,5385],[32,9],[2,-6],[-33,-9],[-1,6]],[[4765,5309],[-9,30],[-23,33],[-39,18],[6,4],[29,-11],[28,-32],[10,-34],[-2,-8]],[[4693,5243],[-1,6],[33,10],[4,-23]],[[4729,5236],[-33,-10],[-3,17]],[[4765,5261],[-11,-9],[-6,38],[13,8],[4,-37]],[[4418,5255],[-28,5],[-9,-9]],[[4381,5251],[10,19],[28,-9],[-1,-6]],[[4587,4837],[-4,19],[21,8]],[[4604,4864],[7,-29],[-11,7],[-13,-5]],[[4688,4918],[4,15]],[[4692,4933],[17,2]],[[4709,4935],[-2,-23],[-17,-6]],[[4690,4906],[-2,12]],[[4634,4841],[-7,31],[35,11]],[[4662,4883],[2,-10],[12,4],[5,-19]],[[4681,4858],[-47,-17]],[[4624,4905],[18,6],[5,-26],[-18,-6],[-5,26]],[[4547,4930],[-1,-15]],[[4546,4915],[-10,-2],[-13,29],[17,10],[7,-22]],[[4683,4983],[3,20],[-5,22],[15,6]],[[4696,5031],[4,-42],[-17,-6]],[[4575,4795],[-2,5],[29,13],[22,5],[-49,-23]],[[4567,5024],[-19,22],[17,25],[12,-9],[-10,-38]],[[4573,4886],[16,-69],[-20,-10],[-29,82],[19,9],[14,-12]],[[4620,4908],[-3,15]],[[4617,4923],[22,8],[3,-16],[-22,-7]],[[4636,5067],[-1,7],[-10,14]],[[4625,5088],[29,12],[18,7],[6,-22],[-20,-3],[20,0],[8,-29],[-44,-16],[-6,30]],[[4561,5009],[-20,-31],[-22,-28],[-13,24],[18,21],[21,46],[5,-6],[15,-16],[-4,-10]],[[3618,4648],[-54,-6],[19,-26]],[[3583,4616],[2,-7],[48,18],[4,-7],[3,-6],[4,-5],[3,-4],[-33,-31],[10,0]],[[3624,4574],[41,-55],[3,1],[31,-59]],[[3699,4461],[-2,-1],[7,-7]],[[3704,4453],[36,-47]],[[3740,4406],[7,-13]],[[3747,4393],[13,-15]],[[3760,4378],[5,-6]],[[3765,4372],[31,-41],[9,8],[-1,44]],[[3804,4383],[1,0]],[[3805,4383],[4,-42],[-10,-13],[20,-28]],[[3819,4300],[4,-5]],[[3823,4295],[19,-23],[37,-33],[36,-18]],[[3915,4221],[4,-9]],[[3919,4212],[-32,14],[-17,-12]],[[3870,4214],[-2,4],[-35,-28]],[[3833,4190],[-25,48]],[[3808,4238],[10,8],[6,-10],[26,21],[-21,20],[-10,16]],[[3819,4293],[-4,4],[-1,-1],[-25,-22],[-16,31],[-7,11]],[[3766,4316],[22,12],[-30,42]],[[3758,4370],[-21,26],[-1,-3]],[[3736,4393],[-20,24]],[[3716,4417],[-22,40],[-25,26],[-37,39]],[[3632,4522],[5,7],[-24,33]],[[3613,4562],[-5,6]],[[3608,4568],[-13,20]],[[3595,4588],[-4,5],[-52,-16],[-30,10],[-42,30],[-26,12],[-37,1],[-1,4],[-3,11],[1,6],[26,2],[22,-4],[23,-11],[49,-35],[30,-3],[30,8],[-5,6],[-12,-4],[-12,17],[-11,-11],[-15,-11],[-38,28],[-29,18],[-26,6],[-35,0],[0,47],[-1,7],[0,10],[1,16],[11,3],[62,-29],[38,-21],[25,-22],[25,-6],[18,5],[10,22],[15,-19],[16,-22]],[[3559,4609],[-21,-6],[13,18],[8,-12]],[[3004,5042],[21,63],[40,4],[4,-61],[-36,-5]],[[3033,5043],[0,11],[-29,-12]],[[3074,5048],[-4,69],[32,-5],[48,3],[2,-68],[-78,1]],[[3769,4853],[-10,-17],[7,-8],[-13,-18],[6,-6],[-46,-62],[10,-11]],[[3723,4731],[-39,-59],[-12,-14],[-42,-20],[-8,12],[-3,4],[-13,19]],[[3606,4673],[24,22],[28,37],[-6,32]],[[3652,4764],[12,18],[24,40],[14,24]],[[3702,4846],[9,-5],[15,-6],[16,21],[7,21]],[[3749,4877],[17,12],[-21,30],[-4,-4]],[[3741,4915],[32,49],[-8,7]],[[3765,4971],[23,-22],[-6,-45],[7,-29],[14,-23],[-7,-15],[-25,20],[-2,-4]],[[3062,5144],[-21,6]],[[3041,5150],[5,18],[3,21],[16,38],[-6,3],[-28,-84],[-9,6],[45,129],[-4,14]],[[3063,5295],[-26,4]],[[3037,5299],[0,15],[7,11]],[[3044,5325],[24,-3],[2,7]],[[3070,5329],[8,-9],[28,-2],[5,-8]],[[3111,5310],[-27,-17],[11,-25],[-2,-14]],[[3093,5254],[-4,-24],[14,4],[17,-20],[13,-6]],[[3133,5208],[-26,-4],[25,-2],[3,-9],[-22,-15],[3,-5],[21,17],[6,-8],[-12,-28],[4,-2],[11,28],[15,-1],[8,-29],[5,2],[-10,28],[7,7],[24,-10],[11,0]],[[3206,5177],[15,9],[-4,-13],[17,16]],[[3234,5189],[5,-14]],[[3239,5175],[-41,-34],[3,-3]],[[3201,5138],[-36,-13],[-23,-4]],[[3142,5121],[1,9],[-31,12],[-26,31],[-2,-15],[2,-32]],[[3086,5126],[-22,6],[-2,23],[-2,10],[2,-21]],[[3164,4203],[-77,-69],[-3,-27]],[[3084,4107],[-9,-10],[0,-21],[-11,-7],[0,-13],[1,-11]],[[3065,4045],[-43,-19]],[[3022,4026],[-5,17],[8,19],[7,71],[-1,59],[-1,29],[0,77],[-1,21],[-2,48],[-15,14],[-57,-21],[-51,-23]],[[2904,4337],[-12,15],[-40,-9],[-10,22],[-40,-18],[-10,7]],[[2792,4354],[12,0],[58,25],[8,14],[4,35],[-2,1],[-4,-34],[-9,-14],[-13,-6],[-41,-18],[-22,-1],[-21,-9],[-4,33],[-3,0],[-13,-5],[-26,107],[-1,4],[-4,16],[-1,5],[67,-13],[104,-15],[44,-8],[21,1],[36,22],[85,92],[24,27],[24,17],[18,25],[2,16]],[[3135,4671],[16,18]],[[3151,4689],[17,-15],[8,-8]],[[3176,4666],[-16,-25],[6,-6],[49,-16]],[[3215,4619],[9,-15],[-18,-1],[-53,20],[-24,-6],[-39,-45],[7,-13],[3,3]],[[3100,4562],[6,-30],[19,-18],[8,12],[69,68],[18,-5],[1,6]],[[3221,4595],[9,0],[14,-22],[-14,-14],[-10,-14],[-29,-63],[-18,-17],[-23,-13],[-45,-26],[5,-3],[69,42],[23,-45],[24,-48]],[[3226,4372],[-9,-9],[4,-54],[-5,-27],[-21,-31],[-26,-24],[19,15],[14,2],[-39,-37],[1,-4]],[[3181,4831],[1,10],[5,27],[6,0],[40,-39],[68,-36],[48,-28],[44,-12],[-1,-15],[-1,-14],[0,-10],[1,-37],[-4,-8],[-33,21],[-2,-4],[38,-25],[3,-17],[2,-11],[0,-3],[-75,-4],[-58,-59],[-26,35],[-3,5],[-6,10],[-48,60],[-6,5],[-14,18],[-23,23],[-1,10],[5,12],[21,23],[13,25],[6,34],[0,4]],[[3647,4616],[-5,6],[7,18],[32,15],[8,-4],[16,-29],[3,-9],[-43,-19],[-18,22]],[[2859,4996],[-71,37],[-46,26],[-19,11]],[[2723,5070],[1,1],[-10,5],[-27,-66],[-6,-12],[-9,-17],[-28,10],[-47,29],[-33,38],[-6,-4],[12,-33],[-11,-14],[-30,9],[-25,-5],[-1,72],[15,2],[13,8],[4,12],[8,6],[15,-20],[36,-4],[26,-30],[6,-4],[-30,35],[-13,7],[-26,-2],[-10,18],[-14,-5],[-4,-12]],[[2529,5094],[-31,19],[-16,9],[-3,1],[12,-17],[-14,3],[0,-27]],[[2477,5082],[21,1],[1,-72],[-26,-5],[-68,-22],[-2,-13]],[[2403,4971],[-12,-37]],[[2391,4934],[-2,-4]],[[2389,4930],[-11,-18],[-18,-16],[-26,-9]],[[2334,4887],[-4,2],[0,-2]],[[2330,4887],[-26,2]],[[2304,4889],[-6,2]],[[2298,4891],[-41,7]],[[2257,4898],[-2,3],[-1,-2]],[[2254,4899],[-21,4],[-31,-2]],[[2202,4901],[-3,0],[-23,-54],[-5,0],[23,52],[-3,-3]],[[2191,4896],[-64,-43]],[[2127,4853],[-3,-2],[10,-5]],[[2134,4846],[-10,-8],[-6,-15],[-27,-29],[-17,-8],[-6,-13]],[[2068,4773],[-1,-3],[51,-39],[-17,-42],[20,44],[4,-2],[-34,-77],[-7,-1],[-78,31],[-61,26],[-11,4],[4,13]],[[1938,4727],[8,-3],[37,28],[-6,11],[-17,7],[5,20],[-11,4],[-15,6]],[[1939,4800],[-1,23],[2,8],[30,118],[4,34],[6,1],[245,-14],[-28,-63],[9,4],[11,31],[41,-8],[-3,-27],[0,-3],[3,2],[3,28],[29,-6],[7,-29],[5,0]],[[2302,4899],[28,-5]],[[2330,4894],[0,-2],[3,5]],[[2333,4897],[33,15],[16,20]],[[2382,4932],[5,3]],[[2387,4935],[12,34]],[[2399,4969],[1,15],[-37,-14],[-3,39],[40,6],[3,-5],[0,6]],[[2403,5016],[8,32],[13,21],[36,43],[-17,12],[-25,35],[-53,19],[-5,-1],[-9,-58],[1,-29],[-8,16],[10,66],[-5,8],[-35,7]],[[2314,5187],[11,14]],[[2325,5201],[66,-11],[31,-17],[56,-34],[34,22],[-107,40],[1,5]],[[2406,5206],[8,5],[59,32],[14,10],[11,43],[24,-2],[-1,-39],[0,-21],[6,8],[1,38],[18,77],[38,104],[16,-5]],[[2600,5456],[0,-2],[-12,-96],[14,-5]],[[2602,5353],[-12,-40],[-12,-47],[6,0],[9,14]],[[2593,5280],[-1,-38],[65,15],[23,102]],[[2680,5359],[14,61]],[[2694,5420],[3,-2],[16,-7],[68,-24],[28,-11],[3,-54],[1,-5],[2,-17],[-31,-10],[-13,-26],[4,-21],[-10,-20],[-34,-113],[-11,-21],[8,-5],[1,2],[1,4],[33,-16],[17,-1],[0,-12],[2,-2],[0,14],[15,1],[-1,-21],[30,-15]],[[2826,5038],[-2,-3],[40,-21]],[[2864,5014],[0,-3],[4,0],[14,58],[70,-40],[22,-21],[8,-6],[-16,-46],[10,-3],[15,41],[30,-18]],[[3021,4976],[5,-22],[-6,-14],[5,-12],[32,-20],[81,-35]],[[3138,4873],[39,-19]],[[3177,4854],[-4,-21],[-4,-17],[-25,5],[-2,-7],[22,-10],[-27,-43],[-24,12],[-3,-8],[23,-16],[-4,-11]],[[3129,4738],[-207,114],[-169,94],[-64,46]],[[2689,4992],[7,10],[25,55],[57,-31],[77,-44],[-1,-5],[-8,-36],[-9,-28],[12,-7],[0,24],[14,64],[90,-47],[2,-2],[4,4],[-6,1],[-87,45],[-5,7],[-2,-6]],[[2121,4856],[-46,-3],[1,-3],[25,-2],[18,6],[2,2]],[[3077,4947],[-20,13],[14,37],[4,42],[77,-1],[-20,-127],[-55,36]],[[3024,5133],[0,-10],[-35,-107],[-13,-2],[38,113],[10,6]],[[3809,4860],[-16,29],[4,49],[34,-32],[-22,-46]],[[3340,4810],[-31,28],[32,-1],[-1,-27]],[[3357,4801],[-13,6],[1,28],[18,5]],[[3363,4840],[-6,-39]],[[3561,4702],[-34,16]],[[3527,4718],[16,14],[20,-9],[-2,-21]],[[3438,4816],[19,-7]],[[3457,4809],[-3,-14],[-16,21]],[[3315,4844],[2,59],[9,-10],[16,0]],[[3342,4893],[-1,-14]],[[3341,4879],[-16,0],[-1,-35]],[[3324,4844],[-9,0]],[[3631,4756],[-7,-19],[-21,-16]],[[3603,4721],[-33,31],[-10,-10]],[[3560,4742],[-28,43],[26,42],[73,-71]],[[3368,5031],[-2,-20],[-15,1],[0,20],[17,-1]],[[3671,4805],[-5,5],[-21,-32],[-35,18]],[[3610,4796],[-34,36]],[[3576,4832],[28,10],[29,46],[-1,16],[22,19],[11,22],[8,-9]],[[3673,4936],[38,-36],[4,-5],[-22,-38],[6,-6]],[[3699,4851],[-28,-46]],[[3302,5044],[-19,0]],[[3283,5044],[-2,30],[24,-5],[-3,-25]],[[3359,5041],[-40,24]],[[3319,5065],[0,30],[54,-43],[-14,-11]],[[3241,4923],[-1,-27]],[[3240,4896],[-6,-25],[2,52],[5,0]],[[3243,4982],[-1,-35]],[[3242,4947],[-6,-18],[2,53],[5,0]],[[3427,5050],[-1,-19],[-52,10],[3,8],[50,1]],[[3514,5053],[2,-30],[-4,-11]],[[3512,5012],[-76,17],[-1,22],[79,2]],[[3312,5275],[-8,22]],[[3304,5297],[7,4]],[[3311,5301],[8,-22]],[[3319,5279],[-7,-4]],[[3380,5410],[-23,-27],[-14,-36],[10,-9]],[[3353,5338],[-8,-11],[1,-1],[8,10],[29,-50]],[[3383,5286],[5,-10],[11,18]],[[3399,5294],[12,-27],[-12,-8],[-7,-6],[-11,-6],[-22,53],[-16,23],[-73,-40],[-3,1],[0,-31],[-4,-34],[-16,-34],[-3,19]],[[3244,5204],[10,26],[5,73],[-15,5],[-23,-11]],[[3221,5297],[-4,19],[22,11],[4,-16],[-1,20],[13,20],[16,12],[23,8],[22,7],[-2,-23],[13,-1],[-6,23],[23,8],[35,30],[1,-5]],[[3494,5059],[-30,0]],[[3464,5059],[-10,24],[-20,11]],[[3434,5094],[-1,31],[0,19],[25,-10],[28,0],[38,23],[2,-17]],[[3526,5140],[-31,-17],[-1,-64]],[[3614,5064],[-2,68],[20,2],[1,-69]],[[3633,5065],[-19,-1]],[[3832,4924],[-26,25],[30,-7],[-4,-18]],[[3736,5057],[-45,-2],[-4,5],[49,1],[0,-4]],[[3426,5154],[1,-7],[-4,-17],[-13,4],[-19,26],[-8,81],[11,6],[6,2],[14,7],[13,-56],[-1,-46]],[[3741,5053],[33,-56],[-5,-18],[-67,66],[4,7],[35,1]],[[3647,5084],[-1,37]],[[3646,5121],[29,-1],[0,-13]],[[3675,5107],[-7,-8]],[[3668,5099],[0,-19],[-21,4]],[[3787,4967],[-10,9],[2,15],[10,-10],[-2,-14]],[[3789,5055],[11,0],[-3,-17],[-10,2],[2,15]],[[3805,5055],[10,-2],[-2,-19],[-11,3],[3,18]],[[3786,5035],[11,-3],[-3,-18],[-11,5],[3,16]],[[3801,5031],[11,-3],[-3,-17],[-11,2],[3,18]],[[3644,5269],[-11,24],[-32,45],[11,7],[109,-41],[148,-55],[6,-54],[-19,16],[-112,14],[-51,34],[-17,7],[-32,3]],[[3973,5202],[-9,-30],[-31,7],[40,23]],[[3586,5376],[13,-19],[-9,-11],[-15,14],[11,16]],[[3872,5130],[33,-8],[-4,-28],[-34,8],[5,28]],[[3910,5120],[41,-9],[-13,-26],[-32,8],[4,27]],[[3925,5059],[-12,20],[22,-4],[-10,-16]],[[3868,5143],[-35,8],[-8,59],[29,-4],[20,-20],[-6,-43]],[[3727,5229],[41,-12],[44,-5],[10,-2],[7,-58],[-33,6],[-32,14],[-15,12],[-22,45]],[[3443,5396],[0,0]],[[3468,5398],[0,0]],[[3908,5391],[-22,-53],[-18,-77],[-254,95],[-17,29],[34,115],[30,-3],[44,-19],[25,-7],[68,-12],[110,-68]],[[3871,5260],[3,24],[13,53],[15,41],[0,-20],[12,29],[38,-19],[25,-20],[10,-25],[-4,-91],[-12,-9],[-100,37]],[[3419,5641],[-20,-2],[-1,17],[16,-2],[5,-13]],[[3461,5647],[-3,-15],[-11,1],[14,14]],[[3511,5615],[-8,18],[-11,-14],[-6,24],[22,-5],[16,-12],[-13,-11]],[[3873,5141],[7,44],[52,-9],[5,-16],[-11,-31],[-53,12]],[[3960,5121],[-26,7],[7,41],[25,-5],[-6,-43]],[[3884,5244],[35,-13],[46,-17],[2,-13],[-37,-21],[-51,12],[-5,53],[10,-1]],[[3551,5523],[-21,-15]],[[3530,5508],[-18,37],[40,20],[-1,-42]],[[3624,5515],[-9,4],[-6,23],[22,-1],[-7,-26]],[[3688,5559],[-22,18],[-9,-33]],[[3657,5544],[-13,-2],[12,50],[11,-4],[32,-23],[-11,-6]],[[3751,5573],[-27,-8],[-26,7],[-39,32],[12,7],[34,-24],[-33,26],[0,7],[50,-38],[19,-5],[22,8],[44,6],[-56,-18]],[[3742,5474],[-8,86],[11,4],[12,-93],[-15,3]],[[3893,5405],[-12,22],[-4,30],[24,13],[25,-31],[-15,-44],[-18,10]],[[3858,5513],[-2,43]],[[3856,5556],[35,-12],[3,-25],[-36,-6]],[[3869,5507],[6,1],[3,-28],[-7,0],[-2,27]],[[3672,5629],[-10,9],[-8,25],[18,8],[8,-43],[-8,1]],[[3903,5615],[-12,43]],[[3891,5658],[36,9],[6,-32],[-30,-20]],[[3680,5716],[-10,-37],[-20,-7],[-6,33],[36,11]],[[3778,5646],[-2,18],[25,4],[1,-18],[-24,-4]],[[3838,5655],[-18,-3]],[[3820,5652],[-4,17],[-1,40],[15,3],[8,-57]],[[3661,5543],[3,-43]],[[3664,5500],[-29,10],[8,30],[18,3]],[[3972,5405],[-26,-30],[-19,13],[46,19],[11,-3],[-4,-16],[-17,4],[9,13]],[[4005,5458],[-12,5],[-8,72],[11,1],[9,-78]],[[3995,5542],[-10,-2],[-6,54],[8,12],[8,-64]],[[3713,5480],[-5,81]],[[3708,5561],[21,-1],[9,-85],[-25,5]],[[3954,5539],[1,29],[21,18],[2,-19],[-15,0],[4,-36],[-14,-12],[-20,-62],[-11,3],[-15,23],[-6,53],[4,9],[45,21],[4,-27]],[[3978,5564],[2,-17],[-10,-13],[-3,28],[11,2]],[[3970,5518],[2,-14]],[[3972,5504],[-3,-1]],[[3969,5503],[-14,0],[15,15]],[[3894,5512],[4,-35],[-19,-8],[-1,40],[16,3]],[[3972,5467],[2,18],[-2,19]],[[3972,5504],[3,0]],[[3975,5504],[10,0],[2,-15],[-10,-4],[10,0],[2,-15],[-17,-3]],[[3875,5462],[-1,-45],[-54,36],[-3,49],[48,5],[10,-45]],[[3979,5458],[10,6],[3,-25],[-13,19]],[[3898,5560],[15,2],[33,16],[2,-6],[-34,-17],[-16,5]],[[3978,5601],[-24,-26],[22,33],[12,16],[14,5],[-24,-28]],[[3812,5590],[22,-13],[55,-16],[0,-7],[-54,16],[-23,13],[0,7]],[[3648,5614],[-53,-27],[-3,5],[57,30],[-1,-8]],[[3908,3699],[1,-6]],[[3909,3693],[-8,-1],[4,-67]],[[3905,3625],[-1,0],[-28,-1]],[[3876,3624],[-8,7],[7,43],[7,-7]],[[3882,3667],[18,1],[-1,62],[-8,64],[-4,0]],[[3887,3794],[-5,37],[-13,37],[6,2],[5,1]],[[3880,3871],[14,-40],[3,-44],[8,-3],[21,8],[8,-25],[-21,-10],[3,-28],[-12,-7],[4,-23]],[[3976,3855],[5,1]],[[3981,3856],[29,9],[-3,12]],[[4007,3877],[6,0]],[[4013,3877],[45,-2]],[[4058,3875],[4,-8]],[[4062,3867],[-6,-3],[4,-25],[-14,-36],[-48,-56],[-16,-16],[-13,21],[-8,26],[-11,39],[-9,27],[35,11]],[[3706,3955],[-63,9]],[[3643,3964],[-10,13],[5,21],[26,-9],[69,-5],[-27,-29]],[[3865,3925],[7,-48]],[[3872,3877],[-2,-1],[-5,-1]],[[3865,3875],[-15,21],[-12,-3],[1,24],[19,3],[-3,22]],[[3855,3942],[-5,34]],[[3850,3976],[8,-1],[7,-50]],[[4013,3965],[7,0],[19,-34],[-5,-4],[-21,38]],[[4064,3887],[-5,-5],[-23,41],[5,4],[23,-40]],[[3811,3673],[5,15]],[[3816,3688],[36,-53]],[[3852,3635],[-3,-7],[-38,45]],[[3809,3773],[29,7]],[[3838,3780],[5,-16]],[[3843,3764],[-12,-3],[5,-25],[-33,-15],[9,-23],[-9,-9],[3,16],[-19,3]],[[3787,3708],[0,13],[15,2],[0,9]],[[3802,3732],[-5,4]],[[3797,3736],[-7,27]],[[3790,3763],[19,10]],[[3763,3489],[-27,-33]],[[3736,3456],[-9,-1],[19,-10]],[[3746,3445],[-21,-23]],[[3725,3422],[-23,9],[-7,-4],[3,-1],[24,-7]],[[3722,3419],[-26,-27],[23,-21]],[[3719,3371],[-17,-20]],[[3702,3351],[-17,31],[-57,-31],[-61,-44],[-4,7]],[[3563,3314],[-31,-22],[-3,13],[-1,-2],[5,-24]],[[3533,3279],[-11,-4],[3,-17],[8,-35]],[[3533,3223],[-34,-15],[-6,39],[-4,23],[-2,12],[-4,-8],[1,-9]],[[3484,3265],[-12,-10],[6,-36]],[[3478,3219],[-17,0],[-5,-9],[-21,1],[-26,-15],[-32,-30]],[[3377,3166],[-2,-5]],[[3375,3161],[-4,-12]],[[3371,3149],[-9,-40],[1,-31]],[[3363,3078],[1,-5]],[[3364,3073],[9,-36]],[[3373,3037],[-70,22],[-73,22],[-6,-5],[34,-10],[138,-42]],[[3396,3024],[-5,-19],[35,-33],[-2,-8]],[[3424,2964],[-1,-3]],[[3423,2961],[44,-31],[1,-12]],[[3468,2918],[-42,30],[14,-30],[26,-9]],[[3466,2909],[4,-45],[4,-58],[19,-38],[-14,6],[-7,2]],[[3472,2776],[-75,193]],[[3397,2969],[-24,14],[-42,16],[-67,18],[-26,15],[-33,24],[1,6],[-3,3],[-22,-18]],[[3181,3047],[-6,-22]],[[3175,3025],[-10,5],[-32,-23],[-99,-78]],[[3034,2929],[-14,-7],[6,-1]],[[3026,2921],[-17,-14]],[[3009,2907],[-54,-43]],[[2955,2864],[-6,2],[-6,-7]],[[2943,2859],[-49,-39]],[[2894,2820],[-23,-18],[-47,-59]],[[2824,2743],[-1,6],[-5,-10]],[[2818,2739],[-37,-46]],[[2781,2693],[-11,-15],[1,-1]],[[2771,2677],[18,-19],[19,-2]],[[2808,2656],[-31,-51],[-42,30],[-6,-1],[2,-2]],[[2731,2632],[-70,-82],[-15,-15]],[[2646,2535],[-6,-3]],[[2640,2532],[-4,-4],[-1,-1],[2,-7],[-43,-53]],[[2594,2467],[-6,-6],[5,-7],[-54,-66]],[[2539,2388],[-6,9],[-14,-18],[-5,7],[-47,-63],[5,-6]],[[2472,2317],[-22,-27]],[[2450,2290],[-5,-3],[1,-2]],[[2446,2285],[-73,-95],[-51,-54]],[[2322,2136],[-21,-28],[-52,-63],[-9,12]],[[2240,2057],[19,19],[-14,9],[-6,-8]],[[2239,2077],[-7,-6]],[[2232,2071],[-2,6],[-26,1],[-23,51]],[[2181,2129],[32,21]],[[2213,2150],[35,-14],[42,-23],[24,28]],[[2314,2141],[2,2]],[[2316,2143],[64,78],[15,25],[44,50]],[[2439,2296],[0,-1],[2,4]],[[2441,2299],[32,47]],[[2473,2346],[1,2],[3,5]],[[2477,2353],[33,40]],[[2510,2393],[2,2],[3,4]],[[2515,2399],[38,47],[27,25]],[[2580,2471],[1,-1],[1,4]],[[2582,2474],[49,61]],[[2631,2535],[2,-3],[5,5]],[[2638,2537],[2,8]],[[2640,2545],[45,48],[38,45]],[[2723,2638],[1,-1],[2,3],[38,48],[2,23],[50,60],[1,-18],[5,0],[-1,3]],[[2821,2756],[49,58],[25,22],[51,37]],[[2946,2873],[6,3],[3,9]],[[2955,2885],[51,37],[2,5]],[[3008,2927],[5,-2],[2,0],[5,8]],[[3020,2933],[125,98]],[[3145,3031],[14,11],[-3,4]],[[3156,3046],[0,20]],[[3156,3066],[0,1]],[[3156,3067],[-10,17]],[[3146,3084],[0,0]],[[3146,3084],[-11,12]],[[3135,3096],[-1,1]],[[3134,3097],[-12,10]],[[3122,3107],[0,0]],[[3122,3107],[-13,10]],[[3109,3117],[0,0]],[[3109,3117],[-14,11]],[[3095,3128],[5,11],[3,5],[79,-63],[-2,-4],[-5,-22],[6,-1],[7,23],[8,-6],[7,5],[-77,61]],[[3126,3137],[13,28],[20,8],[-4,49],[-6,4]],[[3149,3226],[29,51],[6,9],[26,48],[14,-10],[12,-32],[8,-26]],[[3244,3266],[-62,-11],[3,-33],[63,11]],[[3248,3233],[1,-42],[6,-18],[19,-15],[2,-28],[1,1],[-2,28],[-12,7],[-12,23],[0,49],[5,-5],[129,2],[8,0],[-6,112],[-1,66],[75,0],[20,-123],[0,-4],[5,2],[29,24]],[[3515,3312],[44,30],[69,55],[-39,9]],[[3589,3406],[-84,12],[-40,0],[-1,4],[-3,-4],[-78,0],[-3,4]],[[3380,3422],[0,3]],[[3380,3425],[3,2]],[[3383,3427],[41,0]],[[3424,3427],[35,0]],[[3459,3427],[5,-2],[0,2]],[[3464,3427],[10,-1],[-8,55],[23,-3],[-3,-24],[26,-6],[5,26],[10,-4],[-5,-24],[5,-2]],[[3527,3444],[-2,-9],[13,-13],[13,-1],[18,-1]],[[3569,3420],[81,2],[4,1],[17,10]],[[3671,3433],[3,0],[3,4]],[[3677,3437],[53,42]],[[3730,3479],[7,1]],[[3737,3480],[13,10]],[[3750,3490],[5,3]],[[3755,3493],[9,8]],[[3764,3501],[4,4],[0,3]],[[3768,3508],[42,33],[6,5]],[[3816,3546],[2,3]],[[3818,3549],[19,18]],[[3837,3567],[15,14]],[[3852,3581],[23,22],[21,2],[11,7],[-4,7]],[[3903,3619],[15,1],[43,37],[33,27],[4,6]],[[3998,3690],[34,47]],[[4032,3737],[25,45],[11,40]],[[4068,3822],[10,37]],[[4078,3859],[2,3]],[[4080,3862],[5,27]],[[4085,3889],[13,62],[3,11]],[[4101,3962],[9,2],[9,-5],[4,0],[51,-6],[-2,-37],[10,-19],[5,15],[-10,5],[57,-8]],[[4234,3909],[-1,-16]],[[4233,3893],[-37,-28],[-23,5],[-60,2],[2,-22]],[[4115,3850],[-9,0]],[[4106,3850],[-4,0],[6,-26],[33,-58],[18,-31]],[[4159,3735],[2,-4]],[[4161,3731],[34,-66],[11,-16]],[[4206,3649],[-8,-10]],[[4198,3639],[-29,52]],[[4169,3691],[-7,12],[-15,5],[4,14],[-2,4],[-25,8],[9,19],[-3,4],[-4,-2],[-6,-19],[-32,13]],[[4088,3749],[-1,15],[-5,4],[-22,-12],[-11,-12],[-48,-62]],[[4001,3682],[-3,-4],[3,-4]],[[4001,3674],[-6,-8],[-63,-60]],[[3932,3606],[-8,11],[-3,-2],[-2,-4],[21,-19],[0,-9],[-15,-11],[-26,-21],[-44,-34],[-46,-35],[-10,12],[-29,-22],[-2,17],[-5,0]],[[4105,3976],[7,21],[10,50],[-5,30],[-9,-1],[-19,-1]],[[4089,4075],[-5,0]],[[4084,4075],[-52,-2]],[[4032,4073],[4,48],[72,-31],[7,-7],[40,-15],[-19,-46],[-15,-54],[-9,1],[-7,7]],[[4078,4194],[-9,-14],[-23,-32],[-17,-19],[-53,24],[13,11],[-10,11],[20,20],[12,23]],[[4011,4218],[67,-24]],[[4167,4221],[16,49]],[[4183,4270],[3,7]],[[4186,4277],[8,30],[16,40],[25,53]],[[4235,4400],[19,-17],[9,-8],[-69,-166],[-27,-76],[-15,-55],[-11,3],[-30,12]],[[4111,4093],[-10,23],[-16,15],[-34,15]],[[4051,4146],[20,29],[2,2],[13,14]],[[4086,4191],[41,-15],[21,9],[16,28]],[[4164,4213],[3,-1],[0,9]],[[4112,4449],[-7,-9],[-10,8],[-6,-11],[-10,10]],[[4079,4447],[13,20],[20,-18]],[[4172,4396],[8,14],[31,-28],[-12,-21],[-30,29],[3,6]],[[3906,3976],[-1,7],[104,-7],[-1,-6],[-102,6]],[[4051,3970],[1,4],[35,-1],[0,-7],[-36,4]],[[4213,4419],[-12,-22],[-6,5],[12,22],[6,-5]],[[4166,4353],[13,23]],[[4179,4376],[7,-7]],[[4186,4369],[-13,-23]],[[4173,4346],[-7,7]],[[4149,4308],[-4,1],[20,37],[5,0],[-21,-38]],[[4137,4435],[36,-32],[-3,-4],[-31,27],[-2,9]],[[3946,4157],[-16,39],[30,-27],[-14,-12]],[[3663,4419],[19,-37]],[[3682,4382],[-51,11],[32,26]],[[3794,4387],[-3,22]],[[3794,4387],[0,0]],[[3763,4517],[-27,-25],[-69,96],[39,20],[7,-4],[50,-87]],[[3754,4469],[-11,16],[26,23],[-15,-39]],[[3813,4434],[-11,5],[3,56],[14,-5]],[[3819,4490],[-7,-22],[1,-34]],[[3867,4351],[2,3],[14,49]],[[3883,4403],[6,-12],[10,-21],[-16,-14],[-3,-2],[-13,-3]],[[3831,4494],[-28,10]],[[3803,4504],[1,12],[16,9],[3,33]],[[3823,4558],[19,17],[10,-14]],[[3852,4561],[-12,-22],[-9,-45]],[[3989,4194],[-22,-19],[-40,32],[-55,131],[6,5],[3,2],[5,5],[19,15],[37,31],[3,-6],[103,-92],[-59,-104]],[[4060,4379],[-8,-14],[13,-12],[-8,-14],[10,-9]],[[4067,4330],[-15,-26],[-101,91],[-4,7],[36,52],[77,-75]],[[3607,4027],[-22,35],[3,4],[33,1]],[[3621,4067],[-14,-40]],[[3852,4033],[4,-43]],[[3856,3990],[-8,41],[-24,46]],[[3824,4077],[3,2]],[[3827,4079],[13,-24],[13,4],[8,-20],[-9,-6]],[[3691,4128],[-14,-12],[-19,12]],[[3658,4128],[15,32],[18,-32]],[[3776,4178],[22,-48]],[[3798,4130],[23,-44],[-3,-2],[-9,-7],[-23,40],[-7,35],[-3,26]],[[3552,4262],[-17,34],[5,19],[12,-5],[17,-34]],[[3569,4276],[-17,-14]],[[3600,4301],[-13,-11],[-25,49],[13,10],[25,-48]],[[3491,4411],[14,-23],[-19,-20],[-19,29],[19,20],[-20,-19],[-18,28],[24,25],[-32,49],[11,11],[41,-39],[37,-45],[18,-27],[-26,-24],[-26,39],[-4,-4]],[[3622,4323],[12,-19],[-17,-16]],[[3617,4288],[-8,15],[13,20]],[[3657,4332],[4,-14],[-14,-12]],[[3647,4306],[-16,30],[26,-4]],[[3694,4374],[-6,-44],[-52,12],[26,39],[32,-7]],[[3607,4459],[-15,5],[-2,2]],[[3590,4466],[6,1],[33,52],[8,-8],[-29,-45],[-1,-7]],[[3540,4572],[-1,-15],[-19,15],[20,0]],[[3898,3983],[1,-6],[-36,2],[-1,6],[36,-2]],[[3859,3980],[-55,3],[0,6],[54,-3],[1,-6]],[[3790,3984],[-43,3],[5,6],[39,-3],[-1,-6]],[[3620,4017],[-20,3],[-32,50],[2,8],[34,-54],[16,-7]],[[3563,4077],[-27,44],[4,4],[26,-42],[-3,-6]],[[3503,4181],[34,-52],[-4,-4],[-34,52],[-14,22],[4,4],[14,-22]],[[3452,4251],[4,4],[30,-47],[-4,-4],[-30,47]],[[3435,4289],[15,-25],[-4,-4],[-15,24],[4,5]],[[3383,4359],[4,4],[45,-68],[-5,-5],[-44,69]],[[3384,4368],[-4,-4],[-27,43],[4,4],[27,-43]],[[3727,3989],[-50,3],[0,6],[50,-3],[0,-6]],[[3625,4007],[1,6],[48,-21],[-17,2],[-32,13]],[[3761,4251],[-11,-2]],[[3750,4249],[5,13],[5,49]],[[3760,4311],[9,-17]],[[3769,4294],[-8,-43]],[[3815,4148],[-17,19],[-6,25]],[[3792,4192],[4,3],[18,16],[23,-45],[-18,-15],[-4,-3]],[[3774,4196],[-3,-14],[-13,59],[5,3]],[[3763,4244],[11,-48]],[[3325,4390],[-20,30],[-10,-1]],[[3295,4419],[-3,4],[-31,-30],[-29,-22],[-29,58],[-19,37],[22,34],[9,18],[2,4],[13,27],[18,18],[98,-154],[-21,-23]],[[3426,4497],[-71,-75],[-88,140],[58,59],[68,3],[6,-3],[37,-84],[-10,-40]],[[3348,4415],[-24,38],[4,4],[24,-38],[-4,-4]],[[3313,4480],[14,-21],[-4,-5],[-14,22],[4,4]],[[3312,4482],[-4,-5],[-25,40],[4,5],[25,-40]],[[3286,4524],[-4,-5],[-24,37],[5,5],[23,-37]],[[2743,4370],[12,6],[4,-29],[-8,-5],[-8,28]],[[2795,4182],[-25,89],[115,51],[-1,3],[70,31],[53,22],[17,-9],[3,-21],[3,-173],[-1,-46],[-7,-69],[-19,-16],[-16,4],[-83,45],[-89,63],[-20,26]],[[3168,4137],[-11,-24],[-5,17],[16,7]],[[3173,4208],[40,35],[-14,-34]],[[3199,4209],[-5,9],[-17,-16],[-4,6]],[[3401,4021],[-70,-55],[-34,68],[1,5],[68,54],[14,-18],[10,-34],[11,-20]],[[3298,4240],[32,24]],[[3330,4264],[4,-8],[15,-29],[-31,-26],[-15,30],[-5,9]],[[3497,4174],[32,-51],[-37,-29],[-67,136],[24,19],[48,-75]],[[3619,3981],[5,22],[11,-5],[-5,-21],[-11,4]],[[3103,4074],[-2,3],[50,40],[2,-3],[-50,-40]],[[3316,4304],[18,-37]],[[3334,4267],[-4,-3]],[[3330,4264],[-18,37]],[[3312,4301],[4,3]],[[3094,4000],[0,-15],[-30,7],[0,32],[-6,10],[11,6]],[[3069,4040],[25,-40]],[[3436,3949],[-19,-47]],[[3417,3902],[-48,12]],[[3369,3914],[17,42],[-5,-4]],[[3381,3952],[0,5]],[[3381,3957],[27,20]],[[3408,3977],[1,-3],[11,8],[16,-33]],[[3191,3950],[40,33]],[[3231,3983],[18,-44],[4,-22]],[[3253,3917],[-48,-10]],[[3205,3907],[-14,43]],[[3233,3994],[13,10]],[[3246,4004],[3,-5]],[[3249,3999],[-13,-10]],[[3236,3989],[-3,5]],[[3251,4001],[-2,5]],[[3249,4006],[11,10]],[[3260,4016],[18,14]],[[3278,4030],[4,-4],[10,8],[9,-19],[49,-101],[-28,-6]],[[3322,3908],[-27,49],[-32,54],[-12,-10]],[[3503,4029],[-5,-14],[47,-32]],[[3545,3983],[-1,-4]],[[3544,3979],[-11,7],[-6,-28],[-19,11],[-26,23],[-11,-8]],[[3471,3984],[9,14],[-4,14],[-30,30],[-29,5],[-15,-18]],[[3402,4029],[-12,27],[-13,45],[26,21],[48,38],[4,-1],[33,-68],[10,-19],[14,-25],[-9,-18]],[[3605,4010],[12,-4],[-5,-22],[-12,5],[5,21]],[[4179,3953],[14,-2],[-2,-30],[-14,2],[2,30]],[[4229,3843],[2,31]],[[4231,3874],[20,-4],[-5,-28]],[[4246,3842],[-17,1]],[[4270,3904],[30,-3],[-3,-30],[-30,4],[3,29]],[[4224,4100],[-9,2],[-10,-47]],[[4205,4055],[-43,15],[-5,10],[11,41],[22,-8],[19,4]],[[4209,4117],[20,-3]],[[4229,4114],[5,-2]],[[4234,4112],[42,-13]],[[4276,4099],[7,-4]],[[4283,4095],[26,-2],[51,-13]],[[4360,4080],[0,-9],[-52,2],[-26,7],[-58,20]],[[4264,4039],[0,-16],[-24,2]],[[4240,4025],[0,16],[24,-2]],[[4278,4038],[29,-2],[-2,-38],[-29,2],[2,38]],[[4277,4366],[34,-21],[5,-9],[-4,-13],[54,-36],[-3,-7],[-38,-92],[-58,34],[-15,-39],[-52,22],[-1,5],[17,42],[10,25],[38,92],[13,-3]],[[4400,4124],[13,6],[3,-18],[-12,-5],[-4,17]],[[4359,3946],[-3,1],[5,86],[3,0],[-5,-87]],[[4337,3829],[0,10],[16,73],[4,-1],[-15,-71],[-5,-11]],[[4441,3942],[31,-1],[-1,-5],[-30,0],[0,6]],[[4307,3943],[-35,4],[0,5],[35,-4],[46,-5],[0,-6],[-46,6]],[[4235,3951],[1,6],[32,-4],[0,-6],[-33,4]],[[4180,3957],[1,6],[51,-6],[0,-6],[-52,6]],[[4363,3942],[51,0],[0,-5],[-51,0],[0,5]],[[4367,4163],[2,67],[3,-1],[-2,-66],[-3,0]],[[4381,4332],[-6,-59],[-3,0],[7,59],[2,0]],[[4363,4078],[3,48],[4,0],[-3,-48],[-4,0]],[[4136,3969],[34,-3],[0,-7],[-34,4],[0,6]],[[4371,4078],[33,9]],[[4404,4087],[3,-13]],[[4407,4074],[-37,-6]],[[4370,4068],[1,10]],[[4447,4036],[-4,18],[26,11],[6,-17],[-28,-12]],[[4510,4046],[-1,-6],[-24,-5],[-9,30],[23,13],[11,-32]],[[4546,4076],[-26,-12],[-3,9]],[[4517,4073],[-3,8],[27,15]],[[4541,4096],[5,-20]],[[4461,4109],[24,13]],[[4485,4122],[4,3]],[[4489,4125],[10,8],[-8,22],[13,7],[3,-9],[16,8]],[[4523,4161],[2,-7],[3,-12]],[[4528,4142],[-44,-34],[-19,-12]],[[4465,4096],[-4,13]],[[4498,4259],[-47,-26],[-4,13],[47,27],[4,-14]],[[4676,3964],[-70,-14]],[[4606,3950],[-1,9],[64,33],[7,-28]],[[4602,4008],[23,6],[6,-24]],[[4631,3990],[-27,-12],[-2,30]],[[4628,4084],[12,-46],[-26,1],[-7,36]],[[4607,4075],[21,9]],[[4706,4071],[-4,16],[30,13]],[[4732,4100],[4,-15],[-30,-14]],[[4690,4176],[11,5],[12,-40],[-16,-7],[-4,18],[-10,0],[-5,19],[9,4]],[[4687,4175],[3,1]],[[4585,4231],[-8,59],[39,17],[14,-53],[-45,-23]],[[4574,4313],[36,15],[4,-15],[-37,-16],[-3,16]],[[4667,4262],[17,6],[6,13]],[[4690,4281],[19,-11],[39,17],[6,-13],[4,-12],[4,-10]],[[4762,4252],[-29,-13],[4,-14]],[[4737,4225],[-37,-18],[-37,-19],[-6,20],[-4,0]],[[4653,4208],[-30,-11],[-30,-17]],[[4593,4180],[-2,14],[-5,32],[8,8],[40,21],[-14,53],[27,12],[14,-53],[6,-5]],[[4638,4355],[-27,-15]],[[4611,4340],[0,21],[23,10],[4,-16]],[[4742,4307],[-33,-16],[5,15],[-9,2],[-14,-21],[-10,34],[-2,26],[-11,7],[14,6],[2,12],[-4,-9],[-18,3],[-19,-10]],[[4643,4356],[-5,17],[22,9],[20,8],[28,12],[34,-95]],[[4508,3936],[0,5],[40,0],[1,-5],[-41,0]],[[4605,4364],[-1,4],[34,15],[2,-3],[-35,-16]],[[4706,4408],[-40,-17],[-1,3],[39,17],[2,-3]],[[4596,3965],[1,-5],[-45,-23],[-1,5],[45,23]],[[4605,3964],[0,6],[23,12],[2,-5],[-25,-13]],[[4660,3992],[-26,-13],[-1,7],[27,13],[0,-7]],[[4672,3999],[-2,5],[34,17],[1,-6],[-33,-16]],[[4708,4018],[-2,5],[43,22],[1,-5],[-42,-22]],[[4533,4146],[-3,11]],[[4530,4157],[26,20],[28,13]],[[4584,4190],[-3,-9]],[[4581,4181],[-4,-1],[2,-7],[-33,-18],[-13,-9]],[[4456,4106],[3,-11]],[[4459,4095],[-48,-20]],[[4411,4075],[-3,14]],[[4408,4089],[48,17]],[[4755,4038],[-3,12],[38,20],[4,-12],[-39,-20]],[[4872,4113],[-12,6],[86,45],[-5,16],[29,14],[9,-25],[-1,-11],[-77,-37],[-29,-8]],[[4872,4137],[-20,-9],[-8,46],[15,4]],[[4859,4178],[13,-41]],[[4946,4258],[8,-24]],[[4954,4234],[-15,-8]],[[4939,4226],[9,-28],[-15,-8],[-5,-3],[-5,28],[-16,-7],[-8,29]],[[4899,4237],[18,9],[29,12]],[[4987,4163],[-24,70],[19,12],[29,-55],[-3,-16],[-21,-11]],[[4861,4182],[1,30],[27,14]],[[4889,4226],[8,-26],[-36,-18]],[[4797,4371],[-12,-7],[-8,16],[11,10],[-3,9]],[[4785,4399],[19,13],[12,-28],[-19,-13]],[[4879,4029],[-39,53],[2,2],[37,-50],[0,-5]],[[4836,4083],[-39,-19],[-2,4],[38,19],[3,-4]],[[4751,4305],[3,-18],[-28,75],[3,2],[22,-59]],[[4774,4233],[2,1],[25,-68],[-3,-2],[-24,69]],[[4799,4160],[4,2],[14,-38],[-4,-1],[-14,37]],[[4713,4415],[68,45],[1,-4],[-67,-45],[-2,4]],[[4811,4475],[-1,4],[40,27],[2,-4],[-41,-27]],[[4916,4124],[-50,-25],[14,14],[36,11]],[[5091,4051],[-2,6],[-3,-5],[-29,-63]],[[5057,3989],[-23,48]],[[5034,4037],[-2,5]],[[5032,4042],[-25,51],[-21,-20]],[[4986,4073],[-14,18],[24,13]],[[4996,4104],[4,2],[45,26]],[[5045,4132],[2,1],[-23,45],[-18,36],[13,7]],[[5019,4221],[7,-12],[54,28]],[[5080,4237],[2,4],[-13,34]],[[5069,4275],[8,5],[-12,32],[13,6],[4,18]],[[5082,4336],[56,1],[3,4],[-5,66],[29,12],[21,-19],[56,-65],[-20,-43],[-24,-12]],[[5198,4280],[-52,-25],[2,-21],[10,-38],[46,27],[-3,35],[-3,21]],[[5198,4279],[25,11],[5,9]],[[5228,4299],[27,-20],[13,23]],[[5268,4302],[32,-30],[-27,-41],[-8,-12]],[[5265,4219],[-30,3],[13,-35]],[[5248,4187],[-8,-16],[-6,-11],[-2,-8],[-29,-83],[-32,-95],[-28,18]],[[5143,3992],[3,11],[-16,14],[-14,16],[-25,18]],[[4855,4233],[-8,26],[20,10],[7,-9]],[[4874,4260],[11,6]],[[4885,4266],[4,-20],[-12,-23]],[[4877,4223],[-17,-8],[-5,18]],[[4772,4260],[-2,3],[-3,6],[-3,11],[-14,38],[151,88],[21,-42],[1,-2],[6,-10]],[[4929,4352],[-28,-23],[-81,-41],[-19,-12],[-29,-16]],[[4983,4259],[41,59],[11,-11],[-33,-26],[5,-9]],[[5007,4272],[-21,-17],[-3,4]],[[5085,4360],[-4,-21],[-28,10],[11,17],[26,38],[3,-2],[-8,-42]],[[5094,4411],[-31,31],[23,34]],[[5086,4476],[12,-25],[-4,-40]],[[4935,4360],[-4,6],[-5,11],[-19,34],[-22,41],[24,28],[37,49],[39,-47],[4,5],[-24,25],[32,43],[33,46],[41,-32],[3,-3],[3,-2],[5,-4]],[[5082,4560],[-32,-44],[-19,-22],[-96,-134]],[[4962,4552],[15,-15],[-15,-21],[-15,17],[15,19]],[[4967,4558],[14,18],[14,-15],[-13,-18],[-15,15]],[[5008,4578],[-10,-13],[-13,16],[10,13]],[[4995,4594],[13,-16]],[[4913,4524],[11,-13],[-16,-21],[-12,12],[17,22]],[[4855,4511],[49,65],[3,-3],[-50,-66],[-2,4]],[[4906,4578],[34,44],[3,-2],[-34,-45],[-3,3]],[[4295,4363],[2,23]],[[4297,4386],[9,5]],[[4306,4391],[19,-23],[-3,-23]],[[4322,4345],[-27,18]],[[4362,4530],[7,8],[32,16],[15,-10]],[[4416,4544],[-10,-27]],[[4406,4517],[-37,-9]],[[4369,4508],[-7,22]],[[4361,4635],[15,6],[8,-27],[-16,-7],[-7,28]],[[4414,4349],[-14,10],[5,32],[-10,2]],[[4395,4393],[4,29],[33,-20],[-18,-53]],[[4419,4455],[5,19]],[[4424,4474],[28,-15],[-7,-19],[-26,15]],[[4476,4485],[11,-30],[-27,6],[16,24]],[[4520,4644],[-31,-13],[-13,28]],[[4476,4659],[13,15],[20,18],[13,-44],[-2,-4]],[[4591,4481],[5,-18],[18,7],[-7,-11],[5,-17]],[[4612,4442],[-19,-8]],[[4593,4434],[-5,17],[-9,-5],[-6,27]],[[4573,4473],[18,8]],[[4448,4538],[-9,24]],[[4439,4562],[9,5]],[[4448,4567],[8,-25]],[[4456,4542],[-8,-4]],[[4530,4667],[25,10],[-1,7]],[[4554,4684],[19,-7],[33,5],[11,-29]],[[4617,4653],[-21,-9],[5,-18]],[[4601,4626],[-52,-24]],[[4549,4602],[-19,65]],[[4506,4749],[21,7],[9,-35],[11,1]],[[4547,4722],[26,11],[13,-28],[-16,-22],[-57,23],[-10,42],[3,1]],[[4541,4757],[19,9],[8,-19]],[[4568,4747],[-19,-11],[-8,21]],[[4784,4469],[-18,42],[18,11],[17,-41],[-17,-12]],[[4862,4542],[4,-8],[-14,-17],[-41,80],[15,16],[28,-56],[8,-15]],[[4641,4606],[30,-83],[-2,-2],[-31,84],[3,1]],[[5106,4789],[28,3],[4,-23],[-28,-3],[-4,23]],[[5076,4577],[-41,31],[17,32],[44,-36],[-20,-27]],[[5079,4657],[4,8],[18,-15],[-4,-8],[-18,15]],[[5084,4703],[10,-9]],[[5094,4694],[-30,-57],[-10,8],[30,58]],[[5231,4689],[-3,38],[57,7],[3,-31],[-57,-14]],[[5253,4687],[31,8],[14,9],[17,28],[7,30],[13,-5],[21,-9],[17,-7],[-10,-65],[-15,4],[-46,0],[-26,-9],[-18,-7],[-74,-7],[-30,-11],[-15,-11],[-6,10],[24,17],[21,8],[35,5],[40,12]],[[5129,4657],[-4,23],[49,6],[1,-11],[-46,-18]],[[5227,4742],[-1,8],[57,7],[1,-7]],[[5284,4750],[-57,-8]],[[5179,4677],[-4,27],[48,6],[2,-23],[-46,-10]],[[5199,4801],[16,2],[7,-88],[-18,-2]],[[5204,4713],[-5,88]],[[5118,4726],[-2,8],[51,6],[1,-7],[-50,-7]],[[5088,4574],[-10,2],[50,67],[7,-12],[-9,-36],[-19,-39],[-19,18]],[[4870,4690],[17,11],[28,-26],[-4,-11],[20,28],[32,-31],[-29,-39],[-64,-84],[-42,81],[-22,-22],[-10,7],[-165,81],[39,22],[72,65],[36,27],[33,-9],[17,-10],[18,-11],[51,-47],[-27,-32]],[[4657,4743],[-4,7],[-18,-17],[0,16],[-10,16],[4,11]],[[4629,4776],[11,11],[23,-39],[-6,-5]],[[4743,4807],[-10,-19],[6,-10]],[[4739,4778],[-14,-13],[-1,43],[19,-1]],[[4789,4860],[4,-16],[-12,-7],[-18,43],[19,19],[11,-37],[-4,-2]],[[4751,4898],[-7,38],[2,13],[17,-1]],[[4763,4948],[0,-47],[-12,-3]],[[4878,4837],[-18,-12]],[[4860,4825],[-19,35],[17,13],[20,-36]],[[4932,4929],[9,-28]],[[4941,4901],[-84,-24]],[[4857,4877],[54,48],[21,4]],[[4965,4871],[-16,47],[37,2],[5,-7],[-26,-42]],[[4720,4778],[-9,11],[-4,24]],[[4707,4813],[8,2],[5,-37]],[[4696,4846],[3,-13],[15,5],[-3,31]],[[4711,4869],[12,7],[-9,-49],[-39,11],[21,8]],[[4735,4883],[4,-47],[5,-8],[27,-8]],[[4771,4820],[-8,-7],[-36,14],[4,54],[4,2]],[[4913,4956],[0,5],[29,-1],[4,-5],[-33,1]],[[4998,4958],[38,0],[0,-6],[-39,1],[1,5]],[[4849,4957],[1,6],[55,-1],[0,-6],[-56,1]],[[4675,4794],[13,-24],[-24,-21],[-22,38]],[[4642,4787],[16,8],[5,-11],[12,10]],[[4965,4743],[-12,-24],[-17,14],[12,24],[17,-14]],[[5027,4780],[-8,6],[25,48],[8,-6],[-25,-48]],[[5126,4848],[2,19],[20,8]],[[5148,4875],[5,-37],[-27,10]],[[5159,4831],[55,8],[2,-29],[-54,-7],[-3,28]],[[5398,4916],[-11,-19],[-5,18],[16,1]],[[5420,4946],[-1,-18],[-14,-2],[4,20],[11,0]],[[5058,4946],[0,-3]],[[5058,4943],[-8,-34],[-14,11],[3,28],[15,8],[0,-9],[4,-1]],[[5058,4952],[0,5],[30,-1],[0,-5],[-30,1]],[[5081,4867],[-21,-41],[-4,3],[22,43],[3,-5]],[[5029,4777],[26,50],[3,-3],[-25,-51],[-4,4]],[[5003,4717],[-4,3],[28,51],[3,-2],[-27,-52]],[[4974,4663],[-3,2],[27,52],[4,-3],[-28,-51]],[[5126,4955],[74,-2],[0,-7],[-74,2],[0,7]],[[5378,4749],[-16,3],[-10,4],[-16,7]],[[5336,4763],[26,50]],[[5362,4813],[19,36],[21,38],[16,35]],[[5418,4922],[5,9],[6,14],[5,13]],[[5434,4958],[11,38]],[[5445,4996],[3,11]],[[5448,5007],[5,32],[-3,32],[-14,53]],[[5436,5124],[5,2],[21,-75]],[[5462,5051],[6,24]],[[5468,5075],[1,-5]],[[5469,5070],[-6,-21],[-12,-54]],[[5451,4995],[-3,-9],[7,-29],[-17,0],[-1,-12],[23,-1],[4,-23],[-25,-9],[26,6],[1,-9]],[[5466,4909],[-14,-4],[-17,-32]],[[5435,4873],[-1,-3],[24,-14],[-4,-11],[14,-7],[-2,-25]],[[5466,4813],[17,-7]],[[5483,4806],[-9,-34],[-19,1]],[[5455,4773],[-10,-6],[-14,-11],[-29,1],[-23,1],[-1,-9]],[[4976,5114],[19,12],[21,-7],[-17,-28],[-23,23]],[[5056,5115],[-14,-24],[-22,20],[4,7],[32,-3]],[[5219,5041],[16,2]],[[5235,5043],[6,-59],[-12,-4],[-10,61]],[[5234,5083],[-29,-3],[-2,23],[29,2],[2,-22]],[[5326,5006],[7,0]],[[5333,5006],[3,-33],[-13,1],[3,32]],[[5197,5194],[29,0]],[[5226,5194],[1,-15],[-20,-15]],[[5207,5164],[-8,8],[-2,22]],[[5230,5183],[-3,40],[14,7],[6,-36],[-17,-11]],[[5318,5133],[-13,-13]],[[5305,5120],[-12,38],[15,4],[10,-29]],[[5313,5170],[-22,-5],[17,20],[5,-15]],[[5134,5301],[2,-8],[0,-2],[78,7],[5,-13]],[[5219,5285],[0,-3],[1,-14],[2,-41],[-50,-23],[-69,-8],[-3,40],[-7,11],[-2,11],[0,5],[-1,7],[10,4],[2,16],[-7,4],[38,13],[1,-6]],[[5407,5216],[-8,19],[-16,17]],[[5383,5252],[-12,12],[-18,5],[-45,-5],[-78,-34],[-7,36],[-1,16],[0,3],[-4,42],[0,5],[-2,24],[34,24],[39,4]],[[5289,5384],[2,-22],[38,5]],[[5329,5367],[2,-14],[29,4],[-2,-39],[10,-9],[7,2],[21,1],[4,0],[3,-46],[11,-40],[-7,-10]],[[5353,5054],[31,13],[5,-14],[-32,-14],[-4,15]],[[5381,5122],[28,16],[8,-33]],[[5417,5105],[-15,2],[-13,-8],[-8,23]],[[5317,5262],[21,3],[-20,-17],[-1,14]],[[5347,5238],[-10,19],[16,7],[11,-6],[-17,-20]],[[5097,5171],[4,1],[3,-46],[-4,-1],[-3,46]],[[5101,5119],[4,0],[3,-49],[-5,0],[-2,49]],[[5112,5015],[-5,-1],[-3,49],[5,1],[3,-49]],[[5115,4968],[-5,0],[-2,37],[4,2],[3,-39]],[[5263,5239],[12,6],[5,-26],[-14,-11],[-3,31]],[[5271,5066],[19,28],[6,-14],[-25,-14]],[[5502,5142],[-38,4],[-25,17],[-7,-5],[8,-29]],[[5440,5129],[-6,-2]],[[5434,5127],[-24,79]],[[5410,5206],[7,8],[46,13],[6,-25],[-32,-9],[4,-5],[29,8],[7,-33],[-3,-13],[37,1],[-9,-9]],[[4819,5023],[17,-1],[0,-22],[-32,1],[-1,20],[16,2]],[[4874,5114],[4,-20]],[[4878,5094],[-28,-17],[-5,21],[29,16]],[[4887,5166],[-22,-11],[6,-29],[-37,-14],[-8,43],[20,5],[36,21],[5,-15]],[[4861,5242],[5,-9],[-76,-45],[1,16],[70,38]],[[4949,5035],[-13,-35]],[[4936,5000],[-8,9]],[[4928,5009],[-6,6],[3,31],[12,11]],[[4937,5057],[12,-22]],[[4965,4984],[-19,6],[16,26]],[[4962,5016],[10,-10],[-7,-22]],[[4734,5178],[33,25],[16,1],[-49,-26]],[[4788,5215],[35,16],[1,-5],[-34,-18],[-2,7]],[[4751,4964],[37,-1],[-1,-5],[-36,1],[0,5]],[[4795,4963],[49,-1],[0,-5],[-49,1],[0,5]],[[4685,5128],[12,-26],[11,-44],[-5,0],[-18,70]],[[4705,5050],[5,1],[10,-68],[-3,-1],[-12,68]],[[4692,5055],[-10,70]],[[4682,5125],[19,-67],[-9,-3]],[[4718,5131],[-7,-5],[-4,24]],[[4707,5150],[15,13],[-4,-32]],[[5042,5382],[-2,8],[-96,-45],[-39,-27]],[[4905,5318],[-3,-3],[5,-11],[-31,-34],[-15,-13],[-7,24],[-4,-3]],[[4850,5278],[-67,-39]],[[4783,5239],[-1,28]],[[4782,5267],[45,28],[66,46]],[[4893,5341],[3,3]],[[4896,5344],[19,18],[68,34],[-1,2]],[[4982,5398],[59,40],[2,-3],[14,-36],[1,-12],[-16,-5]],[[4939,5281],[37,16],[10,-34],[-40,-6],[-7,24]],[[4965,5337],[10,-34],[-37,-16],[-8,28],[35,22]],[[5004,5354],[23,-84],[-36,-7],[-21,76],[34,15]],[[4902,5280],[7,-15],[-16,-12],[-7,14],[16,13]],[[5081,5288],[2,-13],[-50,-8],[-14,50],[13,6],[6,-24],[43,-11]],[[4922,5156],[-4,17],[-24,-9]],[[4894,5164],[-4,17],[57,33],[6,-32],[-31,-26]],[[5088,5327],[7,-33],[-6,-1],[-20,88],[7,3],[12,-57]],[[5135,5338],[4,-25],[-40,-12],[-5,27],[41,10]],[[5181,5349],[31,8],[1,-14],[-29,-12],[-3,18]],[[5131,5368],[4,-24],[-20,-5],[-3,25],[-5,29],[19,6],[5,-31]],[[5217,5308],[-11,-2]],[[5206,5306],[-18,-1],[-3,21],[28,11],[4,-29]],[[5259,5387],[19,19],[2,-18],[-21,-1]],[[5360,5398],[1,-36],[-26,-3],[-5,30],[30,9]],[[5381,5393],[-7,56],[-4,-1],[-6,36]],[[5364,5484],[7,3],[5,3],[10,-21],[9,-35],[5,-119],[-28,0],[-10,8]],[[5362,5323],[13,19],[11,46]],[[5386,5388],[0,4],[-5,1]],[[5150,5485],[24,22],[-29,34],[-6,13]],[[5139,5554],[4,3],[6,-10],[7,-11]],[[5156,5536],[30,-16],[31,-2],[-8,39]],[[5209,5557],[15,8],[6,-36]],[[5230,5529],[1,-9],[46,8],[-18,44]],[[5259,5572],[48,27],[20,-49],[8,2],[-26,68],[6,24],[-1,10],[-17,-4],[-13,29],[21,20],[0,6],[-5,31],[2,20],[-1,4]],[[5301,5760],[-12,20],[-40,-28]],[[5249,5752],[-5,-2],[0,-2]],[[5244,5748],[-65,-44]],[[5179,5704],[-5,0],[1,-3],[-51,-28],[-26,-27],[-5,10],[-6,-1],[10,-25],[-9,2],[-13,18],[-2,6],[-9,23],[10,6],[10,-24],[43,19],[46,26],[2,7]],[[5175,5713],[54,35]],[[5229,5748],[12,8]],[[5241,5756],[1,-2],[4,6]],[[5246,5760],[36,30],[-1,6]],[[5281,5796],[20,17],[13,32],[-4,8]],[[5310,5853],[7,7],[11,11],[39,39],[21,-34],[3,-3],[1,6],[-20,32],[45,45],[21,-33],[7,-3],[-4,6],[-3,5],[-19,32],[35,34],[79,80],[39,38]],[[5572,6115],[26,-41],[11,10]],[[5609,6084],[6,5]],[[5615,6089],[3,-1],[1,7],[-3,5],[84,84],[6,-7],[3,3]],[[5709,6180],[31,30],[-20,4],[-34,16]],[[5686,6230],[5,6]],[[5691,6236],[37,-15],[14,2],[44,28],[65,60]],[[5851,6311],[3,7]],[[5854,6318],[48,46],[22,18],[-8,31],[-11,36]],[[5905,6449],[5,6],[15,15],[88,95],[40,-71],[3,4]],[[6056,6498],[92,90],[29,28],[-5,10],[14,12]],[[6186,6638],[30,31]],[[6216,6669],[4,-10],[29,31]],[[6249,6690],[105,124]],[[6354,6814],[1,1],[-13,20],[68,66],[-23,-16],[-15,25],[155,150],[21,14],[93,-19],[55,53],[5,-9],[3,4],[-5,9],[33,30],[5,-7],[14,-14],[4,-4],[3,2],[-5,7],[-15,21],[35,31],[11,-20],[4,3],[-38,72],[42,35],[52,52],[40,40],[8,-12],[35,-64],[3,3]],[[6930,7287],[19,24],[47,38],[-59,31],[-68,25]],[[6869,7405],[-5,9],[0,14]],[[6864,7428],[40,-9],[36,-15],[-4,-11],[7,-6],[60,-33],[24,28],[1,3]],[[7028,7385],[2,4]],[[7030,7389],[3,5],[-17,25]],[[7016,7419],[12,15],[-1,1]],[[7027,7435],[-15,27]],[[7012,7462],[-1,3]],[[7011,7465],[-18,26]],[[6993,7491],[11,19]],[[7004,7510],[16,12]],[[7020,7522],[-4,24]],[[7016,7546],[12,6],[-6,28],[17,1],[2,26]],[[7041,7607],[18,7],[-2,7]],[[7057,7621],[-9,41]],[[7048,7662],[-2,9]],[[7046,7671],[-10,40]],[[7036,7711],[8,9]],[[7044,7720],[9,-39]],[[7053,7681],[1,-6]],[[7054,7675],[2,-9]],[[7056,7666],[0,-5]],[[7056,7661],[9,-36]],[[7065,7625],[4,-6],[44,22]],[[7113,7641],[11,-22],[23,19],[21,10],[25,0]],[[7193,7648],[27,-43],[5,2],[3,15]],[[7228,7622],[2,50],[-2,38]],[[7228,7710],[-1,6],[-9,-7]],[[7218,7709],[-33,67],[-17,34]],[[7168,7810],[23,4],[-2,3]],[[7189,7817],[-30,67]],[[7159,7884],[-3,4]],[[7156,7888],[-22,43],[-27,31],[9,-23]],[[7116,7939],[-13,18],[-40,32],[3,29],[-8,27]],[[7058,8045],[4,2],[-9,32],[-17,31],[-3,-3]],[[7033,8107],[-24,35],[-36,40],[-13,8],[-47,8]],[[6913,8198],[2,15],[-15,13],[-22,12]],[[6878,8238],[-1,7],[2,16],[58,-43],[35,-25],[7,0],[63,-79],[10,-16],[32,-58],[-9,-17],[-4,-8],[0,-28],[22,-11],[13,-1],[15,-9],[21,-33],[25,-49],[35,-81],[29,-85],[4,-9],[22,-92],[3,2],[-2,9]],[[7258,7628],[32,29],[-31,13],[-14,15]],[[7245,7685],[-5,31],[14,-4],[21,-15],[55,-18],[3,-2],[3,3]],[[7336,7680],[71,83],[68,66]],[[7475,7829],[36,28]],[[7511,7857],[38,33],[36,25]],[[7585,7915],[2,2],[-18,49],[-41,-52]],[[7528,7914],[12,54],[8,9]],[[7548,7977],[10,20],[10,11]],[[7568,8008],[32,39],[30,-15]],[[7630,8032],[27,48]],[[7657,8080],[2,2]],[[7659,8082],[7,16]],[[7666,8098],[2,3]],[[7668,8101],[39,-1]],[[7707,8100],[1,3]],[[7708,8103],[2,22]],[[7710,8125],[1,2]],[[7711,8127],[5,20]],[[7716,8147],[0,2]],[[7716,8149],[-3,30],[5,15]],[[7718,8194],[3,4],[2,2],[21,28],[6,81],[15,29],[16,8],[-1,32],[5,14],[20,29],[34,7],[16,-1],[6,9],[21,25],[9,4],[29,28],[6,13],[11,20],[32,34],[18,34],[2,16],[-10,22],[25,44],[6,41]],[[8010,8717],[22,-22]],[[8032,8695],[1,-2]],[[8033,8693],[19,-20]],[[8052,8673],[1,-2]],[[8053,8671],[22,-23],[13,29]],[[8088,8677],[4,-4],[5,-6]],[[8097,8667],[-4,0],[-36,-71],[45,-55]],[[8102,8541],[-61,-93],[-60,-91],[-59,-89],[-62,-93],[-58,-87],[-60,-91],[-71,-109],[-61,-33],[-15,42],[-4,10],[-1,3],[-1,-4],[2,-6],[-14,-36],[15,32],[15,-43],[-65,-38]],[[7542,7815],[-3,17],[-2,3],[-30,-31],[-76,-57]],[[7431,7747],[-52,-43],[-36,-37]],[[7343,7667],[-3,-2],[-20,-24],[-60,-44],[-61,-73],[-92,-85],[-2,-15]],[[7105,7424],[8,-55],[7,-18],[9,-2],[1,15]],[[7130,7364],[11,-2]],[[7141,7362],[-3,-27],[-6,1],[-4,-35]],[[7128,7301],[-6,3],[-7,2],[0,-4],[19,-10],[65,-36]],[[7199,7256],[64,-34]],[[7263,7222],[-2,-8],[-18,-46],[-17,-63]],[[7226,7105],[-19,9],[1,-18],[-47,-43],[17,-20],[-6,-16],[41,-6]],[[7213,7011],[-4,-32]],[[7209,6979],[-31,5],[-2,-19],[-26,5],[14,-26]],[[7164,6944],[2,-2]],[[7166,6942],[-33,-10]],[[7133,6932],[-2,12]],[[7131,6944],[-16,55],[19,7],[-6,12],[-20,-10],[-25,-2],[-12,-18]],[[7071,6988],[-3,7],[-2,-2],[3,-11],[26,-55],[-4,-4]],[[7091,6923],[-20,14],[-8,-18],[-18,14],[-24,-50],[-7,-46]],[[7014,6837],[-10,13],[-3,2],[1,-10]],[[7002,6842],[-13,-58],[-16,-81]],[[6973,6703],[-2,-1],[1,-8],[-17,-88],[-18,-100],[-7,-36],[-9,-39],[-7,-8],[77,-44],[8,-2],[-41,-52],[-63,-98],[-53,-82],[5,3],[50,77],[64,98],[41,53],[21,4],[30,27],[1,2]],[[7054,6409],[18,-24],[15,20],[24,-33],[5,11]],[[7116,6383],[7,6]],[[7123,6389],[9,-12],[1,-20],[21,-5]],[[7154,6352],[-4,-14],[0,-2]],[[7150,6336],[-17,5],[-4,-18],[9,-13]],[[7138,6310],[-1,-4]],[[7137,6306],[-15,-31]],[[7122,6275],[-2,-4],[8,-5],[-9,-26],[-5,-14],[-38,-19]],[[7076,6207],[-66,-38],[1,-2],[4,-12]],[[7015,6155],[12,3]],[[7027,6158],[1,-26],[-7,-37],[-14,24],[-4,-6]],[[7003,6113],[-4,-3],[25,-45],[2,-4],[6,-12]],[[7032,6049],[-4,-12],[-29,-31],[18,10],[49,41]],[[7066,6057],[4,-1]],[[7070,6056],[-53,-45],[-19,-12],[-11,-17],[1,-74],[-7,-29]],[[6981,5879],[-5,3],[-11,11],[-2,-3],[4,-22],[-27,-20]],[[6940,5848],[-26,22],[-56,20]],[[6858,5890],[2,30],[7,68],[1,4],[-2,1],[-24,21],[-46,8],[-10,12],[-2,4],[4,8],[8,21],[20,33],[2,3],[26,40],[-3,0],[-2,-2],[-23,-37],[-3,-4],[-36,-59],[-5,1],[-23,31],[0,-3],[23,-32],[2,-2],[7,3],[0,-19],[-30,-6],[-32,-21],[-9,-14],[-9,-39],[-3,-14],[-7,-14],[-80,-1],[-19,-11]],[[6592,5900],[26,27],[-11,0],[-42,-22],[-50,-30]],[[6515,5875],[-2,-1]],[[6513,5874],[-19,-12]],[[6494,5862],[-25,-14],[3,-7]],[[6472,5841],[-136,-78],[-1,2],[-12,-4],[3,14],[1,19],[20,0],[19,12],[17,5],[120,76],[6,3],[20,29],[3,-4],[3,5]],[[6535,5920],[15,21],[-12,27],[-20,50],[-18,44]],[[6500,6062],[73,12],[-5,51],[-88,-14],[20,-49]],[[6500,6062],[-10,-5],[-27,-27],[-29,-49]],[[6434,5981],[-52,-91],[-17,-14],[-39,-14]],[[6326,5862],[-2,14],[-28,88],[-39,125],[-20,63],[150,47],[53,17],[101,33]],[[6541,6249],[11,-59],[7,-9],[19,5],[2,25],[0,50]],[[6580,6261],[107,33],[60,18],[7,-6],[32,10],[-1,8],[69,22],[-71,-21],[-5,-10],[-23,-7],[-8,6],[-31,-10],[-164,-51],[-12,-2],[-67,-21],[-79,-25],[-8,-3],[-150,-47],[-9,28],[49,22],[41,9],[85,50],[118,67],[5,-28],[7,-33],[5,2],[-13,62],[81,45],[72,32],[45,8],[50,-4],[53,16],[41,2],[-20,-72],[4,1],[20,70],[4,0],[36,-6],[3,10],[-24,7]],[[6889,6443],[6,30],[-26,4]],[[6869,6477],[-37,-4],[-36,-10],[10,-24]],[[6806,6439],[-12,-5],[-10,24],[-4,-2]],[[6780,6456],[-36,-3],[-23,-8],[-27,2],[-33,7],[-26,10]],[[6635,6464],[-3,1],[-3,-24],[-59,26],[-76,29],[2,14],[39,54],[-5,4],[-22,-30],[-8,21],[-26,-15],[-9,20],[-29,-16],[7,-19],[19,-50],[-19,-21],[-90,-51],[-6,65],[-15,-9]],[[6332,6463],[-26,9],[-27,-6],[-38,-29]],[[6241,6437],[-3,42],[6,23],[5,-12],[-9,-9],[14,7]],[[6254,6488],[30,14],[20,2],[-6,21],[31,10]],[[6329,6535],[11,-26],[2,2],[-5,14]],[[6337,6525],[27,25],[11,22]],[[6375,6572],[9,11]],[[6384,6583],[21,19],[24,13]],[[6429,6615],[4,1]],[[6433,6616],[22,6],[45,3]],[[6500,6625],[32,-15],[18,-14]],[[6550,6596],[15,-9],[34,-41],[22,26],[12,-12],[8,13]],[[6641,6573],[22,-24],[8,-6],[45,-15],[65,-8],[22,6],[61,33],[29,16],[-4,-1],[-69,-35]],[[6820,6539],[-7,23],[-75,-17],[-38,12]],[[6700,6557],[-5,0]],[[6695,6557],[-34,23]],[[6661,6580],[-10,5]],[[6651,6585],[-61,41]],[[6590,6626],[-6,6],[-12,-2],[-41,6],[-19,3],[-6,23],[-6,1]],[[6500,6663],[-8,15],[7,8],[-52,33]],[[6447,6719],[-2,5],[-1,-2],[-21,-45],[-16,25]],[[6407,6702],[23,28],[-33,15]],[[6397,6745],[-12,1],[-12,-11],[-45,-38],[-51,-49],[-24,-22],[-14,6],[-4,-3],[5,-7],[-37,-36],[0,-8],[-107,-107],[-13,14],[-15,-13],[-7,13],[-3,-2]],[[6058,6483],[-56,-53],[-70,-54],[13,-48]],[[5945,6328],[-5,-5],[-3,0],[-11,45],[-25,-25],[-38,-37],[-33,-32]],[[5830,6274],[-19,-17],[22,-36]],[[5833,6221],[-54,-52]],[[5779,6169],[-24,36],[-38,-33]],[[5717,6172],[-42,-37],[-54,-52],[1,-2],[4,-7],[-51,-49],[-2,3],[-5,-5],[16,-40],[-18,-18],[-13,-12],[-27,-27]],[[5526,5926],[0,8],[-4,-2],[-21,31],[-53,-49]],[[5448,5914],[-3,-4]],[[5445,5910],[-24,-23]],[[5421,5887],[-26,-23],[-22,-22]],[[5373,5842],[-28,-28],[-20,-44],[-5,-41]],[[5320,5729],[-2,-11],[3,2],[185,178]],[[5506,5898],[-4,-20],[23,5],[20,-14],[10,60]],[[5555,5929],[55,-78],[14,-29],[-35,-53],[-11,-17],[-1,-2]],[[5577,5750],[-14,5],[-39,-9],[2,-18]],[[5526,5728],[-206,-72],[7,-26],[23,-75],[26,-55],[-9,-6],[-10,-6],[-11,33],[-12,30],[-7,-2],[12,-32],[6,-33],[-154,-58],[-122,-37],[-6,14],[-15,36]],[[5048,5439],[23,14]],[[5071,5453],[5,2]],[[5076,5455],[46,18],[11,18],[-18,45]],[[5115,5536],[5,3],[20,-44],[10,-10]],[[7077,7409],[4,-9],[18,18],[-2,10],[-20,-19]],[[7054,7020],[-18,-37],[-16,-43],[-9,-44],[15,34],[35,62],[4,3]],[[7065,6995],[1,5],[-10,22],[-2,-2]],[[7106,7312],[-6,30],[-21,57]],[[7079,7399],[-3,8],[-61,-58],[-35,-30],[26,8],[12,12],[8,6],[73,-38],[13,-4],[-6,9]],[[6482,6827],[12,-20],[24,23],[60,61],[38,36],[42,-71],[36,31]],[[6694,6887],[11,10]],[[6705,6897],[2,0]],[[6707,6897],[23,7],[-1,-12],[15,-3],[4,-11]],[[6748,6878],[-4,-6],[20,-33]],[[6764,6839],[26,-38],[64,14],[10,15]],[[6864,6830],[4,2]],[[6868,6832],[17,-144]],[[6885,6688],[-54,-12],[-69,-13],[-24,-5],[-16,2]],[[6722,6660],[-3,22],[-23,39],[-9,4]],[[6687,6725],[-4,1]],[[6683,6726],[-23,8],[-75,27]],[[6585,6761],[9,39],[-44,-39],[-36,-8],[2,-13]],[[6516,6740],[-38,-5],[-28,1],[-5,-11],[5,2]],[[6450,6727],[86,-59],[9,-4]],[[6545,6664],[48,-33]],[[6593,6631],[5,-4],[7,2]],[[6605,6629],[72,-44],[33,-22],[23,-4],[-2,22]],[[6731,6581],[9,1],[-6,56],[28,6],[-1,15]],[[6761,6659],[46,9],[78,14],[10,-77],[-2,-18],[-1,-5],[2,6]],[[6894,6588],[50,14],[19,90],[-2,3]],[[6961,6695],[8,7],[-2,4]],[[6967,6706],[28,143]],[[6995,6849],[3,7],[-1,2],[-57,59]],[[6940,6917],[33,24],[18,-13],[21,28],[-11,24],[27,28],[8,15],[9,-9],[8,10]],[[7053,7024],[0,6],[-16,17],[-39,54],[-17,42],[1,17],[-28,75],[-13,28],[15,17],[25,23],[18,16],[-22,-3],[-45,-44],[-52,-47],[-15,-10],[-63,-65],[-41,-39],[-81,-83],[-95,-90],[-111,-107],[-31,-29],[-54,-52],[11,-2],[5,5],[77,74]],[[5607,5591],[9,10],[25,11]],[[5641,5612],[2,14],[17,29],[-12,15]],[[5648,5670],[-23,-21],[-37,-41],[-17,-19],[-11,0]],[[5560,5589],[-4,18],[-66,-9],[-34,-14],[-46,-23],[-39,-15]],[[5371,5546],[-2,0],[19,-35],[-11,-11],[-20,41],[-6,15]],[[5351,5556],[-6,27],[13,11],[52,26],[12,3],[-2,4],[31,21],[9,13],[30,25],[20,9],[19,-1],[20,24],[0,9]],[[5549,5727],[13,4],[17,11],[13,20],[5,8],[25,37],[9,13],[22,-30],[5,-16],[17,-7],[37,-52],[36,-22],[35,4],[37,43],[16,32],[17,45],[14,36],[28,92],[2,25],[-3,87],[17,73],[9,25],[-11,17],[-18,49],[31,48],[-9,14],[30,30],[7,5],[37,37],[4,7],[56,54],[23,21],[24,21],[29,-36],[10,-29]],[[6133,6393],[-41,-27],[-11,-11],[-25,-47],[-22,-62],[-19,-32],[-10,-15],[-33,-34],[-10,-21],[13,-6],[-5,-24],[-15,-30],[-18,8],[-16,-52],[12,-55],[45,-7]],[[5978,5978],[1,-15]],[[5979,5963],[46,-20]],[[6025,5943],[-30,-65],[-24,-10],[-5,9],[-27,12],[13,-13],[14,-2],[10,-43],[-12,-24],[-52,-65],[-30,-41],[-3,-5],[-75,-100],[-22,-30],[-15,25],[-3,-3]],[[5764,5588],[-8,13],[-18,-12],[-8,8],[-35,-36],[22,-34],[17,-26]],[[5734,5501],[-18,-23],[-14,31],[-11,26]],[[5691,5535],[-5,12],[-26,-18],[-20,-4],[5,-13],[-24,-17],[-24,-31],[-38,-27],[-1,4],[-15,-21],[-1,-19],[-59,-34],[7,-41]],[[5490,5326],[-25,-2]],[[5465,5324],[-4,30],[-13,6],[-13,-4],[1,-26],[-14,-1],[18,-7]],[[5440,5322],[-32,-2],[-5,35],[-3,47]],[[5400,5402],[19,1],[-5,14],[10,12],[26,13]],[[5450,5442],[30,18],[39,16],[2,24],[-11,21],[-16,54]],[[5494,5575],[10,4]],[[5504,5579],[8,-30],[16,-26],[13,18],[-10,16],[-6,26]],[[5525,5583],[25,1]],[[5550,5584],[8,-2],[8,-30],[24,9],[17,30]],[[5378,5534],[17,7],[4,-19],[-9,-9],[-12,21]],[[4119,5542],[44,-29],[-23,-56],[-43,16],[-38,13],[12,23],[37,41],[11,-8]],[[4055,5623],[-14,-13],[-32,-12],[-2,27],[31,22],[17,-24]],[[4088,5601],[-5,29],[-9,3],[8,5],[-4,29],[-4,39]],[[4074,5706],[27,12],[8,-44],[6,-31],[10,-54],[-2,-8],[-24,-10],[-14,20],[3,10]],[[4175,5635],[-47,-50],[-10,59],[57,2],[0,-11]],[[4347,5574],[-40,-11]],[[4307,5563],[-4,19],[42,7],[2,-15]],[[4224,5615],[17,21]],[[4241,5636],[14,-5],[-6,-25],[-25,9]],[[4293,5577],[-18,7]],[[4275,5584],[-4,41]],[[4271,5625],[17,-6],[5,-42]],[[4135,5650],[-17,-1],[-5,25],[15,1]],[[4128,5675],[7,-25]],[[4174,5660],[-44,16],[-2,38]],[[4128,5714],[22,-6],[24,2],[0,-50]],[[4327,5415],[7,-28],[-64,23],[5,23],[52,-18]],[[4238,5724],[36,-4],[-15,-8],[-7,-26],[-22,3],[8,35]],[[4305,5615],[40,-21]],[[4345,5594],[-42,-7],[2,28]],[[4328,5695],[-38,2]],[[4290,5697],[-8,20],[46,-22]],[[4106,5559],[-3,14],[20,5],[-17,-19]],[[4447,5444],[-31,-60]],[[4416,5384],[-27,52],[53,16],[5,-8]],[[4576,5623],[24,-1],[-5,-19],[4,-27],[-5,-1],[-5,26],[-9,3],[-4,19]],[[4611,5651],[-10,12],[-3,17],[30,12],[8,-7]],[[4636,5685],[4,-25],[-29,-9]],[[4435,5520],[-7,-2],[-22,89],[-7,35]],[[4399,5642],[6,1],[13,-62],[18,5]],[[4436,5586],[19,6]],[[4455,5592],[1,-5]],[[4456,5587],[-36,-11],[15,-56]],[[4545,5702],[-5,-25],[-27,-8],[-22,5]],[[4491,5674],[-7,40],[-2,7],[31,41]],[[4513,5762],[10,-5],[46,11]],[[4569,5768],[6,-14],[33,-22],[23,-4],[-1,-8],[-27,4],[-60,-11],[2,-11]],[[4579,5649],[-8,43],[8,3],[8,-44],[-8,-2]],[[4574,5636],[17,11],[8,-14],[-25,3]],[[4724,5390],[-33,10],[-11,58],[15,4]],[[4695,5462],[11,-7],[6,-39],[12,-26]],[[4732,5385],[10,3],[-2,11]],[[4740,5399],[-11,74],[15,5],[15,-86],[2,-20],[-8,-7],[-21,20]],[[4618,5444],[-8,42],[-10,12],[23,7],[-6,-18],[7,-41],[-6,-2]],[[4601,5570],[7,-41],[11,-1],[2,-14],[-23,-6],[3,19],[-7,41],[7,2]],[[5014,5665],[34,14],[-15,38],[-5,-2]],[[5028,5715],[-2,8],[-26,-9],[-14,45],[-4,14],[-30,-6],[-1,6],[45,18],[18,19],[5,-3],[0,-31],[9,-17],[42,-104],[2,-5],[9,-13],[22,-15],[4,0],[-3,6],[-1,2],[-4,12],[27,27],[51,30],[10,-20],[25,-50],[-19,-17],[-17,-15],[-35,-31],[-2,-1],[-4,-3],[-11,8]],[[5124,5570],[-13,31],[-14,-9],[21,-47]],[[5118,5545],[-5,-3],[-23,54],[-24,52],[3,-23],[-205,-81],[-3,14],[-9,27],[24,14],[167,70],[21,-17],[-11,28],[-39,-15]],[[5075,5585],[-30,-15],[16,18],[-4,14],[17,12],[7,-13]],[[5081,5601],[-6,-16]],[[4727,5687],[12,3],[94,37],[1,-6],[1,-3],[-83,-34],[-45,-9],[-3,3],[3,7],[20,2]],[[4948,5765],[1,-3],[-109,-42],[-1,3],[-2,5],[109,43],[2,-6]],[[4329,5768],[-20,6],[-51,24],[-8,45],[90,-32],[-11,-43]],[[4410,5752],[1,-12]],[[4411,5740],[-3,-6],[64,-8],[4,-5],[2,-6]],[[4478,5715],[-61,4],[-32,-5]],[[4385,5714],[-1,7],[3,22],[23,9]],[[4471,5863],[14,-6],[8,-45]],[[4493,5812],[-23,-2],[-8,9],[-6,31],[15,13]],[[4775,5836],[-11,-20],[-28,-9],[-10,5],[6,13],[43,11]],[[4371,5980],[0,-8],[-23,0],[0,8],[23,0]],[[4526,5930],[-5,12],[31,-1],[-26,-11]],[[4316,6012],[-9,0],[0,22],[9,-1],[0,-21]],[[4465,6121],[7,-29],[-5,-44],[-97,16],[10,73],[85,-16]],[[4407,6001],[3,50]],[[4410,6051],[61,-8],[3,30]],[[4474,6073],[56,-78],[2,-6],[-37,15],[-18,3],[-70,-6]],[[4276,5729],[-36,3],[2,7],[36,-3],[-2,-7]],[[4327,5716],[3,-8],[0,-6],[-47,21],[1,3],[1,7],[3,2],[39,-19]],[[4381,5713],[-39,-6]],[[4342,5707],[-4,7],[-1,8]],[[4337,5722],[6,-1]],[[4343,5721],[37,-2],[1,-6]],[[4476,5757],[5,-24],[-8,-1],[-5,25],[8,0]],[[4467,5800],[8,-36],[-9,0],[-7,35],[8,1]],[[4629,5786],[4,-43],[-12,40],[8,3]],[[4614,5826],[7,3],[7,-38],[-8,-2],[-6,37]],[[4536,5918],[16,-85],[-5,-1],[-14,82],[3,4]],[[4516,5958],[26,-5]],[[4542,5953],[6,-2]],[[4548,5951],[0,-6],[-26,1],[-6,12]],[[4515,5933],[-74,-13],[-1,6],[73,13],[2,-6]],[[4402,5914],[0,5],[32,6],[1,-5],[-33,-6]],[[4347,5905],[0,5],[26,5],[0,-6],[-26,-4]],[[4245,5888],[-1,4],[42,8],[0,-5],[-41,-7]],[[4328,5758],[-24,-9]],[[4304,5749],[-26,5],[-7,28],[57,-24]],[[4540,5927],[15,-1],[-31,-9],[-2,10],[18,0]],[[4635,5717],[18,-1],[25,-24],[22,-7],[-3,-7],[-27,12],[-20,20],[-15,7]],[[4221,5878],[4,-24],[-29,-4],[-8,-18],[4,41]],[[4192,5873],[29,5]],[[4186,6001],[-90,36],[7,51],[11,76],[28,-6],[8,-2]],[[4150,6156],[-2,-14]],[[4148,6142],[-5,-36],[22,-5],[-3,-20],[35,-3],[11,-8]],[[4208,6070],[8,-32]],[[4216,6038],[-14,0],[10,-34],[-26,8],[0,-11]],[[4034,5654],[-8,-13],[-19,-10],[1,10],[22,18],[4,-5]],[[4100,5726],[-27,-14],[-23,-38],[-13,-16],[-4,5],[26,46],[18,17],[23,6],[0,-6]],[[4158,5875],[-41,-6],[0,4],[41,6],[0,-4]],[[4234,5887],[-54,-9],[1,5],[42,7],[11,-3]],[[4172,5881],[-44,42],[-4,10],[38,-37],[10,-15]],[[3951,5940],[0,4],[-3,12]],[[3948,5956],[-12,48]],[[3936,6004],[0,2],[-42,91],[6,5],[12,9]],[[3912,6111],[18,-63]],[[3930,6048],[15,-40]],[[3945,6008],[1,-2],[1,0]],[[3947,6006],[10,-46],[5,-7]],[[3962,5953],[-3,0],[1,-7],[5,1],[31,5],[3,1],[-3,9],[15,134],[13,-2],[15,-2],[9,-1]],[[4048,6091],[11,-85],[12,-34]],[[4071,5972],[2,-6],[2,0]],[[4075,5966],[2,1]],[[4077,5967],[41,-38],[-22,-189],[-27,-10],[-30,37],[-4,-4]],[[4035,5763],[-25,91],[-7,-10],[2,-35],[1,-56],[-3,-43]],[[4003,5710],[-2,-7],[2,-6],[23,-33],[-25,-20],[-15,-12]],[[3986,5632],[3,77],[-10,12],[-1,16],[-20,-4]],[[3958,5733],[-14,38]],[[3944,5771],[4,16],[-10,32],[3,27]],[[3941,5846],[7,64],[5,15],[-2,15]],[[4105,5733],[20,-2],[29,-9],[21,2],[0,-7],[-26,-1],[-44,10],[0,7]],[[4231,5738],[-2,-8],[-50,-13],[0,7],[52,14]],[[2347,4582],[-7,1],[-81,17],[10,20],[67,152],[1,19],[36,4],[142,-3],[80,0],[64,-11],[20,-188],[-4,-20],[-26,-47],[-42,3],[-195,40],[-65,13]],[[2375,4799],[-34,-3]],[[2341,4796],[-2,43],[37,3],[-1,-43]],[[2439,4882],[20,-5],[-3,-18],[-20,3],[3,20]],[[2746,4318],[-49,-18],[-23,-17],[5,-34],[11,-18],[110,-76]],[[2800,4155],[5,-4],[81,-59],[66,-38],[2,-1],[5,-3],[-10,-36],[-20,-12],[-52,-20],[-51,-15],[-38,-7],[-18,-11],[-40,-17],[-38,-50]],[[2692,3882],[27,43],[-4,1]],[[2715,3926],[-44,18],[-1,-2],[-7,-23],[-42,19]],[[2621,3938],[4,12],[3,19],[37,-17],[5,11],[-42,19],[-10,-42]],[[2618,3940],[-12,20],[3,12],[-24,17],[-9,-33],[-56,34],[-1,-71]],[[2519,3919],[-29,0],[0,-18],[29,1]],[[2519,3902],[6,-17]],[[2525,3885],[-2,-3],[56,-29],[14,1],[7,-8],[-47,-68]],[[2553,3778],[-2,2],[-55,53],[-43,-4],[-28,-36],[34,-36],[24,-60]],[[2483,3697],[-4,1],[-22,4]],[[2457,3702],[4,23],[-9,30],[-26,28]],[[2426,3783],[0,1]],[[2426,3784],[-4,5],[-22,31],[-7,10]],[[2393,3830],[-1,2]],[[2392,3832],[-13,18]],[[2379,3850],[-1,1]],[[2378,3851],[-5,8],[-1,0],[-5,-15],[-11,-39]],[[2356,3805],[-25,10]],[[2331,3815],[10,32],[11,32],[-7,4]],[[2345,3883],[-1,1]],[[2344,3884],[-16,7],[-35,10],[-29,1]],[[2264,3902],[-2,0]],[[2262,3902],[-13,0],[-49,2]],[[2200,3904],[-1,0]],[[2199,3904],[-35,3]],[[2164,3907],[-21,0]],[[2143,3907],[-23,2],[-29,-11],[3,-12]],[[2094,3886],[1,-1]],[[2095,3885],[9,-22]],[[2104,3863],[-1,-2],[23,-62]],[[2126,3799],[-36,-23]],[[2090,3776],[-18,6],[-24,28],[-16,25],[-16,26],[-8,52],[-11,79],[-22,178],[-9,71],[-12,101],[-19,158],[-1,11],[-1,12]],[[1933,4523],[33,20]],[[1966,4543],[53,21],[33,4],[53,-6],[39,-5],[86,-21],[36,-11]],[[2266,4525],[-3,-55],[-7,-25],[-6,-19],[27,-12],[16,30],[11,5],[39,5],[10,13],[14,-10],[14,1],[20,47],[12,29],[1,1],[1,7],[-137,26],[0,-1],[-22,6]],[[2256,4573],[0,4],[3,14],[0,3],[384,-77],[0,-3],[-7,-12],[-3,-4],[-3,-7],[-6,-11],[-3,-4],[-32,-57],[-30,-34],[-1,-27],[15,-10],[18,17],[-1,29],[12,34],[28,50],[7,13],[3,5],[2,5],[7,12],[4,4],[48,-8],[2,-6],[3,-16],[1,-3],[20,-89],[7,-23],[12,-54]],[[2693,4542],[-17,11],[-9,-5],[18,32],[8,-38]],[[2707,4532],[-7,20],[21,-15],[-14,-5]],[[2661,4524],[9,24],[12,2],[13,-14],[4,-20],[-38,8]],[[2708,4515],[5,21],[12,-10],[1,-15],[-18,4]],[[2447,4920],[1,5]],[[2448,4925],[65,-7],[38,-9]],[[2551,4909],[-1,-8]],[[2550,4901],[-23,7],[-80,12]],[[2985,4627],[-10,-8],[-21,47]],[[2954,4666],[17,10]],[[2971,4676],[14,-44]],[[2985,4632],[0,-5]],[[2727,4944],[-27,-16],[10,13],[-4,13],[21,-10]],[[2753,4930],[-32,6],[8,7],[24,-13]],[[2831,4747],[1,-34],[-19,0],[-1,39]],[[2812,4752],[19,-5]],[[2796,4760],[13,88],[12,40],[-93,33]],[[2728,4921],[-3,9],[27,-2],[33,-15],[37,-21],[26,-13],[108,-61],[48,-27]],[[3004,4791],[-6,-25],[-30,-9],[18,-34],[-5,-12],[-6,-13],[33,14]],[[3008,4712],[3,-14],[-45,-19],[-18,-2],[-1,3],[-21,39],[-33,19],[-97,22]],[[2948,4792],[-135,30],[-6,-22],[136,-30],[5,22]],[[2701,4956],[7,-16],[-11,-8],[-13,6],[-7,27],[24,-9]],[[2937,5107],[40,-5]],[[2977,5102],[-5,-21],[18,-7]],[[2990,5074],[-18,-56],[-22,20],[-67,38],[4,24],[0,30]],[[2887,5130],[48,-8]],[[2935,5122],[2,-15]],[[2881,5148],[-22,0]],[[2859,5148],[1,27],[23,-8],[-2,-19]],[[2977,4549],[20,-7],[-14,-7],[12,-20]],[[2995,4515],[-13,-15],[-5,49]],[[3127,4670],[0,-19],[-12,-14],[-21,-12],[-19,-19],[-10,19],[16,18],[46,27]],[[2999,5149],[3,28],[20,-4],[-9,-29],[-14,5]],[[2889,5214],[-12,3],[-9,21],[3,21],[-4,14],[-22,5],[1,15]],[[2846,5293],[0,6],[-25,1],[-2,17],[3,8],[33,-8],[56,13],[-3,-15],[-7,-30],[-12,-71]],[[2376,5210],[1,6],[-58,17],[-3,-11]],[[2316,5222],[-22,11],[-22,18],[-36,15]],[[2236,5266],[0,1],[-32,11],[43,-44],[44,-22],[29,-10]],[[2320,5202],[-11,-13]],[[2309,5189],[-18,3],[-7,-32],[1,24],[-17,-25],[-15,-23],[-9,-4],[-12,-11],[-12,-20],[0,-5],[-2,-35]],[[2218,5061],[-86,5],[2,48],[5,28],[2,13],[-3,1],[-8,-65]],[[2130,5091],[-63,3],[-57,0],[-20,0]],[[1990,5094],[-2,19],[-3,69],[47,18],[1,4],[-50,-20],[4,-108],[-1,-27],[-36,-31],[-8,39],[-2,-2],[7,-39],[-25,-11],[-91,-2],[-36,11],[-63,34],[0,19],[9,4]],[[1741,5071],[-3,80],[7,1],[4,-48],[6,0],[-3,47],[-27,2],[3,-85],[2,0]],[[1730,5068],[0,-19],[-23,13],[-3,89],[-2,-1],[3,-87],[-114,62],[-25,7],[-2,-3],[-45,-16],[-36,-8],[-27,1],[-38,13],[-11,0],[-6,0],[-25,0],[17,8],[-21,79],[-2,14],[10,11],[21,-29]],[[1401,5202],[17,-14],[75,12],[45,12],[0,4],[42,7],[59,-6],[72,-23],[0,-7],[30,-11]],[[1741,5176],[-42,-5],[-75,-5],[-74,0],[-27,4],[-2,-8],[74,-3],[49,1],[115,11],[60,12],[27,10],[69,43],[-9,63],[0,18],[92,0],[11,5],[5,21],[2,9]],[[2016,5352],[46,-12],[55,-20],[121,-43]],[[2238,5277],[-3,-1],[8,-1]],[[2243,5275],[51,-17],[24,-5],[-17,15],[-64,21],[-2,-2]],[[2235,5287],[-8,21]],[[2227,5308],[13,-15],[38,-11],[47,-20],[3,10],[40,-28],[20,91],[15,-4],[5,25],[-1,23],[26,-7],[-2,37],[28,3]],[[2459,5412],[2,-23],[20,-7],[2,8],[30,-11]],[[2513,5379],[-26,-115],[-8,-13],[-53,-28],[-19,-10],[-31,-3]],[[2094,5380],[-8,-8],[-11,13],[-46,10]],[[2029,5395],[3,11],[31,-5],[31,-21]],[[2205,5332],[0,0]],[[2339,5465],[0,3],[83,12],[0,-3],[-83,-12]],[[2537,5009],[24,-4],[11,15],[-3,15],[38,-41],[-4,-13],[-66,28]],[[2631,4969],[-26,11],[4,12],[22,-23]],[[2669,4976],[-33,11],[-8,10],[42,-18],[-1,-3]],[[2645,4964],[-4,13],[26,-9],[-11,-8],[-11,4]],[[2519,5382],[23,-8]],[[2542,5374],[-22,-70],[3,-7],[-24,3],[20,82]],[[2545,5386],[-12,5],[5,20],[-1,32],[21,-8],[10,11]],[[2568,5446],[-16,-34],[-7,-26]],[[2920,5343],[27,-4]],[[2947,5339],[2,-5],[57,-19],[29,5],[-1,-7],[0,-14],[-14,-75],[-37,8],[-69,13]],[[2914,5245],[13,62]],[[2927,5307],[19,-4],[50,-17],[1,5],[-54,19],[-29,7],[2,14],[4,12]],[[3162,5340],[40,12],[11,-54]],[[3213,5298],[-32,-11],[-7,3],[-12,50]],[[3197,5367],[3,-7],[-46,-20],[-40,-26],[-4,6],[-2,6],[35,23],[52,24],[2,-6]],[[3303,5459],[5,-2],[4,-4],[-20,-18],[-27,-14],[-33,-41],[-28,-18],[-2,7],[34,33],[28,34],[39,23]],[[3311,5422],[-4,18],[12,12],[43,-16],[16,-6],[1,-11],[-37,-30],[-22,-8],[-9,41]],[[3232,5374],[11,10],[8,-29],[-11,-17],[-8,36]],[[3246,5389],[12,16],[11,-36],[-16,-11],[-7,31]],[[3185,5404],[7,-28],[-32,-14],[-7,28],[32,14]],[[3001,5390],[26,0],[0,-13],[-25,-1],[-1,14]],[[3070,5378],[-2,16],[-16,-1],[4,20],[17,8],[13,-45]],[[3086,5376],[-16,2]],[[3136,5438],[10,-42],[-22,-10],[-11,44],[23,8]],[[2716,5424],[-32,11],[8,31],[31,-11],[-7,-31]],[[2774,5403],[3,15],[23,-9],[-3,-14],[-23,8]],[[2812,5467],[5,28]],[[2817,5495],[16,16],[6,-13]],[[2839,5498],[-6,-4],[-3,-34]],[[2830,5460],[-18,7]],[[2985,5484],[-4,-11],[-21,-9],[-11,21]],[[2949,5485],[2,11],[9,41],[19,-6]],[[2979,5531],[-3,-31],[-8,-10],[17,-6]],[[2817,5628],[-12,4],[5,17],[11,-5],[-4,-16]],[[2770,5405],[-4,1],[9,42],[5,-1],[-10,-42]],[[2786,5476],[-4,2],[7,30],[5,-2],[-8,-30]],[[2795,5511],[-5,2],[13,56],[4,-7],[-12,-51]],[[2810,5503],[8,10],[-6,19],[11,37]],[[2823,5569],[18,-3],[-11,-50],[-20,-13]],[[2645,5568],[-23,-66]],[[2622,5502],[-11,-39],[-9,3],[-4,2],[-10,3],[20,48],[29,87],[6,25],[11,-4],[-9,-59]],[[2656,5706],[0,-74],[-12,5],[4,30],[-2,43],[10,-4]],[[3251,5611],[-3,13],[13,8],[5,-12],[-15,-9]],[[3342,5656],[15,-65],[-50,-20],[-11,56],[46,29]],[[3385,5707],[6,13]],[[3391,5720],[12,-7],[35,4]],[[3438,5717],[-1,-17]],[[3437,5700],[-3,-6],[-43,2],[-6,11]],[[3192,5509],[-12,-9],[-15,19],[11,15],[15,-8],[1,-17]],[[3381,5654],[-7,21],[23,11],[47,-2],[19,-7]],[[3463,5677],[-6,-15],[-29,13],[-15,1],[-32,-22]],[[3360,5507],[-40,-9],[-12,66],[3,2]],[[3311,5566],[33,-34],[16,-25]],[[3294,5460],[-44,-35],[-29,-35],[-22,-10],[-15,61],[-2,17],[10,39],[102,-37]],[[3407,5775],[-5,16],[26,14],[5,-16]],[[3433,5789],[-26,-14]],[[3017,5676],[3,25],[21,-5],[-3,-25],[-21,5]],[[3211,5727],[2,14],[12,-2],[0,-13],[-14,1]],[[2714,5700],[6,18],[15,-24],[-21,6]],[[2710,5812],[3,-27],[15,-12],[20,-7],[18,-25],[-9,-19],[-14,8],[-9,17],[-20,23],[-20,8],[-8,12],[1,22],[21,1]],[[2708,5813],[2,-1]],[[2708,5821],[-17,12],[4,20],[22,18],[13,33],[12,-2]],[[2742,5902],[-1,-27],[-13,-22],[-18,-18],[-1,-14]],[[2709,5821],[-1,0]],[[2647,5764],[7,-42],[-11,4],[-21,111],[6,-2],[7,-2],[12,-69]],[[2414,5862],[19,3],[1,-24],[-18,-1],[-2,22]],[[1925,5401],[-2,9],[19,48],[13,9]],[[1955,5467],[29,-34],[-16,-18],[-43,-14]],[[1962,5484],[-1,1],[-6,15]],[[1955,5500],[-56,46],[-34,32]],[[1865,5578],[13,18],[-20,29],[-14,-9],[16,-45],[3,-20]],[[1863,5551],[1,-5]],[[1864,5546],[-2,-17],[3,-55],[6,-16],[-10,-55]],[[1861,5403],[-3,-5],[39,-7],[13,-6],[-21,-5],[-60,-7],[-44,-4],[-1,42],[0,16],[-2,-1],[1,-57],[-87,-9],[-49,6],[-3,1],[-2,-5],[31,-11],[35,0]],[[1708,5351],[46,-4],[38,-15]],[[1792,5332],[4,-1],[2,29],[49,6],[56,8],[43,10],[42,15],[21,14],[-1,4],[72,64],[29,42],[10,23]],[[2119,5546],[29,94],[-29,-6],[-16,-13],[-58,-97]],[[2045,5524],[-8,-15]],[[2037,5509],[-25,-33],[-21,-47],[-1,-21],[-50,-14],[-26,-4],[-1,6],[25,7],[35,11],[17,19],[20,50],[11,13],[22,59],[33,49],[23,65],[4,2],[45,-20],[3,-2],[8,-4],[4,-1]],[[2163,5644],[-41,-122],[-11,-22],[9,-11]],[[2120,5489],[-14,-7],[-41,-41],[-10,-17],[-38,-11],[-4,0],[-12,-12],[26,5],[-14,-53],[-1,-9],[-8,-14],[-15,-10],[-85,0],[-32,-10],[-76,-1],[0,8],[-4,1]],[[1792,5318],[0,2],[-79,-1],[-39,3],[1,-7],[-31,0],[0,-8]],[[1644,5307],[-49,2],[-93,-1],[-3,2]],[[1499,5310],[-48,-1],[-13,2],[0,-12]],[[1438,5299],[-30,0],[1,11],[-4,0],[0,-2]],[[1405,5308],[-46,-5]],[[1359,5303],[-5,-1]],[[1354,5302],[-19,-9],[38,-53]],[[1373,5240],[-6,-16],[-3,-3],[-28,24],[-15,-5],[0,1],[-20,37],[-30,-10],[0,-6],[-58,-5],[-5,4],[0,-4],[-53,-10],[1,11],[-6,0]],[[1150,5258],[-41,-3]],[[1109,5255],[-22,-2]],[[1087,5253],[-79,-7]],[[1008,5246],[0,2],[-4,-2]],[[1004,5246],[-78,-8],[-4,-2]],[[922,5236],[-22,-8],[-62,-9],[-33,-9],[-19,-25],[-5,-25]],[[781,5160],[-2,0]],[[779,5160],[12,39]],[[791,5199],[3,4]],[[794,5203],[10,10],[23,8],[-66,-7],[-28,-10],[1,3],[-36,-10]],[[698,5197],[-74,-21],[0,10],[0,2]],[[624,5188],[21,10]],[[645,5198],[7,-2]],[[652,5196],[80,30],[-2,8]],[[730,5234],[-15,18],[-20,-8],[-13,19],[-10,-4],[-7,19],[-1,42],[-2,1]],[[662,5321],[-10,7]],[[652,5328],[-2,1]],[[650,5329],[-13,7]],[[637,5336],[-1,0],[-23,7],[-152,16],[-37,-3],[1,15]],[[425,5371],[108,-11]],[[533,5360],[4,-1]],[[537,5359],[34,-4],[2,43]],[[573,5398],[23,-10]],[[596,5388],[-3,-35],[43,-2]],[[636,5351],[1,-1]],[[637,5350],[59,-6]],[[696,5344],[41,-5],[28,-2]],[[765,5337],[2,0]],[[767,5337],[21,-2],[1,76]],[[789,5411],[153,-48],[-4,-44],[2,0]],[[940,5319],[69,-11]],[[1009,5308],[6,-2],[0,2]],[[1015,5308],[51,-1],[53,-7],[1,7]],[[1120,5307],[33,-6],[49,9],[4,-25],[1,-6],[4,2],[1,26],[54,9],[3,-31],[10,2],[1,30],[27,12],[12,11]],[[1319,5340],[14,-39],[9,3]],[[1342,5304],[13,5]],[[1355,5309],[39,14]],[[1394,5323],[5,-1],[5,1]],[[1404,5323],[21,3],[9,13],[-5,14],[-44,9]],[[1385,5362],[1,2],[-7,17],[42,29],[6,-19],[20,8]],[[1447,5399],[3,-14],[25,2],[12,-13]],[[1487,5374],[12,-44],[2,2]],[[1501,5332],[41,4],[72,0],[20,24],[-8,11]],[[1626,5371],[13,-8],[2,5],[0,4]],[[1641,5372],[11,45],[-4,23]],[[1648,5440],[-2,6],[-1,22],[-36,31],[3,53],[7,84],[21,112],[22,62],[8,29],[12,45],[27,17]],[[1709,5901],[-18,-13],[18,-31],[18,15]],[[1727,5872],[3,-3],[6,-11],[4,-6],[18,-27],[10,-9],[34,-16],[18,-7],[6,-14]],[[1826,5779],[0,-31],[8,-32],[110,-123],[-19,-30],[-69,73],[56,-62],[18,-23],[20,-18],[6,-15],[2,0],[3,9],[-34,34],[20,29],[32,-41],[1,13],[16,23],[7,-6]],[[2003,5579],[4,-5],[9,-3],[35,12],[5,-3],[-20,-30],[-13,-39],[-22,-36],[-16,-40],[-28,32],[5,17]],[[1043,5259],[37,7]],[[1080,5266],[4,2],[-46,19]],[[1038,5287],[-23,13]],[[1015,5300],[-9,-2],[-59,13],[-36,5],[-114,12],[-53,-1],[-12,4],[-22,6]],[[710,5337],[-73,8],[0,-4],[31,-19],[20,-20],[36,-39],[16,-12],[0,4],[-17,22]],[[723,5277],[1,4],[-9,12],[16,35],[9,-4],[81,-2],[89,-9],[67,-13],[3,-1],[17,-22],[10,-3],[-3,-19],[5,-1],[34,5]],[[2165,5651],[-11,6],[-52,25],[-28,47],[-5,17],[2,30],[-3,1],[-3,-33],[-32,29],[-3,3]],[[2030,5776],[9,39],[1,5],[-44,26]],[[1996,5846],[1,5]],[[1997,5851],[42,-24],[31,-21]],[[2070,5806],[3,-6],[1,6]],[[2074,5806],[43,-17],[17,-3],[5,23]],[[2139,5809],[23,8]],[[2162,5817],[-4,-21],[-13,-11],[23,-3]],[[2168,5782],[0,-5],[3,1],[1,5]],[[2172,5783],[21,11],[19,27]],[[2212,5821],[36,38],[15,-7]],[[2263,5852],[-24,-21],[-20,-26],[-15,-36],[-39,-118]],[[2062,5884],[-27,34],[-11,8],[4,11],[34,-12]],[[2062,5925],[-5,-23],[5,-18]],[[2154,5891],[-4,-26],[3,-46],[-20,-6],[-3,32],[5,54],[19,-8]],[[1530,6164],[13,8],[-27,36],[-5,-10],[12,-10],[1,-25]],[[1524,6163],[-3,-15],[6,-32],[2,-39],[-12,-14],[-33,-13],[26,-29],[9,-52],[-13,-2],[-31,-6]],[[1475,5961],[-12,56],[5,29],[5,1],[-14,13],[8,18],[-12,19],[-3,20],[-29,32],[12,-19],[9,-43],[2,-33],[-7,-4],[10,-33],[6,-41],[-4,2],[-13,38],[1,-61]],[[1439,5955],[-16,-3]],[[1423,5952],[-3,33]],[[1420,5985],[5,5],[0,41]],[[1425,6031],[-1,23],[-18,-4],[-12,27],[5,5],[4,33],[2,20],[-22,4]],[[1383,6139],[-3,0]],[[1380,6139],[-33,3],[8,-7],[4,-48],[-10,-25]],[[1349,6062],[-18,-41],[2,-12],[11,-36]],[[1344,5973],[-11,2]],[[1333,5975],[-14,18],[-32,-9],[9,-24]],[[1296,5960],[-23,-8],[-30,-4],[-29,35],[8,40],[2,33]],[[1224,6056],[4,-1],[16,25],[-3,82],[18,34],[11,0],[4,-14],[10,7],[-2,24],[-17,33]],[[1265,6246],[-13,24],[-19,73],[-17,-7]],[[1216,6336],[-5,-2]],[[1211,6334],[-4,39],[-49,6],[15,27],[-25,6]],[[1148,6412],[3,14],[7,31]],[[1158,6457],[23,-6],[-6,-26],[11,12]],[[1186,6437],[4,-1],[-1,-18],[27,-10],[-11,24],[14,48],[30,53],[-1,34],[-6,32],[-2,38],[-9,29],[-8,28]],[[1223,6694],[23,63],[14,19],[22,47],[24,21],[8,30],[-4,24],[-8,2],[-4,15],[-10,35],[-8,50]],[[1280,7000],[-4,21]],[[1276,7021],[17,-4],[0,7],[-7,2],[-58,13]],[[1228,7039],[-1,6],[-7,32],[-15,46]],[[1205,7123],[27,-1]],[[1232,7122],[3,0]],[[1235,7122],[17,-32],[25,-1],[14,9],[4,21],[-19,1]],[[1276,7120],[0,6]],[[1276,7126],[27,0],[1,17],[12,46],[1,18],[2,-1],[0,26],[-22,72],[-5,18],[1,44],[-7,22],[-12,-6]],[[1274,7382],[-12,9],[-24,2],[-16,-7],[-5,-2],[-42,-23],[-45,-24],[-9,-5],[-26,64],[-7,22],[-2,5]],[[1086,7423],[14,25],[-8,14],[-19,-6]],[[1073,7456],[-8,19]],[[1065,7475],[16,9],[-3,11],[21,13],[3,18],[-18,7],[-9,-5]],[[1075,7528],[13,10],[-6,15],[6,35],[-17,25],[-58,63],[-8,-8],[-21,33],[-6,18]],[[978,7719],[-3,56],[-6,25],[-8,27],[0,29],[23,-25],[-14,18]],[[970,7849],[28,22],[-39,52]],[[959,7923],[-27,27],[-36,7]],[[896,7957],[-13,46],[-11,34],[-6,62],[-10,38],[-21,19],[-77,18],[-32,-7],[-4,-12],[-19,15],[-13,19]],[[690,8189],[13,9],[-9,33],[-25,-12]],[[669,8219],[-33,24],[28,11],[-4,14]],[[660,8268],[4,5],[19,10],[-6,21],[-35,22],[-11,-29]],[[631,8297],[-12,9],[-43,22],[-40,13]],[[536,8341],[-14,6],[-22,-4],[23,40],[51,44],[6,27],[-12,30],[-64,68],[-35,108],[-24,25],[26,96],[-59,96],[-13,35],[-19,16],[-7,43],[-51,-15],[-27,-14],[-21,28],[-2,40],[-23,55],[-101,95],[56,175],[14,-2],[27,-7],[39,-1],[22,-7],[41,-29],[50,-7],[33,-10],[28,-11],[23,-11],[-22,-68],[3,-49],[22,-44],[10,-33],[31,-25],[2,-11],[-27,-11],[-14,-11],[-17,1],[-30,28],[-26,2]],[[413,9029],[-12,3],[-1,-5],[5,-9],[18,2],[4,8]],[[427,9028],[15,-6],[27,-25],[17,-1],[14,11],[30,13],[1,-32],[7,-32],[13,-18],[4,-6],[11,-13],[10,-14],[10,-26],[41,-86],[11,-16],[-23,-17],[-4,5],[-5,12],[7,-21],[28,13],[22,-4],[16,2],[36,25],[45,23],[21,7],[22,2],[24,-4],[26,-17],[11,-10],[3,-3],[20,-14],[35,-12],[35,0],[29,10],[15,11],[33,32],[17,26],[14,29],[4,10],[10,-88],[3,-12],[36,-18],[0,-6],[-55,-26],[1,-1]],[[1064,8731],[12,-45],[1,-3]],[[1077,8683],[0,-2]],[[1077,8681],[11,-39],[73,44]],[[1161,8686],[7,-20],[0,-15],[1,-11]],[[1169,8640],[-3,0],[-15,-16],[2,-8],[-15,-50],[-15,-3],[-16,-30],[-25,-46],[17,-51],[19,-48],[17,-4],[2,0],[33,18],[15,13]],[[1185,8415],[25,29],[10,-19],[7,32],[-19,28]],[[1208,8485],[21,40],[3,13]],[[1232,8538],[29,-4],[-2,46],[11,36],[-45,50],[-13,34],[-5,34],[14,33],[26,27],[24,13],[90,11],[8,15]],[[1369,8833],[5,-1],[23,1],[34,11],[9,-25],[13,-18],[34,-29],[-19,4]],[[1468,8776],[-8,-11],[-19,-7],[57,-225]],[[1498,8533],[1,-3]],[[1499,8530],[3,-9],[28,-5]],[[1530,8516],[-1,-16],[0,-28],[13,-37],[-23,-18],[2,-1]],[[1521,8416],[39,-14]],[[1560,8402],[12,-23],[-34,-16],[-91,-58],[0,-14],[-18,-91],[-11,-56],[-13,-24],[-14,-15],[-45,-22],[-5,-2],[-18,-8],[-1,1]],[[1322,8074],[-14,7],[-20,27],[-38,14],[-28,-6],[-38,-42],[-9,-50],[-4,-47],[11,-39],[13,-15],[13,4],[19,-9],[6,-2],[14,27],[8,30],[-1,53],[5,12],[18,16],[45,17]],[[1322,8071],[2,0]],[[1324,8071],[15,-13],[10,-28],[3,2],[0,26],[-10,21]],[[1342,8079],[3,2],[39,18],[21,18],[15,29],[7,34],[3,15],[1,7],[17,87],[11,17],[67,43],[53,25],[34,-52],[6,-11],[15,-25],[23,-54],[20,-48],[19,-47],[9,-23],[-21,-47],[-31,-68],[-5,-13],[-41,-88],[-27,-31],[-25,-29],[-4,-6],[-41,-79],[-7,-8],[-21,-12],[-7,-32],[1,-63],[4,-51],[-3,-68],[3,-37],[11,-23],[33,-44],[14,-31],[-7,-63],[-2,-20],[8,-22],[10,-10],[19,-7],[11,-17],[-6,-23],[-26,-95],[-12,-44],[-17,-59],[-20,-58],[-9,-35],[-6,-25],[-10,-40],[-2,-9],[-10,-62],[11,-20],[29,-12],[13,-14],[13,-33],[32,-79],[-4,-21],[-22,-65],[-22,-22],[-36,-31],[-12,-20],[-2,25]],[[1459,6503],[6,28],[-6,-2],[-8,21],[-11,-7],[-12,-1],[-8,1],[-3,-15],[10,-6],[6,-46],[10,-17],[10,-1]],[[1453,6458],[13,-18],[37,-51],[15,-28],[22,-46],[31,-46],[27,-47],[4,-21],[-12,-53],[0,-51],[12,-31],[5,-55],[5,-26]],[[1612,5985],[-6,10],[-34,0],[-32,-7],[-10,16],[-3,54],[9,16],[-6,49],[-6,22],[6,19]],[[1651,8177],[-1,17],[-36,4],[-11,-15],[48,-6]],[[1295,7436],[11,20],[0,34],[-7,5],[1,-33],[-5,-26]],[[1218,7608],[-30,15],[-15,-35],[20,-18],[19,29],[6,9]],[[1640,5994],[-17,-7],[-16,40],[-4,50]],[[1603,6077],[12,6]],[[1615,6083],[7,-20],[-1,-19],[14,5],[-3,-17],[11,-23],[-9,1],[6,-16]],[[1659,6163],[-7,9]],[[1652,6172],[3,14],[-22,14],[-22,10],[-7,3]],[[1604,6213],[-18,37],[0,7],[45,9],[32,1],[26,-5],[19,-14],[13,-8],[37,-2],[20,-16],[15,-38],[39,-68],[7,-25],[-10,-59],[-15,-9],[-71,-13],[-47,-8],[-21,-2]],[[1675,6000],[-5,26],[-9,14],[-19,58],[-4,29],[16,2],[5,34]],[[2045,5976],[4,-29]],[[2049,5947],[-18,7],[-7,23],[21,-1]],[[2159,5907],[-19,7],[8,37],[19,-7]],[[2167,5944],[-8,-37]],[[2168,5948],[-19,7],[6,23],[18,-7]],[[2173,5971],[-5,-23]],[[2212,5983],[55,35],[-1,-104],[-14,-24],[-40,93]],[[2318,6056],[-80,-53],[-27,-16],[-15,39],[-5,29],[-2,33],[-4,73],[-2,41],[-6,52],[-21,49],[-24,29],[-24,15],[18,55],[20,62],[50,-17],[1,1],[1,1],[-2,3],[-50,14],[13,41],[3,28],[-2,9],[-38,94],[-38,94],[-15,35],[-10,25],[-13,32],[-13,43],[7,23],[18,61],[13,42],[32,104],[6,21],[5,-13],[38,-93],[28,-67],[11,-27],[9,-22],[11,-30],[16,-43],[34,-95],[10,-27],[24,-62],[2,-6],[33,-83],[2,-8],[4,-9],[32,-80],[6,-8]],[[2374,6445],[-5,-3],[-24,-15],[6,-14]],[[2351,6413],[-29,-50],[-9,-27],[3,-1]],[[2316,6335],[24,-12],[5,-12]],[[2345,6311],[35,-98],[-13,-8],[-54,-36],[-38,93],[-2,-1],[39,-98],[15,-37]],[[2327,6126],[-30,-20],[21,-50]],[[2252,6452],[12,-32],[16,10],[-14,32],[-14,-10]],[[2389,6035],[-27,17],[-11,21],[42,28],[78,48],[10,7],[13,-23],[10,-15],[-50,-19],[-21,-19],[-17,-22],[-13,-30],[-14,7]],[[2196,5879],[-60,22],[9,1],[99,-37],[-48,14]],[[2030,5943],[96,-34],[8,-7],[-105,38],[1,3]],[[1917,5983],[-38,16],[133,-49],[11,-8],[-99,36],[-7,5]],[[1824,6011],[-8,2],[-144,-26],[-1,3],[142,25],[11,-4]],[[2535,6056],[24,-61],[22,-26],[-6,-7],[-12,19],[-30,74],[-25,59],[1,6],[26,-64]],[[2571,5962],[13,9],[0,-25],[-13,16]],[[2589,5971],[1,9],[16,-9],[-10,-7],[-7,-20],[0,27]],[[2610,5994],[3,-20],[-22,8],[19,12]],[[2268,5865],[38,19],[-2,6]],[[2304,5890],[1,0]],[[2305,5890],[33,25]],[[2338,5915],[4,4]],[[2342,5919],[1,3],[27,53],[18,57]],[[2388,6032],[10,-6],[-25,-73],[-19,-34],[-36,-35],[-22,-29],[-15,5],[-13,5]],[[2454,5909],[-11,0],[-70,-15],[-43,-19],[-2,6],[28,24],[17,30],[22,62],[26,54],[22,27],[13,12],[51,16],[13,-33],[-19,-13],[15,-24],[17,5],[38,-90],[15,-17],[4,-72],[-3,-6],[-47,-11],[-41,-22]],[[2499,5823],[-13,33],[-12,2],[-20,51]],[[1822,5916],[-29,-14],[4,-13]],[[1797,5889],[-13,-11],[-29,-41],[-16,24],[-6,11]],[[1733,5872],[50,44],[30,15]],[[1813,5931],[8,-6],[0,-3],[1,-6]],[[2027,5716],[55,-21],[-5,-20],[-54,26],[4,15]],[[1824,5932],[27,-1]],[[1851,5931],[3,-15],[-9,-37],[-6,-1],[-14,39],[-1,15]],[[1678,5884],[-12,-45],[-4,0],[-21,72],[-3,42],[-11,28],[42,2],[10,-24]],[[1679,5959],[-11,9],[-23,-7],[1,-31],[15,4],[2,-31],[15,-19]],[[1932,5860],[0,-16],[9,-27],[-7,1],[-33,-120],[-20,-29],[-43,49],[-8,26],[0,34]],[[1830,5778],[12,70],[11,17],[3,31],[10,6],[58,-33],[8,-9]],[[1947,5596],[-64,72],[20,22],[61,-68],[-17,-26]],[[1949,5593],[18,26],[27,-30],[-16,-24],[-29,28]],[[1966,5625],[-63,69],[28,104],[90,-39],[-5,-27],[-10,-2],[-6,-24],[7,-9],[-9,-28],[-32,-44]],[[1996,5592],[-27,30],[30,45],[28,-31],[-31,-44]],[[2070,5656],[10,12],[15,1],[-12,-33]],[[2083,5636],[-13,20]],[[1967,5803],[-5,-15]],[[1962,5788],[-30,13],[4,14],[31,-12]],[[2024,5775],[-2,-13],[-45,19]],[[1977,5781],[7,31],[40,-37]],[[2027,5773],[27,-26],[32,-48],[-66,25]],[[2020,5724],[7,49]],[[2069,5658],[-7,17]],[[2062,5675],[15,-7],[-8,-10]],[[2589,5991],[-21,7],[-8,13],[-39,97],[11,-16],[20,-14],[50,-20],[14,-12],[-27,-55]],[[2607,5960],[6,0],[3,-35],[1,-76],[-19,5],[-4,90],[13,16]],[[2525,6060],[7,-17],[-18,-3],[-8,17],[19,3]],[[2411,6116],[-23,-14],[-39,-26],[-3,10],[-32,81],[46,30],[18,12]],[[2378,6209],[20,-40],[-13,-9],[16,-38],[10,-6]],[[1864,5925],[14,-6],[113,-64],[-5,-12],[-125,70],[3,12]],[[2096,5593],[4,19],[28,-9],[-4,-20],[-28,10]],[[2413,5597],[11,-19],[-16,-6],[-4,17],[9,8]],[[2575,5599],[50,-22]],[[2625,5577],[-17,-42],[-11,-14],[-6,9],[-32,-3],[16,72]],[[2175,5529],[-26,19],[12,30],[33,-28],[-19,-21]],[[2566,5664],[-44,17],[8,31],[50,-19],[-6,-26],[-8,-3]],[[2339,5764],[12,-22],[-13,-11],[-12,23],[13,10]],[[2291,5833],[-16,6]],[[2291,5833],[0,0]],[[2464,5799],[13,-2],[2,-24],[-20,-2],[-6,25],[11,3]],[[2612,5780],[-1,24],[12,-8],[11,-33],[-22,9],[0,8]],[[2357,5692],[-37,-31],[-2,4],[37,30],[2,-3]],[[2500,5812],[4,10],[52,22],[2,-5],[-58,-27]],[[2218,5457],[1,34]],[[2218,5457],[0,0]],[[2205,5547],[14,-51]],[[2219,5496],[-16,48],[2,3]],[[2599,5842],[19,-4],[-1,-20],[-14,-2],[-4,26]],[[110,3855],[21,53],[-12,6],[-10,21],[-21,0],[-10,-19],[35,4],[-16,-47]],[[97,3873],[-39,23],[-23,6],[-33,-5],[-2,41],[14,0],[-8,90],[23,-10],[16,13],[29,73],[16,16],[26,-15]],[[116,4105],[-4,-89],[14,-1],[-2,-43],[8,9],[-5,5],[3,83],[9,-1],[2,23]],[[141,4091],[17,-16],[25,-1],[11,-16],[27,-23],[26,-13],[7,-13],[2,-4],[68,-57],[3,6],[27,23],[3,17],[16,34],[24,52],[13,44],[12,71],[5,48],[-8,26],[5,25],[0,16],[-4,25],[-12,15],[2,26],[-4,24],[-3,28],[-1,25],[-19,54],[-6,26],[2,17],[6,74],[-7,11],[-9,20],[12,37],[12,21],[13,61],[6,21],[3,32],[13,1]],[[428,4828],[2,-15],[-5,-35],[3,-17]],[[428,4761],[-4,-20],[10,-87],[12,2]],[[446,4656],[1,-10]],[[447,4646],[-19,-4],[-39,2],[4,-30],[-6,-63],[-2,-16],[29,-91],[74,25]],[[488,4469],[0,-25],[-10,0],[-60,-19],[-11,2],[11,-4],[60,20],[11,-1]],[[489,4442],[-1,-15],[-1,-62],[20,7],[1,71]],[[508,4443],[61,23],[64,13],[20,-1],[46,-21],[19,-4],[38,8],[-45,-5],[-59,25],[2,37],[100,39],[2,-2],[48,15],[4,-109],[-45,-3],[2,-2],[42,3],[34,13],[39,-8],[14,9],[22,24],[29,8],[58,-5],[30,2],[12,2]],[[1045,4504],[18,-7],[35,-19],[-3,-9],[-3,-11],[26,-12]],[[1118,4446],[-6,-18],[-20,-38],[-67,-87],[-6,-9],[-3,-3]],[[1016,4291],[-46,28],[-2,-5],[20,-25],[15,0],[9,-5]],[[1012,4284],[-3,-4],[-14,-22],[-21,-40],[-43,-58],[-24,-31],[-45,-40],[-45,-49],[-14,-16],[-32,-36],[-50,-68],[-10,-26],[-2,-25],[6,-58],[-9,-42],[-26,-25],[-54,-42],[-41,-30],[-13,-14],[-53,-55],[-47,-47],[-16,-6],[-67,3],[-35,2],[-21,1],[-21,60],[-32,73],[-12,15],[-58,67],[-32,23],[-24,11]],[[154,3805],[5,13],[15,46],[-16,18],[-24,-63]],[[134,3819],[-24,36]],[[796,3529],[-23,-12],[-36,-3],[-43,-15],[-39,3],[-31,-2],[-20,-18],[-16,-7],[-22,-7],[-34,0],[-58,-42],[-4,2],[-73,42],[-27,17],[-34,64],[52,-2],[67,-4],[20,7],[46,47],[53,54],[17,17],[58,44],[33,26],[28,26],[9,34],[48,-90],[14,-26],[56,-105],[10,-19],[-33,-13],[-18,-18]],[[1002,4260],[2,-17],[-12,-17],[8,-14],[26,-5],[-5,-8],[19,-37],[-26,-23],[5,-19],[21,-37],[28,23],[26,-46],[26,20],[19,-40],[39,33],[-26,48],[-21,38],[21,19],[-1,1],[-32,45],[-21,18],[-78,44]],[[1020,4286],[2,7],[49,65],[37,52],[2,-22],[-17,-82],[-3,-35],[6,1],[28,9],[61,27],[36,2],[37,-15],[21,-4],[2,-20],[-26,-2],[-17,-14],[-39,-35],[-38,-33],[33,-60],[31,-53],[9,-10]],[[1234,4064],[10,8],[24,18],[0,2],[1,3]],[[1269,4095],[2,6],[10,34]],[[1281,4135],[15,-9],[10,-5]],[[1306,4121],[4,-19],[-6,-34],[-62,-161]],[[1242,3907],[-6,1],[-20,3],[7,-21],[-8,-19]],[[1215,3871],[-9,-21],[12,-3]],[[1218,3847],[-15,-38],[-11,-28],[-21,-54],[-6,-6],[-10,-10],[-49,-47],[-26,-31],[-14,-14],[-22,-10],[-17,0],[-36,-9],[-46,0],[-36,-4],[-39,-27],[-19,-7],[-13,25],[-3,6],[-20,37],[-30,56],[-34,64],[-21,39],[-9,16],[-5,42],[-3,23],[3,30],[8,17],[51,70],[12,13],[18,20],[59,64],[47,42],[22,30],[46,62],[23,42]],[[1092,4109],[13,-24],[-13,-11],[-12,33],[12,2]],[[1297,4183],[-9,-7],[-4,-25],[-8,4],[4,38]],[[1280,4193],[16,2],[1,-12]],[[1279,4196],[-3,12],[-6,59]],[[1270,4267],[12,-1],[7,-16],[-10,-54]],[[1129,4437],[-10,3],[20,74],[11,-5]],[[1150,4509],[-21,-72]],[[1191,4500],[-6,-79]],[[1185,4421],[-5,1]],[[1180,4422],[5,77]],[[1185,4499],[6,1]],[[1052,4506],[-8,0]],[[1044,4506],[3,20]],[[1047,4526],[0,4]],[[1047,4530],[2,17]],[[1049,4547],[9,-2]],[[1058,4545],[-6,-39]],[[1056,4549],[-6,2]],[[1050,4551],[3,24]],[[1053,4575],[0,2],[0,2]],[[1053,4579],[3,26]],[[1056,4605],[1,4]],[[1057,4609],[1,9],[2,19]],[[1060,4637],[7,1]],[[1067,4638],[-2,-21],[-5,-42],[-4,-26]],[[1179,4625],[-4,-25]],[[1175,4600],[-16,-60]],[[1159,4540],[0,-2]],[[1159,4538],[-8,-26]],[[1151,4512],[-11,5],[30,110],[9,-2]],[[1192,4511],[-7,1]],[[1185,4512],[2,18]],[[1187,4530],[2,45]],[[1189,4575],[5,-1]],[[1194,4574],[-2,-63]],[[1268,4524],[-19,1],[1,12],[18,-2],[0,-11]],[[591,4501],[0,43],[-38,-1]],[[553,4543],[-2,19]],[[551,4562],[40,-1],[-3,41],[-40,-23]],[[548,4579],[-8,59]],[[540,4638],[50,11],[0,50],[-11,5]],[[579,4704],[-3,32]],[[576,4736],[39,10],[1,16]],[[616,4762],[2,44],[-96,-14],[-4,52],[141,21],[-4,-97],[0,-25]],[[655,4743],[-40,-8],[-25,-6],[1,-9],[1,-2],[0,-8],[1,-2],[0,-8],[18,3],[3,-29],[16,3],[38,8],[-1,26]],[[667,4711],[90,16],[8,2],[80,21],[65,14],[18,8],[64,21],[24,-150],[-4,-6],[-175,-50],[-78,-24],[-8,-5],[-75,-29],[-45,-18],[-40,-10]],[[1043,4639],[-7,71],[-24,-6]],[[1012,4704],[-14,91],[35,11],[26,10],[22,7],[3,-39],[6,-23],[22,-64],[16,-38],[-4,-8],[-81,-12]],[[448,4656],[24,6],[56,24]],[[528,4686],[2,-10]],[[530,4676],[-56,-24],[-25,-5]],[[449,4647],[-1,9]],[[774,5125],[0,3]],[[774,5128],[1,26]],[[775,5154],[9,2]],[[784,5156],[0,-47],[31,-2],[7,11]],[[822,5118],[26,6],[23,5],[4,0],[55,7]],[[930,5136],[2,-21],[13,-10]],[[945,5105],[-1,-20]],[[944,5085],[-12,-5],[-19,-8],[-18,-3],[-1,28],[-1,-28],[-25,2],[-22,2],[-69,5],[0,-2],[5,0]],[[782,5076],[-4,-113]],[[778,4963],[-5,0],[0,-2]],[[773,4961],[-3,-68]],[[770,4893],[-2,0],[-3,0]],[[765,4893],[0,28],[-47,-7],[-27,39],[-14,-1]],[[677,4952],[-5,31],[0,33],[-7,48],[-15,27]],[[650,5091],[60,17],[14,5],[49,-3],[1,15]],[[844,4961],[0,77],[22,-1],[0,-74],[-22,-2]],[[1034,5002],[0,8],[30,-2],[0,-8],[-30,2]],[[985,5135],[26,11]],[[1011,5146],[-6,-35],[-18,-8]],[[987,5103],[-2,32]],[[1295,4199],[-10,-2],[4,40],[6,-38]],[[676,4719],[-21,1],[2,54],[3,91],[17,3]],[[677,4868],[-1,-83],[0,-66]],[[841,4841],[42,5],[5,-33]],[[888,4813],[-44,-7],[-3,35]],[[1112,4388],[28,-10]],[[1140,4378],[11,-56],[-35,-13],[2,15],[-22,-7]],[[1096,4317],[16,71]],[[521,5089],[2,-33],[-46,-8],[-24,-13],[-11,-12],[-10,-49]],[[432,4974],[-13,-23],[0,-26]],[[419,4925],[0,-1]],[[419,4924],[0,-49],[4,-7]],[[423,4868],[0,-1]],[[423,4867],[13,-29]],[[436,4838],[-21,-7],[-18,73],[-13,16]],[[384,4920],[-3,4],[-3,18],[2,33],[18,48],[24,46],[23,17],[15,-3],[61,6]],[[647,5088],[19,-42],[-16,-5],[-66,-1],[-46,18],[-13,-2],[-2,33]],[[523,5089],[8,1]],[[531,5090],[4,-13],[49,-9],[1,-9],[51,15],[8,-3],[3,17]],[[972,4911],[-49,-10],[-16,-10],[-6,10],[71,10]],[[895,4900],[2,-11],[-22,6],[-72,-8],[92,13]],[[513,4448],[24,23],[44,26],[40,8],[30,12],[0,-35],[-12,0],[-71,-14],[-55,-20]],[[496,4478],[2,-6],[57,19]],[[555,4491],[-48,-44],[-17,-2],[0,24],[6,9]],[[597,4720],[0,0]],[[769,4882],[-6,-147]],[[763,4735],[-2,0]],[[761,4735],[6,147]],[[767,4882],[2,0]],[[1389,3960],[24,21],[44,18],[5,15]],[[1462,4014],[-28,5],[-130,21],[0,17],[8,49],[-11,84]],[[1301,4190],[40,4]],[[1341,4194],[-2,-33],[14,-5],[24,27],[-1,15]],[[1376,4198],[15,2],[-1,16],[-3,16]],[[1387,4232],[67,-5],[9,-28],[-13,-32],[6,-15]],[[1456,4152],[-42,-34],[-19,-24],[-50,-21],[-5,2],[-8,-22],[81,-13],[9,2],[9,29],[10,16],[-11,16],[8,9],[11,-16],[23,28],[-6,19],[25,-14],[23,19],[6,29],[15,17],[5,15],[-13,20]],[[1527,4229],[0,2],[-28,-4],[-105,10],[-3,6]],[[1391,4243],[39,-5],[7,27],[55,0],[0,-16],[13,2],[9,39]],[[1514,4290],[2,6],[-118,2],[-14,0],[-19,69]],[[1365,4367],[14,-4],[17,-3],[82,0],[21,16],[6,30],[-7,7]],[[1498,4413],[33,4],[11,1],[43,5]],[[1585,4423],[0,-31],[-20,-11],[34,-13],[25,5],[51,34],[-9,28],[18,-14],[13,16],[12,35],[0,27],[16,10],[-2,51],[10,12],[-17,-6],[-28,5],[-9,7],[-8,29]],[[1671,4607],[63,43],[4,3],[9,6],[4,-85],[5,-4],[-5,120],[10,37],[6,8]],[[1767,4735],[26,19],[20,-1],[111,-44]],[[1924,4709],[0,-2],[-1,-3],[1,-97],[3,-26],[0,-15],[0,-4]],[[1927,4562],[-35,-24],[3,-8],[-67,-46],[-3,7],[-62,-40]],[[1763,4451],[-1,-2],[26,-2],[-12,-45],[-2,-19],[-15,5],[-8,-9]],[[1751,4379],[-2,0],[0,-16],[13,-18],[3,-31],[12,-26],[32,-20],[33,-8],[2,12]],[[1844,4272],[1,2],[-48,61],[-6,21],[62,-41],[2,-1],[109,-73],[9,-75],[22,-177],[8,-78],[8,-52],[33,-52],[13,-21],[21,-14],[62,-13],[3,-3]],[[2143,3756],[-7,-58],[36,-12],[19,13]],[[2191,3699],[3,-2],[10,-12],[-17,-44],[-13,-64],[-1,-9],[0,-41],[5,-50],[7,-11]],[[2185,3466],[-44,-84],[-1,-6]],[[2140,3376],[-3,-5]],[[2137,3371],[-17,-20],[-24,-17],[32,-29]],[[2128,3305],[22,-17],[21,5],[51,-24],[-4,-15],[-21,0],[-17,-10],[6,-17],[3,-14]],[[2189,3213],[5,-23],[-18,22],[-9,-16]],[[2167,3196],[-17,30]],[[2150,3226],[7,7],[-12,17],[5,9],[-6,7]],[[2144,3266],[-56,50],[-9,12]],[[2079,3328],[-1,2],[-3,-2]],[[2075,3328],[-12,21],[-15,-1],[-24,14],[-7,-7],[9,-27],[-14,-39],[38,-36]],[[2050,3253],[2,-2]],[[2052,3251],[11,-12]],[[2063,3239],[-5,-15]],[[2058,3224],[0,-1],[36,-13],[25,-6],[8,-22],[9,-1]],[[2136,3181],[12,-12],[25,7],[7,-25],[-22,-17],[-53,-57],[-21,26],[-24,26],[-24,19],[-22,4],[-23,12],[-15,16],[-27,56],[-3,7],[-7,16],[-3,7],[-16,25],[-9,9],[-39,36],[-10,39],[-6,53],[-10,94],[-3,27],[-1,6],[-7,21],[-12,11],[-15,17],[-21,20],[-41,97],[-10,35],[8,58],[-3,18],[-16,45],[-22,32],[-8,63],[-27,52],[-1,16]],[[1667,4040],[8,4],[15,6],[-11,57],[-21,10]],[[1658,4117],[-2,17],[-24,-9],[-29,0]],[[1603,4125],[-13,2],[-1,-4]],[[1589,4123],[-24,13]],[[1565,4136],[-3,1]],[[1562,4137],[-17,5],[2,-42],[-3,-29]],[[1544,4071],[-1,-4]],[[1543,4067],[-1,0],[-11,-21],[-1,-10]],[[1530,4036],[-4,-6]],[[1526,4030],[-27,-37]],[[1499,3993],[-4,1],[-2,-3],[2,0]],[[1495,3991],[-24,-29],[-30,-24]],[[1441,3938],[-3,3],[-41,-33],[-24,-43],[-2,-32],[4,-1],[32,-7],[14,7],[-3,-24]],[[1418,3808],[-24,6]],[[1394,3814],[-2,0]],[[1392,3814],[-19,4],[4,-51],[-2,-16]],[[1375,3751],[-1,-2]],[[1374,3749],[-4,1],[-12,-39],[-2,-47]],[[1356,3664],[-1,-4]],[[1355,3660],[-1,-40]],[[1354,3620],[0,-4]],[[1354,3616],[4,-41],[3,0]],[[1361,3575],[0,-4]],[[1361,3571],[-3,0],[-1,-34]],[[1357,3537],[-1,-4]],[[1356,3533],[14,-94],[1,-16]],[[1371,3423],[-50,-65]],[[1321,3358],[-2,3],[-29,-9],[-35,-2],[-17,-27],[-28,-10],[-14,-47],[-11,-18],[-24,-12],[-24,-26],[-9,-19],[5,-7]],[[1133,3184],[-4,-6]],[[1129,3178],[-18,-36],[-23,-22],[-12,-4],[-15,4],[-22,-4]],[[1039,3116],[-3,-1]],[[1036,3115],[-21,-26],[-9,-43],[25,-3],[43,-39],[2,3]],[[1076,3007],[5,-5]],[[1081,3002],[25,-35]],[[1106,2967],[24,-61],[11,4]],[[1141,2910],[14,-50],[-6,-1],[10,-35],[5,-43],[0,-55],[10,-52],[9,-61],[4,-26],[12,1],[5,-56],[10,0],[27,0]],[[1241,2532],[1,-8]],[[1242,2524],[-35,-1],[-1,-33],[-8,0],[1,-30],[-8,-24],[12,0],[-5,-30],[-3,0],[-12,-9],[12,0],[70,2]],[[1265,2399],[3,-21],[5,2],[13,19],[20,30],[5,-8],[22,23],[85,82],[-2,4]],[[1416,2530],[2,1]],[[1418,2531],[5,0],[-1,4]],[[1422,2535],[67,64]],[[1489,2599],[9,9]],[[1498,2608],[19,21]],[[1517,2629],[53,52],[2,-1],[0,4]],[[1572,2684],[49,50]],[[1621,2734],[2,2]],[[1623,2736],[50,44],[1,-2],[1,5],[49,47],[-7,35],[-19,6]],[[1698,2871],[0,27],[-1,29],[0,14],[-17,78],[4,27],[2,14],[5,19]],[[1691,3079],[37,11],[25,0],[58,-4],[50,0],[18,3],[26,9],[44,-4],[85,9],[27,1],[24,-12],[16,-20],[-5,-8],[-27,-55],[-8,-24],[-29,-62],[3,-2],[2,4],[29,64],[5,15],[32,61]],[[2103,3065],[5,-10],[33,25]],[[2141,3080],[4,-6],[-2,9]],[[2143,3083],[22,21],[-13,18]],[[2152,3122],[25,22],[21,16],[13,12],[20,-10],[34,-31],[0,12],[-6,6],[50,91]],[[2309,3240],[4,-8],[18,32]],[[2331,3264],[5,-3],[10,-6],[-23,-45],[-6,-6],[25,-71],[17,-31],[-8,-18],[-31,14],[-19,9],[-21,20],[11,27],[14,31],[-4,11],[-27,-59],[-7,-8],[-12,-27],[-65,-101],[-4,7],[-1,-1],[-2,-4],[1,-17],[-11,-15],[-33,-26],[-28,-13],[-57,-15],[-25,-17],[29,14],[50,13],[19,7],[14,8],[27,21],[15,17],[3,-15],[41,-41],[38,-6],[21,-51]],[[2287,2867],[-10,-6],[6,-31],[8,-2],[12,-6]],[[2303,2822],[7,-37]],[[2310,2785],[-20,2],[-12,-11],[-18,-32]],[[2260,2744],[-3,-2]],[[2257,2742],[-10,-9],[39,-36]],[[2286,2697],[18,-32]],[[2304,2665],[-5,-20]],[[2299,2645],[-39,9],[-29,27],[-25,19],[6,-7]],[[2212,2693],[-5,-14],[20,-13],[4,-27]],[[2231,2639],[-24,-7],[4,-17],[21,8]],[[2232,2623],[2,-4]],[[2234,2619],[11,-24],[10,-24]],[[2255,2571],[1,-3]],[[2256,2568],[4,-9],[26,-2],[4,-7]],[[2290,2550],[2,-3]],[[2292,2547],[5,-11],[38,-20],[-19,-22],[16,-16],[0,-1]],[[2332,2477],[2,-26],[19,-2],[5,-23]],[[2358,2426],[-18,-9]],[[2340,2417],[-3,-2]],[[2337,2415],[-36,-21],[-37,-23]],[[2264,2371],[-4,-3],[12,-8],[-25,-20],[-6,-4]],[[2241,2336],[-13,-11],[4,-12],[20,-25],[2,-15],[-23,-7]],[[2231,2266],[-4,0]],[[2227,2266],[-18,-6],[-2,-25],[-8,-17],[-15,-28]],[[2184,2190],[-2,-4]],[[2182,2186],[-9,-19],[-35,20],[-19,6]],[[2119,2193],[-2,1]],[[2117,2194],[-15,6],[-41,25]],[[2061,2225],[-5,1]],[[2056,2226],[-26,15],[-24,7],[-32,-6],[-14,-6],[-5,-4]],[[1955,2232],[-2,-1]],[[1953,2231],[-20,-7],[-23,5]],[[1910,2229],[-2,0]],[[1908,2229],[-38,11]],[[1870,2240],[8,51],[-10,23],[-14,5],[-11,-5],[-25,-23],[-21,-9],[-73,-24],[-26,9],[-39,60],[-10,16],[-42,66],[6,13],[5,36],[3,13],[40,42],[9,32],[-2,24],[-14,24],[-13,23],[-9,29],[1,11],[8,24],[16,23],[17,14],[38,20],[-2,5],[-58,-31],[-18,-21],[-12,-24],[-31,9],[57,41],[64,30],[58,33],[49,23],[8,4],[21,12],[10,-8],[48,19],[34,11]],[[1940,2840],[15,-16],[26,-11],[8,-13],[30,23],[20,20],[-4,6],[-2,8],[-23,31]],[[2010,2888],[16,19],[5,7],[3,3],[-7,-2],[-32,-29]],[[1995,2886],[-67,1],[-63,-10],[4,-29],[-17,-11]],[[1852,2837],[-8,37],[-1,7],[0,2],[-3,-2]],[[1840,2881],[-44,-10],[-38,-22],[-32,-30],[1,-5]],[[1727,2814],[-11,-13],[3,-16],[-31,-24]],[[1688,2761],[-8,13],[-5,2],[3,-5]],[[1678,2771],[-78,-74],[-3,2],[-2,-2],[-13,-18]],[[1582,2679],[-7,-1],[2,-1]],[[1577,2677],[-16,-18],[-137,-136]],[[1424,2523],[-1,3],[-3,-7]],[[1420,2519],[-118,-119],[-3,-3],[-24,-24]],[[1275,2373],[-1,1],[-3,-11],[-26,-30],[-9,-13],[-9,-2],[-42,13],[-19,2],[4,27],[2,95],[-12,60],[-13,81],[-24,33],[-31,155],[-42,180],[-22,37],[-31,27],[-11,19],[4,44],[22,48],[57,64],[28,44],[23,27],[52,53],[62,43],[48,42],[19,27],[11,33],[-7,68],[-2,51],[-53,-2],[-42,-1],[-57,9],[-3,56],[-19,-2],[-45,-22],[25,33],[64,62],[41,102],[8,21]],[[1222,3847],[18,-3],[6,25],[16,1]],[[1262,3870],[6,-1],[-32,13],[10,23],[3,7],[24,63],[3,0],[102,-18],[11,3]],[[1290,3770],[-8,25],[-10,-4],[5,-17],[-10,-16],[23,12]],[[2171,3288],[-6,-10],[13,-12],[18,-6],[1,13],[-26,15]],[[1866,4209],[4,-10],[10,1],[-9,11],[-5,-2]],[[1919,3360],[-8,36],[7,19],[18,5],[6,20],[-8,23],[-1,22],[6,32],[-18,3],[3,-43],[-11,-13],[-16,-4],[-12,6],[-4,-23],[3,-47],[13,-38],[21,2],[1,0]],[[1341,4231],[-3,34],[45,0]],[[1383,4265],[4,-30],[-46,-4]],[[1472,4571],[0,13],[-15,-4],[-11,-41],[-7,-14],[-3,-53]],[[1436,4472],[-10,-37],[-14,-14]],[[1412,4421],[-1,30],[-10,1],[5,38],[-19,-9]],[[1387,4481],[0,3],[0,3]],[[1387,4487],[8,6],[0,42],[18,1],[-1,40],[-12,-1],[1,-37],[-6,0],[-1,47],[-12,9],[-30,2],[0,-22]],[[1352,4574],[-28,-1],[-1,20],[23,5],[-27,-2],[-14,2],[8,40],[5,1]],[[1318,4639],[4,-29],[23,6],[3,11]],[[1348,4627],[37,-3],[3,-12],[35,-10]],[[1423,4602],[3,-2]],[[1426,4600],[8,0],[1,81]],[[1435,4681],[-8,89],[-7,22]],[[1420,4792],[-4,37]],[[1416,4829],[45,1],[20,-26]],[[1481,4804],[-16,-31]],[[1465,4773],[-4,3],[7,-69],[11,-15],[19,-4],[13,29],[10,21],[12,11],[21,3]],[[1554,4752],[3,-1],[16,-3],[17,-4],[24,-25],[-29,-48],[-5,-19],[-12,-79],[1,-20],[-29,-4],[-23,-4],[-38,-5],[-7,31]],[[1445,4419],[-28,-1],[13,11],[11,38],[6,-1],[-2,-47]],[[1384,4459],[-62,-2]],[[1322,4457],[-5,10],[66,3],[1,-11]],[[1495,4424],[-5,42]],[[1490,4466],[0,4],[-6,0]],[[1484,4470],[4,16]],[[1488,4486],[1,8]],[[1489,4494],[-3,19]],[[1486,4513],[-2,6]],[[1484,4519],[-5,14]],[[1479,4533],[3,1],[36,5],[27,4],[-2,-52],[1,-45],[-3,-19],[-11,-1],[-35,-2]],[[1453,4443],[-1,21],[27,1],[0,-21],[-26,-1]],[[1464,4392],[0,19],[17,2],[0,-20],[-17,-1]],[[1383,4512],[0,-39],[-71,-2],[-11,16],[-4,6],[7,96],[16,1],[1,-20],[60,1],[2,-59]],[[1380,4853],[-2,18],[15,3],[1,-18],[-14,-3]],[[1414,4834],[0,6]],[[1414,4840],[-15,65],[-18,-3],[-1,13],[16,4],[-4,27]],[[1392,4946],[-24,33],[-3,21],[7,23],[-23,1],[-2,15]],[[1347,5039],[1,19],[15,6],[-2,5]],[[1361,5069],[26,-11],[6,16]],[[1393,5074],[1,6]],[[1394,5080],[6,29]],[[1400,5109],[6,0],[9,0],[3,0],[36,-15],[15,-11],[53,-16],[1,2],[69,-18],[3,-7],[-11,-65],[2,-1],[13,71],[48,-11],[3,0]],[[1650,5038],[2,-23],[-16,-74]],[[1636,4941],[-3,-1],[-37,-4],[0,-4],[3,-33],[24,-1],[3,0]],[[1626,4898],[-6,-22]],[[1620,4876],[-2,0],[-20,-3]],[[1598,4873],[-11,-2],[5,-55],[11,2]],[[1603,4818],[0,-3]],[[1603,4815],[-13,-1],[6,-32],[3,0],[6,10]],[[1605,4792],[5,-5],[53,27],[9,-23],[-20,-30],[-35,-39],[-23,24],[-21,6],[-16,1],[-3,1],[-26,4],[-39,37],[-22,36],[-6,2],[-47,1]],[[1375,4913],[2,-12],[-15,-4],[-4,12],[17,4]],[[1245,4614],[-49,16],[-23,14],[8,26],[22,-5],[49,-13],[52,-11],[-7,-43],[-52,16]],[[1489,4792],[38,-36],[-7,-10],[-33,34],[2,12]],[[1370,4755],[31,14],[13,-17],[-33,-22]],[[1381,4730],[-11,25]],[[1284,3978],[-9,2],[22,59],[10,-2]],[[1307,4037],[-23,-59]],[[1322,4661],[22,-4],[5,10],[46,-19],[-5,-10]],[[1390,4638],[-72,6],[4,17]],[[1298,4298],[3,51],[64,2]],[[1365,4351],[15,-54],[-82,1]],[[1494,4588],[0,0]],[[1177,4671],[-11,-29],[-33,17],[-19,43],[-20,57],[-9,44],[3,23],[30,16],[-4,-37],[35,-117],[5,-8],[23,-9]],[[1095,4871],[2,12],[10,49],[37,2],[-17,-60],[-4,-14],[-3,-10],[-33,-17],[8,38]],[[1197,4836],[-15,-5],[-3,20],[18,-6],[0,-9]],[[1271,4885],[15,14]],[[1286,4899],[38,20],[8,-29],[-51,-21],[-10,16]],[[1331,4908],[21,3]],[[1352,4911],[5,-13]],[[1357,4898],[-21,-9]],[[1336,4889],[-5,19]],[[1129,4985],[12,25],[30,-13],[-20,-41],[-9,-7],[-33,-5],[20,41]],[[1186,5086],[-32,-62],[7,-3],[10,18],[9,-7],[-2,-19]],[[1178,5013],[-7,-10],[-23,8],[-4,5],[54,102],[25,37],[3,-9]],[[1226,5146],[-22,-27],[-18,-33]],[[1280,5264],[18,8],[15,-25],[-30,-15],[-3,32]],[[1324,5093],[-8,0],[-19,27],[-9,23],[36,-50]],[[1297,5217],[-6,-19]],[[1291,5198],[-2,2],[-4,21],[10,-3],[2,-1]],[[1319,5236],[3,-5],[-18,-14],[-7,13],[18,14],[3,-6],[1,-2]],[[1352,5134],[1,-11],[-12,-6],[-4,22],[15,-5]],[[1358,5169],[9,5],[5,-14],[-10,-4],[-4,13]],[[1122,5162],[16,1],[19,-8],[8,-8],[22,28],[27,8]],[[1214,5183],[3,-8]],[[1217,5175],[-16,-7],[-23,-22],[-32,-60],[9,-10],[-11,-13],[-6,9],[-10,-22],[14,-18],[4,-6]],[[1146,5026],[-18,-35],[-32,48],[-32,48],[-12,17],[-41,9],[4,35]],[[1015,5148],[41,-13],[9,3],[18,1],[39,-9]],[[1122,5130],[3,-3],[-3,35]],[[1338,5085],[6,-3],[1,-41],[-7,-8],[-16,38],[16,14]],[[1302,5087],[12,-2],[3,-14],[-16,-4],[1,20]],[[1263,5065],[-19,42],[7,19],[22,10],[20,-52],[-4,-11],[-66,-47],[42,36],[-2,3]],[[1311,5094],[-23,23],[-1,23],[24,-46]],[[1288,5148],[-8,-4],[3,54],[4,-2],[6,-47],[-5,-1]],[[1220,5186],[9,1],[4,30],[-6,0],[-8,34]],[[1219,5251],[46,3],[10,-28],[-1,-19]],[[1274,5207],[-25,-4],[-22,-39]],[[1227,5164],[-7,22]],[[1382,5234],[5,19],[14,-23],[-1,-23],[-18,27]],[[1350,5313],[-15,18],[9,4],[11,-15],[-5,-7]],[[1426,5440],[-1,-14],[-106,-75],[-17,-7]],[[1302,5344],[-7,26]],[[1295,5370],[0,26],[7,30],[22,38]],[[1324,5464],[16,30],[20,27]],[[1360,5521],[31,48]],[[1391,5569],[10,-16],[30,-63],[-15,5],[-46,-27],[-14,-5]],[[1356,5463],[-15,-3],[-4,-10],[13,-17],[27,8],[18,-17],[5,38],[26,-22]],[[1394,5573],[5,27],[23,54]],[[1422,5654],[7,13]],[[1429,5667],[6,56],[-7,-11],[0,-34],[-6,-5],[-4,30],[9,28],[9,20],[-3,38],[-6,-1],[-35,-14],[-3,-2]],[[1389,5772],[-14,15],[-21,8]],[[1354,5795],[1,17],[-23,1]],[[1332,5813],[1,15]],[[1333,5828],[23,-2],[0,16]],[[1356,5842],[2,0],[2,2]],[[1360,5844],[12,6],[-12,32],[-4,27],[-12,-5]],[[1344,5904],[-10,8],[8,20],[41,7]],[[1383,5939],[2,-10],[9,-32],[2,-33],[7,-19],[12,6],[-3,42],[3,17],[11,5],[-1,30]],[[1425,5945],[14,3],[34,6],[47,8],[11,-39],[28,-48]],[[1559,5875],[7,-19],[18,-27],[-5,-11],[6,-11],[21,15],[-3,29],[16,39],[3,16],[-19,17],[-9,-8],[-4,-23],[-15,-4],[-13,31],[-13,35],[62,12],[-88,-11]],[[1523,5955],[-1,7],[91,16],[4,1]],[[1617,5979],[12,-70],[22,-59],[6,-1]],[[1657,5849],[6,-22],[-25,-75],[-11,-56],[-11,-59],[-7,-86],[-7,-54],[-7,-11]],[[1595,5486],[-10,12],[-26,-21]],[[1559,5477],[-4,11],[-16,-5],[-20,50],[50,0],[-15,27],[4,0],[-17,70],[-26,-4],[2,-31],[-13,-32],[-16,-1]],[[1488,5562],[1,3]],[[1489,5565],[17,3],[9,35],[-3,34],[3,32],[10,27],[-8,26],[-1,-27]],[[1516,5695],[-15,53],[-18,8],[-9,0],[-4,-19],[7,-28],[-3,-26]],[[1474,5683],[-3,-5],[17,-43],[0,-35],[-7,-26],[5,-8]],[[1486,5566],[-2,-3],[-40,-68],[-7,-6],[-17,41],[-16,27],[-10,16]],[[1469,5682],[5,28],[-5,43],[11,5],[-6,39],[-4,-18],[-13,3],[-10,-14],[4,-42],[18,-44]],[[1900,5314],[5,-17],[7,-57],[-39,-27],[-46,-23],[-2,11],[15,24],[12,34],[4,44],[44,11]],[[810,5498],[33,-10]],[[843,5488],[-8,-81],[-78,25]],[[757,5432],[18,29],[32,21],[3,16]],[[989,5448],[-51,2],[-41,16],[-2,-20],[-52,17]],[[843,5463],[3,25],[7,16],[21,-14],[24,-10],[41,-19],[24,-5],[27,2],[-1,-10]],[[1146,5306],[2,58]],[[1148,5364],[27,-3]],[[1175,5361],[5,-51]],[[1180,5310],[-34,-4]],[[1021,5469],[10,3]],[[1031,5472],[15,7],[35,12],[42,4]],[[1123,5495],[0,-6]],[[1123,5489],[-5,-52]],[[1118,5437],[-18,1],[-3,-62]],[[1097,5376],[-14,1]],[[1083,5377],[4,62],[-43,3],[-24,-1],[1,28]],[[1126,5488],[41,-21],[26,-15]],[[1193,5452],[-1,-7],[-2,-37]],[[1190,5408],[-31,2],[1,24],[-37,3]],[[1123,5437],[3,51]],[[1075,5607],[0,-41]],[[1075,5566],[-20,16],[14,31],[6,-6]],[[1247,5705],[6,43],[7,-2],[-5,-43],[-8,2]],[[1535,5468],[1,-11]],[[1536,5457],[-46,-4],[-49,24],[10,19],[23,40]],[[1474,5536],[19,-2],[16,0],[26,-66]],[[966,6102],[48,11]],[[1014,6113],[1,-10]],[[1015,6103],[-46,-10]],[[969,6093],[-3,9]],[[1221,6074],[0,-19],[-6,-49],[-3,-20],[-53,64],[0,33],[1,27],[66,4],[-5,-40]],[[1513,6059],[1,-30],[8,2],[0,-22],[8,-33],[14,8],[44,7],[17,-7]],[[1605,5984],[-85,-15],[-10,55],[-24,24],[27,11]],[[1240,5546],[4,-44],[-2,-22],[-6,83],[4,-17]],[[1157,5836],[-1,-4],[-13,65],[4,0],[10,-61]],[[1300,5928],[-54,-9],[0,3],[51,9],[3,-3]],[[807,6417],[45,-88],[51,-106],[12,-35],[-72,148],[-42,82],[6,-1]],[[1279,5931],[-2,18]],[[1277,5949],[23,8]],[[1300,5957],[13,-22]],[[1313,5935],[-34,-4]],[[1232,5861],[-4,6]],[[1228,5867],[6,25],[21,20]],[[1255,5912],[76,14],[-1,-14],[-13,-7],[-15,-33]],[[1302,5872],[-10,-16],[-17,-13],[-9,-49]],[[1266,5794],[-16,4],[-3,1],[-7,-42],[-38,12],[-5,-24]],[[1197,5745],[-32,2]],[[1165,5747],[-1,82],[41,1]],[[1205,5830],[8,-10],[3,-5],[16,46]],[[1140,5892],[12,-58],[-49,-14],[-40,59],[77,13]],[[859,6111],[36,16],[45,20],[23,-46],[3,-9]],[[966,6092],[-54,-16]],[[912,6076],[-28,-11],[-40,-23],[-51,-30],[-2,-14],[-35,-25],[-53,-39]],[[703,5934],[-4,4],[-2,-2],[14,-12],[-86,-61],[-30,-7],[-93,-1],[1,-5],[90,3]],[[593,5853],[-93,-65],[-1,-6]],[[499,5782],[-19,-4],[-41,-8]],[[439,5770],[-7,19],[-44,-9],[2,-19]],[[390,5761],[-18,-4]],[[372,5757],[-4,35]],[[368,5792],[3,43],[3,49],[5,62],[31,-4],[0,-24]],[[410,5918],[35,10],[2,19]],[[447,5947],[41,-27],[17,-6],[10,-1],[24,16],[23,44],[30,3],[71,35],[36,26]],[[699,6037],[27,-78],[27,20],[8,5],[-27,71]],[[734,6055],[36,12],[63,33]],[[833,6100],[14,-46],[24,13],[-12,44]],[[1023,5865],[55,-15]],[[1078,5850],[68,-101],[11,-6],[9,-32]],[[1166,5711],[-10,-11],[-44,-12]],[[1112,5688],[-17,33],[-21,-22],[-62,92],[35,39],[-24,35]],[[825,5640],[25,32],[31,8],[38,11],[26,-21],[17,-39],[26,-5]],[[988,5626],[-33,-10],[-28,-21],[-25,-9],[-22,8],[-11,12],[-12,14],[-25,16],[-4,2],[-3,2]],[[825,5634],[-5,-44],[37,-9]],[[857,5581],[11,-8],[-16,-33],[12,-3]],[[864,5537],[-6,-14]],[[858,5523],[-44,12],[-4,-37]],[[810,5498],[-29,9]],[[781,5507],[12,41],[25,90],[7,-4]],[[1203,5640],[24,-66],[7,-31],[3,-46]],[[1237,5497],[-28,-7]],[[1209,5490],[0,45],[-7,2]],[[1202,5537],[-5,27],[-11,71],[17,5]],[[888,6011],[-9,24]],[[879,6035],[39,20]],[[918,6055],[4,-34]],[[922,6021],[-25,-10],[-10,-13]],[[887,5998],[1,13]],[[947,5935],[-10,27],[-15,59]],[[922,6021],[6,2]],[[928,6023],[16,-37],[45,-108]],[[989,5878],[-12,-2]],[[977,5876],[-23,61],[-7,-2]],[[1193,6702],[-68,-28],[7,-15]],[[1132,6659],[-1,0]],[[1131,6659],[-12,-10],[-8,20],[-8,-3],[-10,-3],[28,-64],[28,-27],[8,-20],[3,-8],[7,-13]],[[1167,6531],[-29,-149],[-13,-35],[-2,-89],[-3,-27],[-19,-63],[-13,6],[-4,1],[-25,11],[-52,24],[-68,32],[-51,23],[-6,6],[-25,53],[-48,92],[-2,4],[-13,25],[-12,24],[-10,24],[-11,25],[-9,20],[67,27],[37,14],[31,12],[32,12],[25,10],[46,18],[178,67],[24,10],[1,-6]],[[1109,6518],[34,-16],[3,23],[-33,19],[-4,-26]],[[1130,6438],[8,37],[-33,15],[-8,-47],[33,-5]],[[1211,6266],[3,20],[-14,18],[7,10]],[[1207,6314],[7,8]],[[1214,6322],[10,-37],[27,-48],[1,-10],[-17,-30],[-6,-18],[-1,-56]],[[1228,6123],[-7,51],[4,22],[-6,18]],[[1219,6214],[2,0],[0,2]],[[1221,6216],[11,2],[-1,24],[-7,17],[-9,-2]],[[1215,6257],[-4,9]],[[1100,6110],[-4,0]],[[1096,6110],[-3,8],[-77,-15]],[[1016,6103],[1,11]],[[1017,6114],[77,13],[6,-17]],[[924,6175],[33,10],[-8,18],[-28,-21]],[[921,6182],[-5,14],[-29,66],[52,-24],[68,-31],[52,-26],[17,-6]],[[1076,6175],[-12,-20],[-51,-6]],[[1013,6149],[-4,5]],[[1009,6154],[-1,12],[-34,-13],[-29,-6]],[[945,6147],[-3,2],[-17,23],[-1,3]],[[1733,5016],[-13,26],[-24,21],[42,-24],[-5,-23]],[[1640,4736],[7,-8],[-10,-29],[30,-31],[0,-15],[15,-4],[25,45],[7,26],[-35,17]],[[1679,4737],[0,4],[4,49]],[[1683,4790],[-1,-44],[4,-4],[64,-10]],[[1750,4732],[5,-4],[-8,-38],[0,-24],[-39,-30],[-34,-23],[-58,-26],[-38,-15],[11,79],[4,17],[29,45],[18,23]],[[1680,4800],[-13,14],[0,17],[27,79],[6,26],[14,11]],[[1714,4947],[5,-28],[-6,-11],[-7,-18],[-1,-32],[-19,-25],[-9,-22],[3,-11]],[[1609,4827],[-3,4]],[[1606,4831],[11,39]],[[1617,4870],[2,0]],[[1619,4870],[-10,-43]],[[1575,5118],[14,-4],[101,-55],[-45,-16],[-103,27],[-13,34],[41,14],[5,0]],[[1469,5092],[55,11],[11,-33],[-66,18],[0,4]],[[1650,4880],[-1,21]],[[1649,4901],[41,5],[-7,-22],[-33,-4]],[[1676,4909],[-73,-9],[-4,33],[63,9],[11,-2],[22,-5],[-5,-24],[-14,-2]],[[1648,4474],[18,0],[-7,-40],[-13,-2],[-8,11]],[[1638,4443],[10,31]],[[1595,4575],[14,5],[1,-25],[-14,-2],[-1,22]],[[1577,4546],[0,17],[13,9],[2,-24]],[[1592,4548],[-3,-1]],[[1589,4547],[-12,-1]],[[1586,4449],[30,3],[1,-17],[-26,-3],[-5,17]],[[1548,4504],[2,-16]],[[1550,4488],[2,-23],[21,2],[4,-16],[-30,-2],[0,-3],[30,2],[2,-18],[-33,-3],[-1,64],[2,49],[4,4],[17,1],[1,-16],[-20,-2],[0,-3],[20,2],[0,-17],[-21,-2],[0,-3]],[[1571,4487],[2,-16],[-20,-2],[-1,16],[19,2]],[[1745,5035],[54,-28],[34,-9],[86,3],[50,-8],[-1,-3],[-49,5],[-126,-3],[-38,7],[-16,11],[6,25]],[[1870,4766],[66,-27]],[[1936,4739],[-9,-26],[-63,28],[6,25]],[[1980,4989],[1,4],[134,-8],[51,-6],[-186,10]],[[1912,4815],[5,18],[-7,21],[-6,17],[-9,43]],[[1895,4914],[20,76]],[[1915,4990],[31,-3],[20,-3],[-4,-34],[-9,-36],[-9,-31],[-15,-67],[-17,-1]],[[2253,4574],[-10,2],[-2,-9],[-37,6]],[[2204,4573],[-2,0]],[[2202,4573],[-47,14],[-25,3]],[[2130,4590],[-1,0]],[[2129,4590],[-47,10],[-33,1]],[[2049,4601],[-2,0]],[[2047,4601],[-23,-1],[-25,-8]],[[1999,4592],[-2,0]],[[1997,4592],[-39,-18]],[[1958,4574],[-24,-16],[-1,7],[-2,5],[-1,12],[2,37],[-3,38],[2,44],[1,2],[1,6],[254,-101],[68,-14],[1,-3],[-2,-14],[-1,-3]],[[2035,4658],[-3,-9],[14,-8],[1,-13],[36,-3],[34,-6],[2,4],[-3,3],[-81,32]],[[2239,4740],[-20,13],[24,53]],[[2243,4806],[63,-37]],[[2306,4769],[20,-11]],[[2326,4758],[-25,-59],[-28,-66],[-17,-36],[-18,4],[-56,13]],[[2182,4614],[6,25],[-18,7],[3,13]],[[2173,4659],[33,-10]],[[2206,4649],[2,-1]],[[2208,4648],[26,-5],[7,20],[24,60],[-26,17]],[[2176,4843],[66,-37]],[[2242,4806],[-24,-52],[-62,42],[20,47]],[[2307,4777],[-15,8],[6,13]],[[2298,4798],[10,-5],[-1,-16]],[[2126,4733],[-4,2],[15,36],[4,-2],[-15,-36]],[[2142,4771],[-4,2],[32,71],[4,0],[-32,-73]],[[1940,5002],[43,36],[-10,-39],[-33,3]],[[1982,4998],[-7,1],[12,44],[2,36],[6,3],[26,-14],[21,-2],[178,-11],[41,-3],[-30,-69],[-249,15]],[[2275,5160],[0,0]],[[449,5195],[-8,-14],[-26,18],[1,17],[33,-21]],[[410,5127],[74,22],[-13,11]],[[471,5160],[-27,19],[8,14],[34,-22],[32,-4],[0,-9],[-1,-12]],[[517,5146],[-110,-31]],[[407,5115],[3,12]],[[434,5544],[-3,22]],[[431,5566],[8,2]],[[439,5568],[22,11],[35,24]],[[496,5603],[2,1],[-4,25]],[[494,5629],[25,4],[56,8],[5,36]],[[580,5677],[17,3]],[[597,5680],[11,-45],[26,-4],[1,-35],[11,-6]],[[646,5590],[1,-1]],[[647,5589],[40,-17],[19,-14]],[[706,5558],[-7,-18],[-12,-33],[-38,18]],[[649,5525],[10,37],[-61,29],[-27,-1]],[[571,5590],[-25,2],[-23,-5],[-20,-12],[-21,-20],[-8,-20],[-15,2],[0,13],[-9,10],[-16,-16]],[[658,5688],[1,-11],[-13,-29]],[[646,5648],[-1,0]],[[645,5648],[-21,1],[-5,32]],[[619,5681],[39,7]],[[664,5814],[-144,-28],[111,78],[33,-50]],[[758,5880],[-47,-33],[7,-21]],[[718,5826],[-52,-11],[-11,18],[-22,33],[15,10],[64,46],[20,-18],[26,-24]],[[150,5051],[-1,15],[28,8],[1,-13],[0,-12],[-23,-7],[-5,9]],[[372,5228],[39,-4],[-2,-25],[-28,3]],[[381,5202],[-18,-10],[7,15],[2,21]],[[416,5316],[-14,1],[2,43]],[[404,5360],[15,-3],[-3,-41]],[[213,5715],[-2,-18]],[[211,5697],[-41,9],[43,9]],[[287,5714],[-4,-29]],[[283,5685],[-30,5]],[[253,5690],[4,34]],[[257,5724],[18,3],[12,-13]],[[229,5782],[-12,13],[-37,72],[-40,78],[5,134],[50,-12],[28,-11],[13,-6],[21,-8],[24,-7],[-14,-202],[-7,-84],[-31,33]],[[336,5754],[-26,2],[-27,0],[8,116]],[[291,5872],[52,-8],[-3,-50],[-4,-60]],[[779,5508],[-12,-13],[-15,4],[-52,30]],[[700,5529],[9,27],[39,-40],[31,-8]],[[375,5559],[53,6]],[[428,5565],[3,-29],[-35,7],[-18,-15],[2,26],[-5,5]],[[274,5394],[-36,-1],[15,52],[47,-25],[-26,-26]],[[117,5647],[54,-38],[1,5],[61,-27]],[[233,5587],[0,-11],[2,10],[21,80]],[[256,5666],[15,-7],[20,-10]],[[291,5649],[-1,-6]],[[290,5643],[12,-7],[-8,-22],[13,17],[17,-14],[15,-23],[21,-24]],[[360,5570],[12,-11]],[[372,5559],[-14,-19],[-4,-22],[10,-13],[-8,-17],[-16,4],[-7,-15],[2,-13],[4,-10]],[[339,5454],[-27,-25],[-24,4],[-21,13],[-17,10],[-22,13],[-26,15],[-29,16],[-37,20],[-1,-3],[57,-34],[58,-34],[-17,-61],[40,-2],[32,33],[24,15],[36,23],[12,15]],[[377,5472],[9,4]],[[386,5476],[6,-2],[19,7],[18,6],[-9,-113],[-1,-7],[0,-6],[-32,5],[-156,13],[-85,6],[-1,9],[-1,42],[-5,44],[-9,40],[-1,40],[0,14],[-8,37],[-4,36]],[[598,5181],[-14,12],[4,79],[42,-4],[-3,-37],[-7,-44]],[[620,5187],[-22,-6]],[[630,5274],[-42,3],[1,28],[13,3],[2,33],[29,-6],[-3,-61]],[[597,5793],[11,-4],[-62,-12],[-5,5],[56,11]],[[423,5325],[0,26],[21,4],[34,-1],[-2,-30]],[[476,5324],[-53,1]],[[676,5695],[-29,-5],[-66,-10]],[[581,5680],[6,50],[-12,50]],[[575,5780],[71,15],[19,7]],[[665,5802],[0,-14],[10,-16],[9,-30],[-3,-26],[-5,-21]],[[539,5721],[2,54],[11,2]],[[552,5777],[5,-53],[-18,-3]],[[212,4983],[4,-86],[-18,-23],[-34,-26],[-3,35],[-10,156],[22,6],[8,-13],[27,8],[2,-21],[-42,-3],[7,-42],[37,9]],[[211,5017],[1,-32],[-18,-2],[-6,30],[23,4]],[[177,4978],[-7,36],[15,4],[6,-36],[-14,-4]],[[492,5751],[-4,-15],[-33,4],[1,23]],[[456,5763],[37,7],[-1,-19]],[[716,5334],[10,-4],[-6,-17],[-17,5]],[[703,5318],[-5,1],[1,17],[17,-2]],[[123,5763],[16,179],[65,-129]],[[204,5813],[-16,-15],[23,-24],[-42,-9]],[[169,5765],[-8,-1]],[[161,5764],[-20,-4],[-18,3]],[[403,5113],[-109,-30],[-89,-27],[-22,-10]],[[183,5046],[-3,15]],[[180,5061],[103,30],[121,32]],[[404,5123],[-1,-10]],[[673,6834],[36,-5],[34,-5],[33,-4],[64,-10],[70,-10],[17,-2],[76,-11],[-15,-128],[-2,-27],[-16,-6],[-24,-9],[-126,-48],[-58,-22],[-3,1],[61,23],[0,4],[-58,-21],[-15,-7],[-28,55],[-26,58],[-66,161],[-8,21],[36,-5],[18,-3]],[[1068,6664],[-43,7],[0,-24]],[[1025,6647],[-37,-14],[4,42],[2,17],[11,95],[48,-7],[42,-6],[98,-14],[-23,-58],[-53,-19],[-49,-19]],[[640,7034],[15,-2]],[[655,7032],[0,0]],[[655,7032],[15,-2],[4,31],[11,74]],[[685,7135],[43,-32],[22,-36],[4,-4],[12,-15],[43,-22],[48,-18],[25,-5],[134,-18],[13,-2],[1,-19],[-7,-49],[-6,-42],[-3,-26],[-10,-56],[-76,10],[-1,0],[-214,31],[-3,0],[-56,9],[-37,5],[-8,21],[-11,25],[-41,97],[-55,134],[-28,66],[-27,41],[-18,39]],[[429,7269],[3,8],[13,37]],[[445,7314],[86,-35],[2,-1],[22,43],[9,17],[4,7],[-54,38],[5,8],[46,-27],[16,28],[14,24],[-7,10],[11,19],[-16,32],[-48,93],[-5,15]],[[530,7585],[12,-2],[32,45],[10,0]],[[584,7628],[1,3]],[[585,7631],[16,-3],[3,-4],[36,19],[0,21],[0,9],[22,18],[-11,42]],[[651,7733],[25,25],[33,40],[65,77],[37,25],[-10,-52]],[[801,7848],[-18,-16],[-4,-29],[14,-8]],[[793,7795],[1,-18],[19,-56],[-60,-33]],[[753,7688],[-10,31],[-85,-46],[6,-18],[22,-43],[78,43],[-10,32]],[[754,7687],[59,32],[12,-31],[24,-68],[12,-35],[5,-9],[-18,52],[-14,40],[-29,84]],[[805,7752],[43,23]],[[848,7775],[4,2],[23,-33]],[[875,7744],[9,5],[-4,-12],[19,-33],[28,14]],[[927,7718],[7,-12],[14,-24]],[[948,7682],[-48,-26],[18,-51],[19,-49],[11,-26],[-7,-4],[-1,-22],[7,-19],[-17,-11],[-57,-37],[-18,-24],[21,-18],[24,-42],[6,4],[55,36],[50,32],[5,-14],[11,8],[17,-42],[27,15],[19,11]],[[1090,7403],[33,-87],[30,-61],[34,-92],[2,-5],[11,-31],[15,-47],[10,-43],[32,-139],[-34,28],[-99,59]],[[1124,6985],[-93,1],[-41,5],[-53,7],[-59,8],[-21,5],[-54,20],[-34,17],[-24,28],[-19,32]],[[726,7108],[7,15],[5,12],[-4,17],[-36,29]],[[698,7181],[-8,6],[-9,7]],[[681,7194],[-10,7],[-22,-33]],[[649,7168],[0,-1],[-4,-94],[-4,-26],[-2,-13],[1,0]],[[1117,7315],[-23,-3],[6,-18],[18,10],[-1,11]],[[1134,6836],[-13,0],[0,-20],[-22,3],[-2,-22],[14,-7],[-40,5],[1,-15]],[[1072,6780],[-66,10],[13,83],[6,42],[3,17],[3,51],[92,-1],[1,3]],[[1124,6985],[7,-7],[76,-45],[-63,0],[-27,-1]],[[1117,6932],[-3,0],[0,-19],[28,-1]],[[1142,6912],[0,-11],[-43,0]],[[1099,6901],[-8,-11],[35,-3],[14,-9]],[[1140,6878],[-6,-42]],[[1144,6912],[93,-1]],[[1237,6911],[-1,-13],[-89,3],[-3,11]],[[1261,6861],[-8,3],[-7,-16],[-11,7]],[[1235,6855],[4,55],[19,-17],[3,-32]],[[1200,7210],[17,9]],[[1217,7219],[3,-9],[-18,-8],[-2,8]],[[1148,6852],[12,5]],[[1160,6857],[50,-9]],[[1210,6848],[-6,-19],[-7,1],[-2,-23]],[[1195,6807],[-12,-11],[-32,3]],[[1151,6799],[1,17],[-8,1],[4,35]],[[1262,6839],[0,50],[12,-26],[-12,-24]],[[1228,6775],[-16,14]],[[1212,6789],[14,21],[16,-6],[-14,-29]],[[1192,6479],[-5,2]],[[1187,6481],[22,130],[17,-8]],[[1226,6603],[-6,-7],[-6,-37],[7,-26],[-6,-27],[-10,0],[-13,-27]],[[463,7433],[-25,14],[4,7],[27,-12],[-6,-9]],[[576,7394],[-14,-20],[-38,22],[10,17],[42,-19]],[[459,7422],[2,3],[54,-32],[-5,-7],[-51,36]],[[965,7546],[-5,18],[20,14],[7,-19],[-22,-13]],[[973,7749],[-10,-4],[-23,6],[-20,45]],[[920,7796],[41,23],[12,-48],[0,-22]],[[960,7823],[-44,-24],[-17,84],[-3,26],[4,28],[60,-78],[0,-36]],[[434,7957],[-40,-8],[-1,18],[-14,53],[12,-1]],[[391,8019],[7,-19],[32,-2],[4,-41]],[[680,7959],[40,-8]],[[720,7951],[7,21]],[[727,7972],[15,-25],[25,-12]],[[767,7935],[0,-2]],[[767,7933],[-2,-20]],[[765,7913],[-35,-8]],[[730,7905],[0,7]],[[730,7912],[-9,16],[-17,-6],[-1,-23]],[[703,7899],[-1,0]],[[702,7899],[-1,0]],[[701,7899],[-31,-6],[-25,-13]],[[645,7880],[-19,78]],[[626,7958],[25,1],[26,0]],[[677,7959],[3,0]],[[362,8164],[-13,-11],[12,-38]],[[361,8115],[2,-5]],[[363,8110],[29,-89]],[[392,8021],[-49,7],[-5,38],[-17,70],[0,2],[112,131],[20,11],[41,27],[5,32],[35,0],[27,-27],[9,-13],[17,-56],[4,-28],[30,-86]],[[621,8129],[-115,-38]],[[506,8091],[-2,12]],[[504,8103],[-24,17],[3,8],[-13,14],[-5,16],[-25,32]],[[440,8190],[-16,22],[-5,-5],[-22,-16],[-18,-5],[-17,-22]],[[862,7959],[-27,-18]],[[835,7941],[-8,-5],[-5,-3]],[[822,7933],[-2,11],[19,11],[23,4]],[[851,7874],[-4,34]],[[847,7908],[21,10],[28,20]],[[896,7938],[-2,-38]],[[894,7900],[-13,-1],[-30,-25]],[[428,7950],[-12,-7],[8,-46],[6,-22],[27,2]],[[457,7877],[45,13]],[[502,7890],[3,-8]],[[505,7882],[-45,-18],[-26,-15],[-3,-5],[-1,-22],[1,-28],[11,-3]],[[442,7791],[1,-11],[11,-4],[4,0]],[[458,7776],[7,-10],[43,14],[4,-9],[-28,-10],[2,-11],[3,-7]],[[489,7743],[22,-32],[32,-31],[10,-8],[12,-20],[-12,-20],[-19,16],[-3,-5]],[[531,7643],[-4,-6],[-26,26],[-15,23],[-14,25],[-19,22],[-42,17],[2,15],[-45,4]],[[368,7769],[-4,35],[-1,24],[12,56],[20,63],[35,7],[-2,-4]],[[626,7759],[7,6]],[[626,7759],[0,0]],[[603,7819],[-39,-31],[-3,11]],[[561,7799],[38,30]],[[599,7829],[-6,25]],[[593,7854],[13,9]],[[606,7863],[39,17]],[[645,7880],[7,-10]],[[652,7870],[1,-1]],[[653,7869],[14,-46]],[[667,7823],[1,-3]],[[668,7820],[6,-21],[14,-18]],[[688,7781],[-30,-32]],[[658,7749],[-8,26],[-16,49],[-4,16],[-27,-21]],[[839,7865],[-36,-17]],[[803,7848],[2,14],[8,40],[7,1],[13,-29],[6,-9]],[[366,7772],[-15,1],[0,-56],[-5,-22],[-8,-5],[28,-6]],[[366,7684],[0,-77]],[[366,7607],[-15,9],[5,-28],[-4,-44],[-16,-22],[13,-19],[-2,-9],[20,-11]],[[367,7483],[5,0],[55,-31],[-3,-7],[-36,16]],[[388,7461],[-15,7],[3,-42],[-15,8],[-1,-11],[-5,-12],[-17,-11]],[[338,7400],[-4,52],[-53,187],[13,99],[37,139],[5,20],[3,14],[4,114],[31,-5],[7,-11],[11,-41],[1,-21],[-7,-21],[-13,-43],[-11,-48],[4,-63]],[[319,7669],[-12,-3],[0,-18],[7,-25],[7,3],[-2,43]],[[571,8047],[32,10],[6,-28],[8,-13]],[[617,8016],[-2,-5]],[[615,8011],[-8,16],[-7,-7],[-32,3],[0,23]],[[568,8046],[3,1]],[[395,7628],[-3,-28]],[[392,7600],[-22,6]],[[370,7606],[1,9]],[[371,7615],[9,-1],[1,17],[14,-3]],[[2883,6227],[-14,-26],[-81,-86],[2,-3],[6,1]],[[2796,6113],[5,-4]],[[2801,6109],[1,-4]],[[2802,6105],[-17,1],[-7,5],[-4,4],[-5,5],[-1,1],[-14,17],[12,8],[40,41],[66,53],[5,-3],[4,-7],[2,-3]],[[2948,6075],[-18,2]],[[2930,6077],[3,48],[20,-3],[-5,-47]],[[2977,6335],[-25,-27],[4,-6]],[[2956,6302],[-25,-21],[10,-14],[-45,-48],[-9,14],[-9,13],[32,29],[63,65],[4,-5]],[[2972,6161],[8,77],[30,-3],[2,-9],[-4,-48],[-6,-8],[-24,-13],[-6,4]],[[2976,6295],[22,24],[31,-5],[-6,-65],[-50,7],[3,39]],[[3142,6237],[18,-17],[-18,-19],[-10,2],[-39,-11],[-5,31],[54,14]],[[3134,6193],[-40,-43],[-2,34],[42,9]],[[3199,6180],[-1,-35],[-30,-10],[2,48],[10,17],[19,-20]],[[3146,6248],[-23,21],[23,11],[0,-32]],[[3041,6135],[-6,-10],[-13,13],[-5,-9]],[[3017,6129],[1,29],[68,25],[0,-37],[-17,-30],[-25,24],[-3,-5]],[[3083,6305],[-14,12],[20,7],[-6,-19]],[[3108,6119],[-13,3]],[[3095,6122],[0,13],[53,62],[18,17],[11,-9],[-12,-24],[-4,-48],[-35,-12],[-18,-2]],[[3254,5983],[1,-16],[-31,4],[1,6],[29,6]],[[3372,5930],[-15,22],[16,14]],[[3373,5966],[-1,-36]],[[3106,5954],[28,-1],[24,5],[-1,-18],[-25,4],[-23,-6],[-3,16]],[[3341,6054],[-4,-6],[-29,25],[6,8],[18,-17]],[[3332,6064],[9,-10]],[[3364,6076],[-1,19],[13,-14]],[[3376,6081],[-12,-5]],[[3393,6022],[-5,0],[10,56],[2,-1],[-7,-55]],[[3383,6021],[-2,-7],[-36,18],[-4,10],[42,-21]],[[3105,6351],[21,1],[-3,-23]],[[3123,6329],[-18,-2],[0,24]],[[3381,6369],[7,-5],[-8,-25]],[[3380,6339],[-8,1]],[[3372,6340],[-1,24],[6,5]],[[3377,6369],[4,0]],[[3511,6386],[-25,6]],[[3486,6392],[4,25],[2,42],[15,2]],[[3507,6461],[38,-9]],[[3545,6452],[-8,-62],[-3,-21],[-25,-22],[10,65],[-4,3],[-4,-29]],[[3185,6413],[-29,5],[-42,15]],[[3114,6433],[7,23],[40,-11],[28,-3],[-2,-11],[0,-4],[-2,-14]],[[3224,6439],[40,-15]],[[3264,6424],[18,-22],[-18,-8]],[[3264,6394],[-46,10]],[[3218,6404],[-28,11],[1,12],[1,4],[1,10],[31,-2]],[[3437,6378],[-29,-8]],[[3408,6370],[0,5],[-45,-1],[-43,9],[-8,-1],[-21,26],[2,7],[37,7],[77,-20],[24,6],[6,-30]],[[3439,6418],[30,24]],[[3469,6442],[18,10],[-3,-37]],[[3484,6415],[-38,-32]],[[3446,6383],[-7,35]],[[3222,6495],[-21,33],[21,15],[10,-2],[-10,-46]],[[3427,6525],[7,-1],[1,-20],[-9,-28],[4,37],[-8,-31],[-3,19],[8,24]],[[3315,6340],[1,6],[45,-9],[-1,-6],[-45,9]],[[3117,6458],[-24,-32],[9,22],[21,27],[25,21],[-31,-38]],[[3104,6455],[-12,-22],[-2,13],[33,38],[13,5],[-32,-34]],[[3202,6543],[39,18],[-43,-30],[4,12]],[[3283,6557],[-18,0],[-41,-11],[45,18],[14,-7]],[[3496,6515],[23,5],[32,-18],[-55,13]],[[3100,6328],[-6,53],[10,0],[-4,-53]],[[3079,6405],[8,-36],[2,-41],[-24,-9],[-15,2],[4,31],[-11,15],[36,38]],[[3542,6563],[46,-12],[0,4],[43,-14]],[[3631,6541],[13,-31],[11,-8],[-5,21],[35,-17],[-3,5]],[[3682,6511],[15,40],[16,29],[-12,32]],[[3701,6612],[-21,54],[-16,38],[-12,29],[-14,22]],[[3638,6755],[1,10],[-9,18]],[[3630,6783],[-22,56]],[[3608,6839],[9,5],[28,-65],[40,-99]],[[3685,6680],[48,-118]],[[3733,6562],[7,-19]],[[3740,6543],[24,-72],[14,-28],[16,-18]],[[3794,6425],[7,-4],[2,1],[20,4],[27,13]],[[3850,6439],[-5,-36],[25,-1]],[[3870,6402],[24,5]],[[3894,6407],[4,2],[8,56],[30,13],[13,6],[4,-12],[-4,-27],[3,0],[1,4],[11,79],[8,15],[0,10],[-33,-12],[-27,9],[41,-2],[19,8],[-1,8],[-35,-8],[-26,5],[-21,12],[-9,23],[-13,31],[3,21],[16,10],[-4,-44],[5,44],[21,12],[-8,-4],[-14,-6],[-16,-8],[6,46],[21,163],[4,29],[11,85],[6,-1],[-1,7],[-4,0],[5,43],[-7,19],[18,39],[3,5],[2,31],[-4,21]],[[3930,7139],[10,-1],[10,19]],[[3950,7157],[1,3],[-1,3]],[[3950,7163],[10,52],[-6,72],[-8,54]],[[3946,7341],[8,0],[6,0]],[[3960,7341],[9,-53]],[[3969,7288],[6,-42],[9,-13],[15,32]],[[3999,7265],[7,14]],[[4006,7279],[18,34],[-8,36]],[[4016,7349],[12,9],[21,28],[5,-2],[4,2],[-2,2],[-4,13],[23,58],[9,-8],[1,1],[-19,31],[-18,19],[-32,17],[-20,5],[-24,-3],[-1,6],[1,10]],[[3972,7537],[26,6],[28,-8],[35,-25],[29,-46],[2,3],[-19,33]],[[4073,7500],[36,3],[32,68],[26,53],[34,78]],[[4201,7702],[7,-7],[32,-27],[36,-20]],[[4276,7648],[-11,-34],[25,-13],[3,-19],[-16,-46],[12,-13],[4,-10],[30,-17],[3,-28]],[[4326,7468],[-41,-21],[-29,-13],[-31,-10],[-62,-19],[-28,-9],[-3,-1],[-7,-2],[-23,-7]],[[4102,7386],[3,17],[-33,-3],[-9,-19]],[[4063,7381],[0,-11],[17,-25],[28,-40]],[[4108,7305],[-16,-5],[-13,-15],[5,-23]],[[4084,7262],[-8,-8],[-31,-39],[-29,-36]],[[4016,7179],[-12,9],[-20,-21],[-5,-33],[7,-2]],[[3986,7132],[-3,-39],[-7,-3],[7,-8],[1,-24],[16,-73],[4,-1]],[[4004,6984],[-3,-21],[3,-114],[2,-78],[6,-17],[38,-7]],[[4050,6747],[0,-3],[47,-8],[-10,-101],[-15,-7],[-10,-4],[30,-7],[35,4],[14,-6],[70,2],[96,-23],[-1,-10],[9,1],[2,7],[38,3],[57,19],[75,43],[23,10],[59,19],[24,18],[19,22],[120,-54],[7,-2]],[[4739,6670],[22,-28],[34,-14],[63,-28]],[[4858,6600],[-4,-15]],[[4854,6585],[-63,28],[-3,-8],[-4,-19],[5,-5],[55,-22]],[[4844,6559],[-24,-108],[1,-3]],[[4821,6448],[15,-7]],[[4836,6441],[3,-4],[10,31]],[[4849,6468],[102,-51]],[[4951,6417],[-11,-28],[-14,-32]],[[4926,6357],[-49,24]],[[4877,6381],[-4,2],[-2,-11],[-28,14],[3,10],[-2,1]],[[4844,6397],[-33,16]],[[4811,6413],[-3,2],[-39,-133],[-6,-5],[15,-8]],[[4778,6269],[-10,-29]],[[4768,6240],[-16,-3],[-2,-41],[-5,-18]],[[4745,6178],[-78,-14],[-91,-18],[-14,-3],[-53,-10],[-56,-3],[-54,9]],[[4399,6139],[-39,32],[-25,27],[-17,-16],[4,-33]],[[4322,6149],[-32,4],[-1,22],[-9,14],[-15,6],[6,39],[0,11],[13,97],[5,38],[13,100],[13,74],[-1,20],[-10,-3]],[[4304,6571],[-38,-10],[-9,-1]],[[4257,6560],[-42,-3],[-23,4]],[[4192,6561],[-6,1]],[[4186,6562],[-89,21]],[[4097,6583],[-8,3],[-25,-4]],[[4064,6582],[-31,-22],[-25,-43]],[[4008,6517],[-9,-30],[6,-56],[29,-222],[11,-11],[-8,-9],[-24,6]],[[4013,6195],[0,15],[-22,149],[-6,-15],[-13,-1]],[[3972,6343],[1,59],[-23,21],[1,12],[-5,-7],[-3,-15],[-47,-23],[1,10],[-4,-2],[-1,-10],[-31,-5],[-24,4],[-43,21],[-1,3],[-6,-5],[1,1],[44,-24],[42,-4],[-5,-27]],[[3869,6352],[-8,-6],[-7,-68]],[[3854,6278],[6,-38],[17,-46],[-14,3]],[[3863,6197],[-10,33]],[[3853,6230],[-11,27]],[[3842,6257],[-49,120],[-13,25]],[[3780,6402],[1,1],[-4,7]],[[3777,6410],[-3,10],[-30,25],[-27,21]],[[3717,6466],[-4,3]],[[3713,6469],[-28,18]],[[3685,6487],[-2,0],[-10,3],[-14,3],[-8,1],[2,-6],[-10,-4],[-32,13],[-9,4],[-88,34],[-14,9],[-26,5],[-33,11],[-11,1],[-113,26],[-46,0],[-23,-4],[-35,-15],[-18,-33],[-9,14],[-3,5],[1,9],[33,20]],[[3217,6583],[53,15],[43,1]],[[3313,6599],[-1,-5],[6,-2],[0,2],[114,-25],[9,-4],[1,2],[59,-14],[2,17],[4,25],[2,17],[35,-8],[-2,-17],[-4,-23],[4,-1]],[[3699,6494],[18,-15]],[[3717,6479],[5,-3]],[[3722,6476],[33,-25],[4,3],[-17,48]],[[3742,6502],[-11,33]],[[3731,6535],[-5,13],[-35,-38],[-5,-5],[-9,-9],[22,-2]],[[4000,6552],[5,-4],[21,31]],[[4026,6579],[33,23],[6,11],[16,3],[-24,5]],[[4057,6621],[-34,8],[-30,16],[6,-61]],[[3999,6584],[-11,-12],[1,-17],[11,-3]],[[3115,6489],[4,5]],[[3119,6494],[55,58],[3,-5],[5,-8],[-19,-14],[-31,-29],[-17,-7]],[[3092,6468],[27,14],[-28,-31],[1,17]],[[3084,6443],[-47,-51]],[[3037,6392],[-51,-55],[-7,11],[107,113],[-2,-18]],[[3189,6579],[-13,-15],[-10,17],[23,-2]],[[3251,6752],[34,0],[0,-14],[-35,0],[1,14]],[[3083,6897],[4,36]],[[3087,6933],[6,1],[59,5],[15,-16],[-26,-26],[-14,-10],[-42,-43],[-4,-5],[2,58]],[[3233,6854],[-24,-7]],[[3209,6847],[6,44],[4,2],[14,-39]],[[3260,6905],[3,7],[28,-14],[-6,-12],[-25,19]],[[3138,6646],[-8,16],[-9,-5],[5,31],[12,-42]],[[3160,6908],[-11,-20],[-20,-3],[31,23]],[[3144,6709],[-5,-51],[-10,24],[1,23]],[[3130,6705],[14,4]],[[3038,6787],[4,4],[33,1],[-6,-54],[-31,49]],[[2812,6269],[4,51],[4,7],[36,-58],[-2,-4],[-42,4]],[[2870,6271],[6,-10]],[[2870,6271],[0,0]],[[2830,6352],[5,46],[14,-4]],[[2849,6394],[-6,-41],[-13,-1]],[[2869,6427],[5,53]],[[2874,6480],[8,-1],[0,4],[-52,5],[1,9],[35,-3],[10,3],[11,-18],[-6,-53],[-12,1]],[[2911,6562],[-5,-28],[-18,1],[-7,-10],[-15,23],[3,11]],[[2869,6559],[42,3]],[[2804,6650],[-6,-7]],[[2804,6650],[0,0]],[[2919,6637],[22,-2],[-1,-13],[-22,2],[1,13]],[[2894,6704],[-19,2],[9,15],[10,-17]],[[2766,6774],[12,-17],[-14,-5],[-12,7],[14,15]],[[2718,6842],[15,9],[28,36],[10,-11],[-55,-58],[2,24]],[[2772,6878],[-8,13],[62,62],[10,-8],[-64,-67]],[[2957,6785],[0,3],[38,8],[8,-2],[-46,-9]],[[3087,6501],[-29,5],[6,64]],[[3064,6570],[36,3],[-13,-72]],[[3009,6524],[4,7],[13,-16],[-17,9]],[[3035,6541],[13,1],[-3,-20],[-10,19]],[[2968,6632],[0,4]],[[2968,6636],[5,51]],[[2973,6687],[0,6]],[[2973,6693],[5,57]],[[2978,6750],[65,12],[43,-66],[24,-40],[-9,-76],[-35,-3],[-103,-7]],[[2963,6570],[5,62]],[[1839,6114],[-22,37],[-19,31],[-18,45],[-15,14],[-30,0],[-18,6],[-26,19],[-29,5],[-36,0],[-41,-9],[-12,10],[-4,7],[-11,15],[-1,3],[-15,20],[0,1],[-8,15],[-13,29],[-15,30],[-37,50],[-7,15],[5,26],[17,22],[39,29],[7,8],[10,26],[10,-4],[40,-10],[55,5],[61,10],[36,2],[31,-3],[43,-14],[48,-26],[33,-9],[19,1],[43,11],[19,-3],[25,-15],[33,-22],[33,-7],[74,-19],[-21,-65],[-16,-52],[-36,18],[-21,13],[-14,20],[-18,36]],[[2017,6435],[3,16],[-13,31],[-8,-6],[-6,-4],[2,-19],[-12,-9],[-14,-9],[11,-25],[36,24]],[[2016,6434],[5,-15],[6,-15],[4,-10],[12,-17],[13,-10],[59,-29],[27,-24],[28,-52],[8,-45],[8,-163],[5,-28],[15,-40],[3,-8]],[[2209,5978],[-148,55]],[[2061,6033],[-42,15]],[[2019,6048],[-30,10]],[[1989,6058],[-5,2]],[[1984,6060],[-6,3],[-27,9],[-31,12],[-34,12],[-28,11],[-19,7]],[[1613,6538],[8,-22],[10,6],[5,4],[-8,21],[-15,-9]],[[1551,6565],[-10,5],[20,56],[-2,16],[-31,76],[-21,43],[-39,21],[-6,13],[9,56],[18,74],[3,11],[6,28],[20,55],[3,11],[10,37],[5,17],[11,39],[5,16],[25,89],[4,26],[-31,19],[-14,15],[-2,18],[8,65],[-3,23],[-20,34],[-26,35],[-9,21],[-3,31],[3,71],[-5,54],[-1,11],[2,69],[20,19],[12,12],[21,42],[28,47],[25,28],[23,26],[44,96],[13,29],[22,50],[5,9],[14,32],[19,-48],[7,-18],[27,-67],[12,-26],[37,-94],[38,-95],[19,-46],[19,-48],[38,-94],[22,-56],[15,-38],[17,-40],[22,-53],[39,-95],[38,-93],[21,-52],[7,-17],[-12,-4],[-50,-17],[-18,-1],[-51,24],[-70,37],[3,-9],[5,2],[59,-31],[49,-24],[20,-2],[32,10],[34,11],[-5,-30],[-25,-83],[-11,-35],[-10,-32],[-23,-76],[1,-17],[12,-30],[23,-57],[15,-36],[15,-38],[23,-55],[38,-95],[-1,-34],[-14,-41],[-73,18],[-38,10],[-55,36],[-11,3],[-44,-11],[-33,-1],[-25,8],[-47,25],[-45,15],[-37,3],[-29,-2],[-57,-9],[-36,-7],[-23,0],[-39,10]],[[2549,6754],[-41,-18],[-2,-9]],[[2506,6727],[-31,-15]],[[2475,6712],[-7,17],[-18,-7]],[[2450,6722],[-2,6],[-14,47],[-15,56],[-39,94],[-38,93],[-2,7],[-35,84],[-15,38],[73,10],[56,33],[5,3],[4,2],[33,15],[46,39],[9,11],[14,34],[17,85],[2,4],[9,11],[14,10],[7,6]],[[2579,7410],[9,-10],[45,-46],[79,-82],[5,0]],[[2717,7272],[0,-8],[9,-89],[6,-35],[4,-24],[-18,-6]],[[2718,7110],[-2,13],[-13,-3],[-19,-6],[2,-13]],[[2686,7101],[-12,-2],[1,-6]],[[2675,7093],[2,-33],[-22,25],[-2,-29]],[[2653,7056],[-1,-6]],[[2652,7050],[-3,-47],[-1,-25],[-4,-64],[-4,-70],[18,-3]],[[2658,6841],[0,-8],[-56,11],[-13,24],[13,-26],[56,-11],[0,-14],[-28,-39],[-23,15],[-28,-19],[-21,-14],[-9,-6]],[[2505,7108],[-10,14],[-15,-4],[14,-26],[10,11],[1,5]],[[2656,7126],[-1,5],[-28,6],[-11,-6],[3,-15],[19,2],[18,8]],[[2451,6783],[26,7],[19,15],[6,17],[-13,8],[-18,-27],[-20,-20]],[[2111,7123],[2,2],[35,-76],[14,-34],[-2,-9],[23,-47],[86,-244],[15,-41],[50,-123],[-17,39],[-39,97],[-31,83],[-46,130],[-82,203],[-8,20]],[[2392,6724],[20,-13],[1,-31],[4,-9],[-16,-32],[-31,-27]],[[2370,6612],[-16,-10],[0,45],[33,72],[5,5]],[[2718,6277],[2,-5],[-33,-36],[-13,19],[-10,29],[54,-7]],[[2684,6285],[-18,3],[14,33]],[[2680,6321],[15,-14],[-11,-22]],[[2534,6445],[34,-2],[0,-11],[20,-12]],[[2588,6420],[1,-6]],[[2589,6414],[-4,-25],[-27,24],[-26,29]],[[2532,6442],[2,3]],[[2592,6421],[41,19]],[[2633,6440],[1,-3]],[[2634,6437],[-20,-26],[11,-30],[-19,17],[-3,25],[-10,-7]],[[2593,6416],[-1,5]],[[2691,6507],[12,-19],[36,6]],[[2739,6494],[4,-23]],[[2743,6471],[-8,1],[-19,-2],[-38,-18],[-16,1],[-25,-11]],[[2637,6442],[-1,2],[-10,18],[5,5]],[[2631,6467],[8,-15],[26,18],[33,13],[-9,22]],[[2689,6505],[2,2]],[[2767,6500],[-1,-16],[59,0]],[[2825,6484],[-5,-55],[-74,6],[5,45],[16,20]],[[2531,6443],[-25,36],[-14,32],[-31,40],[23,0],[16,-37],[16,-14],[5,-28],[12,-26]],[[2533,6446],[-2,-3]],[[2493,6617],[8,-38],[-14,26],[6,12]],[[2706,6810],[-12,8],[-34,8],[1,10],[35,-7],[10,8],[0,-27]],[[2648,6746],[-2,5],[52,56],[4,-5],[-54,-56]],[[2800,6199],[-14,13],[18,8],[-4,-21]],[[2729,6263],[5,1]],[[2729,6263],[0,0]],[[2568,6716],[12,-29]],[[2580,6687],[-6,-4]],[[2574,6683],[-12,29]],[[2562,6712],[6,4]],[[2606,6623],[-11,4]],[[2595,6627],[12,8],[-1,-12]],[[2328,8419],[-21,21],[-14,6],[-8,-13],[-7,7],[-14,-22]],[[2264,8418],[-22,21],[77,31],[31,-2],[-22,-49]],[[2340,8438],[21,-22]],[[2361,8416],[-7,-23]],[[2354,8393],[-17,3],[-8,-17],[-11,8]],[[2318,8387],[22,51]],[[2358,8401],[6,17]],[[2364,8418],[12,-6],[-6,-17],[-12,6]],[[2610,8151],[6,2],[3,-46],[-4,-1],[-5,45]],[[2611,8169],[1,-12],[-25,-6],[-10,10],[-3,30]],[[2574,8191],[8,-4],[16,14],[0,-32],[13,0]],[[2807,8191],[-1,23],[-26,-3],[-4,53],[25,3],[-1,24]],[[2800,8291],[9,1]],[[2809,8292],[7,-104]],[[2816,8188],[-9,3]],[[2800,8295],[-6,77]],[[2794,8372],[9,3]],[[2803,8375],[5,-79]],[[2808,8296],[-8,-1]],[[2674,8508],[-4,-26]],[[2670,8482],[-2,-33],[38,-20]],[[2706,8429],[-32,-48],[-13,-25]],[[2661,8356],[-43,27]],[[2618,8383],[15,37]],[[2633,8420],[4,-2],[12,29],[-16,9]],[[2633,8456],[4,10],[13,38],[4,14],[20,-10]],[[2794,8376],[3,22],[14,38]],[[2811,8436],[8,-4]],[[2819,8432],[-16,-54]],[[2803,8378],[-9,-2]],[[2867,8809],[-5,8]],[[2862,8817],[23,-12],[5,14],[22,-39]],[[2912,8780],[-1,-2],[-17,-46],[1,-73],[-1,-28]],[[2894,8631],[-2,0],[-72,-195]],[[2820,8436],[-52,29]],[[2768,8465],[26,71]],[[2794,8536],[1,3]],[[2795,8539],[17,45]],[[2812,8584],[1,4]],[[2813,8588],[5,16]],[[2818,8604],[13,35],[5,14],[30,96]],[[2866,8749],[1,3],[0,2]],[[2867,8754],[15,47]],[[2882,8801],[-15,8]],[[2616,8963],[-7,-25],[-6,-61],[-5,-35],[-17,-87],[-10,-35],[-5,-15]],[[2566,8705],[-35,19],[-11,-62]],[[2520,8662],[-7,25],[13,40],[1,7],[12,37],[22,84],[10,77],[-1,17],[12,28]],[[2582,8977],[34,-14]],[[2799,8762],[-12,-48]],[[2787,8714],[-24,12]],[[2763,8726],[14,45],[19,-7]],[[2796,8764],[3,-2]],[[2809,8879],[30,-12],[-3,-13]],[[2836,8854],[-30,12],[3,13]],[[2621,8981],[10,32],[-32,33]],[[2599,9046],[1,5],[22,-26],[43,-28],[46,-17],[36,-1],[25,8],[44,20],[41,6],[27,-8],[-11,-39]],[[2873,8966],[-18,4],[-40,16],[-6,-34]],[[2809,8952],[-14,2]],[[2795,8954],[-6,-26],[15,-6],[-3,-10],[-18,7],[-5,-14],[-2,-9]],[[2776,8896],[-23,9],[-54,23],[-61,41],[-17,12]],[[2772,7958],[131,-127],[-2,-3],[-124,121],[-5,9]],[[2710,8041],[35,-50],[-2,-2],[-35,50],[2,2]],[[2482,8132],[72,-40],[-1,-3],[-72,41],[1,2]],[[2479,8134],[-1,-3],[-63,36],[1,3],[63,-36]],[[2367,8198],[46,-26],[0,-3],[-46,26],[0,3]],[[2413,8412],[2,6]],[[2415,8418],[87,-80]],[[2502,8338],[86,-82],[11,-5]],[[2599,8251],[23,-25],[7,-6],[69,-72],[-4,-10],[-52,60],[-5,2],[-20,1],[4,14],[-5,3],[-109,58],[-34,-1],[-47,-16],[-2,-2],[0,-2]],[[2424,8255],[-28,-15],[-12,-45]],[[2384,8195],[-33,19],[-8,-2],[-3,-1],[-3,-2],[24,-15],[-13,-13],[-26,1],[-15,8],[-55,-32],[-21,-15]],[[2231,8143],[-4,9]],[[2227,8152],[25,14]],[[2252,8166],[81,46]],[[2333,8212],[3,2],[-67,51],[2,3],[69,-52],[4,3]],[[2344,8219],[62,37],[4,13]],[[2410,8269],[8,-7],[2,1],[58,47],[8,11]],[[2486,8321],[11,11],[-84,80]],[[2195,8325],[74,-55],[-2,-3],[-73,54],[1,4]],[[3353,8507],[5,-27],[-20,-41],[-19,-17],[-6,-4],[-14,-10]],[[3299,8408],[-7,16],[-6,-5],[-21,47],[8,5],[-9,14]],[[3264,8485],[8,15]],[[3272,8500],[2,3],[-33,36],[-1,2],[-25,-14],[-47,77],[-35,42],[-17,-17]],[[3116,8629],[-2,32],[29,26],[55,-91],[2,2],[-58,95],[-2,-2],[-11,-10],[-24,37],[-71,116],[-1,-1],[51,-85],[42,-68],[-15,-26],[1,-13],[1,-9]],[[3113,8632],[-17,-5],[-13,-13],[15,-26]],[[3098,8588],[-33,-30],[-27,28],[-64,110],[-15,37],[-17,73],[-16,23],[14,38],[-15,-37],[-37,24],[-43,18],[9,42],[7,-5],[-6,9],[12,19],[8,25],[13,42],[22,0],[19,-7],[56,-43],[57,-81],[120,-200],[37,-64],[45,-65],[3,6],[6,31],[-8,15],[-5,5],[25,35]],[[3265,8636],[40,-32],[17,-40]],[[3322,8564],[-16,-20],[2,-11],[10,-5],[15,-39],[20,18]],[[2647,8505],[-10,6]],[[2637,8511],[4,12],[11,-4],[-5,-14]],[[2355,8261],[-28,21],[-33,24],[-4,-10]],[[2290,8296],[-5,-11]],[[2285,8285],[-12,10]],[[2273,8295],[5,11],[-21,15],[36,70]],[[2293,8391],[54,-53],[29,-34],[19,-20],[-32,-19],[-8,-4]],[[2769,8458],[-24,-64]],[[2745,8394],[-1,-3]],[[2744,8391],[-23,-56],[10,-5]],[[2731,8330],[-11,-21]],[[2720,8309],[-5,4],[-12,-18],[-20,9]],[[2683,8304],[-2,0]],[[2681,8304],[-28,12]],[[2653,8316],[14,40],[11,11],[21,34],[25,49],[10,27],[30,-16],[5,-3]],[[2403,8184],[15,47],[10,21]],[[2428,8252],[11,-12],[-21,-65],[-15,9]],[[2579,8730],[100,-41]],[[2679,8689],[-2,-5],[-99,41],[1,5]],[[2208,8618],[17,-8],[63,-17],[4,27]],[[2292,8620],[6,-5]],[[2298,8615],[-6,-40],[-8,3],[-4,-27]],[[2280,8551],[-8,8]],[[2272,8559],[5,33],[-53,15],[-2,-2]],[[2222,8605],[-14,13]],[[2773,8811],[-13,-10],[-15,27],[21,-7],[7,-10]],[[2409,8578],[3,-1]],[[2412,8577],[-4,-26],[8,-28]],[[2416,8523],[-3,-2]],[[2413,8521],[-8,25],[-60,17]],[[2345,8563],[1,3]],[[2346,8566],[58,-17],[5,29]],[[2449,8334],[12,-35],[-16,-13]],[[2445,8286],[-15,-2],[-12,-14],[-8,32]],[[2410,8302],[5,13]],[[2415,8315],[17,-16],[17,35]],[[2384,8300],[-7,7],[29,86],[8,-6]],[[2414,8387],[-30,-87]],[[2813,8007],[1,13],[3,3]],[[2817,8023],[29,-29]],[[2846,7994],[29,-29],[12,18]],[[2887,7983],[11,11],[13,-1],[7,0],[0,-84],[0,-10]],[[2918,7899],[-49,53]],[[2869,7952],[-3,2]],[[2866,7954],[-40,41],[-13,12]],[[2911,8090],[-19,-29]],[[2892,8061],[-12,11],[16,20],[15,-2]],[[2357,8472],[57,-51]],[[2414,8421],[-6,-8]],[[2408,8413],[-15,14]],[[2393,8427],[-40,41],[4,4]],[[2733,8107],[45,-49]],[[2778,8058],[33,-36]],[[2811,8022],[-4,-6]],[[2807,8016],[-44,49]],[[2763,8065],[-67,70],[5,9],[32,-37]],[[2381,7530],[-10,-4],[-34,28],[-58,29],[-38,28],[-14,16],[-37,29],[-33,48]],[[2157,7704],[29,39],[11,-25],[24,-44],[24,-28],[32,-24],[71,-41],[40,-19],[-7,-32]],[[2541,7432],[-34,-27],[3,-3],[19,-12],[16,-9]],[[2545,7381],[-1,-3],[-15,-71],[-2,-11],[-16,-39],[-35,-31],[-24,-20],[-24,-8],[-5,-2],[-30,-19],[-7,-5],[-31,-13],[-65,-8],[-1,7],[9,68],[8,53],[11,75],[27,54],[9,13],[15,18],[14,73],[7,34]],[[2389,7546],[63,-31],[27,-19]],[[2479,7496],[2,-1],[1,1],[22,24],[17,-7],[36,-4],[23,7],[44,-64],[-48,-39],[-19,-16],[-13,39],[-3,-4]],[[2522,7323],[19,57],[-34,-22],[15,-35]],[[2239,7891],[13,9]],[[2252,7900],[15,-37],[-4,-18]],[[2263,7845],[-9,-13],[-4,-24],[-14,1]],[[2236,7809],[-2,2]],[[2234,7811],[-5,35],[21,33],[-11,12]],[[2254,7740],[16,-42],[-26,-23]],[[2244,7675],[-12,24],[2,14],[20,27]],[[2308,7861],[3,-9],[-31,-36],[-2,3],[25,30],[5,12]],[[2321,7718],[10,11]],[[2331,7729],[1,1]],[[2332,7730],[9,11]],[[2341,7741],[1,1]],[[2342,7742],[13,16]],[[2355,7758],[20,-34]],[[2375,7724],[-37,-42]],[[2338,7682],[-2,-2]],[[2336,7680],[-20,-26],[-18,-41]],[[2298,7613],[-43,28]],[[2255,7641],[37,43]],[[2292,7684],[1,1]],[[2293,7685],[27,32]],[[2320,7717],[1,1]],[[2213,7997],[-14,12],[-15,27],[3,23],[5,-19],[12,-10],[12,-30]],[[2216,8000],[-3,-3]],[[2217,7999],[12,0],[15,-33],[20,18]],[[2264,7984],[12,-24]],[[2276,7960],[-20,-29],[-12,7],[-13,-2],[-7,51],[-11,8]],[[2213,7995],[4,4]],[[2383,7965],[-11,-13]],[[2372,7952],[-2,-1]],[[2370,7951],[-17,21]],[[2353,7972],[13,9],[17,-16]],[[2356,7814],[-4,-4]],[[2352,7810],[-1,2],[-37,67]],[[2314,7879],[5,6]],[[2319,7885],[23,-30],[18,-31],[-6,-6],[1,-3],[1,-1]],[[2333,7882],[46,55]],[[2379,7937],[4,-5]],[[2383,7932],[-46,-54]],[[2337,7878],[-4,4]],[[2360,7765],[9,10],[-15,32]],[[2354,7807],[4,3],[11,9],[13,-30],[18,-34],[-8,-10],[-4,-4],[-8,-9],[-20,33]],[[2393,7743],[32,-47],[1,0]],[[2426,7696],[-2,-6]],[[2424,7690],[-1,1],[-34,47]],[[2389,7738],[4,5]],[[2554,7838],[-5,-19],[12,-37]],[[2561,7782],[-13,-15]],[[2548,7767],[-20,35],[-38,34]],[[2490,7836],[17,44],[30,-19],[17,-23]],[[2563,7776],[6,-14],[4,-46]],[[2573,7716],[-15,-6]],[[2558,7710],[-8,51]],[[2550,7761],[13,15]],[[2573,7714],[7,-59],[7,-32]],[[2587,7623],[-13,4]],[[2574,7627],[-16,81]],[[2558,7708],[15,6]],[[2026,8249],[24,-16],[-4,-11],[-25,17],[5,10]],[[2171,8254],[1,-1]],[[2171,8254],[0,0]],[[2295,8113],[-3,-43],[-21,10],[-1,35],[25,-2]],[[2452,7942],[4,14],[-19,7],[14,55],[8,3],[22,-6]],[[2481,8015],[-19,-77],[-10,4]],[[2555,8022],[-39,-73],[-10,-1],[-28,-15],[-13,4],[26,106],[3,10]],[[2494,8053],[11,-14],[21,-8],[6,12],[23,-21]],[[2809,7849],[-4,-20]],[[2809,7849],[0,0]],[[2810,7852],[8,17]],[[2810,7852],[0,0]],[[2820,7872],[12,19]],[[2820,7872],[0,0]],[[2636,8018],[52,9]],[[2688,8027],[4,-30]],[[2692,7997],[-52,-9]],[[2640,7988],[-4,30]],[[2185,8328],[-73,56],[2,3],[72,-55],[-1,-4]],[[2383,7792],[35,41],[-15,22],[59,77]],[[2462,7932],[20,-3],[26,14],[9,-2],[-18,-72],[-97,-112],[-19,35]],[[2312,7883],[-9,13],[-9,26],[7,-3],[16,-31],[-5,-5]],[[2579,7612],[0,-6]],[[2579,7606],[-27,3],[-40,14],[-37,19],[2,5],[37,-20],[39,-12],[26,-3]],[[2429,7683],[5,6]],[[2434,7689],[29,-30],[-3,-7],[-31,31]],[[1926,8109],[56,-39],[22,-11],[19,0]],[[2023,8059],[41,3],[43,19],[73,45]],[[2180,8126],[7,4]],[[2187,8130],[1,-3]],[[2188,8127],[3,-6]],[[2191,8121],[-84,-46],[-24,-14],[-33,-11],[-30,0],[-54,23],[-43,29]],[[1923,8102],[1,1],[2,4],[0,2]],[[2733,7018],[-18,7],[8,60],[-4,21],[17,7],[4,-37],[-7,-58]],[[2829,6956],[50,55],[21,0],[-60,-63],[-11,8]],[[3083,6940],[-1,13],[13,1],[-1,22],[-13,8],[-1,27],[-23,-3]],[[3057,7008],[-2,32],[62,-26],[-7,-28],[-4,-44],[-23,-2]],[[3191,6970],[9,-18],[-9,-8],[-12,19],[1,18],[11,-11]],[[2908,7028],[14,13],[-3,26]],[[2919,7067],[46,21],[28,-3],[-12,-16],[-36,-6],[-12,-22],[-26,-22],[1,9]],[[2742,7138],[15,5],[43,-13]],[[2800,7130],[-3,-16],[-44,17],[-11,7]],[[2803,7128],[22,-11],[18,-18],[15,-25],[10,-6],[11,13]],[[2879,7081],[12,-8],[-25,-20],[-22,14],[-25,30],[-19,16],[3,15]],[[3003,7093],[-5,5],[-14,22],[-11,-13],[-17,-1],[-27,-12],[-27,-3]],[[2902,7091],[-1,31],[3,42],[6,72],[4,53],[25,3],[21,-7],[6,-16],[6,-90],[3,-23],[9,-26],[19,-26],[22,-26],[-5,-6],[-17,21]],[[3048,7055],[-17,18],[21,25],[15,-20],[-19,-23]],[[2877,7294],[31,-4],[-2,-26]],[[2906,7264],[-27,3],[-2,27]],[[3077,7085],[21,-13]],[[3098,7072],[-6,-7],[-23,10],[8,10]],[[3102,7072],[11,-7],[16,15],[18,-4]],[[3147,7076],[2,-33],[-38,8],[-16,12],[7,9]],[[2814,7314],[2,-24],[-26,-4],[-3,23],[-2,21],[33,4],[-4,-20]],[[2951,7338],[10,-38],[-5,-1],[-21,1],[14,22],[-4,13],[-28,112],[4,4],[30,-113]],[[2754,7364],[-1,-35],[-27,1],[-1,79],[11,0]],[[2736,7409],[8,-9],[1,-36],[9,0]],[[2785,7407],[-29,3]],[[2756,7410],[12,18],[21,-4],[-4,-17]],[[2999,7307],[-29,42],[29,37],[31,-38],[-31,-41]],[[2725,7412],[-1,10],[33,2],[-3,-12],[-29,0]],[[2868,7501],[-11,-12],[5,-21],[-11,-31],[0,-19],[8,-7]],[[2859,7411],[1,-27],[-9,-6]],[[2851,7378],[-15,16],[-49,13]],[[2787,7407],[5,17],[24,3]],[[2816,7427],[16,1],[11,55]],[[2843,7483],[1,2]],[[2844,7485],[4,34],[13,12]],[[2861,7531],[12,-16],[-5,-14]],[[2976,7539],[9,-12],[16,-48],[32,-42]],[[3033,7437],[-57,-72],[-7,11],[-19,73],[-16,23],[21,46],[21,21]],[[3055,7593],[5,-40],[-10,-12],[-18,23],[23,29]],[[2754,7624],[-14,21],[-7,67]],[[2733,7712],[22,5]],[[2755,7717],[6,-19],[4,-48],[-5,-24]],[[2760,7626],[-6,-2]],[[2874,7534],[26,29],[0,6]],[[2900,7569],[13,-22],[-16,-17],[-15,-6],[-8,10]],[[2930,7577],[3,-15],[-18,-12],[-4,14],[-23,16],[37,30],[5,-33]],[[2936,7580],[23,10]],[[2959,7590],[25,-30],[-45,3],[-3,17]],[[2930,7643],[1,41],[17,-22],[-18,-19]],[[2822,7796],[2,-28],[-32,-5],[-2,26],[-8,-1]],[[2782,7788],[-1,14],[41,-6]],[[2888,7754],[-9,0],[0,23],[9,0],[0,-23]],[[2814,7245],[5,-69],[-5,3],[-5,65],[5,1]],[[2807,7282],[4,1],[2,-33],[-4,-1],[-2,33]],[[2907,7233],[-7,-93],[-2,0],[7,93],[2,0]],[[2902,6930],[53,61],[2,-1],[-53,-62],[-2,2]],[[3021,7066],[-64,-75],[-1,2],[64,75],[1,-2]],[[3101,7160],[-49,-57],[-1,2],[48,56],[2,-1]],[[3153,7004],[0,-3],[-82,34],[2,2],[80,-33]],[[2872,7240],[4,-93]],[[2876,7147],[-2,2],[-5,91],[3,0]],[[2608,7560],[-6,-21],[-23,-1]],[[2579,7538],[1,20],[28,2]],[[3020,7166],[4,39],[0,2]],[[3024,7207],[6,39]],[[3030,7246],[10,-1],[12,10],[2,17]],[[3054,7272],[26,-4],[47,-27],[-24,-28],[-71,-83],[-14,19],[2,17]],[[2821,7649],[24,14],[6,-64],[-13,-20],[-32,44],[-4,14],[19,12]],[[2700,7391],[-2,55],[6,20],[-2,21],[7,1],[4,-31],[3,-65]],[[2716,7392],[-16,-1]],[[2749,7833],[-4,-48],[3,-45],[5,-19]],[[2753,7721],[-20,-6]],[[2733,7715],[-1,63],[7,20],[5,36]],[[2744,7834],[5,-1]],[[2849,7551],[-24,15],[18,0],[58,-74],[17,-33],[-42,56],[-27,36]],[[2704,7600],[99,-11],[23,-10]],[[2826,7579],[-3,-5]],[[2823,7574],[-34,12],[-84,7]],[[2705,7593],[-1,7]],[[2585,7611],[68,-7]],[[2653,7604],[42,-2]],[[2695,7602],[1,-3],[1,-5]],[[2697,7594],[-33,3],[-79,8]],[[2585,7605],[0,6]],[[1577,8517],[22,-18],[15,-10],[-66,-50],[-11,23],[-4,21],[6,57],[13,30],[30,49],[19,-50]],[[1601,8569],[-20,-28],[-25,-10],[9,-6],[12,-8]],[[1556,8441],[5,-15],[30,-22],[9,23]],[[1600,8427],[-2,-15],[23,-2]],[[1621,8410],[-4,-33],[-23,10],[-15,-2],[39,22],[-20,-6],[-20,-15],[-27,49],[5,6]],[[1588,8465],[26,20],[12,-7],[-1,-32]],[[1625,8446],[-22,3],[-15,16]],[[1422,8895],[-42,58],[-44,44]],[[1336,8997],[-16,18]],[[1320,9015],[-97,102],[0,-5],[-2,-9]],[[1221,9103],[-1,-7]],[[1220,9096],[-2,-13],[-11,10],[-20,-6],[25,-36],[25,-27],[15,6],[13,-9],[10,-28],[37,-33],[20,-7],[47,-69],[10,-20],[22,-6],[-2,-8],[-35,-9]],[[1374,8841],[-5,1]],[[1369,8842],[-31,36],[-7,15],[-25,24]],[[1306,8917],[-9,24],[-21,20],[-10,17]],[[1266,8978],[-21,19],[-34,13],[-18,16]],[[1193,9026],[-3,8]],[[1190,9034],[-41,41],[-1,23],[6,35],[-2,34],[-12,7],[-38,-16]],[[1102,9158],[-20,2]],[[1082,9160],[-19,12]],[[1063,9172],[-1,1]],[[1062,9173],[-17,31],[5,12],[-1,1],[-41,22]],[[1008,9239],[3,5],[4,20],[4,46],[4,60],[27,144],[-6,31],[-16,48],[-2,6]],[[1026,9599],[-22,57],[-30,51]],[[974,9707],[6,0],[7,-2],[9,-1],[5,-7],[1,-3]],[[1002,9694],[14,-22],[34,-71]],[[1050,9601],[0,-4],[1,1]],[[1051,9598],[5,-10],[22,14]],[[1078,9602],[2,-5],[33,-10],[61,-61],[18,-19],[15,-15],[19,-20],[19,-19],[19,-20],[9,-9],[19,-17],[69,-71],[110,-112],[6,-7],[42,-43],[74,-75],[22,-22],[-50,-33],[-37,-25],[-25,-17],[-58,-37],[-8,-7],[-11,-36],[1,-14],[37,-55]],[[1464,8853],[48,-64],[4,3],[43,-72],[5,5]],[[1564,8725],[30,-51]],[[1594,8674],[11,-19]],[[1605,8655],[-3,-3]],[[1602,8652],[-5,-6]],[[1597,8646],[-2,-4],[-7,-14],[1,-2],[7,14]],[[1596,8640],[37,-63]],[[1633,8577],[-6,-61],[6,-17]],[[1633,8499],[0,-13]],[[1633,8486],[-50,135],[1,4],[-30,64],[-10,14],[-41,63]],[[1503,8766],[9,8],[-26,41],[-8,-8],[-1,-18]],[[1477,8789],[-23,19],[-11,16],[-4,23],[13,5],[-30,43]],[[1673,8379],[-16,-7],[-4,-13]],[[1653,8359],[-2,1]],[[1651,8360],[-3,36],[2,35],[1,17],[21,-56],[-4,-2],[5,-11]],[[1724,8337],[-1,34],[7,25],[-4,18],[10,48],[12,0],[4,-46],[4,-10],[-13,-73],[-19,4]],[[1790,8533],[-4,-15],[-31,-34],[1,-18]],[[1756,8466],[-20,4],[1,32],[-4,21],[16,20],[31,18],[10,-28]],[[1865,8464],[-2,-6]],[[1863,8458],[-48,31]],[[1815,8489],[1,7]],[[1816,8496],[49,-32]],[[1870,8465],[16,-10]],[[1886,8455],[-5,-11]],[[1881,8444],[-16,10]],[[1865,8454],[5,11]],[[1902,8492],[-13,11]],[[1889,8503],[8,10],[11,-9],[-6,-12]],[[1888,8384],[11,20],[26,-16],[10,-7],[2,-16]],[[1937,8365],[-11,-29],[-19,25],[-19,23]],[[1886,8452],[61,-40],[5,11]],[[1952,8423],[-9,-30],[-8,5]],[[1935,8398],[5,11],[-57,37]],[[1883,8446],[3,6]],[[1792,8538],[-20,89],[1,22],[-16,17],[-34,7],[-9,-5]],[[1714,8668],[-2,2]],[[1712,8670],[17,36],[15,3],[47,-29]],[[1791,8680],[-21,7],[11,-15],[5,-30],[25,-33],[1,-26],[-8,-42],[-12,-3]],[[1850,8540],[-27,7]],[[1823,8547],[4,23],[11,14],[27,-33]],[[1865,8551],[-15,-11]],[[1701,8718],[7,5]],[[1708,8723],[4,-24],[-7,-24],[-16,-20],[-34,-33],[-16,-26],[-28,58],[19,21],[36,19],[11,16],[24,8]],[[1632,8809],[-50,21],[-6,-30]],[[1576,8800],[-19,7]],[[1557,8807],[8,30],[-45,15],[-5,-7]],[[1515,8845],[1,15],[27,-4],[92,-36],[-3,-11]],[[1724,8817],[1,25],[-4,2],[-7,2]],[[1714,8846],[-19,6],[-25,9],[-20,6],[-4,-17],[-13,-17],[-31,12],[-61,24],[-27,2],[-51,-7],[-24,32],[-10,24],[14,39],[83,54],[6,4],[20,13],[51,34],[15,10],[32,-33],[16,-16],[46,-48],[28,-28],[29,-30],[0,-5],[-9,-37],[-16,-48],[-20,-12]],[[1494,8903],[20,12],[-17,21],[-15,-4],[1,-23],[11,-6]],[[1843,8838],[-67,-67],[3,-20]],[[1779,8751],[7,-41],[-23,106],[0,26],[14,65],[68,-67],[-2,-2]],[[2027,8593],[-18,-45],[-27,-56],[-56,44],[-53,63]],[[1873,8599],[14,31]],[[1887,8630],[2,3]],[[1889,8633],[26,55]],[[1915,8688],[0,1]],[[1915,8689],[25,51]],[[1940,8740],[0,2],[85,-86]],[[2025,8656],[-3,-5],[25,-25],[-20,-33]],[[1826,8898],[42,-17],[9,-3],[77,-48],[20,-17],[44,-40],[36,-43],[16,-10],[47,-37],[46,-39],[-15,-73],[-6,-28],[-45,45],[-66,65],[-62,63],[-27,28],[-96,97],[-44,44],[-25,25],[33,-5],[16,-7]],[[2110,8390],[-2,-3],[-73,56],[2,3],[73,-56]],[[1982,8484],[2,3],[50,-39],[-1,-3],[-51,39]],[[1980,8486],[-56,42],[1,4],[56,-43],[-1,-3]],[[1858,8612],[57,-69],[-2,-2],[-56,68],[1,3]],[[1818,8660],[38,-45],[-3,-1],[-36,43],[1,3]],[[1784,8700],[33,-38],[-2,-3],[-52,63],[21,-22]],[[1779,8692],[-38,20],[18,6],[20,-26]],[[1754,8724],[-3,-12],[-17,14],[2,19],[18,-21]],[[1723,8759],[2,-17],[-11,-7],[-10,13],[6,12],[13,-1]],[[1718,8712],[-5,-18],[-3,32],[-36,73],[42,-33],[-12,-9],[1,-19],[19,-2],[-6,-24]],[[1640,8830],[5,8],[71,-25],[-26,-7],[-12,9],[-38,15]],[[1733,8770],[-16,18],[0,15],[14,0],[2,-33]],[[1749,8751],[-9,10],[11,19],[13,-6],[2,-11],[-17,-12]],[[1636,8383],[-4,89],[4,-9],[0,-80]],[[1630,8370],[1,60],[4,-59],[-5,-1]],[[1634,8361],[10,-44],[30,-85],[-34,83],[-6,46]],[[1727,8809],[-9,-1],[-3,-20],[-21,16],[36,12],[16,12],[-9,-40],[-10,21]],[[1953,8409],[29,-16],[15,14],[14,-10]],[[2011,8397],[-1,-3]],[[2010,8394],[-13,8],[-7,-18]],[[1990,8384],[-22,13],[-10,-38]],[[1958,8359],[-2,1]],[[1956,8360],[6,17],[-8,5],[7,18],[-9,6]],[[1952,8406],[1,3]],[[1757,8783],[-12,-5],[14,59],[3,-29],[22,-98],[-32,37],[16,12],[-3,18],[-8,6]],[[2174,8555],[-23,22],[14,65],[3,5]],[[2168,8647],[185,-172]],[[2353,8475],[-4,-4],[-31,2],[-40,-16],[-6,-2],[-29,-12],[-10,10],[-29,29],[8,37]],[[2212,8519],[7,31],[-2,31],[-18,18],[-25,-44]],[[2163,8523],[-19,18],[6,28],[24,-23]],[[2174,8546],[-11,-23]],[[1714,8119],[64,-155],[115,-288],[-6,-2],[-36,92],[-142,349],[5,4]],[[2086,7203],[23,-69],[-2,-2],[-120,295],[-97,240],[5,6],[191,-470]],[[1490,7341],[-7,19],[-42,-20],[-6,-20],[22,-7],[14,22],[19,6]],[[1638,8382],[1,61]],[[1639,8443],[5,0],[0,-61],[-6,0]],[[1796,8215],[-1,0],[-65,76]],[[1730,8291],[-22,26]],[[1708,8317],[0,6]],[[1708,8323],[2,4]],[[1710,8327],[89,-107],[-1,-3]],[[1798,8217],[-2,-2]],[[219,9337],[-14,3],[5,30],[12,27],[14,1],[24,18],[66,23],[9,-19],[6,-6],[2,-33],[-20,-14],[-25,-38],[-15,3],[-64,5]],[[454,9292],[4,-10],[24,-14],[-1,-7],[-56,21],[-44,10],[-21,1],[2,25],[13,43],[2,30],[77,14],[16,-18],[-6,-66],[-10,-29]],[[460,9285],[31,3],[-7,-17],[-24,14]],[[1028,9053],[12,24]],[[1040,9077],[17,44]],[[1057,9121],[35,-35]],[[1092,9086],[-37,-97]],[[1055,8989],[-6,3]],[[1049,8992],[-8,46],[-10,2]],[[1031,9040],[-3,13]],[[1006,9240],[-10,8],[-18,-13],[-20,10],[-12,29],[-6,67],[25,25],[16,3],[18,54]],[[999,9423],[5,-3],[23,-11],[-8,-41],[-8,-107]],[[1011,9261],[-8,5],[-5,51],[11,41],[-16,29],[-6,-20],[8,-14],[-6,-44],[3,-37],[17,-26]],[[1009,9246],[-3,-6]],[[1000,9425],[5,32],[-10,22],[-23,-21]],[[972,9458],[16,-16],[-3,-20],[-1,-3],[-7,-19],[-37,-44],[-10,-21],[-1,-4]],[[929,9331],[-50,-8],[-12,-73]],[[867,9250],[-34,7],[-35,12]],[[798,9269],[-10,-25],[45,-11],[11,10]],[[844,9243],[17,1],[-13,-79],[71,-68],[-9,-30],[-29,15],[-60,31]],[[821,9113],[10,35],[8,28],[-9,8],[-20,-66]],[[810,9118],[-32,23],[11,-17],[-17,8],[-22,11],[-26,13],[-7,3],[-10,5],[-77,34],[-73,31],[-70,30],[8,27],[84,18],[89,21],[3,3],[-3,1],[-4,-3],[-83,-19],[-62,-13]],[[519,9294],[25,84],[-20,8]],[[524,9386],[-5,7],[-23,11],[-27,-1],[-4,25],[34,-1],[11,16],[-11,22],[24,18],[26,33],[5,23],[11,14],[74,35],[22,2],[15,23],[63,70],[51,44],[30,0],[25,-17],[51,-64],[11,-25],[23,18]],[[930,9639],[8,-13],[15,-55],[17,-14],[38,5],[24,10]],[[1032,9572],[2,-6],[9,-25],[3,-34],[-19,-96],[-22,11],[-5,3]],[[1081,9603],[56,38]],[[1137,9641],[15,4],[84,1],[32,-6],[33,-12],[30,-8],[13,-12],[43,-19],[16,-1],[23,7],[4,14],[13,9],[12,-5]],[[1455,9613],[-2,-8],[14,-10],[17,-9]],[[1484,9586],[-11,-42],[-2,-4],[-37,24],[-6,2],[-112,49],[-36,16],[-1,-6],[0,-1],[-3,-22],[10,-74],[-5,-48],[0,-2],[-4,-25],[-5,-25],[-6,7],[-20,20],[-18,19],[-20,20],[-13,14],[-20,20],[-61,62],[-25,4],[-6,5],[-2,4]],[[1318,9628],[-23,6],[-58,16],[-83,-2],[-22,-5],[-21,2],[-26,19],[-13,-8]],[[1072,9656],[-10,8]],[[1062,9664],[12,20],[31,13],[115,-6],[85,9],[146,-49],[38,-47],[-172,77],[1,-2]],[[1318,9679],[7,-28],[-7,-23]],[[961,9034],[-50,26],[10,34]],[[921,9094],[27,-26],[13,-34]],[[961,9173],[8,-11],[-8,-11],[11,-15],[-21,-17]],[[951,9119],[-16,15],[3,11],[23,28]],[[1130,8675],[7,8],[-6,18],[12,4],[9,14],[5,3],[9,-26]],[[1166,8696],[-12,-13],[-24,-8]],[[966,9022],[13,-28],[-23,-26],[17,-37],[8,5]],[[981,8936],[3,1]],[[984,8937],[19,13]],[[1003,8950],[2,2]],[[1005,8952],[10,6],[-17,50]],[[998,9008],[29,-14],[76,-37],[-16,-29],[-23,-53],[-8,-19],[-17,-30],[-40,-40],[-13,-9],[-28,-10],[-4,-1],[-32,0],[-24,7],[-34,22],[-36,27],[-25,5],[-21,-3],[-12,-3],[-46,-22],[-44,-29],[-17,-4],[-18,6],[-18,25],[-20,40],[-36,78],[-1,1],[-7,9],[-12,14],[-12,17],[-7,51],[0,13],[-6,12],[-24,18],[-39,85],[-3,44],[22,69],[27,-5],[46,-19],[73,-32],[78,-35],[78,-38],[76,-36],[78,-46],[28,-15]],[[1008,8932],[-11,9],[-6,-19],[13,-2],[4,12]],[[1474,8855],[38,5],[-3,-33]],[[1509,8827],[-21,9],[-14,19]],[[874,9961],[3,3]],[[877,9964],[14,-41]],[[891,9923],[1,-25]],[[892,9898],[-18,63]],[[3841,5990],[-10,1],[-6,-31],[-28,3],[-17,16]],[[3780,5979],[1,12],[5,42],[1,12],[4,32],[53,-26],[-1,-39],[-2,-22]],[[3660,6175],[-7,-26],[-21,9],[4,27],[5,33],[28,-13],[-9,-30]],[[3727,6115],[-11,5],[8,28],[11,-4],[18,-8],[-10,-29],[-16,8]],[[3602,6243],[-4,5]],[[3598,6248],[0,20],[23,-7],[-19,-18]],[[3801,6120],[-1,9],[-21,-5],[-1,33],[5,2]],[[3783,6159],[28,-35],[-10,-4]],[[3530,6316],[17,-2],[-2,-30],[-19,3],[4,29]],[[3634,6268],[-24,6],[10,35],[19,-9],[8,0],[-6,-33],[-7,1]],[[3601,6330],[-20,16],[-39,46],[7,47],[26,-37],[37,-38],[41,-13],[-5,-44],[-22,5],[-25,18]],[[3669,6278],[16,27],[-4,13],[13,8],[5,-11],[21,15]],[[3720,6330],[4,-9],[19,-32],[3,-4]],[[3746,6285],[-25,-27]],[[3721,6258],[-14,12],[-10,-17]],[[3697,6253],[-17,16],[-11,9]],[[3761,6268],[-26,39],[-11,28],[40,-64],[-3,-3]],[[3629,6486],[28,-9],[-28,-2],[0,11]],[[3654,6460],[-9,-17],[2,21]],[[3647,6464],[2,6]],[[3649,6470],[10,3],[8,-18]],[[3667,6455],[-13,5]],[[3572,6468],[23,-7],[9,-17]],[[3604,6444],[-20,-23]],[[3584,6421],[-22,40]],[[3562,6461],[10,7]],[[3510,5930],[10,0],[0,22],[16,-11],[6,-16]],[[3542,5925],[-1,-8],[-28,0],[-3,13]],[[3551,5973],[11,-11],[0,-12],[-24,13],[13,10]],[[3735,5949],[16,-1],[-20,-71],[-7,4],[11,68]],[[3581,6004],[-23,6],[5,22]],[[3563,6032],[7,-2],[4,19],[11,-2],[8,-21],[-12,-22]],[[3604,6147],[2,14]],[[3606,6161],[6,-5]],[[3612,6156],[-3,-10]],[[3609,6146],[-5,1]],[[3562,6182],[-9,-23],[-12,7],[5,23],[16,-7]],[[3769,5754],[-5,-1]],[[3769,5754],[0,0]],[[3532,5766],[-29,-6],[36,19],[11,-8],[-18,-5]],[[3691,5808],[19,6],[-2,-16],[-15,-1],[-44,-5],[42,16]],[[3636,5715],[-5,-1],[-22,33],[-14,31],[8,2],[33,-65]],[[3588,5809],[-12,1],[-55,29],[68,-25],[-1,-5]],[[3735,5808],[-17,-7],[2,11],[37,4],[-22,-8]],[[3527,5744],[-2,16]],[[3525,5760],[26,5],[1,-19]],[[3552,5746],[-20,-1]],[[3532,5745],[-5,-1]],[[3526,5797],[20,4]],[[3546,5801],[2,-17],[-25,-8]],[[3523,5776],[-2,20]],[[3521,5796],[5,1]],[[3910,5886],[2,-45],[-15,6],[13,39]],[[3867,5958],[2,23]],[[3869,5981],[13,-2],[12,12],[2,-31],[-29,-2]],[[3970,6110],[-31,8],[6,46],[31,-8],[1,8]],[[3977,6164],[6,19]],[[3983,6183],[27,-6],[1,-26],[-13,3],[-6,-38],[-8,-9],[-14,3]],[[3873,6180],[9,5],[27,-70],[-10,-8]],[[3899,6107],[-26,73]],[[4014,6592],[-2,18],[21,-4],[-19,-14]],[[4055,6749],[5,47],[43,-5],[-6,-50],[-42,8]],[[4061,6800],[4,45],[44,-1],[-6,-49],[-42,5]],[[4048,7017],[-15,2],[-6,10],[5,18],[18,-9]],[[4050,7038],[-2,-21]],[[4138,6995],[2,-29],[-5,-16],[-11,-6],[-18,14],[-3,22],[19,22],[16,-7]],[[4042,7074],[-21,-2],[-3,-11],[-15,5],[-8,17],[26,6],[23,-1],[-2,-14]],[[3993,6223],[3,-25],[-24,6]],[[3972,6204],[3,19]],[[3975,6223],[18,0]],[[3812,6432],[25,25],[11,-15],[-27,-12],[-9,2]],[[3915,6473],[-7,-3],[6,50],[8,5],[13,4],[11,-40],[-31,-16]],[[3956,6537],[4,-8],[-7,-37],[-11,41],[14,4]],[[4085,7040],[2,-20],[-9,21],[7,-1]],[[4012,6101],[6,57],[-4,28]],[[4014,6186],[4,-1],[18,-4]],[[4036,6181],[9,-84]],[[4045,6097],[-21,2],[-12,2]],[[3925,7140],[7,-27],[-5,-24],[-22,-41],[-16,-8],[-47,13],[-19,11],[10,62],[3,21]],[[3836,7147],[14,-4],[64,0],[11,-3]],[[3768,6570],[5,-21],[16,12],[13,-37],[-13,14],[-30,21],[9,11]],[[3782,6578],[0,-27],[-14,11],[14,16]],[[3776,6590],[-13,-7],[-11,5],[0,13],[15,3],[9,-14]],[[3744,6565],[-1,3]],[[3743,6568],[4,17],[2,46],[17,-23],[-17,-13],[12,-15],[-17,-15]],[[3748,6632],[-1,-33],[-10,31],[-13,17],[24,-15]],[[3854,6522],[10,-25],[-29,-28],[-22,56],[-13,37],[16,0],[4,13],[-8,12],[40,-6],[20,-9],[22,-24],[10,-25],[-36,-24],[-15,36],[1,-13]],[[3794,6582],[20,1],[4,-11],[-12,-11],[-12,21]],[[3796,6598],[-10,10],[3,14],[13,-1],[2,-16],[-8,-7]],[[3840,6599],[-38,-1],[5,19],[-9,10],[-14,-9],[0,-12],[-24,40],[29,-12],[51,-35]],[[3793,6532],[11,-16],[11,-38]],[[3815,6478],[-16,-4],[-4,-24],[-14,12],[12,70]],[[3778,6646],[7,25],[-2,38]],[[3783,6709],[8,0],[22,-9],[15,-13],[19,-28],[33,-80],[-21,14],[-26,12],[-26,22],[-29,19]],[[3840,7028],[3,15]],[[3843,7043],[48,-12],[18,9],[7,-15],[-40,-311],[-11,-82],[-16,36],[-13,21],[-27,21],[-35,6],[66,312]],[[3930,6539],[-22,-11],[-13,30],[35,-19]],[[3723,6749],[-1,-23],[-17,-2],[-7,13]],[[3698,6737],[4,19],[21,-7]],[[3702,6760],[12,54],[18,-6],[-12,-54],[-18,6]],[[3762,6819],[-3,-17],[-44,15],[3,17],[44,-15]],[[3770,6817],[20,-8],[-3,-16],[-21,7],[4,17]],[[3645,6592],[-4,1],[8,54],[8,-3],[-12,-52]],[[3775,6884],[-43,14],[18,91],[53,66],[7,-2],[-35,-169]],[[3379,6642],[-4,-33],[-41,9]],[[3334,6618],[10,32],[35,-8]],[[3454,6703],[-6,2],[6,43],[13,1],[-13,-46]],[[3362,6773],[5,37],[19,-4],[-6,-37],[-18,4]],[[3629,6486],[-46,13],[-25,9],[53,-14],[18,-8]],[[3268,6933],[-10,35]],[[3258,6968],[27,21],[14,-50],[-1,-12],[-30,6]],[[3444,6961],[34,16],[3,-16],[-33,-15],[-18,-8],[-5,15],[19,8]],[[3379,7011],[60,27],[4,-16]],[[3443,7022],[-60,-27],[-4,16]],[[3157,7152],[25,-2]],[[3182,7150],[-2,-28],[-24,6],[1,24]],[[3361,7224],[18,10],[5,-17],[17,1]],[[3401,7218],[-33,-15],[-7,21]],[[3391,7291],[-18,-9],[-5,17],[15,11],[8,-19]],[[3226,6959],[-9,-1],[67,35],[-19,-15],[-39,-19]],[[3423,7200],[-5,19],[26,4],[7,-19]],[[3451,7204],[-18,9],[-10,-13]],[[3317,7463],[3,4],[-50,53]],[[3270,7520],[2,4],[-31,33]],[[3241,7557],[2,3],[2,3],[116,-128],[46,-66],[5,-21],[5,-11],[33,-69],[13,-39],[22,-54],[3,-6]],[[3488,7169],[18,-38],[2,9],[11,-29],[9,-3]],[[3528,7108],[-11,-7],[-6,-3],[-30,74],[-23,55],[-3,6],[-23,53],[-20,43],[-4,10],[-3,-5],[-43,73],[1,9],[-3,4],[-2,-7],[-34,49],[-7,1]],[[3604,6850],[-42,111]],[[3562,6961],[10,-5],[17,-9],[5,-18],[-17,16],[36,-89],[-9,-6]],[[3592,7047],[18,-2],[-5,-22],[-13,24]],[[3649,7034],[19,-6]],[[3668,7028],[-6,-24],[-17,7],[4,23]],[[3489,7175],[-16,41],[31,-7],[-5,-38],[-10,4]],[[3588,7185],[-3,-22],[-14,6],[3,18],[14,-2]],[[3628,7173],[10,-2],[4,39]],[[3642,7210],[23,2],[-6,-63]],[[3659,7149],[-7,1],[-2,-19],[-17,2],[2,20],[-8,1]],[[3627,7154],[1,19]],[[3797,7292],[0,-30],[-11,1],[-3,-36],[22,0],[0,14],[24,0]],[[3829,7241],[-1,-24],[6,-2]],[[3834,7215],[-10,-100],[-10,-47],[-27,1],[-23,8],[-81,28],[6,58],[6,60],[2,28],[66,-10],[2,54],[32,-3]],[[3916,7269],[0,0]],[[3927,7326],[3,-19],[-11,-11],[8,30]],[[3847,7376],[-11,22],[17,12]],[[3853,7410],[-6,-34]],[[3756,7395],[17,11],[8,-19],[-16,-12],[-9,20]],[[3848,7438],[10,-1]],[[3858,7437],[-1,-19]],[[3857,7418],[-12,-9]],[[3845,7409],[-7,15],[10,14]],[[3665,7350],[-8,33],[-11,-4]],[[3646,7379],[-16,61],[-4,28],[42,12],[-9,24],[25,6]],[[3684,7510],[12,-30],[4,4]],[[3700,7484],[10,-56]],[[3710,7428],[4,-24],[-25,-26],[-4,-10]],[[3685,7368],[-18,-21]],[[3667,7347],[-2,3]],[[3860,7465],[-3,-24]],[[3857,7441],[-5,1]],[[3852,7442],[-1,22]],[[3851,7464],[9,1]],[[3421,7339],[18,31],[6,-16],[-24,-15]],[[3551,7453],[-3,12],[15,0],[40,13],[3,-25],[18,4],[4,-23],[-51,-21],[-12,46],[-14,-6]],[[3475,7454],[-10,-8],[5,-10],[-20,-19]],[[3450,7417],[-5,11],[-21,-18],[-8,8],[-5,5]],[[3411,7423],[26,37],[-27,23]],[[3410,7483],[-6,6],[11,25],[34,-23],[2,-5],[24,-32]],[[3471,7468],[-12,15],[-5,8],[-9,10]],[[3445,7501],[50,84]],[[3495,7585],[13,-20],[3,-6]],[[3511,7559],[-25,-31],[37,-54]],[[3523,7474],[-5,-5]],[[3518,7469],[-21,31],[-26,-32]],[[3577,7728],[-32,-28],[18,-43],[25,6]],[[3588,7663],[-2,-32],[10,-13]],[[3596,7618],[-16,-30],[35,-32]],[[3615,7556],[-3,-7],[-2,-4],[-2,-3],[-30,27],[-32,-11],[-4,12],[-25,-13],[-13,22]],[[3504,7579],[11,9]],[[3515,7588],[32,25],[-21,39],[-9,24],[-23,86],[-30,-8],[2,-7],[-38,-5]],[[3428,7742],[2,53],[-1,23],[31,4],[22,4],[9,2],[37,7],[12,-36],[37,-71]],[[3988,7318],[0,0]],[[3569,6964],[-4,2],[-14,14],[-26,83],[-11,27],[6,4],[8,-1],[57,-135],[-16,6]],[[3843,7501],[-48,1]],[[3795,7502],[-38,4],[-2,4],[-4,8]],[[3751,7518],[56,-6],[29,45],[-3,19],[-26,23]],[[3807,7599],[18,36],[8,14],[-8,14]],[[3825,7663],[1,3],[-2,5],[-17,13]],[[3807,7684],[5,5],[-10,18]],[[3802,7707],[-1,3]],[[3801,7710],[-8,17],[-16,30]],[[3777,7757],[-53,114],[0,1],[-2,5],[-13,5],[-28,54],[-8,9]],[[3673,7945],[-3,10],[-33,66],[1,8]],[[3638,8029],[-4,9]],[[3634,8038],[-17,44]],[[3617,8082],[4,1],[-3,5]],[[3618,8088],[-15,32],[-6,9]],[[3597,8129],[-2,4]],[[3595,8133],[-8,16]],[[3587,8149],[-6,3]],[[3581,8152],[-10,23]],[[3571,8175],[-4,7],[-29,13],[-15,1],[-25,-8],[-23,52]],[[3475,8240],[24,31],[-9,12],[-20,-13],[-4,14]],[[3466,8284],[19,10],[5,15]],[[3490,8309],[-8,9],[22,28],[-8,22],[-5,18]],[[3491,8386],[-1,4]],[[3490,8390],[-5,25]],[[3485,8415],[1,2],[-2,8]],[[3484,8425],[-7,22],[-4,26],[-4,18]],[[3469,8491],[-13,87]],[[3456,8578],[-12,88],[-9,72],[-3,0]],[[3432,8738],[-2,17]],[[3430,8755],[-13,75]],[[3417,8830],[16,25],[11,14],[10,13],[21,28],[56,78],[17,27],[20,-47],[61,-77],[26,-28],[85,-101],[-39,-51],[-57,-73],[-79,6],[-68,9],[-27,9],[-2,-11]],[[3468,8651],[-7,-10],[7,-63]],[[3468,8578],[0,-1]],[[3468,8577],[11,-73],[11,-52],[7,-8]],[[3497,8444],[-9,-24],[3,4],[3,4]],[[3494,8428],[11,-37]],[[3505,8391],[2,-6]],[[3507,8385],[16,-52]],[[3523,8333],[4,-13]],[[3527,8320],[3,-12],[39,-97],[28,-58],[30,-67]],[[3627,8086],[24,-48],[8,9]],[[3659,8047],[6,-7],[47,-37],[16,-14],[-6,-16]],[[3722,7973],[-12,9],[-3,-24],[6,-5]],[[3713,7953],[0,-5],[28,-57],[-12,-9],[2,-4],[1,1]],[[3732,7879],[7,-17],[43,-89],[6,8],[3,5]],[[3791,7786],[3,-4]],[[3794,7782],[-7,-11],[19,-39],[7,8],[14,-16],[8,13]],[[3835,7737],[15,-15],[-19,-32],[-2,-11],[1,-7],[1,3],[2,3],[37,-33],[-11,-18],[20,-40],[2,3]],[[3881,7590],[10,18]],[[3891,7608],[1,5]],[[3892,7613],[10,17]],[[3902,7630],[2,4]],[[3904,7634],[8,17]],[[3912,7651],[3,4]],[[3915,7655],[7,16]],[[3922,7671],[6,-12]],[[3928,7659],[-15,-35],[17,-20]],[[3930,7604],[-40,-55],[1,-5]],[[3891,7544],[11,-18],[3,1]],[[3905,7527],[57,11],[3,-3],[-1,-9],[-1,-5]],[[3963,7521],[-55,-9],[12,-35]],[[3920,7477],[1,-16],[20,-60]],[[3941,7401],[12,-49],[-6,-4],[-5,1]],[[3942,7349],[-12,51],[-3,21],[-22,66],[-5,-1],[-57,-2]],[[3843,7484],[6,17],[-1,4],[-1,8],[-1,0],[1,-8],[-4,-4]],[[3886,7538],[-2,5],[-24,-8],[-13,-5],[1,-13],[8,14],[30,7]],[[3691,7242],[-13,-135],[-19,7],[9,98],[-2,36],[25,-6]],[[3554,7145],[-5,-22]],[[3549,7123],[-13,-3],[7,29],[11,-4]],[[4007,7347],[7,-33],[-13,-2]],[[4001,7312],[-3,31],[9,4]],[[3638,7599],[24,-20],[12,22]],[[3674,7601],[10,-9],[-29,-55]],[[3655,7537],[-1,-3],[53,-11]],[[3707,7523],[-1,-7],[-30,0]],[[3676,7516],[-23,7],[-3,-6]],[[3650,7517],[-6,-3]],[[3644,7514],[-28,14]],[[3616,7528],[-3,14],[2,5],[3,7],[20,45]],[[3431,7911],[17,6],[8,3],[27,10]],[[3483,7930],[14,-57],[17,-36]],[[3514,7837],[-24,-6],[-8,-2],[-32,-3]],[[3450,7826],[-18,64],[-1,21]],[[3513,7905],[17,20],[7,-30],[0,-21]],[[3537,7874],[-13,-6],[-11,37]],[[3535,7930],[19,8]],[[3554,7938],[14,-23],[-25,-11],[-8,26]],[[3570,7972],[22,-13],[-10,-29],[-23,14],[11,28]],[[3431,7916],[-10,32],[-18,6],[9,39],[-24,56]],[[3388,8049],[8,4],[19,-1],[8,-38]],[[3423,8014],[13,-30],[26,-16],[9,-38]],[[3471,7930],[-17,-7],[-8,-3],[-15,-4]],[[3473,8037],[-23,10],[6,22],[8,26]],[[3464,8095],[18,-15],[-6,-20],[-3,-23]],[[3430,8333],[9,-14],[-34,-32]],[[3405,8287],[-6,16]],[[3399,8303],[31,30]],[[3612,8129],[-8,17],[13,26]],[[3617,8172],[25,-12],[-11,-23],[-10,8],[-9,-16]],[[3664,8152],[-8,6],[15,32],[8,-7],[-15,-31]],[[3548,8267],[18,37]],[[3566,8304],[17,-11]],[[3583,8293],[-24,-51]],[[3559,8242],[-11,25]],[[3744,8574],[31,-35],[-14,-22],[24,-20]],[[3785,8497],[4,-1]],[[3789,8496],[16,-3]],[[3805,8493],[-2,-9]],[[3803,8484],[-8,2],[-8,-38]],[[3787,8448],[-35,41],[13,19],[-6,7],[-29,-43],[-35,34]],[[3695,8506],[49,68]],[[3791,8383],[-28,-4],[-1,10]],[[3762,8389],[8,2],[-5,30],[22,3],[4,-41]],[[3826,8487],[-1,-9]],[[3825,8478],[-20,6]],[[3805,8484],[2,8]],[[3807,8492],[19,-5]],[[3848,8481],[-1,-9]],[[3847,8472],[-20,6]],[[3827,8478],[1,8]],[[3828,8486],[20,-5]],[[3870,8477],[-2,-10]],[[3868,8467],[-19,5]],[[3849,8472],[1,9]],[[3850,8481],[20,-4]],[[3891,8470],[-2,-8]],[[3889,8462],[-19,5]],[[3870,8467],[1,8]],[[3871,8475],[20,-5]],[[3911,8465],[-2,-9]],[[3909,8456],[-18,5]],[[3891,8461],[2,8]],[[3893,8469],[18,-4]],[[3789,8706],[-19,-25],[-14,-19],[-38,-51]],[[3718,8611],[-13,5],[-52,20],[-1,5],[91,117],[35,-40],[11,-12]],[[3650,8553],[11,13],[16,1],[14,18],[-1,32]],[[3690,8617],[25,-9]],[[3715,8608],[-37,-49],[-13,3],[-11,-14]],[[3654,8548],[-4,5]],[[3914,8464],[22,-6],[-4,-9]],[[3932,8449],[-4,-43]],[[3928,8406],[-6,-1]],[[3922,8405],[1,47],[-10,4]],[[3913,8456],[1,8]],[[3559,8561],[6,10],[7,-21],[-9,-12],[-9,10],[5,13]],[[3562,8608],[12,-15]],[[3574,8593],[-16,-27],[-21,25],[18,25],[7,-8]],[[3461,8263],[-17,-14],[-8,-20],[5,-18],[-20,-39]],[[3421,8172],[-4,2],[-14,7],[-8,15]],[[3395,8196],[-16,-3],[17,-81],[-9,-21],[16,5]],[[3403,8096],[5,-33],[-15,-3],[-6,-3],[-4,-2],[-15,-9],[-3,10]],[[3365,8056],[11,7],[-8,8],[-17,51],[9,5]],[[3360,8127],[5,3],[-48,252],[-7,-3]],[[3310,8379],[-5,26]],[[3305,8405],[10,7],[6,4]],[[3321,8416],[4,-19]],[[3325,8397],[29,-150],[28,15],[19,22]],[[3401,8284],[10,4],[23,21],[6,7],[17,-40],[4,-13]],[[3326,8615],[33,43],[5,18],[25,27]],[[3389,8703],[-1,-22],[-21,-17],[-38,-52],[-3,3]],[[3409,8642],[-33,-45],[-8,-1],[-14,17],[-14,5]],[[3340,8618],[19,26]],[[3359,8644],[8,-9],[9,12],[8,-10],[17,15],[8,-10]],[[3613,8491],[42,50]],[[3655,8541],[5,-7]],[[3660,8534],[-37,-47]],[[3623,8487],[-10,4]],[[3639,8634],[-29,-36],[-34,42],[63,-6]],[[3549,8322],[0,12],[19,25],[8,-8]],[[3576,8351],[-20,-36],[-7,7]],[[3125,8508],[-56,47],[0,4],[52,45]],[[3121,8604],[31,-3],[41,-48],[9,-32],[14,-5]],[[3216,8516],[-32,-46],[-47,56]],[[3137,8526],[-12,-18]],[[3113,7408],[8,-7],[-12,-8],[4,15]],[[3106,7705],[29,-30]],[[3135,7675],[45,-46],[-4,-6]],[[3176,7623],[-24,26],[-51,48]],[[3101,7697],[1,1],[-4,2]],[[3098,7700],[-13,13],[-38,41],[-16,17],[-7,-9]],[[3024,7762],[-19,-27],[-58,60]],[[2947,7795],[9,23]],[[2956,7818],[-31,38],[-1,37],[-1,8]],[[2923,7901],[34,-25],[-2,-3],[43,-41],[48,-52],[29,-31]],[[3075,7749],[33,-36],[-5,-6],[3,-3],[0,1]],[[3207,7509],[-7,7],[10,13],[6,-8],[-9,-12]],[[3289,7657],[-2,-20],[-9,-6],[-32,-40]],[[3246,7591],[-45,58],[31,40],[37,4],[15,-13],[5,-23]],[[3305,7641],[20,26]],[[3325,7667],[26,-27],[-21,-31],[-25,32]],[[3281,7710],[12,-14],[-8,-13],[-14,12],[10,15]],[[3351,7690],[11,-17],[-24,8],[13,9]],[[3359,7835],[5,-23],[-14,-2],[-10,-13]],[[3340,7797],[-10,12],[29,26]],[[3329,7848],[-12,-10],[-12,21]],[[3305,7859],[11,11],[13,-22]],[[3412,7846],[-2,23],[10,-13],[7,-47],[0,-22],[-7,16],[-8,43]],[[3283,7938],[-18,16],[2,18]],[[3267,7972],[38,-6],[-22,-28]],[[3073,8165],[47,-9],[-3,-29],[-44,8],[-11,9],[11,21]],[[2907,8303],[33,-27]],[[2940,8276],[1,-29]],[[2941,8247],[-15,-1],[-1,19],[-16,-1]],[[2909,8264],[-2,39]],[[3126,8479],[53,-44],[-8,-13],[48,-85]],[[3219,8337],[-25,-20],[-45,7],[-72,62],[49,93]],[[2916,8781],[10,-12],[12,-17]],[[2938,8752],[-3,-2]],[[2935,8750],[-28,-50],[-10,-28]],[[2897,8672],[-1,11],[-1,39],[21,59]],[[3169,8148],[62,-11]],[[3231,8137],[-4,-32],[47,-8]],[[3274,8097],[-7,-62],[-70,12],[-17,2]],[[3180,8049],[4,31],[-17,3],[5,48],[-3,17]],[[3290,8200],[16,-2],[7,-18],[-24,4],[1,16]],[[3304,8204],[-15,0],[7,22],[8,-22]],[[3278,8235],[13,-2]],[[3291,8233],[-4,-29],[-12,3],[3,28]],[[3006,8184],[2,13],[-49,12],[-2,22],[-11,-1]],[[2946,8230],[-3,43]],[[2943,8273],[24,-20]],[[2967,8253],[5,-4]],[[2972,8249],[19,27]],[[2991,8276],[-13,14],[42,81],[-1,10],[-19,16],[17,33],[111,-93]],[[3128,8337],[-24,-52],[-21,-32]],[[3083,8253],[-1,-1]],[[3082,8252],[-30,-70],[-8,7],[-5,-14]],[[3039,8175],[-33,9]],[[3294,7395],[-16,-24],[17,-14]],[[3295,7357],[-28,-19]],[[3267,7338],[-27,-34],[8,-11]],[[3248,7293],[-43,-50]],[[3205,7243],[-22,15],[-21,-26]],[[3162,7232],[-7,5],[-41,129],[69,71],[36,48],[75,-86],[0,-4]],[[2972,8111],[0,0]],[[3061,8551],[-3,-9],[-31,26],[7,11],[27,-28]],[[3183,7626],[58,-61]],[[3241,7565],[-7,-9]],[[3234,7556],[-55,64]],[[3179,7620],[4,6]],[[3966,7581],[-15,33]],[[3951,7614],[38,16],[5,-18],[18,12],[3,-30],[55,11]],[[4070,7605],[-7,-77]],[[4063,7528],[-4,9],[-4,51],[-11,7],[-16,-13],[-36,19],[-18,-7],[-8,-13]],[[4132,7674],[-5,-28],[-11,-13],[3,-11]],[[4119,7622],[-7,17]],[[4112,7639],[8,4],[2,31],[7,1]],[[4129,7675],[3,-1]],[[3992,7667],[53,16],[0,-7],[-31,-10],[-18,-14],[-41,-19],[37,34]],[[3812,7810],[-19,-20],[-13,28],[19,17],[13,-25]],[[3886,7796],[9,-15],[-17,-12],[-6,10]],[[3872,7779],[14,17]],[[3853,7850],[-23,38],[13,15],[23,-37],[-13,-16]],[[3965,7824],[-23,66],[-15,-8]],[[3927,7882],[-18,12],[7,32],[13,-3],[14,5],[29,13],[33,4],[29,-4],[-4,-11],[-18,-51],[-16,-46],[-18,-2],[-13,-7]],[[3898,8058],[35,-43]],[[3933,8015],[-7,-27],[-12,6],[-34,38],[-24,30],[18,23]],[[3874,8085],[21,-24]],[[3895,8061],[-2,-9],[5,6]],[[4159,8103],[-6,-4],[8,-26],[-12,-24]],[[4149,8049],[-4,2]],[[4145,8051],[3,25],[-11,29],[-23,22]],[[4114,8127],[24,12],[21,-36]],[[4146,8207],[17,-21],[-25,-44],[-23,-9],[31,74]],[[3920,8289],[9,1]],[[3929,8290],[3,-45]],[[3932,8245],[-18,-24]],[[3914,8221],[7,12],[-1,56]],[[3920,8293],[3,104]],[[3923,8397],[7,1]],[[3930,8398],[-4,-104]],[[3926,8294],[-6,-1]],[[3711,7523],[34,-4]],[[3745,7519],[3,-8],[3,-6],[-41,6],[0,4],[1,8]],[[4183,8176],[19,-20],[9,-26]],[[4211,8130],[-10,23],[-21,19],[3,4]],[[4222,8072],[-3,-1],[-10,54],[3,1]],[[4212,8126],[10,-54]],[[4222,8069],[17,-90]],[[4239,7979],[-3,0],[-16,89],[2,1]],[[3630,7639],[-18,-27],[-21,17],[2,39],[13,12],[24,-41]],[[3800,8209],[-26,-46]],[[3774,8163],[-25,20],[7,21],[44,5]],[[4030,8008],[20,49],[20,5],[-6,-14],[8,-6]],[[4072,8042],[-19,-45],[-23,11]],[[4023,7888],[45,-24],[3,-72]],[[4071,7792],[-66,36],[-2,5],[20,55]],[[4053,7916],[36,-32]],[[4089,7884],[0,-3]],[[4089,7881],[-37,32]],[[4052,7913],[1,3]],[[4054,7716],[0,0]],[[3998,7817],[11,-30],[22,-1],[13,-24]],[[4044,7762],[-12,2]],[[4032,7764],[-10,20],[-11,-1],[-20,-20],[-16,-7]],[[3975,7756],[18,51],[5,10]],[[3949,8082],[-21,15]],[[3928,8097],[0,5]],[[3928,8102],[-1,15],[12,7],[-11,39],[-10,50]],[[3918,8213],[3,7]],[[3921,8220],[30,-19]],[[3951,8201],[2,-2]],[[3953,8199],[33,-20]],[[3986,8179],[-7,-12],[-12,-27],[-15,-50],[-3,-8]],[[4104,8014],[17,-1],[0,-21],[-26,-2],[-4,22],[13,2]],[[4136,7984],[-5,33],[11,30]],[[4142,8047],[6,-4]],[[4148,8043],[-5,-30],[7,-52],[-2,-15]],[[4148,7946],[-5,-2]],[[4143,7944],[-7,35]],[[4136,7979],[0,5]],[[4138,7805],[-24,25],[-6,24]],[[4108,7854],[6,-1],[1,6]],[[4115,7859],[31,13],[-2,68]],[[4144,7940],[5,2]],[[4149,7942],[4,-69],[9,-13],[-2,-21],[24,-2]],[[4184,7837],[5,0]],[[4189,7837],[16,1]],[[4205,7838],[-2,-47],[-13,-70],[-38,27],[-13,7]],[[4139,7755],[9,22],[3,28],[-8,1]],[[4143,7806],[-5,4],[0,-5]],[[4107,7856],[-16,22]],[[4091,7878],[1,6]],[[4092,7884],[19,-25]],[[4111,7859],[-4,-3]],[[4288,7897],[42,91],[2,2]],[[4332,7990],[2,-10]],[[4334,7980],[2,-7]],[[4336,7973],[0,-5],[11,-76],[2,-37],[6,-82],[-63,1],[-29,4],[-2,-2],[-9,-99],[-2,-6],[-39,30],[-7,7],[-10,12],[10,47],[6,45],[34,-4],[4,6]],[[4248,7814],[4,12]],[[4252,7826],[6,-4],[34,71],[-4,4]],[[4147,6164],[5,47]],[[4152,6211],[19,3],[20,-60],[-44,10]],[[4105,6287],[10,13],[24,-22],[-4,-18],[-30,27]],[[4260,6244],[-16,2],[6,40],[15,-4],[-5,-38]],[[4050,6377],[-6,-43]],[[4044,6334],[-17,5],[6,41],[17,-3]],[[4022,6405],[6,44],[15,-3],[-6,-44],[-15,3]],[[4155,6491],[19,-1],[-8,-34],[-8,-1],[-18,-11],[-17,29],[32,18]],[[4151,6673],[50,-11],[-5,-35],[-66,10],[-10,12],[31,24]],[[4154,6760],[-12,3]],[[4142,6763],[1,11],[-26,6],[8,71],[-11,2]],[[4114,6853],[25,3],[49,-8],[0,-8]],[[4188,6840],[-10,0],[-8,-70],[-14,2],[-2,-12]],[[4276,6836],[-4,-18],[3,-24],[8,-4]],[[4283,6790],[-4,-8],[-25,22],[-7,-43]],[[4247,6761],[-8,2],[4,34]],[[4243,6797],[-22,5],[1,29],[0,7],[54,-2]],[[4283,6780],[2,6],[10,28],[15,-12],[-2,-20]],[[4308,6782],[-3,1],[-22,-3]],[[4288,6832],[21,25],[30,-2]],[[4339,6855],[-2,-61],[-16,1],[-28,24],[-5,13]],[[4277,6967],[1,16],[12,-1],[10,16]],[[4300,6998],[5,0],[-1,-32],[-27,1]],[[4133,7135],[-20,13]],[[4113,7148],[-8,-15],[7,-26]],[[4112,7107],[-15,-9]],[[4097,7098],[4,33],[-41,1],[-3,-26]],[[4057,7106],[-31,1]],[[4026,7107],[-17,22]],[[4009,7129],[31,38],[-14,18]],[[4026,7185],[27,34]],[[4053,7219],[37,-47],[5,3]],[[4095,7175],[3,4]],[[4098,7179],[8,5],[-9,20],[-1,18],[15,8],[13,-34],[13,9]],[[4137,7205],[20,-36],[26,-5],[-21,-43]],[[4162,7121],[-20,18],[-9,-4]],[[4241,7116],[-14,-17],[-21,49],[12,15],[9,-9],[-6,-9],[13,-11]],[[4234,7134],[7,-18]],[[4421,6745],[-3,-34],[-15,3],[2,17],[-16,1]],[[4389,6732],[3,16],[29,-3]],[[4473,6743],[33,-4],[6,59],[1,39],[-5,0]],[[4508,6837],[-1,2]],[[4507,6839],[1,33]],[[4508,6872],[0,3],[-37,4]],[[4471,6879],[22,45]],[[4493,6924],[23,-18],[58,-33],[-4,-38],[-4,-40],[-5,-59],[-3,-3],[-37,-29],[-52,3],[4,36]],[[4449,6879],[-59,1],[3,77],[62,-3],[23,-18],[-29,-57]],[[4250,7047],[-20,0],[2,19],[18,-19]],[[4259,7124],[-8,-13],[-18,34],[3,4],[23,-25]],[[4117,6301],[6,8],[19,-15],[-2,-14],[-23,21]],[[4167,6277],[-23,4],[2,13],[19,0],[2,-17]],[[4173,6295],[31,13],[4,-19],[-31,-10],[-4,16]],[[4229,6163],[18,-9],[-1,-10],[-16,2]],[[4230,6146],[-1,17]],[[4125,6406],[-10,2],[16,40],[5,-9],[-11,-33]],[[4123,6629],[-8,16],[16,-11],[28,-4],[-36,-1]],[[4326,6717],[-37,13],[1,7],[37,-11],[-1,-9]],[[4361,6718],[13,-8],[-40,5],[1,9],[26,-6]],[[4183,7316],[28,-45]],[[4211,7271],[35,-59]],[[4246,7212],[37,-39]],[[4283,7173],[-2,-4],[-3,-6],[-4,-5],[-33,32],[-60,94]],[[4181,7284],[-12,18]],[[4169,7302],[6,7],[5,5],[3,2]],[[4117,7385],[11,2],[7,2],[3,1]],[[4138,7390],[43,-71]],[[4181,7319],[-2,-2],[-5,-5],[-21,-14]],[[4153,7298],[-26,38]],[[4127,7336],[-2,3]],[[4125,7339],[-11,15]],[[4114,7354],[-3,4]],[[4111,7358],[13,16],[-7,11]],[[4118,6362],[2,-44],[-7,-8],[-4,16],[0,38],[9,-2]],[[4072,6249],[-6,-12]],[[4066,6237],[-20,5],[2,-27],[-5,-10]],[[4043,6205],[-6,7],[-15,117]],[[4022,6329],[21,-5]],[[4043,6324],[16,-13],[-1,-15],[24,-13],[-17,-28],[7,-6]],[[4180,6262],[-3,12],[44,14],[-5,-41],[-9,-5],[-15,-10],[-12,30]],[[4237,6660],[-23,5]],[[4214,6665],[5,20],[21,-5],[-3,-20]],[[4096,6678],[12,-28],[-16,-10],[4,38]],[[4375,6791],[12,38],[41,-1],[11,-10],[-1,-29]],[[4438,6789],[-19,8],[-8,-10],[-2,-18],[7,-18]],[[4416,6751],[-11,1],[-23,2]],[[4382,6754],[2,37],[-9,0]],[[4416,6859],[0,0]],[[4462,6747],[-20,1]],[[4442,6748],[2,51],[1,33]],[[4445,6832],[1,7],[32,-1],[-2,-24]],[[4476,6814],[-12,1],[-1,-16],[4,0],[-5,-52]],[[4093,6625],[20,19],[8,-15],[-28,-4]],[[4284,7167],[80,-63]],[[4364,7104],[-2,-8],[-1,-7]],[[4361,7089],[-39,28],[-20,-30]],[[4302,7087],[-36,38],[12,26],[3,10],[3,6]],[[4632,6776],[46,1]],[[4678,6777],[-32,-6],[-28,-15],[-16,-16],[-12,12],[21,17],[21,7]],[[4738,6676],[-8,4],[-2,1],[-92,42],[-18,11],[20,21],[29,10],[59,5],[8,0],[7,-4],[10,-1],[0,-54],[-3,-39],[-10,4]],[[4928,6815],[10,-40],[25,1]],[[4963,6776],[-9,-53],[17,-10],[-3,-13]],[[4968,6700],[-56,27]],[[4912,6727],[-8,4]],[[4904,6731],[7,27],[-28,-1],[2,-12]],[[4885,6745],[-12,-1],[-6,40],[11,5],[50,26]],[[4888,6729],[-2,-29]],[[4886,6700],[-21,30],[21,10]],[[4886,6740],[2,-11]],[[4604,6778],[-35,-3]],[[4569,6775],[6,67],[7,28],[23,-12],[0,-53],[-1,-27]],[[4678,6777],[26,14],[21,24]],[[4725,6815],[12,-2],[7,0],[30,2],[16,-11],[19,-2],[19,-29],[-52,9],[-34,1],[-7,-1],[-57,-5]],[[4774,6866],[4,-6],[26,-48],[-16,0],[-17,9],[-27,-3],[-6,2],[-82,13],[-39,26],[-39,23],[4,36],[2,15],[2,35],[39,-3],[110,-9],[7,-33],[23,-40],[3,-8],[6,-9]],[[4780,6868],[83,20],[31,0],[-8,47]],[[4886,6935],[-6,40],[15,27],[18,9],[121,-31],[45,-14],[1,-6],[-29,-34],[-22,-19],[-22,-20],[-45,5],[26,-7],[9,-8],[-11,-9],[-5,-6],[-5,-3],[-35,-30],[-27,-13]],[[4914,6816],[-6,23]],[[4908,6839],[-2,6],[-96,-28],[-26,44],[-4,7]],[[4369,7089],[2,8],[7,25],[60,-29],[39,-11],[53,-42],[-24,-50],[-4,-8]],[[4502,6982],[-51,39],[5,9],[-2,1],[-4,-8],[-51,41],[12,-18],[-9,-18],[-34,27],[8,18],[12,1],[-19,15]],[[4578,6922],[-73,58]],[[4505,6980],[4,9],[24,48],[51,-40],[-5,-60],[-1,-15]],[[4482,7084],[1,5],[65,-13],[-15,-32],[-51,40]],[[4591,7068],[-6,-63],[-2,-1],[-47,37],[18,33],[37,-6]],[[4731,6978],[-143,17]],[[4588,6995],[6,67],[0,5],[85,-15],[38,-3],[3,-12],[11,-59]],[[4760,6902],[37,30],[-4,1],[-3,6]],[[4790,6939],[30,42],[32,66],[43,-28],[8,5],[-2,1],[-50,31]],[[4851,7056],[-2,19],[2,49],[-81,13],[-39,6],[-37,5]],[[4694,7148],[-4,15]],[[4690,7163],[10,-1],[-1,40],[1,12],[30,0]],[[4730,7214],[5,-1]],[[4735,7213],[57,-4],[54,-4],[-1,2],[-5,30],[-2,37]],[[4838,7274],[43,-14],[80,-21],[82,-18],[17,-7],[4,-4]],[[5064,7210],[-47,-57],[14,-4],[4,22],[29,-8],[4,20],[9,11],[30,-8]],[[5107,7186],[-2,-16],[28,-9]],[[5133,7161],[1,-5]],[[5134,7156],[-22,6],[-2,-26],[-8,-5],[11,-3],[28,-9]],[[5141,7119],[7,-34],[3,-19],[-18,-33]],[[5133,7033],[-24,7],[-9,3],[-28,8],[-2,-12],[21,-7]],[[5091,7032],[-1,-5]],[[5090,7027],[-11,5],[-10,-53]],[[5069,6979],[-10,2],[-50,14],[-20,5],[-36,10],[-19,5]],[[4934,7015],[5,40],[-29,-34]],[[4910,7021],[-3,-1],[3,-8],[-17,-9],[-16,-26],[6,-27],[-45,-8],[-65,-60],[-4,7],[-9,13]],[[4260,6182],[17,-12],[1,-19],[-23,-7],[5,38]],[[4326,6134],[-3,-39]],[[4323,6095],[-73,16],[2,18],[20,-1],[13,12],[41,-6]],[[4523,6071],[-36,10],[-8,1],[-10,40],[27,1],[60,10],[-5,-83],[4,-16],[-32,37]],[[4832,6734],[-5,-20],[-8,0],[0,22]],[[4819,6736],[13,-2]],[[4827,6697],[23,-10]],[[4850,6687],[-4,-13]],[[4846,6674],[-22,10]],[[4824,6684],[3,13]],[[4730,7025],[-3,24],[105,4],[-9,-25],[-19,-44]],[[4804,6984],[-9,40],[-42,1],[-23,0]],[[4365,7210],[-3,-16],[11,-4],[-6,-25],[-14,4],[-21,19],[7,31]],[[4339,7219],[26,-9]],[[4381,7272],[4,16],[-15,1],[3,16],[12,7],[19,-6],[-7,-10],[-4,-24]],[[4393,7272],[-12,0]],[[4441,7526],[2,12],[-21,10],[4,19]],[[4426,7567],[30,-18]],[[4456,7549],[-7,-28]],[[4449,7521],[-8,5]],[[4774,7605],[32,-3],[0,9]],[[4806,7611],[16,0]],[[4822,7611],[6,-38],[-25,-10],[-1,-8],[14,-4]],[[4816,7551],[-1,-15],[-21,0],[0,-50]],[[4794,7486],[0,-26]],[[4794,7460],[-11,1],[-75,3]],[[4708,7464],[1,18],[-15,1],[-7,-16]],[[4687,7467],[-42,2]],[[4645,7469],[-4,19],[-15,14]],[[4626,7502],[7,7]],[[4633,7509],[56,-3],[67,-2],[-6,39]],[[4750,7543],[1,9]],[[4751,7552],[20,1],[3,52]],[[4826,7561],[-20,-4],[21,12],[-1,-8]],[[4581,7882],[2,-18],[-9,5],[7,13]],[[4545,7688],[22,49],[3,-2],[-22,-49],[-3,2]],[[4569,7741],[25,55],[3,-2],[-19,-40],[-9,-13]],[[4638,7886],[-40,-89],[-3,3],[40,87],[3,-1]],[[4636,7890],[28,62],[3,-2],[-28,-62],[-3,2]],[[4681,7989],[46,103],[3,-2],[-47,-105],[-2,4]],[[4751,8135],[-19,-43],[-3,2],[21,47],[41,90],[2,-2],[-42,-94]],[[4560,7179],[-5,-41],[-7,-54],[-44,10],[-66,7]],[[4438,7101],[8,35],[30,121]],[[4476,7257],[82,-6]],[[4558,7251],[-10,-68],[12,-4]],[[4774,7873],[15,5]],[[4789,7878],[3,-27]],[[4792,7851],[-12,7],[-9,-9]],[[4771,7849],[-8,13],[11,11]],[[4470,7482],[12,-7],[5,-21],[24,-13],[13,4],[9,18]],[[4533,7463],[24,-5],[29,11],[13,-38],[29,-92]],[[4628,7339],[-26,-6],[-5,-23],[-4,-56]],[[4593,7254],[-7,0]],[[4586,7254],[5,80],[-15,1],[-22,11]],[[4554,7346],[0,6],[-33,18],[-74,41],[10,32],[13,39]],[[4610,7488],[-3,-14],[-41,12],[-23,11]],[[4543,7497],[6,17],[37,-20],[17,4],[7,-10]],[[5048,7865],[4,-4],[91,-33]],[[5143,7828],[8,-41],[-3,-7],[20,-17]],[[5168,7763],[19,-16]],[[5187,7747],[42,-36]],[[5229,7711],[-1,-9],[-5,-31],[-8,-42],[-3,-37],[-2,-18]],[[5210,7574],[-34,11]],[[5176,7585],[-1,21],[-2,25],[3,-102],[14,-79]],[[5190,7450],[-9,6],[-10,-55]],[[5171,7401],[-38,27],[-29,-47]],[[5104,7381],[-1,6]],[[5103,7387],[-1,2],[-24,-12],[-9,24],[-22,-24]],[[5047,7377],[-51,94],[-6,-13],[12,-19],[-20,-26]],[[4982,7413],[-49,74],[-13,19],[-3,-9]],[[4917,7497],[-20,11],[-28,-76]],[[4869,7432],[-24,19]],[[4845,7451],[18,52]],[[4863,7503],[2,5]],[[4865,7508],[8,25]],[[4873,7533],[2,5]],[[4875,7538],[0,25],[2,16],[-30,41],[-2,-2]],[[4845,7618],[-4,6]],[[4841,7624],[-20,29],[1,-38]],[[4822,7615],[-16,0]],[[4806,7615],[-3,35],[1,63],[-32,0]],[[4772,7713],[9,11]],[[4781,7724],[-3,7]],[[4778,7731],[30,2],[0,-2],[28,-47],[9,8],[16,16]],[[4861,7708],[19,-34],[14,-19],[-2,5],[-28,50],[11,10],[138,121],[28,19],[7,5]],[[4279,7270],[6,26]],[[4285,7296],[20,-8]],[[4305,7288],[-21,-83]],[[4284,7205],[-20,9]],[[4264,7214],[15,56]],[[4763,7255],[0,0]],[[4737,7306],[10,-1],[2,48],[-6,25]],[[4743,7378],[10,-1]],[[4753,7377],[1,-21],[31,-2],[-1,-18],[-10,0],[-1,-20]],[[4773,7316],[-3,-13],[-1,-21],[-17,2],[-15,22]],[[4784,7388],[-30,2],[-1,-9]],[[4753,7381],[-5,0]],[[4748,7381],[-13,11],[2,48],[5,16]],[[4742,7456],[24,-2],[15,-1]],[[4781,7453],[2,-46],[1,-19]],[[4834,7356],[4,-80]],[[4838,7276],[-15,1]],[[4823,7277],[-5,37],[3,43],[13,-1]],[[4399,7468],[-1,0]],[[4398,7468],[-8,1],[9,26],[27,-7],[-2,-6],[-20,7],[-5,-21]],[[4438,7460],[0,0]],[[4498,7751],[2,5],[47,-34],[-17,-44]],[[4530,7678],[-44,23],[12,50]],[[4589,7074],[2,24],[24,-5],[-3,-24]],[[4612,7069],[-23,5]],[[4578,7191],[6,58]],[[4584,7249],[22,-2]],[[4606,7247],[4,-23],[8,-1],[1,-23],[-35,2],[-1,-12]],[[4583,7190],[-5,1]],[[4619,7187],[-1,36],[21,-1],[4,-32]],[[4643,7190],[-24,-3]],[[4316,7400],[3,14],[25,-9]],[[4344,7405],[-13,-32],[-18,5],[3,22]],[[4348,7330],[8,32]],[[4356,7362],[19,-7],[-7,-32],[-20,7]],[[4589,7770],[89,4]],[[4678,7774],[0,-45]],[[4678,7729],[-62,-3],[-35,25]],[[4581,7751],[8,19]],[[4549,7315],[-2,-39],[-20,2],[2,39]],[[4529,7317],[20,-2]],[[4870,8015],[15,-13]],[[4885,8002],[-60,-3],[-45,-2],[-28,133]],[[4752,8130],[1,4]],[[4753,8134],[6,-25],[56,-46]],[[4815,8063],[9,-9],[30,-26]],[[4854,8028],[15,-12]],[[4869,8016],[1,-1]],[[4438,7791],[-17,2],[-1,-55]],[[4420,7738],[-11,-5]],[[4409,7733],[-2,63],[-11,-1]],[[4396,7795],[-36,-4],[-4,64],[83,-8],[-1,-45],[0,-11]],[[4442,7805],[1,41],[21,-8],[50,-23],[-8,-32],[-36,11],[-26,2],[-2,9]],[[4286,7719],[-29,3]],[[4257,7722],[3,28],[5,23],[23,-3],[-2,-23],[0,-28]],[[4288,7732],[13,-1],[-2,-21],[12,-2]],[[4311,7708],[-5,-62],[-3,-5],[-21,14],[6,77]],[[4441,7746],[36,0],[18,-6]],[[4495,7740],[-11,-39],[-16,4],[-27,2],[0,39]],[[4673,8330],[0,-3],[-134,77],[-3,2],[-3,4],[-6,6],[-12,9],[-36,44],[-21,16],[1,12],[21,23],[17,-20],[20,-9],[28,14],[12,14],[30,59],[1,15],[-17,17],[6,33],[7,95],[0,5],[4,54],[24,-12],[53,-38],[-9,-30],[23,51],[10,-7],[1,0],[2,7]],[[4692,8768],[24,54],[54,110],[15,26],[16,43],[21,45],[6,1],[16,39],[-4,15]],[[4840,9101],[21,-5]],[[4861,9096],[-8,-16],[-9,-21],[19,-5],[-1,-10]],[[4862,9044],[-13,-12],[-28,-56],[-35,-78],[-6,7],[-12,-27]],[[4768,8878],[-17,-22],[-13,-30],[-13,-12]],[[4725,8814],[-2,1],[-25,-51]],[[4698,8764],[-5,-5],[4,-5],[-6,-52],[-3,-4],[-33,-73],[-29,-58]],[[4626,8567],[-8,-26],[11,5],[32,-155]],[[4661,8391],[1,-5]],[[4662,8386],[4,-22],[7,-34]],[[4351,7993],[20,35],[3,5],[51,116],[8,27],[14,2]],[[4447,8178],[8,-11],[36,-26],[11,-41],[8,-38],[-24,-19],[-60,-26],[-14,-9],[-52,-31],[-9,16]],[[4450,8181],[-7,17],[22,52],[27,59]],[[4492,8309],[15,-20],[-9,-5],[-17,-45],[-3,-10],[17,-87],[-8,12],[-23,12],[-14,15]],[[4445,7909],[-5,0]],[[4440,7909],[-44,-4],[-1,4],[-44,-4]],[[4351,7905],[-2,54],[16,15],[62,37],[55,24],[4,-8],[44,-44],[27,-20],[-22,-76],[-58,30],[-32,-3],[0,-5]],[[4485,8326],[38,82]],[[4523,8408],[7,-4],[3,-1],[12,-9],[129,-76],[-12,-39],[-2,-22],[-7,-1],[-78,44],[-6,0],[79,-45],[12,-5],[-4,-72],[-9,4],[-16,16],[-2,-7],[27,-16],[-11,-30],[-11,-18],[-21,-18],[-56,107],[-28,49],[-33,47],[-2,3],[-4,5],[-5,6]],[[4343,7998],[-6,14],[16,11],[15,42],[-3,2],[18,39],[20,36],[-5,7],[36,63],[4,-2]],[[4438,8210],[-12,-32],[-55,-117],[-22,-48],[-6,-15]],[[4145,8669],[-4,18],[-13,8],[-9,27]],[[4119,8722],[28,15],[9,-28],[12,-35],[-23,-5]],[[4191,8665],[4,-11],[51,24],[3,29],[6,65]],[[4255,8772],[11,-2],[-6,-64],[-5,-60],[-6,-60],[-7,-80],[-19,-3]],[[4223,8503],[-7,32],[10,1],[18,51],[-32,5],[-19,-7]],[[4193,8585],[-3,16],[-13,57],[14,7]],[[4191,8666],[-14,-7],[-24,74],[14,7]],[[4167,8740],[24,-74]],[[4149,8780],[11,-12],[8,-25]],[[4168,8743],[-15,-9],[-13,39],[9,7]],[[4243,8772],[0,-16],[-15,-3],[-4,16],[19,3]],[[4255,8773],[8,85]],[[4263,8858],[11,2],[-8,-88],[-11,1]],[[4326,8382],[13,-46]],[[4339,8336],[-8,-12],[-16,-1],[-10,49]],[[4305,8372],[-5,35],[20,7]],[[4320,8414],[6,-30]],[[4326,8384],[0,-2]],[[4094,8463],[-12,-4],[4,-1]],[[4086,8458],[-19,1],[0,-33]],[[4067,8426],[-9,-1]],[[4058,8425],[1,43],[-14,3]],[[4045,8471],[2,8]],[[4047,8479],[8,-2],[5,33],[8,7],[3,26],[12,-3],[33,46]],[[4116,8586],[7,-5]],[[4123,8581],[-28,-41],[19,-16]],[[4114,8524],[-4,-26],[-11,2],[-5,-37]],[[4047,8663],[-27,-47],[-27,-42],[-22,-58]],[[3971,8516],[-3,1],[-15,3],[8,74],[6,52],[11,10],[39,33],[26,-23],[4,-3]],[[4346,8439],[-12,2]],[[4334,8441],[-4,31],[-24,-7],[-1,6]],[[4305,8471],[25,13],[30,9],[37,2],[45,-12],[0,-36],[-49,-1],[-44,-15],[-1,8],[-2,0]],[[4245,8509],[4,44]],[[4249,8553],[15,-3],[-5,-43],[-14,2]],[[4610,9108],[-8,-78]],[[4602,9030],[-15,-14],[-2,-7]],[[4585,9009],[2,-83]],[[4587,8926],[1,-2],[7,2],[-4,-56],[-8,-27],[-50,36],[-37,22],[-38,14],[-53,5],[0,-3]],[[4405,8917],[-23,-8],[0,9],[-23,1],[9,-84],[15,-6],[23,88]],[[4406,8917],[29,-2],[37,-8],[23,-9],[35,-21],[13,-9],[-12,-48],[20,42],[35,-25],[-7,-91],[-1,-7]],[[4578,8739],[-96,38],[-21,-22],[-2,-19],[-9,-107],[-3,1],[-6,-71],[5,-18],[18,-27]],[[4464,8514],[-19,-22],[-28,9],[-47,2],[-47,-13],[-29,-15]],[[4294,8475],[10,132],[-50,6]],[[4254,8613],[5,58],[9,92],[8,97],[1,4],[6,24],[17,10],[53,21],[12,5],[92,45],[1,169],[41,-6],[73,-12],[38,-12]],[[4563,8614],[-7,10],[-66,10],[2,24]],[[4492,8658],[4,52],[9,9],[14,-2],[55,-9],[0,-24],[-3,-40],[-8,-30]],[[4391,8889],[0,0]],[[4124,8586],[-13,10],[5,15],[31,57],[7,1],[15,3],[13,-55]],[[4182,8617],[-27,-14],[-31,-17]],[[4215,8276],[48,7]],[[4263,8283],[4,-18],[-54,-12],[2,23]],[[4296,8302],[-4,18],[-17,-7],[-11,51],[30,8]],[[4294,8372],[14,-66]],[[4308,8306],[-12,-4]],[[4346,8293],[-1,4]],[[4345,8297],[22,8]],[[4367,8305],[36,18],[-1,7]],[[4402,8330],[8,3],[4,-19]],[[4414,8314],[-19,-7],[4,-18]],[[4399,8289],[-22,-8],[-1,-10]],[[4376,8271],[-16,4],[-18,-7],[-4,18]],[[4338,8286],[9,3],[-1,4]],[[4154,8233],[-8,-15]],[[4146,8218],[-35,39],[-18,19]],[[4093,8276],[17,29],[12,-11],[15,26]],[[4137,8320],[-2,5]],[[4135,8325],[10,21],[13,2],[-3,28]],[[4155,8376],[-1,5]],[[4154,8381],[18,5],[1,-13],[-11,-12],[-7,-31]],[[4155,8330],[-6,-1],[-39,-68],[4,-4],[15,3],[25,-27]],[[4059,8417],[13,3]],[[4072,8420],[12,-45],[-13,-3],[-12,45]],[[5020,8302],[-3,35],[20,-28],[-17,-7]],[[4691,8678],[2,19],[24,-2],[-4,-22]],[[4713,8673],[-22,5]],[[4877,8632],[2,3],[45,-17]],[[4924,8618],[-4,-21]],[[4920,8597],[-5,3]],[[4915,8600],[-7,-7]],[[4908,8593],[-13,10]],[[4895,8603],[-2,1]],[[4893,8604],[-13,9]],[[4880,8613],[-2,2]],[[4878,8615],[-3,12]],[[4875,8627],[2,5]],[[4713,8745],[-6,-30],[-12,2]],[[4695,8717],[4,36],[14,-8]],[[5142,8592],[-23,9],[6,26],[27,-10],[-10,-25]],[[4825,8804],[0,-19],[-20,3],[20,16]],[[4939,8810],[-3,1],[-20,-98],[-46,8],[10,51],[13,64],[17,14],[31,1],[23,-11],[-7,-41]],[[4957,8799],[-8,9]],[[4949,8808],[-10,2]],[[5051,8942],[-4,-28],[-19,0],[1,23],[10,42],[12,-37]],[[4696,9037],[20,-4],[-8,-44],[-24,5]],[[4684,8994],[9,11],[3,32]],[[4707,9074],[-31,-5],[-51,-21]],[[4625,9048],[11,52]],[[4636,9100],[71,-25]],[[4707,9075],[0,-1]],[[4860,9332],[10,-13],[-13,-27],[-13,10],[6,15],[-30,11]],[[4820,9328],[-13,5],[-7,-33],[-10,-40]],[[4790,9260],[-40,7],[11,86],[12,45],[48,-9]],[[4821,9389],[-3,-15]],[[4818,9374],[-1,-3],[52,-12]],[[4869,9359],[-11,-25],[2,-2]],[[5240,9341],[19,-3],[6,-37],[15,-92],[9,-46]],[[5289,9163],[-14,4]],[[5275,9167],[-3,1]],[[5272,9168],[-14,4]],[[5258,9172],[-2,1]],[[5256,9173],[-31,10]],[[5225,9183],[-1,1]],[[5224,9184],[3,13],[-52,16],[-3,-13]],[[5172,9200],[-1,1]],[[5171,9201],[-26,8]],[[5145,9209],[12,23],[8,15],[40,73]],[[5205,9320],[33,-10],[-8,8],[10,23]],[[4716,8563],[-10,-22],[-8,1],[3,28]],[[4701,8570],[15,-7]],[[5186,9071],[-5,-27],[-10,4],[7,22],[8,1]],[[5024,9279],[5,-28],[-21,5],[16,23]],[[5037,9311],[-12,-20],[-6,25],[18,-5]],[[4796,8237],[-2,2],[59,129],[2,-2],[-59,-129]],[[4892,8447],[-35,-78],[-3,2],[35,78],[3,-2]],[[4915,8524],[-5,-27],[-16,-46],[18,75],[3,-2]],[[4916,8528],[-3,2],[7,50],[23,124],[3,-1],[-30,-175]],[[4947,8708],[-3,1],[23,137],[4,-1],[-24,-137]],[[5016,8997],[-15,-27],[-18,-53],[-11,-65],[-3,1],[17,88],[16,39],[14,17]],[[5019,9012],[3,20],[-8,11],[2,16]],[[5016,9059],[7,-1],[14,-25],[-18,-21]],[[4985,8949],[-9,-42]],[[4976,8907],[-32,3],[-5,50],[46,-11]],[[5116,8854],[12,-4]],[[5128,8850],[-5,-27],[-30,-24]],[[5093,8799],[-12,4]],[[5081,8803],[3,29],[-25,0]],[[5059,8832],[6,41],[51,-19]],[[5049,9125],[5,39],[11,24],[35,-23]],[[5100,9165],[-28,-55],[-23,15]],[[5161,9340],[0,0]],[[5121,8538],[-103,37]],[[5018,8575],[-4,24],[9,1],[107,-40],[-9,-22]],[[5113,8481],[-30,11],[9,17],[28,-10]],[[5120,8499],[-7,-18]],[[4854,9105],[1,17],[30,64],[20,36]],[[4905,9222],[3,-4],[3,-5]],[[4911,9213],[-30,-64],[-16,-41]],[[4865,9108],[-9,-6],[-2,3]],[[4981,9368],[-60,-136]],[[4921,9232],[-10,-9]],[[4911,9223],[2,10],[35,74]],[[4948,9307],[1,3]],[[4949,9310],[3,18],[16,40]],[[4968,9368],[13,0]],[[4884,5850],[-19,-9],[6,43],[13,-34]],[[4898,5880],[14,6]],[[4912,5886],[9,-29],[-15,-7]],[[4906,5850],[-8,30]],[[4950,5834],[-12,43],[-4,4],[-8,27]],[[4926,5908],[17,7],[8,-27],[14,-47],[-15,-7]],[[5017,5815],[2,13],[-15,35],[37,29],[67,47],[1,-3],[2,-6],[-51,-35],[-21,-29],[-18,-53],[-4,2]],[[4973,5887],[2,-4]],[[4975,5883],[-5,-13],[9,-20]],[[4979,5850],[-10,-7],[-11,37],[-10,37],[12,5]],[[4960,5922],[13,-35]],[[5194,5925],[24,17],[19,-44]],[[5237,5898],[-24,-15],[-19,42]],[[5245,5961],[12,-27],[-5,-16],[-15,-10]],[[5237,5908],[-15,37],[23,16]],[[5110,5945],[-7,17],[40,28],[7,-17],[-40,-28]],[[5174,5990],[-12,25],[19,13],[11,-25],[-18,-13]],[[5219,6000],[17,-39]],[[5236,5961],[-16,-12],[-17,40],[16,11]],[[5233,6160],[7,-16],[-36,-23],[-4,17],[33,22]],[[5164,6159],[-10,19],[21,11],[4,-19],[-15,-11]],[[5202,6253],[-3,-11],[-24,20],[27,-9]],[[5113,5938],[11,13],[112,80],[2,-2],[3,-6],[-126,-90],[-2,5]],[[5271,6186],[14,-13],[7,14],[14,-1]],[[5306,6186],[-2,-26],[-24,-16],[-27,-19],[-16,38],[17,11],[17,12]],[[5228,6302],[-8,10],[4,14]],[[5224,6326],[35,-9],[-21,-27],[-8,8]],[[5230,6298],[-2,4]],[[5288,5923],[-21,50],[24,-2],[-3,-48]],[[5318,5868],[-2,2],[6,114],[-26,3]],[[5296,5987],[2,33]],[[5298,6020],[25,-3],[3,59]],[[5326,6076],[2,2],[1,8],[-28,-21],[-3,9],[5,9],[9,131],[22,14],[2,3],[-14,52],[-16,33],[-16,19],[-31,18]],[[5259,6353],[-74,45],[-33,18],[-7,-2]],[[5145,6414],[1,6],[-6,2]],[[5140,6422],[-45,28]],[[5095,6450],[-32,17],[4,11],[5,16],[24,-16],[52,-25],[-4,-16],[5,-3]],[[5149,6434],[87,-45]],[[5236,6389],[14,-16],[46,-29],[3,-1],[3,2]],[[5302,6345],[34,-7],[23,7],[-6,30]],[[5353,6375],[7,-1]],[[5360,6374],[6,-29],[5,1],[33,14],[39,2]],[[5443,6362],[3,-4],[4,3]],[[5450,6361],[34,-12],[5,5]],[[5489,6354],[24,13],[7,-10],[-18,-15],[6,-7],[1,1]],[[5509,6336],[5,-9],[39,-21],[-12,16]],[[5541,6322],[58,-36],[14,20]],[[5613,6306],[25,34]],[[5638,6340],[3,4],[-15,20],[-21,35]],[[5605,6399],[27,23]],[[5632,6422],[10,-17],[34,-6],[3,2]],[[5679,6401],[7,1],[13,26],[5,29],[-9,51]],[[5695,6508],[6,2]],[[5701,6510],[10,-54],[-4,-22],[9,-4],[-4,-24],[-25,-24],[-55,-66],[-9,-18],[6,-8],[-10,-14],[69,-36]],[[5688,6240],[-9,-7],[-24,-25],[-65,-66],[-35,55],[-10,15],[-13,21]],[[5532,6233],[28,31],[10,23]],[[5570,6287],[6,2],[-74,39],[1,2],[-9,3],[-16,-14],[-21,30],[-8,4],[2,-3],[12,-24],[2,-14],[-73,-32],[-26,-19],[-6,-4],[-9,-6],[-10,-6],[2,-9],[3,2]],[[5346,6238],[-10,-140],[17,35],[6,116]],[[5359,6249],[6,3],[5,-4],[-8,-143],[-5,0],[-21,-15],[-1,-8],[4,0],[14,-23],[-2,-75],[3,0]],[[5354,5984],[1,-44],[10,-20]],[[5365,5920],[-1,-6],[-42,-41],[-4,-5]],[[5437,5992],[-22,-22]],[[5415,5970],[-20,31],[22,23],[20,-32]],[[5301,6115],[-3,-35],[-19,-16],[-13,29],[-11,27],[17,12]],[[5272,6132],[10,-27],[19,10]],[[5379,6260],[23,14],[32,14],[8,2]],[[5442,6290],[4,-21],[7,-1],[-11,-101],[-4,-67]],[[5438,6100],[-30,2]],[[5408,6102],[1,26],[-6,74],[-24,58]],[[5572,6341],[-6,15],[-16,-15],[-12,19]],[[5538,6360],[54,50],[20,-32],[-40,-37]],[[5295,6407],[1,4],[20,51],[10,40]],[[5326,6502],[7,-1],[16,-6],[21,-17],[33,-41],[19,-41],[-18,-12],[-24,-6],[-22,4],[-7,3],[-17,0],[-39,22]],[[5548,6409],[-29,-28],[-27,49],[59,45],[23,-42],[-26,-24]],[[5490,6780],[12,25],[17,-11],[18,9],[29,52],[17,10],[49,-15]],[[5632,6850],[-5,-39],[-11,3],[-11,-49],[45,-21]],[[5650,6744],[-14,-98],[-2,-11],[1,-2],[0,-8],[-3,-29],[-7,-5],[-159,30],[-17,3]],[[5449,6624],[4,32],[-31,5]],[[5422,6661],[6,9],[3,5],[7,13],[24,41]],[[5462,6729],[12,-8],[17,37],[13,10],[-14,12]],[[5651,6724],[44,-16]],[[5695,6708],[2,-3],[20,-40],[11,-32],[5,-15],[7,-13],[0,-2],[12,-33],[-1,-8],[-51,20],[-20,8],[-12,0],[-28,-23],[-7,11],[5,47],[1,7],[2,2],[1,11],[9,79]],[[5404,6473],[-6,33],[10,12],[17,-25]],[[5425,6493],[-21,-20]],[[5402,6627],[7,1]],[[5409,6628],[0,-7],[53,-7],[-3,-32],[-45,-50],[-21,-31],[7,-26],[-9,-10],[-13,15],[10,15],[-15,46],[-1,22],[10,30],[20,34]],[[5444,6460],[-2,16],[-32,44],[22,24],[22,26],[16,-20],[21,-30],[27,-54],[-51,-41]],[[5467,6425],[-23,35]],[[5596,6464],[5,-10]],[[5601,6454],[-12,-11],[-30,50]],[[5559,6493],[8,6]],[[5567,6499],[15,-24],[14,-11]],[[5672,6579],[10,3]],[[5682,6582],[2,-23],[15,-37]],[[5699,6522],[-4,-3]],[[5695,6519],[-17,37],[-6,23]],[[5347,6547],[30,44],[-8,-27],[5,-43],[-27,26]],[[5339,6507],[11,20],[30,-26],[-7,-15],[-34,21]],[[5325,6510],[0,29]],[[5325,6539],[6,1],[18,-12],[-17,-19],[-7,1]],[[5320,6674],[-12,9],[-36,18]],[[5272,6701],[3,7],[5,8]],[[5280,6716],[31,-16],[-22,33]],[[5289,6733],[14,25],[27,-11],[20,4],[21,25],[11,19]],[[5382,6795],[46,-59],[26,48]],[[5454,6784],[21,42]],[[5475,6826],[7,-6],[6,-4],[1,-1],[4,-3],[-33,-70],[-35,-58],[-13,-21],[-21,-35],[-22,-29],[-20,-15],[-3,-4],[-10,-20],[-6,2],[-22,6],[-25,10],[-16,10],[26,38],[11,-9],[17,-7],[-26,20],[24,39],[53,-39],[6,-6],[1,2],[-6,6],[-53,42]],[[5344,6562],[10,20],[22,17],[-17,-26],[-15,-11]],[[5489,6044],[-32,49]],[[5457,6093],[21,12],[31,27],[-5,4]],[[5504,6136],[-6,14],[6,50]],[[5504,6200],[26,26]],[[5530,6226],[12,-18],[9,-16],[34,-54],[-39,-40],[-12,-10],[-45,-44]],[[5295,6068],[2,-5],[-52,-38],[-3,6],[53,37]],[[4997,6087],[28,-17],[-24,-17],[-15,23],[11,11]],[[5152,6266],[-9,-27],[4,-9],[-23,13],[-20,4],[4,17],[21,-10],[7,19]],[[5136,6273],[16,-7]],[[5137,6332],[4,-13]],[[5141,6319],[-13,-28],[-8,8],[17,33]],[[4974,6281],[-60,32]],[[4914,6313],[30,70],[100,-51],[8,-5],[34,-36],[-31,-10],[-24,8],[-13,1],[-44,-9]],[[5101,6376],[-9,-28],[-30,13],[-12,10],[8,27],[43,-22]],[[5099,6582],[21,-9],[-5,-17],[-21,9],[5,17]],[[5086,6540],[21,-11],[-3,-9],[-21,11],[3,9]],[[5043,6135],[-13,-13]],[[5043,6135],[0,0]],[[4943,6185],[-5,-14],[-28,14],[6,14],[27,-14]],[[5011,6228],[20,56]],[[5031,6284],[26,-15],[-14,-43],[-9,-16]],[[5034,6210],[-13,7],[-4,-12]],[[5017,6205],[-10,4]],[[5007,6209],[3,15]],[[5010,6224],[1,4]],[[5009,6527],[59,-31]],[[5068,6496],[-5,-16],[-4,-11],[-50,28],[-10,12],[3,6],[7,12]],[[4836,5996],[2,19],[13,-1],[9,22]],[[4860,6036],[-4,-35],[-20,-5]],[[4572,5991],[18,-12],[-7,-17],[55,1],[8,35],[-12,26],[-3,6],[-60,36],[-16,1]],[[4555,6067],[0,4],[5,57],[0,5],[183,37],[19,-1],[24,-15],[-7,-46]],[[4779,6108],[-9,-7],[-5,-32],[7,-1],[32,-11]],[[4804,6057],[-8,-42]],[[4796,6015],[-32,6],[-5,-72]],[[4759,5949],[-42,-2]],[[4717,5947],[1,12],[-47,-1],[0,-13]],[[4671,5945],[-29,0]],[[4642,5945],[4,15],[-30,-4],[-59,-2]],[[4557,5954],[2,5],[13,32]],[[4889,6476],[-5,-15],[-12,6],[5,15],[12,-6]],[[4818,6264],[9,-12],[-7,-11],[-10,9],[8,14]],[[4922,6650],[-11,-38],[-43,22]],[[4868,6634],[7,35],[10,23],[17,-27],[-8,-1],[28,-14]],[[4862,6601],[53,-27],[-2,-5],[88,-43]],[[5001,6526],[-7,-14],[-17,2],[-29,15],[-93,45],[7,27]],[[4971,6699],[4,12],[17,-9],[-3,-13]],[[4989,6689],[-18,10]],[[5037,6744],[-16,8],[9,46],[23,-10]],[[5053,6788],[-16,-44]],[[5278,6724],[-8,-14],[-3,-7],[-23,-39]],[[5244,6664],[-59,29],[-9,12]],[[5176,6705],[12,39],[3,7],[3,8]],[[5194,6759],[13,-8],[12,36],[42,-21]],[[5261,6766],[-13,-18],[15,-4],[1,-18],[14,-2]],[[5178,6723],[-63,32],[-4,12]],[[5111,6767],[3,9],[4,7],[3,10]],[[5121,6793],[69,-30]],[[5190,6763],[-2,-10],[-2,-7],[-8,-23]],[[5281,6837],[25,76]],[[5306,6913],[61,-18],[-4,-15],[-26,-49]],[[5337,6831],[-48,22],[-6,-17]],[[5283,6836],[-2,1]],[[5472,6947],[-7,-12],[18,-50]],[[5483,6885],[-7,-7]],[[5476,6878],[-8,24],[-20,-11],[-6,17],[-7,-11],[-15,-25]],[[5420,6872],[-30,18]],[[5390,6890],[6,12],[15,52],[-10,6]],[[5401,6960],[22,61]],[[5423,7021],[11,-6],[25,70],[43,-7],[11,-23],[13,9]],[[5526,7064],[15,-30]],[[5541,7034],[-10,-15],[-33,-30],[-26,-42]],[[5374,6911],[-3,-9],[-38,11],[6,19],[35,-21]],[[5279,6952],[53,-22]],[[5332,6930],[-4,-16],[-56,15],[7,23]],[[5383,7010],[-9,17],[11,-12]],[[5385,7015],[-2,-5]],[[5329,7033],[6,21],[18,-8],[-2,-17],[-22,4]],[[5274,7023],[-2,-68],[5,-2]],[[5277,6953],[-7,-23],[-19,11],[-7,6]],[[5244,6947],[0,28],[-10,-4],[-8,29],[6,18],[-12,64]],[[5220,7082],[13,7],[25,14]],[[5258,7103],[11,-26],[-28,-15],[14,-40],[19,1]],[[5146,7000],[-4,-21]],[[5142,6979],[-5,-23],[-37,11],[34,49],[12,-16]],[[5065,7198],[0,0]],[[5177,7077],[6,21],[11,-20],[-17,-1]],[[5178,7102],[-7,5],[-13,-19],[-3,26]],[[5155,7114],[21,9],[2,-21]],[[5489,6888],[20,20],[21,-1],[4,-5],[1,-2],[3,2],[-2,3],[-4,5]],[[5532,6910],[19,24],[24,24],[-1,2]],[[5574,6960],[0,2]],[[5574,6962],[154,105],[14,8],[2,-3],[7,8],[51,30]],[[5802,7110],[4,-9],[-7,-8],[-33,-19],[-148,-99],[-38,-27],[-33,-34],[-7,-12],[-22,-39],[-22,-43],[-3,2],[-2,1],[-5,4]],[[5486,6827],[21,41],[-18,20]],[[5570,7048],[-7,20],[-18,-27]],[[5545,7041],[-1,-3]],[[5544,7038],[-25,49]],[[5519,7087],[36,23]],[[5555,7110],[81,52],[34,35],[11,26]],[[5681,7223],[7,-10],[19,13]],[[5707,7226],[3,2]],[[5710,7228],[18,12]],[[5728,7240],[3,2]],[[5731,7242],[24,17]],[[5755,7259],[7,-17],[-27,-14],[-13,-22],[9,-3],[7,22],[17,-57],[-15,-14],[-165,-106],[-5,0]],[[5115,7292],[5,3],[61,98]],[[5181,7393],[-1,-7]],[[5180,7386],[-26,-41],[-23,-47],[8,-7],[-15,-42],[16,-13]],[[5140,7236],[-5,-13],[-29,33],[-9,13],[18,23]],[[4845,7741],[-36,64]],[[4809,7805],[1,15]],[[4810,7820],[34,-56],[1,-23]],[[5186,7377],[9,-2]],[[5195,7375],[-3,-16],[-9,2],[3,16]],[[5378,7585],[2,-12],[0,-5]],[[5380,7568],[-46,-2]],[[5334,7566],[-1,0]],[[5333,7566],[-14,-1]],[[5319,7565],[-1,1]],[[5318,7566],[-10,11],[-45,-68],[-74,-114]],[[5189,7395],[3,15]],[[5192,7410],[16,32],[49,78],[68,99],[-6,6]],[[5319,7625],[3,7]],[[5322,7632],[7,-6],[29,42]],[[5358,7668],[7,-8]],[[5365,7660],[-28,-40],[9,-8]],[[5346,7612],[2,-2],[3,16],[11,16]],[[5362,7642],[5,-48],[11,-9]],[[5297,7643],[4,7]],[[5301,7650],[20,-17]],[[5321,7633],[-3,-7]],[[5318,7626],[-21,17]],[[5280,7668],[20,-17]],[[5300,7651],[-3,-7]],[[5297,7644],[-21,17]],[[5276,7661],[4,7]],[[5259,7685],[20,-16]],[[5279,7669],[-3,-7]],[[5276,7662],[-18,15]],[[5258,7677],[1,8]],[[5236,7705],[22,-18]],[[5258,7687],[-2,-9]],[[5256,7678],[-11,10]],[[5245,7688],[-10,8]],[[5235,7696],[1,9]],[[5381,7572],[1,9]],[[5382,7581],[22,-18]],[[5404,7563],[3,-12]],[[5407,7551],[-26,21]],[[5008,6754],[-3,-10],[-19,9],[3,11],[19,-10]],[[5194,6875],[11,-5],[-7,-20],[-9,7]],[[5189,6857],[5,18]],[[5370,7114],[-58,8],[8,3],[51,-8],[-1,-3]],[[5372,7113],[0,4],[42,-6],[0,-4],[-42,6]],[[5376,6903],[42,119],[2,-1],[-44,-118]],[[5188,7103],[11,-5],[7,14],[-9,20],[5,16],[-8,15]],[[5194,7163],[-9,25],[-8,12]],[[5177,7200],[-11,12],[-19,19]],[[5147,7231],[7,19],[15,41],[1,3]],[[5170,7294],[26,-5],[-8,37]],[[5188,7326],[3,2]],[[5191,7328],[19,-63],[10,-20],[15,1],[34,36],[20,8],[22,18],[8,25],[6,48],[10,13]],[[5335,7394],[14,-1]],[[5349,7393],[-18,-80],[-19,-36],[30,-7]],[[5342,7270],[-1,-4]],[[5341,7266],[-32,8],[-32,-25],[18,-38]],[[5295,7211],[6,-21]],[[5301,7190],[-22,-15],[8,-42]],[[5287,7133],[-38,19],[5,-9],[28,-15],[-32,-26],[-33,-18],[-21,-5],[-8,24]],[[5114,6796],[-4,-9],[-2,-7],[-4,-11]],[[5104,6769],[-47,26]],[[5057,6795],[-2,1]],[[5055,6796],[-28,24]],[[5027,6820],[-18,19],[-28,17],[5,4],[5,4],[14,11]],[[5005,6875],[0,-6],[27,-20],[20,-5],[52,-37],[-1,-5],[11,-6]],[[5116,6857],[-26,13],[23,75],[7,7]],[[5120,6952],[26,-8],[-30,-87]],[[5409,7559],[10,-9]],[[5419,7550],[0,-10]],[[5419,7540],[-12,10]],[[5407,7550],[2,9]],[[5306,6763],[17,30],[32,-29],[-14,-11],[-35,10]],[[5308,6541],[-27,5],[-18,13],[-5,11]],[[5258,6570],[2,4],[48,-33]],[[5357,7215],[-13,32],[4,36],[32,101],[17,-4]],[[5397,7380],[-16,-55],[-3,-17],[8,-1]],[[5386,7307],[-8,-27]],[[5378,7280],[8,-30],[3,-4],[14,-11],[-4,-19],[5,-32],[-27,-5],[-16,40],[-4,-4]],[[5147,6621],[-75,36]],[[5072,6657],[3,9],[75,-37],[-3,-8]],[[4961,7930],[10,0],[38,-32],[11,-9],[25,-22]],[[5045,7867],[-5,-5],[-28,-20],[-138,-120],[-11,-10],[-16,27],[11,10],[-43,74],[79,37],[40,27],[18,21],[8,21],[1,1]],[[5050,7338],[-12,-7],[-32,47]],[[5006,7378],[0,15],[15,12],[36,-64],[-7,-3]],[[5055,7323],[12,1],[3,-16],[-15,15]],[[5763,7238],[17,-54],[-22,-14],[-18,56],[23,12]],[[5194,7356],[1,5]],[[5195,7361],[10,3],[18,29],[65,100],[8,-4],[42,5]],[[5338,7494],[1,0]],[[5339,7494],[44,5]],[[5383,7499],[2,4]],[[5385,7503],[23,0]],[[5408,7503],[1,0]],[[5409,7503],[11,0]],[[5420,7503],[5,-2]],[[5425,7501],[17,29],[24,37]],[[5466,7567],[1,3],[-13,10],[7,51]],[[5461,7631],[28,-33],[9,-12]],[[5498,7586],[-30,-41],[-31,-58],[-4,-66],[2,-29]],[[5435,7392],[-6,-5],[-3,43]],[[5426,7430],[-28,-44]],[[5398,7386],[-8,2],[-39,12],[-30,-1],[-27,-8],[-67,-34]],[[5227,7357],[-2,6],[-26,-14],[-5,7]],[[5094,7264],[4,-9]],[[5098,7255],[-29,-40]],[[5069,7215],[-6,1]],[[5063,7216],[23,29],[8,19]],[[5359,7669],[31,45]],[[5390,7714],[6,-8]],[[5396,7706],[-30,-44]],[[5366,7662],[-7,7]],[[5056,7977],[-7,2],[5,12]],[[5054,7991],[12,22],[5,-4]],[[5071,8009],[-15,-32]],[[5200,7930],[-6,5],[14,27]],[[5208,7962],[8,-7]],[[5216,7955],[-16,-25]],[[5184,8112],[-33,24],[12,36],[35,-23],[21,-18],[-7,-12],[-28,-7]],[[5242,8085],[-11,3]],[[5231,8088],[1,33]],[[5232,8121],[37,-38]],[[5269,8083],[-6,-6],[-21,8]],[[5235,8201],[23,-13],[45,-44],[45,-38],[-13,-47],[-10,-41],[-21,10],[-17,27],[-14,29],[-41,43]],[[5232,8127],[3,74]],[[5106,8276],[-20,12],[-19,-3]],[[5067,8285],[-1,5]],[[5066,8290],[20,4],[0,9]],[[5086,8303],[30,-18],[34,-27],[49,-34]],[[5199,8224],[6,-75]],[[5205,8149],[-22,19],[-29,15],[-18,9],[-37,22],[10,54],[-3,8]],[[5584,7812],[31,8]],[[5615,7820],[2,-12],[33,7]],[[5650,7815],[0,-4],[0,-6],[-60,-13],[-2,5],[-4,15]],[[5399,7717],[-1,2]],[[5398,7719],[12,16],[18,13]],[[5428,7748],[5,2],[-8,4],[-6,4],[-6,5],[8,36]],[[5421,7799],[6,-9],[16,-6],[4,-19],[26,9],[26,1],[54,14]],[[5553,7789],[15,3],[9,19]],[[5577,7811],[7,-15],[-17,-10],[-68,-15],[-22,-9],[-34,-23]],[[5443,7739],[-13,7],[-16,-10],[-15,-19]],[[4924,7912],[0,0]],[[5216,7876],[-15,13]],[[5201,7889],[9,16],[16,-16],[-1,-18],[-9,5]],[[5102,7956],[36,-13],[-19,-24]],[[5119,7919],[-23,8],[6,29]],[[5124,8064],[23,14]],[[5147,8078],[10,-27]],[[5157,8051],[-23,-14]],[[5134,8037],[-10,27]],[[5270,7914],[16,38],[17,-7],[-7,-28],[-10,-16]],[[5286,7901],[-16,13]],[[4928,8175],[53,1],[72,33]],[[5053,8209],[2,1]],[[5055,8210],[21,10]],[[5076,8220],[0,0]],[[5076,8220],[4,-15],[-116,-54],[-3,-7]],[[4961,8144],[-2,2]],[[4959,8146],[3,14],[-38,0]],[[4924,8160],[4,15]],[[5478,7854],[-9,-24],[-17,9]],[[5452,7839],[7,23],[19,-8]],[[5440,7647],[0,0]],[[5802,7484],[-11,18],[-4,8],[-18,-7]],[[5769,7503],[-6,20]],[[5763,7523],[37,29],[38,-45],[-32,-31],[-4,8]],[[5803,7851],[-2,-24],[8,-1],[32,-2]],[[5841,7824],[-1,-4],[-14,-36],[-7,-61],[-34,5],[-1,39]],[[5784,7767],[3,20],[-15,4],[-17,-9],[-2,-21],[19,-2],[-2,-12],[-19,-5],[-1,-9]],[[5750,7733],[-16,18]],[[5734,7751],[-4,18],[5,11],[-25,7],[-17,10],[-4,-9],[-13,8],[-18,-3]],[[5658,7793],[19,12],[-21,7],[-5,19],[34,-14],[71,16],[9,24],[38,-6]],[[5769,7632],[16,4],[30,-4],[-5,-47]],[[5810,7585],[-28,5],[-13,42]],[[5496,7606],[22,24],[50,42],[4,20],[-80,22]],[[5492,7714],[-2,4]],[[5490,7718],[17,-5],[9,54]],[[5516,7767],[43,10],[6,-31],[-21,-3],[4,-17],[-4,-22],[33,-9]],[[5577,7695],[-1,-4],[43,-11]],[[5619,7680],[-16,-16],[13,-30]],[[5616,7634],[1,-11]],[[5617,7623],[-18,34],[-7,1],[-44,-32]],[[5548,7626],[-9,12],[-39,-37]],[[5500,7601],[-4,5]],[[5577,7695],[4,25]],[[5581,7720],[-11,8],[-5,16],[-15,-3],[-8,-37],[35,-9]],[[5665,7711],[-7,-4]],[[5658,7707],[-14,-4]],[[5644,7703],[-6,5]],[[5638,7708],[-7,29],[28,8],[6,-34]],[[5818,7712],[-56,5],[-13,-3],[-8,-62],[39,-7]],[[5780,7645],[-7,-3]],[[5773,7642],[-82,19]],[[5691,7661],[-3,5]],[[5688,7666],[50,-13],[-2,57]],[[5736,7710],[-1,32]],[[5735,7742],[14,-17],[46,-2],[23,-5],[0,-6]],[[5874,7177],[1,-8],[44,28]],[[5919,7197],[2,-5],[2,1]],[[5923,7193],[72,48],[33,21],[43,29],[-2,6],[-18,47]],[[6051,7344],[30,18],[17,-25],[-12,28],[18,12],[18,-44],[3,-7],[4,-10],[-43,-31],[-7,-2],[-88,-59],[-4,-5],[-75,-51],[-9,-3],[-92,-61],[-4,9],[-1,11],[61,42],[7,11]],[[5927,7244],[8,-23],[-17,-6]],[[5918,7215],[-7,21],[16,8]],[[5909,7554],[7,-17],[-16,-12],[-6,13],[15,16]],[[6010,7603],[-28,-18],[-12,28],[25,24],[15,-34]],[[6301,7443],[4,10],[-15,38],[141,57],[22,-12]],[[6453,7536],[43,-26],[-9,58],[4,12]],[[6491,7580],[11,-35],[11,-12],[17,0],[-17,-48],[-11,-17],[-5,-6],[-13,-12],[-58,3],[-52,-4],[-57,-17],[-42,-22],[-131,-88],[-7,-1],[-4,10],[-24,50],[64,39],[18,11]],[[6191,7431],[19,-45],[59,39],[32,18]],[[5953,7881],[41,20],[8,-20],[1,-2],[7,-19],[-33,-15]],[[5977,7845],[-4,19],[-49,-22]],[[5924,7842],[-1,3]],[[5923,7845],[47,22],[-17,14]],[[5980,7934],[13,-30],[-22,-10],[-5,13]],[[5966,7907],[14,27]],[[6199,7531],[-11,-10]],[[6188,7521],[-14,24],[39,38],[10,36]],[[6223,7619],[11,-1]],[[6234,7618],[-3,-22],[-16,-31],[-24,-21],[8,-13]],[[6217,7487],[26,15],[3,-5]],[[6246,7497],[2,-5]],[[6248,7492],[6,-15]],[[6254,7477],[-26,-16],[-11,26]],[[6168,7795],[0,0]],[[6096,7931],[-30,-23]],[[6066,7908],[-60,-28]],[[6006,7880],[-1,2],[-7,20],[17,8]],[[6015,7910],[-10,-23],[62,28],[26,21],[-1,13]],[[6092,7949],[-4,15],[22,-8],[2,-1],[14,-7]],[[6126,7948],[-9,-10],[6,-10],[13,-63],[16,-25]],[[6152,7840],[-72,-78],[-4,5],[27,29],[8,29]],[[6111,7825],[18,0],[4,8],[-12,67],[-16,2]],[[6105,7902],[-8,30],[-1,-1]],[[6014,7937],[10,-7],[-7,-15]],[[6017,7915],[-21,-9],[-13,32],[8,17],[23,-18]],[[6070,8153],[-7,-15],[9,-11],[-5,-11],[17,-25],[4,-22]],[[6088,8069],[-3,-6],[16,-47]],[[6101,8016],[-17,-8],[1,-9]],[[6085,7999],[1,-4]],[[6086,7995],[8,-28]],[[6094,7967],[-19,11],[-26,27],[-23,24]],[[6026,8029],[22,44]],[[6048,8073],[1,3]],[[6049,8076],[10,21],[-2,7]],[[6057,8104],[-1,5]],[[6056,8109],[-8,20]],[[6048,8129],[-1,5]],[[6047,8134],[-8,21]],[[6039,8155],[5,3],[17,8],[9,-13]],[[6343,7729],[42,-24],[-1,-3],[-59,3]],[[6325,7705],[18,24]],[[6416,7755],[-18,22],[-14,3]],[[6384,7780],[41,51],[26,-33],[-35,-43]],[[6160,8222],[82,177]],[[6242,8399],[45,-22],[2,-1]],[[6289,8376],[-43,-154]],[[6246,8222],[-1,-1],[17,-3],[-1,-13],[41,-7],[-14,-61]],[[6288,8137],[-8,5],[-22,-39]],[[6258,8103],[-6,2]],[[6252,8105],[-55,-75]],[[6197,8030],[-16,-4],[-5,38],[0,4],[-4,38],[9,7]],[[6181,8113],[11,-17],[26,45],[17,48],[-15,7]],[[6220,8196],[7,26],[16,-2],[1,4],[-36,0],[-45,-11],[-3,9]],[[6633,7810],[-22,-4],[-2,-15],[-3,-15]],[[6606,7776],[-1,-4]],[[6605,7772],[-4,-21],[42,5],[-5,-28],[1,-27],[-33,-4]],[[6606,7697],[-18,-2],[-10,-3],[7,1],[12,-54],[-6,-8],[-5,-5]],[[6586,7626],[-4,21],[-20,7],[-13,-60]],[[6549,7594],[6,34],[-8,2],[-15,-91],[-14,0],[-13,11],[-12,38]],[[6493,7588],[23,23]],[[6516,7611],[17,33],[-19,14]],[[6514,7658],[-18,14],[-13,-17]],[[6483,7655],[-17,22],[-8,11]],[[6458,7688],[47,79]],[[6505,7767],[19,-13],[1,2],[-2,2]],[[6523,7758],[19,44]],[[6542,7802],[2,2]],[[6544,7804],[41,-31],[2,15],[-4,26],[25,16]],[[6608,7830],[9,3],[12,3],[4,-26]],[[6430,8116],[7,-45]],[[6437,8071],[-13,-16],[-21,21],[27,40]],[[6499,8212],[26,-2],[5,6]],[[6530,8216],[3,-5]],[[6533,8211],[-24,-34],[-15,-5],[-12,16]],[[6482,8188],[17,24]],[[6293,8229],[12,41],[14,73]],[[6319,8343],[12,-5],[-24,-118],[-14,9]],[[6264,8220],[42,-5]],[[6306,8215],[-3,-15],[-40,7],[1,13]],[[6134,8445],[-7,0]],[[6127,8445],[-108,4]],[[6019,8449],[21,79],[51,-43],[42,-26],[1,-14]],[[6004,7633],[29,7]],[[6004,7633],[0,0]],[[6035,7640],[43,-1]],[[6078,7639],[-1,-4],[-41,2],[-1,3]],[[6092,7640],[3,-3],[43,-5],[4,26]],[[6142,7658],[-1,-28],[-50,4],[1,6]],[[6049,7526],[15,56]],[[6064,7582],[-11,-56],[-4,0]],[[6065,7585],[11,47]],[[6065,7585],[0,0]],[[6085,7691],[-1,-51],[4,0]],[[6088,7640],[-7,-5],[-3,60],[7,-4]],[[6080,7718],[2,-19]],[[6080,7718],[0,0]],[[6115,7504],[-12,-46],[-14,-28],[-2,6]],[[6087,7436],[1,2]],[[6088,7438],[13,23],[14,43]],[[6116,7507],[6,21]],[[6116,7507],[0,0]],[[6123,7531],[8,27]],[[6123,7531],[0,0]],[[6138,7592],[-6,-32]],[[6138,7592],[0,0]],[[6139,7626],[0,-31]],[[6139,7626],[0,0]],[[6205,7627],[18,-2]],[[6223,7625],[26,-1]],[[6249,7624],[-26,-2],[-18,5]],[[6296,7621],[-13,-10],[-6,7],[-27,5]],[[6250,7623],[46,-2]],[[6059,7788],[47,100]],[[6106,7888],[3,-31]],[[6109,7857],[-21,-41]],[[6088,7816],[-4,-7]],[[6084,7809],[-16,-33]],[[6068,7776],[-9,12]],[[6412,8175],[5,-38],[-5,-6],[-16,20],[16,24]],[[6418,8117],[-12,-18],[-26,33],[13,15],[25,-30]],[[6311,8215],[5,21],[74,-85],[-11,-16],[-68,80]],[[6425,8051],[14,19]],[[6439,8070],[15,-17]],[[6454,8053],[-23,-30]],[[6431,8023],[-8,9],[9,12],[-7,7]],[[6515,8111],[41,53],[2,22],[-12,23],[1,11]],[[6547,8220],[43,14],[17,1],[3,-33],[-5,-60],[12,-2],[5,68],[-2,28],[5,1],[23,-151],[-52,-16],[1,-1]],[[6597,8069],[3,-16],[7,-19]],[[6607,8034],[4,-41]],[[6611,7993],[-58,-72],[-8,10],[22,28],[-21,26],[-25,-32]],[[6521,7953],[-39,49],[-47,-61]],[[6435,7941],[-29,28]],[[6406,7969],[50,64]],[[6456,8033],[7,0],[-4,5]],[[6459,8038],[53,69]],[[6512,8107],[3,4]],[[6501,7927],[27,-34]],[[6528,7893],[-25,-31],[-28,33]],[[6475,7895],[26,32]],[[6160,7614],[0,0]],[[5797,7225],[21,-54]],[[5818,7171],[-26,-14]],[[5792,7157],[-18,62]],[[5774,7219],[23,6]],[[5979,8334],[29,70]],[[6008,8404],[37,-28],[-27,-58],[-20,4],[-19,12]],[[6393,8207],[7,9],[20,-24],[-6,-9],[-21,24]],[[6221,7744],[31,33]],[[6252,7777],[5,-3]],[[6257,7774],[-32,-36]],[[6225,7738],[-4,6]],[[6247,7819],[13,-2],[19,-17],[-16,-22]],[[6263,7778],[-19,16],[-6,13],[9,12]],[[6409,7906],[-10,-13],[-6,7],[-10,-13]],[[6383,7887],[-20,25]],[[6363,7912],[41,54]],[[6404,7966],[30,-27]],[[6434,7939],[-24,-31]],[[6410,7908],[-1,-2]],[[6392,8094],[0,0]],[[6097,7412],[45,21],[5,16],[15,5],[39,23],[15,1]],[[6216,7478],[8,-19],[-117,-72],[-10,25]],[[6294,7653],[-40,50],[9,5],[34,-6]],[[6297,7702],[-9,-27],[11,-14],[-5,-8]],[[6425,7618],[8,23]],[[6433,7641],[3,1]],[[6436,7642],[4,12]],[[6440,7654],[13,-15],[-28,-81],[-17,10]],[[6408,7568],[8,22]],[[6416,7590],[1,3]],[[6417,7593],[8,22]],[[6425,7615],[0,3]],[[6329,8306],[7,33],[33,-39],[-15,-23],[-25,29]],[[6186,8120],[-14,-13],[-10,99],[1,3],[63,13],[-8,-30]],[[6218,8192],[-11,5],[-10,-32],[-16,-28],[5,-17]],[[6166,8358],[-11,15]],[[6155,8373],[14,31],[14,32]],[[6183,8436],[15,-9]],[[6198,8427],[-15,-33],[-17,-36]],[[6185,8372],[0,0]],[[6043,8160],[-24,55],[-26,54],[-21,33]],[[5972,8302],[5,25],[7,-23],[23,-45],[26,-32],[28,-57],[-18,-10]],[[6482,8207],[2,3]],[[6484,8210],[-11,34],[-10,12],[-28,15],[-45,6],[-54,64],[1,7],[70,-34],[29,-16],[81,-51],[-33,-42],[-2,2]],[[6173,8059],[7,-52]],[[6180,8007],[-2,-4],[-41,-55]],[[6137,7948],[-16,9]],[[6121,7957],[29,49],[5,19],[18,34]],[[6079,7862],[-3,26]],[[6076,7888],[20,8]],[[6096,7896],[-17,-34]],[[5844,7824],[37,2],[36,16]],[[5917,7842],[1,-3]],[[5918,7839],[-36,-15],[-38,-2]],[[5844,7822],[0,2]],[[5026,5771],[2,2],[36,-87]],[[5064,5686],[-2,-2],[-36,87]],[[5106,5838],[-20,-16]],[[5086,5822],[-8,21],[19,13],[9,-18]],[[5087,5797],[9,-19],[-7,-7],[-10,20],[-4,9],[14,11],[-2,-14]],[[5174,5793],[-28,-23]],[[5146,5770],[-6,11],[-10,20],[30,21],[9,-17],[5,-12]],[[5163,5828],[27,19]],[[5190,5847],[3,-4]],[[5193,5843],[7,-14],[-27,-21]],[[5173,5808],[-10,20]],[[5271,5868],[-10,23]],[[5261,5891],[27,20],[21,-50],[-13,-15]],[[5296,5846],[-14,27],[-11,-5]],[[5198,5588],[-47,-39]],[[5151,5549],[-4,11],[47,40],[4,-12]],[[5586,5984],[-8,21],[10,5],[10,-14],[-12,-12]],[[5589,5972],[31,-47],[-30,-36],[-34,52],[33,31]],[[5610,5910],[28,-33],[-16,-33]],[[5622,5844],[-31,44],[19,22]],[[5652,5940],[-7,9],[-13,-14],[-14,0]],[[5618,5935],[-3,5],[60,55],[4,-6],[7,-10],[-16,-19],[-18,-20]],[[5815,6117],[-12,-20]],[[5803,6097],[-9,9],[13,19],[-12,13],[5,20],[16,15],[8,9]],[[5824,6182],[20,-9]],[[5844,6173],[-16,-17],[-20,-32],[7,-7]],[[5857,6180],[-6,-9],[-38,17],[8,7]],[[5821,6195],[17,-8],[3,14],[28,28],[5,-10],[-26,-36],[9,-3]],[[5690,6355],[19,-32]],[[5709,6323],[-23,-21],[-18,30],[22,23]],[[5897,6449],[-11,30],[-22,35]],[[5864,6514],[-29,38]],[[5835,6552],[3,2],[-4,4],[-27,-9],[-32,-4],[-9,6],[-23,54],[-4,11]],[[5739,6616],[66,-21],[31,-22],[5,-9]],[[5841,6564],[3,-6],[94,27],[69,-18],[-54,-57],[-1,-6],[-44,-45],[-5,-4],[-6,-6]],[[5230,5547],[13,3]],[[5243,5550],[2,-15],[-14,-2],[-1,14]],[[5409,5677],[22,8]],[[5431,5685],[6,-28],[-22,-9],[-6,29]],[[5673,5802],[61,-6],[59,-4],[22,14],[9,25],[55,191],[16,73],[-2,-36],[3,-94],[-2,-18],[-25,-83],[-8,-19],[-21,-56],[-28,-53],[-31,-31],[-15,-7],[-23,2],[-17,10],[-58,67],[-19,27],[24,-2]],[[5675,5890],[30,-38],[38,38]],[[5743,5890],[59,-92],[-11,-3],[-142,11],[-14,20],[40,64]],[[5891,6096],[-15,-71],[-48,-163],[-12,-46],[-14,-13],[-84,132],[-6,11],[176,271],[18,-48],[-11,-55],[-4,-18]],[[6233,6476],[0,-43]],[[6233,6433],[-7,-4],[4,-49]],[[6230,6380],[-18,-4]],[[6212,6376],[-5,45],[-70,-26]],[[6137,6395],[-10,27],[-25,43],[16,17],[84,82]],[[6202,6564],[26,-90],[5,2]],[[6372,6675],[-1,-32]],[[6371,6643],[-25,-4],[-9,15],[-8,13],[-20,0],[26,24]],[[6335,6691],[11,-19]],[[6346,6672],[1,-3],[17,14],[8,-8]],[[6748,6588],[44,-12],[26,9],[10,12],[-18,33],[-36,22],[-32,-36],[-2,-14],[8,-14]],[[6381,6697],[10,-16],[11,10],[13,-19],[7,2]],[[6422,6674],[3,-21],[-20,-4],[-11,-2],[-2,22],[-12,-6],[-12,23],[13,11]],[[6077,6455],[-6,11],[13,13],[6,-12],[-13,-12]],[[6987,7114],[14,-27],[-15,-17],[-23,26]],[[6963,7096],[24,18]],[[6793,7018],[22,-30]],[[6815,6988],[-20,-18]],[[6795,6970],[-10,-12],[-20,27],[28,33]],[[6901,7079],[-9,10],[-16,-18]],[[6876,7071],[-16,19]],[[6860,7090],[17,17],[-12,14]],[[6865,7121],[18,20],[18,-21],[18,-21],[-14,-15],[-4,-5]],[[6851,7185],[17,16],[15,-18],[-16,-16],[-16,18]],[[6869,7164],[16,16],[15,-16],[-16,-17],[-15,17]],[[6886,7186],[-15,17],[62,55],[21,-46],[-33,-27],[-19,17],[-16,-16]],[[6926,7139],[-9,11],[-28,33],[14,16],[15,-20],[40,29],[6,-16],[14,-38]],[[6978,7154],[-17,11],[-8,3],[-27,-29]],[[5868,6573],[-38,42],[-22,12],[-30,10],[-10,33],[-2,78]],[[5766,6748],[1,6],[42,41],[20,7],[35,-6],[11,-1],[48,14],[27,16],[99,32],[45,15],[15,6],[4,-32],[15,-30]],[[6128,6816],[-10,-8],[13,-37]],[[6131,6771],[1,-2]],[[6132,6769],[1,-31]],[[6133,6738],[0,-3]],[[6133,6735],[-3,-15],[-4,-28],[12,-39]],[[6138,6653],[-24,-16],[-9,-1],[-54,-37],[-36,-25],[-57,13],[-15,4],[-5,1],[-70,-19]],[[5712,6710],[45,33]],[[5757,6743],[1,-51],[-46,18]],[[5604,6865],[34,58],[20,-29]],[[5658,6894],[-18,-22],[-7,-18],[-29,11]],[[5747,7044],[12,-49],[-19,-11],[-14,45]],[[5726,7029],[21,15]],[[5792,6888],[-7,-5]],[[5785,6883],[-27,40],[17,16],[-3,12]],[[5772,6951],[4,3]],[[5776,6954],[16,-66]],[[5913,7148],[88,59]],[[6001,7207],[19,-33]],[[6020,7174],[1,-4],[7,9]],[[6028,7179],[17,-82],[-30,7],[5,-10]],[[6020,7094],[2,-5]],[[6022,7089],[31,-78]],[[6053,7011],[1,-2]],[[6054,7009],[52,-127]],[[6106,6882],[-49,-18]],[[6057,6864],[-44,110],[-6,-5],[-23,67],[-15,-7],[-11,33],[-21,40],[-24,46]],[[6095,6989],[9,10],[16,-2],[8,-19]],[[6128,6978],[-25,-10],[-8,21]],[[6167,6854],[1,-47]],[[6168,6807],[-18,-4]],[[6150,6803],[-8,26],[-13,-10]],[[6129,6819],[-8,17],[46,18]],[[6058,6568],[-8,13]],[[6050,6581],[66,41],[5,-10],[-43,-47],[-20,3]],[[6212,6721],[-1,44],[22,-8],[-12,-39],[-9,3]],[[6237,6860],[16,-17],[-21,-70],[-8,-7]],[[6224,6766],[-6,2]],[[6218,6768],[0,78],[19,14]],[[6201,7285],[-31,-25],[-25,43],[33,26],[23,-44]],[[6204,6868],[2,0],[1,-100],[-2,0],[-1,100]],[[6229,6674],[-7,-5],[-7,30]],[[6215,6699],[14,-25]],[[5545,6888],[26,-20],[-30,-46],[-18,-22],[-18,12],[40,76]],[[6096,7271],[41,30],[24,-40]],[[6161,7261],[-28,-24]],[[6133,7237],[-19,-6],[-20,33]],[[6094,7264],[2,7]],[[6254,7384],[28,17],[48,15],[29,1],[72,-2],[14,3],[45,22],[-11,-34],[-24,-4],[-133,-15],[-48,-40]],[[6274,7347],[-20,37]],[[5779,6792],[7,-14],[-19,-20],[-39,-31],[-28,-20],[-34,66],[-22,72],[-9,8],[9,21],[24,25]],[[5668,6899],[40,-62],[13,29]],[[5721,6866],[12,-20],[6,-7],[20,-59],[20,12]],[[6833,7344],[11,11],[-23,29]],[[6821,7384],[2,15],[40,-12],[18,-23],[-37,-38],[-11,18]],[[6540,7296],[-12,4],[12,52],[33,-40],[25,-9],[-25,-40],[-33,33]],[[6602,7311],[-22,0],[-24,23],[-4,12],[50,-35]],[[6592,7323],[-51,32],[4,18],[55,-30],[15,-13],[-11,-17],[-12,10]],[[6640,7296],[-34,9],[14,19],[20,-28]],[[6640,7313],[-29,32],[18,13],[21,-35],[-10,-10]],[[6631,7360],[14,13],[21,-34],[-14,-14],[-21,35]],[[6664,7282],[-21,27],[10,10],[18,-30],[-7,-7]],[[6670,7334],[17,-29],[-14,-14],[-18,29],[15,14]],[[6682,7256],[-16,23],[23,22],[15,-24],[-22,-21]],[[6729,7302],[-21,-21],[-23,38],[21,21],[23,-38]],[[6673,7338],[22,21],[10,-16],[-22,-21],[-10,16]],[[6747,7319],[-15,-15],[-34,57],[16,16],[33,-58]],[[6717,7380],[21,12],[31,-51],[-18,-18],[-34,57]],[[6691,7238],[-7,12],[23,22],[8,-14],[-24,-20]],[[6732,7225],[-24,-20],[-15,29],[24,20],[15,-29]],[[6777,7263],[-41,-35],[-25,48],[39,40],[27,-53]],[[6805,7287],[-24,-22],[-27,53],[18,18],[33,-49]],[[6819,7301],[-13,20],[-11,-11]],[[6795,7310],[-19,29],[34,34],[3,-4],[12,-19],[5,-9],[11,-17],[-15,-15],[-7,-8]],[[6625,7406],[19,-30],[-35,-29],[-19,13],[2,36],[2,30],[31,-3],[0,-17]],[[6248,7142],[-17,5],[5,20],[12,-25]],[[6339,6839],[-15,23],[45,45],[15,-25],[-45,-43]],[[6533,7165],[32,-54],[-20,-20],[-41,72],[48,44],[10,-16],[-29,-26]],[[6675,7247],[12,-24],[-17,-15],[-13,24],[18,15]],[[6500,7306],[-51,-47],[-8,13],[14,43],[26,80],[36,-12],[-17,-77]],[[6470,7222],[-18,32],[33,30],[18,-32],[-33,-30]],[[6523,7216],[-32,-30],[-19,32],[33,30],[18,-32]],[[6493,7182],[49,44],[9,-17],[-48,-44],[-10,17]],[[6564,7186],[14,-25],[-24,-22],[-14,25],[24,22]],[[6584,7236],[9,-16],[-27,-25],[-9,16],[27,25]],[[6600,7219],[21,20],[15,-25],[-22,-20],[-14,25]],[[6617,7189],[21,20],[12,-20],[-22,-20],[-11,20]],[[6660,7272],[12,-21],[-35,-31],[-12,22],[35,30]],[[6656,7188],[16,14],[15,-28],[-15,-14],[-16,28]],[[6697,7116],[-23,39],[16,15],[22,-39],[-15,-15]],[[6710,7200],[37,31],[24,-47],[-35,-33],[-26,49]],[[6630,7253],[-33,-30],[-21,34],[18,28],[11,-19],[-12,-19],[26,26],[11,-20]],[[6635,7292],[-16,-14],[-13,23],[29,-9]],[[6252,7128],[1,6],[51,-8],[1,-65],[-58,-11],[5,78]],[[6298,7187],[-2,-54]],[[6296,7133],[-42,7],[-10,27],[26,38],[15,-16],[13,-2]],[[6297,7246],[17,-19],[-15,-39]],[[6299,7188],[-14,2],[-15,16],[27,40]],[[6252,7008],[-5,34],[55,13],[9,1],[15,4],[44,207],[50,48],[-5,76],[61,4],[-40,-124],[105,-184],[-10,-10],[-8,-8],[-157,-152],[-48,-48],[-45,68],[-11,50],[-10,21]],[[6675,7205],[14,13],[15,-29],[-13,-12],[-16,28]],[[6707,7185],[21,-40],[-12,-11],[-22,39],[13,12]],[[6652,7184],[41,-71],[-22,-20],[-40,71],[21,20]],[[6617,7277],[-10,-10],[-12,20],[8,14],[14,-24]],[[6632,7255],[-11,19],[21,19],[14,-16],[-24,-22]],[[6529,7436],[-10,-44],[-35,13],[11,35],[34,-4]],[[6500,7298],[18,-31],[-12,-11],[-18,31],[12,11]],[[6541,7288],[-18,-17],[-17,28],[35,-11]],[[6521,7262],[18,-32],[-12,-11],[-18,32],[12,11]],[[6570,7259],[-27,-24],[-18,31],[20,18],[25,-25]],[[6525,7301],[-22,4],[13,56],[21,-8],[-12,-52]],[[6517,7364],[4,18],[21,-8],[-5,-18],[-20,8]],[[6523,7390],[4,16],[20,-7],[-4,-16],[-20,7]],[[6547,7382],[4,15],[34,-12],[-4,-20],[-34,17]],[[6527,7409],[7,27],[54,-9],[-3,-39],[-58,21]],[[6731,7407],[-1,-6],[-28,-27],[-32,-31],[-20,32],[-5,9],[-16,26],[1,12],[22,0],[66,-9],[13,-6]],[[6808,7379],[-35,-35],[-34,55],[1,9],[78,-9],[-10,-20]],[[6668,7090],[-29,-28],[-85,17],[-4,4],[77,78],[41,-71]],[[6596,7448],[25,-3],[72,-8]],[[6693,7437],[100,-13]],[[6793,7424],[67,-8]],[[6860,7416],[5,-10],[-69,8],[-8,-2],[-51,9],[-141,17],[0,10]],[[6547,7487],[0,-17]],[[6547,7470],[0,-13],[46,-8]],[[6593,7449],[-1,-10],[-83,9],[-2,11],[9,14],[14,33],[8,28],[7,0]],[[6545,7534],[2,-47]],[[6577,7493],[0,43]],[[6577,7536],[18,0],[0,-44],[-18,1]],[[6658,7564],[-14,0],[-4,17]],[[6640,7581],[0,1]],[[6640,7582],[-12,51],[17,6]],[[6645,7639],[13,-75]],[[6850,8052],[23,-35],[-9,-8],[-19,29],[5,14]],[[6959,7571],[42,23]],[[7001,7594],[2,-15],[-35,-21],[-9,13]],[[6762,7661],[44,2]],[[6806,7663],[-22,-22],[-22,20]],[[6911,7780],[-15,-10],[-6,22],[-8,-3]],[[6882,7789],[-9,41],[23,8]],[[6896,7838],[15,-58]],[[6949,7858],[7,-38]],[[6956,7820],[-18,-21],[-9,52],[20,7]],[[6729,7839],[69,2]],[[6798,7841],[3,-26]],[[6801,7815],[-67,-3]],[[6734,7812],[-2,0]],[[6732,7812],[-36,0]],[[6696,7812],[-4,25]],[[6692,7837],[35,1]],[[6727,7838],[2,1]],[[6781,8292],[-16,15]],[[6781,8292],[0,0]],[[6766,8245],[31,-38],[-15,2],[-9,15],[-4,5]],[[6769,8229],[-7,11]],[[6762,8240],[-2,3]],[[6760,8243],[-14,21]],[[6746,8264],[-2,3]],[[6744,8267],[-12,16]],[[6732,8283],[5,4]],[[6737,8287],[11,-18]],[[6748,8269],[2,-2]],[[6750,8267],[16,-22]],[[6972,7933],[13,-27]],[[6985,7906],[1,-2],[7,-20],[-8,-4]],[[6985,7880],[-7,20]],[[6978,7900],[-1,3]],[[6977,7903],[-15,34]],[[6962,7937],[-2,3],[-36,12],[10,26],[-1,12],[-58,87],[-16,3],[6,15],[4,14],[3,9],[34,-55],[-3,-4],[-2,-14],[1,-1],[7,6],[3,4],[46,-76],[16,-17],[-3,-25],[1,-3]],[[7025,7916],[-19,-39],[-8,8],[27,31]],[[7026,7790],[17,-61]],[[7043,7729],[-9,-10]],[[7034,7719],[-17,63]],[[7017,7782],[-2,5]],[[7015,7787],[-21,72]],[[6994,7859],[-2,3]],[[6992,7862],[-4,11]],[[6988,7873],[7,7],[43,-24],[17,-40],[-31,-19],[2,-7]],[[7092,7985],[-5,-2],[-14,11],[0,15],[3,7],[11,18],[12,-34],[-7,-15]],[[7087,8044],[-24,44],[27,-20],[19,4],[-22,-28]],[[7115,8071],[12,12],[-17,-31],[-3,-26],[5,-30],[-22,43],[25,32]],[[7095,7985],[4,28],[26,-48],[-25,15],[-5,5]],[[6833,8203],[-10,-32],[7,-11]],[[6830,8160],[3,-3]],[[6833,8157],[12,-17]],[[6845,8140],[3,-4]],[[6848,8136],[18,-26]],[[6866,8110],[-4,-11]],[[6862,8099],[-13,19]],[[6849,8118],[-30,41]],[[6819,8159],[-7,-24]],[[6812,8135],[-2,-9]],[[6810,8126],[-13,-43],[-4,-13]],[[6793,8070],[-25,0],[5,28],[4,27]],[[6777,8125],[8,29]],[[6785,8154],[0,3]],[[6785,8157],[10,35],[-8,11]],[[6787,8203],[13,1],[33,-1]],[[6834,8208],[-35,-1]],[[6799,8207],[7,28]],[[6806,8235],[8,24],[27,-28]],[[6841,8231],[-7,-23]],[[6762,8065],[27,1],[-13,-49],[-14,48]],[[6685,8191],[3,-18],[-48,-10]],[[6640,8163],[-2,14],[47,14]],[[6743,8022],[1,-12]],[[6744,8010],[-35,-3],[-7,43],[19,5],[6,-38],[16,5]],[[7309,7695],[2,19],[-6,20],[14,11],[8,-16],[10,4]],[[7337,7733],[5,-15],[-11,-32],[-22,9]],[[6643,7847],[-12,-10]],[[6631,7837],[-18,-4]],[[6613,7833],[-8,31],[0,19],[7,8]],[[6612,7891],[-3,-24],[8,-2],[5,51],[0,39]],[[6622,7955],[21,2]],[[6643,7957],[3,0]],[[6646,7957],[21,3]],[[6667,7960],[6,-43],[6,-38]],[[6679,7879],[-37,-4],[1,-28]],[[6864,7962],[1,-21],[-77,-13],[-4,27],[34,14],[46,-7]],[[6733,7762],[40,1]],[[6773,7763],[2,-26],[-29,-1],[-13,26]],[[6880,7886],[-25,-5],[-20,3]],[[6835,7884],[-6,48],[19,4],[19,4],[12,-46],[1,-8]],[[6876,8140],[12,-6]],[[6888,8134],[-6,-25]],[[6882,8109],[-8,13],[2,18]],[[7003,8045],[-1,-3],[6,-4],[-12,-34]],[[6996,8004],[-5,3],[-2,-7]],[[6989,8000],[-17,12],[-41,71]],[[6931,8083],[54,-28],[7,44]],[[6992,8099],[25,-15],[-18,-37],[4,-2]],[[6683,7594],[16,4]],[[6699,7598],[3,-14],[-18,-3],[-1,13]],[[6726,7710],[-45,-5]],[[6681,7705],[-2,11]],[[6679,7716],[28,26],[19,-32]],[[6732,7634],[34,14],[9,-15],[2,-19],[-42,-6]],[[6735,7608],[-3,26]],[[6999,7927],[-25,8],[6,22],[25,-15],[-6,-15]],[[6715,8272],[0,-23]],[[6715,8249],[0,-4]],[[6715,8245],[0,-41]],[[6715,8204],[-29,-9]],[[6686,8195],[-5,62]],[[6681,8257],[34,15]],[[7273,7871],[-5,3]],[[7268,7874],[-23,6],[-11,-26]],[[7234,7854],[-7,-24]],[[7227,7830],[-5,7],[-12,-21],[-2,-16]],[[7208,7800],[-20,54],[-30,61],[6,23],[20,23],[47,-26],[-7,-34],[11,32],[7,0],[37,-20],[-4,-22]],[[7275,7891],[-1,-2],[27,-6],[5,15]],[[7306,7898],[2,7]],[[7308,7905],[7,24]],[[7315,7929],[59,-30],[0,-32],[-14,-67]],[[7360,7800],[-11,5],[-19,31],[-23,-19],[3,-12]],[[7310,7805],[-3,-3]],[[7307,7802],[-14,1],[-14,-10]],[[7279,7793],[-1,0],[2,-11]],[[7280,7782],[-42,-15]],[[7238,7767],[-4,11]],[[7234,7778],[8,11],[27,7],[-3,13]],[[7266,7809],[0,1],[22,59],[-15,2]],[[6976,8132],[-2,-20]],[[6974,8112],[-13,3],[3,22],[12,-5]],[[7056,7865],[-41,21]],[[7015,7886],[26,61],[11,31],[17,-10],[-10,-29],[32,-16],[-19,-53],[-16,-5]],[[7172,8078],[-1,-3]],[[7171,8075],[-12,-24],[15,-7]],[[7174,8044],[1,0]],[[7175,8044],[30,-14]],[[7205,8030],[-26,-70],[-11,-14],[-19,-12],[-32,56],[-7,18],[-1,29],[12,32],[28,35],[14,15]],[[7163,8119],[20,-24],[-11,-17]],[[7207,8029],[12,4],[24,-62],[-10,-30],[-47,25],[21,63]],[[7261,7956],[-8,-22],[-15,8],[7,22],[16,-8]],[[6996,8000],[14,39],[25,-15],[-17,-47]],[[7018,7977],[-22,23]],[[6851,7619],[-2,19],[29,7]],[[6878,7645],[9,-32],[-34,-6],[-2,12]],[[7260,7709],[35,16],[4,-12]],[[7299,7713],[-39,-4]],[[6845,8037],[19,-29],[-32,-34],[-9,-2],[22,65]],[[7359,8001],[-6,15],[-31,13]],[[7322,8029],[5,18],[20,-1],[23,-16],[-11,-29]],[[7249,8092],[24,-1],[-1,-33]],[[7272,8058],[-27,10],[4,24]],[[7145,8159],[12,-18],[-31,16],[1,8],[18,-6]],[[7179,8154],[-24,17],[-6,16],[-18,10],[5,22]],[[7136,8219],[64,-33],[-21,-32]],[[6997,8184],[-12,15],[26,-4],[-1,-13],[-13,2]],[[7390,7797],[59,10]],[[7449,7807],[-25,-21],[-41,-2]],[[7383,7784],[7,13]],[[7537,7921],[32,39],[3,-10]],[[7572,7950],[-29,-37],[-6,8]],[[6907,8309],[67,-108],[-2,-5],[-34,24],[-13,8],[8,16],[3,16],[-15,18],[-5,10],[-44,29],[-2,34],[37,-42]],[[7399,7901],[7,-20],[-20,-46],[-2,-13]],[[7384,7822],[-12,6],[7,68],[20,5]],[[7127,8274],[90,-12],[18,1],[6,-22],[-40,-53],[-76,40],[2,46]],[[7110,8192],[-93,16],[0,-10]],[[7017,8198],[-36,6],[-15,20],[-37,64],[41,42],[49,-82],[109,103],[-5,-116],[-13,-43]],[[6916,8540],[-13,-58],[-24,-50],[23,-18],[29,-29],[35,-48],[-41,-40],[-28,35],[-27,27],[-1,53],[8,79],[18,52],[21,-3]],[[6988,8526],[-10,-60],[-10,-24],[-36,-50],[-46,43],[22,43],[13,61],[67,-13]],[[6993,8525],[74,-13],[-14,-78],[-15,-30],[-68,-64],[-34,48],[35,50],[11,27],[11,60]],[[7161,8498],[-19,-110],[-15,-31],[-107,-101],[-46,78],[68,64],[17,35],[14,78],[88,-13]],[[7243,8436],[7,-10],[-6,-14]],[[7244,8412],[-2,-3]],[[7242,8409],[-2,-3],[-3,-86]],[[7237,8320],[-1,-4]],[[7236,8316],[0,-13]],[[7236,8303],[0,-4]],[[7236,8299],[0,-33]],[[7236,8266],[-16,-3],[-93,12],[3,78],[14,22],[8,39],[14,83],[77,-13],[0,-48]],[[5991,5869],[-12,-27],[-8,20],[20,7]],[[6052,6120],[55,-71]],[[6107,6049],[-19,-26],[-45,26],[9,71]],[[6290,5959],[-40,-31],[-23,-33],[-27,-61],[-17,12],[32,75],[-9,5]],[[6206,5926],[1,2],[-3,1]],[[6204,5929],[-31,14],[-17,0],[-12,-5]],[[6144,5938],[-6,25],[3,23],[1,5],[-48,28],[120,156],[5,1],[10,-30]],[[6229,6146],[-8,-4],[-31,-40],[21,-66],[46,22]],[[6257,6058],[20,-58],[3,-10],[10,-31]],[[6174,6135],[-16,12],[47,63],[4,-31],[-35,-44]],[[6147,6345],[23,-31]],[[6170,6314],[-13,-19],[-15,-31],[-29,25],[22,36],[12,20]],[[6288,6299],[-29,3],[32,11],[-3,-14]],[[6291,6295],[16,1],[10,-31],[-32,-8],[6,38]],[[6341,6310],[-33,-9],[-6,13],[39,-4]],[[6383,6330],[-11,28],[23,15]],[[6395,6373],[11,-28],[-23,-15]],[[6673,6422],[-34,-16],[-7,28],[41,-12]],[[6464,6481],[-15,43],[23,14],[12,-34],[-20,-23]],[[6506,6536],[-20,-28],[-12,31],[24,16],[8,-19]],[[6447,6529],[-5,18],[22,11],[5,-16],[-22,-13]],[[7148,6459],[-5,-3],[-25,33]],[[7118,6489],[10,11],[17,15],[8,-14],[15,-32],[-20,-10]],[[7264,6269],[24,-4],[42,0],[-6,8]],[[7324,6273],[6,39]],[[7330,6312],[2,4],[4,19],[43,-13],[43,1],[1,-31],[3,0]],[[7426,6292],[17,-8],[21,-21],[16,-7]],[[7480,6256],[13,-3],[52,-39],[4,-2],[90,-14],[12,1],[26,2],[17,7],[14,22]],[[7708,6230],[33,-44],[30,-5],[2,21]],[[7773,6202],[11,4]],[[7784,6206],[22,-14]],[[7806,6192],[-2,-12],[3,1]],[[7807,6181],[47,-10],[0,-6],[54,-16]],[[7908,6149],[110,-17],[66,-9],[93,-6],[19,4],[28,12],[46,38],[59,20],[84,26],[80,24],[4,-4],[0,5],[85,27],[81,28],[-2,-85],[-2,-111],[2,0],[2,111],[1,86],[84,29],[115,38],[2,-3],[-20,-126],[-1,-12],[19,-21],[27,-61],[14,-37],[5,-13],[3,3],[4,37],[1,8],[2,11],[23,130],[5,11],[26,-13],[24,-7],[35,-14],[20,-3],[9,-2],[27,-21],[27,-6],[22,2],[24,-10],[18,-8],[31,6]],[[9210,6216],[31,4]],[[9241,6220],[5,1],[46,4],[10,4],[-7,72],[67,-20],[7,18]],[[9369,6299],[32,57]],[[9401,6356],[5,7]],[[9406,6363],[30,31],[19,20],[-2,5]],[[9453,6419],[45,30],[42,21],[38,12],[26,3],[80,-1],[-1,-9],[35,-2],[34,-6],[-4,-99],[-80,56],[-66,45],[-14,4],[-2,0],[17,-7],[65,-44],[80,-55],[-3,-103],[-2,-68],[-5,-137],[-2,-92],[-31,-3],[-21,15],[-31,-2],[-53,0],[-31,-9],[-6,-13],[-19,1],[-26,17],[-52,0],[-58,-58],[-60,-59],[-27,15],[-82,46],[-84,48],[-80,47],[-71,41],[-43,29],[13,1],[-66,2],[-1,-4],[-41,1],[-44,4],[-14,-24],[-17,-38],[-30,-23],[-19,-26],[-30,-28],[-37,-37],[-18,-24],[1,64],[2,143],[-3,-143],[-1,-65],[-14,-18],[-28,-57],[-34,-64],[-10,-14],[-45,-43],[-38,27],[-83,63],[-54,41],[-28,21],[-82,63],[-87,67],[-87,65]],[[8066,6036],[17,36],[-6,5]],[[8077,6077],[1,19]],[[8078,6096],[0,2]],[[8078,6098],[1,14],[-87,8]],[[7992,6120],[-27,4]],[[7965,6124],[-41,8]],[[7924,6132],[-18,6],[-1,-53],[0,-40],[-23,-2],[-10,10],[-13,19],[-26,27],[-28,25],[-40,42],[-63,13],[0,-3],[64,-13]],[[7766,6163],[-11,-11],[20,-30],[40,-25],[17,-16],[9,9]],[[7841,6090],[1,-1],[8,-9]],[[7850,6080],[-4,-6],[9,-15],[-16,-9],[8,-7],[5,-43],[21,1],[-6,-30],[-5,-6],[-11,15],[-30,6]],[[7821,5986],[1,28],[-9,8],[12,9],[-5,10],[8,13],[-6,24],[-7,4],[-22,-16],[-1,-17],[-10,-5],[-54,36],[-30,26],[-38,54],[-3,16],[-10,10],[-31,-18],[-4,-6],[14,-38],[21,-23],[9,7],[24,-9],[1,-14],[32,-20],[18,-20],[14,-4],[-1,-12],[10,-16],[7,13],[17,-17],[1,-13],[13,2],[12,-28],[-14,-31],[5,-52],[10,-15]],[[7805,5872],[7,-14],[-8,-44],[-13,3],[5,38],[-13,78],[9,46],[-43,33],[-12,13],[-79,57],[-4,-133],[-2,-82],[-30,39],[-88,113],[-81,80]],[[7453,6099],[0,19],[2,54]],[[7455,6172],[0,2]],[[7455,6174],[1,21],[-56,11],[-62,11]],[[7338,6217],[-11,6],[-50,18],[-32,7],[-19,9],[-63,-12],[-43,-16],[3,13]],[[7123,6242],[51,17],[-3,18],[-6,42],[-12,16]],[[7153,6335],[1,2]],[[7154,6337],[12,-12],[4,-27],[38,10]],[[7208,6308],[11,-41],[6,-2],[0,1],[-3,8],[41,-8],[1,3]],[[7550,6201],[25,-2],[21,-3],[1,4],[-49,9],[-1,-6],[3,-2]],[[7266,6594],[0,1]],[[7266,6595],[11,4],[14,43]],[[7291,6642],[1,2]],[[7292,6644],[4,14],[-15,21]],[[7281,6679],[1,1]],[[7282,6680],[23,-27],[8,1],[2,11],[-18,18],[1,15]],[[7298,6698],[50,13],[18,-30],[1,-3]],[[7367,6678],[-5,-5]],[[7362,6673],[-1,-1]],[[7361,6672],[-31,-19],[-1,-9],[14,-13],[6,8],[15,-24]],[[7364,6615],[6,-11],[3,-30],[19,-32]],[[7392,6542],[10,-11],[28,-10],[2,21],[14,-3],[4,17],[20,-9],[3,7]],[[7473,6554],[8,-4],[-4,-28],[-4,-15],[-7,-29],[-9,-41],[-16,11],[-72,12],[-13,-1]],[[7356,6459],[13,68],[-7,20]],[[7362,6547],[-29,51],[-15,8],[-16,-8],[-8,-18],[-1,-1],[12,-12],[-1,-26]],[[7304,6541],[-3,-10],[-33,-25],[-37,-22],[-13,6],[-1,-12]],[[7217,6478],[-20,8],[-12,-14]],[[7185,6472],[-9,-8],[-19,54],[11,19],[19,23],[11,24],[5,10],[12,21],[24,-2]],[[7239,6613],[-2,-24],[29,5]],[[7398,6328],[2,36],[-34,-1],[-48,8],[-18,7]],[[7300,6378],[-36,22],[-7,0]],[[7257,6400],[-6,2],[-25,32],[-7,16]],[[7219,6450],[10,1],[34,-46],[1,2]],[[7264,6407],[10,6],[10,15],[10,35]],[[7294,6463],[45,-10],[-7,-37],[1,-18],[11,-18],[18,-8],[44,-1],[13,-12],[8,-15],[0,19],[-4,37],[-12,24],[-3,25],[30,-6],[16,-19],[-6,-43],[-6,-16],[-12,-31],[-32,-6]],[[7472,6375],[-16,-16]],[[7456,6359],[-9,3]],[[7447,6362],[8,16],[17,-3]],[[7960,6487],[-14,0],[-1,-20],[-13,4],[2,34],[-5,0]],[[7929,6505],[-18,6],[-19,6],[-39,28],[-27,-16]],[[7826,6529],[-51,-13],[-33,-23]],[[7742,6493],[-20,-4],[-30,-16],[-37,-1],[3,-9],[-17,-11],[6,-18]],[[7647,6434],[-15,-6]],[[7632,6428],[-6,14],[-12,-2],[-2,9],[-19,-3]],[[7593,6446],[-37,7]],[[7556,6453],[-7,5],[-43,0]],[[7506,6458],[-18,5],[-9,-11],[-4,-29]],[[7475,6423],[1,-3]],[[7476,6420],[7,-23],[-4,-13]],[[7479,6384],[0,1],[-13,10],[-1,25],[10,0],[-1,3]],[[7474,6423],[7,45],[-8,8]],[[7473,6476],[6,27],[2,8]],[[7481,6511],[29,-9],[4,-12],[14,-5],[22,4]],[[7550,6489],[48,-8]],[[7598,6481],[2,1],[-13,14],[-7,18],[4,56],[20,13],[21,10]],[[7625,6593],[3,-19],[27,7],[-1,19]],[[7654,6600],[-4,59],[1,20],[-47,16],[1,10],[53,-21],[72,-26],[85,-32],[54,-21],[2,0],[58,-22],[-52,23],[-62,23],[-86,33],[-36,13],[-32,13],[1,8],[32,-12],[2,10],[7,57],[-18,3]],[[7685,6754],[2,17],[-18,4],[3,16]],[[7672,6791],[43,-12],[30,-6],[88,-19],[33,-6],[40,3],[1,3],[-33,1],[-7,-6],[-34,10],[-87,17],[-80,18],[-33,6]],[[7633,6800],[2,21],[-43,8]],[[7592,6829],[-10,34],[99,50],[2,0],[86,43],[97,46],[19,11],[23,18],[36,30],[7,7],[45,39],[22,15],[7,-84],[3,-21],[-2,23],[-7,84],[23,9],[75,11],[24,4],[83,13],[76,11],[1,-10],[4,-44],[7,-63],[4,-19],[-6,55],[-3,26],[-6,56],[70,8],[22,7],[19,11],[63,50],[37,24],[6,-70],[9,-95],[8,-86],[0,-3],[16,-21],[19,-8],[28,-20],[39,-58],[5,-61],[2,-3],[37,-27],[14,-15],[5,-18],[-5,-34],[21,-18],[13,-4],[32,-5]],[[8761,6727],[6,-24],[31,49]],[[8798,6752],[0,2]],[[8798,6754],[9,18],[-40,9],[-35,-20],[2,-7]],[[8734,6754],[0,-19],[-16,3],[-21,18],[5,31],[-7,22],[-13,15],[-37,25],[-6,64],[-39,58],[-27,20],[-20,9],[-17,22],[-7,86],[-15,167]],[[8514,7275],[33,-47]],[[8547,7228],[4,-5],[50,-13]],[[8601,7210],[3,-1]],[[8604,7209],[13,-5],[11,-32],[0,-32],[12,-1]],[[8640,7139],[-1,-34]],[[8639,7105],[-14,-11],[7,-30],[16,-26],[2,-5]],[[8650,7033],[1,-1]],[[8651,7032],[14,-27],[13,11]],[[8678,7016],[57,43],[14,-38],[18,-24]],[[8767,6997],[-73,-56],[4,-4],[10,-14],[8,-17],[3,-28],[3,0],[86,61]],[[8808,6939],[14,-21],[14,10],[42,30],[18,-58],[2,-13],[-6,-47],[1,-20]],[[8893,6820],[-35,-15],[11,-8],[23,4],[5,21],[-4,-2]],[[8893,6820],[6,67],[-18,70],[66,-36],[35,-27],[12,-1]],[[8994,6893],[-5,-3],[-8,-43],[-28,-20],[4,-31]],[[8957,6796],[-1,-1],[1,-1],[1,1]],[[8958,6795],[12,-30],[3,-1]],[[8973,6764],[2,-3]],[[8975,6761],[15,-12],[18,-5]],[[9008,6744],[1,0]],[[9009,6744],[10,-2],[13,20]],[[9032,6762],[1,-1]],[[9033,6761],[-7,-20],[10,4]],[[9036,6745],[1,1]],[[9037,6746],[16,-2]],[[9053,6744],[2,0]],[[9055,6744],[24,-2],[17,7],[13,4],[-10,29],[-8,-5],[-14,34],[-29,-4],[-20,68],[-9,-2],[-8,25]],[[9011,6898],[45,12],[11,4],[26,10],[20,-6],[10,-13],[22,3],[14,26],[14,-32],[17,15],[16,3],[4,10]],[[9210,6930],[11,-58],[-9,-3],[3,-21],[-52,3],[2,-21],[4,-23],[14,12],[22,-6],[44,2],[6,25],[22,-3],[1,-22],[47,-15],[-1,11],[-18,10],[-15,20],[-1,37],[-6,1]],[[9284,6879],[0,3]],[[9284,6882],[1,22]],[[9285,6904],[29,-18],[14,-15],[29,-8],[28,-22],[-27,24],[-29,7],[-12,13],[-32,22],[-37,17],[-3,3],[-21,13],[-16,26],[-45,181],[-58,48],[-69,58],[-70,58],[-70,58],[-24,21],[-56,117],[4,0],[98,-37],[25,-10],[25,-20],[24,-6],[47,17],[43,14],[69,8],[54,7],[62,26],[51,22],[6,3],[28,12]],[[9352,7543],[12,-26],[12,10],[-11,20]],[[9365,7547],[11,3],[11,5],[1,0],[30,29],[46,53],[3,3],[4,8],[13,-11],[4,-29],[21,-31],[13,-3],[16,21],[19,1],[15,-13],[41,16],[21,-17],[1,-1],[7,-8],[8,-29],[10,3],[12,-10],[5,-15],[24,8],[5,-15],[15,13],[10,-11],[25,-50],[0,-13],[14,-17],[-10,-41],[4,-50],[6,-34],[28,-25],[11,-17],[1,-3],[-37,-69],[-47,-23],[-13,-36],[-71,-103],[-5,-16],[3,-45],[7,-47],[-2,-18],[-7,-22],[65,-204],[2,-7],[28,1],[1,-7]],[[9734,6671],[-21,-1],[6,-19],[8,-1],[4,-33]],[[9731,6617],[-72,-17],[-15,62]],[[9644,6662],[23,8],[3,14],[-31,26],[-30,15],[-35,13],[-17,21]],[[9557,6759],[-3,9]],[[9554,6768],[-9,20],[-11,46],[1,25],[12,47],[-21,7],[-22,-1]],[[9504,6912],[-2,7]],[[9502,6919],[25,0]],[[9527,6919],[3,0]],[[9530,6919],[22,-5],[12,44],[20,34],[-2,15],[-12,8]],[[9570,7015],[-4,0]],[[9566,7015],[-15,-1],[-20,-26],[-21,-3],[-16,-16],[-15,-51],[-8,-12],[29,12]],[[9500,6918],[1,-7]],[[9501,6911],[-38,-21]],[[9463,6890],[-2,-3]],[[9461,6887],[-32,-32]],[[9429,6855],[-3,-4]],[[9426,6851],[-27,-36],[-13,-17],[-29,-19],[-29,10],[-19,-27]],[[9309,6762],[-3,4]],[[9306,6766],[14,27],[-53,13],[-45,-5],[-41,1],[-21,-13]],[[9160,6789],[-2,-4],[16,-61],[0,-24],[0,-3]],[[9174,6697],[-41,-1],[-12,4]],[[9121,6700],[1,2],[-2,1],[-1,-3]],[[9119,6700],[-21,7],[-5,14],[-15,9],[-22,2]],[[9056,6732],[-1,-1]],[[9055,6731],[-19,1],[-22,-15]],[[9014,6717],[-1,-2]],[[9013,6715],[-11,-12],[-3,14],[-10,1],[-16,30]],[[8973,6748],[-3,4]],[[8970,6752],[-26,27],[-9,-10],[-21,-72],[12,-10]],[[8926,6687],[-11,8],[-11,-30],[3,-22],[-3,-20]],[[8904,6623],[-1,-4]],[[8903,6619],[-22,-21]],[[8881,6598],[-25,-9],[-10,6],[-12,-8]],[[8834,6587],[-12,-10],[-8,-9],[-7,23],[-8,-2],[-1,-2],[3,-12],[-10,-16],[11,-18]],[[8802,6541],[-1,-2]],[[8801,6539],[-12,19],[-10,-27],[11,-10],[32,-5],[12,-5],[-1,-24],[-14,-28],[12,-11]],[[8831,6448],[2,-2]],[[8833,6446],[19,-22],[12,23],[5,-5]],[[8869,6442],[12,-26],[-13,-14],[-9,11],[-7,-17],[17,-16]],[[8869,6380],[-26,-17],[-52,-15],[-42,-17]],[[8749,6331],[4,24],[14,-7],[-1,25],[-10,13],[-39,-43],[-53,-40]],[[8664,6303],[-38,-14],[-68,-23],[-39,-12],[-22,2],[-82,15],[-82,15]],[[8333,6286],[3,19],[2,14],[-45,12],[-21,18],[2,9],[-15,15],[-59,37],[-8,1],[-48,3]],[[8144,6414],[-19,-1],[-28,10],[-30,19],[-13,16],[-25,43],[-24,-17]],[[8005,6484],[0,12]],[[8005,6496],[3,16],[-30,-1],[-6,11],[-13,-16],[1,-19]],[[8882,6769],[-5,-31],[8,21],[12,1],[5,-12],[1,0],[0,1],[-1,0],[-5,14],[-13,4],[-2,2]],[[8132,7045],[0,24],[-10,0],[-3,37],[-26,-4],[-21,12],[-8,-23],[22,-7],[-5,-23],[18,-7],[1,-3],[32,-6]],[[7341,6453],[34,2],[32,-6],[1,-24],[12,-23],[4,-39],[-19,10],[-44,1],[-16,7],[-11,19],[0,29],[7,24]],[[6941,6502],[19,-1],[30,-10],[12,-10],[33,3]],[[7035,6484],[26,36],[14,29],[23,31],[-10,9]],[[7088,6589],[4,18]],[[7092,6607],[3,1]],[[7095,6608],[20,6],[-1,9]],[[7114,6623],[6,3],[-15,68],[-6,-2]],[[7099,6692],[-4,21],[23,7],[3,-13]],[[7121,6707],[-7,-2],[17,-79],[6,2]],[[7137,6628],[3,-15],[3,0]],[[7143,6613],[16,12],[-9,89],[1,9]],[[7151,6723],[32,-3]],[[7183,6720],[7,-8],[5,-48],[9,-45],[-5,-22]],[[7199,6597],[-4,-10]],[[7195,6587],[-32,-25],[-22,-3]],[[7141,6559],[-4,-1]],[[7137,6558],[-14,-4],[-23,-23],[-23,-45],[-24,-30],[15,-18]],[[7068,6438],[-18,-24],[-1,-1],[-12,-11],[-29,-10],[-36,10],[-46,26],[9,40],[6,34]],[[7009,6829],[8,-3],[0,-39],[-8,42]],[[7080,6895],[16,30],[14,-30],[18,-36],[-7,-14],[-12,-65],[-13,-24],[-15,6]],[[7081,6762],[-21,19],[-9,20]],[[7051,6801],[24,48]],[[7075,6849],[18,25],[-13,21]],[[7226,6955],[23,-6],[-9,-16],[-16,3],[2,19]],[[6963,6603],[-2,-3],[24,1]],[[6985,6601],[-4,-22],[31,-11],[2,8]],[[7014,6576],[0,-39],[-39,8],[-10,-29],[-12,-2],[-3,22],[-7,-22],[17,85],[5,18],[18,81],[37,7],[10,-3],[-9,-15],[-7,-18]],[[7014,6669],[-14,-16],[-37,-50]],[[7261,6641],[12,-8],[-6,-18],[-11,-1],[5,27]],[[7300,6824],[-3,-21],[-29,-8]],[[7268,6795],[12,33],[20,-4]],[[7343,6833],[-29,11]],[[7314,6844],[2,21]],[[7316,6865],[33,-8],[-6,-24]],[[7399,6575],[-19,4],[-7,31],[12,23],[12,3],[16,-19],[8,-28]],[[7421,6589],[-22,-14]],[[7522,6600],[27,-11],[-3,15]],[[7546,6604],[7,0],[15,-20],[0,-24],[-7,-39],[-9,3],[-1,-17]],[[7551,6507],[-20,5],[10,22],[-23,4],[2,16],[-20,6],[4,27],[20,-4],[-2,17]],[[7603,6706],[-4,-10],[-43,17],[1,10],[46,-17]],[[7522,6665],[-5,-26],[-18,8],[3,28],[20,-10]],[[7522,6670],[-19,8],[6,50],[18,-11],[-5,-47]],[[7553,6714],[-44,17],[3,9],[42,-16],[-1,-10]],[[7505,6821],[3,-50],[-4,-23],[-37,15],[-48,12],[4,7],[82,39]],[[7509,6822],[10,-5],[-9,-65],[-1,70]],[[7561,6811],[-3,-22],[25,-7]],[[7583,6782],[-8,-59],[-60,23],[8,73],[38,-8]],[[7501,6828],[-69,-33],[-18,2],[17,31],[8,-21],[44,23],[0,20],[14,6],[4,-28]],[[7450,6862],[15,-2],[15,15],[14,-14],[-17,-20]],[[7477,6841],[-27,21]],[[7506,6864],[10,-6]],[[7516,6858],[1,-2],[61,59],[-4,-51],[-52,-25],[-12,-4],[-11,23],[7,6]],[[7892,7576],[-1,9],[-23,-8],[2,-8]],[[7870,7569],[-34,4],[-28,-35],[-41,-20],[-8,6],[-3,-7],[-5,-7],[-30,-6],[-6,8],[-18,18],[-21,15],[-39,20]],[[7637,7565],[11,13],[-21,19],[-30,1],[-11,-6],[-14,-10]],[[7572,7582],[-4,-2]],[[7568,7580],[-38,-25]],[[7530,7555],[-3,-3]],[[7527,7552],[-10,-11],[7,-58],[-1,-15]],[[7523,7468],[-4,-8]],[[7519,7460],[-1,-31],[-7,-25],[-14,-22],[-16,-14]],[[7481,7368],[-4,-4]],[[7477,7364],[-10,-8],[13,-5],[28,-12]],[[7508,7339],[-21,-54]],[[7487,7285],[-26,11],[-9,4],[-18,-6],[-2,-14],[10,-5],[-15,-39],[-13,-10],[10,-6],[30,-16]],[[7454,7204],[-8,-19]],[[7446,7185],[-33,21],[-13,8],[-17,-19],[-14,-5],[-44,-3]],[[7325,7187],[-9,-20]],[[7316,7167],[-2,-4]],[[7314,7163],[-2,-7],[8,-3],[71,-20]],[[7391,7133],[1,-1]],[[7392,7132],[29,-8]],[[7421,7124],[-24,-83]],[[7397,7041],[-20,7]],[[7377,7048],[-2,0]],[[7375,7048],[-18,6]],[[7357,7054],[-2,1]],[[7355,7055],[-18,6]],[[7337,7061],[-1,1]],[[7336,7062],[-18,6],[-16,5],[-14,5],[-4,-13],[-1,-8]],[[7283,7057],[2,-35],[9,-28]],[[7294,6994],[17,-37],[-3,-33],[-9,-49],[-44,-36],[-12,-51]],[[7243,6788],[0,-1]],[[7243,6787],[2,-37]],[[7245,6750],[0,-1]],[[7245,6749],[0,-18]],[[7245,6731],[1,-2]],[[7246,6729],[4,-11]],[[7250,6718],[-3,0],[-63,7],[-14,3]],[[7170,6728],[-17,12],[10,29],[8,46],[21,38],[28,43],[5,14],[28,26],[-9,35]],[[7244,6971],[-17,41],[-3,21],[3,26],[20,52],[20,17],[14,58],[-17,27]],[[7264,7213],[2,8],[18,-5],[20,7],[-21,-4],[-12,7],[58,114]],[[7329,7340],[12,2],[36,-46],[12,19],[-6,8],[-13,17]],[[7370,7340],[12,15]],[[7382,7355],[7,-2],[4,5]],[[7393,7358],[3,2]],[[7396,7360],[7,18],[-15,17]],[[7388,7395],[10,18],[12,-13],[5,-6],[1,5]],[[7416,7399],[15,31],[13,12],[9,23]],[[7453,7465],[-1,4]],[[7452,7469],[7,35]],[[7459,7504],[2,4]],[[7461,7508],[4,22]],[[7465,7530],[9,28],[17,25],[7,35],[33,18],[60,25],[21,-1],[65,-19],[30,1],[46,1],[-4,6],[-3,16]],[[7746,7665],[32,14],[31,18],[13,0]],[[7822,7697],[1,-15],[32,-1],[36,12],[-1,5]],[[7890,7698],[34,24],[20,9],[21,-2],[64,-13],[64,10],[18,13],[8,15],[15,53],[21,39],[21,39],[17,28],[27,35],[4,-7]],[[8224,7941],[4,-10],[12,12],[59,30],[5,-2]],[[8304,7971],[4,-1]],[[8308,7970],[37,-9],[12,4],[9,18]],[[8366,7983],[2,5]],[[8368,7988],[0,23],[20,15],[33,-1],[5,10]],[[8426,8035],[0,5]],[[8426,8040],[16,59],[13,17],[-6,7],[-5,6]],[[8444,8129],[22,9],[5,-14],[8,6],[-9,37],[-6,-4]],[[8464,8163],[-9,43],[1,40],[3,21]],[[8459,8267],[-1,4],[-74,0],[-17,-10],[-6,22],[102,92],[26,-46],[12,-12]],[[8501,8317],[2,-3],[51,48]],[[8554,8362],[18,21]],[[8572,8383],[2,3]],[[8574,8386],[20,19],[-9,26],[-17,30],[22,4]],[[8590,8465],[17,12],[10,-12],[-25,-38],[6,-19],[15,4]],[[8613,8412],[33,-21],[17,0]],[[8663,8391],[0,1]],[[8663,8392],[4,17],[-5,60],[11,-3],[2,18],[12,22],[18,22],[-6,24]],[[8699,8552],[12,5],[11,-16],[5,-14]],[[8727,8527],[3,-19],[10,-9],[39,15],[21,-3],[0,5]],[[8800,8516],[26,-16],[24,-35],[34,-34]],[[8884,8431],[0,-3],[10,1],[17,-13],[14,4],[28,-14],[39,-12],[12,-3],[0,2]],[[9004,8393],[-14,12],[-18,8],[-22,-1],[-18,8],[-21,2],[-18,12],[-9,-2],[-32,32],[-26,37],[-26,16]],[[8800,8517],[0,16]],[[8800,8533],[61,-18],[33,-20],[37,-40],[12,-9],[76,-30],[39,-18],[29,-10],[1,1],[-61,25],[-83,33],[-50,50],[-28,17],[-86,27],[-24,13],[34,20],[81,24],[51,-1],[75,-6],[52,-3],[128,-7],[15,-6],[84,-50],[32,-16]],[[9308,8509],[10,-28],[10,2],[-2,25]],[[9326,8508],[19,-2],[14,-40],[16,-48],[1,-9],[11,-38],[2,-52],[-5,-9],[-14,3]],[[9370,8313],[6,34],[5,28],[-9,34],[-35,-4],[-4,-20]],[[9333,8385],[-3,-41]],[[9330,8344],[-1,-10]],[[9329,8334],[9,-11]],[[9338,8323],[1,-79],[2,-24],[2,-26],[-52,29],[-15,-6],[-76,-44],[-26,15],[-17,-25],[-14,0],[4,-43],[12,1],[1,-29],[20,21],[15,-4],[12,-14],[39,-85],[12,-29],[26,-38],[3,-59],[11,-5],[-6,29],[8,8],[18,-22],[16,-63],[8,-12],[15,-1],[14,-10],[11,-19],[12,-37],[19,-6],[17,-20],[5,-23],[12,-9],[23,-45],[-5,-7],[-3,-3],[-16,-19],[-14,-17],[-6,-8],[-39,-37],[-1,-1],[-22,-8],[-13,-4],[-28,-10],[-6,-3],[-9,-4],[-104,-44],[-50,-7],[-54,-6],[-58,-14],[-52,-19],[-15,3],[-30,22],[-67,27],[-4,2],[-59,21],[78,40],[50,25],[38,19],[38,7],[44,8],[29,5],[47,29],[16,9],[54,33],[-1,1],[-54,-33],[-62,-38],[-28,-5],[-44,-8],[-39,-7],[-38,-19],[-68,-33],[-61,-32],[-20,-5],[-39,-36]],[[8755,7473],[-13,22],[-4,-11],[-28,-38],[-11,7],[0,23],[16,40],[-34,22],[-10,19],[-2,31]],[[8669,7588],[-1,1]],[[8668,7589],[5,37],[5,6],[-1,36],[6,19],[-7,36],[-3,-3]],[[8673,7720],[-1,0]],[[8672,7720],[-33,-27],[-15,-13],[2,-7]],[[8626,7673],[12,-43],[-59,-47],[-23,47],[-33,16],[-43,22],[-2,22],[26,50],[40,74],[45,83],[12,101],[5,22],[0,52],[-22,54],[-8,10],[-2,33],[0,-57],[-15,-58],[-28,-29],[-17,-53],[-15,-30],[-12,-9],[-28,-1],[-15,-34],[-43,-34],[-18,-33],[-24,-5],[-23,-36],[-11,-4],[-13,11],[-27,-24],[-14,-34],[-26,0],[-9,-16],[-21,-19],[1,-41],[-5,-21],[-17,-29],[-40,-52],[-40,-11],[-13,-16],[-15,-4],[1,-21],[5,-83],[1,1],[-4,101],[24,20],[47,15],[16,25],[19,24],[20,39],[3,20],[-3,28],[23,23],[9,16],[28,4],[11,29],[0,1],[33,26],[16,-12],[9,13],[16,26],[29,10],[13,27],[43,35],[9,29],[29,4],[19,14],[12,28],[18,52],[28,30],[11,33],[5,47],[6,-7],[23,-54],[-2,-62],[-5,-16],[-8,-81],[-5,-20],[-43,-78],[-39,-75],[-29,-57],[3,-16],[12,-10],[32,-14],[33,-16]],[[8554,7628],[-14,-11],[-50,-37]],[[8490,7580],[-2,-1]],[[8488,7579],[-31,-24],[8,-30],[-55,-34],[2,-29],[13,2]],[[8425,7464],[3,-34]],[[8428,7430],[-13,-2],[5,-73],[6,-39],[14,2]],[[8440,7318],[17,3],[42,6],[24,4]],[[8523,7331],[2,-16],[18,3]],[[8543,7318],[6,-8],[-35,-26],[-8,23],[-36,-15],[-15,3],[-24,5],[-6,11],[-6,27],[-11,9],[-32,6],[-39,14],[-40,-6],[-20,-9],[-61,28],[-41,-6],[-30,6],[-41,2],[1,-21],[-6,-10],[-62,1],[-24,13],[-16,3],[-11,107],[-11,114],[10,-117],[11,-105],[-44,-6],[-38,-14],[-45,-23],[-13,-16],[-8,-33],[12,-36],[45,-105],[-4,-33],[2,-50],[-6,-22],[-1,-2],[-8,-5],[-11,-8],[-86,-42],[-108,-53],[14,104],[19,16],[-1,1]],[[7715,7040],[-20,24]],[[7695,7064],[-2,1]],[[7693,7065],[-25,17]],[[7668,7082],[-2,1]],[[7666,7083],[-29,12]],[[7637,7095],[-2,1]],[[7635,7096],[-28,14]],[[7607,7110],[30,60],[-1,1],[-7,-13],[-18,-34],[-7,-24],[-19,11],[10,57],[1,23],[38,-9],[0,3]],[[7634,7185],[6,19]],[[7640,7204],[18,-12],[-23,51],[4,29],[-5,7]],[[7634,7279],[1,0]],[[7635,7279],[5,-6],[-4,-30],[17,-35],[6,-15],[12,-6],[1,-25],[22,-33],[28,-19],[54,-16],[-2,24],[-48,11],[-25,18],[-13,19],[-3,17],[7,31],[5,44],[-9,24],[-29,6],[3,27],[-13,-2]],[[7649,7313],[5,15],[-26,15],[7,21],[20,16],[-8,21]],[[7647,7401],[8,15],[13,15],[-6,10],[-28,-11],[-7,11],[15,40]],[[7642,7481],[1,1]],[[7643,7482],[13,19],[0,19],[11,2],[18,15]],[[7685,7537],[25,-17],[7,-17],[21,2],[37,15],[36,20],[29,33],[28,-5],[4,-17],[23,7],[-1,17],[38,23],[35,5],[7,-3],[32,-8],[27,-15],[12,1],[25,-19],[-23,20],[-11,0],[-30,14],[-32,9],[-22,0],[-15,-1],[-34,-22],[-11,-3]],[[8739,7555],[5,-13],[15,17],[-9,17],[-11,-21]],[[7314,6996],[38,-10],[7,-2],[-6,-34],[-44,13],[4,25]],[[7313,6988],[1,8]],[[7537,7189],[7,20],[24,-12],[-2,-25]],[[7566,7172],[-29,17]],[[7508,7272],[-11,-33],[-19,11],[12,31]],[[7490,7281],[18,-9]],[[7590,7270],[-9,-14],[-14,4]],[[7567,7260],[-5,55]],[[7562,7315],[37,-18]],[[7599,7297],[-9,-27]],[[7414,6722],[-22,42],[19,10],[27,-7]],[[7438,6767],[-5,-47]],[[7433,6720],[-19,2]],[[7407,6707],[-3,10],[-13,-9]],[[7391,6708],[-24,25],[6,13]],[[7373,6746],[2,10]],[[7375,6756],[16,7],[22,-42],[0,-35],[-9,-11],[-6,19],[9,13]],[[7259,6708],[3,-4]],[[7259,6708],[0,0]],[[7279,6681],[-15,21]],[[7264,6702],[1,1]],[[7265,6703],[16,-21]],[[7281,6682],[-2,-1]],[[7369,6685],[16,12]],[[7385,6697],[-13,-15]],[[7372,6682],[-3,3]],[[7393,7510],[-21,-43],[15,-11]],[[7387,7456],[-7,-12]],[[7380,7444],[-14,12],[-9,-8],[-14,-20]],[[7343,7428],[-19,-31],[-15,19],[24,29],[8,17],[34,71],[18,-23]],[[7342,7622],[4,-5],[-18,-32],[-25,-72],[22,-12]],[[7325,7501],[3,-1]],[[7328,7500],[22,-11]],[[7350,7489],[-19,-43],[-25,-29],[-36,-50],[18,129],[9,20],[28,76],[17,30]],[[7264,7563],[-16,-33],[-12,-8],[-48,-15],[51,62],[23,24],[2,-30]],[[7268,7561],[-4,34],[58,42],[-16,-15],[-18,-27],[-24,-50],[4,16]],[[7364,7575],[19,-22]],[[7383,7553],[-8,-15],[-21,23],[10,14]],[[7357,7647],[5,8],[31,-11],[28,-21],[-19,-37],[-23,32],[2,15],[-13,-1],[-11,15]],[[7437,7657],[-14,-32],[-28,19],[42,13]],[[7416,7651],[-22,-6],[-32,13],[29,30],[47,-30],[-22,-7]],[[7488,7625],[-5,43],[-30,8],[-6,-21]],[[7447,7655],[-55,34],[48,35],[49,-12],[31,-14],[14,-16]],[[7534,7682],[-19,-31]],[[7515,7651],[-1,0],[-13,-6],[-13,-20]],[[7594,7692],[9,7],[25,38],[-23,65],[-14,-5],[-21,19],[13,-25],[-37,-19],[-3,-28],[-22,-43]],[[7521,7701],[-10,5],[-42,15],[-28,5],[-10,-4],[-40,-32],[-4,2],[16,24],[28,26],[29,19],[82,48],[69,40],[10,-30],[26,-70],[10,-27],[-9,-5],[-7,28],[-5,-3],[11,-25],[-48,-28],[-5,3]],[[7243,7328],[-25,30],[-16,-34],[-45,23]],[[7157,7347],[7,60],[-5,37],[-9,22],[31,29],[23,11],[27,6],[23,14],[17,27],[22,49],[16,21],[22,19],[11,-17],[-19,-32],[-38,-102],[-16,-116],[-2,-14],[-24,-33]],[[7663,7726],[-3,-2],[-46,126],[52,31],[0,-148],[-3,-7]],[[8104,8539],[50,-54]],[[8154,8485],[1,-1]],[[8155,8484],[56,-55]],[[8211,8429],[1,-1]],[[8212,8428],[21,-24],[24,-27],[34,50],[13,20]],[[8304,8447],[64,95],[169,-53],[11,-3],[15,-7],[-13,-13],[-37,-35],[-53,-47],[-79,-72],[-25,-23],[-33,-20],[-11,-6],[-25,-15],[-67,-38],[-9,-9],[-67,-39],[-76,-44],[-71,-41],[-6,-3],[-75,-44],[-1,0],[-77,-44],[-76,-44],[-88,-52],[69,105],[60,90],[58,89],[61,92],[60,90],[60,90],[58,88],[3,1],[1,4]],[[8255,8106],[-15,-40],[-5,-14],[15,-28],[1,-17],[-11,-27]],[[8240,7980],[-21,-27],[-34,-43],[-24,-44],[-34,-69],[-17,-54],[-17,-13],[-66,-10],[-67,14],[-31,-3],[-37,-25],[-44,-3],[-46,-4],[-38,-23],[-15,-5]],[[7749,7671],[14,38],[11,11],[-9,30],[-11,5],[-14,-5],[-1,-28],[-28,-18],[-15,-37]],[[7696,7667],[-30,6]],[[7666,7673],[4,24]],[[7670,7697],[1,4]],[[7671,7701],[-7,22]],[[7664,7723],[3,6],[0,153],[20,11],[77,44],[76,44],[55,31],[22,13],[76,44],[77,45],[76,43],[75,44],[19,-54],[15,-41]],[[8318,8258],[1,-3],[-19,-39]],[[8300,8216],[-2,-3]],[[8298,8213],[-9,-17]],[[8289,8196],[-2,-5]],[[8287,8191],[-11,-29]],[[8276,8162],[-1,-5]],[[8275,8157],[-18,-46]],[[8257,8111],[-15,40],[-18,52],[78,46],[16,9]],[[8279,7989],[-20,-21],[-17,8],[30,25],[7,-12]],[[8367,8117],[-18,-12],[9,21],[9,-9]],[[8494,8340],[-8,14],[25,25],[-12,-35]],[[8499,8344],[-5,-4]],[[8532,8438],[11,-21]],[[8543,8417],[-59,-59],[-14,24],[62,56]],[[8435,8529],[-30,9],[-28,13],[21,33],[28,-15],[32,-18],[71,-38],[-3,-13],[-91,29]],[[8725,9532],[-4,-73],[-3,-9]],[[8718,9450],[-15,13],[-15,-20],[-8,5],[-23,42],[-2,18],[-26,22],[-16,-25]],[[8613,9505],[-1,-2]],[[8612,9503],[-8,-23]],[[8604,9480],[3,-15]],[[8607,9465],[12,-56],[17,-22],[40,-13],[5,-8],[31,3]],[[8712,9369],[1,-6],[-29,-130],[-8,-46],[2,-27],[14,-48],[4,-33],[-3,-27],[-13,-63],[42,-158],[-3,-29],[-7,-42],[2,-51],[4,-70],[1,-17],[2,-44]],[[8721,8578],[-5,15],[-13,0],[7,-30]],[[8710,8563],[-20,-8]],[[8690,8555],[-22,16],[5,42],[-30,0],[-22,-10],[-26,-33],[8,-12],[28,-7]],[[8631,8551],[-24,-27]],[[8607,8524],[-13,18],[-13,-19],[-19,7],[3,38],[12,35],[2,24],[10,38],[-13,33],[1,28]],[[8577,8726],[50,-2],[6,37],[10,27],[5,60],[-9,28],[-19,19],[-45,66],[-8,38],[-13,33],[-3,40],[8,29],[-1,54],[37,270],[-16,7],[0,41],[21,59],[31,43],[38,33],[38,52],[25,-5],[20,31],[31,9],[21,-8],[28,-25],[9,-19],[-22,-92]],[[8819,9551],[-14,54],[-26,47],[-27,-3],[-12,-20],[-9,-40]],[[8731,9589],[-1,-3]],[[8730,9586],[-22,-57],[17,3]],[[8662,8542],[-27,3],[13,13],[7,8],[17,-12],[-10,-12]],[[8751,8509],[-16,0],[-8,31],[-11,18],[20,-3],[39,-13]],[[8775,8542],[0,-15],[-27,-5],[3,-13]],[[8464,8376],[4,5],[14,-24],[-4,-5],[-14,24]],[[9338,8513],[-8,3]],[[9330,8516],[-5,23],[-25,57],[5,10],[25,-61],[8,-32]],[[8724,9240],[13,-121],[11,-120],[12,-119],[12,-121],[9,-90],[9,-90],[-39,-22],[-23,3],[-4,9],[-6,86],[-5,92],[0,14],[11,65],[-11,44],[-31,119],[12,61],[3,29],[-4,33],[-14,49],[-1,27],[7,45],[28,128],[11,-121]],[[9272,8650],[-6,-9]],[[9266,8641],[-2,-1],[31,-122],[-68,39],[-49,26],[-58,3],[-70,4],[-52,3],[-106,8],[-28,-2],[-70,-22],[-3,3],[-8,89],[-9,91],[-12,120],[-12,119],[-12,120],[-12,121],[-11,120],[-4,47],[12,55],[3,63],[4,6],[40,16]],[[8770,9547],[9,-1],[13,0]],[[8792,9546],[3,1]],[[8795,9547],[24,3]],[[8819,9550],[11,-43],[7,-56],[19,-42],[9,-26],[-2,-23],[6,-45],[-5,-53],[4,-17],[21,-20],[-2,-15],[11,-24],[24,-22],[5,-14],[4,-23],[-7,-26],[5,-34],[17,-35],[0,-1],[23,-8],[-14,-45],[0,-63],[6,-44],[13,-43],[19,-19],[8,-51],[10,-19],[24,-16],[8,-8],[22,-21],[32,-52],[12,-11],[42,-16],[17,4],[37,20],[32,29],[35,-18]],[[9180,8589],[14,36],[-25,-12],[11,-24]],[[8728,9554],[10,-1],[5,21],[10,6]],[[8753,9580],[-2,-28],[-1,-13],[-23,-7],[1,22]],[[8872,7387],[93,-78],[70,-57],[70,-58],[55,-46],[8,-26],[40,-158],[11,-21],[-116,-8],[-28,9],[-20,9],[-23,-5],[-21,-19],[-7,-8],[-14,11],[-30,20],[0,65],[-28,71],[-35,89],[-35,82]],[[8862,7259],[11,8],[-13,32]],[[8860,7299],[2,1]],[[8862,7300],[16,12],[-5,9]],[[8873,7321],[-1,1],[-16,-9],[-17,34]],[[8839,7347],[21,16],[3,-8],[18,14],[-9,18]],[[9117,6915],[-20,11],[-37,-13],[-40,-10],[-30,-11],[-42,29],[-66,36],[32,23],[72,-47],[19,-14],[28,27],[20,5],[22,-8],[18,-7],[22,-2],[96,7],[-8,-20],[-13,-2],[-13,-17],[-16,33],[-7,-3],[-8,-22],[-23,-3],[-6,8]],[[8762,7197],[-20,-15]],[[8742,7182],[-2,-1]],[[8740,7181],[-19,-15]],[[8721,7166],[-2,-1]],[[8719,7165],[-19,-15]],[[8700,7150],[-2,-1]],[[8698,7149],[-10,-8]],[[8688,7141],[-17,42],[0,17]],[[8671,7200],[8,5]],[[8679,7205],[1,9],[35,9],[26,19],[21,-45]],[[8807,7308],[33,-68]],[[8840,7240],[1,-2]],[[8841,7238],[23,-49]],[[8864,7189],[1,-2]],[[8865,7187],[-24,-17]],[[8841,7170],[-3,-2]],[[8838,7168],[-43,-30]],[[8795,7138],[-46,94],[-13,27],[47,34],[24,15]],[[8711,7311],[18,13],[24,-49]],[[8753,7275],[-18,-13],[-24,49]],[[8652,7389],[31,23],[-13,-19],[-18,-4]],[[8505,7387],[-42,-7]],[[8463,7380],[-1,23],[32,16],[14,-29],[-3,-3]],[[8690,7347],[25,-51],[-91,-69],[-21,17]],[[8603,7244],[26,20],[-22,46]],[[8607,7310],[17,13],[28,21],[13,-10],[25,13]],[[8959,6952],[-42,30],[-6,0],[48,34],[0,-64]],[[8923,7066],[13,9]],[[8936,7075],[23,-58],[-76,-54],[-6,5],[-23,48],[22,17]],[[8876,7033],[20,14]],[[8896,7047],[3,2]],[[8899,7049],[21,15]],[[8920,7064],[3,2]],[[8570,7353],[-5,10],[21,16]],[[8586,7379],[15,-30]],[[8601,7349],[-21,-16]],[[8580,7333],[-10,20]],[[9033,6761],[0,2]],[[9033,6761],[0,0]],[[9055,6459],[-14,-2],[-8,35]],[[9033,6492],[17,16],[5,-49]],[[9113,6413],[-2,34]],[[9111,6447],[11,0],[19,-16],[-28,-18]],[[9244,6323],[0,28],[-19,8]],[[9225,6359],[-2,0]],[[9223,6359],[0,2]],[[9223,6361],[-4,36]],[[9219,6397],[-1,3],[-28,13]],[[9190,6413],[7,24]],[[9197,6437],[-12,8]],[[9185,6445],[3,11],[26,-11],[-2,12]],[[9212,6457],[27,-10],[24,-19]],[[9263,6428],[-19,-12],[24,-13],[8,9],[9,-15],[3,-25],[11,-17],[9,9],[47,-74],[5,-3]],[[9360,6287],[-19,4],[-97,28],[0,4]],[[9120,6545],[-10,28]],[[9110,6573],[14,14],[3,13],[14,5],[42,0],[6,0]],[[9189,6605],[8,-36]],[[9197,6569],[-44,-13],[-33,-11]],[[8943,6638],[6,-3],[-4,-36]],[[8945,6599],[-15,5],[13,34]],[[9003,6610],[-4,2]],[[8999,6612],[-8,21],[-28,13],[-32,25]],[[8931,6671],[-1,1],[-4,2]],[[8926,6674],[0,13]],[[8926,6687],[4,-14],[16,8],[-9,8],[-3,18],[10,8],[21,-22],[-20,-27],[13,-12],[10,37],[20,-9],[10,-13],[8,-30],[-12,-6],[9,-23]],[[9054,6634],[-6,-30]],[[9048,6604],[-10,-9],[-19,36],[35,3]],[[9054,6657],[-11,13],[11,18]],[[9054,6688],[13,-2],[12,-16],[-3,-20],[-22,7]],[[9038,6585],[-20,22],[-6,36],[26,-58]],[[9100,6611],[26,1]],[[9126,6612],[-2,-22],[-14,-15]],[[9110,6575],[-3,6]],[[9107,6581],[-7,22]],[[9100,6603],[0,8]],[[9103,6645],[-6,-39],[-13,-6],[8,45],[11,0]],[[9241,6732],[-14,0],[1,13],[20,0],[26,-9],[-6,-11],[-27,7]],[[9307,6761],[-3,-26],[12,-25],[-5,-40]],[[9311,6670],[-3,0]],[[9308,6670],[5,38],[-9,6]],[[9304,6714],[-3,-5]],[[9301,6709],[-22,-41],[-22,-19]],[[9257,6649],[0,3]],[[9257,6652],[16,12],[34,60],[-9,12],[-7,-6]],[[9291,6730],[-1,-1]],[[9290,6729],[-31,-49],[-17,-13],[-31,-3],[6,-19]],[[9217,6645],[6,1]],[[9223,6646],[32,5]],[[9255,6651],[1,-2]],[[9256,6649],[-42,-6],[-2,-10]],[[9212,6633],[-2,0]],[[9210,6633],[-2,44]],[[9208,6677],[2,0]],[[9210,6677],[3,-9],[28,2],[17,18],[-13,3],[-35,-4],[0,-8]],[[9210,6679],[-2,-1]],[[9208,6678],[-2,20]],[[9206,6698],[3,1]],[[9209,6699],[0,-9],[36,4],[16,-5],[6,14],[-18,10],[-39,-3],[-1,-10]],[[9209,6700],[-3,1],[-7,6],[1,3]],[[9200,6710],[10,17]],[[9210,6727],[3,0]],[[9213,6727],[-1,-14],[35,3],[22,-9],[22,28],[-6,10]],[[9285,6745],[1,3]],[[9286,6748],[8,-7],[10,22]],[[9304,6763],[3,-2]],[[9212,6631],[2,-9],[46,5]],[[9260,6627],[0,-3]],[[9260,6624],[-55,-5]],[[9205,6619],[-1,2],[6,10],[2,0]],[[9370,6762],[14,9],[9,-15]],[[9393,6756],[-10,-13],[-13,19]],[[9253,6478],[-6,-2],[-18,30],[-10,32]],[[9219,6538],[45,4],[21,-29],[3,-12],[-34,-11],[-1,-12]],[[9334,6490],[-13,10],[7,13],[10,-4],[-4,-19]],[[9181,6490],[-6,55],[38,10]],[[9213,6555],[5,-24],[14,-33]],[[9232,6498],[-22,-21]],[[9210,6477],[-29,13]],[[9332,6646],[6,-8]],[[9338,6638],[-2,-13],[17,-4]],[[9353,6621],[0,-15]],[[9353,6606],[-26,-2],[-2,39],[7,3]],[[9367,6726],[-21,-33],[-20,-19]],[[9326,6674],[6,74],[18,6],[17,-28]],[[9284,6746],[-12,8],[-34,7],[-24,-6],[-1,-26]],[[9213,6729],[-3,0]],[[9210,6729],[2,26],[-9,-2]],[[9203,6753],[-1,2]],[[9202,6755],[30,9]],[[9232,6764],[1,0]],[[9233,6764],[27,-3],[25,-13]],[[9285,6748],[-1,-2]],[[9233,6766],[-1,-1]],[[9233,6766],[0,0]],[[9416,6802],[1,2]],[[9417,6804],[21,-9],[19,5]],[[9457,6800],[2,-2]],[[9459,6798],[-22,-9],[-16,-37],[8,41],[-13,9]],[[9460,6801],[14,19],[23,17],[6,-16],[-16,-14],[-26,-8]],[[9461,6799],[-1,2]],[[9311,6668],[-4,-25],[-17,-16],[-28,-3]],[[9262,6624],[-1,3]],[[9261,6627],[21,3],[21,18],[5,21]],[[9308,6669],[3,-1]],[[9198,6710],[-1,-3]],[[9197,6707],[-8,-3],[1,-78],[12,-5]],[[9202,6621],[0,-3]],[[9202,6618],[-13,-1],[-4,85],[-10,-5]],[[9175,6697],[0,3]],[[9175,6700],[10,7],[2,44],[13,4]],[[9200,6755],[1,-3]],[[9201,6752],[-13,-5],[1,-38],[9,1]],[[7909,6040],[14,0],[3,13]],[[7926,6053],[22,-4],[5,40],[-14,24],[-1,-2]],[[7938,6111],[-28,-8]],[[7910,6103],[0,28],[31,-10],[52,-37],[82,-62],[68,-51],[13,-10],[83,-63],[83,-63],[82,-62],[83,-62],[81,-62],[72,-55],[-39,-19],[-35,-23],[-17,-9],[-56,-40],[-10,-4],[-30,-7],[-8,-15],[-46,30],[-19,2],[-65,-21],[-55,-42],[-29,-8],[-85,-31],[-8,1],[-44,5],[-22,-2],[-15,37],[-66,109],[-20,38],[-11,36],[-18,55],[-36,74],[-1,76],[2,143],[2,61]],[[8857,6081],[-4,-138],[51,-2]],[[8904,5941],[-3,-141],[0,-45],[5,-71],[-60,0],[-24,-5],[-49,8],[-39,-9],[-22,-6],[-45,-44],[-16,-20],[-8,-10],[-75,56],[-42,34],[43,41],[16,22],[30,59],[27,56],[15,18],[20,27],[64,62],[21,27],[28,21],[32,63],[35,-3]],[[8909,6042],[22,-3],[1,17],[-12,24]],[[8920,6080],[23,0],[7,0],[27,-13],[28,-56],[33,-61],[-24,-3],[-22,-3],[0,-36],[-7,-24],[-20,-32],[-2,-27],[-5,-26],[-14,-45],[-33,-64],[-3,0],[-5,68],[0,41],[4,142],[2,101]],[[8880,6169],[-13,31],[-21,32],[16,104],[17,-29],[1,-63],[6,-32],[-6,-43]],[[8865,6349],[25,4],[5,-31]],[[8895,6322],[1,-3]],[[8896,6319],[2,-5],[40,-20]],[[8938,6294],[3,-13],[-6,-34],[-19,-106],[-1,-8],[-6,-33],[-28,67],[6,39],[-5,32],[-2,69],[-15,42]],[[9237,5860],[-83,3],[-55,2],[-9,5],[3,40],[-6,29],[-14,1],[-27,5],[-39,72],[-23,45],[91,-52],[80,-47],[83,-49],[104,-58],[-105,4]],[[8974,5602],[42,-21],[-31,-26],[-10,-15],[-32,6],[31,56]],[[9889,6031],[2,-15],[-15,9],[-8,-16],[-20,-22],[-38,-12],[-37,-9],[-36,1],[0,19],[2,73],[5,137],[4,109],[78,-124],[85,-26],[1,-43],[-27,0],[-11,0],[15,-81]],[[9963,6254],[-52,2],[-2,56],[53,-3],[28,-1],[9,-39],[-3,-16],[-33,1]],[[9673,6548],[2,49],[16,4],[23,5],[3,-22],[-3,-92],[-30,0],[-66,2],[-31,-3],[5,102],[66,0],[15,3],[-1,-48],[1,0]],[[9440,6422],[2,18]],[[9442,6440],[0,4]],[[9442,6444],[1,19]],[[9443,6463],[1,42],[-2,68],[-6,23],[65,-1],[88,-2],[-3,-102],[-55,-16],[-36,-18],[-34,-25],[-21,-10]],[[9431,6597],[8,-17],[3,-85]],[[9442,6495],[-1,0],[-10,102]],[[9434,6602],[-2,30],[-18,51]],[[9414,6683],[20,50],[24,39],[13,6],[54,-58],[63,-72],[1,-50],[-83,2],[-72,2]],[[9015,5585],[-37,18],[24,48],[4,-39],[9,-27]],[[9067,5612],[-46,-29],[-11,26],[-2,23],[6,40],[4,-20],[13,4],[37,24],[46,28],[33,-56],[-80,-40]],[[9068,5681],[-38,-25],[-9,-2],[-9,25],[10,25],[11,47],[11,31],[26,-1],[5,6],[11,-31],[27,-46],[-45,-29]],[[9235,5789],[-54,-41],[-29,-28],[-37,-9],[-27,50],[-12,30],[17,73],[61,-2],[83,-4],[71,-3],[-73,-66]],[[9231,5679],[-14,-29],[-41,5],[-27,-2],[-33,56],[35,9],[31,29],[53,40],[76,68],[35,-1],[-33,-33],[-82,-142]],[[7587,6809],[-64,13],[1,13],[56,27],[9,-33],[-2,-20]],[[8014,7182],[-3,42],[-3,38],[-11,104],[32,-13],[15,-6],[44,0],[15,4],[3,24],[39,3],[28,-6],[42,7],[13,-3],[26,-16],[30,-8],[15,9],[24,2],[17,3],[39,-15],[28,-5],[12,-10],[10,-37],[28,-6],[16,-2],[31,14],[7,-22],[-74,-58],[-32,-26],[-20,-9],[-86,-12],[-76,-11],[-106,-17],[-78,-13],[-20,-9],[-2,24],[-3,30]],[[8017,7132],[-11,-13],[-54,-45],[-53,-44],[5,22],[-2,40],[5,22],[0,19],[-52,121],[-5,29],[6,23],[16,18],[43,22],[19,8],[62,12],[10,-104],[4,-39],[3,-41],[3,-31],[1,-19]],[[8768,6732],[-27,2],[0,20],[14,4],[4,-8]],[[8759,6750],[9,-18]],[[7585,6921],[109,99],[1,-2],[-13,-100],[-103,-51],[-3,4],[9,50]],[[7871,5761],[26,7],[5,-6],[36,-75],[3,-6],[25,-81],[13,-27],[10,-19],[48,-77],[25,-49],[-84,102],[-35,26],[-20,15],[-24,25],[-26,41],[-43,4],[9,110],[29,10],[3,0]],[[7901,5683],[8,-4],[7,25],[-15,9],[0,-30]],[[7879,6042],[26,-2],[-2,-61],[-2,-143],[-1,-64],[-29,-8]],[[7871,5764],[5,47],[2,26],[2,17],[-13,38],[-14,15],[-3,16],[7,30],[17,27],[3,21],[-6,32],[8,9]],[[8157,6282],[2,4]],[[8159,6286],[26,65],[3,25]],[[8188,6376],[59,-33],[19,-23],[22,-28],[44,-10],[82,-16],[92,-16],[-27,-6],[-66,-21],[-84,-26],[-52,-16],[-22,-14],[-43,-35],[-24,-7],[-57,1],[-65,7],[-2,25]],[[8064,6158],[3,6],[-4,39],[-2,3]],[[8061,6206],[1,10],[39,30]],[[8101,6246],[4,-8],[-19,-14],[-1,-18],[27,-16],[13,9],[20,51],[12,32]],[[8069,6308],[-6,-50],[-27,9],[10,48],[23,-7]],[[8148,6388],[23,-5],[-5,-27],[-21,6],[3,26]],[[7980,6187],[41,-12],[-1,-9],[-57,6]],[[7963,6172],[17,15]],[[7858,6360],[-10,-27]],[[7848,6333],[-16,3]],[[7832,6336],[4,23],[22,1]],[[7823,6447],[25,-7],[2,28],[24,-4]],[[7874,6464],[-2,-24],[-4,-45]],[[7868,6395],[-5,1],[-4,-32]],[[7859,6364],[-23,-1],[-23,2],[2,19],[8,63]],[[7775,6479],[1,-6],[-24,-7],[-9,-61],[-3,-70],[-6,-42],[46,-33],[-3,-6]],[[7777,6254],[-197,149],[132,50],[38,18],[25,8]],[[7852,5794],[-34,8],[-1,22]],[[7817,5824],[35,-7],[0,-1],[0,-22]],[[7818,5932],[28,-3],[-1,-23],[17,-13],[6,-16],[-39,-7]],[[7829,5870],[-1,1]],[[7828,5871],[12,19],[-5,16],[-17,26]],[[7592,6233],[-11,-3],[-23,9]],[[7558,6239],[-8,13],[-48,30],[3,26],[5,32],[2,8]],[[7512,6348],[40,-21],[6,20],[42,-9],[8,-17],[19,-13]],[[7627,6308],[-3,-13],[-8,-30],[-21,-24],[-3,-8]],[[7625,6296],[22,-11],[2,-3]],[[7649,6282],[1,-1]],[[7650,6281],[10,-21],[-22,-41],[-21,10],[-22,11]],[[7595,6240],[22,26],[8,30]],[[6853,5876],[-12,-10],[-24,4],[-7,-62],[24,-4],[4,-1],[-11,-47]],[[6827,5756],[-1,-2]],[[6826,5754],[-12,-48]],[[6814,5706],[-22,3]],[[6792,5709],[-62,17],[-4,-20]],[[6726,5706],[-1,-4],[10,-2]],[[6735,5700],[-6,-44],[-7,1],[-5,-21]],[[6717,5636],[-7,2],[-1,-4],[10,-2]],[[6719,5632],[2,-20],[-3,-29],[-12,3],[-3,-24]],[[6703,5562],[-7,2],[0,-2],[18,-6],[-11,-83],[-20,-1],[-9,-77],[-31,-2],[0,-2],[19,2]],[[6662,5393],[-28,-66]],[[6634,5327],[-29,4],[-3,-6]],[[6602,5325],[-6,-10]],[[6596,5315],[-4,-3]],[[6592,5312],[-22,-38],[-32,-51]],[[6538,5223],[-21,-39]],[[6517,5184],[-9,-19],[32,-26],[21,-17]],[[6561,5122],[5,-4]],[[6566,5118],[3,-3],[72,-61],[11,-13]],[[6652,5041],[5,-7]],[[6657,5034],[50,-65],[21,-33],[18,-36]],[[6746,4900],[2,-10]],[[6748,4890],[11,-29]],[[6759,4861],[2,-4],[17,5],[13,-29],[-17,-7],[1,-10],[3,0],[23,-59],[4,3],[-3,8],[-20,51],[21,7],[71,22],[49,9],[85,-13],[6,-2],[25,-9],[1,-39],[-4,-6]],[[7036,4788],[-16,2],[-13,25],[-31,-32],[-20,-26],[-22,-17],[19,-18],[-7,-10],[11,-10]],[[6957,4702],[-24,-31],[18,-26],[4,-5]],[[6955,4640],[8,-6],[88,-15]],[[7051,4619],[-1,-9]],[[7050,4610],[-2,-3],[-62,11],[-11,-2]],[[6975,4616],[-6,1],[19,-27],[-23,14],[-22,5],[-15,13],[-41,8],[0,-4],[-65,17],[-11,10],[-3,0],[0,-9],[-38,5],[-22,12],[-10,-33],[-12,3],[0,35],[1,7]],[[6727,4673],[81,-13]],[[6808,4660],[2,1]],[[6810,4661],[43,-7],[-11,15],[-24,47],[-26,53],[-9,-5]],[[6783,4764],[-18,47],[6,4],[-3,8],[-37,-13],[14,65],[-4,10]],[[6741,4885],[-1,2],[-14,34],[-20,8]],[[6706,4929],[2,3],[-38,31]],[[6670,4963],[6,11],[-21,27],[11,16],[-12,15]],[[6654,5032],[-6,5]],[[6648,5037],[-24,25],[-57,48],[-4,3]],[[6563,5113],[-5,4]],[[6558,5117],[-21,17],[-28,22]],[[6509,5156],[-5,3],[-9,-20],[5,-6]],[[6500,5133],[-2,-32],[10,-5],[-1,-23]],[[6507,5073],[29,-10],[14,28],[54,-45],[-15,-29],[-7,-57],[-8,-18],[-2,-22]],[[6572,4920],[-21,4],[17,-41]],[[6568,4883],[0,-6],[0,-7],[1,0],[33,-4],[-1,-42],[-24,-2],[-1,-3],[27,-2],[1,-5],[-28,4],[0,-6],[1,0]],[[6577,4810],[-4,-32]],[[6573,4778],[-1,-5]],[[6572,4773],[-8,-24]],[[6564,4749],[-2,-4]],[[6562,4745],[-3,-7]],[[6559,4738],[-24,-32],[55,-10],[11,0]],[[6601,4696],[0,-10]],[[6601,4686],[-33,2],[-32,-10]],[[6536,4678],[-31,-13],[-48,-12],[1,12],[0,4],[1,5],[0,22],[0,6],[1,25],[14,-2]],[[6474,4725],[0,-7],[52,-8],[7,9]],[[6533,4719],[2,2]],[[6535,4721],[10,9],[1,17]],[[6546,4747],[16,14],[4,50],[9,1],[-1,10]],[[6574,4822],[-10,43],[3,5],[0,1]],[[6567,4871],[-3,4],[-3,1],[-37,8],[7,60],[-6,15]],[[6525,4959],[-16,34],[-26,69],[-5,0]],[[6478,5062],[-2,1]],[[6476,5063],[-3,4],[-6,-10],[1,-2]],[[6468,5055],[-8,-26],[-8,-86],[-7,-76],[17,2],[48,7]],[[6510,4876],[-5,-44],[-7,1]],[[6498,4833],[-14,31],[-14,-1],[-10,-30],[-34,6],[-18,2],[-6,1],[-2,-8],[29,-5],[19,-16],[9,-30],[-3,-80],[0,-6],[-1,-23],[0,-9],[-1,-12],[-4,-30],[-19,1],[1,-33],[-10,-27],[-41,-52],[7,-11],[-29,-31],[-30,-45],[-26,-56],[-5,2],[-3,0],[-10,4]],[[6283,4375],[6,13],[21,67],[-3,2]],[[6307,4457],[6,151],[9,4],[-2,-18],[4,17],[-10,8],[1,44],[-33,45]],[[6282,4708],[-16,15]],[[6266,4723],[-2,1]],[[6264,4724],[-47,20],[-1,-12],[0,-24],[-30,1]],[[6186,4709],[-9,24],[-9,24],[-4,16],[65,-15],[29,-1],[17,0],[12,17],[4,35]],[[6291,4809],[18,-11],[-2,-51],[38,19],[14,16],[9,25],[6,31]],[[6374,4838],[0,8],[-5,1],[-18,2]],[[6351,4849],[10,61],[-3,4],[9,44],[-12,31],[79,159],[17,38],[-21,33],[-166,133]],[[6264,5352],[-6,8],[-16,-31],[-12,8],[11,21],[-11,6]],[[6230,5364],[2,18],[-54,43]],[[6178,5425],[-42,34],[-49,39],[-43,19],[-54,-13],[-2,15],[-1,8],[22,3]],[[6009,5530],[53,-10],[32,-17]],[[6094,5503],[3,-2]],[[6097,5501],[21,-17],[7,14]],[[6125,5498],[25,-20],[0,5]],[[6150,5483],[-3,42]],[[6147,5525],[8,2],[3,-38],[42,6],[9,-3]],[[6209,5492],[1,-34],[1,-16]],[[6211,5442],[0,-4]],[[6211,5438],[1,-30],[50,-40]],[[6262,5368],[7,-6]],[[6269,5362],[60,-50],[19,-15]],[[6348,5297],[2,-2]],[[6350,5295],[9,-7],[9,104]],[[6368,5392],[42,-13]],[[6410,5379],[-10,-119],[19,-2],[37,-6]],[[6456,5252],[-2,-23],[-1,-18],[13,-10]],[[6466,5201],[1,-1],[5,45]],[[6472,5245],[9,-2],[15,16]],[[6496,5259],[2,2],[19,75],[36,-12],[0,4],[-37,12]],[[6516,5340],[4,17],[14,55],[12,49],[30,122]],[[6576,5583],[1,-3],[4,13],[34,-13],[17,71],[9,69],[4,0],[1,2],[-31,6],[5,22],[19,74],[54,85],[7,17],[4,13],[6,32],[17,25],[11,6],[16,-2],[21,12],[14,6],[54,-6],[22,-21],[-7,-64],[-1,-16],[-2,-19],[-2,-16]],[[6399,4842],[-5,1],[-15,2],[-3,1],[2,-8],[19,-3],[2,7]],[[6979,5876],[-9,-29]],[[6970,5847],[1,-4],[0,-1]],[[6971,5842],[6,-22],[21,-24]],[[6998,5796],[-3,-9],[-17,13],[-5,4],[-8,43],[0,2],[-14,8],[14,6],[10,16],[4,-3]],[[7115,6141],[25,53],[-10,12],[3,23]],[[7133,6229],[43,14],[2,1]],[[7178,6244],[-16,-28],[6,-3],[-11,-17],[-31,-64]],[[7126,6132],[-8,7],[-3,2]],[[7177,6081],[-27,-15],[-22,8]],[[7128,6074],[20,42],[20,-10],[9,-25]],[[7213,6029],[-19,-1],[-3,26]],[[7191,6054],[19,10]],[[7210,6064],[3,-35]],[[7161,5605],[-14,-8]],[[7147,5597],[-3,-2]],[[7144,5595],[-20,-12],[-25,25],[-23,24]],[[7076,5632],[-3,2]],[[7073,5634],[-9,10],[-5,-20]],[[7059,5624],[-1,-4]],[[7058,5620],[-10,-40]],[[7048,5580],[-1,-4]],[[7047,5576],[-2,-7],[-1,-4],[-43,-7]],[[7001,5558],[-4,13],[-24,95],[78,62]],[[7051,5728],[0,4],[-18,20]],[[7033,5752],[0,5],[69,51]],[[7102,5808],[7,15],[18,9]],[[7127,5832],[4,0]],[[7131,5832],[24,5]],[[7155,5837],[2,3]],[[7157,5840],[-5,21]],[[7152,5861],[-2,5]],[[7150,5866],[-7,53]],[[7143,5919],[52,2],[1,-33],[21,1],[5,-17],[-12,-11]],[[7210,5861],[12,-26]],[[7222,5835],[-8,-14]],[[7214,5821],[15,-36],[99,65]],[[7328,5850],[53,-57],[58,-56],[10,-24],[-18,-14]],[[7431,5699],[-10,23],[-27,-18],[8,-27]],[[7402,5677],[-70,-48],[-67,-47],[-43,-26],[-61,49]],[[7220,5887],[19,4],[2,-9],[-16,-9],[-5,14]],[[7406,5969],[41,19],[3,-4],[4,110],[73,-71],[40,-52],[5,-7],[67,-174],[-50,-7],[-4,-49],[-19,2],[-62,15],[-50,-31],[-12,18],[-64,62],[-45,55],[-11,20],[-8,15],[61,56],[31,23]],[[7641,5791],[-67,173],[38,-52],[8,-5],[32,-42],[-2,-73],[-9,-1]],[[7651,5792],[2,72],[36,-46],[3,-17],[-23,-8],[-18,-1]],[[7722,6035],[31,-28],[39,-30],[-3,-13],[-7,-35],[13,-66],[-12,-101],[-4,-4],[-53,-7],[-6,3],[-30,66],[-36,46],[0,27],[2,56],[0,19],[3,111],[63,-44]],[[7339,6059],[8,46],[14,-3],[4,11]],[[7365,6113],[12,-7]],[[7377,6106],[-1,-19],[-20,-39]],[[7356,6048],[-17,11]],[[7071,6057],[-3,2]],[[7068,6059],[19,18],[27,63]],[[7114,6140],[3,-3]],[[7117,6137],[-28,-62]],[[7089,6075],[-18,-18]],[[6129,5796],[7,11],[39,23]],[[6175,5830],[6,-16]],[[6181,5814],[-31,-21],[1,-4]],[[6151,5789],[-3,-1],[11,-30],[-25,-15],[-3,24],[-2,29]],[[6095,5866],[26,11],[2,-35]],[[6123,5842],[-17,-5],[-11,29]],[[6076,5907],[5,-20],[3,-26]],[[6084,5861],[-16,-24],[-19,-47],[-31,-44],[-54,45],[15,35],[23,51]],[[6002,5877],[-21,-47],[33,-26],[35,54],[7,42]],[[6056,5900],[18,7],[2,0]],[[6076,5910],[-3,-1]],[[6073,5909],[-8,35],[-20,-27],[-11,-24]],[[6034,5893],[-31,-14],[23,55],[65,82],[1,-1],[12,-16]],[[6104,5999],[-10,-3],[-3,-19],[-23,-31],[8,-36]],[[6113,5596],[-5,14],[-32,-27],[-41,-26],[2,-5]],[[6037,5552],[-28,-17],[-18,-4],[-5,-13]],[[5986,5518],[-67,-16],[-37,-14]],[[5882,5488],[-8,-3],[-34,-24],[-55,-24],[-90,-45],[-95,-52]],[[5600,5340],[-24,-11],[-45,-17]],[[5531,5312],[-10,1],[-29,-3],[0,6]],[[5492,5316],[46,9],[56,25]],[[5594,5350],[6,3]],[[5600,5353],[47,26],[27,34],[-6,14]],[[5668,5427],[54,38],[100,61],[29,12],[41,26],[19,16],[56,64],[16,16],[13,22],[22,53],[22,-4],[2,-14],[13,-3],[4,13],[28,-5]],[[6087,5722],[4,-67],[25,3],[31,13],[2,1]],[[6149,5672],[57,32],[12,19]],[[6218,5723],[84,48],[11,-5],[-7,19]],[[6306,5785],[13,8],[1,-26],[0,-9]],[[6320,5758],[-58,-35]],[[6262,5723],[-53,-32]],[[6209,5691],[-47,-29]],[[6162,5662],[-5,-7]],[[6157,5655],[-11,-10],[1,-11]],[[6147,5634],[1,-17],[-35,-21]],[[6426,5656],[6,10],[54,-47],[-7,-14],[-37,31],[-16,20]],[[6593,5733],[19,-7],[-32,-126],[-53,54],[20,30]],[[6547,5684],[8,-8],[38,57]],[[6556,5707],[-18,19]],[[6538,5726],[21,13],[11,17],[12,-11],[-26,-38]],[[6561,5765],[8,-7],[-13,-20],[-12,2],[17,25]],[[6487,5777],[7,-1],[30,24],[21,-20],[-16,-12],[-43,4],[1,5]],[[6492,5794],[23,16],[8,-9],[-29,-23],[-2,16]],[[6500,5748],[-18,-41],[-8,0],[-28,23]],[[6446,5730],[46,92],[6,7],[15,-18],[-25,-15],[-6,-43],[18,-5]],[[6500,5831],[19,21],[30,18],[12,-19],[-45,-39],[-16,19]],[[6554,5817],[-22,-21],[-13,17],[37,31],[-2,-27]],[[6558,5806],[-15,-22],[-10,11],[22,21],[3,-10]],[[6645,5907],[-11,-17],[-28,-21],[-5,10],[34,28],[10,0]],[[6428,5469],[0,24],[-29,1]],[[6399,5494],[2,25],[2,27],[44,25],[-2,-21],[-6,-83],[-11,2]],[[6219,5513],[-11,0]],[[6208,5513],[-19,-1],[-1,10],[-2,28],[19,4]],[[6205,5554],[13,-4]],[[6218,5550],[1,-37]],[[6457,5420],[3,41],[16,-2]],[[6476,5459],[-6,-70],[-15,6],[2,25]],[[5915,5731],[8,-8],[42,56]],[[5965,5779],[52,-43],[-23,-52],[-21,-31],[-58,-64],[-22,-19],[-105,-61]],[[5788,5509],[10,11],[-20,25]],[[5778,5545],[105,142],[6,9],[26,35]],[[5671,5438],[-7,16],[19,12],[6,-16],[-18,-12]],[[5621,5433],[-10,29],[13,8],[12,-27],[-15,-10]],[[5790,5119],[-1,37],[-10,-1],[-1,15]],[[5778,5170],[16,2],[6,-51],[-10,-2]],[[5856,5434],[-23,-18],[-50,-47],[4,-15],[11,12]],[[5798,5366],[28,3],[5,-66],[-23,-8],[-7,35],[-5,-2],[7,-35],[-17,-7]],[[5786,5286],[-12,57],[-16,-16],[-39,-28],[-16,21]],[[5703,5320],[36,52],[14,16],[38,46],[64,32],[1,-32]],[[5698,5388],[7,-10],[15,-22]],[[5720,5356],[-15,-24],[-36,-44],[-23,-2],[-20,24],[-2,-4],[28,-42],[-38,13],[-3,-8],[33,-13],[-31,-11],[-8,8],[-7,0]],[[5598,5253],[6,18]],[[5604,5271],[3,7]],[[5607,5278],[12,33]],[[5619,5311],[3,8],[-14,21],[29,17],[14,4],[47,27]],[[5745,5386],[-3,27]],[[5742,5413],[43,19],[-40,-46]],[[5550,5173],[-7,32],[41,14]],[[5584,5219],[-9,-18],[-25,-28]],[[5520,5157],[-10,40],[12,3],[10,-37]],[[5532,5163],[-12,-6]],[[5494,5298],[31,-5],[48,-23]],[[5573,5270],[-2,-6]],[[5571,5264],[-42,22],[-36,7]],[[5493,5293],[-5,2],[-1,-7],[-37,-6],[-5,-5],[-28,-47],[-11,42],[0,17],[-1,17],[82,12],[1,-10],[1,-9],[5,-1]],[[5956,5454],[-51,-14]],[[5905,5440],[-11,13],[-23,-4],[4,-19],[11,-1],[-3,-33],[-22,-5]],[[5861,5391],[-4,46],[1,33],[17,13],[3,-7],[48,13],[61,12],[2,-19],[-30,-15],[-3,-9],[0,-4]],[[5917,5391],[-22,-3],[6,28],[8,10]],[[5909,5426],[10,-23],[-2,-12]],[[6018,5407],[-2,31],[19,-1],[29,-15],[34,-28],[-16,-24],[-37,-4]],[[6045,5366],[-3,44],[-24,-3]],[[5970,5292],[10,1],[5,-43],[0,-8]],[[5985,5242],[-35,-12],[-14,2],[-6,-7],[5,-43]],[[5935,5182],[-53,37]],[[5882,5219],[30,-8],[-1,18],[8,13],[-10,4],[-3,20],[-17,-2],[-31,-7],[1,-8]],[[5859,5249],[-7,-1],[-1,25],[-6,-1]],[[5845,5272],[41,43],[0,2]],[[5886,5317],[25,11],[5,2]],[[5916,5330],[7,-74],[14,-15],[31,5],[-4,37],[6,9]],[[6132,5335],[10,-7],[12,-9]],[[6154,5319],[-6,-31],[3,-15]],[[6151,5273],[-6,-14],[-15,1],[-20,9],[-14,-16],[-1,23]],[[6095,5276],[6,1],[-3,30],[-2,43],[4,8],[8,17],[19,-14],[-8,-18],[-9,7],[2,-26],[16,2],[4,9]],[[6161,5435],[15,-14],[3,-35],[-4,-7],[-15,13]],[[6160,5392],[6,10],[-15,13],[10,20]],[[6198,5359],[3,6],[33,-5],[-8,-21],[-28,20]],[[6064,5204],[1,30]],[[6065,5234],[33,0]],[[6098,5234],[49,-3],[13,-17],[23,-8],[-12,-38],[-24,11],[-7,-5],[-15,-20],[-20,-15]],[[6105,5139],[-23,-20],[-40,-51]],[[6042,5068],[-4,6]],[[6038,5074],[9,12],[-8,4],[14,70]],[[6053,5160],[9,1],[2,37]],[[6064,5198],[0,6]],[[5987,5215],[6,-72],[-18,13]],[[5975,5156],[3,7],[-3,46],[12,6]],[[5948,5169],[2,-90]],[[5950,5079],[-31,-4],[-10,102],[3,15],[36,-23]],[[5928,5070],[22,3]],[[5950,5073],[2,-40],[-22,9],[-2,28]],[[6087,4973],[-1,-14],[-14,-6],[-29,4],[7,39]],[[6050,4996],[37,-23]],[[6171,4776],[-10,8],[-18,61]],[[6143,4845],[31,-1],[-1,-9],[21,-3],[-1,-10],[34,-7],[-2,-27],[-53,10],[-1,-22]],[[6237,4828],[-43,7],[3,27],[36,-6],[8,-10]],[[6241,4846],[-4,-18]],[[6288,4815],[-30,4],[2,29]],[[6260,4848],[12,-1]],[[6272,4847],[17,-6],[-1,-26]],[[5991,5479],[-2,23],[17,2],[3,-22]],[[6009,5482],[-18,-3]],[[6037,5485],[-26,-3]],[[6011,5482],[0,24],[23,4],[3,-25]],[[6039,5486],[-3,25],[17,0],[20,-10],[-5,-18]],[[6068,5483],[-29,3]],[[6069,5482],[5,18],[29,-17],[-4,-10]],[[6099,5473],[-30,9]],[[6100,5472],[5,10],[25,-21],[0,-8]],[[6130,5453],[-30,19]],[[5455,5277],[7,-45],[-21,-5],[-4,26],[18,24]],[[5479,5281],[-3,-40],[-11,0]],[[5465,5241],[-4,37],[18,3]],[[5485,5206],[12,-53]],[[5497,5153],[-14,3],[-8,48],[10,2]],[[6064,4692],[-11,-86],[-9,-73],[-7,-57]],[[6037,4476],[-11,3],[3,24],[-14,8],[-31,-13],[-1,7],[-9,34],[-35,7]],[[5939,4546],[-6,6],[-2,2],[-5,-7]],[[5926,4547],[-38,10]],[[5888,4557],[-52,12],[-2,0],[-14,-89],[-10,-14]],[[5810,4466],[-3,1],[-3,1]],[[5804,4468],[14,82],[-28,-22],[-21,-3],[-22,4]],[[5747,4529],[0,3],[10,89],[1,3],[11,94],[0,11],[22,-2],[24,-10],[36,-7],[19,7],[7,2],[2,1]],[[5879,4720],[30,8],[17,5],[-1,14],[-4,36],[-5,17]],[[5916,4800],[7,-10],[10,17],[-20,1],[-47,36],[-37,36],[-44,54],[31,-1]],[[5816,4933],[11,-19],[20,-20],[62,-30]],[[5909,4864],[4,-2]],[[5913,4862],[36,-18],[66,-38],[23,-8],[37,-7]],[[6075,4791],[-6,-19]],[[6069,4772],[-91,19],[14,-83],[4,-15],[28,7],[19,-1],[21,-7]],[[5667,5164],[34,-55]],[[5701,5109],[6,-9]],[[5707,5100],[51,-75],[4,5]],[[5762,5030],[14,-17]],[[5776,5013],[6,5]],[[5782,5018],[-1,-32],[27,-41],[-26,2],[-11,3]],[[5771,4950],[-41,53],[-96,128],[-19,20],[-25,13],[-20,-1]],[[5570,5163],[-1,8],[18,28],[13,36],[7,-2],[-10,5],[-3,1]],[[5594,5239],[3,5],[-23,18]],[[5574,5262],[1,5],[24,-17],[1,-2],[13,-11],[30,-36],[24,-37]],[[6166,4918],[19,-7],[9,51]],[[6194,4962],[0,9]],[[6194,4971],[67,-42],[48,-12],[-5,-32],[-14,3]],[[6290,4888],[-24,6],[-7,-28],[-21,5],[-33,14],[-41,24],[2,9]],[[6268,4865],[4,19],[16,-4],[4,-22],[-24,7]],[[5658,4640],[-55,9],[0,4],[-49,10]],[[5554,4663],[0,1],[7,29],[50,-7],[14,-2],[38,-6],[-5,-35],[0,-3]],[[5690,4673],[0,-29],[18,-2],[3,27]],[[5711,4669],[46,-9],[-4,-35],[-1,-3],[-4,-34],[-91,17],[4,34],[0,2],[4,36],[25,-4]],[[5699,4678],[-19,3]],[[5680,4681],[5,30],[-20,4],[-6,1]],[[5659,4716],[-49,9],[2,33]],[[5612,4758],[57,-11],[38,-7],[16,-3]],[[5723,4737],[-2,-21]],[[5721,4716],[-2,-12]],[[5719,4704],[-16,3],[-4,-29]],[[5519,4742],[24,-5],[-1,-9],[-23,6],[0,8]],[[5469,4730],[15,58],[-8,-65],[-7,7]],[[5475,4719],[-12,-36],[5,43],[7,-7]],[[5427,4686],[30,-12]],[[5457,4674],[-6,-20],[-27,8],[3,24]],[[5486,4944],[0,-17],[18,-1],[-1,-22],[8,-13]],[[5511,4891],[-21,-26],[-7,14],[-13,64],[16,1]],[[5523,4890],[46,-1],[-1,-19],[-45,1],[0,19]],[[5650,4874],[-3,-18],[-13,1],[-2,17],[18,0]],[[5607,4845],[-1,-26]],[[5606,4819],[0,-9]],[[5606,4810],[-1,-12],[27,-1],[-1,-38]],[[5631,4759],[-60,10],[0,21],[1,57],[35,-2]],[[5697,4800],[31,-4],[-3,-25],[-17,1]],[[5708,4772],[-12,2],[1,26]],[[5767,4787],[-26,0],[0,18],[26,-1],[0,-17]],[[5820,4768],[-4,-47],[-26,11],[1,48],[2,24],[28,-1],[-1,-35]],[[5881,4826],[23,-16],[-23,-3],[0,19]],[[5643,4992],[-13,93],[21,1],[20,-26],[14,-106],[-33,0]],[[5652,4954],[-9,38]],[[5619,4991],[-13,-3],[-10,12],[-6,32],[4,13],[-5,29],[38,11],[3,-20]],[[5630,5065],[-22,-11],[1,-6],[10,-57]],[[5643,5096],[4,-7],[-24,-1],[-48,-15],[-17,68],[28,5],[32,-22],[25,-28]],[[5570,5156],[1,-5],[-52,-15],[-4,6],[-1,9],[35,19],[26,27],[17,38],[6,0],[-16,-40],[-13,-17],[1,-22]],[[5763,4937],[0,-6]],[[5763,4931],[-34,8],[34,-2]],[[5469,5085],[9,22]],[[5478,5107],[2,-9]],[[5480,5098],[-9,-22]],[[5471,5076],[-2,9]],[[5481,5112],[20,25]],[[5501,5137],[12,0]],[[5513,5137],[-31,-31]],[[5482,5106],[-1,6]],[[5941,4351],[-2,-18],[35,7]],[[5974,4340],[1,-5]],[[5975,4335],[-74,-23],[-43,-15],[-43,-11],[65,-26],[87,-32],[21,-3]],[[5988,4225],[-1,-7],[-1,-5]],[[5986,4213],[-10,-5],[-29,10],[-16,-62]],[[5931,4156],[-95,37],[-117,43]],[[5719,4236],[9,38],[-17,5]],[[5711,4279],[1,4],[4,19],[6,27],[7,59],[1,6]],[[5730,4394],[39,8],[29,31],[5,29]],[[5803,4462],[7,-1]],[[5810,4461],[-4,-21],[-6,-27],[8,-2],[-11,-95],[8,-19],[30,5],[1,24],[7,5],[44,13],[15,20],[12,-14],[27,1]],[[5913,4463],[-40,10],[12,68]],[[5885,4541],[17,-28],[-1,-7],[17,-24]],[[5918,4482],[-5,-19]],[[5681,4403],[0,-3],[0,-27],[-17,-70],[4,-1],[10,40],[39,-14],[-4,-27]],[[5713,4301],[-57,-33],[8,33],[-163,59]],[[5501,4360],[14,74]],[[5515,4434],[3,0],[163,-31]],[[5685,4401],[40,-7]],[[5725,4394],[0,-3]],[[5725,4391],[-8,2],[-4,-49],[-19,4],[-11,-4]],[[5683,4344],[-4,1],[6,27],[0,24],[0,2],[0,3]],[[5535,4574],[82,-16],[6,48]],[[5623,4606],[29,-5],[-7,-48],[1,-5],[-6,-49],[-114,22],[8,48],[1,5]],[[5741,4530],[-91,17]],[[5650,4547],[0,3],[6,50],[92,-17],[-6,-49],[-1,-4]],[[6009,4420],[-13,-76],[-4,0]],[[5992,4344],[0,52],[-3,30]],[[5989,4426],[20,-6]],[[5987,4451],[-17,37],[-15,12],[3,17],[14,5],[2,14],[13,-85]],[[5209,4565],[24,-2],[2,-18],[-33,-4],[-2,17],[9,7]],[[5359,4630],[29,-4],[-6,-28],[-28,7],[5,25]],[[5391,4628],[4,23],[22,-5]],[[5417,4646],[-3,-23],[-23,5]],[[5385,4423],[-12,4],[-13,-23],[-16,1],[-32,24],[16,34],[21,-15],[7,15],[-38,28],[7,16],[-10,8]],[[5315,4515],[-22,15]],[[5293,4530],[90,10]],[[5383,4540],[7,-15],[4,-65],[4,-7]],[[5398,4453],[-13,-30]],[[5244,4518],[20,-23]],[[5264,4495],[-7,-15],[-22,15],[9,23]],[[5268,4365],[36,-27]],[[5304,4338],[-8,-18],[-10,0],[-21,23],[3,22]],[[5288,4379],[36,-26],[-9,-19]],[[5315,4334],[-35,26],[8,19]],[[5401,4408],[17,-13],[21,-4],[-1,-8],[19,-4]],[[5457,4379],[-17,-28],[-55,18],[16,39]],[[5488,4407],[6,54],[20,-5],[-8,-56],[-18,7]],[[5459,4383],[-18,3],[10,82],[27,-4]],[[5478,4464],[4,-10],[-4,-37],[-14,3],[-5,-37]],[[5509,4506],[11,-2],[-6,-44],[-10,2],[5,44]],[[5534,4582],[-12,-53],[-6,1],[7,54]],[[5523,4584],[11,-2]],[[5323,4566],[-1,38]],[[5322,4604],[10,0],[1,-36]],[[5333,4568],[-10,-2]],[[5326,4675],[37,-4],[-7,-39]],[[5356,4632],[-27,4],[-3,39]],[[4682,3758],[-16,25],[26,7],[7,-11]],[[4699,3779],[-17,-21]],[[4767,3919],[-2,7],[-22,-9],[-4,17]],[[4739,3934],[36,12],[6,-21],[-14,-6]],[[4681,3855],[-12,5]],[[4669,3860],[30,15]],[[4699,3875],[1,-7]],[[4700,3868],[-3,-16],[-16,3]],[[4899,3857],[-8,38],[11,7],[8,-41],[-11,-4]],[[5009,3791],[-1,8],[20,1]],[[5028,3800],[-1,-24],[-9,-6]],[[5018,3770],[-9,21]],[[4946,3804],[16,5]],[[4962,3809],[-2,20],[-10,-3]],[[4950,3826],[-9,-3]],[[4941,3823],[5,-19]],[[4946,3804],[5,-35],[24,1],[7,-16],[9,3]],[[4991,3757],[-25,-16],[-7,10],[-18,44],[5,7]],[[4933,3793],[-11,-1],[-10,15],[11,10],[-14,7],[-1,14],[-3,17]],[[4905,3855],[25,7],[4,-21],[4,-19],[4,-18],[-9,-11]],[[4887,3816],[34,-52],[26,-38],[-49,-40],[-23,37],[-30,49]],[[4845,3772],[13,12],[-3,11],[15,17],[5,-9],[12,13]],[[4836,3779],[36,-60],[20,-34],[-33,-27],[-23,-18],[-35,46],[-8,10],[-36,48],[-37,49],[1,6],[87,26],[28,-46]],[[4926,3630],[-56,-35],[-31,41],[56,45],[31,-51]],[[4893,3564],[17,9],[37,1]],[[4947,3574],[-1,-4],[-40,-22],[-11,13],[-2,3]],[[5131,3776],[-15,-5]],[[5116,3771],[-11,34],[-15,9],[-25,1],[-20,-11],[-12,-18]],[[5033,3786],[-2,49]],[[5031,3835],[12,1],[10,8],[7,26]],[[5060,3870],[8,-6],[24,-21],[33,-48],[6,-19]],[[5086,3924],[6,-4],[-9,-20],[-6,4],[9,20]],[[4984,3974],[-9,18],[4,10]],[[4979,4002],[26,-18],[-9,-19],[-12,9]],[[5081,3933],[-33,24],[12,28],[35,-29],[10,-7],[-11,-26],[-13,10]],[[4714,3739],[8,-12]],[[4722,3727],[0,-9],[-22,-27],[8,-10]],[[4708,3681],[-19,-23]],[[4689,3658],[-20,27],[19,23],[26,31]],[[4738,3695],[-19,-24],[-16,21],[19,24],[16,-21]],[[4766,3722],[-17,-20],[-12,15],[17,21],[12,-16]],[[5089,3962],[6,14],[22,-23],[-4,-8]],[[5113,3945],[-24,17]],[[5081,3710],[-22,7],[-13,11],[-4,28],[5,24],[39,25],[15,-6],[8,-28],[-6,-1],[1,-28],[6,0],[-5,-25],[-24,-7]],[[4782,3533],[21,-25],[18,15],[67,39]],[[4888,3562],[3,-3]],[[4891,3559],[-53,-29],[-26,-19],[-13,-17]],[[4799,3494],[-4,-1],[-46,-1],[-28,-5],[8,32],[-5,5],[-38,42],[-15,41],[36,15],[37,-47],[38,-42]],[[5121,3375],[-12,-43],[-52,20],[-26,22],[-3,9]],[[5028,3383],[23,0],[1,36],[42,-3],[3,-7]],[[5097,3409],[7,-24]],[[5104,3385],[-33,-1],[0,-9],[50,0]],[[4980,3507],[19,-8],[-7,-25],[-12,33]],[[5006,3552],[-51,14]],[[4955,3566],[5,5]],[[4960,3571],[21,-5],[21,20]],[[5002,3586],[7,-7],[-2,-21],[-1,-6]],[[5053,3610],[7,-5],[-3,-27]],[[5057,3578],[-17,24]],[[5040,3602],[13,8]],[[5213,3869],[-60,-2],[-8,5]],[[5145,3872],[15,49],[18,0],[17,10],[31,-6],[26,-55]],[[5252,3870],[-39,-1]],[[5185,3785],[-10,-3],[-18,40]],[[5157,3822],[18,0],[2,12],[38,1]],[[5215,3835],[1,-11],[54,1]],[[5270,3825],[1,-4],[10,-24],[10,-25]],[[5291,3772],[-17,-21],[-2,-8]],[[5272,3743],[-19,3],[1,38],[-25,2]],[[5229,3786],[2,22],[-43,3],[-3,-26]],[[5190,3640],[-10,7],[4,17],[25,-17],[-3,-12]],[[5206,3635],[-16,5]],[[5283,3629],[-6,-23],[-26,10],[6,24]],[[5257,3640],[26,-11]],[[5227,3567],[31,-15],[-20,17],[12,43],[25,-10],[-13,-52],[-9,-35],[-23,14]],[[5230,3529],[3,8],[-16,10],[10,20]],[[5175,3585],[-8,-24],[-35,7]],[[5132,3568],[12,82]],[[5144,3650],[8,-1]],[[5152,3649],[10,-41],[0,-21],[13,-2]],[[5109,3536],[37,-9],[16,-8]],[[5162,3519],[0,-6],[1,-14],[-47,-1],[-6,30],[-1,8]],[[5360,3373],[3,0]],[[5363,3373],[70,0],[0,-38],[15,0]],[[5448,3335],[-6,-9],[-78,0],[-1,12],[53,0],[-8,5],[-49,0],[-1,-17],[-32,1],[1,18],[-7,6],[-30,-1],[0,-23],[-70,0],[0,20],[49,1],[-7,5],[-42,-1],[1,22]],[[5221,3374],[40,-1],[-8,23]],[[5253,3396],[38,-5]],[[5291,3391],[-1,-18],[36,0],[34,0]],[[5371,3553],[-11,5],[3,13]],[[5363,3571],[28,-4],[5,17],[-11,5],[5,19]],[[5390,3608],[3,6]],[[5393,3614],[5,-3]],[[5398,3611],[39,-53]],[[5437,3558],[-21,-28]],[[5416,3530],[-14,6],[-9,-41],[14,7]],[[5407,3502],[13,10],[18,-37]],[[5438,3475],[2,-2],[-51,-18],[-24,0],[-3,0]],[[5362,3455],[1,32]],[[5363,3487],[7,2],[7,16],[-10,4],[6,23],[13,-5],[5,18],[-7,3],[-13,5]],[[5429,3432],[0,29],[14,6],[-2,6],[26,24],[-12,13],[11,16]],[[5466,3526],[12,-13],[22,-25],[9,-9],[-12,-22],[-29,-28],[-7,0],[-32,3]],[[5283,3685],[-20,7],[-4,21],[9,8],[21,-3],[-6,-33]],[[5317,3691],[2,11]],[[5319,3702],[-2,19],[23,-31],[18,-20],[-4,-16]],[[5354,3654],[-22,8]],[[5332,3662],[6,21],[-21,8]],[[5394,3729],[36,3],[57,7],[30,6],[30,6],[6,1]],[[5553,3752],[5,-66],[-5,-56]],[[5553,3630],[-1,-4]],[[5552,3626],[-7,-22],[-16,-28]],[[5529,3576],[-1,-1]],[[5528,3575],[-19,-28]],[[5509,3547],[-2,-3]],[[5507,3544],[-20,-27]],[[5487,3517],[-4,4],[-19,24],[-60,65],[-13,27],[-19,30],[-19,21],[-19,23]],[[5334,3711],[27,7],[19,3],[11,-12],[3,20]],[[5390,3745],[-5,25],[11,8]],[[5396,3778],[16,-39],[-22,-2]],[[5390,3737],[0,8]],[[5327,3905],[-4,-3]],[[5323,3902],[-15,-12],[-20,-18],[-23,-14],[-18,44],[-8,20],[88,-17]],[[5243,3476],[-76,36]],[[5167,3512],[0,5],[-1,15],[11,20],[61,-33],[10,-23],[-4,-13],[-1,-7]],[[4974,3504],[19,-48],[-9,-5],[-8,-24],[-20,-27],[-16,-9],[-30,0],[-21,10],[-14,15],[-10,29],[6,35],[7,13],[-10,26],[66,37],[18,7],[22,-59]],[[5013,3564],[28,-8],[6,-11],[15,5],[41,-7]],[[5103,3543],[2,-14]],[[5105,3529],[-68,10],[-27,11]],[[5010,3550],[3,14]],[[4517,3645],[39,135],[7,20],[39,-43],[6,-13],[2,-70],[-93,-29]],[[4515,3487],[-25,-9]],[[4490,3478],[2,76],[15,55]],[[4507,3609],[92,32],[2,-14],[12,5]],[[4613,3632],[4,-108]],[[4617,3524],[-24,-9]],[[4593,3515],[-2,0]],[[4591,3515],[-33,-13]],[[4558,3502],[-2,0]],[[4556,3502],[-17,-6]],[[4539,3496],[-2,-1]],[[4537,3495],[-20,-7]],[[4517,3488],[-2,-1]],[[4617,3708],[28,2]],[[4645,3710],[12,-20],[49,-66],[-84,-33],[-4,83],[10,9],[-11,25]],[[4693,3512],[-34,42],[21,17],[30,-38],[16,-15],[-7,-28],[-26,22]],[[4668,3606],[11,-34],[-21,-16],[-13,41],[23,9]],[[4622,3589],[20,8],[13,-42],[-31,-15],[-2,49]],[[4665,3515],[-16,-24],[-8,-11]],[[4641,3480],[-16,22],[-1,22]],[[4624,3524],[23,10],[18,-19]],[[4674,3491],[16,19],[23,-23]],[[4713,3487],[-17,-16]],[[4696,3471],[-22,20]],[[4507,3442],[-6,-32]],[[4501,3410],[-13,0],[1,27],[18,5]],[[4623,3453],[1,41]],[[4624,3494],[13,-19],[0,-15],[-14,-7]],[[4593,3426],[4,1]],[[4597,3427],[24,9]],[[4621,3436],[6,-11],[-22,-26],[2,-21]],[[4607,3378],[-14,48]],[[4512,3338],[3,-35]],[[4515,3303],[-28,-11],[2,36],[23,10]],[[4650,3355],[25,29],[11,-6]],[[4686,3378],[7,-38],[-30,-12],[-13,27]],[[4795,3309],[18,-34]],[[4813,3275],[2,-2]],[[4815,3273],[14,-31]],[[4829,3242],[2,-3]],[[4831,3239],[16,-30]],[[4847,3209],[1,-3]],[[4848,3206],[9,-17],[10,-20]],[[4867,3169],[2,-3]],[[4869,3166],[20,-38]],[[4889,3128],[0,-6],[3,0],[-6,-56],[0,-21],[13,-81],[-145,-74],[-12,-6],[-22,-11],[-2,5]],[[4718,2878],[9,6],[-12,31],[-10,-5]],[[4705,2910],[-18,57],[-3,18],[-1,8],[5,66]],[[4688,3059],[20,-4],[54,2],[-24,68],[-11,33]],[[4727,3158],[-2,4]],[[4725,3162],[-5,17]],[[4720,3179],[-17,0],[8,75],[-2,14],[-5,19]],[[4704,3287],[14,27],[-6,2],[26,65]],[[4738,3381],[3,-1],[10,-2],[8,-2],[12,-23],[5,-11],[19,-33]],[[4701,3207],[-19,2],[-27,-59]],[[4655,3150],[-5,-7]],[[4650,3143],[-32,-70]],[[4618,3073],[-1,-2]],[[4617,3071],[-47,-108],[-18,-53],[12,-54],[20,-45]],[[4584,2811],[5,-15],[14,-12],[18,-1],[-12,-37],[6,-25]],[[4615,2721],[-6,-3],[-1,-1],[2,-4],[11,0]],[[4621,2713],[39,-120]],[[4660,2593],[5,-39],[7,-24],[59,-177],[5,-6]],[[4736,2347],[18,-37]],[[4754,2310],[16,-31]],[[4770,2279],[6,-8],[48,28]],[[4824,2299],[2,1]],[[4826,2300],[49,40],[-2,22]],[[4873,2362],[-1,6]],[[4872,2368],[-3,33],[-2,23]],[[4867,2424],[59,4],[10,5],[12,-59],[1,-20],[1,-7],[1,-4]],[[4951,2343],[-25,-30],[3,-7]],[[4929,2306],[-9,-12]],[[4920,2294],[10,-51]],[[4930,2243],[0,-3]],[[4930,2240],[8,-25],[17,11]],[[4955,2226],[16,-44],[33,-46]],[[5004,2136],[-40,-26]],[[4964,2110],[-1,37]],[[4963,2147],[0,4]],[[4963,2151],[-2,15],[-50,-34]],[[4911,2132],[-2,-1]],[[4909,2131],[-21,-14],[-5,12]],[[4883,2129],[-1,3]],[[4882,2132],[-18,63]],[[4864,2195],[-42,-24]],[[4822,2171],[-2,-2],[-6,-52]],[[4814,2117],[4,-29],[23,-65],[-1,-5],[4,-1],[33,-97],[4,-22],[3,-3]],[[4884,1895],[31,-93]],[[4915,1802],[2,-4]],[[4917,1798],[45,-134]],[[4962,1664],[-1,-6],[2,2]],[[4963,1660],[9,-35],[10,11]],[[4982,1636],[3,3]],[[4985,1639],[13,15]],[[4998,1654],[7,-8],[28,-30],[10,-15],[-13,-6],[-21,-12],[3,-18],[17,-38]],[[5029,1527],[120,64],[-8,22]],[[5141,1613],[-10,36]],[[5131,1649],[-5,20],[21,10]],[[5147,1679],[31,-114],[-47,-15],[-37,-17],[-52,-32],[-26,-12],[-4,-2],[-58,-20],[-24,-4],[-3,-1],[-8,-10],[28,4],[47,13],[14,5],[6,5],[4,2],[26,14],[67,35],[70,24],[6,-15],[5,-10],[-57,-37],[-28,-26],[23,-75],[3,-11],[12,7],[13,7],[16,-45],[44,13],[4,-24],[2,0],[1,26],[17,7],[4,-26],[0,-4]],[[5246,1341],[-22,-7]],[[5224,1334],[-1,0]],[[5223,1334],[-72,-22],[4,-18]],[[5155,1294],[7,-51],[6,-13]],[[5168,1230],[-23,-9],[10,-18],[-1,-13],[11,-28]],[[5165,1162],[-18,-7],[-26,41],[-1,1],[-3,-3],[28,-40],[-14,-12],[8,-12],[56,-119],[15,-21],[92,-153],[13,-24],[28,-43],[-7,-5]],[[5336,765],[-25,42]],[[5311,807],[1,3],[-3,0]],[[5309,810],[-7,14],[-109,180]],[[5193,1004],[0,4]],[[5193,1008],[-25,37],[-41,86]],[[5127,1131],[-1,7],[-8,8],[-10,3],[12,-18],[-10,-9],[-23,-13],[-13,5]],[[5074,1114],[1,15],[-8,-1],[-15,24],[-15,-8],[-6,18],[-30,8],[1,-32]],[[5002,1138],[-40,20],[-42,22],[-37,36],[-11,-14],[-65,36],[-24,69],[-28,76],[-2,-1],[98,-273],[49,-139],[-44,-9],[-31,-13],[-62,6],[-25,2],[-24,3],[-152,13],[-35,4],[-22,0],[-33,0],[-9,0],[-7,78],[-7,27],[-28,101],[0,2],[-42,160],[7,3],[15,7],[54,25],[32,13],[82,27],[58,14],[63,10],[10,1],[21,2],[17,2],[14,-63],[2,1],[-14,62],[111,4],[60,0],[14,10],[-11,-1],[-172,-5],[-5,2],[-6,18],[-2,7],[-26,44],[-51,136],[-52,125]],[[4600,1788],[28,19],[-22,55]],[[4606,1862],[87,3],[51,2],[5,1],[41,8],[23,-48],[26,-2],[4,-16],[32,-68],[13,1],[44,-114],[-17,-20],[-7,-17],[-2,-4],[2,-2],[8,21],[16,20],[24,27],[1,1],[-3,2],[-1,-1],[-22,-20],[-41,110]],[[4890,1746],[13,1],[-9,29],[18,9],[-4,10]],[[4908,1795],[-17,50],[-16,51],[-41,120],[-1,2],[-11,5],[-13,39],[-6,16],[-3,2]],[[4800,2080],[-23,14]],[[4777,2094],[-4,1]],[[4773,2095],[-17,3]],[[4756,2098],[-3,-1]],[[4753,2097],[-32,-11],[-9,-8],[3,-6],[15,-36]],[[4730,2036],[-4,-3],[-21,38],[-2,-2]],[[4703,2069],[-20,-20]],[[4683,2049],[-3,-4]],[[4680,2045],[-8,-8],[2,-29]],[[4674,2008],[-17,13],[-2,0],[9,-18],[13,3]],[[4677,2006],[5,-18],[13,7]],[[4695,1995],[3,1]],[[4698,1996],[33,20]],[[4731,2016],[1,1]],[[4732,2017],[14,-14],[12,-39],[18,-22]],[[4776,1942],[11,-62],[-40,-8],[-6,-1],[-59,-2]],[[4682,1869],[8,7],[-37,84],[-34,-23],[26,-69]],[[4645,1868],[-65,-3],[-11,-4],[-22,49],[-4,8],[-27,46],[33,33],[26,37],[23,46]],[[4598,2080],[19,0],[8,21],[-6,39]],[[4619,2140],[10,18],[5,58]],[[4634,2216],[15,2]],[[4649,2218],[9,-23]],[[4658,2195],[-11,-4],[-7,-26],[4,-37],[12,-8]],[[4656,2120],[-18,-19],[3,-37],[8,-32],[2,4],[-5,18],[-6,47],[3,8],[27,18],[4,-8]],[[4674,2119],[0,-3],[44,28]],[[4718,2144],[-6,23]],[[4712,2167],[47,29],[0,18]],[[4759,2214],[-6,41],[-29,92],[-65,192],[-20,53],[-20,62],[-14,41],[-2,15],[-1,4],[-3,-1]],[[4599,2713],[-15,50],[-9,30],[-44,24]],[[4531,2817],[-3,11]],[[4528,2828],[44,-26],[-5,15],[-27,82],[-33,108]],[[4507,3007],[-6,2],[-37,122],[3,11],[1,4],[2,8],[8,34],[2,13],[6,60]],[[4486,3261],[6,2]],[[4492,3263],[-2,-15],[8,-18],[33,-74]],[[4531,3156],[7,-12],[43,20]],[[4581,3164],[-7,-25],[-30,-77],[7,-35],[2,0],[-4,28]],[[4549,3055],[66,17]],[[4615,3072],[2,2]],[[4617,3074],[28,70]],[[4645,3144],[9,13],[-13,35]],[[4641,3192],[34,16],[-6,14]],[[4669,3222],[18,13],[14,26],[4,-4],[-4,-50]],[[4788,2117],[-24,-14],[15,-4]],[[4779,2099],[3,-2]],[[4782,2097],[15,-8]],[[4797,2089],[2,-1],[-20,66],[-1,-1],[10,-36]],[[4567,2965],[-27,19],[-4,4],[-1,-30],[10,-45],[22,52]],[[4626,3219],[-29,-15]],[[4597,3204],[3,19],[22,11],[4,-15]],[[4649,3103],[25,-5],[-1,-8],[-29,3],[5,10]],[[4744,3411],[0,0]],[[4746,3384],[18,40],[21,61]],[[4785,3485],[6,0]],[[4791,3485],[-41,-102]],[[4750,3383],[-4,1]],[[4738,2723],[21,-21]],[[4759,2702],[-1,-33]],[[4758,2669],[-29,23]],[[4729,2692],[9,31]],[[4743,2827],[15,8],[-15,46]],[[4743,2881],[157,81],[50,26],[7,-22],[112,57],[23,4],[57,-6],[67,-5]],[[5216,3016],[-1,-7],[34,-4],[-9,-41],[-17,6],[-2,-9],[16,-9],[-9,-9],[-11,-55],[6,-3],[-4,-20],[-27,12],[0,-72]],[[5192,2805],[-31,-5],[-53,1],[-9,4],[-57,35],[-35,16],[-63,-4],[-23,-9],[-43,-22],[-89,-92],[-26,-27],[-7,79],[-13,46]],[[5085,2489],[-10,-11],[2,-19]],[[5077,2459],[-20,-13],[-10,1],[-2,-2]],[[5045,2445],[-10,-11],[5,-39]],[[5040,2395],[0,-5]],[[5040,2390],[-6,-11],[-57,-9],[-8,-11]],[[4969,2359],[-13,-12]],[[4956,2347],[1,6],[-3,19]],[[4954,2372],[18,-1],[14,15]],[[4986,2386],[5,6]],[[4991,2392],[10,10]],[[5001,2402],[2,2]],[[5003,2404],[41,47]],[[5044,2451],[6,6]],[[5050,2457],[5,7],[-4,37]],[[5051,2501],[28,-11],[8,9]],[[5087,2499],[9,10],[-7,67]],[[5089,2576],[0,4]],[[5089,2580],[-3,22],[-11,8]],[[5075,2610],[-3,2]],[[5072,2612],[-8,6],[-15,11]],[[5049,2629],[-1,1]],[[5048,2630],[-20,15],[-47,74]],[[4981,2719],[-2,3]],[[4979,2722],[-17,31]],[[4962,2753],[-1,2],[-47,-37],[-32,-8],[-26,2]],[[4856,2712],[0,3],[-7,1],[-18,-33]],[[4831,2683],[-1,-5]],[[4830,2678],[-12,-38],[5,-11],[-6,-27],[-22,9],[2,6],[7,22],[-16,7],[2,14],[-28,3]],[[4762,2663],[0,7],[1,27],[27,28],[53,55],[19,19],[16,17],[43,25],[24,8],[61,4],[34,-16],[66,-40],[43,-1],[25,3],[35,4],[26,4],[0,-33],[8,-100],[2,-7],[8,-35],[14,-33],[22,-37],[115,-135],[35,-46],[-53,7],[-46,7],[-154,58],[-1,1],[47,143],[6,20],[0,24],[-1,-24],[-53,-162],[-43,16],[-53,21],[-3,-3]],[[4859,2563],[5,13],[-20,11],[7,24],[10,-6],[35,0]],[[4896,2605],[-37,-42]],[[4612,2599],[2,-12]],[[4614,2587],[4,-35]],[[4618,2552],[-5,-1]],[[4613,2551],[-20,79]],[[4593,2630],[4,3],[15,-34]],[[4733,2534],[1,-9]],[[4734,2525],[-35,18]],[[4699,2543],[-4,1]],[[4695,2544],[-16,9],[0,10],[2,20]],[[4681,2583],[39,-19]],[[4720,2564],[-5,-20],[18,-10]],[[4752,2612],[56,-28],[-57,14],[1,14]],[[4742,2580],[22,-2],[-6,-21]],[[4758,2557],[-22,7],[6,16]],[[4877,2430],[-5,52],[10,2],[-3,38],[-14,11],[2,-17],[-10,-2],[2,-11]],[[4859,2503],[-15,-3],[-2,21],[-14,-2]],[[4828,2519],[-1,15]],[[4827,2534],[3,-1],[18,-6],[6,20],[4,11]],[[4858,2558],[34,-34],[18,-23],[18,-49],[5,-17],[-34,-4],[-10,0],[-12,-1]],[[4950,2576],[4,-35]],[[4954,2541],[-58,4],[-20,1],[-15,15],[30,33]],[[4891,2594],[56,0],[2,-14]],[[4949,2580],[1,-4]],[[5033,2455],[-35,-6],[-8,76],[22,-9],[27,-11],[2,-26]],[[5041,2479],[-7,-2],[-1,-22]],[[5057,2386],[6,3]],[[5063,2389],[-6,55]],[[5057,2444],[21,13]],[[5078,2457],[3,-31]],[[5081,2426],[1,-4]],[[5082,2422],[4,-44]],[[5086,2378],[1,-6]],[[5087,2372],[-30,14]],[[5099,2482],[41,-14],[43,-16],[-31,-95],[-9,-29]],[[5143,2328],[-31,30]],[[5112,2358],[0,4]],[[5112,2362],[-6,56]],[[5106,2418],[0,4]],[[5106,2422],[-7,60]],[[5331,2036],[-16,-9]],[[5315,2027],[-40,-23],[-102,-57],[-7,34],[-32,-18],[-9,49],[148,86],[30,17],[-7,13]],[[5296,2128],[-31,-17]],[[5265,2111],[-2,-2]],[[5263,2109],[-27,-16]],[[5236,2093],[-3,-1]],[[5233,2092],[-26,-14]],[[5207,2078],[-2,-2],[5,-13],[-27,-15],[-4,14],[-5,-3],[5,-14],[-24,-13],[-4,14],[-3,-2],[4,-14],[-27,-15],[-5,13],[-3,-1]],[[5117,2027],[-27,-3]],[[5090,2024],[4,19],[111,65],[-1,2]],[[5204,2110],[-7,18],[-46,-27],[-8,19]],[[5143,2120],[21,12],[14,1],[-1,10]],[[5177,2143],[31,18],[-4,12]],[[5204,2173],[40,24],[15,-9],[3,2],[-44,33],[-7,-4],[-74,-40]],[[5137,2179],[-9,27]],[[5128,2206],[-8,-3],[13,78],[3,22],[1,6],[5,12],[11,33],[22,70],[9,28],[154,-58],[48,-7],[28,-4],[28,-4],[51,-60],[-38,-70],[-25,-39],[-44,-81],[3,-4],[-24,-45],[-18,4],[-14,3],[-2,-51]],[[4769,2402],[-24,-6]],[[4745,2396],[-5,69],[-3,62],[21,-10],[5,-48],[6,-67]],[[4623,2463],[5,-87],[12,-54],[-10,-4]],[[4630,2318],[-10,146],[3,-1]],[[5057,2004],[-15,40],[23,12]],[[5065,2056],[17,-43],[-25,-9]],[[5016,2187],[25,8]],[[5041,2195],[12,-27],[-23,-13],[-14,32]],[[5203,2177],[-4,14],[11,7],[-5,15]],[[5205,2213],[10,5],[26,-19],[-38,-22]],[[5162,2165],[12,-18],[-8,-11],[-4,29]],[[5136,1923],[-31,-11]],[[5105,1912],[-2,12],[31,13],[2,-14]],[[5350,1690],[8,4]],[[5358,1694],[7,-54]],[[5365,1640],[-17,14],[-22,7]],[[5326,1661],[-23,18],[9,10]],[[5312,1689],[14,-13],[24,13]],[[5350,1689],[0,1]],[[5232,1590],[5,-11]],[[5237,1579],[-54,-13],[49,24]],[[5275,1641],[7,14],[25,19]],[[5307,1674],[18,-12]],[[5325,1662],[-23,0],[-25,-23]],[[5277,1639],[-2,2]],[[5062,1943],[1,-15],[-16,-6],[-2,18]],[[5045,1940],[17,3]],[[4980,1809],[-4,23],[21,-13],[-17,-10]],[[4990,1752],[-37,-3],[0,25],[27,9]],[[4980,1783],[10,-31]],[[5107,1739],[22,13]],[[5129,1752],[3,-8],[-23,-13],[-2,8]],[[5112,1710],[2,-6],[-40,-23],[-2,7]],[[5072,1688],[40,22]],[[5244,1868],[15,9]],[[5244,1868],[0,0]],[[5191,1851],[3,-9],[-21,-12],[-2,10]],[[5171,1840],[20,11]],[[5147,1783],[-20,11],[17,9]],[[5144,1803],[3,-20]],[[5222,1838],[-4,12],[25,15],[4,-12],[-25,-15]],[[5322,1866],[-30,-18],[-4,13],[33,19],[1,-14]],[[5291,1845],[32,18],[1,-13]],[[5324,1850],[-29,-16],[-4,11]],[[5212,1791],[-39,-22]],[[5173,1769],[-8,4],[45,25],[2,-7]],[[5290,1774],[5,-15]],[[5295,1759],[-50,-29]],[[5245,1730],[-43,23],[79,47],[9,-26]],[[5319,1924],[-2,23]],[[5317,1947],[15,9]],[[5332,1956],[0,-25]],[[5332,1931],[-13,-7]],[[5031,1672],[5,7]],[[5031,1672],[0,0]],[[5024,1679],[5,-7],[-16,-17],[-5,6],[16,18]],[[5384,1614],[0,0]],[[5384,1614],[-16,26],[21,-25],[-5,-1]],[[5264,1879],[11,7],[-11,30],[6,3],[11,-30],[37,21]],[[5318,1910],[1,-7],[-53,-30],[-2,6]],[[5142,3220],[-7,92]],[[5135,3312],[1,3],[-26,11],[54,-9],[3,-14],[29,-11],[19,-27],[58,-107],[-1,-21],[-33,4],[-13,7],[-32,36],[-29,26],[-23,10]],[[5114,3138],[15,32]],[[5129,3170],[13,-8],[4,5],[-14,13]],[[5132,3180],[11,32]],[[5143,3212],[19,-8],[27,-18],[42,-51],[36,-3]],[[5267,3132],[-5,-48],[-9,2],[-7,-22],[9,-10],[-31,6],[-8,-40]],[[5216,3020],[-65,5],[-61,4],[2,29],[13,39],[16,-7],[-38,28],[6,16]],[[5089,3134],[16,-11],[6,14]],[[5111,3137],[3,1]],[[5411,3176],[-7,8],[-13,-28],[-4,-37],[20,-29]],[[5407,3090],[-14,-20],[-4,-4],[-12,-77],[-17,-25],[-47,9]],[[5313,2973],[2,16],[-22,3],[3,48],[-13,11],[4,34],[17,-1],[-13,10],[0,21],[-15,11]],[[5276,3126],[2,28],[30,20],[86,56],[-2,4],[-30,-21],[-85,-57],[-4,17],[-25,40],[-30,56],[-13,18],[13,29],[26,1],[75,1],[83,-1],[33,0],[12,-2],[0,-31],[0,-59],[-36,-49]],[[5184,3316],[32,1],[-2,-16],[-11,-11],[-19,26]],[[5138,3375],[78,-1]],[[5216,3374],[-1,-54],[-33,-1],[-44,56]],[[5293,3327],[3,20],[24,0],[3,-20],[-30,0]],[[5025,3375],[7,-18],[-57,-1],[5,17]],[[4980,3373],[45,2]],[[5056,3137],[6,15],[25,-17]],[[5087,3135],[-7,-15],[-24,17]],[[4981,3226],[17,-11],[-6,-13],[-16,11],[5,13]],[[4927,3340],[20,-38],[-20,-13]],[[4927,3289],[0,51]],[[4910,3151],[-13,7],[3,25],[18,41],[45,-32],[-43,-24],[-10,-17]],[[4972,3186],[-5,-9],[-33,-16],[-4,10],[36,19],[6,-4]],[[4897,3154],[13,-5],[-5,-37],[-12,4],[4,38]],[[4937,3144],[-28,-13],[3,18],[21,8],[4,-13]],[[4983,3177],[-5,-14],[-39,-18],[-5,13],[32,17],[7,10],[10,-8]],[[4977,3145],[-33,-16],[-5,13],[39,19],[-1,-16]],[[4942,3128],[-32,-17],[-1,18],[29,13],[4,-14]],[[4893,3113],[11,-3],[-3,-38],[-12,0],[4,41]],[[4921,3080],[-18,-7],[0,16],[12,5],[6,-14]],[[4947,3112],[-31,-16],[-6,13],[33,17],[4,-14]],[[4980,3129],[-31,-16],[-5,14],[33,15],[3,-13]],[[4993,3098],[-6,14],[20,7],[-14,-21]],[[4985,3113],[-31,-16],[-5,14],[31,16],[5,-14]],[[4990,3096],[-31,-15],[-4,14],[31,15],[4,-14]],[[4952,3097],[-29,-15],[-6,12],[31,16],[4,-13]],[[4958,3080],[-30,-16],[-4,15],[29,15],[5,-14]],[[4922,3078],[4,-14],[-22,-9],[-1,15],[19,8]],[[4895,3070],[6,0],[4,-46],[-6,-1],[-4,47]],[[4892,3022],[-4,48],[5,0],[4,-47],[-5,-1]],[[4927,3062],[4,-15],[-25,-10],[-2,15],[23,10]],[[4935,3036],[-28,-11],[-1,10],[26,10],[3,-9]],[[4925,3029],[11,5],[14,-44],[-49,-25],[-2,9],[-7,46],[33,9]],[[4959,3078],[4,-14],[-30,-16],[-5,14],[31,16]],[[4967,3052],[-30,-15],[-3,9],[30,16],[3,-10]],[[4968,3050],[2,-7],[-30,-15],[-3,6],[31,16]],[[4970,3041],[3,-10],[-30,-16],[-3,10],[30,16]],[[4974,3029],[3,-11],[-30,-15],[-3,10],[30,16]],[[4978,3017],[3,-10],[-30,-15],[-3,9],[30,16]],[[5012,3020],[9,-19],[-63,-32],[-4,20],[58,31]],[[5010,3033],[3,-10],[-30,-15],[-3,9],[30,16]],[[5006,3045],[4,-10],[-31,-15],[-3,9],[30,16]],[[5002,3057],[4,-9],[-31,-16],[-3,10],[30,15]],[[5000,3066],[2,-6],[-31,-16],[-2,7],[31,15]],[[4996,3078],[3,-9],[-31,-15],[-3,8],[31,16]],[[4995,3080],[-31,-15],[-4,14],[31,15],[4,-14]],[[5019,3112],[-22,-31],[-5,14],[17,23],[10,-6]],[[5027,3106],[-16,-26],[-14,-1],[24,31],[6,-4]],[[5035,3101],[-13,-23],[-19,-18],[27,44],[5,-3]],[[5045,3094],[-15,-24],[-23,-21],[-3,9],[22,22],[11,19],[8,-5]],[[5054,3088],[-24,-38],[-19,-14],[-3,10],[25,22],[14,25],[7,-5]],[[5064,3082],[-10,-21],[-16,-21],[-23,-16],[-3,9],[20,16],[24,37],[8,-4]],[[5082,3069],[10,-7],[-4,-33],[-21,-4],[-45,-23],[-4,20],[30,24],[18,34],[16,-11]],[[5080,3112],[23,-16],[-11,-31],[-25,17],[13,30]],[[5070,3119],[7,-5],[-13,-31],[-7,5],[13,31]],[[5051,3133],[8,-5],[-13,-32],[-8,5],[13,32]],[[5049,3134],[-13,-31],[-5,3],[13,32],[5,-4]],[[5042,3139],[-14,-31],[-6,4],[13,32],[7,-5]],[[5023,3151],[10,-6],[-13,-32],[-10,7],[13,31]],[[5142,3363],[34,-43],[-34,4]],[[5142,3324],[0,39]],[[5178,3317],[14,-20],[-24,8],[-1,12],[11,0]],[[4502,3003],[-28,3],[-5,-9]],[[4469,2997],[4,22],[18,8],[11,-24]],[[4485,3052],[4,-20],[-24,-2],[-8,29],[4,54],[8,-8],[16,-53]],[[4377,3323],[-29,52]],[[4348,3375],[-34,60],[-51,91]],[[4263,3526],[-4,11]],[[4259,3537],[-8,9],[-37,64],[-12,22]],[[4202,3632],[3,7],[4,4]],[[4209,3643],[58,-79]],[[4267,3564],[3,-5],[9,-3],[34,-57],[93,-121],[16,-14],[56,-35],[-3,-70],[2,-18],[-1,-29],[-10,-45],[-2,-7],[-3,-12],[-8,21],[-29,73],[-47,81]],[[4408,3503],[-1,9],[20,66],[49,-23],[-22,-74],[-46,22]],[[4371,3597],[15,-7]],[[4386,3590],[12,-12]],[[4398,3578],[-7,-26],[-28,13],[8,32]],[[4300,3685],[5,24]],[[4305,3709],[19,-6],[-2,-25],[-22,7]],[[4470,3932],[-3,-19],[-16,0],[3,19],[16,0]],[[4453,3844],[4,27]],[[4457,3871],[23,-6],[-7,-26],[-20,5]],[[4422,3851],[5,28],[14,-4],[-5,-27],[-14,3]],[[4228,3839],[30,-4],[-6,-46],[-28,7],[4,43]],[[4253,3760],[-31,7],[2,22],[32,-6]],[[4256,3783],[-3,-23]],[[4251,3686],[7,12],[33,-9],[-3,-14],[-37,11]],[[4289,3666],[11,52],[4,-1],[-11,-52],[-4,1]],[[4276,3606],[12,55],[4,-1],[-12,-56],[-4,2]],[[4456,3048],[7,-20],[11,-6],[-9,-17],[-9,43]],[[4513,3823],[6,-20],[-9,1],[-9,-19],[-31,14],[4,15],[5,18],[34,-9]],[[4487,3749],[-10,-38]],[[4477,3711],[-28,17],[11,32],[27,-11]],[[4543,3824],[13,-14],[-8,-28]],[[4548,3782],[-10,5],[-8,18],[13,19]],[[4430,3663],[22,-11]],[[4452,3652],[-3,-12],[-22,10],[3,13]],[[4494,3787],[-5,-20],[-11,-11]],[[4478,3756],[-18,8],[9,31],[25,-8]],[[4392,3665],[8,32],[28,-11],[-9,-32],[-27,11]],[[4405,3724],[-19,4]],[[4386,3728],[2,13],[19,-4],[-2,-13]],[[4538,2692],[-6,-1],[-25,-8],[-26,35],[-13,18],[20,23]],[[4488,2759],[9,-34],[1,0],[12,-3],[28,-30]],[[4487,2762],[-7,37]],[[4480,2799],[29,14],[-22,-51]],[[4479,2802],[-2,11],[-17,17],[-6,75],[0,42],[-18,-1],[-6,15]],[[4430,2961],[4,32],[12,-3],[20,-15],[20,-53]],[[4486,2922],[6,-65],[23,-24]],[[4515,2833],[-6,-17],[-30,-14]],[[4421,3154],[17,28],[-13,28]],[[4425,3210],[10,-9]],[[4435,3201],[18,-44],[-2,-25]],[[4451,3132],[-16,5],[3,11],[-17,6]],[[4328,3176],[-9,-22],[-11,11],[-23,8],[10,24]],[[4295,3197],[33,-21]],[[4262,3324],[26,20]],[[4288,3344],[16,-35]],[[4304,3309],[-23,-20]],[[4281,3289],[-19,35]],[[4212,3245],[6,12],[-12,18],[32,66],[7,1]],[[4245,3342],[8,-11],[29,-54],[16,-31]],[[4298,3246],[-27,-69]],[[4271,3177],[-26,17],[-27,30],[-6,21]],[[4126,3412],[1,35],[11,-9],[6,10],[14,-15],[-16,-33]],[[4142,3400],[-16,12]],[[4153,3467],[-15,-28],[-37,31],[15,28]],[[4116,3498],[37,-31]],[[4171,3458],[-44,38],[4,4],[44,-36],[30,-22],[-4,-9],[-30,25]],[[4191,3539],[-5,5],[12,26]],[[4198,3570],[14,-10],[-11,-27],[-10,6]],[[4115,3563],[17,-13]],[[4132,3550],[-17,-40]],[[4115,3510],[-16,8],[16,45]],[[4475,2961],[-14,24],[-14,9],[11,19],[17,-52]],[[4455,3021],[0,-14],[-10,-10],[-9,12],[4,19],[9,54],[6,-61]],[[4385,3164],[11,-10],[-14,-22],[-11,11],[14,21]],[[4130,3282],[5,-3],[14,34],[2,2],[13,31],[11,-26],[30,-71],[3,-13],[39,-50],[13,-9],[7,-2],[30,-11],[10,-3],[21,-21]],[[4328,3140],[-9,-26],[-1,-2],[0,-1]],[[4318,3111],[-17,-22]],[[4301,3089],[-68,48],[-63,46],[1,-4]],[[4171,3179],[-12,-8],[1,-23],[-21,15]],[[4139,3163],[-41,29]],[[4098,3192],[-4,3]],[[4094,3195],[-19,14],[12,29]],[[4087,3238],[-1,5]],[[4086,3243],[10,21],[18,22],[16,-4]],[[4398,3070],[38,-30],[-7,-26]],[[4429,3014],[-10,18],[-23,11],[2,27]],[[4195,3496],[-17,-28]],[[4178,3468],[-26,21],[20,25],[23,-18]],[[3578,3181],[-25,18],[6,25],[32,27],[92,76],[-11,-31],[-10,-46],[-8,-18]],[[3654,3232],[-22,-19],[-47,-17],[-7,-15]],[[3811,3468],[-18,-10],[-24,-28],[-1,33],[33,26],[10,-21]],[[3709,3354],[33,-33],[5,-3],[-1,11]],[[3746,3329],[2,4]],[[3748,3333],[3,24],[12,19],[24,40],[-13,13]],[[3774,3429],[18,21],[27,12],[34,-24],[36,-31],[6,-9],[34,-45],[-78,-43],[-22,-18],[-41,-16],[-87,-26],[-38,-8],[9,36],[15,47],[9,11],[13,18]],[[3776,3270],[52,20],[24,19],[74,40],[8,-6]],[[3934,3343],[-26,-20],[-54,-19],[-21,-40],[2,-19]],[[3835,3245],[-1,-2]],[[3834,3243],[-4,-27]],[[3830,3216],[-8,-4]],[[3822,3212],[-46,58]],[[3930,3489],[-9,-7],[12,-34],[-6,-29]],[[3927,3419],[-29,-14],[-14,19],[-62,44],[-8,13],[90,68],[3,-8],[23,-52]],[[3941,3427],[8,13],[15,-14],[-15,-13],[-8,14]],[[3941,3504],[-6,13],[-9,-8]],[[3926,3509],[-19,41],[21,18],[12,9],[10,7],[8,-8],[54,-27],[15,-7],[2,-19],[20,-4],[-7,-42],[-4,-4],[-11,-6],[-86,37]],[[3453,2967],[-15,13],[7,27]],[[3445,3007],[18,-7],[2,-33]],[[3465,2967],[-12,0]],[[3554,2928],[-21,-4]],[[3533,2924],[-7,33],[21,3],[7,-32]],[[3487,2992],[-3,-22],[-17,5]],[[3467,2975],[-2,24],[22,-7]],[[3428,3109],[-16,8],[13,14],[14,-18],[-11,-4]],[[3478,3219],[13,3]],[[3491,3222],[5,-31]],[[3496,3191],[-15,4],[-3,24]],[[3540,3165],[7,9],[23,8]],[[3570,3182],[16,-11],[-11,-24]],[[3575,3147],[-20,-8],[-3,16],[-9,-3]],[[3543,3152],[-3,13]],[[3794,3095],[-5,-6],[9,-37],[-26,-36],[-19,14],[-5,-8]],[[3748,3022],[-44,41],[-21,19]],[[3683,3082],[10,10]],[[3693,3092],[16,20]],[[3709,3112],[12,-8],[4,5]],[[3725,3109],[21,28],[12,17]],[[3758,3154],[4,6],[25,-26]],[[3787,3134],[-2,-3],[9,-36]],[[3563,2867],[-22,11]],[[3541,2878],[-47,26]],[[3494,2904],[-24,14],[-1,10],[80,-43],[14,-18]],[[3588,2507],[4,-31],[2,-15],[38,-209],[14,-75],[-3,-40]],[[3643,2137],[-24,-5],[7,29],[-9,5],[-16,-43]],[[3601,2123],[-14,8],[-2,2],[-34,15],[-3,-6],[-53,3],[-33,4],[-18,-3]],[[3444,2146],[27,50]],[[3471,2196],[12,-9],[1,3],[-33,25]],[[3451,2215],[10,19],[22,42],[24,55],[-9,-1]],[[3498,2330],[-2,1]],[[3496,2331],[-5,14],[-62,-114]],[[3429,2231],[-52,39],[-38,28],[-70,52],[91,134],[34,-24],[0,3]],[[3394,2463],[17,-30],[33,-15],[1,25],[-14,13],[0,30],[-64,8]],[[3367,2494],[41,57],[23,-26],[21,-13],[22,6],[13,16],[7,27],[-8,26],[-22,33],[43,53],[6,6]],[[3513,2679],[36,-222],[14,-1],[0,10]],[[3563,2466],[-1,0],[-4,31]],[[3558,2497],[30,10]],[[3507,2763],[4,17],[22,-11]],[[3533,2769],[-3,-15]],[[3530,2754],[-23,9]],[[3673,2814],[-11,38],[13,10]],[[3675,2862],[18,-26]],[[3693,2836],[-20,-22]],[[3357,2731],[41,-12],[9,38]],[[3407,2757],[33,-11],[7,31]],[[3447,2777],[18,-12],[12,2],[4,1],[15,-8],[22,-61],[-6,-14],[-6,-6],[-6,-7],[-23,-29],[-11,-13],[-16,-20],[-15,16],[-26,34],[-34,44],[-18,27]],[[3665,2532],[-4,17]],[[3661,2549],[-2,15]],[[3659,2564],[8,3],[-7,53],[-8,28]],[[3652,2648],[-4,14]],[[3648,2662],[50,26],[10,-36]],[[3708,2652],[-23,-17],[-3,-21],[8,-51],[-4,-23],[-21,-11],[0,3]],[[3810,2756],[0,-6]],[[3810,2750],[-28,9]],[[3782,2759],[-2,1]],[[3780,2760],[-32,14]],[[3748,2774],[-18,10],[44,104],[26,-8],[5,-86],[5,-38]],[[3600,2941],[25,-7],[-7,-38]],[[3618,2896],[-21,12],[3,33]],[[3602,2843],[43,-42],[6,-9]],[[3651,2792],[-4,-5]],[[3647,2787],[-4,6]],[[3643,2793],[-48,46]],[[3595,2839],[-29,24]],[[3566,2863],[-1,13]],[[3565,2876],[37,-33]],[[3968,2778],[35,-22]],[[4003,2756],[-3,-26],[-40,27],[8,21]],[[3996,2816],[3,26],[-17,10]],[[3982,2852],[18,18],[4,-15],[-1,-44],[-7,5]],[[3824,2950],[18,44],[-11,8]],[[3831,3002],[5,10],[25,-11],[5,-19],[5,-2]],[[3871,2980],[-3,-20],[8,-5],[-10,-26]],[[3866,2929],[-12,6],[-30,15]],[[3988,3212],[12,5],[0,-21],[-11,0],[-1,16]],[[4012,2591],[9,15],[27,9],[26,-7],[-80,55]],[[3994,2663],[14,90],[0,35]],[[4008,2788],[200,-138],[20,-14]],[[4228,2636],[-8,-21],[-7,-18],[15,-9]],[[4228,2588],[0,-1],[5,-6],[-37,-48],[-16,-14],[-6,-18]],[[4174,2501],[-1,0]],[[4173,2501],[-26,-10],[-164,-16]],[[3983,2475],[-24,8],[7,18]],[[3966,2501],[91,-2],[51,4],[43,6],[25,13],[-78,52],[-19,8],[-35,1],[-32,8]],[[4079,2788],[-15,10],[4,12]],[[4068,2810],[17,-5],[-6,-17]],[[4129,3024],[15,-15],[-5,-8],[-15,14],[5,9]],[[4128,3048],[17,40],[7,-15],[-1,-18],[-17,-30]],[[4134,3025],[-6,23]],[[4261,2638],[35,24],[21,9]],[[4317,2671],[6,-10]],[[4323,2661],[-20,-7],[-16,-15],[-34,-41]],[[4253,2598],[-11,11]],[[4242,2609],[19,29]],[[4402,2697],[-71,-30],[-4,-4]],[[4327,2663],[-5,8]],[[4322,2671],[90,38]],[[4412,2709],[16,-1]],[[4428,2708],[-26,-11]],[[4270,2791],[22,-7],[-15,-29]],[[4277,2755],[-16,17],[9,19]],[[4312,2854],[14,22],[7,-5]],[[4333,2871],[7,-9]],[[4340,2862],[-13,-23]],[[4327,2839],[-15,15]],[[4180,2721],[6,19],[12,-8],[13,34],[25,-21],[19,-23],[8,-22]],[[4263,2700],[5,-30],[-4,-26]],[[4264,2644],[-19,28]],[[4245,2672],[-3,7],[-25,17],[-37,25]],[[4009,2840],[-2,31],[44,-27]],[[4051,2844],[-11,-27]],[[4040,2817],[-31,23]],[[4118,2763],[6,23]],[[4124,2786],[16,-20]],[[4140,2766],[-7,-13]],[[4133,2753],[-15,10]],[[4252,1768],[19,9],[7,-19],[-14,-18],[-20,-16],[-10,12],[1,13],[17,19]],[[4360,1885],[-6,-16],[5,-36]],[[4359,1833],[-78,-72],[-1,39],[5,44],[36,24],[39,17]],[[4382,1954],[11,-60]],[[4393,1894],[-36,26],[3,-25],[-36,-18]],[[4324,1877],[-6,80],[10,34]],[[4328,1991],[29,-19],[0,19],[9,26]],[[4366,2017],[9,25],[-20,14]],[[4355,2056],[15,23],[19,-29],[15,-11]],[[4404,2039],[-32,-78],[10,-7]],[[4454,1917],[31,77]],[[4485,1994],[16,-13],[10,-13],[-10,-10],[-47,-41]],[[4481,2267],[-16,-1],[2,41]],[[4467,2307],[21,-1],[-9,-21],[2,-18]],[[4426,2321],[-23,-3],[-9,-2],[4,-31],[2,-24]],[[4400,2261],[-4,2],[-7,71]],[[4389,2334],[12,3],[-1,5],[-1,18],[32,2],[1,-34],[-7,-1],[1,-6]],[[4544,2506],[6,-56],[-18,-17],[-31,-2],[-9,7]],[[4492,2438],[6,27],[-3,21],[4,17],[45,3]],[[4284,2181],[-5,12],[-30,-20]],[[4249,2173],[-7,17]],[[4242,2190],[65,44],[24,-21],[-47,-32]],[[4208,1788],[72,49],[-8,-50],[-26,-18],[-38,19]],[[4584,2366],[18,24],[16,7],[10,-125],[-1,-62],[-28,1]],[[4599,2211],[-2,22],[-1,90],[-10,16],[-2,27]],[[4555,2441],[-8,57]],[[4547,2498],[19,11],[15,-46],[3,0],[30,2]],[[4614,2465],[4,-67],[-16,-2],[-19,-28]],[[4583,2368],[-1,31],[2,49],[-29,-7]],[[4194,2282],[2,31]],[[4196,2313],[20,-15],[-22,-16]],[[4128,2209],[0,4]],[[4128,2213],[-17,44]],[[4111,2257],[15,10]],[[4126,2267],[40,-103],[126,80]],[[4292,2244],[14,-9],[-146,-97]],[[4160,2138],[-3,7],[-12,-21],[-29,-13],[-5,15],[13,9],[4,15],[22,12],[-22,47]],[[3939,1319],[-47,33]],[[3892,1352],[-5,21],[-16,86],[-19,85],[-39,194],[2,101],[-1,28],[5,59],[52,-34],[46,-40],[36,-51],[7,-18],[-6,19],[-27,39],[-8,12],[-47,42],[-30,20],[-21,15],[-7,15]],[[3814,1945],[10,17],[-6,6],[14,23],[-19,35],[-11,13],[8,20]],[[3810,2059],[27,7],[13,9],[21,18],[45,9],[30,-3],[29,-42],[42,-91],[11,-18]],[[4028,1948],[-13,-20],[-13,12],[-11,-19],[26,-24],[19,-38],[-11,-20],[4,-11],[14,15],[27,41],[7,11],[34,51]],[[4111,1946],[25,-74],[2,1]],[[4138,1873],[3,-7],[109,76]],[[4250,1942],[70,49]],[[4320,1991],[4,-1],[-19,-61],[-7,-29],[-18,-59],[-98,-69],[-1,-12],[43,-54],[1,-19],[-23,-69],[-49,-64],[-53,-61],[-15,-18],[-46,-48],[-100,-108]],[[4608,2119],[-9,89]],[[4599,2208],[28,-1],[-6,-41],[-13,-47]],[[4426,2103],[-23,-58]],[[4403,2045],[-21,21]],[[4382,2066],[15,34],[14,-6],[15,9]],[[4486,1996],[20,24],[11,23],[10,2],[-41,23]],[[4486,2068],[2,2]],[[4488,2070],[40,27]],[[4528,2097],[23,-5],[8,-16],[28,-9],[-27,-45],[-24,-30],[-24,-23],[-26,27]],[[4434,2201],[1,12],[17,-4]],[[4452,2209],[-4,-34]],[[4448,2175],[-5,-33]],[[4443,2142],[-18,2],[9,57]],[[4487,2385],[-1,4]],[[4486,2389],[0,25],[25,6],[-9,9]],[[4502,2429],[27,3],[22,16],[4,-13],[0,-40]],[[4555,2395],[-68,-12],[0,2]],[[4092,2246],[16,-46]],[[4108,2200],[-19,-16],[-24,-17],[-2,-7],[-9,-30],[-13,-44],[-59,52],[44,52],[8,9],[50,42],[8,5]],[[4436,2683],[42,33]],[[4478,2716],[4,-5]],[[4482,2711],[-31,-25],[0,-37]],[[4451,2649],[-14,1],[-1,33]],[[3964,2148],[-1,-11],[-14,-22],[-16,10],[-1,-1],[-8,-18]],[[3924,2106],[-54,-11],[-23,-21],[-2,-2]],[[3845,2072],[-37,19],[-14,-6],[-7,-21]],[[3787,2064],[-16,6],[10,40],[6,23],[81,169],[77,165],[7,15],[39,-15],[50,-37],[88,-61],[-40,-122],[-28,-21],[-28,-25],[-53,-61],[-38,25],[6,-4],[16,-13]],[[3728,2097],[-73,46],[-9,-4]],[[3646,2139],[3,36],[-13,78],[-11,53],[-8,44],[-20,111]],[[3597,2461],[76,27],[25,9],[51,5],[14,1],[192,-3]],[[3955,2500],[-74,-157],[-23,-49],[-22,-48],[-10,6],[-114,86],[19,-17],[103,-78],[-38,-82],[-13,-18],[-55,-46]],[[3582,2130],[-25,-71],[-26,-70],[-6,-17],[-28,-80]],[[3497,1892],[-24,23],[-66,77],[-18,22],[-25,11],[-20,34],[-42,26],[-13,14],[-27,13],[197,32],[34,-3],[73,-6],[16,-5]],[[3499,1889],[-17,-92],[-4,-8],[-7,-63],[9,-13],[-3,-48],[-7,-18],[17,-39]],[[3487,1608],[-11,8],[-12,-11],[-22,53],[5,19],[-12,23],[13,29],[14,35],[-4,14],[-13,-1],[11,18],[-14,-6],[-9,30],[-14,2],[-18,21],[-23,4],[-10,22],[-2,22],[-12,18],[-19,-6],[-1,15],[-18,9],[-18,6],[4,12],[-17,-5],[-14,12],[-8,19],[-32,16],[-4,22],[-15,4],[-7,12],[-27,-1],[-18,-8],[-26,15],[-5,18],[-14,3],[-10,-31],[-62,23],[-41,5],[-4,12],[-19,12],[-25,8],[-27,0],[-3,13],[-25,14],[-63,-34],[-11,2]],[[2825,2075],[-3,4],[-9,7]],[[2813,2086],[-16,-6]],[[2797,2080],[-6,21],[4,11],[-5,28]],[[2790,2140],[-2,3]],[[2788,2143],[-6,8],[-46,-5],[-12,5]],[[2724,2151],[-2,1]],[[2722,2152],[-41,29]],[[2681,2181],[-3,1]],[[2678,2182],[-14,63]],[[2664,2245],[1,4]],[[2665,2249],[8,29],[-1,10]],[[2672,2288],[14,17]],[[2686,2305],[11,-15],[29,-5],[24,-10],[-9,-12],[20,-22],[23,28]],[[2784,2269],[31,-30],[22,-12],[18,-5],[35,7],[29,7]],[[2919,2236],[-9,-36],[22,-55]],[[2932,2145],[-3,-10],[-8,-12]],[[2921,2123],[-4,-12],[40,-24],[7,11],[-2,43]],[[2962,2141],[-1,2]],[[2961,2143],[-3,48],[-10,4]],[[2948,2195],[15,46]],[[2963,2241],[46,-55]],[[3009,2186],[-4,-5],[19,-25],[16,-20],[-33,46],[3,3],[49,55],[5,5],[7,8],[17,-21],[9,-30],[17,-22],[32,-27],[17,-4],[-60,-92],[54,79]],[[3157,2136],[5,-19],[18,-29],[-16,-28],[18,-23],[18,3],[17,-11],[11,32],[31,-17],[27,55]],[[3286,2099],[16,-16],[41,-25],[5,-7],[17,-28],[23,-11],[8,-10],[55,-66],[21,-23],[24,-22],[3,-2]],[[3657,1981],[-20,-39],[-38,-83],[-20,-47]],[[3579,1812],[-27,21]],[[3552,1833],[24,19],[-47,-30],[-8,38],[-20,30]],[[3501,1890],[11,36],[42,116],[28,69],[12,11]],[[3594,2122],[28,-15]],[[3622,2107],[2,-26],[35,-25],[-11,-26],[9,-23],[-9,-19],[9,-7]],[[3688,2032],[7,15],[8,-5],[-8,-16]],[[3695,2026],[-7,6]],[[3773,2088],[-20,11],[-7,-26],[-16,9]],[[3730,2082],[15,20],[39,32],[-11,-46]],[[3677,1983],[17,16],[39,-25],[14,-10],[20,-21],[44,-58]],[[3811,1885],[-1,-50],[-2,-100],[-11,-157],[-24,-163],[-29,-87],[-29,-67],[-2,-11]],[[3713,1250],[8,7]],[[3721,1257],[48,34],[29,-29],[43,-19],[11,3],[-21,-28],[-10,-4],[-35,-17],[-45,-34],[-57,-45],[-3,15],[-11,40],[8,18],[23,30],[8,24],[-23,-43],[-16,-30],[11,-53],[-8,1],[-9,23],[-28,4],[-8,37],[-9,15],[5,20],[-13,23],[2,29],[10,13],[-16,-3],[2,11],[-11,37],[2,23],[11,44],[-9,28],[2,17],[-2,27],[-10,17],[-23,10],[-2,11],[-19,11],[1,7],[-42,2],[-3,18],[12,3],[5,16]],[[3521,1563],[8,8],[27,17],[35,25],[2,49],[43,39],[-28,26],[0,20],[18,17],[-10,18]],[[3616,1782],[-1,1]],[[3615,1783],[-12,21]],[[3603,1804],[-1,1]],[[3602,1805],[-5,10],[-27,-59]],[[3570,1756],[-8,6],[29,64],[35,79],[15,34],[36,44]],[[3555,1608],[-8,-6]],[[3547,1602],[-29,40],[-9,-9]],[[3509,1633],[-3,4],[28,64]],[[3534,1701],[7,-7],[-6,-31],[17,-26],[3,-29]],[[3569,1756],[-18,-42],[-8,6]],[[3543,1720],[19,41],[7,-5]],[[3773,1296],[2,27],[-26,13]],[[3749,1336],[17,49],[10,37],[21,141],[6,29],[5,52],[3,93],[41,-194],[25,-123],[26,-139],[-13,-13],[-33,-19],[-18,-4],[-41,19],[-7,8],[16,45],[-18,-43],[-16,22]],[[3966,2074],[29,49]],[[3995,2123],[31,-27],[-38,-64],[-22,42]],[[3984,1365],[19,20],[25,26],[97,105],[80,103],[22,70],[-2,18],[-40,50],[-1,15],[20,14],[41,-19],[-18,-24],[4,-47],[-23,-80],[-14,-66],[-2,-14],[-13,-66],[-22,-112],[-27,54],[-60,-46],[-71,-46],[-44,-49],[5,-18],[-3,-19],[-17,2],[-24,-27],[-44,28],[-8,6],[-7,4],[37,22],[34,35],[56,61]],[[4225,1668],[8,25],[-3,47],[7,-14],[19,0],[-31,-58]],[[3561,1688],[-10,1]],[[3561,1688],[0,0]],[[4317,1420],[3,-12],[3,-11],[-14,-4],[-71,21],[-8,7],[-2,-8],[98,-29],[-9,-49],[0,-18],[-21,-13],[-38,-26],[6,24],[-20,22],[-34,6],[-42,8],[-5,10],[18,104],[3,14],[13,73],[1,5],[2,11],[14,65],[7,22],[26,60],[17,28],[15,18],[16,-74],[3,-15],[2,-9],[16,-68],[-21,-23],[-62,-64],[-17,5],[-2,-10],[87,-27],[6,-3],[10,-40]],[[4286,1730],[-4,22],[22,23],[17,1],[5,-11],[-6,-15],[-28,-21],[-6,1]],[[4328,1759],[-2,14],[-18,8],[47,41],[-18,-25],[-9,-38]],[[4477,1929],[37,33],[28,-46],[3,-8],[7,-15],[75,-174],[20,-48],[52,-137],[28,-52],[3,-9],[5,-18],[-33,-3],[-11,-1],[-58,-9],[-87,-22],[-40,-13],[-46,-18],[-82,-38],[-38,142],[-21,90],[-17,70],[-2,10],[-11,58],[30,23],[11,14],[6,31],[9,20],[59,56],[73,64]],[[4327,1405],[-2,11],[-32,118],[3,14],[25,11],[9,-37],[24,-98],[16,-61],[-6,-3],[-25,3],[-12,42]],[[4367,1346],[-35,-21],[-6,18],[4,14],[35,-5],[2,-6]],[[4262,1517],[29,-4],[9,-39],[-59,18],[21,25]],[[4285,1540],[4,-21],[-19,8],[15,13]],[[4588,607],[153,-316],[-7,-36],[-16,-26],[12,-84],[29,-103],[10,-26],[-11,-16],[-28,56],[-31,-29],[-3,4],[-48,135],[-2,-1],[-51,137],[-101,-35],[-45,113],[-6,7],[-49,103],[49,12],[145,105]],[[4743,291],[-151,316],[165,-9],[200,-60],[10,-7],[-50,-62],[-8,-350],[-41,46],[-39,33],[-51,48],[-35,45]],[[4924,908],[-10,-2],[3,-17],[-7,-8],[3,-36],[24,14]],[[4937,859],[16,-47],[3,-22],[-2,-207],[10,-44],[-203,61],[8,11],[5,47],[-8,23],[-16,18],[-13,27],[-13,27],[-9,9],[-32,7],[-50,66],[-9,37],[-18,12],[-14,20],[-50,2],[-40,4],[-25,2],[-4,-29],[-3,15],[-6,73],[8,0],[33,0],[63,-3],[145,-13],[23,-2],[90,-8],[30,12],[46,10],[22,-59]],[[5011,678],[19,-45],[49,32],[36,52],[-46,52],[-75,-48]],[[4994,721],[-32,74],[62,56]],[[5024,851],[34,-41],[31,26],[7,-12],[10,14],[-12,19],[33,30]],[[5127,887],[17,-19],[9,-35],[29,-69],[-27,71]],[[5155,835],[13,11],[19,-41],[-4,-5],[15,-17],[17,-32],[4,3],[27,-52]],[[5246,702],[-32,-10],[-197,-100],[-49,-61],[-11,34],[1,217],[-1,22],[48,-115],[6,-11]],[[4978,985],[-5,-37],[5,-33],[44,-60]],[[5022,855],[1,-2],[-57,-51],[-6,-2],[-26,75],[-9,35],[-20,56],[61,13],[12,6]],[[5238,1048],[-12,-14],[-13,-15],[-14,-4],[-12,17],[-51,108],[31,18],[1,1],[29,20],[38,-30]],[[5235,1149],[-19,-50],[18,-12],[-6,-20],[10,-19]],[[4808,1237],[64,-36],[-13,-20],[-17,-39],[-34,95]],[[5006,1132],[-7,-28],[23,-8],[10,11],[48,-14]],[[5080,1093],[-67,-66]],[[5013,1027],[-26,36],[-5,-6],[-46,-53],[0,-9],[31,-4],[28,31],[7,-9]],[[5002,1013],[-35,-29],[-64,-13],[-7,18],[-30,84]],[[4866,1073],[64,67],[33,-20],[10,14],[18,-10],[4,13]],[[4995,1137],[11,-5]],[[4852,1112],[-9,29],[17,39],[20,33],[14,-12]],[[4894,1201],[-14,0],[-9,-33],[-8,-49],[-11,-7]],[[4372,1312],[-24,-59],[-13,-20],[-3,-18],[-46,-118],[132,85]],[[4418,1182],[0,-3],[35,-129],[3,-23],[10,-141],[-6,-5],[-60,7],[-33,24],[-23,4],[-6,15],[-17,8],[-12,-5],[3,125],[-43,24],[-2,2],[-36,25],[2,67],[6,33],[15,57],[76,49],[25,-6],[17,2]],[[4335,1319],[41,23],[5,-22],[-22,-9],[-24,8]],[[5378,796],[-22,5],[-11,21],[-11,7]],[[5334,829],[32,25],[21,32],[39,-47],[3,2]],[[5429,841],[12,21]],[[5441,862],[2,3]],[[5443,865],[13,23]],[[5456,888],[59,-64],[23,-27],[-2,-21],[-40,11],[-17,-40],[-7,-17],[-57,40],[-30,30],[-7,-4]],[[5349,993],[-30,-52],[7,-6],[6,-27],[17,-21],[7,11]],[[5356,898],[19,-22],[-11,-20],[-31,-26]],[[5333,830],[-14,32],[-24,19],[-23,33],[-31,58],[-21,23],[-8,20]],[[5212,1015],[16,17],[34,38],[21,31],[31,-19],[35,-89]],[[5382,960],[51,72]],[[5433,1032],[47,-18],[27,-12],[39,-31],[0,-72],[-3,-37],[-4,-58],[-85,93],[-11,12],[-29,24],[-32,27]],[[5491,1033],[-9,-2],[-47,52],[-6,-15],[-39,30],[-11,27],[-15,-17],[-1,15]],[[5363,1123],[49,34],[5,3],[91,26],[22,11],[6,-87]],[[5536,1110],[-25,-42],[-20,-35]],[[5464,1326],[66,-59],[0,-65],[-59,-21]],[[5471,1181],[-28,48],[-7,6],[28,91]],[[5293,1108],[6,-3],[14,30]],[[5313,1135],[35,-18]],[[5348,1117],[-34,-30],[-27,15],[6,6]],[[5311,1312],[2,-5],[-18,-17],[-7,14]],[[5288,1304],[23,8]],[[5375,1344],[-2,-3],[-25,-29],[-25,44],[-13,2],[-55,-19],[-3,4],[-1,4]],[[5251,1347],[63,20],[29,-1],[32,-22]],[[5201,1521],[-9,22],[-5,12],[202,52],[-2,-40],[-7,-70]],[[5380,1497],[-37,-20],[-7,23],[-38,-19],[-7,18],[-20,-11],[1,-21]],[[5272,1467],[-10,28],[-17,50],[-44,-24]],[[5279,1436],[-29,-15]],[[5250,1421],[-8,25],[28,17],[9,-27]],[[5213,1402],[-14,-6],[-3,26],[-24,68],[-5,18],[26,17],[46,-128],[3,-22],[-19,-9],[-10,36]],[[5175,1476],[-36,-19],[-9,27],[34,23],[11,-31]],[[5157,1398],[-22,-12],[-24,79],[17,17],[29,-84]],[[5209,1198],[-15,-7],[-7,11],[15,12],[7,-16]],[[5417,1164],[-5,-3]],[[5412,1161],[16,43],[0,33],[-10,28],[-43,74]],[[5375,1339],[2,3]],[[5377,1342],[42,-72],[12,-45],[-2,-28],[-12,-33]],[[3377,3413],[2,-3],[10,-167],[-4,-4],[-60,0],[-2,2],[-1,169],[55,3]],[[3251,3257],[27,2],[8,19],[-4,39],[-22,4],[-22,15],[-9,-14]],[[3229,3322],[-13,21],[39,70],[63,0],[1,-172],[-2,-2],[-57,-1],[-9,19]],[[3347,3513],[18,-7],[-26,-4],[-17,4],[25,7]],[[3343,3517],[-1,24]],[[3342,3541],[14,-1]],[[3356,3540],[-2,-25]],[[3354,3515],[-11,2]],[[3375,3616],[-4,-66]],[[3371,3550],[-20,4],[3,64],[21,-2]],[[3459,3697],[-10,-15],[14,-14]],[[3463,3668],[-7,-10],[-21,20],[19,23],[5,-4]],[[3405,3833],[24,58],[16,-8],[-24,-60],[-16,10]],[[3652,3730],[12,44],[20,-8]],[[3684,3766],[-12,-43],[-20,7]],[[3663,3780],[5,19]],[[3668,3799],[18,-6],[-5,-20],[-18,7]],[[3401,3833],[-2,0],[24,60],[3,-1],[-25,-59]],[[3611,3581],[-39,-31]],[[3572,3550],[-32,40]],[[3540,3590],[28,39]],[[3568,3629],[43,-48]],[[3616,3537],[-26,-15],[-15,24]],[[3575,3546],[29,23],[12,-32]],[[3545,3521],[-6,-13]],[[3539,3508],[-14,6]],[[3525,3514],[-4,2]],[[3521,3516],[-15,6]],[[3506,3522],[-15,15],[4,16],[18,-2]],[[3513,3551],[16,-15]],[[3529,3536],[3,-4]],[[3532,3532],[13,-11]],[[3235,3804],[-51,22],[-27,22],[-12,15],[6,5]],[[3151,3868],[10,-13],[24,-8],[11,-12],[45,-7]],[[3241,3828],[-1,-6],[-2,-7],[-3,-11]],[[3046,3760],[28,1],[31,32],[9,23],[36,31]],[[3150,3847],[18,-17],[39,-21],[9,-4]],[[3216,3805],[-6,-92],[-3,-48]],[[3207,3665],[-3,-61],[-54,65],[-77,64],[-27,27]],[[3088,3866],[13,-25],[-27,-5],[-2,28]],[[3072,3864],[16,2]],[[3163,3891],[5,-9]],[[3168,3882],[-23,-9],[-3,-3],[-45,72]],[[3097,3942],[6,6]],[[3103,3948],[30,-41],[7,-23],[23,7]],[[3424,3669],[7,-34]],[[3431,3635],[-22,-11],[-25,-4],[-30,2],[1,28],[22,-1],[47,20]],[[3502,3752],[-32,18],[-52,36],[20,51]],[[3438,3857],[21,-12]],[[3459,3845],[4,-2]],[[3463,3843],[-1,-1]],[[3462,3842],[-15,-39],[-21,12],[-3,-6],[82,-46]],[[3505,3763],[-3,-11]],[[3496,3811],[22,20],[13,-1],[14,-19],[-1,-22],[-13,-17],[-20,-1],[-16,9],[1,31]],[[3365,3835],[-2,-6],[-30,-1],[-31,-22],[-2,-29]],[[3300,3777],[-5,2]],[[3295,3779],[3,38]],[[3298,3817],[6,82]],[[3304,3899],[4,1],[53,9],[52,-13]],[[3413,3896],[-14,-32],[-22,3],[-10,-27]],[[3367,3840],[-2,-5]],[[3297,3432],[0,34],[19,-1]],[[3316,3465],[8,-4]],[[3324,3461],[2,-28],[-29,-1]],[[3329,3429],[0,-4],[-34,2]],[[3295,3427],[2,0]],[[3297,3427],[32,2]],[[3258,3429],[-2,-5]],[[3256,3424],[-5,-7]],[[3251,3417],[-33,5],[-13,-3],[-63,14],[-1,-4]],[[3141,3429],[-1,-4]],[[3140,3425],[-43,31],[-48,14]],[[3049,3470],[-2,5],[-5,-1]],[[3042,3474],[-84,26]],[[2958,3500],[-116,34],[-1,-4]],[[2841,3530],[-23,12],[-24,6]],[[2794,3548],[-1,4],[-74,22]],[[2719,3574],[-33,4],[0,-2]],[[2686,3576],[-4,0],[2,-6],[-64,-31],[-27,-32],[-20,30],[-3,1],[-4,-4]],[[2566,3534],[-25,-15],[-65,-28],[-22,-18]],[[2454,3473],[-9,7]],[[2445,3480],[14,14]],[[2459,3494],[11,8],[12,24],[45,16],[26,14],[9,-14],[6,-1],[1,4],[-9,20],[12,9],[27,7]],[[2599,3581],[10,-20],[25,14],[-4,12]],[[2630,3587],[24,2],[28,-6],[2,1]],[[2684,3584],[20,-2],[76,-23]],[[2780,3559],[5,-1]],[[2785,3558],[4,-1]],[[2789,3557],[4,0],[0,2]],[[2793,3559],[21,-6],[5,-2]],[[2819,3551],[23,-7]],[[2842,3544],[4,-1],[0,3]],[[2846,3546],[15,-3],[4,42]],[[2865,3585],[8,-1]],[[2873,3584],[-5,-49],[29,-9]],[[2897,3526],[60,-17],[19,7],[20,-9]],[[2996,3507],[0,-4],[16,-8],[35,-16],[1,2]],[[3048,3481],[10,-3],[-1,25],[11,11]],[[3068,3514],[39,-8],[35,-10],[52,-21],[77,21],[-10,-62],[-3,-5]],[[2866,3592],[5,55]],[[2871,3647],[8,-1]],[[2879,3646],[-5,-55]],[[2874,3591],[-8,1]],[[2927,3584],[2,28],[27,-4],[2,27]],[[2958,3635],[51,-7]],[[3009,3628],[-5,-55]],[[3004,3573],[-77,11]],[[2561,3723],[-30,-29],[-27,-37]],[[2504,3657],[-6,-5],[1,-1],[21,-40],[-16,-25],[-25,-52],[-24,-6],[-29,7],[7,17],[61,105],[2,-2],[4,8]],[[2500,3663],[17,28],[40,40]],[[2557,3731],[1,-3],[2,5]],[[2560,3733],[56,53]],[[2616,3786],[4,1],[-1,2],[-15,50],[46,23],[33,9],[-6,-31],[17,16],[6,15],[11,-2],[13,8],[-23,4],[15,22],[15,8],[26,8],[-38,-11],[17,16],[32,16],[-6,-51],[-4,23],[1,-24],[3,1],[2,0],[5,52],[7,-50],[3,1],[-2,33],[10,17],[26,12],[36,11],[54,17],[47,21],[9,13],[6,31],[11,-5]],[[2976,4042],[-1,-20],[-15,-14],[4,-21],[23,0],[7,11]],[[2994,3998],[1,-16],[-30,-3],[-116,-16],[12,-49],[5,-1],[0,2]],[[2866,3915],[32,5],[95,27],[0,-6]],[[2993,3941],[-94,-27],[-32,-5]],[[2867,3909],[0,2],[-3,-3]],[[2864,3908],[-51,-12],[-34,-8]],[[2779,3888],[-3,0],[4,-19],[-17,1],[1,16],[-5,-1],[1,-15],[-28,5],[-17,-6],[1,-1]],[[2716,3868],[6,-34]],[[2722,3834],[-22,-12],[-14,3]],[[2686,3825],[6,26],[-16,-15],[-6,-55],[-7,-36],[-18,-38],[-23,72],[-1,3],[-2,-4],[23,-75],[-18,-20],[-30,-21],[-31,64],[-3,0],[1,-3]],[[2771,3941],[12,0],[-10,-24],[-2,24]],[[3038,3934],[-10,38],[45,-5],[3,-4],[-38,-29]],[[3049,3537],[33,-6]],[[3082,3531],[4,20],[8,-2],[74,-15],[26,-2],[52,3],[27,2],[-3,-38],[-24,-5],[-47,-16],[-54,20],[-17,6],[-79,17],[0,16]],[[2721,3660],[8,-33],[-21,-8],[-8,33],[21,8]],[[3016,3998],[5,-41],[-22,11],[-2,26],[19,4]],[[2684,3817],[6,-2],[-11,-72],[-20,-43]],[[2659,3700],[-7,-13],[-4,12],[14,25],[14,48],[8,45]],[[2902,3580],[15,-2]],[[2917,3578],[-2,-19],[17,-2],[-2,-15],[-31,4]],[[2899,3546],[3,34]],[[2941,3642],[-19,2],[-2,19]],[[2920,3663],[0,10]],[[2920,3673],[10,4],[-1,42],[-1,35]],[[2928,3754],[36,1]],[[2964,3755],[1,-35],[0,-30],[14,0],[1,-26],[-2,-28]],[[2978,3636],[-13,2]],[[2965,3638],[3,28],[-25,11],[-2,-35]],[[2587,4364],[-14,-14],[-13,8],[1,19],[22,25],[4,-38]],[[2627,3875],[62,32]],[[2689,3907],[2,-12],[-12,-14]],[[2679,3881],[-45,-15],[-7,9]],[[2392,3351],[-38,-74],[-5,-15],[-10,4],[-6,3]],[[2333,3269],[22,41],[40,84],[2,19],[-14,-27]],[[2383,3386],[-4,2]],[[2379,3388],[-35,15]],[[2344,3403],[47,76]],[[2391,3479],[13,-27],[-4,-32],[10,14],[15,44]],[[2425,3478],[22,-3],[5,-7],[10,-4],[-35,-49]],[[2427,3415],[0,3]],[[2427,3418],[24,47],[-10,-6],[-46,-90],[4,-4]],[[2399,3365],[-7,-14]],[[2550,3619],[18,-37]],[[2568,3582],[-15,-10],[-18,31],[15,16]],[[2614,3590],[-12,25],[10,6],[15,-30]],[[2627,3591],[-13,-1]],[[2327,3396],[0,17],[-48,23],[-22,5]],[[2257,3441],[15,42],[77,-25],[10,-13],[-29,-51],[-3,2]],[[2215,3685],[-10,-14],[9,-22],[2,-23],[4,-18],[20,4],[1,11]],[[2241,3623],[9,31],[65,-22],[3,-5],[-12,-32],[10,3],[51,-16],[-8,-32]],[[2359,3550],[-7,-14],[53,-15]],[[2405,3521],[-16,-25],[-38,-8],[-74,24],[-27,-77],[-54,28],[7,32]],[[2203,3495],[-7,4],[-13,-10],[10,-25]],[[2193,3464],[-14,22],[-3,41],[1,40],[1,8],[5,42],[9,32],[15,35],[8,1]],[[2546,3562],[-13,-9],[-46,-16],[15,26],[26,33],[18,-34]],[[2308,2822],[0,28],[-9,24],[-14,10]],[[2285,2884],[-2,8],[-1,3],[-10,24],[-8,6],[-32,4],[-11,7],[-26,31],[-4,14],[21,38],[6,9],[29,35],[16,26],[13,31],[10,-10],[25,-18],[42,-18],[-5,-23]],[[2348,3051],[-12,6],[-50,-105],[11,-8],[30,-16],[14,-18]],[[2341,2910],[3,-5]],[[2344,2905],[14,-28]],[[2358,2877],[1,-1]],[[2359,2876],[9,-29],[-6,-7],[3,-25],[10,-16],[31,-35],[20,-12],[17,-19],[6,3],[4,7]],[[2453,2743],[1,3]],[[2454,2746],[26,58]],[[2480,2804],[1,3]],[[2481,2807],[19,43],[14,31]],[[2514,2881],[14,-20],[51,-72]],[[2579,2789],[-28,-33],[6,-17],[5,-31],[-15,-18],[-15,19],[-12,-15]],[[2520,2694],[-16,19],[10,10],[-18,37],[-8,7],[-16,-14],[-7,-20],[-18,-5],[-15,-1],[-7,-8]],[[2425,2719],[-4,9],[-19,-7],[-23,13],[-32,1]],[[2347,2735],[-33,32],[0,15],[-1,23],[-5,17]],[[2374,2865],[13,40],[20,41]],[[2407,2946],[30,-27]],[[2437,2919],[-38,-76],[-15,-26]],[[2384,2817],[-10,48]],[[2481,2915],[8,-11],[-8,-19],[-14,10],[14,20]],[[2367,3174],[-7,-64],[-16,26],[-19,54]],[[2325,3190],[42,-16]],[[2450,3095],[8,-15],[1,5]],[[2459,3085],[3,5]],[[2462,3090],[11,4]],[[2473,3094],[55,8],[20,10],[38,31],[36,-24],[72,-43]],[[2694,3076],[-10,-15],[-50,-73],[44,-18],[23,-13]],[[2701,2957],[5,-3],[4,5],[9,12]],[[2719,2971],[13,-8],[58,36],[11,-6]],[[2801,2993],[-9,-1],[-52,-35]],[[2740,2957],[-2,-5],[77,-48],[1,-21]],[[2816,2883],[-31,18]],[[2785,2901],[-52,32],[-40,-57],[-38,-26],[-5,6],[-6,-23],[-19,5]],[[2625,2838],[-35,44],[-2,-3]],[[2588,2879],[-9,12],[-16,-20]],[[2563,2871],[-3,-3]],[[2560,2868],[-15,-20]],[[2545,2848],[-28,40]],[[2517,2888],[25,55],[1,2]],[[2543,2945],[1,1]],[[2544,2946],[6,15]],[[2550,2961],[1,2]],[[2551,2963],[9,19],[-41,28],[-20,12],[-19,10],[-17,9],[-18,10],[-16,7]],[[2429,3058],[-2,1],[-11,-15]],[[2416,3044],[7,18],[-22,9]],[[2401,3071],[-5,3]],[[2396,3074],[-3,14],[-29,15]],[[2364,3103],[1,8],[1,7],[0,5],[9,55],[6,-1],[34,-19],[34,-16],[-14,-42],[4,-3],[11,-2]],[[2165,3370],[7,14],[21,-28],[-28,14]],[[2192,3703],[-3,26],[7,10],[3,-17],[-4,-21]],[[2195,3701],[-3,2]],[[2353,3801],[-11,-33],[-24,8],[12,35]],[[2330,3811],[23,-10]],[[1783,4416],[23,14],[120,83],[-6,14]],[[1920,4527],[9,9],[1,-20],[2,-15],[21,-162],[11,-93],[-41,24],[-34,23],[-34,23],[-59,40],[-10,7],[-10,25],[7,28]],[[1322,3352],[47,62]],[[1369,3414],[14,0],[36,10]],[[1419,3424],[4,2]],[[1423,3426],[2,0],[23,7],[-1,7],[-2,14],[5,40]],[[1450,3494],[32,-2],[2,-14],[28,11],[16,14],[6,17],[14,21],[28,19],[55,-86],[54,-85],[6,-9],[11,-18],[34,-52],[2,-5],[7,-46],[6,-49],[12,-39],[-8,-76],[-27,0],[-36,-12]],[[1692,3083],[6,50],[-6,3],[-11,1]],[[1681,3137],[-25,5],[-16,8],[-38,19],[-32,0]],[[1570,3169],[-1,13],[-26,-1],[0,-13]],[[1543,3168],[-59,0],[-68,-6],[-37,-5],[-61,-10]],[[1318,3147],[17,68],[-2,1],[-23,9],[-14,-34],[-12,-28]],[[1284,3163],[-16,17],[0,12],[-35,13],[-22,-3]],[[1211,3202],[-4,3],[-16,28],[57,50],[31,21],[10,8],[52,-12],[-7,6]],[[1334,3306],[-5,15],[-5,23],[-2,8]],[[1386,3233],[-6,-1],[4,-25],[33,-8],[2,24],[-33,10]],[[1482,3766],[-7,-17],[-5,28],[-21,20],[-4,7],[-24,11],[8,71],[26,0],[12,0],[23,11],[20,4],[15,11],[-16,-64],[-9,-39],[-18,-43]],[[1612,3656],[-2,18],[-13,-1]],[[1597,3673],[-20,8]],[[1577,3681],[-29,29]],[[1548,3710],[-30,11],[-35,13],[-6,11],[18,45],[11,29],[11,55],[11,37],[12,-5],[11,12],[16,22],[4,15]],[[1571,3955],[25,6],[3,11]],[[1599,3972],[3,21],[30,30],[32,16],[3,-16],[27,-52],[8,-63],[20,-29],[17,-43],[3,-20],[-5,-35],[-3,-24],[13,-40],[27,-68],[14,-28],[10,-10],[21,-23],[14,-12],[8,-21],[3,-31],[9,-79],[1,-9],[1,-9],[5,-45],[1,-9],[5,-29],[10,-15],[50,-47],[7,-16],[26,-58],[15,-30],[16,-17],[24,-13],[22,-3],[22,-18],[17,-19],[-38,-1],[-87,-9],[-34,4],[-22,-4],[-16,-6],[-36,-3],[-49,1],[-33,7],[5,61],[0,21],[-11,31],[-6,52],[-7,47],[-35,53],[-2,2],[-11,18],[-60,93],[-5,8],[-8,14],[-4,5],[-38,59],[40,18],[-2,30],[-3,46],[-1,1]],[[1820,3579],[-9,-6],[11,-25],[10,6],[-12,25]],[[2185,3158],[-11,18],[25,-1],[-14,-17]],[[1781,3916],[16,-42],[-4,-11],[15,-14],[14,37],[-28,22],[-5,28],[21,65],[0,25],[-35,-13],[6,-97]],[[1667,4261],[-4,8],[-21,-1],[-17,9],[-32,2],[-1,-18],[-10,-33],[33,-35],[33,27],[27,8],[-8,33]],[[2352,2924],[-1,5],[21,45],[3,-2],[-23,-48]],[[2407,3030],[3,-4],[-34,-53],[-3,3],[34,54]],[[2488,3675],[-21,21],[32,-6],[-11,-15]],[[2185,3782],[-10,59]],[[2175,3841],[22,7],[1,-10]],[[2198,3838],[1,-4]],[[2199,3834],[4,-38],[-17,-1],[2,-12]],[[2188,3783],[-3,-1]],[[2338,3670],[43,-10],[-6,-38]],[[2375,3622],[-50,12],[13,36]],[[2227,3232],[-8,-22]],[[2219,3210],[-19,31],[4,8],[23,-17]],[[2232,3224],[13,-16]],[[2245,3208],[9,10]],[[2254,3218],[32,-13]],[[2286,3205],[-29,-52],[-40,29],[15,42]],[[2434,3318],[16,18],[23,-58]],[[2473,3278],[9,-29]],[[2482,3249],[-31,15],[3,21],[-20,33]],[[1460,3640],[9,-14],[-4,-18],[-13,3],[8,29]],[[1277,2929],[18,2],[11,1]],[[1306,2932],[2,0]],[[1308,2932],[28,4]],[[1336,2936],[2,0]],[[1338,2936],[27,3]],[[1365,2939],[2,0]],[[1367,2939],[21,2],[0,19]],[[1388,2960],[11,-8],[1,-110],[-1,-66],[-36,-2],[-41,-3],[-31,0],[-20,29],[-7,8]],[[1264,2808],[4,44]],[[1268,2852],[-11,67],[7,6],[13,4]],[[1549,2792],[10,1]],[[1559,2793],[10,-54],[-17,7],[-3,46]],[[1444,2885],[-19,-2]],[[1425,2883],[-3,32],[20,3],[1,-10],[15,2],[1,-14],[-15,-2],[0,-9]],[[1205,3204],[9,-7],[67,-46],[33,-7],[12,2],[-13,-103]],[[1313,3043],[-33,1]],[[1280,3044],[-1,0],[-18,-72],[0,-12],[1,-10],[-13,-10],[-37,-54],[-16,-18],[-25,31]],[[1171,2899],[5,3],[21,39],[-11,52],[-16,39],[1,22],[-38,33],[-5,26],[1,38],[6,26]],[[1135,3177],[2,4]],[[1137,3181],[7,-2],[36,24],[20,-3],[5,4]],[[1521,3164],[-2,-30]],[[1519,3134],[-1,-3]],[[1518,3131],[-2,-29]],[[1516,3102],[-5,-64],[-1,-5],[-109,-67],[-4,4],[-1,-1]],[[1396,2969],[1,29],[1,39],[-18,1]],[[1380,3038],[-2,1]],[[1378,3039],[-9,0],[-53,3]],[[1316,3042],[12,105],[23,5],[71,8],[62,5],[37,-1]],[[1313,2394],[16,-11]],[[1329,2383],[63,-53],[3,5]],[[1395,2335],[19,-15],[-1,-13],[28,-5],[22,-21],[17,17],[6,-5]],[[1486,2293],[-17,-23],[-34,17],[-45,11],[-75,30],[-67,3],[21,23],[44,40]],[[1579,2928],[-10,6],[8,11],[50,9],[4,-21],[-52,-5]],[[1631,2955],[42,3],[2,-16],[-40,-8],[-4,21]],[[1264,2960],[42,3]],[[1306,2963],[-42,-11],[0,8]],[[1308,2963],[56,4]],[[1364,2967],[0,-4],[-56,-4],[0,4]],[[1367,2967],[29,2]],[[1367,2967],[0,0]],[[1546,3059],[-33,-24],[-1,4]],[[1512,3039],[34,20]],[[1550,3072],[64,5]],[[1614,3077],[0,-4],[-39,-3],[-22,-11],[-3,13]],[[1681,3081],[-2,-4],[-62,-4],[0,4]],[[1617,3077],[64,4]],[[1866,2238],[-25,1],[-26,-11]],[[1815,2228],[-13,-7],[-49,-7],[-27,8],[-96,35],[-29,3],[-55,18],[-28,-12],[-17,-7],[-24,5],[17,22],[42,50],[60,60],[10,10],[93,-142],[26,-8],[85,29],[34,28],[17,4],[11,-9],[4,-17],[-2,-31],[-8,-22]],[[1534,2520],[16,17],[19,-29]],[[1569,2508],[-17,-15],[-18,27]],[[1599,2479],[-12,17],[-6,-6],[-12,18]],[[1569,2508],[22,21],[22,-35]],[[1613,2494],[-14,-15]],[[1403,2959],[37,4],[16,10]],[[1456,2973],[3,-6]],[[1459,2967],[-18,-11],[-38,-4]],[[1403,2952],[0,7]],[[1458,2974],[60,37]],[[1518,3011],[0,-8]],[[1518,3003],[-57,-35]],[[1461,2968],[-3,6]],[[1521,3013],[25,15]],[[1546,3028],[0,-8]],[[1546,3020],[-26,-15]],[[1520,3005],[1,8]],[[1552,3032],[16,9],[47,7]],[[1615,3048],[0,-7]],[[1615,3041],[-46,-7],[-17,-10]],[[1552,3024],[0,8]],[[1285,2722],[19,-88],[9,2]],[[1313,2636],[2,-8]],[[1315,2628],[-17,-5],[-21,96]],[[1277,2719],[8,3]],[[1315,2638],[56,12],[37,4]],[[1408,2654],[1,-8]],[[1409,2646],[-45,-6],[-47,-11]],[[1317,2629],[-2,9]],[[1250,2592],[15,-79],[37,0]],[[1302,2513],[0,-8]],[[1302,2505],[-42,-1],[-16,86]],[[1244,2590],[6,2]],[[1294,2607],[10,-43],[23,8]],[[1327,2572],[13,-55]],[[1340,2517],[-36,-12]],[[1304,2505],[-1,36],[-12,65],[3,1]],[[1340,2527],[67,31],[9,1]],[[1416,2559],[-2,-14]],[[1414,2545],[-4,6],[-68,-33]],[[1342,2518],[-2,9]],[[1228,2682],[6,3]],[[1234,2685],[16,-90]],[[1250,2595],[-6,-3]],[[1244,2592],[-16,90]],[[1294,2753],[106,6]],[[1400,2759],[0,-8]],[[1400,2751],[-105,-6]],[[1295,2745],[-1,8]],[[1259,2748],[4,1]],[[1263,2749],[8,0],[-9,41],[8,-1],[13,-61],[-9,4],[-42,-32],[-5,-13],[-8,48],[-10,0]],[[1209,2735],[-2,11]],[[1207,2746],[52,2]],[[1963,1133],[-1,14],[-10,14],[7,79],[-7,16],[10,26],[1,20]],[[1963,1302],[9,-2]],[[1972,1300],[-16,-31],[5,-28],[-7,-81],[7,-9],[15,9],[12,132]],[[1988,1292],[4,-4]],[[1992,1288],[-3,-6],[-11,-124],[-13,-11],[1,-14]],[[1966,1133],[-3,0]],[[2034,1518],[7,8],[12,13]],[[2053,1539],[9,-6],[9,-4],[4,32]],[[2075,1561],[1,-9],[10,5],[5,38],[-9,2]],[[2082,1597],[-2,1]],[[2080,1598],[8,52],[3,23],[4,19]],[[2095,1692],[43,-18],[16,-5],[7,-58],[-3,-34],[-4,-14],[7,12],[3,24],[-1,34],[35,-13],[10,-5],[7,18],[69,-26],[2,-7],[-110,-149],[-4,-8],[-12,-20],[-54,-96],[-38,-70],[-22,10],[-38,18],[-3,-3],[3,-2],[36,-17],[22,-10],[-60,-115],[-12,-1],[-11,-2]],[[1983,1135],[5,32],[10,118]],[[1998,1285],[3,-1],[-3,5],[-17,13],[-29,9],[3,29],[4,38],[47,-7],[5,48],[5,85],[7,52],[6,68],[10,101],[4,-1],[-4,6],[7,45],[24,64],[29,50],[28,36]],[[2127,1925],[1,-3],[25,32]],[[2153,1954],[7,-9]],[[2160,1945],[-50,-62],[-30,-48],[-19,-46],[-14,-63]],[[2047,1726],[-3,-3],[4,-2]],[[2048,1721],[-18,-179]],[[2030,1542],[0,-2]],[[2030,1540],[-1,-6]],[[2029,1534],[0,-3]],[[2029,1531],[-2,-16]],[[2027,1515],[0,-4],[5,6]],[[2032,1517],[-11,-147],[25,-2],[8,-1],[3,20],[23,-5],[11,21],[6,38],[-12,23],[-11,1],[4,22],[-44,31]],[[2207,1295],[-25,1],[-9,-64]],[[2173,1232],[-15,5],[-40,1],[-21,7],[-26,9],[52,95],[9,16],[10,17],[33,-43],[32,-44]],[[2284,1204],[-6,-18],[-81,36],[15,66],[49,-69],[23,-15]],[[2323,1596],[-7,-28]],[[2316,1568],[-14,10],[-13,18],[6,8],[28,-8]],[[2113,1772],[17,31]],[[2130,1803],[24,-7]],[[2154,1796],[-10,-51],[-12,-65]],[[2132,1680],[-36,16]],[[2096,1696],[13,64],[4,12]],[[2263,1736],[-6,13],[15,9],[4,-15],[-13,-7]],[[2178,1915],[-18,4],[23,28],[4,-19],[-9,-13]],[[2219,1957],[0,0]],[[2327,2028],[2,13],[26,0],[22,-8],[-2,-25]],[[2375,2008],[-48,20]],[[1790,1817],[-67,-4],[11,36],[51,17],[6,-33]],[[1791,1833],[-1,-16]],[[1778,1925],[0,0]],[[1902,1835],[0,0]],[[1973,1869],[7,1],[5,-21],[-12,20]],[[2012,1756],[0,0]],[[1959,1916],[0,0]],[[2034,1908],[0,0]],[[2037,2075],[-21,5],[2,13],[22,-5],[-3,-13]],[[2110,2082],[17,22]],[[2127,2104],[5,-5]],[[2132,2099],[-10,-23]],[[2122,2076],[-12,6]],[[2275,1874],[-7,-12],[-32,27],[-3,16],[42,-31]],[[2269,1861],[7,12],[53,-42],[-5,-14],[-55,44]],[[2349,1787],[5,3],[27,-17],[-2,-5],[-30,19]],[[1894,1907],[11,-27]],[[1905,1880],[-26,-21],[-16,22],[22,23],[9,3]],[[2108,1237],[6,-14],[5,11]],[[2119,1234],[46,-3],[27,-11],[-25,-45],[-13,-37],[-22,4],[4,-2],[20,-6],[0,2],[16,42],[23,41],[80,-37],[-4,-41],[-8,-30],[-2,-16],[-15,7],[-14,7],[-29,4],[-50,11],[-52,12],[-31,-3],[-50,2],[-2,17],[13,25],[13,25],[25,49],[39,-14]],[[2345,1145],[-18,-20],[1,-8],[-19,-18],[-11,-19],[-30,12],[-5,2],[9,46],[2,30],[14,45],[57,-70]],[[2260,1472],[-7,-10],[35,-41],[31,48]],[[2319,1469],[5,2]],[[2324,1471],[7,-7]],[[2331,1464],[-3,-5],[-53,-88],[-48,-79],[61,-75],[-3,-10],[-21,16],[-44,59],[-40,54],[-16,23],[-21,25],[36,61],[79,109],[6,-5],[24,-13],[-14,-38],[-16,-24],[2,-2]],[[2399,1843],[-17,7]],[[2382,1850],[9,7]],[[2391,1857],[7,-8],[11,13],[11,29],[15,24],[9,42]],[[2444,1957],[25,-17],[-18,-49],[-36,-57]],[[2415,1834],[-7,6]],[[2408,1840],[-9,3]],[[2457,1987],[16,2]],[[2473,1989],[5,-15],[-9,-1],[-5,-24],[-18,11]],[[2446,1960],[10,25]],[[2456,1985],[1,2]],[[2188,1995],[49,56],[8,-10],[-66,-79]],[[2179,1962],[-13,-17]],[[2166,1945],[-6,7],[-2,9]],[[2158,1961],[30,34]],[[2293,2238],[23,-27]],[[2316,2211],[-20,-26]],[[2296,2185],[-21,26],[18,27]],[[2282,2282],[0,0]],[[2334,2263],[0,0]],[[2589,2524],[0,0]],[[2612,2550],[-17,0]],[[2595,2550],[-7,23],[-16,8]],[[2572,2581],[11,5]],[[2583,2586],[7,0],[20,26]],[[2610,2612],[9,-16],[0,-18],[-14,-18],[7,-10]],[[2538,2146],[21,-10],[-2,-9],[-22,11],[3,8]],[[2562,2134],[22,-8],[6,21],[24,31],[15,-6],[18,-18],[-24,-30],[-9,-28],[-22,-7],[-30,45]],[[2432,2235],[0,0]],[[2786,2331],[-22,2],[-14,19],[23,3],[12,-6],[1,-18]],[[2754,2490],[-6,-17],[11,-13],[26,-4]],[[2785,2456],[-4,-6],[29,-29],[27,-20],[17,13]],[[2854,2414],[18,-30],[-12,-13],[1,-2]],[[2861,2369],[-2,-10],[11,-19],[14,-2],[-7,-10],[49,-46],[8,-12],[11,2],[13,-15]],[[2958,2257],[-21,-11],[-80,-19],[-13,2],[-28,15],[-28,27]],[[2788,2271],[35,44],[8,10],[-8,21],[0,19],[-24,42],[-35,24],[6,11],[-20,10],[-22,0],[26,38]],[[2736,2352],[9,-4],[-6,-14],[-13,14],[10,4]],[[2708,2384],[16,-18],[-17,-24]],[[2707,2342],[-13,-16],[-27,33],[17,20],[8,-15],[16,20]],[[2557,2653],[13,16],[17,-22]],[[2587,2647],[2,-3]],[[2589,2644],[6,-17],[-14,-19]],[[2581,2608],[-2,9]],[[2579,2617],[-1,24],[-21,12]],[[2614,2694],[10,15],[9,-17]],[[2633,2692],[-10,-13],[-9,15]],[[2991,2416],[30,-27]],[[3021,2389],[-8,-10],[21,-28]],[[3034,2351],[2,-2],[-39,-49],[-26,10],[-36,40],[-33,39]],[[2902,2389],[9,10],[13,-5],[-17,22],[-15,26],[18,17],[22,-19],[15,-13],[28,-25],[6,-5],[10,19]],[[2862,2648],[-1,2]],[[2861,2650],[-23,10],[-26,-7]],[[2812,2653],[2,3]],[[2814,2656],[12,10],[27,9],[8,9],[8,-12],[14,9]],[[2883,2681],[34,-17],[4,-12]],[[2921,2652],[-4,-5],[-45,-4]],[[2872,2643],[-4,3]],[[2868,2646],[-4,5],[-2,-3]],[[2948,2545],[9,-2],[1,-27],[23,3]],[[2981,2519],[9,-21]],[[2990,2498],[-17,-22]],[[2973,2476],[-17,13]],[[2956,2489],[3,6],[-22,22],[11,28]],[[2967,2622],[11,-14]],[[2978,2608],[2,-28],[23,-43]],[[3003,2537],[10,-10],[-20,-26]],[[2993,2501],[-26,65],[-16,39]],[[2951,2605],[16,17]],[[3160,2209],[-15,-23],[14,-14],[-12,-17]],[[3147,2155],[-31,27],[-7,10]],[[3109,2192],[30,44]],[[3139,2236],[21,-27]],[[3127,2397],[-1,-2]],[[3126,2395],[-8,-9]],[[3118,2386],[-9,22],[-19,11]],[[3090,2419],[28,30]],[[3118,2449],[21,22]],[[3139,2471],[23,-37],[16,-25],[-2,-56]],[[3176,2353],[-22,55],[-8,9],[-19,-20]],[[3096,2296],[51,58]],[[3147,2354],[14,-27],[-47,-53],[-18,22]],[[3203,2392],[-23,-31]],[[3180,2361],[1,46],[22,-15]],[[3164,2437],[50,57],[37,-4],[14,-14],[9,14]],[[3274,2490],[48,-53]],[[3322,2437],[-9,-14],[-48,-71],[-86,61],[-15,24]],[[3060,2454],[5,21],[27,0],[6,-13],[-16,-24],[-22,16]],[[3189,2234],[12,17],[12,-13]],[[3213,2238],[-9,-12],[1,-26]],[[3205,2200],[8,-15],[25,-27],[28,53],[23,43],[29,55]],[[3318,2309],[52,-38]],[[3370,2271],[-10,-23],[56,-42],[12,22]],[[3428,2228],[26,-19]],[[3454,2209],[-36,-67]],[[3418,2142],[-158,-26],[-11,-16]],[[3249,2100],[-30,25],[-8,7],[10,18],[-13,21],[-19,63]],[[3197,2108],[19,-8],[17,-15],[-11,-8],[-29,27],[4,4]],[[2825,3003],[2,-25],[8,-4],[25,3],[5,11],[19,0],[-15,20],[3,13]],[[2872,3021],[10,4]],[[2882,3025],[15,-6],[27,-41],[32,-36],[-5,-21],[5,-4]],[[2956,2917],[-2,-6]],[[2954,2911],[-10,-5],[-14,19],[-7,-9]],[[2923,2916],[-6,2]],[[2917,2918],[-23,-26],[-15,-17]],[[2879,2875],[-54,36],[-6,3],[-7,83],[13,6]],[[2887,3078],[-2,-4],[-67,-25],[-8,3],[72,34],[5,-8]],[[3035,3116],[11,-18],[4,-21]],[[3050,3077],[-15,-17]],[[3035,3060],[-6,8],[-14,-17],[-6,3],[15,63]],[[3024,3117],[11,-1]],[[2872,3206],[-21,-13],[-13,6],[-8,-13]],[[2830,3186],[-26,23],[-3,-5]],[[2801,3204],[-22,-4]],[[2779,3200],[-7,17],[0,7],[30,7],[65,-12],[5,-13]],[[3093,3139],[-27,19],[-38,14]],[[3028,3172],[3,11],[37,-14],[30,-21],[-5,-9]],[[2594,3159],[-15,41],[-17,43]],[[2562,3243],[34,42],[33,39],[45,53],[77,-100],[7,-15],[5,-34],[-54,-11],[-36,-13],[-23,-11],[-56,-34]],[[2557,3342],[-10,19]],[[2547,3361],[25,30],[12,-17],[-27,-32]],[[2508,3463],[4,15]],[[2512,3478],[24,-5],[6,-12]],[[2542,3461],[-7,-7],[-27,9]],[[2886,3245],[37,-4],[9,15],[38,-17]],[[2970,3239],[-10,-26],[-87,14],[13,18]],[[2941,3473],[-4,-14],[-14,23],[21,3],[-3,-12]],[[2968,2839],[57,-84],[-49,-34],[-5,6],[-25,90]],[[2946,2817],[22,22]],[[2551,3223],[-1,-5]],[[2550,3218],[-18,8],[6,22],[-6,12],[9,10],[9,-23],[-6,-21],[7,-3]],[[2558,3506],[6,2],[10,-22],[-5,-5],[-11,25]],[[3023,3178],[-2,-10],[-50,17],[-43,2],[-25,-17],[-16,-3],[-10,42],[1,8],[79,-13],[48,-11],[20,-8],[-2,-7]],[[3082,3242],[23,-30]],[[3105,3212],[-10,-15],[-29,31],[16,14]],[[2919,2729],[-27,31],[24,29]],[[2916,2789],[23,-32],[-20,-28]],[[3354,2865],[-4,8]],[[3350,2873],[6,29]],[[3356,2902],[26,-10],[-9,-42]],[[3373,2850],[-18,7],[-1,8]],[[3208,2952],[-16,-1]],[[3192,2951],[-2,58],[3,12]],[[3193,3021],[12,-10],[3,-59]],[[3274,2572],[7,36],[-43,15],[12,52],[-15,17]],[[3235,2692],[11,39],[12,14],[21,-8],[2,-14],[44,-62],[35,-45],[2,-29],[-10,-13],[-15,-17],[-15,-1],[-48,16]],[[3145,2555],[-59,42],[5,5],[-6,39],[10,0]],[[3095,2641],[30,-8],[1,1],[-13,17],[28,41]],[[3141,2692],[3,-3],[5,-6],[10,-15],[8,-27],[0,-27],[-7,-28],[-15,-31]],[[3019,2744],[37,-51]],[[3056,2693],[-13,-13]],[[3043,2680],[-37,55],[13,9]],[[2946,3186],[3,-25],[2,-54],[-4,-2]],[[2947,3105],[-2,64],[1,17]],[[3446,2598],[15,14],[21,-27],[8,-31],[-7,-20],[-17,-15],[-23,1]],[[3443,2520],[-3,31],[12,2],[-1,15],[9,12],[-14,18]],[[3120,2722],[10,42]],[[3130,2764],[17,11],[3,15],[15,17],[50,3]],[[3215,2810],[-8,-31]],[[3207,2779],[-5,-26],[42,-14]],[[3244,2739],[-1,-3]],[[3243,2736],[-30,-8],[-31,-14],[-9,7],[1,-3],[6,-7],[1,-25],[-14,8],[-14,-6]],[[3153,2688],[-5,5],[-3,3],[-25,26]],[[2765,3101],[29,5]],[[2794,3106],[1,-12]],[[2795,3094],[-25,-26],[2,-9],[-14,-16]],[[2758,3043],[-52,32]],[[2706,3075],[31,16]],[[2737,3091],[2,1]],[[2739,3092],[25,9]],[[2764,3101],[1,0]],[[2673,2799],[11,9]],[[2684,2808],[17,-22],[20,11]],[[2721,2797],[53,-71],[-15,-30]],[[2759,2696],[-21,25],[-28,23],[-6,24],[-16,6],[-15,25]],[[2769,2739],[-32,42],[14,18],[28,-34]],[[2779,2765],[8,-12],[-18,-14]],[[2714,2829],[14,0],[22,-29],[-13,-16],[-23,27],[0,18]],[[2753,2873],[4,28],[13,3],[-2,-35],[-15,4]],[[2816,3120],[12,4],[-12,42]],[[2816,3166],[19,8],[42,-48]],[[2877,3126],[-26,-11],[-43,-17],[-1,19],[9,3]],[[2626,3123],[-19,16],[-6,4],[-7,7],[50,33],[41,19],[20,7],[59,13],[3,-8]],[[2767,3214],[-47,-13],[3,-11]],[[2723,3190],[-12,-6],[-12,5],[-6,-2]],[[2693,3187],[-2,-1],[-1,0]],[[2690,3186],[-27,-12],[-25,-34],[-12,-17]],[[2769,3229],[-3,31],[27,-23],[-24,-8]],[[2608,3519],[15,17],[60,28],[10,-24],[-32,-37]],[[2661,3503],[-30,17],[-23,-1]],[[2709,3426],[-7,-8]],[[2702,3418],[-18,26],[-1,34],[26,-52]],[[2705,3517],[19,23],[8,8],[17,-24],[6,-21]],[[2755,3503],[-2,-4]],[[2753,3499],[-20,17],[-18,-30]],[[2715,3486],[-10,31]],[[2801,3244],[-40,32],[-30,36],[-52,71],[49,58],[47,91],[17,4],[62,-254],[13,-54],[-47,8],[-19,8]],[[6277,3511],[63,0],[-18,74],[-11,-6],[-48,2],[6,-35]],[[6269,3546],[-2,-10]],[[6267,3536],[-82,-6],[2,-36]],[[6187,3494],[-7,-2],[4,142],[9,90],[9,54],[35,-3],[37,-2],[-1,4],[-14,55],[-24,101],[11,-14],[13,-5],[15,-84],[21,-90],[34,-142],[-1,-7],[11,-43],[16,-58],[-12,5],[-62,-1],[-4,17]],[[6325,3143],[5,-17],[14,7],[-5,18]],[[6339,3151],[17,9],[5,-31],[6,-11],[6,-41],[-68,-12],[-7,-6],[-23,-45],[-36,28],[-16,12],[-4,11],[-6,17],[55,30],[57,31]],[[6203,3164],[55,22],[38,15],[27,11],[18,6],[13,-52],[-17,-9],[-68,-38],[-10,-6],[-49,-27],[-28,30],[-3,1],[-15,9],[-7,20],[46,18]],[[6098,3288],[-13,33],[-66,122],[11,11],[32,9],[136,25],[25,2],[54,-3],[22,-89],[-52,-20],[13,-57],[52,20],[27,-115],[-81,-32],[-37,-13],[-68,-27],[-20,49],[-35,85]],[[6299,3394],[12,-49],[-49,-19],[-11,49],[48,19]],[[6421,3165],[-7,34],[-2,-1]],[[6412,3198],[-51,-29],[-7,29],[-27,112],[47,21],[9,-4],[0,2],[-6,9],[-11,47],[0,-17],[-48,-19],[-33,137],[60,-3],[11,0],[25,-103],[3,-20],[10,-44],[5,-8],[20,-82],[9,-57],[-7,-4]],[[6374,3332],[-48,-16],[-7,26],[48,18],[7,-28]],[[6233,3924],[-4,-2],[-43,31],[47,-19],[0,-10]],[[6177,3574],[-42,-6],[-1,46],[44,-11],[-1,-29]],[[5971,3516],[8,32],[10,61],[-6,50],[-19,35],[-22,10],[-126,30],[1,4],[129,-32],[23,-13],[16,-31],[30,84],[10,28]],[[6025,3774],[48,145],[-31,28],[-83,22],[0,-4],[52,-13],[1,-4],[-15,-103],[-54,11],[-8,-53],[-46,11],[21,142],[1,6],[31,19]],[[5942,3981],[51,24],[27,20],[19,18]],[[6039,4043],[6,4],[-25,58],[29,-22],[33,-36],[56,-44],[6,-5]],[[6144,3998],[-23,-28],[-11,-25],[24,-14],[16,45],[-6,22]],[[6144,3998],[18,-11],[2,-2],[4,-2],[49,-38],[-8,-1],[-38,26],[13,-20],[39,-28],[3,-8],[-36,-80],[9,-40],[-3,-16],[-68,6],[68,-8],[-13,-86],[-15,3],[-22,5],[-26,-10],[33,4],[30,-7],[-4,-49],[-1,-29],[-45,12],[-3,-33],[7,-21],[40,4],[-2,-40],[-1,-38],[-51,-10],[-73,-14],[-9,67],[-4,7],[10,-75],[-32,-15],[-27,42],[-4,7],[-3,5],[-4,4],[-6,7]],[[6236,3903],[33,-121],[-4,-5],[-63,5],[0,19],[-8,25],[3,14],[28,63],[11,0]],[[6369,3014],[23,-21]],[[6392,2993],[24,-24]],[[6416,2969],[-9,-14]],[[6407,2955],[-24,24],[-22,22],[8,13]],[[6453,2998],[18,-75],[-4,-6],[-22,23],[10,16],[-9,40],[7,2]],[[6510,2811],[9,-34]],[[6519,2777],[-3,-6],[-10,-17],[-15,-29],[-38,-55],[-41,-48]],[[6412,2622],[-13,90],[-2,13],[-4,28],[23,12],[20,-14],[5,-19],[0,-1],[42,13]],[[6483,2744],[1,1],[-11,9],[13,9],[8,-6],[1,1],[-8,6],[17,31],[-26,20],[-11,9],[10,21],[13,-13],[10,-10],[5,2],[-2,2]],[[6503,2826],[-14,59],[-9,18],[-22,89],[-8,46],[-19,-7]],[[6431,3031],[-7,35]],[[6424,3066],[2,31],[-25,-4],[3,-21]],[[6404,3072],[-24,-4],[-2,21],[-8,34],[-1,8],[56,22],[6,1],[48,-175],[16,-66],[12,-50],[8,-21],[7,-27],[-10,2],[-3,3],[1,-9]],[[6642,2937],[-4,15]],[[6638,2952],[7,4],[13,-60],[-7,-25],[-18,-44],[-4,-41],[-9,-11],[-12,6],[-27,19],[4,22],[9,19],[30,-18],[5,-1],[19,45],[4,39],[-10,31]],[[6644,2844],[28,-18]],[[6672,2826],[-21,-39],[-20,-12],[2,23],[1,19],[10,27]],[[6581,2885],[8,20],[15,-9],[-8,-21]],[[6596,2875],[-15,10]],[[6754,3344],[9,-20],[1,-4],[34,24],[-7,28]],[[6791,3372],[14,9],[-20,49],[-16,-1],[0,19],[24,1],[0,-37],[16,-28],[29,22],[0,43],[6,0]],[[6844,3449],[19,0],[30,3],[-3,12]],[[6890,3464],[14,-5],[3,-43],[-3,-15],[6,-55],[-17,-80],[-30,-58],[-26,-32],[-7,-16],[-8,-43],[-16,-52],[-3,-28],[-16,-37],[-7,-68],[-8,-23],[-35,-80],[-36,7],[-20,5],[18,41],[15,-7],[16,38],[8,-1],[-12,47],[-7,27],[16,11],[24,13],[-18,46],[-32,86],[-13,43],[15,38],[-2,27],[-1,47],[0,35],[22,1],[0,-21],[26,-4],[1,6],[-24,0],[-1,20],[22,10]],[[6568,3098],[-17,-1],[7,-25]],[[6558,3072],[-21,-9],[-19,-5],[-16,47],[-26,-11]],[[6476,3094],[-15,-7]],[[6461,3087],[-6,23],[-4,17],[15,20],[4,24],[30,13],[42,5],[24,-2],[68,-10],[35,-3],[18,4],[18,-38],[29,-81],[-5,-1],[-12,28],[-20,-8],[-4,15],[-24,-9]],[[6669,3084],[-3,12],[-20,-5]],[[6646,3091],[-24,-10],[-3,-1],[23,-93],[3,-26],[-20,-8],[-17,-7],[-6,27],[30,12],[-3,12],[-18,14],[-9,35],[12,12],[-4,18],[-9,37],[-15,-6],[-18,-9]],[[6690,3014],[-15,-2],[-13,8],[-4,18]],[[6658,3038],[7,3],[23,-17],[2,-10]],[[6462,3169],[2,-20],[-16,-16],[-4,27],[18,9]],[[6562,2964],[-5,-2],[-7,26],[14,11],[12,5],[23,-33]],[[6599,2971],[-27,-16],[-3,13],[-7,-4]],[[6300,3842],[-17,-5],[-11,48],[9,-7],[13,17],[37,-32],[13,-18],[52,-48],[-8,-15],[-46,56],[-19,8],[-23,-4]],[[6537,3646],[-20,-2],[0,30],[52,2],[0,-20],[-33,-2],[1,-8]],[[6439,3692],[7,13],[4,-18],[16,-11],[18,9]],[[6484,3685],[5,-33],[10,2],[6,-29],[-44,-11],[3,15],[-7,29],[-4,-2],[-14,36]],[[6413,3533],[-7,30],[20,7],[9,-38],[-19,-6],[-3,7]],[[6473,3488],[-41,4]],[[6432,3492],[-6,31],[35,13],[12,-48]],[[6458,3545],[-5,21],[19,7],[5,-21]],[[6477,3552],[-19,-7]],[[6374,3447],[-10,36],[19,-11],[-9,-25]],[[6510,3401],[-17,-7]],[[6493,3394],[-5,21],[17,7],[5,-21]],[[6543,3584],[18,7],[4,-18],[-17,-7],[-5,18]],[[6567,3550],[15,6],[-3,14]],[[6579,3570],[18,7],[4,-20],[-5,-17],[9,-41],[-19,-7],[-7,5],[-8,34],[-4,19]],[[6676,3577],[25,-4]],[[6701,3573],[1,-47],[-4,-25],[-25,-2],[3,78]],[[6636,3472],[0,16],[24,5]],[[6660,3493],[-1,-29],[5,-14],[1,-22]],[[6665,3428],[-20,1]],[[6645,3429],[1,21],[-10,22]],[[6634,3477],[-22,-4],[-3,10],[19,7],[6,-13]],[[6432,3198],[23,-6],[3,-13],[-19,-8],[-7,27]],[[6541,3261],[-21,0],[-15,-8],[-2,19],[-13,-5]],[[6490,3267],[-8,21],[-14,12],[-18,-6],[-5,20]],[[6445,3314],[19,-1],[27,11],[7,-31],[9,4]],[[6507,3297],[13,-8],[21,-3],[0,-25]],[[6730,3500],[0,40],[41,4],[1,-47],[21,5]],[[6793,3502],[1,-49],[-27,0],[0,44],[-37,3]],[[6266,3912],[19,-11],[-1,-20],[-15,11],[-3,20]],[[6373,3715],[11,-9],[15,2],[7,-15],[15,-4],[14,-19],[4,-20],[-23,-10]],[[6416,3640],[-2,3],[-2,-1],[9,-42],[-17,-4],[-8,40],[-13,48],[-10,31]],[[6343,3667],[-4,17],[19,8],[4,-18],[-19,-7]],[[6331,3718],[-5,20],[19,8],[5,-21]],[[6350,3725],[-19,-7]],[[6428,3430],[5,-19],[-17,-6],[-4,18],[16,7]],[[6441,3445],[-8,9],[-35,-14],[-9,9],[0,27],[-11,12],[-16,2],[16,14],[4,-8],[47,-6],[22,-1]],[[6451,3489],[11,-37],[-21,-7]],[[6430,3346],[-28,-14],[-4,7],[-19,86],[6,20],[12,-45],[6,-5],[12,-49],[15,0]],[[6602,3185],[-41,6],[-1,48],[16,4],[0,12],[21,2],[1,75],[40,0],[0,-5],[-35,-4],[4,-139],[-5,1]],[[6608,3217],[-1,43],[27,0]],[[6634,3260],[0,-25],[7,-19],[-19,0],[-14,1]],[[6676,3245],[-29,1],[7,18],[1,26]],[[6655,3290],[10,2],[-1,19],[20,0],[0,-19],[-8,0],[0,-47]],[[6488,3374],[34,13],[4,-18],[-6,-23]],[[6520,3346],[-27,14],[-5,14]],[[6569,3423],[-21,-7],[-5,21]],[[6543,3437],[-16,-5],[-5,19]],[[6522,3451],[37,11],[10,-39]],[[6574,3420],[4,2],[-9,34],[-61,133],[-5,21]],[[6503,3610],[13,-11],[7,-29],[15,-14],[11,-43],[17,-15],[14,-55],[15,-50],[15,-45],[31,0],[-3,-8],[-41,0],[-15,48],[-8,32]],[[6420,3248],[10,7]],[[6430,3255],[5,-4],[25,9],[17,-67],[7,-2],[32,13],[-2,-13],[-51,-10],[-10,19],[-20,4],[-13,44]],[[6132,4413],[-8,1],[-4,1],[-69,10],[-11,13],[22,181]],[[6062,4619],[64,-8],[4,72],[-9,51],[-46,0]],[[6075,4734],[6,39],[1,8],[1,7]],[[6083,4788],[29,-5],[48,-10]],[[6160,4773],[5,-16]],[[6165,4757],[-73,14],[27,-26],[6,-15],[8,-29],[5,-39],[-3,-147],[29,-2],[1,-33],[-24,-31],[-9,-36]],[[6226,4499],[14,0],[4,-27]],[[6244,4472],[-19,-2],[1,29]],[[6280,4365],[7,-2],[4,-1],[8,-2],[-27,-80],[-10,-54],[-10,-69],[-6,-61],[-24,1],[-7,0],[-2,-20],[6,-100],[-42,26],[-7,-11],[-26,19],[-30,24],[-51,49],[11,23],[59,-33],[18,-1],[19,-16],[2,7],[-45,19],[-52,29],[24,57],[11,39],[-2,6],[-45,22],[-69,-21],[0,4],[2,5],[5,30],[18,78],[59,-14],[10,64],[-20,30],[51,-6],[3,0],[48,-9],[1,-5],[-22,-153],[30,-18],[8,13],[25,-7],[40,116]],[[6252,4343],[17,-10],[11,32]],[[6434,4830],[26,-4],[-1,-33],[-12,26],[-13,11]],[[6236,3950],[19,-10],[3,-16],[-18,10],[-4,16]],[[6249,3994],[5,-49],[-10,6],[5,13],[0,30]],[[6185,4242],[-7,-17],[-26,14],[9,68],[28,-7],[12,-9],[-16,-49]],[[6176,4395],[61,-17],[-3,-30],[-13,3],[-17,-55],[-43,15],[12,77],[3,7]],[[6212,4321],[10,28],[26,-11],[-19,-55],[-24,13],[7,25]],[[5994,4210],[14,1],[-22,-78],[-22,13],[13,22],[17,42]],[[6081,4137],[-23,-48],[-38,28],[-32,16],[22,83],[52,14],[8,0],[36,-19],[2,-7],[-11,-34],[-16,-33]],[[6391,4506],[-4,9],[28,33],[15,29],[5,36],[14,3],[-8,-34],[-18,-38],[-32,-38]],[[6062,4412],[22,-29],[-9,-60],[-56,14],[14,70],[5,7],[24,-2]],[[6227,3960],[-53,35],[4,6],[41,-26],[8,-15]],[[6219,4096],[3,0],[25,-2],[-1,-64],[2,-66],[-13,-8],[-6,3],[-10,48],[-4,86],[4,3]],[[6442,4383],[-4,-27],[-36,8]],[[6402,4364],[4,29],[5,-2]],[[6411,4391],[31,-8]],[[6458,4616],[-2,-58]],[[6456,4558],[-4,-38],[-1,-36]],[[6451,4484],[-27,5],[3,19],[-16,8]],[[6411,4516],[9,11],[16,25],[22,64]],[[6415,4449],[-18,4],[-7,-16],[-20,-1],[3,18],[28,24],[22,-4],[-2,-22],[-6,-3]],[[6418,4422],[4,23],[17,6]],[[6439,4451],[-4,-33],[-17,4]],[[6308,4366],[9,21],[18,-16],[-5,-11],[-22,6]],[[6362,4166],[15,-4],[-7,-47],[-16,4],[8,47]],[[6317,4121],[4,22],[18,-5],[-3,-21],[-19,4]],[[6288,3967],[5,-19],[29,-15],[13,-35],[1,-21],[33,-35],[6,3]],[[6375,3845],[29,-33],[-3,-6],[-24,20],[-53,56],[-21,26],[-28,23],[10,17],[-5,12],[-20,-3],[-1,12],[-5,51],[-1,30],[0,43],[40,-8],[-14,-20],[-5,-19],[0,-3],[12,-25],[-10,-23],[12,-28]],[[6297,4009],[27,-7],[-4,-25],[-28,9],[5,23]],[[6321,4023],[-27,7],[-8,30],[29,-7],[6,-30]],[[6449,3960],[19,9],[-10,46],[16,-4]],[[6474,4011],[3,-46],[9,-19],[-7,-4],[-23,-4],[-7,22]],[[6568,3756],[3,-6],[-32,-16],[-14,5],[43,17]],[[6642,3682],[-12,7],[-7,4],[-9,6],[4,47],[14,-1],[12,-4],[-6,-50],[5,-8],[55,-13],[2,-26],[-6,-3],[-52,41]],[[6656,3723],[4,27],[25,-6],[-4,-26],[-25,5]],[[6646,3883],[-11,20],[3,22]],[[6638,3925],[7,-2],[9,18],[-3,-22],[18,-5],[-3,-20],[-18,4],[-2,-15]],[[6670,3981],[-1,22],[8,-5],[2,-20]],[[6679,3978],[-9,3]],[[6312,3887],[-47,32],[29,-13],[18,-19]],[[6454,4120],[-3,4],[2,59],[3,0]],[[6456,4183],[-2,-63]],[[6261,3953],[17,6],[0,-24],[-16,6],[-1,12]],[[6334,4211],[8,37],[21,-5],[3,18]],[[6366,4261],[11,-2],[4,21]],[[6381,4280],[3,15],[37,-9],[-9,-39],[-1,-30],[-14,10],[-10,-20],[16,-4],[-2,-12],[-38,13],[-10,2],[-19,5]],[[6446,4203],[-4,-49],[-23,5],[0,50],[6,35],[9,12],[15,-3],[-3,-50]],[[6442,4102],[-24,6],[6,40],[6,3]],[[6430,4151],[13,-3],[-1,-46]],[[6507,3884],[3,-4],[-5,-34],[-4,9]],[[6501,3855],[6,29]],[[6583,3725],[-2,6],[28,13],[-4,-43],[-46,1],[0,8],[24,15]],[[6533,3838],[19,-4],[-4,-21],[-18,4],[3,21]],[[6499,3982],[15,-4]],[[6514,3978],[7,-25]],[[6521,3953],[-25,6],[3,23]],[[6559,3972],[9,-38],[-7,-1],[-8,39]],[[6553,3972],[6,0]],[[6452,4455],[10,6]],[[6452,4455],[0,0]],[[6687,3975],[5,0]],[[6692,3975],[1,0]],[[6693,3975],[21,5],[63,5]],[[6777,3985],[2,1]],[[6779,3986],[24,-10]],[[6803,3976],[2,-2]],[[6805,3974],[2,-1],[10,5]],[[6817,3978],[4,2],[-1,15],[1,16],[2,37],[15,-1],[6,16],[25,72],[6,39],[-4,24],[0,-35],[-36,11],[-5,13],[40,18],[11,3],[8,3],[6,2],[13,4]],[[6908,4217],[40,-76]],[[6948,4141],[27,-57],[4,4],[6,6]],[[6985,4094],[34,-27],[20,1]],[[7039,4068],[2,-26],[15,2]],[[7056,4044],[1,-11],[2,-28],[11,-52],[-18,-17],[-5,-9],[-1,-29]],[[7046,3898],[-44,6],[-17,-3],[-35,-61],[-31,-45],[-31,-12]],[[6888,3783],[-11,0],[-15,3],[-31,2],[-23,1],[-101,6],[0,3],[0,30],[-3,48],[-6,35],[-8,44],[-3,20]],[[6758,3598],[-4,-8],[-45,39],[1,6],[38,0],[0,-28],[10,-9]],[[6759,3601],[-7,6],[0,28],[28,2],[-21,-36]],[[6768,3716],[-37,0],[0,12],[37,0],[0,-12]],[[6772,3728],[29,0],[-1,-29],[-28,0],[0,29]],[[6974,3675],[-4,-23]],[[6970,3652],[-28,5],[-41,-4],[0,-42]],[[6901,3611],[-9,1],[1,-39],[20,3]],[[6913,3576],[1,-99],[-3,-4],[-8,0],[-11,2],[-23,16],[-82,68],[-28,26],[28,53],[9,19],[5,31],[3,96],[59,-3],[11,-2],[35,-3],[12,-2],[-1,-20],[-14,-3],[-8,-52],[9,-7],[67,-17]],[[6798,3672],[-3,-9],[-86,-1],[0,9],[89,1]],[[6616,4615],[2,49],[11,-1],[-2,-49],[-11,1]],[[6540,4543],[0,14],[25,-1],[0,-14],[-25,1]],[[6709,4480],[4,-4],[-1,-45],[-7,-152],[-5,-2]],[[6700,4277],[5,107]],[[6705,4384],[0,3]],[[6705,4387],[4,93]],[[6602,4174],[-1,55],[27,-2],[-3,-55]],[[6625,4172],[-23,2]],[[6527,4239],[1,16],[24,-1],[-1,-17],[-24,2]],[[6473,4114],[-1,-8],[24,-3],[-1,-19]],[[6495,4084],[-10,-18],[-29,15],[-5,35],[22,-2]],[[6524,4054],[-37,12],[9,14],[29,-3],[-1,-23]],[[6617,4168],[-2,-28]],[[6615,4140],[-13,2],[1,27],[14,-1]],[[6842,4067],[-6,-18],[-7,3],[1,19]],[[6830,4071],[12,-4]],[[6759,4210],[1,31],[47,1],[0,-31]],[[6807,4211],[-29,2],[-19,-3]],[[6816,4466],[-1,36]],[[6815,4502],[16,15],[5,14],[-10,27],[-6,38]],[[6820,4596],[34,10],[10,18]],[[6864,4624],[26,-7],[71,-18],[-16,-27]],[[6945,4572],[-4,17],[-32,6],[1,-21],[3,1],[4,-36],[20,1]],[[6937,4540],[0,-9]],[[6937,4531],[-8,-13],[2,-27],[11,-11]],[[6942,4480],[0,-4]],[[6942,4476],[1,-32],[3,-43],[15,-12]],[[6961,4389],[10,-3]],[[6971,4386],[4,-7],[25,-11]],[[7000,4368],[-7,-16],[-20,12],[-25,14],[18,-15],[-17,-52],[-20,-13],[-5,-27],[10,-17],[35,5],[11,-11],[-32,-11],[-33,-10],[-23,-7],[-31,-9],[-31,-13]],[[6830,4198],[1,30],[14,19],[1,40],[-19,-1]],[[6827,4286],[-5,3],[3,34],[29,1],[-36,5],[1,-33],[0,-7],[-32,-1],[-57,-3],[-17,2],[8,189],[17,-5],[6,-4],[0,-42]],[[6744,4425],[31,0],[2,-31],[22,-17],[18,-2],[-2,37]],[[6815,4412],[3,0]],[[6818,4412],[15,1],[18,0],[15,10],[-1,25],[-12,20],[-20,-2],[-17,0]],[[6712,4561],[4,85]],[[6716,4646],[1,0]],[[6717,4646],[2,0]],[[6719,4646],[-4,-84],[-3,-1]],[[6709,4483],[3,70]],[[6712,4553],[3,1],[-3,-71],[-3,0]],[[6646,4708],[4,61]],[[6650,4769],[0,3]],[[6650,4772],[3,30]],[[6653,4802],[67,-5],[3,-7],[1,-52],[-3,-64],[0,-8],[-65,11],[-39,5],[-13,-2],[0,12],[0,2],[1,14],[41,0]],[[6576,4941],[8,19],[27,-5],[-6,-56]],[[6605,4899],[-17,3],[3,35],[-15,4]],[[6473,4832],[-7,16],[11,12],[12,-13],[-16,-15]],[[6463,4793],[1,32],[26,-2],[-12,-5],[-15,-25]],[[6606,4818],[40,-4],[0,-7],[-37,5],[-3,6]],[[6632,4905],[-20,3]],[[6612,4908],[2,21],[63,-10],[-3,-21],[-3,-37],[-38,5],[4,38],[-5,1]],[[6502,4826],[-17,6],[6,18],[11,-24]],[[6793,4733],[-16,-5],[-24,4],[-4,20]],[[6749,4752],[29,17],[15,-36]],[[6776,4773],[-23,-15],[-22,-1],[1,38],[30,14],[14,-36]],[[6496,4942],[-1,5],[32,-3]],[[6527,4944],[-1,-15],[-29,-4],[-1,17]],[[6808,5449],[-30,6],[2,13],[29,-6],[-1,-13]],[[6920,5262],[-10,-2]],[[6910,5260],[-8,9],[3,23],[-16,2]],[[6889,5294],[1,13],[-9,30]],[[6881,5337],[16,9],[-8,40],[-1,55],[-11,55]],[[6877,5496],[8,3]],[[6885,5499],[9,-54]],[[6894,5445],[0,-2]],[[6894,5443],[1,-46],[1,-29],[23,-89],[1,-17]],[[6837,5371],[8,7],[9,-13],[-8,-8],[-9,14]],[[6722,5390],[43,-7],[-4,-37]],[[6761,5346],[-43,11],[4,33]],[[6577,5259],[1,13],[20,-4]],[[6598,5268],[-2,-12],[-19,3]],[[6589,5173],[4,30],[16,-3],[-4,-34],[-16,7]],[[6743,5181],[4,37],[10,-2],[-4,-36],[-10,1]],[[6882,5116],[-3,59],[17,50],[2,30],[16,-1]],[[6914,5254],[-2,-20],[-15,-39],[-14,-45],[3,-34]],[[6886,5116],[-4,0]],[[6986,4966],[5,-11],[-4,-26],[-16,9],[15,28]],[[6962,4920],[8,15],[17,-9],[-1,-17],[-24,11]],[[6955,4906],[7,12],[24,-12],[-2,-17],[-29,17]],[[6990,4877],[-1,47],[18,9]],[[7007,4933],[-3,-48],[8,-21],[-22,13]],[[6875,4867],[-4,-9]],[[6871,4858],[-21,-6],[-13,31],[14,12],[24,-28]],[[6796,4835],[-13,29],[48,15],[13,-30],[-48,-14]],[[6883,5503],[-7,-3]],[[6876,5500],[-9,28],[-17,21],[-3,27],[9,73],[6,18],[23,20],[10,18],[23,21]],[[6918,5726],[36,30],[18,47],[5,-6]],[[6977,5797],[-15,-40],[-15,-17],[-39,-29],[-18,-26],[-9,-76]],[[6881,5609],[0,-69]],[[6881,5540],[-7,-18],[9,-19]],[[5493,3042],[6,7],[14,-11],[15,-12],[30,37],[18,-18],[10,12]],[[5586,3057],[1,0],[4,6],[-7,9],[20,25],[-15,20]],[[5589,3117],[33,40],[40,49],[15,19],[-11,15],[16,19],[38,-48],[17,14],[11,-12],[22,-24],[2,-10],[-15,-14],[-40,-3],[-31,-34],[-72,-82],[-41,-46],[-7,-12],[-9,-34],[-53,-26],[-27,-5],[-1,-2],[9,-1],[13,-1],[-19,-46],[-9,-36],[-9,-46],[-9,-38]],[[5452,2753],[-16,6]],[[5436,2759],[-1,0]],[[5435,2759],[-15,6]],[[5420,2765],[-2,0]],[[5418,2765],[-16,6]],[[5402,2771],[4,39],[1,31],[-2,-2],[0,-10],[-1,-19],[-12,-112]],[[5392,2698],[-39,14]],[[5353,2712],[-4,-21],[7,-2],[81,-29],[25,-10],[0,2],[-28,11],[24,109],[21,98],[27,57]],[[5506,2927],[38,-26],[14,-9],[22,-5],[66,-52]],[[5646,2835],[24,-7],[4,27]],[[5674,2855],[4,39]],[[5678,2894],[30,-12]],[[5708,2882],[8,-3]],[[5716,2879],[5,-7],[24,6]],[[5745,2878],[-1,-2],[22,5]],[[5766,2881],[0,-18],[-22,-7],[1,-17],[41,14]],[[5786,2853],[5,-47],[-57,-16],[-42,-2],[1,-2],[48,4],[30,7],[8,-74]],[[5779,2723],[2,-16],[19,4]],[[5800,2711],[34,-257],[101,18]],[[5935,2472],[7,-51],[4,-30]],[[5946,2391],[-42,-9],[-59,-11],[-72,1],[-31,10],[-183,59],[-58,-111],[-8,-8],[-81,98],[-127,154],[-13,22],[-17,38],[-7,27],[-1,6],[0,8]],[[5247,2675],[30,37],[-2,17],[3,32],[7,33],[11,14],[-8,1],[-30,6]],[[5258,2815],[4,39],[18,3],[-28,7],[7,22],[3,45],[22,-6]],[[5284,2925],[-9,-50],[9,-15],[1,19],[3,22],[15,29],[31,-10],[5,21],[5,25]],[[5344,2966],[14,-4],[28,-13],[20,-11],[0,-84],[1,2],[1,81],[-1,4],[-34,15],[96,-34],[2,2],[-26,10],[-82,29],[16,24],[3,19],[9,59],[7,-1],[10,26]],[[5408,3090],[23,-17],[5,11]],[[5436,3084],[7,2],[52,65],[5,-7],[-38,-46],[0,-32],[-8,-21]],[[5454,3045],[-2,-3],[23,-33],[20,25],[-2,8]],[[5889,2670],[5,-37]],[[5894,2633],[-80,-16],[-7,67],[-15,127],[79,-115],[18,-26]],[[5836,2619],[58,11]],[[5894,2630],[21,-159]],[[5915,2471],[-79,-14],[-20,147]],[[5816,2604],[21,4],[-1,11]],[[5945,2703],[42,6],[26,3],[26,4],[-1,2]],[[6038,2718],[-12,112]],[[6026,2830],[0,2]],[[6026,2832],[-8,75],[-3,37],[-23,4],[-25,-10],[-9,-9],[10,-40],[5,-61]],[[5973,2828],[-30,1],[-38,8],[-40,-5],[-13,2],[-63,21]],[[5789,2855],[53,17],[13,32],[3,41],[18,16]],[[5876,2961],[18,-5],[14,12],[-3,19],[-15,-3],[-25,16],[29,-2],[15,23],[-35,-8],[1,29],[8,0],[9,2],[15,-13],[21,6],[6,29]],[[5934,3066],[25,-13],[19,-10],[25,-13]],[[6003,3030],[-6,-2]],[[5997,3028],[-17,-5],[5,-36],[15,-24],[23,-4],[27,4],[21,14]],[[6071,2977],[4,1],[36,5]],[[6111,2983],[7,-66],[5,-51],[0,-5],[31,6],[63,15]],[[6217,2882],[4,-28],[4,3],[81,19],[-4,25]],[[6302,2901],[0,3],[-85,-19],[-5,31],[-3,23],[-4,46]],[[6205,2985],[41,9],[-2,17]],[[6244,3011],[20,6]],[[6264,3017],[54,-43]],[[6318,2974],[-2,-4],[14,-104],[-1,-3],[26,-22]],[[6355,2841],[17,-123],[5,-14],[8,-56],[5,-48]],[[6390,2600],[-20,-18],[-21,-17],[-57,-45],[-62,-38],[-79,-39],[2,-11],[-86,-16],[-9,12],[-15,22],[-39,57],[-40,58],[-3,5]],[[5961,2570],[-10,80],[-6,53]],[[5974,2826],[12,-115]],[[5986,2711],[-111,-16],[-75,109]],[[5800,2804],[0,9],[15,4],[-2,26]],[[5813,2843],[55,-14],[24,4],[12,3],[39,-10],[31,0]],[[5992,3422],[-51,-54],[-27,-18],[-30,-15],[-84,-91],[-6,-28],[-1,-12],[-14,-13],[-26,30],[-9,11],[27,43],[30,60],[28,36],[4,11],[-2,36],[-1,33],[54,14],[44,12],[36,10],[9,13],[7,-8],[3,-5],[30,-42],[-21,-23]],[[5969,3210],[15,17],[4,-7],[3,16],[15,16],[-17,25],[-4,-4]],[[5985,3273],[-24,-6],[-36,48],[-47,3],[12,16],[23,10],[29,22],[42,44],[28,31],[11,-12],[16,-30],[18,-32],[34,-70],[21,-53],[8,-17],[20,-50],[21,-51],[13,-9]],[[6174,3117],[-4,-4],[3,-16],[-19,-19],[-27,-14],[-34,-15],[-14,40],[-28,-18],[-8,-20],[-28,-18]],[[6015,3033],[47,53],[-10,14],[-13,-4],[0,23],[9,0],[2,22]],[[6050,3141],[4,0],[5,19],[-2,20],[-17,27],[-7,2],[-16,-17],[-12,18],[-23,-18],[-13,18]],[[6167,3038],[2,-19],[18,6],[2,-27]],[[6189,2998],[-20,-6],[-3,-6],[6,-48]],[[6172,2938],[-1,-9],[36,7],[3,-21],[4,-30],[-88,-21],[-5,48],[-1,5],[-6,60],[-1,7],[-5,35],[24,8],[35,11]],[[6379,2894],[7,13],[19,-15],[-7,-14],[-19,16]],[[6400,2877],[7,14],[16,-13],[-3,-17],[-20,16]],[[6423,2859],[6,27],[46,-39],[-11,-21],[-41,33]],[[6416,2842],[-33,27],[1,19],[36,-29],[-4,-17]],[[6419,2840],[4,16],[40,-32],[-21,-44],[-8,6],[13,32],[-28,22]],[[6459,2809],[7,13],[17,-14],[-6,-13],[-18,14]],[[6501,2794],[-7,-14],[-17,14],[7,14],[17,-14]],[[6413,2824],[-25,19],[-2,21],[30,-24],[-3,-16]],[[6419,2838],[26,-21],[-5,-15],[-24,19],[3,17]],[[6485,2766],[-34,27],[7,14],[35,-28],[-8,-13]],[[6412,2821],[-3,-16],[-18,14],[-1,20],[22,-18]],[[6412,2803],[3,16],[24,-19],[-7,-13],[-20,16]],[[6444,2778],[7,13],[32,-26],[-12,-10],[-27,23]],[[5687,2978],[3,-10],[-15,-9],[12,19]],[[5705,3062],[-16,-18]],[[5689,3044],[-7,-4],[-18,22],[-25,4],[34,39],[13,-18],[19,-25]],[[5753,3074],[-7,-8]],[[5746,3066],[-14,22],[32,35],[13,-19],[-24,-30]],[[5960,3065],[-20,12],[13,21],[17,-23],[12,14],[14,-19],[-16,-19],[-20,14]],[[5960,3167],[15,-24],[-9,-22],[-21,28]],[[5945,3149],[15,18]],[[5792,3194],[22,-31],[17,-2],[24,25]],[[5855,3186],[17,-25],[-15,-17],[-6,-19],[-23,10],[-10,11],[-32,37],[6,11]],[[5813,3190],[32,35],[11,-17],[-6,-6]],[[5850,3202],[-25,-28],[-12,16]],[[5913,3235],[12,-17],[-13,-14],[-12,16],[-17,20],[21,8],[9,-13]],[[5436,3138],[10,-12],[-10,-12],[-13,9],[13,15]],[[5464,3192],[29,-37],[-12,-15],[-29,36],[12,16]],[[5537,3299],[16,2],[-2,-23],[-17,15],[3,6]],[[5557,3351],[25,-32],[-9,-11]],[[5573,3308],[-25,31],[9,12]],[[5665,3400],[44,13],[-34,-39],[-13,16],[3,10]],[[5710,3374],[-11,14]],[[5699,3388],[15,19],[19,7],[13,-20],[-23,-29],[-13,9]],[[5777,3346],[14,-18]],[[5791,3328],[-15,-33],[-19,24],[20,27]],[[5740,3240],[-38,41],[4,7],[15,-17],[36,40],[16,-21],[-33,-50]],[[5640,3250],[-25,-30],[-11,14],[-16,21],[13,10]],[[5601,3265],[19,-9],[10,12],[10,-18]],[[5586,3251],[-83,-104],[-3,10],[71,87],[15,7]],[[5694,3271],[35,-43],[-10,-9],[-34,43],[9,9]],[[5465,3277],[-13,-10],[1,49],[12,1],[23,1],[8,-16],[-31,-25]],[[5497,3319],[22,3],[-21,-15],[-1,12]],[[5748,3425],[79,23],[-6,-27],[-4,18],[-43,-10],[4,-25],[-25,-7],[-5,28]],[[5563,3375],[-29,-31],[-21,-12],[-14,-4]],[[5499,3328],[-3,17],[-20,9],[-3,19]],[[5473,3373],[2,0]],[[5475,3373],[39,1],[49,1]],[[5497,3052],[-6,8],[-17,-21],[-8,9],[10,14],[1,32],[17,21],[10,4],[24,-26]],[[5528,3093],[-9,-19],[7,-8],[-15,-19],[-14,5]],[[5669,3784],[0,29]],[[5669,3813],[20,-3],[41,-6],[-1,-18],[26,-2],[10,13],[2,39],[13,-8],[-21,-52],[-71,5],[-19,3]],[[5611,3801],[-11,14],[24,25]],[[5624,3840],[14,-23],[-27,-16]],[[5599,3718],[7,-30]],[[5606,3688],[-26,-6],[-3,31],[22,5]],[[5750,3663],[-6,25],[12,15],[1,16]],[[5757,3719],[15,-11],[-22,-45]],[[5926,3613],[6,7],[12,-15],[-6,-7],[-12,15]],[[5685,3620],[-26,-5]],[[5659,3615],[20,40],[6,-35]],[[5597,3381],[-18,-4]],[[5579,3377],[-8,-1],[14,19],[12,-14]],[[5482,3417],[1,10],[24,0],[0,-7]],[[5507,3420],[0,-5]],[[5507,3415],[-1,-7],[-22,1],[-1,6]],[[5483,3415],[-1,2]],[[5605,3388],[-15,15],[12,19],[15,-6]],[[5617,3416],[-12,-28]],[[5547,3472],[29,-32],[2,3]],[[5578,3443],[20,-18]],[[5598,3425],[-11,-18],[-49,53],[9,12]],[[5605,3869],[-21,-25]],[[5584,3844],[-1,6]],[[5583,3850],[21,22]],[[5604,3872],[1,-3]],[[5791,3803],[8,-1],[-5,-33],[18,-11]],[[5812,3758],[-11,-63],[-27,22],[-8,14],[3,37],[12,7],[10,28]],[[5791,3816],[-11,-38],[-10,3],[19,45]],[[5789,3826],[2,-10]],[[6021,3780],[-82,21],[9,47],[89,-21],[-16,-47]],[[5851,3942],[56,23]],[[5907,3965],[-1,-7],[-9,-70],[-11,-73],[-54,15]],[[5832,3830],[6,39],[17,30],[12,23]],[[5867,3922],[2,3]],[[5869,3925],[13,22],[-16,-8],[-22,-3]],[[5844,3936],[7,6]],[[5653,3869],[-5,40]],[[5648,3909],[22,5],[4,-41],[-21,-4]],[[6069,3917],[-28,-85],[-41,13],[16,102],[21,-1],[32,-29]],[[5783,3934],[-58,1],[-26,4],[-30,-4],[-25,-14]],[[5644,3921],[15,17],[28,11]],[[5687,3949],[54,-1],[9,55]],[[5750,4003],[14,57],[67,-18],[8,-7],[-50,-91],[-17,1],[11,-11]],[[5836,3935],[-47,0]],[[5789,3935],[5,6],[43,1]],[[5837,3942],[1,0]],[[5838,3942],[-2,-7]],[[5927,4028],[54,93]],[[5981,4121],[25,-9]],[[6006,4112],[-19,-35]],[[5987,4077],[-1,-2]],[[5986,4075],[-18,-31]],[[5968,4044],[-1,-3]],[[5967,4041],[-20,-35],[-7,-13]],[[5940,3993],[-3,-13],[-24,-11],[4,28],[-10,17],[11,20],[8,-8],[1,2]],[[5943,4106],[13,24],[10,-5],[-13,-24],[-10,5]],[[5933,4112],[-35,17],[12,21],[35,-15],[-12,-23]],[[5712,4012],[-5,-27],[-34,6]],[[5673,3991],[1,30],[38,-9]],[[5732,4157],[-29,11]],[[5703,4168],[6,25],[33,-13],[-10,-23]],[[5639,4098],[-13,-11],[-24,-20],[-10,20],[-15,26]],[[5577,4113],[23,20]],[[5600,4133],[14,-28],[1,1],[-7,13]],[[5608,4119],[16,14],[-4,17],[17,-7],[6,-29],[-4,-16]],[[5617,3989],[-15,27],[12,4],[3,-31]],[[5360,4260],[-4,16]],[[5356,4276],[-30,-2],[-8,-8],[-1,17],[25,40],[21,25],[108,-39],[-22,-7],[-60,-24],[-29,-18]],[[5327,4273],[-3,-13]],[[5327,4273],[0,0]],[[5344,4241],[29,27],[74,29],[2,-8],[-85,-34],[-15,-19],[-5,5]],[[5422,4239],[24,19],[7,-14],[15,3]],[[5468,4247],[2,-27],[-30,-22],[-14,25],[-4,16]],[[5561,4009],[-5,23],[23,10],[12,-25],[-30,-8]],[[5434,3831],[-4,31]],[[5430,3862],[12,-8],[27,2],[45,-15],[4,9]],[[5518,3850],[9,-17],[-5,-8],[-36,-1],[-13,-5],[-29,10],[-10,2]],[[5380,3906],[17,3]],[[5397,3909],[30,-49],[4,-24],[-6,-12],[-33,-28],[-8,17],[-11,23],[-25,9],[-3,16],[26,35],[9,10]],[[5331,3935],[-7,16]],[[5324,3951],[-26,65],[1,7]],[[5299,4023],[161,75]],[[5460,4098],[54,-84]],[[5514,4014],[-50,-14],[3,-18]],[[5467,3982],[-95,-27],[-1,-7]],[[5371,3948],[-40,-13]],[[5273,4104],[-9,-10],[14,-28]],[[5278,4066],[13,-32],[4,-21]],[[5295,4013],[-14,-17],[-17,-9],[5,-39],[-1,-28]],[[5268,3920],[-32,4],[-16,21],[-28,22],[-11,10],[3,11],[34,98],[21,62],[7,11],[22,-45],[5,-10]],[[5176,3923],[-15,1],[10,29],[10,8],[43,-34],[-26,5],[-22,-9]],[[5404,4167],[-12,-16],[-40,47],[14,12],[38,-43]],[[5840,4084],[7,14]],[[5847,4098],[7,17],[24,-10],[-27,-49],[-19,10],[8,18]],[[5782,4168],[26,-10],[-4,-18],[-25,10],[3,18]],[[5807,4139],[4,18],[23,-9],[-4,-18],[-23,9]],[[5851,4122],[-16,6],[4,18],[20,-8],[-8,-16]],[[5881,4110],[-25,10],[7,17],[27,-11],[-9,-16]],[[5782,4174],[3,19],[29,-12],[-5,-17],[-27,10]],[[5817,4180],[23,-9],[-5,-18],[-22,9],[4,18]],[[5861,4143],[-20,8],[4,18],[23,-9],[-7,-17]],[[5893,4131],[-28,11],[7,16],[30,-11],[-9,-16]],[[6994,5569],[3,-10],[-16,-1],[-44,24],[-14,41],[4,5],[42,34],[3,-2],[22,-91]],[[6905,5448],[-1,23],[31,1],[-5,-22],[-25,-2]],[[6923,5087],[19,1]],[[6942,5088],[2,1]],[[6944,5089],[22,0]],[[6966,5089],[4,-12],[47,1],[4,-40]],[[7021,5038],[-84,6]],[[6937,5044],[-14,43]],[[7014,4941],[-7,-6]],[[7007,4935],[-7,39],[-12,20],[16,-8],[10,-45]],[[7033,4910],[3,-29]],[[7036,4881],[-9,0],[-2,-23],[-10,0],[-7,30],[4,28],[21,-6]],[[7217,5357],[18,-90],[17,2]],[[7252,5269],[25,-9],[48,-4],[1,-38]],[[7326,5218],[-4,-79],[3,-34],[15,2]],[[7340,5107],[5,-64],[-10,-19],[-11,-4],[-30,-10],[-14,-24],[-3,-30],[8,-82],[-2,-6],[-26,2],[-103,19],[-3,33],[-8,89],[-11,9],[45,19],[-1,8],[-36,81],[-5,7],[-21,49],[30,8],[9,1],[22,5],[0,2],[-62,-13],[-29,60],[-29,54],[33,14],[34,-2],[21,6],[72,43],[2,-5]],[[7155,4814],[0,33]],[[7155,4847],[2,11],[36,-8],[-2,28],[81,-13],[16,-8],[3,-73],[-79,18],[-17,4],[-40,8]],[[7156,4871],[-1,7],[34,-7],[1,-8],[-34,8]],[[7189,4879],[0,-6],[-34,7],[-1,6],[35,-7]],[[7489,5558],[9,-1],[-1,-40],[-10,-2],[2,43]],[[7572,5394],[4,37],[27,6],[8,-22],[-39,-21]],[[7651,5142],[5,25],[10,-4],[-5,-25],[-10,4]],[[7535,4954],[28,7]],[[7563,4961],[9,2],[-1,-16],[-31,-18],[-5,25]],[[7646,4892],[58,-13],[-1,33]],[[7703,4912],[0,13]],[[7703,4925],[0,4]],[[7703,4929],[-1,31]],[[7702,4960],[0,4]],[[7702,4964],[-2,30]],[[7700,4994],[-3,19],[19,8],[7,-54],[9,-72],[2,-52],[-38,-37],[-73,-69],[23,155]],[[7734,4837],[0,-105],[-108,-1],[0,4],[108,102]],[[7569,4758],[-26,12],[-3,13],[-6,4]],[[7534,4787],[7,26],[-12,44],[-1,16],[10,35]],[[7538,4908],[15,-2],[0,-33],[-10,-2],[6,-23],[37,2]],[[7586,4850],[-12,-56],[-5,-36]],[[7501,4873],[-3,-28],[19,-2],[3,25]],[[7520,4868],[17,-57],[-4,-18],[-21,-54],[-87,16],[-130,29],[-5,78],[3,4],[137,6],[0,-3],[19,1],[23,4],[29,-1]],[[7431,4875],[-94,-5],[-3,22]],[[7334,4892],[12,2],[-10,123],[4,10]],[[7340,5027],[15,19],[58,3]],[[7413,5049],[1,-14],[8,-4],[49,3]],[[7471,5034],[5,-22],[12,-22],[-59,-6]],[[7429,4984],[-11,4],[13,-113]],[[7472,5036],[41,2]],[[7513,5038],[9,-45]],[[7522,4993],[-32,-2]],[[7490,4991],[-12,22],[-6,23]],[[7477,5098],[24,2]],[[7501,5100],[6,-25]],[[7507,5075],[-25,-1]],[[7482,5074],[-5,24]],[[7355,5108],[5,-60]],[[7360,5048],[-12,-1],[-5,60],[12,1]],[[7336,5195],[7,28],[65,0],[14,-5]],[[7422,5218],[6,-26],[-92,3]],[[7415,5270],[-6,29],[12,4],[7,-32],[-13,-1]],[[7354,5621],[9,-23],[-22,-14],[-9,22],[22,15]],[[7439,4984],[18,2],[-1,-37],[4,-43]],[[7460,4906],[-12,-2]],[[7448,4904],[-5,42],[-4,38]],[[7460,4920],[22,6],[4,-19]],[[7486,4907],[2,-3]],[[7488,4904],[13,-14],[0,-15]],[[7501,4875],[-36,0],[-5,45]],[[7505,4908],[19,-12],[-6,-15],[-13,27]],[[7490,4684],[-19,7],[4,17],[-22,5],[5,-21],[-19,-14]],[[7439,4678],[-9,7],[-3,18],[-15,-3]],[[7412,4700],[-6,43],[24,5],[78,-13],[-11,-30],[-7,-21]],[[7621,4613],[-21,-3]],[[7600,4610],[-27,-2]],[[7573,4608],[-15,-1],[-38,-4]],[[7520,4603],[5,55],[23,66],[69,-2],[-4,-25],[3,-29],[5,-55]],[[7625,4462],[-5,15],[18,1],[8,-23],[-21,7]],[[7521,4463],[-15,9],[-10,-30]],[[7496,4442],[-3,-17]],[[7493,4425],[-3,-1]],[[7490,4424],[-14,-3],[-7,16],[6,25],[-1,40],[-11,8],[-3,1]],[[7460,4511],[-4,1],[-2,-9]],[[7454,4503],[-5,8],[-42,17],[-71,28]],[[7336,4556],[-4,1]],[[7332,4557],[-33,8],[-55,9],[-27,1],[-79,13]],[[7138,4588],[1,3],[-35,9],[-46,4],[-3,14],[4,5],[39,-8],[2,6]],[[7100,4621],[37,-7],[7,-7],[34,-12],[69,-12],[82,-11]],[[7329,4572],[5,0]],[[7334,4572],[68,-23],[54,-26]],[[7456,4523],[5,-6]],[[7461,4517],[3,-1],[28,-11]],[[7492,4505],[3,-2]],[[7495,4503],[78,-36]],[[7573,4467],[4,-2]],[[7577,4465],[78,-36]],[[7655,4429],[5,-2]],[[7660,4427],[131,-59],[6,2]],[[7797,4370],[7,-16]],[[7804,4354],[-125,55]],[[7679,4409],[-19,8]],[[7660,4417],[-80,35]],[[7580,4452],[-4,2],[3,-13],[-18,8],[1,-6]],[[7562,4443],[4,-23],[-10,-8]],[[7556,4412],[-2,-1]],[[7554,4411],[-11,-7],[-10,22],[-12,-7]],[[7521,4419],[-5,18],[8,24],[-3,2]],[[7571,4381],[11,6],[21,-46]],[[7603,4341],[-27,-13]],[[7576,4328],[-18,43],[11,8]],[[7569,4379],[2,2]],[[7841,4171],[-7,16],[34,20],[17,-24],[-44,-12]],[[7732,4127],[-6,13],[-12,-9]],[[7714,4131],[-8,19]],[[7706,4150],[12,8],[-11,26]],[[7707,4184],[19,13],[27,-54],[-21,-16]],[[7698,4232],[-22,-14],[-5,12],[21,14],[6,-12]],[[7684,4084],[23,18]],[[7707,4102],[88,-180]],[[7795,3922],[-24,-18]],[[7771,3904],[-28,57]],[[7743,3961],[-1,2]],[[7742,3963],[-30,61]],[[7712,4024],[-1,2]],[[7711,4026],[-27,58]],[[7833,4189],[-5,11],[33,20],[5,-10],[-33,-21]],[[7571,4081],[4,1]],[[7575,4082],[22,0],[10,-74]],[[7607,4008],[-25,-9]],[[7582,3999],[-22,78],[11,4]],[[7772,3902],[25,17]],[[7797,3919],[27,-58]],[[7824,3861],[-31,-2]],[[7793,3859],[-21,43]],[[7854,4079],[-6,13],[15,12],[6,-14],[-15,-11]],[[7929,4118],[16,-27]],[[7945,4091],[-18,20],[2,7]],[[7827,4202],[-6,13],[32,21],[7,-13],[-33,-21]],[[7852,4239],[-32,-21],[-5,11],[30,23],[7,-13]],[[7814,4231],[-20,42],[32,14],[-24,45],[13,-1],[27,-50],[33,-67],[20,-28],[-8,-2],[-17,23],[-24,48],[-32,-24]],[[7735,4658],[-56,-10]],[[7679,4648],[-56,-11],[-1,26],[100,11],[-2,34],[-96,-10],[-1,24],[111,-1],[1,-63]],[[7618,4696],[101,10],[2,-31],[-96,-10],[-5,2],[-2,29]],[[7872,3970],[36,94],[17,43],[19,-23],[92,-177],[-24,-82],[-55,14],[-27,9],[-58,122]],[[8048,3858],[-12,-39],[-21,5],[12,44]],[[8027,3868],[21,-10]],[[7677,4171],[13,-31],[-24,-16],[-14,30]],[[7652,4154],[25,17]],[[7256,4601],[2,28],[20,4],[-1,-34]],[[7277,4599],[-21,2]],[[7259,4641],[0,0]],[[7101,4640],[9,39],[30,7],[-39,-46]],[[7014,4557],[9,11],[25,-12]],[[7048,4556],[-21,-18],[-13,19]],[[7113,4499],[23,30],[21,-41],[-24,-19]],[[7133,4469],[-20,30]],[[7283,4428],[13,3],[-3,16]],[[7293,4447],[24,0]],[[7317,4447],[5,-30]],[[7322,4417],[-26,-15],[-15,1],[2,25]],[[7210,4409],[6,-15],[23,-14],[2,-13],[-31,17],[-10,23],[10,2]],[[7222,4409],[15,-15],[2,-13],[-22,14],[-6,14],[11,0]],[[7238,4395],[-2,19],[9,2],[2,-18],[-9,-3]],[[7254,4402],[6,17],[8,-11],[-18,-25],[4,19]],[[7190,4194],[0,13],[26,1],[0,-13],[-26,-1]],[[7393,4341],[5,-40],[-24,-1]],[[7374,4300],[-8,11],[7,29],[20,1]],[[7390,4243],[3,-12],[-18,-1],[0,13],[15,0]],[[7444,4160],[-9,19]],[[7435,4179],[3,2]],[[7438,4181],[15,-33]],[[7453,4148],[-2,0]],[[7451,4148],[-7,12]],[[7291,4284],[-22,-11]],[[7269,4273],[-24,-14]],[[7245,4259],[-13,19],[12,13],[15,-14],[20,9],[10,26],[5,-1],[-3,-27]],[[7267,4349],[-2,-18],[-11,-7],[-14,12],[3,16],[24,-3]],[[7211,4359],[-2,-21],[13,4],[7,-11]],[[7229,4331],[-16,-18],[-9,19],[-24,49],[31,-22]],[[7172,4404],[24,5]],[[7196,4409],[13,-26],[19,-15],[23,-1],[17,14],[11,20],[21,2],[4,-26],[-3,-24],[-74,7],[-34,17],[-21,27]],[[7323,4412],[6,-38],[-24,-1]],[[7305,4373],[-4,31],[22,8]],[[7021,4530],[-7,-8],[-48,69],[26,-16],[29,-45]],[[7066,4067],[-3,0],[-3,2],[-17,177],[13,10],[12,0],[3,-2],[1,-52],[10,-8],[52,1],[-1,-54],[-26,1],[-24,0],[-9,-7],[2,-63],[-4,-3],[-4,-1],[-2,-1]],[[7068,4262],[-14,1],[-9,3],[3,21],[34,94],[12,43],[9,-10],[-11,-15],[-2,-39],[6,-16]],[[7096,4344],[-10,-50],[-13,5],[-5,-37]],[[7107,4215],[-1,28]],[[7106,4243],[22,8],[1,-42],[-22,6]],[[7017,4317],[10,-5],[-11,-27],[1,32]],[[7024,4527],[37,-50],[-5,-10],[-31,47],[-1,13]],[[7063,4470],[25,-33],[-10,-48],[-6,1],[5,42],[-19,33],[5,5]],[[7031,4349],[6,-4]],[[7037,4345],[-7,-17],[-16,12],[-20,12],[7,14],[18,-12],[12,-5]],[[7061,4341],[-20,11],[5,10],[18,7],[13,15],[-16,-43]],[[7027,4276],[14,42]],[[7041,4318],[1,2],[-10,7],[8,21],[10,-6],[7,-9],[-15,-44],[-4,-25],[-22,-6],[-1,13],[12,5]],[[6956,4167],[-6,4],[-7,5],[-25,45]],[[6918,4221],[23,8],[16,5],[7,-36],[-8,-31]],[[6986,4129],[-9,21]],[[6977,4150],[10,29],[19,-12]],[[7006,4167],[-6,-14],[18,-7],[29,4]],[[7047,4150],[3,-33],[-28,-4],[-36,16]],[[7172,4221],[-15,0],[-1,26],[17,0]],[[7173,4247],[-1,-26]],[[7173,4123],[1,-31]],[[7174,4092],[-19,0],[1,31],[17,0]],[[6958,4493],[4,32],[17,-4],[-5,-35],[25,-7],[-4,-31],[-24,5]],[[6971,4453],[-10,3],[6,35],[-9,2]],[[7170,4189],[1,-38],[-21,0],[-15,-10],[0,57],[12,-9],[23,0]],[[6987,4250],[-5,12],[31,7],[1,-12],[-27,-7]],[[7079,3517],[21,-5],[-3,-20],[-18,-3]],[[7079,3489],[0,28]],[[7079,3560],[1,-39],[-40,-1],[-1,39],[0,21],[38,2],[2,-22]],[[7035,3558],[-27,-1]],[[7008,3557],[0,27],[26,2],[1,-28]],[[6941,3638],[1,-16]],[[6942,3622],[-29,0],[-1,22],[23,1],[6,-7]],[[6946,3643],[20,0],[0,-28],[-19,0]],[[6947,3615],[-1,28]],[[6945,3711],[-21,5],[4,24],[18,-4],[1,-14]],[[6947,3722],[-2,-11]],[[6981,3703],[36,-14],[-5,-23],[-34,12],[3,25]],[[7022,3690],[35,-14],[-7,-23],[-34,10],[6,27]],[[7069,3709],[-3,1]],[[7066,3710],[-36,14]],[[7030,3724],[5,18]],[[7035,3742],[28,-11],[9,28]],[[7072,3759],[13,38],[-11,-5]],[[7074,3792],[-6,2],[1,33]],[[7069,3827],[29,7],[35,-15],[-6,-24],[17,-8],[-5,-20],[26,-13],[-5,-20],[-15,-56]],[[7145,3678],[-23,9],[-29,12],[-24,10]],[[7195,3890],[4,-16],[14,-12],[7,14]],[[7220,3876],[35,-39],[-13,-24],[-5,-8],[-3,-3],[-50,43],[-62,57],[-18,16],[-18,24],[-11,22],[-9,37],[-3,61],[11,2],[5,-40],[8,-1],[2,-46],[31,-37],[16,1],[20,27],[15,19],[22,-26],[-19,-35],[3,-22],[18,-14]],[[7257,3915],[12,-12],[-10,-18],[-13,11],[11,19]],[[7271,3996],[22,-10],[1,-12],[-19,-3],[-12,12],[8,13]],[[7283,3921],[-2,19],[19,5],[2,-18]],[[7302,3927],[-19,-6]],[[7197,3902],[-10,9],[12,23],[11,-10]],[[7210,3924],[-13,-22]],[[7235,3980],[-9,-21]],[[7226,3959],[-9,7],[11,20],[7,-6]],[[7214,4047],[68,4]],[[7282,4051],[-6,-29],[-52,-11]],[[7224,4011],[-10,36]],[[7141,3977],[-16,22]],[[7125,3999],[9,13],[18,-20],[-11,-15]],[[7139,4064],[0,-33],[-57,-2],[-1,34],[58,1]],[[7007,3589],[0,4],[106,5],[7,-6],[-113,-3]],[[7002,3593],[-1,-5],[-73,-3],[5,6],[69,2]],[[7172,3572],[-43,18],[0,4],[44,-18],[-1,-4]],[[7167,3743],[3,11],[13,-5],[-3,-12],[-13,6]],[[7227,3776],[-9,-34],[-10,25],[19,9]],[[7210,3773],[4,35],[10,-8],[-14,-27]],[[7073,3701],[-4,-25],[12,-5]],[[7081,3671],[-5,-22],[-20,8],[10,41],[7,3]],[[7045,3599],[2,29],[4,21]],[[7051,3649],[23,-4],[7,-11],[49,-18],[-5,-15],[-80,-2]],[[7265,3645],[6,24]],[[7271,3669],[21,-2],[-11,-29],[-16,7]],[[7599,3593],[7,0],[1,30],[42,6],[20,2],[12,-18],[20,-64],[-13,-40],[-26,6],[-18,-13],[-93,5],[-124,7],[3,58],[32,-2],[3,11],[24,-2],[30,-9],[47,-1],[1,27],[32,-3]],[[7508,3726],[14,16]],[[7522,3742],[-16,15],[9,22],[25,-16],[17,38],[-32,-121],[6,5],[37,4],[17,-19],[27,5],[14,-16],[35,2],[2,-11],[7,-7],[-2,-7],[-54,-9],[-27,-1],[-95,13],[-24,6],[-20,14],[3,9],[11,34],[24,-15],[12,-22],[9,-5],[0,6],[-15,20],[21,10],[7,17],[-12,13]],[[7511,3852],[18,5],[-3,33],[15,1],[2,1],[-4,28]],[[7539,3920],[44,21],[1,-3]],[[7584,3938],[-10,-19]],[[7574,3919],[-10,-38],[-18,-63],[-14,9],[-13,-5],[-8,30]],[[7385,3691],[-40,31]],[[7345,3722],[-67,48],[-1,2],[-32,25],[5,9],[22,41],[34,-39],[22,-4],[9,-11],[3,-18],[9,-18],[24,-20],[16,32],[20,-16],[11,-18],[12,-15],[25,-17],[-10,-33],[-2,-5],[-2,-6],[-58,32]],[[7386,3770],[-12,-30],[-24,19],[-12,23],[3,9],[45,-21]],[[7437,3899],[19,4],[4,0],[7,-63],[-22,-57],[-17,12],[-9,-19],[-8,-21],[-21,16],[19,63],[10,1],[4,33],[-4,26],[18,5]],[[7343,3883],[3,-34]],[[7346,3849],[-17,-3],[2,35],[12,2]],[[7304,4053],[31,2],[42,3]],[[7377,4058],[19,-28]],[[7396,4030],[-8,-7],[-19,-39],[13,-9],[3,-19]],[[7385,3956],[-35,-7],[-8,25],[-3,32],[-28,-9],[-7,56]],[[7450,3968],[-38,-7],[-3,21],[-8,48],[7,7]],[[7408,4037],[18,-27]],[[7426,4010],[-7,-8],[2,-18],[29,-16]],[[7508,3961],[4,-36]],[[7512,3925],[-10,-1],[-4,35],[10,2]],[[7525,3997],[17,4],[31,-55]],[[7573,3946],[-31,-13],[-5,38],[-29,-6],[-12,-2],[-3,20],[13,1],[21,4],[-2,9]],[[7232,3764],[-10,-39],[-4,1],[16,60],[-2,-22]],[[7216,3715],[3,-1],[-38,-141],[-2,1],[30,118],[7,23]],[[7585,3599],[1,23]],[[7586,3622],[18,-1],[-1,-23],[-18,1]],[[7236,3769],[8,5]],[[7236,3769],[0,0]],[[7260,3723],[-15,6],[12,18],[3,-24]],[[7278,3716],[-12,21],[13,30],[10,-8],[-11,-43]],[[7292,3758],[17,-12],[-15,-37],[-13,5],[11,44]],[[7252,3789],[10,-8],[-6,-23],[-10,20],[6,11]],[[7354,3931],[-2,16]],[[7352,3947],[32,6],[2,-17],[-32,-5]],[[7470,3781],[9,22]],[[7479,3803],[10,-7]],[[7489,3796],[-9,-22]],[[7480,3774],[-10,7]],[[7512,3823],[-22,-9],[-6,25]],[[7484,3839],[22,9],[6,-25]],[[7418,3908],[-6,49],[28,4],[6,-48],[-28,-5]],[[7444,3962],[23,4],[5,-48],[-23,-4],[-5,48]],[[7176,3525],[10,-4],[5,19],[13,5],[2,-16],[28,0],[10,11],[9,30],[21,9],[25,2],[8,34]],[[7307,3615],[9,22],[7,25],[37,-19],[-9,-28],[2,-37],[29,-2]],[[7382,3576],[2,-12],[28,-2],[3,10]],[[7415,3572],[11,-1],[-2,-56],[-34,-2],[-109,-11],[-78,-7],[-7,3],[-19,2],[-1,25]],[[7456,3592],[-3,-10],[-20,2]],[[7433,3584],[3,37]],[[7436,3621],[17,-4]],[[7453,3617],[3,-25]],[[7515,3604],[-24,2],[1,28],[24,-4],[-1,-26]],[[7407,4038],[-7,-7],[-19,27]],[[7381,4058],[12,1],[14,-21]],[[3757,4642],[-10,-12],[-12,15],[9,14]],[[3990,5044],[-10,-26],[-20,12]],[[3875,4867],[25,-24],[-60,-87]],[[3834,4741],[9,-9],[19,25],[14,-16]],[[3857,4707],[-24,23]],[[3833,4730],[1,11]],[[4000,4753],[26,-24],[-15,-18],[-25,26],[14,16]],[[4126,4732],[28,-35],[-4,-7],[-25,22],[-19,-17]],[[4106,4695],[-9,4],[29,33]],[[4185,4651],[19,-6],[-6,-25],[-26,10],[-2,10],[15,11]],[[4134,4615],[2,-10],[20,-16],[-39,-32]],[[4117,4557],[-14,-11]],[[4103,4546],[-17,35],[48,34]],[[4096,4926],[69,-15],[2,-15],[-82,-20],[11,50]],[[4288,4946],[-3,-7],[-24,-4],[2,-12],[-34,-10],[-22,-6],[-5,57]],[[4272,4784],[-17,15],[29,9],[-12,-24]],[[4337,5044],[24,-41],[-29,-31],[-25,26]],[[4504,4984],[-14,18],[16,20],[17,36],[16,-12]],[[4497,5074],[2,27],[29,-6],[-12,-27]],[[4567,5095],[-25,5],[4,7],[25,-5]],[[4473,5106],[1,30],[25,-4],[-3,-24],[-23,-2]],[[4137,5123],[-39,15],[7,19],[37,-14],[-5,-20]],[[4133,5102],[-40,16],[3,15],[40,-15],[-3,-16]],[[4069,5143],[23,-8],[-4,-16],[-22,9],[3,15]],[[4230,5037],[-25,13],[6,12],[28,-18],[-9,-7]],[[4136,5096],[23,-8],[-7,-29],[-24,9],[8,28]],[[4131,5098],[-6,-30],[-41,15],[7,30],[40,-15]],[[4169,5133],[-4,-21],[-24,9],[4,21],[24,-9]],[[4041,5369],[-40,15],[3,27],[9,-18],[17,-7],[11,7]],[[4146,5342],[11,18],[30,-13],[-3,-20],[-38,15]],[[4172,5273],[-39,16],[5,20],[39,-14],[-5,-22]],[[4166,5248],[-39,15],[5,20],[38,-15],[-4,-20]],[[4153,5195],[-38,15],[5,20],[38,-14],[-5,-21]],[[4109,5205],[-8,-29],[-66,25],[12,28],[62,-24]],[[4131,5197],[20,-8],[-6,-29],[-20,7]],[[4217,5338],[-4,-21],[-24,9],[5,20],[23,-8]],[[4211,5289],[5,20],[23,-8],[-5,-21],[-23,9]],[[4214,5195],[-5,-20],[-22,8],[4,20],[23,-8]],[[4241,5185],[9,-4],[-6,-23],[-10,6],[7,21]],[[4231,5246],[52,-14],[-6,-25],[-20,13],[-30,6],[4,20]],[[4237,5273],[39,-14],[-6,-17],[-37,10],[4,21]],[[4399,5274],[-3,32]],[[4396,5306],[28,3],[-2,-38],[-23,3]],[[4343,5335],[-6,-6],[-33,12],[5,20],[31,-11],[3,-15]],[[4264,5385],[5,20],[38,-14],[-6,-20],[-37,14]],[[4253,5360],[-23,9],[4,20],[23,-9],[-4,-20]],[[4212,5426],[24,-9],[-5,-20],[-23,8],[4,21]],[[4007,5250],[36,-18],[-12,-28],[-28,17]],[[4176,5272],[5,21],[24,-8],[-5,-21],[-24,8]],[[4139,5340],[-5,-24],[-24,15],[7,15]],[[4117,5346],[22,-6]],[[4176,5163],[-3,-14],[-22,8],[4,15]],[[4023,5252],[12,29],[22,-16],[-12,-28],[-22,15]],[[4094,5241],[-6,-21],[-38,14],[12,28],[32,-21]],[[4303,5247],[-14,-6],[-3,32]],[[4286,5273],[11,3],[6,-29]],[[4279,5200],[15,-13],[-8,-16],[-13,9],[6,20]],[[4555,5229],[2,-31],[-26,4],[-1,23],[25,4]],[[4637,5161],[-5,23]],[[4632,5184],[-26,9],[-8,46],[56,14],[14,-75]],[[4668,5266],[-11,39],[4,20]],[[4661,5325],[13,4]],[[4704,5304],[4,-25],[-40,-13]],[[4672,5181],[-5,27]],[[4667,5208],[20,11],[-4,21],[10,3]],[[4729,5236],[11,6],[-10,34],[8,9]],[[4738,5285],[6,3],[8,-42],[-10,-12]],[[4673,5157],[6,-18],[-82,-34],[-6,11]],[[3021,4976],[125,-83]],[[3146,4893],[-8,-20]],[[3033,4976],[11,40],[25,14]],[[3069,5030],[-4,-37],[-13,-30],[-19,13]],[[3736,4920],[5,-5]],[[3749,4877],[-19,14]],[[3730,4891],[6,29]],[[3239,5175],[1,-23],[-39,-14]],[[3368,4771],[-4,-1],[-55,55]],[[3309,4825],[34,-25],[22,-11],[3,-18]],[[3769,4853],[25,-21],[-71,-101]],[[3603,4721],[-16,-18]],[[3587,4703],[-27,39]],[[3350,4983],[0,24],[16,-1],[-3,-24],[-13,1]],[[3589,4931],[11,-16],[-16,-25],[-6,-25],[-20,-21],[18,-12]],[[3610,4796],[-4,-6]],[[3606,4790],[-65,63],[48,78]],[[3526,5140],[3,-53]],[[3529,5087],[-20,-1],[0,-26]],[[3509,5060],[-15,-1]],[[3510,5249],[-2,30]],[[3519,5208],[-10,26],[1,15]],[[3382,5447],[-57,22],[-3,8]],[[3513,5325],[-4,8],[-25,14]],[[3484,5347],[-5,5],[-54,21],[-8,-5],[-8,22],[4,31],[145,-56],[7,-10],[-52,-30]],[[3556,5564],[35,14],[8,-31],[-44,2],[1,15]],[[3688,5490],[-5,64]],[[3683,5554],[10,4],[6,-70],[-11,2]],[[3948,5374],[14,17],[18,-5],[-9,-28],[-23,16]],[[3713,5480],[-10,7],[-6,71],[11,3]],[[3861,5651],[-3,-36],[-28,-9],[-9,-12]],[[3821,5594],[-9,3],[-3,46],[52,8]],[[3992,5382],[-2,-44],[-16,18],[10,29],[8,-3]],[[3918,5391],[14,50],[39,-15],[11,-10],[-64,-25]],[[3952,5448],[3,12],[14,-1],[-4,-16],[-13,5]],[[3908,3926],[-9,-12],[-25,-8],[-3,20]],[[3871,3926],[35,12],[2,-12]],[[4085,3889],[-13,44],[-16,-9],[-10,20],[5,20]],[[4051,3964],[50,-2]],[[3775,3851],[15,-2],[17,-63],[-6,-14],[-27,-3],[1,82]],[[3797,3736],[-24,0],[1,28],[16,-1]],[[3809,3773],[3,14],[-15,55],[23,12],[10,-29],[8,-45]],[[3892,4056],[-1,7]],[[3891,4063],[9,4],[-6,28],[11,-2],[13,-36],[-12,-7],[-14,6]],[[4105,3976],[-53,3],[2,71],[31,-4],[2,12],[2,17]],[[4084,4075],[-4,-20],[-49,3],[1,15]],[[3985,4544],[7,-20]],[[3992,4524],[-22,-16],[-11,31],[19,22],[7,-17]],[[3624,4574],[26,26],[80,-114],[-31,-25]],[[3747,4397],[3,26],[41,-14]],[[3794,4387],[-17,-4]],[[3777,4383],[-3,16],[-27,-2]],[[3849,4488],[29,25]],[[3878,4513],[21,-36],[-3,-16],[-21,-26],[-26,53]],[[3914,4461],[2,2]],[[3916,4463],[3,2]],[[3919,4465],[7,-13],[12,10],[30,7],[-6,26]],[[3962,4495],[5,3],[13,-36],[-36,-54],[-30,53]],[[3648,4009],[2,8],[24,-5],[0,5],[3,52]],[[3677,4069],[37,1],[9,-52],[-2,-18],[-60,4],[-13,5]],[[3526,4446],[-52,57],[3,5],[64,-47],[-15,-15]],[[3537,4383],[20,-35]],[[3557,4348],[-44,-35],[-15,36],[39,34]],[[2904,4337],[-30,-16],[-60,-27],[-7,28],[36,13],[-3,5],[-35,-14],[-45,-2],[43,-2],[8,-29],[-41,-19],[-14,49],[-2,16],[38,15]],[[3226,4372],[32,-66],[-41,-56],[-53,-47]],[[3120,4602],[22,17],[29,-8]],[[3171,4611],[-2,-9],[-20,2],[-10,-19],[-9,19],[-10,-2]],[[3199,4209],[-29,-68],[-11,1],[-18,36],[32,30]],[[3232,4369],[15,10],[28,-51],[-15,-15],[-28,56]],[[3298,4240],[-18,36],[32,25]],[[3538,3916],[4,11],[32,0],[21,-10]],[[3595,3917],[-7,-31],[-50,30]],[[4231,3874],[2,19]],[[4234,3909],[32,-5],[-2,-35],[44,-5],[6,-31],[-68,9]],[[4304,3902],[2,18]],[[4306,3920],[21,-2],[11,-10],[-6,-37],[-16,5]],[[4316,3876],[5,24],[-17,2]],[[4200,4016],[7,19]],[[4207,4035],[21,-2],[-1,-22],[-27,5]],[[4256,4121],[-16,7],[16,46],[24,-11],[-2,-34]],[[4278,4129],[-18,8],[-4,-16]],[[4706,4071],[-7,-3],[-14,41],[40,18],[7,-27]],[[4625,4156],[6,-19]],[[4631,4137],[-9,-11],[9,-34],[-35,-14],[-4,60],[33,18]],[[4825,4009],[-2,-1]],[[4823,4008],[-27,-11],[-5,18]],[[4791,4015],[17,15],[-8,27],[37,23],[15,-21]],[[4852,4059],[-29,-36]],[[4823,4023],[1,-3]],[[4824,4020],[1,-11]],[[4805,4164],[25,15],[7,-23],[-15,-19],[14,-31],[19,11],[3,-11],[-19,-11],[-20,30],[-14,39]],[[5019,4221],[57,29],[4,-13]],[[5005,4217],[-18,35],[20,16],[20,-40],[-22,-11]],[[5020,4248],[45,30],[10,-25],[-45,-23],[-10,18]],[[5009,4270],[43,33],[12,-22],[-45,-30],[-10,19]],[[5069,4275],[-10,27],[6,38],[17,-4]],[[5094,4411],[-7,-5],[-44,-60],[20,-6],[-14,-35],[-42,-33]],[[4983,4259],[-30,63],[3,6],[115,164],[15,-16]],[[5082,4560],[18,-15],[-148,-211],[-17,26]],[[4414,4498],[16,77]],[[4430,4575],[9,-13]],[[4448,4538],[16,-48],[-5,-17],[-45,25]],[[4483,4553],[21,11],[14,-37],[-22,-12],[-13,38]],[[5084,4703],[23,45],[4,-20],[-17,-34]],[[5120,4677],[4,-29],[-27,-38],[-8,7],[31,60]],[[5204,4713],[-30,-4],[-11,87],[36,5]],[[5056,4702],[14,26]],[[5070,4728],[12,-10],[-14,-26],[-12,10]],[[5009,5159],[17,18],[13,-18],[-8,-16]],[[5196,5209],[27,12],[3,-27]],[[5197,5194],[-1,15]],[[5360,5168],[14,-4],[17,-16],[-1,-15]],[[5390,5133],[-52,-29],[-9,32],[31,32]],[[4777,5237],[6,-20],[-35,-22]],[[4893,5054],[-2,-39],[6,-20],[-32,-5],[-1,46]],[[4864,5036],[29,18]],[[4850,5278],[7,-26],[-69,-33],[-5,20]],[[4931,4987],[-5,-15]],[[4926,4972],[-13,1],[0,31],[13,-1],[13,-13],[-8,-3]],[[5026,5363],[37,13],[17,-81],[-30,8],[-11,12],[-13,48]],[[5084,5386],[20,6],[7,-54],[-18,-4],[-9,52]],[[5607,5591],[-13,18]],[[5594,5609],[27,28]],[[5621,5637],[17,-14],[3,-11]],[[5439,5479],[11,-37]],[[5400,5402],[-6,56],[-15,36],[21,20],[20,-84],[4,2],[-9,37],[24,10]],[[4417,5376],[-27,-16],[-42,-18],[-14,76],[50,17],[33,-59]],[[4265,5675],[-7,20],[13,13],[14,-13],[-5,-18],[-15,-2]],[[4388,5679],[5,-31],[-48,-13],[-9,51],[4,5],[48,-12]],[[4272,5547],[24,-2]],[[4296,5545],[-8,-33],[-23,11],[7,24]],[[4478,5715],[11,-53],[-99,25],[-5,27]],[[4695,5462],[32,10],[6,-50],[7,-23]],[[4732,5385],[-8,5]],[[5034,5469],[4,-13],[-25,-3],[21,16]],[[5076,5455],[-12,39],[51,42]],[[4935,5488],[-35,-19],[-17,44],[4,2],[48,-27]],[[4770,5611],[30,12],[6,-21],[-5,-15],[-11,-4],[3,-12]],[[4793,5571],[-15,7],[-8,33]],[[4271,5903],[-4,10],[0,36],[-14,-1],[-1,0],[5,13],[13,2],[7,-13],[0,-35],[-4,-11]],[[4273,5904],[-2,-1]],[[4328,5758],[1,-33],[-4,-2],[-45,19],[24,7]],[[2554,4901],[29,-7],[-6,-95]],[[2577,4799],[-34,0],[2,41],[9,61]],[[2766,4517],[51,-11],[4,43],[-4,0],[9,69],[19,-3]],[[2845,4615],[-9,-69],[-9,-52],[-56,9],[-5,14]],[[3135,4671],[-6,36],[22,-18]],[[2889,4538],[21,35],[12,-13],[-18,-32],[-15,10]],[[2976,4499],[-27,-20],[-30,4],[38,69],[14,-5],[5,-48]],[[2774,5119],[1,-16],[-13,3],[-1,12],[13,1]],[[2376,5210],[-40,4],[-11,-6],[-9,14]],[[2831,5143],[5,-11],[2,-33],[-5,-15]],[[2833,5084],[-26,-1],[-2,48],[26,12]],[[2545,5386],[-3,-12]],[[2519,5382],[13,59],[11,35],[32,-12],[-7,-18]],[[2459,5412],[-13,6],[-4,57]],[[2442,5475],[74,11],[17,-7],[-6,-38],[-14,-62]],[[3093,5254],[35,17]],[[3128,5271],[17,-20],[-12,-43]],[[3365,5685],[-4,16],[22,-4],[-18,-12]],[[3239,5750],[29,48],[3,0],[-3,-49],[-25,1]],[[3363,5757],[0,15],[32,16],[19,-59],[-7,-4],[-44,32]],[[3438,5717],[40,21],[17,-51],[-17,-6],[-41,19]],[[2749,5918],[-7,-16]],[[2708,5821],[-32,9],[-1,21],[30,42],[17,31],[27,-6]],[[2770,5843],[-17,-33],[-22,7],[20,36]],[[2751,5853],[19,-10]],[[2379,5892],[23,5],[4,-14],[-49,-13],[-4,14],[26,8]],[[2410,5861],[-25,-18],[-10,30],[31,7],[4,-19]],[[2431,5868],[-19,0],[-7,30],[22,5],[4,-35]],[[1864,5546],[16,-15],[-7,-28],[7,-40],[-1,-46],[28,0],[3,-20],[-13,-2],[-36,8]],[[1895,5496],[-18,-4]],[[1877,5492],[-1,26],[6,12],[24,-23],[-11,-11]],[[1865,5578],[5,-13],[14,-5],[34,-31],[-11,-20],[-44,42]],[[1909,5507],[12,20],[27,-22],[-10,-22],[-29,24]],[[1962,5484],[-6,-15],[-17,14],[10,21],[6,-4]],[[2074,5806],[1,12],[26,-10],[38,1]],[[2162,5817],[22,4],[-16,-39]],[[2193,5859],[-19,7],[-2,-8],[-20,7]],[[2152,5865],[4,26],[41,-15],[-4,-17]],[[1652,6172],[-15,5],[-11,-51],[2,-45]],[[1628,6081],[-13,2]],[[1603,6077],[-8,19],[-1,51],[11,53],[-1,13]],[[1675,6000],[-7,-1],[-30,62],[-8,60],[9,49],[20,-7]],[[2045,5976],[21,5],[20,-7],[-8,-37],[-29,10]],[[2137,5916],[-57,20],[9,36],[56,-20],[-8,-36]],[[2167,5944],[42,-16],[-8,-36],[-42,15]],[[1843,6067],[1,23],[111,-40],[6,-26],[-118,43]],[[2067,5985],[1,24],[46,-16],[-5,-23],[-42,15]],[[2112,5969],[5,22],[35,-13],[-5,-22],[-35,13]],[[2233,5923],[-19,7],[6,24],[13,-31]],[[2209,5978],[10,-20],[-156,57],[-2,18]],[[2325,6057],[22,-51],[-1,-14]],[[2346,5992],[-10,1],[-3,18],[-16,40],[8,6]],[[2430,6127],[-20,50]],[[2410,6177],[11,7],[20,-50],[-11,-7]],[[2410,6178],[-17,41]],[[2393,6219],[13,8],[16,-41],[-12,-8]],[[2446,6197],[-10,-6],[-18,45],[10,6],[18,-45]],[[2467,6211],[-20,-13],[-18,45],[19,13],[19,-45]],[[2382,6214],[-15,42],[20,13],[18,-40],[-23,-15]],[[2426,6243],[-20,-13],[-15,39],[20,13],[15,-39]],[[2346,6308],[20,12],[20,-50],[-19,-13],[-21,51]],[[2405,6281],[-18,-8],[-20,48],[21,14],[21,-52],[-4,-2]],[[2316,6335],[11,32],[14,-10],[18,-38],[-14,-8]],[[2360,6320],[-11,28],[18,11],[11,-27],[-18,-12]],[[2328,6368],[22,34],[16,-41],[-18,-12],[-20,19]],[[1824,5932],[-3,39],[21,-4],[-1,-27],[10,-9]],[[1827,6005],[18,0],[28,-10],[-7,-31],[-44,11],[5,30]],[[1733,5872],[-20,32],[22,23],[10,-17],[10,-2],[31,27],[26,6],[1,-10]],[[2016,5697],[46,-22]],[[2069,5658],[-35,-15]],[[2034,5643],[-5,-5],[-29,31],[9,26],[7,2]],[[1984,6060],[12,-41],[-2,-8],[-28,11],[-9,31],[-113,41],[-5,20]],[[2287,5960],[-6,-25],[-14,-26],[1,54],[19,-3]],[[2291,5959],[18,-3],[-3,-33],[-35,-19],[13,28],[7,27]],[[2312,5955],[18,-3],[-1,-32],[-20,2],[3,33]],[[2268,5865],[1,8],[35,17]],[[2471,5511],[-2,20],[25,2],[10,-18],[-33,-4]],[[2415,5555],[-43,-7],[-2,27],[31,4],[14,-24]],[[2418,5566],[10,17],[34,5],[2,-27],[-45,-6],[-1,11]],[[2467,5561],[-2,27],[32,5],[3,-27],[-33,-5]],[[2366,5579],[-34,-5],[-2,25],[35,4],[1,-24]],[[2414,5613],[-2,25],[45,6],[2,-24],[-45,-7]],[[2462,5620],[-1,25],[32,4],[2,-25],[-33,-4]],[[2180,5644],[10,30],[26,-13],[-9,-31],[-27,14]],[[2412,5658],[43,6],[1,-16],[-44,-6],[0,16]],[[2192,5681],[9,29],[23,-11],[-8,-32],[-24,14]],[[2453,5696],[0,-25],[-41,-5],[-3,25],[44,5]],[[2490,5686],[1,-10],[-33,-1],[-1,34],[31,5],[2,-28]],[[2254,5760],[-21,-10],[10,53],[13,-4],[-2,-39]],[[2263,5761],[39,25],[18,-29],[-17,-12],[-26,-7],[-15,3],[1,20]],[[2297,5840],[48,-18],[0,-3],[-39,-25],[-10,18],[1,28]],[[2497,5675],[-7,66],[38,-12],[-18,-44],[-13,-10]],[[2561,5835],[-7,-46],[-14,-25],[-53,19],[-1,13],[14,11],[61,28]],[[1002,4260],[18,26]],[[1215,3871],[12,-2]],[[1227,3869],[-9,-22]],[[1234,4064],[-7,11],[33,24],[9,-4]],[[1219,4150],[27,-44],[10,-7],[-30,-22],[-31,53],[24,20]],[[1281,4135],[-17,14],[6,42],[10,2]],[[1297,4183],[9,-62]],[[1250,4259],[8,-66],[-26,-3],[-9,47],[27,22]],[[1279,4196],[-20,-2],[-2,46],[-6,22],[19,5]],[[843,4476],[5,53],[38,7],[-9,-68],[-34,8]],[[911,4504],[3,34],[27,-3],[-2,-28],[-28,-3]],[[996,4502],[-55,5],[3,27],[55,-6],[9,-1],[-2,-25],[-10,0]],[[1044,4506],[-36,-4],[2,25],[37,-1]],[[1045,4504],[32,1],[32,-11],[-3,-22],[5,20],[17,-6],[-10,-40]],[[1150,4509],[8,-3],[-18,-72],[-11,3]],[[1142,4433],[18,70],[15,-4],[-11,-72],[-22,6]],[[1180,4422],[-14,4],[11,74],[8,-1]],[[1191,4500],[13,-2],[-5,-80],[-14,3]],[[1202,4416],[4,80],[20,-2],[-6,-82],[-18,4]],[[893,4595],[-6,-55],[-26,-4],[2,48],[30,11]],[[1047,4530],[-37,0],[3,24],[36,-7]],[[1058,4545],[30,-8],[-4,-28],[-32,-3]],[[1130,4491],[-17,7],[15,57],[17,-6],[-15,-58]],[[1003,4560],[-56,6],[2,24],[57,-6]],[[1006,4584],[-3,-24]],[[1050,4551],[-37,7],[3,24],[37,-7]],[[1067,4638],[37,5],[-5,-32],[-31,5],[31,-8],[-6,-38],[-31,5],[31,-9],[-4,-25],[-33,8]],[[1159,4538],[13,-3],[-5,-29],[-16,6]],[[1185,4512],[0,-9],[-15,2],[5,28]],[[1175,4533],[12,-3]],[[1011,4628],[-4,-40]],[[1007,4588],[-58,6],[2,17],[60,17]],[[1053,4579],[-37,7],[3,22],[37,-3]],[[1096,4569],[6,38],[16,-4],[-8,-38],[-14,4]],[[1113,4564],[8,38],[16,-4],[-11,-38],[-13,4]],[[1226,4499],[-19,3],[4,68],[20,-3],[-5,-68]],[[448,4656],[-2,17],[30,7],[50,23],[2,-17]],[[445,4675],[-7,58],[20,3],[8,-58],[-21,-3]],[[467,4679],[-7,57],[19,3],[6,-52],[-18,-8]],[[487,4687],[-6,53],[19,3],[5,-47],[-18,-9]],[[526,4705],[-19,-8],[-5,46],[19,3],[5,-41]],[[530,4707],[-4,39],[22,4],[4,-36],[-22,-7]],[[554,4714],[-5,36],[23,5],[4,-33],[-22,-8]],[[438,4734],[-4,28],[14,3],[6,15],[4,-42],[-20,-4]],[[459,4738],[-3,42],[19,3],[4,-42],[-20,-3]],[[480,4742],[-3,41],[19,3],[4,-41],[-20,-3]],[[517,4789],[4,-41],[-20,-3],[-3,41],[19,3]],[[523,4790],[21,2],[3,-38],[-22,-4],[-2,40]],[[548,4754],[-3,38],[22,3],[3,-37],[-22,-4]],[[574,4757],[-5,39],[21,3],[4,-37],[-20,-5]],[[596,4761],[-4,38],[25,4],[-2,-38],[-19,-4]],[[761,4735],[-23,-4],[6,148],[23,3]],[[433,4871],[-2,46],[19,-1],[-1,-42],[-16,-3]],[[431,4919],[-1,36],[6,18],[16,-1],[-2,-55],[-19,2]],[[451,4874],[2,98],[20,-1],[-3,-95],[-19,-2]],[[434,4975],[9,47],[10,10],[-1,-58],[-18,1]],[[454,4974],[1,60],[21,12],[-3,-74],[-19,2]],[[475,4973],[3,74],[17,1],[-3,-75],[-17,0]],[[773,4961],[21,-5],[5,-58],[-29,-5]],[[873,4909],[-5,76],[22,0],[4,-74],[-21,-2]],[[782,5076],[10,-1],[-3,-28],[-3,-84],[-8,0]],[[790,5016],[14,6],[2,-68],[-18,10],[2,52]],[[808,4954],[-2,67],[16,-2],[2,-65],[-16,0]],[[841,4961],[-15,-7],[-2,64],[16,-4],[1,-53]],[[868,4989],[1,48],[22,-2],[-1,-47],[-22,1]],[[840,5017],[-31,7],[-18,-5],[0,24],[50,-5],[-1,-21]],[[842,5042],[-49,4],[1,27],[49,-4],[-1,-27]],[[844,5041],[2,28],[45,-3],[0,-28],[-47,3]],[[774,5128],[-31,2],[-29,14],[4,22],[29,-11],[28,-1]],[[784,5156],[8,1],[0,-36],[30,-3]],[[841,5166],[4,-41],[-23,-4],[-28,2],[0,35],[47,8]],[[885,5176],[4,-44],[-41,-7],[-4,41],[41,10]],[[719,5170],[9,17],[33,8],[4,-37],[-46,12]],[[779,5160],[-10,-2],[-4,37],[26,4]],[[794,5203],[-30,-2],[-32,-7],[-11,-8],[-23,11]],[[795,5164],[5,17],[14,16],[58,12],[6,-3],[4,-24],[-87,-18]],[[491,4884],[3,86],[26,-3],[-4,-17],[-2,-67],[-23,1]],[[490,4850],[1,31],[23,-1],[-1,-26],[-23,-4]],[[604,4868],[-55,-8],[1,27],[22,3],[14,-16],[17,2],[1,-8]],[[551,4890],[1,33],[18,0],[3,-29],[-22,-4]],[[646,4874],[-36,-5],[38,34],[-2,-29]],[[428,4761],[5,1],[13,-106]],[[517,4791],[-68,-10],[1,20],[44,6],[21,19],[2,-35]],[[811,4466],[-2,56],[36,7],[-4,-53],[-30,-10]],[[838,4580],[-3,-49],[-28,-5],[-1,44],[32,10]],[[915,4541],[2,25],[27,-4],[-2,-24],[-27,3]],[[423,4867],[23,5],[5,-30],[-15,-4]],[[419,4924],[10,0],[3,-53],[-9,-3]],[[432,4974],[-3,-49],[-10,0]],[[650,5091],[-6,11],[66,21],[4,18],[28,-13],[32,-3]],[[447,4646],[2,1]],[[530,4676],[3,-22],[-9,-6],[-49,-16],[-13,-8],[31,-148],[-5,-7]],[[496,4478],[-10,55],[3,1],[-8,39],[-5,-1],[-10,47],[5,8],[62,23],[22,-159]],[[576,4736],[-1,19],[41,7]],[[551,4562],[-3,17]],[[1481,4804],[5,-16],[-13,-22]],[[1473,4766],[-8,7]],[[1365,4367],[-12,43],[107,4],[0,-26],[11,0],[0,-23],[21,10],[8,19],[-17,0],[0,19],[15,0]],[[1412,4421],[-22,-4],[-3,64]],[[1387,4487],[-2,88],[-33,-1]],[[1426,4600],[-8,13],[5,22],[0,42]],[[1423,4677],[11,2]],[[1434,4679],[1,2]],[[1198,4676],[10,45],[14,19]],[[1222,4740],[8,0]],[[1230,4740],[11,54]],[[1241,4794],[113,-53],[-12,-36],[-31,-50],[-4,-6],[-57,12],[-52,15]],[[1389,3960],[-34,7]],[[1355,3967],[7,61]],[[1362,4028],[88,-15],[12,1]],[[1376,4198],[-35,-4]],[[1301,4190],[-5,32],[23,2],[68,8]],[[1302,4835],[-4,-17],[-20,7],[4,17],[20,-7]],[[1207,5070],[-29,-57]],[[1186,5086],[21,-16]],[[1392,4946],[-14,-4],[-24,26],[-9,-2],[-1,42],[-4,22],[7,9]],[[1297,5217],[15,-33],[-10,-5],[-11,19]],[[1394,5080],[-10,26],[16,3]],[[1191,4962],[-18,1]],[[1173,4963],[53,48],[9,-23],[2,-35],[-19,-8],[2,13],[-29,4]],[[1266,5045],[17,-34],[-45,-18],[-9,21],[37,31]],[[1147,4846],[5,-15],[-22,1],[0,-22]],[[1130,4810],[-10,0],[8,38],[16,8],[3,-10]],[[1220,5186],[-6,64],[5,1]],[[1474,5683],[19,5]],[[1493,5688],[11,-56],[0,-23],[-18,-43]],[[1496,5688],[20,7]],[[1489,5565],[16,41],[2,23],[-11,59]],[[1501,5332],[-7,31],[-1,24],[39,7],[-39,-3],[-2,31],[26,9],[-25,-2],[0,12],[48,3],[19,-32],[-4,27],[15,-10],[39,-45],[17,-13]],[[696,5344],[-12,5]],[[684,5349],[2,16],[25,-7],[31,-4],[24,-2],[-1,-15]],[[754,5422],[19,-6],[-11,-61],[-20,2],[-13,1],[6,37]],[[735,5395],[12,-5],[7,32]],[[767,5337],[-2,25],[11,54],[13,-5]],[[940,5319],[4,43],[67,-21],[-2,-33]],[[983,5360],[2,18],[32,-2],[-2,-29],[-32,13]],[[1040,5338],[1,36]],[[1041,5374],[77,-7],[-2,-51],[-76,22]],[[1286,5484],[1,-8],[24,1],[10,-11]],[[1321,5466],[-16,-26],[-35,-2],[0,52],[16,-6]],[[1202,5537],[-62,-20],[-18,14],[-47,35]],[[1075,5607],[-6,36],[32,10],[64,19],[14,17],[24,-49]],[[965,5459],[-23,4],[41,85],[19,-12],[-37,-77]],[[981,5602],[39,-29],[-16,-33],[-40,27],[17,35]],[[1006,5624],[57,18],[5,-28],[-15,-31],[-48,36],[1,5]],[[1383,5939],[16,3],[7,-31],[5,1],[-5,30],[19,3]],[[1022,5884],[-37,90],[20,11],[23,-55],[22,-41],[-28,-5]],[[1049,5932],[-21,62],[17,6],[18,-62],[-14,-6]],[[1047,6001],[20,8],[14,-62],[-16,-7],[-18,61]],[[1083,5948],[-14,62],[18,8],[12,-64],[-16,-6]],[[1128,5967],[-27,-12],[-12,63],[28,11],[11,-62]],[[1004,5988],[-22,-10],[-35,87],[22,14],[35,-91]],[[974,6080],[20,7],[30,-89],[-16,-7],[-34,89]],[[998,6088],[20,5],[26,-88],[-17,-6],[-29,89]],[[1049,6097],[23,4],[15,-80],[-19,-8],[-19,84]],[[1118,6033],[-29,-11],[-14,80],[30,5],[13,-74]],[[1015,6103],[1,-8],[-43,-12],[-4,10]],[[966,6102],[-3,10],[49,13],[2,-12]],[[956,6133],[54,18],[4,-23],[-36,-7],[-15,-8],[-7,20]],[[1009,6154],[-54,-18],[-10,11]],[[1111,6105],[7,-8]],[[1118,6097],[-2,-2],[39,-46],[-22,-55],[-4,-1],[-20,112],[2,0]],[[1143,6012],[14,34],[29,-35],[-13,-27],[-30,28]],[[1175,5983],[13,26],[21,-27],[-9,-17],[-25,18]],[[1109,6107],[-4,26],[63,8],[46,-5],[3,-20],[-69,-3],[-39,-6]],[[1253,6237],[12,9]],[[1224,6056],[7,66],[2,63],[10,23],[12,18],[-2,11]],[[1346,6039],[4,9],[28,1],[3,-11],[-35,1]],[[1380,6139],[-11,-61],[4,-13],[-21,-5]],[[1352,6060],[-3,2]],[[1423,5952],[-18,-3],[-6,30]],[[1399,5979],[21,6]],[[1425,6031],[-38,-3]],[[1387,6028],[-15,50],[8,44],[3,17]],[[1530,6164],[-2,2]],[[1528,6166],[-4,-3]],[[973,5533],[-33,-68],[-19,13],[34,71],[18,-16]],[[912,6076],[6,-18]],[[918,6058],[-27,-14],[-40,-22],[-48,-34],[-42,-30],[-48,-33],[-10,9]],[[960,5687],[46,41],[10,-17]],[[1016,5711],[-5,-5],[24,-42],[17,5],[7,-21]],[[1059,5648],[-29,-9],[-37,-11],[-23,42],[-10,17]],[[1023,5865],[-19,4]],[[1004,5869],[53,10],[21,-29]],[[1166,5711],[7,-16],[-19,-19],[-37,-11]],[[1117,5665],[-5,23]],[[858,5523],[-15,-35]],[[960,5567],[-17,7],[-22,-45],[-41,32],[9,20],[20,0],[19,8],[26,20],[17,6],[7,-12],[-18,-36]],[[942,5869],[-19,45]],[[923,5914],[14,17]],[[937,5931],[9,3]],[[946,5934],[13,-32],[-8,-3],[11,-26]],[[962,5873],[-20,-4]],[[928,6023],[8,10]],[[936,6033],[64,-153],[-11,-2]],[[1127,6248],[17,0],[-12,-81],[-27,-1],[22,82]],[[1162,6248],[-5,-60],[1,-19],[-24,-2],[12,80],[16,1]],[[1164,6248],[17,1],[2,-67],[-23,-3],[4,69]],[[1183,6249],[16,4],[5,-23],[4,-44],[-23,-4],[-2,67]],[[1104,6136],[1,29],[66,3],[-1,10],[38,5],[-5,-27],[-35,-11],[-64,-9]],[[1228,6123],[-8,-5],[-4,21],[-46,4],[34,12],[7,11],[-4,62],[-6,25],[13,4],[5,-43]],[[1164,6327],[16,2],[2,-17],[25,2]],[[1211,6266],[1,-5],[-36,-9],[-3,29],[-9,46]],[[1221,6216],[-6,41]],[[924,6175],[-3,7]],[[1591,4507],[0,3]],[[1591,4510],[-1,16]],[[1590,4526],[0,4]],[[1590,4530],[-1,17]],[[1592,4548],[8,0]],[[1600,4548],[1,-18]],[[1601,4530],[0,-3]],[[1601,4527],[1,-16]],[[1602,4511],[0,-4]],[[1602,4507],[1,-16]],[[1603,4491],[0,-3]],[[1603,4488],[1,-16]],[[1604,4472],[0,-3]],[[1604,4469],[1,-15]],[[1605,4454],[-11,-1]],[[1594,4453],[-1,16]],[[1593,4469],[0,3]],[[1593,4472],[-1,15]],[[1592,4487],[0,4]],[[1592,4491],[-1,16]],[[1548,4504],[21,2],[1,-16],[-20,-2]],[[1895,4825],[-35,29],[11,22],[6,-1],[18,-50]],[[2254,4899],[-4,-32],[-9,-33],[-54,32],[15,35]],[[2208,4648],[8,34],[23,58]],[[384,4920],[-15,5],[-24,-6],[3,19],[47,103],[7,20],[4,36],[46,14],[3,-17],[55,5],[9,18],[2,-28]],[[512,5123],[-4,-22],[-52,-6],[-3,16],[59,12]],[[517,5146],[0,-19],[-65,-13],[-46,-13],[1,14]],[[524,5204],[59,1],[1,-17],[11,-4],[-54,-15],[-19,2],[2,33]],[[525,5209],[2,30],[58,-6],[-2,-25],[-58,1]],[[544,5276],[-1,-18],[34,-3],[-1,-17]],[[576,5238],[-49,5],[2,35],[15,-2]],[[544,5281],[-14,4],[1,28],[20,-1],[37,-4],[-2,-32],[-42,5]],[[532,5317],[2,31],[69,-7],[-3,-31],[-68,7]],[[640,5374],[-18,8],[14,44],[18,-12],[-14,-40]],[[658,5412],[33,-13],[-6,-22],[-34,16],[7,19]],[[697,5409],[18,-6]],[[715,5403],[-9,-41],[-19,7],[10,40]],[[717,5402],[16,-6]],[[733,5396],[-7,-37],[-18,3],[9,40]],[[621,5464],[46,-15],[-12,-32],[-40,25],[6,22]],[[597,5680],[22,1]],[[645,5648],[1,-58]],[[710,5558],[9,21],[29,-20],[-11,-27],[-27,26]],[[738,5530],[12,28],[20,-14],[-12,-30],[-20,16]],[[760,5513],[12,30],[14,-10],[-7,-23],[-19,3]],[[725,5601],[37,-19],[-8,-23],[-35,24],[6,18]],[[755,5558],[9,23],[31,-16],[-8,-29],[-32,22]],[[658,5688],[9,1],[1,-18],[56,-32],[8,-7],[-10,-25],[-76,41]],[[727,5605],[9,24],[36,-19],[-9,-25],[-36,20]],[[796,5567],[-31,17],[9,24],[28,-16],[-6,-25]],[[671,5690],[33,5],[-12,-34],[-23,13],[2,16]],[[706,5695],[21,-5],[-14,-41],[-19,11],[12,35]],[[734,5637],[-19,11],[14,41],[19,-11],[-14,-41]],[[753,5675],[21,-11],[-16,-44],[-20,13],[15,42]],[[795,5651],[-14,-44],[-21,12],[16,44],[19,-12]],[[772,5729],[22,-9],[-19,-52],[-21,12],[18,49]],[[777,5667],[18,52],[19,-8],[-18,-55],[-19,11]],[[798,5655],[18,55],[18,-8],[-17,-58],[-19,11]],[[593,5853],[20,1],[-99,-69],[-15,-3]],[[246,5009],[24,4]],[[270,5013],[4,-45],[-23,-4],[-5,45]],[[343,4957],[5,-2],[-7,-35],[-42,7],[1,11],[2,29],[41,-10]],[[299,5019],[29,12]],[[328,5031],[13,-18],[-17,-44],[-22,4],[-3,46]],[[363,4998],[5,-3],[-18,-38],[-5,2],[-19,7],[17,45],[20,-13]],[[403,5113],[0,-13],[-192,-55],[-24,-6],[-4,7]],[[180,5061],[-1,13],[59,15],[82,23],[15,-5],[30,9]],[[365,5116],[24,7],[1,27],[-49,-14],[1,19],[-22,-7],[0,-32]],[[320,5116],[-16,-5],[-3,44],[19,5],[0,3],[-20,-4],[-1,12],[0,6],[1,44],[21,0],[0,-35],[2,1],[-1,34],[18,0],[0,-27],[2,0],[0,27],[18,-1],[1,-21],[0,-19],[18,-3],[3,22],[12,0],[15,-3],[-4,-68],[-1,-5]],[[208,5089],[-29,-12],[-6,101],[16,20],[15,-15],[4,-94]],[[211,5086],[-5,98],[33,-18],[3,-71],[-31,-9]],[[141,5217],[27,-3],[18,-13],[-23,-28],[-18,-15],[-4,59]],[[200,5222],[-13,-19],[-18,13],[-17,3],[-3,27],[1,35],[33,-1],[30,-38],[-13,-20]],[[203,5220],[21,-23],[38,-21]],[[262,5176],[2,0],[1,100],[-5,13],[5,20],[34,0],[-2,-133],[1,-18],[-24,0],[-35,11],[-30,16],[-19,15],[13,20]],[[259,5287],[4,-12],[-2,-63],[-11,1],[-34,26],[43,48]],[[381,5202],[-2,-23],[-17,1],[1,49],[9,-1]],[[149,5313],[39,2],[-1,-32],[-37,0],[-1,30]],[[236,5270],[-9,14],[0,33],[34,-2],[-7,-27],[-18,-18]],[[300,5223],[1,71],[21,-2],[-1,-68],[-21,-1]],[[322,5224],[1,68],[20,0],[-2,-68],[-19,0]],[[344,5264],[0,28],[20,-1],[-3,-68],[-19,1],[2,40]],[[362,5232],[3,59],[23,-2],[-4,-59],[-22,2]],[[406,5304],[11,-1],[-6,-76],[-15,1],[-11,1],[3,38],[2,38],[16,-1]],[[225,5374],[-1,-54],[-74,-1],[-2,49],[3,14],[74,-8]],[[301,5369],[-1,-54],[-72,4],[1,56],[72,-6]],[[313,5327],[31,-1],[0,-13],[-42,2],[0,12],[1,43],[22,-2],[-1,-40],[-11,-1]],[[325,5330],[1,38],[20,-1],[-1,-37],[-20,0]],[[346,5329],[0,38],[25,-2],[-5,-37],[-20,1]],[[368,5328],[4,37],[22,-3],[-4,-36],[-22,2]],[[416,5316],[1,-7],[-27,2],[5,50],[9,-1]],[[431,5566],[-3,27],[53,30]],[[481,5623],[2,-24],[-27,-17],[-3,9],[-22,-8],[8,-15]],[[213,5715],[44,9]],[[253,5690],[-42,7]],[[334,5739],[-4,-63],[-4,1],[-47,51],[55,11]],[[368,5708],[-2,-38]],[[366,5670],[-34,6],[3,30],[33,2]],[[434,5735],[-12,-93],[-17,19],[6,68]],[[411,5729],[23,6]],[[336,5754],[0,-3],[-66,-14],[-7,18],[9,120],[19,-3]],[[296,5972],[-5,-82],[-1,-15],[-17,3],[1,14],[6,82],[4,60],[17,-10],[-5,-52]],[[327,6010],[-11,-140],[-25,5],[11,148],[25,-13]],[[353,5999],[-10,-133],[-26,4],[11,139],[25,-10]],[[377,5946],[-6,-84],[-26,4],[5,83],[27,-3]],[[380,5983],[-2,-35],[-28,3],[4,48],[26,-16]],[[411,5954],[0,-10],[-32,4],[1,9],[1,26],[31,-16],[-1,-13]],[[483,5721],[7,-5],[-1,-23],[-32,-9],[-28,5],[5,30],[24,5],[-2,-15],[25,-3],[2,15]],[[596,5388],[41,-18],[-1,-19]],[[425,5630],[17,7],[47,28]],[[489,5665],[4,-28],[-65,-37],[-3,30]],[[752,5950],[6,-14],[35,23],[7,-16],[13,2]],[[813,5945],[4,-17],[19,-49],[-16,-3],[-17,40],[10,-28],[-41,-14],[-39,33],[-19,16],[38,27]],[[601,5141],[3,-27],[-30,-7],[-51,-3],[-2,21],[80,16]],[[624,5188],[3,16],[18,-6]],[[652,5196],[-4,7],[82,31]],[[627,5208],[6,41],[15,-1],[3,-39],[-24,-1]],[[654,5208],[-5,17],[45,17],[5,-17],[-45,-17]],[[700,5225],[-4,18],[19,7],[13,-15],[-28,-10]],[[649,5227],[1,21],[32,12],[12,-16],[-45,-17]],[[650,5329],[-2,-79],[-15,1],[4,85]],[[662,5321],[-1,-30],[10,-33],[-21,-8],[2,78]],[[375,5559],[-12,12],[-1,16],[64,1],[2,-23]],[[699,6037],[35,18]],[[372,5757],[-34,-6],[2,38],[28,3]],[[439,5770],[-49,-9]],[[410,5918],[4,48],[33,-19]],[[340,5791],[4,73],[27,-3],[-5,-67],[-26,-3]],[[630,5120],[7,-18],[-28,-12],[-3,22],[24,8]],[[654,5157],[1,26],[39,12],[26,-11],[-4,-13],[-62,-14]],[[521,5147],[99,28]],[[620,5175],[1,-23],[-99,-22],[-1,17]],[[624,5175],[28,8],[0,-26],[-24,-4],[-4,22]],[[603,5140],[20,5],[6,-21],[-23,-10],[-3,26]],[[633,5127],[-4,21],[87,19],[-4,-21],[-79,-19]],[[899,5759],[-2,16],[76,15]],[[973,5790],[5,-39]],[[978,5751],[-18,21],[-22,-8]],[[938,5764],[-6,1]],[[932,5765],[-32,-7]],[[900,5758],[-1,1]],[[494,5668],[0,56],[22,3],[-3,-58],[-19,-1]],[[494,5729],[1,22],[21,5],[-1,-25],[-21,-2]],[[518,5775],[-2,-16],[-19,-3],[-1,14],[22,5]],[[372,5559],[4,-7],[-5,-70],[-4,-13],[-28,-15]],[[348,5621],[-10,10]],[[338,5631],[44,-8],[40,5],[3,-27],[-24,-6],[-49,-2],[-4,28]],[[523,5089],[0,12],[51,4],[31,6],[3,-21],[-34,-9]],[[574,5081],[-43,9]],[[204,5813],[11,-19],[52,-57],[-56,-11],[-44,-9],[0,10],[25,5],[-2,20],[-22,-4],[1,17]],[[168,5745],[21,4],[1,-15],[-21,-4],[-1,15]],[[161,5764],[2,-16],[-31,-5],[-2,-18],[33,1],[1,-9],[-22,-4],[-24,4],[3,28],[2,18]],[[165,5729],[-33,-1],[1,15],[30,2],[2,-16]],[[1174,6709],[22,51],[15,-16],[-16,-31],[-21,-4]],[[1099,6901],[43,-2],[-2,-21]],[[1134,6836],[-2,-64],[-60,8]],[[1195,6763],[-61,9],[3,25],[39,-5],[22,16],[20,-1],[-23,-44]],[[1235,7011],[45,-11]],[[1223,6694],[-24,14]],[[1199,6708],[16,36],[15,24],[35,71],[13,26],[-3,12],[25,-3],[-26,5],[-11,14],[-9,35],[-19,83]],[[1144,6912],[0,19],[65,0],[28,-20]],[[681,7194],[-23,-33],[-9,7]],[[681,7158],[-7,-10],[-15,12],[22,32],[15,-12],[-15,-22]],[[685,7154],[9,16],[31,-26],[-2,-13],[-13,2],[-25,21]],[[726,7108],[-48,37],[7,7],[29,-24],[15,10],[-5,9],[-31,27],[5,7]],[[1276,7021],[-46,12]],[[1230,7033],[-2,6]],[[1205,7123],[-22,62],[28,17],[21,-80]],[[1276,7120],[-41,2]],[[1235,7122],[-12,52],[61,-2],[-8,-46]],[[1285,7175],[-63,2],[-8,26],[10,3],[66,-2],[-5,-29]],[[1169,7271],[17,-34],[14,-35],[-20,-11],[-27,71],[16,9]],[[1200,7210],[-22,50],[23,6],[16,-47]],[[1282,7237],[-67,-1],[-10,30],[66,0],[11,-29]],[[1175,7323],[25,-54],[-26,1],[-18,50],[19,3]],[[1179,7323],[27,5],[3,-28],[50,-1],[10,-29],[-66,0],[-24,53]],[[1122,7329],[23,12],[23,-63],[-16,-12],[-23,43],[-7,20]],[[1206,7330],[-1,1]],[[1205,7331],[-4,40],[39,19],[16,1],[18,-9]],[[1276,7126],[17,75],[4,6],[-18,2],[-56,2],[-4,22],[61,0],[6,0],[-23,66],[-51,3],[-6,28]],[[1138,6853],[10,-1]],[[1151,6799],[-14,2],[1,52]],[[1210,6848],[22,-3],[-13,-37],[-24,-1]],[[640,7034],[6,39],[4,89],[24,-18],[-12,-58],[-7,-54]],[[655,7032],[8,54],[12,56],[10,-7]],[[440,7237],[-55,34],[3,12],[44,-26],[8,-20]],[[397,7327],[-13,-55],[-15,10],[13,60],[15,-15]],[[398,7324],[31,-61],[-39,21],[8,40]],[[422,7284],[-22,45],[2,5],[33,-15],[-13,-35]],[[429,7269],[-4,16],[12,31],[8,-2]],[[530,7585],[36,60],[18,-17]],[[1228,6775],[-16,-30],[-15,16],[15,28]],[[1165,6491],[9,-2]],[[1174,6489],[2,0]],[[1176,6489],[10,-3]],[[1186,6486],[1,-5]],[[1192,6479],[-6,-42]],[[1158,6457],[7,34]],[[1172,6562],[-28,32],[5,8],[20,79],[21,3],[-18,-122]],[[1143,6638],[9,34],[15,9],[-19,-77],[-11,9],[6,25]],[[1131,6659],[18,11],[-13,-52],[-6,13],[-11,-4],[-15,37],[22,-63],[11,5],[5,-14],[29,-34],[-4,-27]],[[1193,6702],[-3,-15],[-28,-4],[-30,-24]],[[550,7408],[10,15],[9,-9],[-7,-11],[-12,5]],[[557,7460],[-11,-18],[-10,10],[12,19],[9,-11]],[[534,7505],[18,23],[7,-15],[-16,-19],[-9,11]],[[399,7344],[-11,11],[25,47],[12,-9],[-26,-49]],[[428,7331],[-14,6],[24,44],[12,-10],[-22,-40]],[[505,7298],[10,19],[11,-10],[-8,-15],[-13,6]],[[520,7291],[7,15],[11,-9],[-6,-11],[-12,5]],[[537,7362],[-22,-42],[-11,9],[22,41],[11,-8]],[[470,7410],[-19,-36],[-12,9],[19,36],[12,-9]],[[432,7437],[12,-8],[-18,-34],[-12,9],[18,33]],[[948,7682],[87,-151],[11,-21],[44,-107]],[[973,7749],[0,-24],[-34,-19],[-45,76],[26,14]],[[935,7895],[24,28]],[[970,7849],[-35,46]],[[552,7687],[-11,76],[-10,37],[25,8],[9,-42],[15,-51],[-28,-28]],[[629,7721],[-56,-53],[-7,-10],[-13,25],[9,11],[53,51],[14,-24]],[[582,7717],[-10,34],[19,15],[14,-27],[-23,-22]],[[571,7753],[-2,35],[33,27],[10,-28],[-41,-34]],[[668,7820],[27,14],[16,-26],[-23,-27]],[[653,7869],[9,4],[14,-46],[-9,-4]],[[664,7871],[17,9],[14,-44],[-17,-9],[-14,44]],[[701,7899],[1,-15],[12,-39],[-17,-8],[-15,47],[-30,-14]],[[747,7875],[8,-14],[-43,-51],[-14,25],[19,9],[-15,55]],[[703,7899],[22,-39],[22,15]],[[765,7913],[15,2]],[[780,7915],[9,-26],[-33,-28],[-26,44]],[[790,7905],[8,4],[1,23],[-13,-1],[-6,14]],[[780,7945],[8,14],[27,-19],[-4,-34],[-19,-16],[-2,15]],[[391,8019],[76,-4],[29,1],[-4,-34],[-42,-18],[-3,32],[-5,-1],[4,-31],[-12,-7]],[[561,7799],[-11,34],[-25,78],[-29,66],[23,7],[49,-141],[2,1],[-48,141],[22,6],[47,-137],[8,-25]],[[593,7854],[-33,96],[25,-3],[21,-84]],[[608,7863],[-21,84],[40,0],[16,-66],[-35,-18]],[[545,7991],[28,7],[12,-48],[-26,2],[-14,39]],[[615,7999],[11,-50],[-39,0],[-11,52],[39,-2]],[[495,7980],[4,36],[45,-9],[0,-14],[-49,-13]],[[573,8000],[-26,-6],[1,13],[25,-7]],[[626,7958],[-9,41],[34,1],[30,-1],[-4,-40]],[[680,7959],[4,40],[45,-8],[-9,-40]],[[727,7972],[4,18],[20,-7],[35,-23],[-14,-27],[-5,2]],[[363,8110],[17,10],[32,-100],[-20,1]],[[431,8112],[-41,-17],[-9,26],[36,19],[14,-28]],[[440,8190],[-13,-14]],[[427,8176],[-3,1],[12,-22],[-56,-32],[-6,20],[0,7]],[[374,8150],[-12,14]],[[433,8112],[-14,29],[19,12],[20,-41],[-25,0]],[[672,8003],[-56,-2],[2,11],[38,41],[28,-24],[57,-40],[-21,7],[-48,7]],[[578,8284],[27,0],[25,-39],[-37,-24],[-15,63]],[[659,8055],[52,29],[8,16],[16,-43],[-18,-12],[-13,-27],[-45,37]],[[735,8129],[40,-49],[-38,-22],[-17,44],[15,27]],[[747,7989],[-41,28],[12,26],[16,10],[49,-37],[0,-22],[-36,-5]],[[808,8050],[-34,-23],[-34,24],[0,6],[37,21],[31,-28]],[[809,8049],[18,-20],[4,-29],[-45,-6],[-1,22],[-9,9],[33,24]],[[834,7982],[2,-26],[-22,-11],[-22,14],[-42,28],[80,12],[4,-17]],[[892,7954],[-9,-4],[-16,12],[18,14],[7,-22]],[[827,8156],[-11,-23],[-1,-17]],[[815,8116],[-1,-3],[13,-13],[-4,-7],[-39,-18],[-6,5],[26,42],[-3,2],[-24,-42],[-32,39],[18,11],[26,1],[-30,1],[-15,-11],[-7,10],[20,37],[70,-14]],[[866,8083],[-13,-3],[-23,-28]],[[830,8052],[-22,0],[-21,21],[46,21],[23,40],[10,-51]],[[394,7507],[-11,19],[9,56],[20,-8],[-18,-67]],[[396,7506],[18,67],[19,-11],[-23,-64],[-14,8]],[[411,7497],[24,64],[19,-15],[-29,-57],[-14,8]],[[476,7570],[14,-23],[-30,-35],[-17,-35],[-16,10],[13,30],[36,53]],[[392,7584],[3,24],[18,2],[-6,-31],[-15,5]],[[408,7578],[6,31],[19,-7],[-9,-31],[-16,7]],[[425,7570],[9,31],[20,-11],[-14,-29],[-15,9]],[[475,7572],[-17,-25],[-16,12],[13,30],[20,-17]],[[398,7653],[21,-4],[-5,-31],[-17,10],[1,25]],[[416,7618],[4,30],[24,-7],[-9,-31],[-19,8]],[[437,7609],[9,31],[25,-14],[-14,-29],[-20,12]],[[497,7607],[-18,-29],[-20,18],[14,29],[24,-18]],[[398,7658],[3,78],[27,-9],[-6,-24],[-3,-52],[-21,7]],[[423,7699],[18,-11],[11,-19],[-11,-25],[-20,7],[2,48]],[[430,7726],[31,-23],[9,-15],[-17,-17],[-11,19],[-18,12],[6,24]],[[522,7621],[-12,-22],[-28,23],[-39,22],[13,27],[15,15],[20,-33],[31,-32]],[[621,8129],[8,-20],[-124,-39],[1,21]],[[873,8028],[11,-49],[-11,-7],[-35,-15],[-3,32],[-3,35],[-8,12],[-12,14],[57,1],[4,-23]],[[631,8297],[6,-11],[-13,-25]],[[624,8261],[-18,26],[-30,2],[-11,24],[-29,28]],[[908,7821],[-14,1],[-19,-9]],[[875,7813],[-26,45],[15,11],[18,-40],[-14,38],[31,-3],[9,-43]],[[842,7869],[9,5]],[[894,7900],[5,-33],[-25,6],[-27,-12],[-5,8]],[[847,7908],[-12,33]],[[862,7959],[34,-21]],[[542,7730],[6,-45],[-10,0],[-22,24],[2,11],[24,10]],[[458,7776],[48,15],[21,7],[15,-66],[-19,-6],[-8,34],[6,-35],[-12,-9],[-20,27]],[[481,7786],[-21,-7],[-16,9],[0,48],[18,11],[19,-61]],[[483,7787],[-19,61],[21,8],[19,-62],[-21,-7]],[[526,7802],[-20,-7],[-16,63],[20,6],[16,-62]],[[505,7882],[2,-14],[-44,-17],[-21,-15],[0,-45]],[[444,7888],[-4,3],[-9,56],[16,11],[12,-67],[-15,-3]],[[480,7897],[-19,-5],[-11,67],[19,7],[11,-69]],[[499,7902],[-17,-4],[-11,69],[19,9],[3,-44],[6,-30]],[[532,7802],[-31,108],[-5,32],[0,31],[28,-66],[31,-96],[-23,-9]],[[626,7759],[-19,-19],[-14,28],[38,31],[10,-27],[-8,-7]],[[658,7749],[-27,-26],[-14,23],[26,25],[-15,51],[2,-20],[-16,-12],[-11,29]],[[805,7752],[-9,26],[0,30],[16,-25],[10,-4],[17,16],[9,-20]],[[423,7444],[-17,-33],[-21,11],[6,38],[32,-16]],[[388,7461],[-5,-39],[24,-14],[-4,-8],[-7,-14],[-8,-16],[-11,-21],[-36,21],[-3,30]],[[366,7772],[0,-88]],[[657,8057],[-21,48],[39,25],[12,-2],[19,-44],[-49,-27]],[[735,8131],[-27,-44],[-17,42],[-16,5],[-40,-27],[-32,80],[-9,31],[36,23],[37,-24],[34,-49],[19,-13],[15,-24]],[[531,7643],[21,-13],[-15,-19],[-45,45],[-33,53],[-20,16],[-22,10],[-48,9],[-1,25]],[[428,7950],[9,-59],[18,-3]],[[455,7888],[2,-11]],[[615,8011],[-2,-9],[-73,10],[-7,23],[35,11]],[[571,8047],[1,18],[37,11],[5,-13],[18,-31],[-15,-16]],[[632,8106],[22,-52],[-20,-21],[-23,44],[15,7],[-60,-17],[3,-18],[-36,-10],[4,-27],[-38,6],[4,49],[129,39]],[[461,8092],[-3,-73],[-13,0],[-31,1],[-8,31],[26,2],[-14,4],[-13,-3],[-13,39],[28,14],[39,2],[2,-17]],[[460,8017],[2,36],[38,3],[-3,-37],[-37,-2]],[[501,8057],[-25,3],[-14,-4],[-1,53],[40,-10],[0,-42]],[[537,7605],[-36,-45],[-20,17],[17,29],[12,-10],[14,24],[13,-15]],[[392,7600],[-12,-73],[10,-21],[51,-32],[-11,-22],[-59,33],[-10,20],[9,101]],[[371,7615],[0,35],[-2,90],[29,-7],[-2,-75],[-3,-8],[2,-22]],[[3069,6183],[1,34],[14,2],[0,-30],[-15,-6]],[[3053,6240],[29,4],[1,-18],[-31,-11],[1,25]],[[3081,6250],[-28,-2],[8,56],[15,-8],[5,-46]],[[3100,6289],[-11,11],[6,19],[48,5],[1,-17],[-44,-18]],[[3423,6266],[-22,14],[2,13],[24,-2],[-4,-25]],[[3441,6298],[9,58],[22,-6],[-9,-56],[-22,4]],[[3484,6415],[-11,-58],[-23,6],[-4,20]],[[3270,6483],[-35,3]],[[3235,6486],[7,52],[35,8],[-7,-63]],[[3233,6854],[15,-69],[-46,3],[7,59]],[[3220,6898],[-8,-4],[-5,-43],[-17,4],[9,68],[4,4],[23,-23],[-6,-6]],[[3184,6653],[1,8],[37,-10],[-18,-40]],[[3204,6611],[-15,14],[3,26],[-8,2]],[[3224,6656],[-38,10],[6,52],[48,-8],[-16,-54]],[[3229,6717],[-36,6],[4,29],[34,-6],[-1,-24]],[[3230,6722],[-1,-5]],[[3076,6764],[19,-1]],[[3095,6763],[-3,-36],[-18,4],[2,33]],[[3177,6790],[-18,3],[9,65],[13,47],[-2,10],[16,10],[-18,-135]],[[2829,6484],[31,-3],[-7,-54],[-28,2],[4,55]],[[2990,6398],[4,-13],[-24,-23]],[[2970,6362],[-40,66],[4,55],[31,-4],[-1,-19],[8,-33],[18,-29]],[[2759,6504],[-13,-20],[-18,47],[26,17],[22,-3],[-17,-41]],[[2767,6504],[12,42],[51,-5],[-3,-39],[-60,2]],[[2911,6562],[24,-1],[-3,-43],[-57,-1],[-20,31],[14,11]],[[2718,6583],[19,12],[-6,-57],[-13,17],[0,28]],[[2891,6639],[-7,-74],[-23,-1],[7,77],[23,-2]],[[2915,6620],[-5,-53],[-23,-1],[7,73],[22,-2],[-1,-17]],[[2899,6697],[22,-3],[-4,-52],[-23,2],[5,53]],[[2788,6761],[-11,0],[-10,16],[39,42],[14,-24],[-32,-34]],[[2839,6764],[-47,-3],[30,31],[17,-28]],[[2839,6770],[-15,24],[40,43],[14,-22],[-39,-45]],[[2842,6765],[39,47],[-1,-46],[-38,-1]],[[2941,6788],[-6,12],[-44,-11]],[[2891,6789],[0,28],[25,1],[21,20],[11,-47],[-7,-3]],[[2715,6813],[16,16],[13,-21],[-18,-20],[-11,25]],[[2746,6810],[-13,21],[40,42],[13,-22],[-40,-41]],[[2652,7050],[13,-6],[-10,-170],[3,-33]],[[2709,6841],[-13,-9],[-35,7],[1,33],[50,-10],[-3,-21]],[[2664,6876],[-5,26],[37,-9],[-2,-24],[-30,7]],[[2660,6904],[1,25],[38,-10],[-3,-23],[-36,8]],[[2661,6931],[2,25],[38,-12],[-2,-23],[-38,10]],[[2663,6959],[2,27],[39,-18],[-2,-21],[-39,12]],[[2665,6989],[1,25],[41,-18],[-3,-22],[-39,15]],[[2710,7023],[-3,-24],[-41,18],[2,26],[42,-20]],[[2712,6865],[-16,5],[16,152],[20,-10],[-20,-147]],[[2731,6932],[17,-1],[26,14],[26,27],[23,-18],[-62,-63],[-34,12],[4,29]],[[2735,6965],[9,1],[29,23],[24,-16],[-33,-32],[-13,-7],[-20,2],[4,29]],[[2736,6970],[4,36],[30,-15],[-26,-21],[-8,0]],[[2788,6854],[-13,21],[37,40],[15,-21],[-39,-40]],[[2835,6903],[-6,-7],[-15,21],[25,26],[20,-15],[-24,-25]],[[2845,6872],[-15,21],[32,33],[21,-15],[-38,-39]],[[2885,6864],[-20,-22],[-15,23],[37,41],[-2,-42]],[[3136,6612],[15,-28],[-43,-4],[11,61],[17,-29]],[[2374,6445],[2,-10],[-25,-22]],[[2752,6206],[0,25],[16,-27],[-16,2]],[[2608,6340],[26,1],[8,-7],[19,-53],[-16,-6],[-11,12],[-10,26],[-16,11],[0,16]],[[2675,6343],[6,-12],[-19,-42],[-17,53],[30,1]],[[2680,6321],[16,8],[23,-41],[-2,-7],[-33,4]],[[2704,6343],[28,1],[-5,-52],[-4,-1],[-24,42],[5,10]],[[2760,6345],[-6,-69],[-15,2],[-7,12],[5,54],[23,1]],[[2786,6346],[-6,-73],[-24,3],[7,69],[23,1]],[[2539,6343],[-22,34],[17,10],[29,-43],[-24,-1]],[[2589,6414],[14,-69],[-8,-1],[-33,50],[-23,0],[-22,29],[15,19]],[[2534,6445],[24,29],[24,-30],[6,-24]],[[2634,6437],[4,-6]],[[2638,6431],[-11,-20],[4,-33],[-4,-11],[-24,-1]],[[2603,6366],[-10,50]],[[2676,6347],[-33,1],[9,58],[28,-48],[-4,-11]],[[2683,6362],[-29,50],[24,6],[25,-43],[-7,-12],[-13,-1]],[[2704,6378],[-24,41],[51,13],[-27,-54]],[[2736,6432],[4,0],[-7,-83],[-29,-2],[-5,12],[37,73]],[[2763,6350],[6,60],[20,-32],[-2,-28],[-24,0]],[[2790,6384],[-28,46],[32,-2],[-4,-44]],[[2743,6471],[-9,-35],[-81,-21],[-16,27]],[[2631,6467],[58,38]],[[2409,6602],[8,5],[8,-19],[-29,-19],[10,-22],[-15,-36],[-13,7],[-14,26]],[[2364,6544],[23,18],[-5,10],[31,20],[-4,10]],[[2440,6528],[-6,-36],[-40,17],[15,37],[31,-18]],[[2514,6422],[22,-29],[-22,-11],[-25,38],[-47,56],[20,12],[11,-7],[41,-59]],[[2531,6443],[-15,-18],[-41,58],[-12,7],[-11,32],[-8,7],[7,23],[21,21],[12,24],[65,-112],[8,-10],[-24,-29]],[[2553,6532],[29,-3],[18,-32],[-19,-16],[-28,51]],[[2585,6449],[-14,21],[31,24],[18,-31],[-35,-14]],[[2604,6500],[-3,31],[41,31],[11,-24],[-49,-38]],[[2670,6497],[-46,-32],[-18,32],[49,38],[15,-38]],[[2673,6499],[-16,38],[50,35],[16,-39],[-50,-34]],[[2407,6750],[20,-29],[13,12]],[[2440,6733],[4,-14],[-4,-28],[-5,-23],[-22,-43],[2,-14],[-30,-17]],[[2385,6594],[-15,18]],[[2392,6724],[11,20]],[[2467,6614],[-39,-25],[-8,19],[32,21],[15,-15]],[[2481,6600],[-11,-24],[-19,-17],[-10,-28],[-33,19],[-8,17],[69,45],[12,-12]],[[2506,6572],[-10,46],[84,7],[-1,-21],[-8,-10],[-30,-3],[-17,-16],[-18,-3]],[[2606,6623],[-7,-88],[-76,6],[-15,28],[17,4],[9,12],[36,5],[11,12],[2,24],[12,1]],[[2696,6601],[-53,-35],[-10,22],[53,35],[10,-22]],[[2685,6626],[-54,-35],[-10,21],[56,35],[8,-21]],[[2687,6635],[-11,24],[15,0],[-4,-24]],[[2564,6671],[20,13],[22,-46],[-24,-9],[-18,42]],[[2656,6699],[9,-22],[-56,-36],[-10,20],[57,38]],[[2654,6702],[-56,-37],[-10,22],[41,28],[18,3],[7,-16]],[[2670,6722],[-3,-36],[-15,33],[18,3]],[[2674,6723],[26,2],[-8,-62],[-17,1],[-7,14],[6,45]],[[2727,6723],[-4,-63],[-29,2],[9,66],[17,3],[7,-8]],[[2475,6712],[-16,-11],[-9,3],[0,18]],[[2462,6698],[23,15],[16,-46],[-21,-15],[-18,46]],[[2502,6678],[-14,37],[19,9],[23,-6],[12,-14],[-40,-26]],[[2514,6643],[-9,21]],[[2505,6664],[4,15],[53,33]],[[2574,6683],[-60,-40]],[[2549,6754],[15,-36],[-19,-13],[-13,16],[-26,6]],[[2636,6764],[-70,-45],[-14,35],[54,35],[20,-12],[10,-13]],[[2568,6716],[69,46],[11,-40],[-18,-4],[-50,-31]],[[2650,6723],[-2,19],[10,11],[46,3],[-4,-24],[-50,-9]],[[2732,6749],[-5,-14],[-22,-3],[2,25],[22,1],[3,-9]],[[2646,6753],[-14,22],[33,47],[28,-6],[5,-8],[-52,-55]],[[2631,6178],[-9,14],[0,20],[-37,57],[-1,45],[10,27],[11,0],[0,-19],[19,-15],[8,-23],[15,-13],[14,7],[14,-32],[7,-11]],[[2682,6235],[-13,-12]],[[2492,6388],[9,-14]],[[2501,6374],[-7,-8],[73,-114],[12,-13],[6,5],[7,8],[27,-41],[0,-20],[7,-11]],[[2656,6112],[-6,-4],[-73,111],[-4,-3]],[[2196,8329],[2,20],[79,-61],[-6,-16],[-75,57]],[[2223,8430],[0,-29],[-6,-35],[-7,-22],[-12,9],[6,70],[19,7]],[[2225,8333],[-13,9],[8,25],[6,38],[24,-7],[-25,-65]],[[2224,8430],[16,7],[19,-19],[-8,-15],[-27,7],[0,20]],[[2280,8397],[-37,-78],[-16,12],[34,85],[19,-19]],[[2340,8438],[12,30],[20,-21],[-11,-31]],[[2364,8418],[9,28],[18,-18],[-33,-98],[-19,19],[19,52]],[[2386,8406],[17,-10],[-28,-86],[-15,18],[26,78]],[[2408,8413],[-4,-14],[-17,11],[6,17]],[[2514,8169],[-15,16],[7,25],[18,-10],[-10,-31]],[[2517,8167],[10,32],[27,-15],[-12,-41],[-25,24]],[[2607,8151],[8,-52],[-25,-1],[-5,48],[22,5]],[[2572,8198],[-12,-12],[-32,16],[8,23],[30,-16],[6,-11]],[[2597,8224],[-10,-10],[-21,0],[-50,26],[8,24],[73,-40]],[[2672,8085],[24,49],[28,-29],[-52,-20]],[[2218,8648],[68,-9],[16,-13],[-2,-7],[-30,14],[-54,7],[2,8]],[[2357,8472],[15,12],[48,-47],[-6,-16]],[[2411,8512],[1,-16],[-26,-20],[-11,10],[36,26]],[[2387,8474],[25,19],[-3,-40],[-22,21]],[[2438,8531],[-9,-31],[0,-37]],[[2429,8463],[-8,-22],[-6,19],[-1,54],[24,17]],[[2502,8338],[9,10]],[[2511,8348],[85,-83],[3,-14]],[[2423,8439],[18,52],[10,-5],[-19,-55],[-9,8]],[[2704,8216],[-23,-47],[-17,18],[18,37],[22,-8]],[[2540,8467],[-26,-61],[-11,23],[32,75],[5,-37]],[[2592,8299],[2,32],[9,0]],[[2603,8331],[42,-25],[-9,-26],[-44,19]],[[2646,8309],[-40,25],[1,32],[25,-12],[21,-20],[-7,-25]],[[2710,8220],[26,53],[19,-15],[-23,-45],[-22,7]],[[2807,8191],[-37,11],[-4,52],[-6,5],[11,21],[29,11]],[[2809,8292],[14,1],[8,-109],[-15,4]],[[2851,8297],[23,2],[8,-112],[-22,-2],[-9,112]],[[2901,8302],[8,-111],[-25,-3],[-8,111],[25,3]],[[2562,8422],[13,29],[17,-10],[-11,-32],[-19,13]],[[2717,8293],[44,88],[20,-11],[-46,-91],[-18,14]],[[2738,8276],[34,68],[7,-6],[3,-45],[-9,-1],[-16,-31],[-19,15]],[[2800,8295],[-15,-1],[-3,46],[-9,7],[11,22],[10,3]],[[2633,8420],[-10,6],[10,30]],[[2794,8376],[-11,-4],[-21,12],[29,64],[20,-12]],[[2819,8432],[13,-7],[-15,-42],[-14,-5]],[[2530,8556],[-6,-2],[-37,25],[38,29],[5,-52]],[[2575,8559],[-3,39],[28,37],[14,-7],[-22,-64],[-17,-5]],[[2653,8566],[-24,14]],[[2629,8580],[-15,37],[3,9],[48,-26],[-12,-34]],[[2671,8514],[-28,14],[24,70],[28,-14],[-24,-70]],[[2768,8465],[-9,5],[26,71],[9,-5]],[[2843,8442],[9,24],[30,-24],[15,0],[1,-33],[-14,-1],[-41,34]],[[2553,8637],[-3,3],[19,59],[19,-35],[-35,-27]],[[2725,8656],[29,-12],[-24,-71],[-28,15],[23,68]],[[2778,8635],[-24,-74],[-22,11],[24,71],[22,-8]],[[2782,8623],[36,-19]],[[2813,8588],[-37,19],[6,16]],[[2731,8661],[21,69],[21,-10],[-20,-68],[-22,9]],[[2780,8641],[-25,10],[22,67],[23,-11],[-20,-66]],[[2799,8762],[4,17],[15,-6],[-18,-65],[-13,6]],[[2795,8954],[55,-27],[3,-5],[-9,-41],[-17,-5],[-51,20]],[[2873,8966],[-12,-32],[-52,18]],[[2273,8295],[-28,22],[37,78],[11,-4]],[[2290,8296],[33,-25],[-14,-29]],[[2309,8242],[-36,28],[12,15]],[[2744,8391],[14,-8],[-27,-53]],[[2870,8154],[-24,20],[2,5],[34,4],[-12,-29]],[[2424,8255],[4,-3]],[[2403,8184],[-19,11]],[[2439,8163],[-19,11],[20,64],[18,-17],[-19,-58]],[[2705,8673],[-24,9],[22,63],[23,21],[6,-7],[-27,-86]],[[2689,8767],[-14,-40],[-40,22]],[[2635,8749],[4,16],[50,2]],[[2272,8559],[-50,46]],[[2208,8618],[-15,18],[75,-6],[24,-10]],[[2187,8647],[1,-8]],[[2188,8639],[-6,-3],[104,-95],[28,-10],[54,-45],[-15,-11]],[[2168,8647],[19,0]],[[2319,8603],[28,-7],[-8,-54],[-7,-20],[-35,21],[10,66],[12,-6]],[[2594,8444],[-43,26],[28,82],[8,4],[28,-16],[-1,-15]],[[2614,8525],[7,-4],[-27,-77]],[[2346,8566],[5,29],[58,-17]],[[2471,8569],[-12,-4],[-59,19]],[[2400,8584],[2,9]],[[2402,8593],[69,-24]],[[2445,8286],[-28,-18],[-17,16],[10,18]],[[2557,8183],[10,-9],[14,-30],[0,-15],[-26,0],[-10,12],[12,42]],[[2846,7994],[2,7]],[[2848,8001],[-8,15],[15,21],[11,-12]],[[2866,8025],[27,-32]],[[2893,7993],[-6,-10]],[[2141,7838],[23,13],[8,-41],[-15,-22]],[[2157,7788],[-16,50]],[[2169,7725],[-12,14],[21,30]],[[2178,7769],[7,-23],[-16,-21]],[[2176,7816],[-10,37],[32,18],[20,6],[-42,-61]],[[2187,7750],[-11,59],[17,26],[9,-66],[-15,-19]],[[2226,7766],[-21,1],[22,29],[-1,-30]],[[2189,7745],[19,19],[0,-34],[-9,-10],[-10,25]],[[2244,7675],[-10,-12],[-27,41],[18,26],[7,28],[15,13],[7,17],[28,25],[20,-13],[-11,-31],[-28,-44],[-9,15]],[[2255,7641],[-20,21],[9,10],[31,2],[17,10]],[[2293,7685],[-45,-10],[23,23],[20,10],[22,20],[7,-11]],[[2288,7716],[17,21],[7,-8],[-21,-19],[-3,6]],[[2304,7739],[8,13],[9,-10],[-8,-12],[-9,9]],[[2321,7718],[-7,11],[9,11],[8,-11]],[[2303,7761],[6,14],[10,-8],[-8,-13],[-8,7]],[[2312,7753],[8,12],[10,-10],[-8,-12],[-10,10]],[[2332,7730],[-9,12],[8,12],[10,-13]],[[2309,7776],[7,15],[9,-9],[-6,-14],[-10,8]],[[2336,7680],[3,-6],[-19,-25],[-17,-38],[-5,2]],[[2008,8048],[23,-4],[-20,-45],[-9,22],[6,27]],[[2053,8025],[12,-9],[28,-2],[-16,-33],[-35,2],[-2,14],[13,28]],[[2106,8037],[-10,-20],[-28,3],[-11,8],[-3,18],[50,22],[2,-31]],[[2062,7961],[15,16],[16,-11],[17,-2],[3,-31]],[[2110,7967],[-18,3],[-13,11],[16,32],[13,-11],[2,-35]],[[2116,7938],[-4,53],[2,5],[22,-23],[-20,-35]],[[2161,7857],[-32,-15],[-9,65],[34,13],[3,-51],[4,-12]],[[2111,8004],[-4,59],[24,-13],[-4,-24],[-12,-26],[-4,4]],[[2118,7998],[12,27],[5,22],[24,-22],[-21,-49],[-20,22]],[[2176,7955],[-21,-27],[-15,45],[11,20],[25,-38]],[[2153,7997],[8,24],[35,-42],[-18,-21],[-25,39]],[[2164,7859],[-5,18],[-3,47],[23,28],[6,-18],[1,-31],[7,-27],[-29,-17]],[[2196,7877],[-7,29],[-2,35],[-7,14],[17,21],[25,-74],[-1,-13],[-25,-12]],[[2150,8095],[-18,-42],[-22,18],[40,24]],[[2187,8105],[-21,-43],[-6,-33],[-25,21],[21,48],[27,11],[4,-4]],[[2213,7997],[-15,-15],[-35,44],[8,39],[18,38],[5,0],[21,-45],[25,-36],[-24,-22]],[[2276,7960],[8,-29],[-58,-39],[-21,77],[-7,12],[15,14]],[[2217,7999],[24,22],[23,-37]],[[2216,8073],[30,5],[23,-3],[6,-36],[-28,-13],[-31,47]],[[2272,8074],[33,-21],[-27,-13],[-6,34]],[[2324,8034],[-26,-39],[-19,42],[30,13],[15,-16]],[[2364,7936],[-24,-28],[-9,12],[24,28],[9,-12]],[[2319,7885],[5,4],[32,-39],[11,-28],[-11,-8]],[[2383,7932],[5,-8],[-45,-53],[-6,7]],[[2333,7882],[-8,10],[16,14],[33,38],[5,-7]],[[2390,7922],[14,-19],[-45,-53],[-14,20],[45,52]],[[2393,7743],[8,10],[31,-44],[-6,-13]],[[2468,7796],[-12,-30],[-5,-12],[-18,16],[-4,-8],[21,-10],[-17,-40],[-30,43],[26,30],[23,26],[34,42],[5,-5],[-23,-52]],[[2554,7838],[24,-30],[-17,-26]],[[2563,7776],[19,28],[19,-15],[-11,-24],[-3,-43],[-14,-6]],[[2574,7627],[-13,4],[-13,73],[10,4]],[[2573,7714],[14,6],[10,-73],[-10,-24]],[[2623,7774],[-14,-31],[-19,-19],[1,33],[12,30],[20,-13]],[[2598,7659],[-7,61],[15,9],[16,-47],[-24,-23]],[[2627,7687],[-3,1],[-16,47],[7,14],[31,-40],[-19,-22]],[[2626,7772],[33,-21],[12,-13],[-23,-26],[-31,41],[9,19]],[[2523,7876],[-15,9],[14,55],[33,-20],[-17,-29],[-15,-15]],[[2575,7907],[-27,-52],[-20,18],[30,45],[17,-11]],[[2553,7848],[11,31],[33,-35],[-16,-33],[-28,37]],[[2608,7886],[-9,-35],[-33,31],[14,22],[28,-18]],[[2625,7778],[-40,30],[14,28],[38,-33],[-12,-25]],[[2674,7785],[5,-38],[-4,-6],[-22,20],[-25,15],[12,25],[17,-12],[17,-4]],[[2615,7882],[21,-12],[-20,-46],[-15,19],[14,39]],[[2639,7869],[21,-10],[0,-16],[-21,-36],[-20,15],[20,47]],[[2674,7791],[-16,1],[-17,13],[20,33],[9,-13],[4,-34]],[[2678,7803],[27,6],[9,7],[10,-13],[-11,-18],[-28,-26],[-7,44]],[[2674,7854],[57,-17],[-6,-30],[-10,13],[-11,-8],[-26,-6],[-4,48]],[[1926,8109],[8,16],[11,25],[17,-9],[21,-1],[19,6],[-1,-19],[-11,-30],[-20,6],[20,-14],[13,-20],[20,-10]],[[2004,8146],[22,7],[22,-2],[-34,-85],[-23,28],[12,31],[1,21]],[[2078,8145],[-38,-83],[-23,2],[33,86],[28,-5]],[[2098,8141],[4,-41],[-17,-9],[-14,-22],[-28,-6],[39,81],[16,-3]],[[2103,8082],[-29,-16],[12,22],[16,9],[1,-15]],[[1981,8144],[13,34],[27,-22],[-40,-12]],[[2020,8237],[25,-17],[-24,-57],[-9,1],[-16,18],[24,55]],[[2025,8157],[25,67],[21,-15],[-22,-54],[-24,2]],[[2052,8154],[21,53],[10,-13],[-19,-43],[-12,3]],[[2084,8148],[18,38],[20,-14],[-16,-29],[-22,5]],[[2180,8126],[-74,-42],[-1,15],[33,28],[45,10],[4,-7]],[[2125,8170],[46,-30],[-17,-6],[-44,8],[15,28]],[[2101,8287],[-29,-75],[-21,15],[30,75],[20,-15]],[[2104,8244],[-16,-37],[-13,3],[17,43],[12,-9]],[[2120,8233],[-19,-41],[-10,13],[16,37],[13,-9]],[[2104,8285],[14,-10],[-12,-27],[-13,9],[11,28]],[[2122,8237],[-13,9],[12,28],[14,-10],[-13,-27]],[[2160,8247],[-12,-18],[-24,-54],[-21,15],[35,72],[22,-15]],[[2178,8140],[-52,34],[13,30],[34,-25],[5,-39]],[[2171,8239],[2,-55],[-32,23],[22,38],[8,-6]],[[2171,8254],[-9,-4],[-23,15],[33,69],[13,-10],[-13,-71]],[[2227,8156],[3,21],[17,42],[37,12],[-36,-63],[-21,-12]],[[2179,8238],[3,29],[11,49],[28,-19],[-31,-66],[-11,7]],[[2244,8279],[-28,-57],[-23,8],[31,65],[20,-16]],[[2266,8262],[-21,-40],[-26,0],[28,55],[19,-15]],[[2252,8166],[-1,3],[35,62],[8,10],[39,-29]],[[2271,8137],[46,-6],[1,15]],[[2318,8146],[15,-2],[-10,-29],[-53,6],[1,16]],[[2352,8176],[-17,-29],[-77,11],[44,25],[50,-7]],[[2371,8104],[-24,-26],[-23,-16],[1,48],[46,-6]],[[2346,8015],[-19,22],[-3,20],[21,14],[29,33],[36,-4],[-64,-85]],[[2373,7993],[-6,-4],[-19,23],[24,33],[21,-26],[-20,-26]],[[2396,8076],[10,-13],[-5,-7],[11,-13]],[[2412,8043],[-17,-22],[-20,26],[21,29]],[[2463,8043],[-81,-44],[57,74],[24,-30]],[[2382,8162],[-2,2],[-35,-51],[-18,2],[8,26],[31,50],[26,-15],[19,-11],[-37,-55],[-25,3],[33,49]],[[2563,8036],[-24,20],[3,20]],[[2542,8076],[43,9],[2,-6],[-24,-43]],[[2524,7946],[12,33],[27,-6],[-6,-48],[-33,21]],[[2580,7911],[-20,12],[9,49],[30,-6],[-7,-31],[-12,-24]],[[2606,7894],[-21,13],[12,33],[5,26],[24,-5],[-16,-65],[-4,-2]],[[2695,7879],[25,6],[0,-12],[17,3]],[[2737,7876],[-5,-32],[-38,9],[1,26]],[[2250,8023],[26,12],[20,-45],[27,-31],[-28,-20],[-28,56],[-17,28]],[[2370,7951],[-5,-13],[-10,14],[-26,-31],[9,-14],[-21,-18],[-21,44],[57,39]],[[1996,8051],[8,-4],[-5,-25],[11,-26],[-5,-10]],[[2007,7983],[5,11],[25,-15],[36,-2],[-14,-13]],[[2751,7088],[35,-16],[-18,-42],[-16,-25],[-11,6],[10,77]],[[2756,7003],[13,21],[20,45],[27,-22],[-39,-55],[-21,11]],[[2801,6976],[-21,14],[38,55],[25,-18],[-42,-51]],[[2827,6957],[-24,17],[43,51],[30,-14],[-49,-54]],[[2899,7005],[-3,-39],[-33,-35],[-21,15],[57,59]],[[2895,6960],[-3,-38],[-7,-8],[-20,15],[30,31]],[[2901,6931],[2,39],[36,44],[15,-20],[-53,-63]],[[2845,7029],[-55,43],[10,38],[33,-35],[30,-24],[-18,-22]],[[2901,7016],[-20,1],[-33,10],[33,38],[17,4],[3,-53]],[[2904,6977],[3,37],[26,23],[11,-13],[-40,-47]],[[2908,7028],[-2,38],[13,1]],[[2945,7025],[-12,13],[9,18],[18,11],[17,-2],[-32,-40]],[[2955,6995],[-15,20],[54,66],[23,-13],[-62,-73]],[[3043,7049],[-68,-80],[-15,20],[66,78],[17,-18]],[[2742,7138],[-4,23],[27,1],[38,-18],[-3,-14]],[[2803,7128],[10,34],[27,-37],[39,-44]],[[2727,7253],[28,-19],[-2,-23],[7,-45],[-23,-1],[-10,88]],[[2763,7166],[-8,47],[2,19],[21,-24],[32,-43],[-6,-18],[-41,19]],[[2860,7103],[-46,62],[17,20],[18,-19],[33,-26],[-22,-37]],[[2898,7074],[-36,27],[23,38],[11,-1],[-2,-33],[4,-31]],[[3003,7093],[-4,-7],[-20,5],[-27,-4],[-17,-9],[-31,-6],[-2,19]],[[3009,7101],[-23,30],[-9,25],[39,6],[-1,-14],[15,-21],[-21,-26]],[[3152,7007],[-77,32],[18,22],[17,-12],[39,-9],[3,-33]],[[2759,7274],[-3,-38],[-29,20],[-1,12],[33,6]],[[2771,7233],[36,13],[5,-67],[-5,-5],[-43,54],[7,5]],[[2804,7282],[3,-33],[-17,-3],[-29,-16],[1,44],[42,8]],[[2816,7244],[32,5],[-1,-16],[-12,-37],[-15,-12],[-4,60]],[[2871,7151],[-37,36],[6,14],[29,-3],[2,-47]],[[2872,7240],[31,-5],[-7,-94],[-20,6]],[[2906,7264],[-3,-26],[-35,7],[-2,25],[-8,-1],[-2,21],[21,4]],[[2972,7212],[-6,75],[30,-8],[-6,-38],[2,-27],[-20,-2]],[[3050,7107],[-16,20],[49,57],[15,-20],[-48,-57]],[[3102,7158],[16,-21],[-46,-53],[-18,16],[48,58]],[[3077,7085],[42,50],[15,-20],[-36,-43]],[[3102,7072],[47,55],[-2,-51]],[[3130,7240],[18,-12],[1,-13],[-16,-10],[-33,-39],[-15,21],[45,53]],[[3136,7117],[-15,20],[30,35],[-2,-40],[-13,-15]],[[2820,7291],[1,41],[19,17],[9,-23],[3,-30],[-32,-5]],[[2956,7330],[12,16],[13,-19],[-19,-23],[-6,26]],[[2965,7293],[-2,7],[20,25],[14,-20],[-14,-16],[-18,4]],[[3134,7290],[14,-55],[-37,23],[23,32]],[[2736,7409],[17,1],[1,-46]],[[2785,7407],[-6,-44],[2,-29],[-26,-4],[1,80]],[[2784,7333],[-3,49],[40,-10],[16,-19],[-17,-16],[-36,-4]],[[2842,7352],[19,27],[15,-27],[4,-20],[-29,-5],[-9,25]],[[2894,7403],[14,-72],[-26,1],[-6,27],[-12,20],[13,5],[17,19]],[[2916,7304],[-1,27],[-14,72],[6,31],[8,10],[31,-119],[-15,-24],[-15,3]],[[2933,7469],[14,-21],[20,-74],[7,-13],[-20,-25],[-31,117],[10,16]],[[2789,7427],[-14,3],[-51,-5],[-1,33],[72,2],[-6,-33]],[[2800,7492],[-5,-29],[-73,-1],[-3,30],[33,2],[48,-2]],[[2802,7492],[24,-5],[-9,-52],[-9,-11],[-16,2],[10,66]],[[2830,7519],[-4,-31],[-24,6],[9,30],[21,3],[-2,-8]],[[2851,7378],[-12,-22],[-17,19],[-40,10],[5,22]],[[2816,7427],[13,59],[14,-3]],[[2844,7485],[-15,3],[6,38],[19,14],[7,-9]],[[2868,7501],[6,-33],[-15,-57]],[[2894,7409],[-19,-20],[-12,-6],[0,32],[14,49],[21,-32],[-4,-23]],[[2875,7513],[22,-26],[15,-35],[-12,-17],[-23,33],[-6,28],[4,17]],[[2798,7517],[2,-21],[-74,0],[-8,-1],[-10,75],[84,-5],[0,-31],[6,-17]],[[2852,7542],[-11,-11],[-20,2],[5,29],[26,-20]],[[2935,7497],[-15,-35],[-13,25],[-25,34],[20,9],[11,14],[2,-25],[20,-22]],[[2976,7539],[9,11],[10,-14],[11,-38],[10,-22],[24,-30],[-7,-9]],[[3080,7400],[-25,-16],[-23,-32],[-30,38],[41,53],[37,-43]],[[3034,7520],[-23,-29],[-10,35],[14,18],[19,-24]],[[3048,7538],[-13,-16],[-18,24],[13,16],[18,-24]],[[3064,7516],[-38,-48],[-13,20],[37,48],[14,-20]],[[3071,7486],[-29,-37],[-14,16],[37,47],[6,-26]],[[3099,7399],[-10,-6],[-27,32],[23,18],[14,-44]],[[3055,7598],[-25,-32],[-16,19],[37,45],[4,-32]],[[2754,7624],[-12,3],[-9,16],[-7,68],[7,1]],[[2755,7717],[8,3],[6,-25],[3,-47],[-12,-22]],[[2783,7725],[6,-66],[6,-22],[-31,-28],[-2,15],[13,24],[-6,59],[-4,14],[18,4]],[[2821,7653],[-21,-14],[-5,17],[-7,72],[20,3],[4,-48],[9,-30]],[[2841,7576],[16,25],[15,13],[13,-33],[-25,-29],[-19,24]],[[2874,7534],[-12,16],[24,28],[14,-9]],[[2933,7558],[4,-26],[-1,-32],[-14,12],[-6,34],[17,12]],[[2940,7561],[23,-1],[15,-8],[-34,-31],[-4,40]],[[2936,7580],[-4,30],[14,-5],[13,-15]],[[2823,7654],[-7,21],[-5,57],[20,2],[4,-42],[9,-26],[-21,-12]],[[2861,7669],[-14,-2],[-8,19],[-6,49],[18,2],[10,-68]],[[2863,7669],[-8,63],[16,1],[1,-36],[15,4],[9,-23],[-33,-9]],[[2874,7733],[26,1],[1,-24],[-27,-11],[0,34]],[[2898,7679],[-8,23],[13,6],[0,26],[17,1],[2,-43],[-24,-13]],[[2950,7660],[19,-23],[-22,-28],[-15,4],[-2,26],[20,21]],[[2837,7757],[2,-18],[-51,-7],[-3,18],[52,7]],[[2822,7796],[7,1],[4,-38],[-48,-6],[-3,35]],[[2848,7819],[0,-21],[-68,8],[-1,21],[69,-8]],[[2847,7795],[4,-54],[-10,-2],[-6,22],[-3,35],[15,-1]],[[2889,7737],[-35,-2],[-1,14],[35,2],[1,-14]],[[2851,7819],[35,0],[2,-38],[-37,-1],[0,39]],[[2920,7738],[-29,-1],[0,28],[29,1],[0,-28]],[[2927,7799],[50,-50],[-46,-60],[-3,3],[-1,107]],[[2979,7747],[18,-21],[-47,-61],[-17,21],[46,61]],[[3039,7678],[-18,-30],[-35,8],[33,44],[20,-22]],[[2637,7493],[4,19],[-5,18],[19,8]],[[2655,7538],[12,-55],[-40,-29],[-11,15],[21,24]],[[2672,7574],[28,-3],[9,-78],[-39,-8],[-11,41],[-1,15],[14,33]],[[3030,7246],[2,28],[22,-2]],[[3020,7166],[-44,-7],[-4,50],[21,-4],[31,2]],[[2733,7715],[-7,1],[1,31],[-14,30],[17,32],[4,26],[10,-1]],[[2749,7833],[26,-5],[3,-41],[5,-56],[-30,-10]],[[2704,7600],[10,9],[45,-4],[15,7],[22,21],[26,-40],[4,-14]],[[2675,7093],[40,13],[3,-16],[-23,-12],[25,6],[-7,-58],[-60,30]],[[2718,7110],[-32,-9]],[[2585,7611],[15,21],[3,21],[71,82],[6,-14]],[[2680,7721],[-53,-58],[26,-59]],[[1521,8416],[23,18],[16,-32]],[[1601,8569],[9,-28],[-33,-24]],[[1625,8446],[-4,-36]],[[1600,8427],[-13,5],[-18,19]],[[1569,8451],[19,14]],[[1673,8379],[32,-59]],[[1705,8320],[-12,-5],[-40,44]],[[1730,8291],[-17,2],[-13,16],[8,8]],[[1877,8128],[15,-12]],[[1780,8182],[5,2],[34,-39],[9,-3],[11,15],[23,-19]],[[1788,8303],[-7,-56],[-15,18],[6,51],[16,-13]],[[1819,8273],[-18,-51],[-18,21],[8,57],[28,-27]],[[1832,8184],[-29,35],[10,27],[27,-16],[22,-31],[-30,-15]],[[1884,8209],[-19,-9],[-24,34],[-27,15],[8,22],[36,-24],[17,-17],[9,-21]],[[1921,8177],[-24,-36],[-15,14],[-11,-4],[-37,30],[54,26],[33,-30]],[[1820,8277],[-43,42],[54,-10],[-11,-32]],[[1871,8301],[4,-56],[-20,9],[-4,51],[20,-4]],[[1904,8294],[2,-6],[-27,-43],[-5,55],[30,-6]],[[1879,8232],[0,7],[30,47],[20,-22],[-40,-52],[-10,20]],[[1949,8237],[19,44],[23,-17],[-20,-46],[-22,19]],[[1717,8338],[-17,16],[-26,52],[33,-9],[15,-19],[-5,-40]],[[1723,8384],[-16,17],[-35,11],[-7,30],[17,-4],[25,8],[17,16],[9,0],[-9,-48],[4,-16],[-5,-14]],[[1753,8437],[16,22],[5,-38],[13,-33],[11,-15],[-47,-42],[-4,6],[12,71],[-6,29]],[[1800,8370],[11,-14],[17,-42],[-73,16],[45,40]],[[1800,8375],[-13,20],[-13,42],[11,-3],[40,-37],[-25,-22]],[[1828,8395],[24,-22],[-18,-54],[-31,53],[25,23]],[[1874,8305],[-8,27],[-18,19],[6,20],[28,-27],[18,-25],[5,-20],[-31,6]],[[1733,8471],[-23,-18],[-23,-11],[-22,7],[21,20],[20,37],[7,35],[24,12],[20,17],[17,5],[4,-8],[-37,-28],[-12,-24],[6,-20],[-2,-24]],[[1790,8533],[25,-17],[-5,-18],[-30,-26],[-19,-8],[0,-17],[-9,-4],[4,23]],[[1845,8420],[-17,-20],[-55,47],[-2,17],[42,30],[-3,-37],[8,-16],[27,-21]],[[1812,8472],[29,-15],[-10,-22],[-19,24],[0,13]],[[1863,8458],[-16,-36],[-15,12],[13,23],[-33,17],[3,15]],[[1902,8492],[-16,-37]],[[1870,8465],[19,38]],[[1881,8444],[-17,-35],[-14,10],[15,35]],[[1888,8384],[-21,22],[12,25],[63,-41],[-5,-25]],[[1935,8398],[-55,36],[3,12]],[[1955,8424],[-62,40],[8,18],[61,-40],[-7,-18]],[[1963,8446],[-60,39],[7,17],[39,-26],[20,-17],[-6,-13]],[[1714,8668],[-10,-18],[-31,-25],[-5,-14],[3,-45],[-12,-29],[-17,49],[23,37],[30,26],[17,21]],[[1717,8590],[-9,-47],[-49,-21],[15,41],[18,18],[25,9]],[[1775,8580],[-18,-5],[-22,-19],[-20,-10],[7,42],[20,21],[28,12],[8,-30],[-3,-11]],[[1749,8660],[6,3],[18,-20],[-6,-19],[-27,-13],[-13,-13],[7,42],[-14,29],[29,-9]],[[1791,8680],[0,-5],[61,-66],[-28,-41],[-8,-49],[-24,19]],[[1865,8551],[29,-35],[-11,-15],[-36,11]],[[1847,8512],[3,28]],[[1896,8518],[-57,68],[15,20],[57,-68],[-15,-20]],[[1594,8674],[12,6],[-1,-25]],[[1579,8760],[-25,40],[70,-28],[-7,-28],[-38,16]],[[1620,8743],[7,29],[49,-20],[-8,-21],[-48,12]],[[1639,8707],[10,-22],[-20,-9],[-15,-17],[0,31],[25,17]],[[1699,8742],[9,-19]],[[1701,8718],[-25,-7],[-26,-25],[-10,21],[22,13],[17,31],[17,-8]],[[1696,8743],[3,-1]],[[1860,8726],[-54,39],[28,31],[44,-43],[-18,-27]],[[1928,8752],[-27,-53],[-39,26],[38,55],[28,-28]],[[1873,8599],[-12,15],[14,27],[12,-11]],[[1889,8633],[-12,10],[25,50],[13,-5]],[[1915,8689],[-12,8],[27,53],[10,-10]],[[2025,8656],[44,-45],[-14,-33],[-28,15]],[[1890,8676],[-29,18],[-28,-47]],[[1833,8647],[-13,16],[41,59],[38,-27],[-9,-19]],[[1956,8360],[-18,11],[14,35]],[[1794,8700],[-12,46],[3,4],[48,-62],[-14,-22],[-25,34]],[[2019,8407],[7,15],[17,-12],[-5,-17],[-19,14]],[[2013,8393],[29,-21],[15,33],[25,-20],[-14,-13],[7,-10]],[[2075,8362],[-55,-39],[-30,18],[23,52]],[[2115,8475],[-17,-21],[-30,23]],[[2068,8477],[12,25],[35,-27]],[[2198,8470],[-34,6],[-27,32],[6,30],[55,-54],[0,-14]],[[1239,8058],[-9,-18],[-8,-65],[-14,-2],[-6,24],[4,34],[7,19],[12,10],[14,-2]],[[988,9651],[13,-24],[-7,-4],[-35,-2],[-5,9],[6,16],[28,5]],[[1172,8628],[24,2],[14,-46],[4,-25],[-3,-28],[-17,-8]],[[1194,8523],[-18,64],[-4,41]],[[1101,8856],[-12,7],[0,24],[15,32],[15,-7],[-18,-56]],[[1081,8791],[41,119],[21,-11],[-41,-122],[-21,14]],[[1105,8774],[19,60],[18,-32],[-15,-39],[-22,11]],[[1134,8749],[-5,12],[12,33],[13,6],[10,-15],[-12,-42],[-18,6]],[[1164,8778],[9,12],[28,6],[-16,-46]],[[1185,8750],[-13,8],[4,14],[-12,6]],[[1172,8693],[-3,3],[24,68],[14,-7],[-8,-47],[-27,-17]],[[1227,8791],[-19,-31],[-13,8],[14,41],[3,7],[56,28],[11,-6],[-9,-14],[-43,-33]],[[1527,8654],[26,-51],[-19,-10],[-19,57],[12,4]],[[1490,8771],[13,-11],[34,-55],[-8,-44],[-17,0],[-24,94],[2,16]],[[1558,8593],[-3,16],[-18,35],[-4,20],[9,34],[25,-45],[6,-21],[-3,-19],[-12,-20]],[[519,9294],[-25,-5],[15,48],[20,-8],[8,27],[-19,9],[6,21]],[[852,9167],[3,19],[31,-15],[23,-20],[-10,-30],[-47,46]],[[888,9173],[-32,16],[5,30],[26,-10],[14,-12],[-13,-24]],[[912,9226],[-9,-26],[-22,16],[-20,6],[3,19],[14,1],[34,-16]],[[890,9172],[21,42],[24,-56],[-3,-22],[-42,36]],[[911,9148],[20,-15],[-11,-33],[-19,19],[10,29]],[[969,9030],[23,25],[11,-20],[-4,-19],[-30,14]],[[1017,9077],[11,-36],[4,-41],[-31,15],[4,23],[-10,19],[22,20]],[[962,9192],[-26,23],[-42,24],[14,1],[49,-13],[19,-18],[-14,-17]],[[1092,9086],[17,-10],[-37,-95],[-17,8]],[[1031,9099],[-4,14],[14,22],[16,-14]],[[1040,9077],[-9,22]],[[1082,8992],[-1,2],[31,81],[14,-9],[17,-35],[-12,-30],[-22,2],[-27,-11]],[[1134,9001],[11,28],[26,-23],[-9,-17],[-28,12]],[[1159,8941],[17,51],[46,-17],[-20,-55],[-43,21]],[[1205,8919],[19,55],[17,-16],[12,-21],[-4,-13],[-18,-18],[-26,13]],[[1280,8882],[-46,23],[22,17],[46,-23],[8,-17],[1,-16],[-31,16]],[[1062,9173],[-14,-16],[-24,18],[-12,9],[-16,-9],[-5,11],[13,12],[-2,3],[-12,-13],[-8,19],[8,11],[18,21]],[[1067,9114],[-29,27],[25,31]],[[1082,9160],[-16,-25],[1,-21]],[[1190,9034],[-14,-36],[-5,13],[-29,24],[-9,14],[-7,29],[8,70],[-6,-21]],[[1128,9127],[-31,13],[5,18]],[[1125,9070],[-13,7],[15,39],[-2,-46]],[[1006,9240],[-25,-29],[-33,25],[-9,28],[-2,44],[-5,28],[7,17],[36,41],[14,33],[10,-4]],[[1220,9096],[5,-2],[73,-74],[23,-11],[17,-28],[35,-38],[22,-35],[13,-14],[13,-2],[20,-34],[-35,-13],[-32,-4]],[[952,9706],[18,-20],[16,-31],[-46,21],[12,30]],[[1026,9599],[-17,19],[-34,65],[-22,26],[21,-2]],[[1051,9598],[15,38],[12,-34]],[[1081,9603],[-6,16],[20,14],[-20,20],[8,10],[28,-20],[26,-2]],[[1210,8907],[-32,-88],[-1,-24],[-10,-6],[-10,13],[-12,1],[-7,20],[16,8],[20,42],[15,44],[21,-10]],[[1180,8795],[-1,19],[19,52],[24,-14],[-19,-52],[-23,-5]],[[921,9094],[13,37],[13,-12],[-5,-21],[39,-23],[10,-18],[-30,-23]],[[1064,8731],[6,1],[13,-45],[-6,-4]],[[1161,8460],[15,1],[10,20],[-9,5],[17,27]],[[1194,8513],[10,-23],[-24,-44],[-13,-11],[-6,25]],[[1177,8439],[31,46]],[[1185,8415],[-8,24]],[[945,9234],[-37,10],[-29,3],[6,23],[20,-2],[7,16],[22,-23],[11,-27]],[[1130,8675],[-21,-10],[-21,76],[15,8],[22,11],[9,-15],[21,-9],[14,-29],[-3,-11]],[[892,9898],[10,-34],[-18,5],[-2,35],[-16,-1],[-5,31],[0,-34],[18,1],[1,-30],[-30,8],[1,64],[23,18]],[[877,9964],[15,11],[10,-42],[-11,-10]],[[901,9906],[-6,15],[21,15],[-12,-1],[-10,42],[35,22],[9,-11],[18,2],[5,-46],[-16,3],[-44,-41]],[[984,8937],[-2,9],[17,12],[4,-8]],[[966,9022],[27,-12],[-5,-17],[11,-30],[-18,-14],[0,-13]],[[1005,8952],[-14,41],[7,15]],[[1261,8961],[-7,-21],[-11,21],[-18,16],[-47,18],[15,31]],[[1266,8978],[-5,-17]],[[1298,8907],[8,10]],[[1369,8842],[-13,2],[-43,21],[0,17],[-15,25]],[[1464,8853],[10,2]],[[1509,8827],[2,-20],[53,-82]],[[3584,6421],[-8,-10],[-25,37],[11,13]],[[3601,5849],[23,-17],[-7,-38],[-15,-1],[-5,24],[4,32]],[[3969,6103],[1,7]],[[3983,6183],[1,10],[30,-7]],[[4012,6101],[-43,2]],[[4005,6984],[1,-12],[58,-9],[-2,-21],[9,-1]],[[4071,6941],[-21,-194]],[[4004,6984],[1,0]],[[3975,6236],[-15,3],[-5,-32]],[[3955,6207],[-9,2]],[[3946,6209],[5,32],[-26,6]],[[3925,6247],[4,34]],[[3929,6281],[51,-11],[-5,-34]],[[4072,6173],[-8,-77]],[[4064,6096],[-19,1]],[[4036,6181],[36,-8]],[[3699,6494],[32,41]],[[3742,6502],[-8,-28],[-11,5]],[[3723,6479],[8,35],[-14,-35]],[[3379,7011],[-5,18],[28,12],[25,2],[31,14],[7,-24],[-22,-11]],[[3155,7124],[24,-6],[-7,-76],[-16,2],[-3,28],[2,52]],[[3220,7177],[93,49],[15,-44],[-61,-20],[-18,2],[-29,13]],[[3354,7243],[9,13],[30,18],[-4,10]],[[3389,7284],[10,-28]],[[3399,7256],[-31,-20],[-12,2]],[[3356,7238],[-2,5]],[[3440,7230],[-24,-2],[-9,26],[-4,32],[7,2],[13,-17],[17,-41]],[[3228,7187],[-11,-6],[-12,17],[1,32],[13,24],[20,-61],[-11,-6]],[[3267,7338],[15,-30],[6,-8],[23,-69],[-32,-17],[-21,63],[-10,16]],[[3300,7312],[8,10],[20,-15]],[[3328,7307],[16,-49],[3,-7],[-32,-17],[-7,22],[-16,47]],[[3292,7303],[8,9]],[[3288,7053],[16,1],[4,-19],[-28,-13],[-10,35]],[[3270,7057],[15,6],[3,-10]],[[3488,7169],[51,-19],[-11,-42]],[[3930,7139],[-7,19],[27,-1]],[[3559,7408],[-26,-14],[-13,38],[29,14],[10,-38]],[[3951,7447],[-10,-46]],[[3920,7477],[5,0]],[[3925,7477],[26,3],[-9,-10],[1,-24],[8,1]],[[3676,7516],[-18,-8],[-8,9]],[[3619,7968],[4,-15],[19,9]],[[3642,7962],[9,-29],[-3,-9],[-36,-16]],[[3612,7908],[-9,31],[-13,4]],[[3590,7943],[5,14],[24,11]],[[3566,8065],[-19,-9],[-13,47],[19,9],[13,-47]],[[3405,8287],[-4,-3]],[[3325,8397],[16,2],[13,22],[4,-8],[-10,-18],[-14,-9],[21,-22],[10,-2],[12,-25],[10,-3],[12,-31]],[[3490,8309],[-7,-11],[-25,-14],[-5,21],[-18,43],[26,35],[30,3]],[[3436,8570],[19,3],[12,-77],[-20,-5],[-11,79]],[[3368,8530],[-7,9],[28,38],[7,-9],[-28,-38]],[[3399,8571],[-8,9],[15,22],[8,-10],[-15,-21]],[[3446,8577],[-11,-3],[-16,18],[23,26],[4,-41]],[[3617,8172],[4,8],[35,-29],[-17,-34],[-13,-16],[-14,28]],[[3573,8239],[-3,6],[15,32],[5,-2],[-17,-36]],[[3598,8292],[15,-7],[-14,-34],[-11,8],[10,33]],[[3599,8294],[12,52],[19,-15],[-16,-44],[-15,7]],[[3627,8278],[-12,8],[16,44],[13,-17],[-17,-35]],[[3629,8279],[17,35],[8,2],[4,-25],[-18,-21],[-11,9]],[[3714,8244],[18,11],[10,-47],[-20,-4],[-8,40]],[[3707,8259],[-6,41],[23,-9],[-17,-32]],[[3712,8254],[15,34],[18,-22],[-33,-12]],[[3535,8410],[-13,15],[18,23],[13,-15],[-18,-23]],[[3580,8487],[3,-22],[-9,-4],[-20,-26],[-13,15],[19,25],[20,12]],[[3608,8382],[-32,3],[-7,30],[-14,19],[20,26],[9,4],[4,-23],[20,-59]],[[3705,8481],[11,-13],[-19,-27],[-11,14],[19,26]],[[3847,8472],[-3,-32],[1,-49],[-20,-3],[-2,35],[4,55]],[[3868,8467],[-3,-36],[1,-37],[-19,-3],[-2,49],[4,32]],[[3909,8456],[-1,-56],[-18,-3],[1,64]],[[3807,8492],[11,45],[19,-5],[-11,-45]],[[3828,8486],[10,45],[21,-7],[-11,-43]],[[3850,8481],[11,43],[18,-7],[-9,-40]],[[3893,8469],[9,40],[18,-7],[-9,-37]],[[3931,8523],[7,-1],[-6,-49],[-16,0],[15,50]],[[3927,8526],[-6,-21],[-60,21],[8,22],[58,-22]],[[3795,8580],[-36,15],[15,21],[23,-20],[8,14],[7,-6]],[[3812,8604],[-17,-24]],[[3787,8631],[16,-18],[-9,-14],[-20,17],[13,15]],[[3874,8576],[-6,-24],[-41,16],[8,32],[39,-24]],[[3888,8594],[-13,-16],[-42,26],[19,31],[36,-41]],[[3889,8592],[45,-53],[-6,-9],[-57,21],[5,24],[13,17]],[[3932,8449],[13,-15]],[[3945,8434],[-8,-3],[1,-23],[-10,-2]],[[3433,8121],[-17,-42],[-9,7],[2,46],[-5,39],[40,-7],[-11,-43]],[[3456,8578],[-7,1],[-3,24],[-4,75],[-10,6],[0,54]],[[3264,8382],[-41,89],[10,16],[14,-22],[33,-72],[-16,-11]],[[3113,8632],[3,-28],[-18,-16]],[[3112,7370],[-9,30],[15,19],[40,33],[15,-20],[-61,-62]],[[3216,7487],[-41,-52],[-15,19],[34,43],[22,-10]],[[3358,7408],[-7,-23],[-50,53],[13,19],[11,-2],[33,-47]],[[3491,7629],[24,-41]],[[3504,7579],[-22,32],[9,18]],[[3054,7775],[11,14],[39,-43],[-11,-12],[-16,17]],[[3077,7751],[-23,24]],[[3274,7710],[-13,16],[33,41],[23,-28],[-26,-30],[-17,1]],[[3045,7963],[4,-38],[-14,-2],[10,40]],[[2963,7893],[-21,20],[-5,41],[40,-38],[-14,-23]],[[2936,7962],[-1,41],[20,18],[15,-27],[-34,-32]],[[2955,8028],[-25,45],[2,3],[37,-19],[-14,-29]],[[3045,7990],[-1,-8],[-42,-41],[-13,27],[42,41],[14,-19]],[[3240,7977],[-4,-35],[-13,-17],[-26,33],[5,25],[38,-6]],[[3282,7868],[-5,7]],[[3277,7875],[11,14],[-11,5],[19,30],[6,-6],[-14,-17],[10,-12],[-16,-21]],[[3406,7862],[-24,-4],[-7,37],[22,4],[9,-37]],[[3300,8019],[5,8],[46,5],[-24,-35],[-14,6],[-13,16]],[[3431,7916],[-27,-7],[-32,125],[16,15]],[[2952,8139],[-3,51],[38,-7],[-13,-42],[-22,-2]],[[2976,8139],[14,43],[39,-9],[-18,-63],[-35,29]],[[3072,8131],[-23,-45],[-4,-17]],[[3045,8069],[-16,7],[32,64],[11,-9]],[[3098,8060],[4,54],[5,11]],[[3107,8125],[10,-2],[-7,-65],[-12,2]],[[3113,8057],[7,66],[30,-5],[-7,-65],[-30,4]],[[2907,8303],[39,-2],[-6,-25]],[[3094,8205],[31,-6],[-1,-11],[-35,6],[5,11]],[[3095,8206],[13,25],[20,-3],[-3,-27],[-30,5]],[[3212,8307],[22,-3],[-3,-29],[-29,5],[3,21],[7,6]],[[2902,8431],[23,-14],[1,-80],[-20,-29],[-2,25],[-2,98]],[[2899,8613],[18,1],[9,-46],[-26,-9],[-1,54]],[[2972,8519],[-34,32],[-12,25],[-5,36],[15,3],[15,-46],[29,-34],[-8,-16]],[[2939,8615],[15,6],[9,-25],[28,-41],[-9,-17],[-20,19],[-18,35],[-5,23]],[[3024,8595],[-20,-18],[-32,57],[19,18],[33,-57]],[[2953,8626],[-32,-7],[-1,32]],[[2920,8651],[9,0],[0,-22],[20,7],[4,-10]],[[2989,8655],[-19,-17],[-25,57],[-15,26],[14,14],[45,-80]],[[3231,8137],[46,-8],[-3,-32]],[[3180,8049],[-32,6],[10,95],[11,-2]],[[3352,8154],[-7,22],[-6,-6],[-7,19],[-10,44],[0,18],[-36,102],[6,13],[18,13]],[[3360,8127],[-11,14]],[[3349,8141],[3,13]],[[3263,8239],[0,-1]],[[3263,8238],[-3,0]],[[3260,8238],[-14,3]],[[3246,8241],[-1,0]],[[3245,8241],[-14,2]],[[3231,8243],[-1,0]],[[3230,8243],[-16,3]],[[3214,8246],[-15,3],[3,28],[61,-12],[0,-26]],[[3196,8249],[-15,3]],[[3181,8252],[-3,0]],[[3178,8252],[-10,2]],[[3168,8254],[6,61],[21,-3],[6,-11],[-5,-52]],[[3010,8441],[0,2],[54,103],[27,-21],[-55,-105],[-26,21]],[[3006,8184],[-57,11],[-3,35]],[[2972,8249],[-3,18],[7,20],[15,-11]],[[3128,8337],[6,-5],[-42,-83],[-9,4]],[[3148,8320],[-42,-84],[-13,11],[43,83],[12,-10]],[[3270,7520],[-29,26]],[[3241,7546],[0,11]],[[3796,7608],[11,-9]],[[3751,7518],[-6,20],[23,14],[28,56]],[[3692,7734],[15,28],[47,-39],[-15,-28],[-47,39]],[[3806,7639],[-28,23],[15,28],[27,-23],[-14,-28]],[[3801,7710],[-8,-14],[-32,26],[16,35]],[[4069,7565],[3,21],[26,-2],[31,9],[8,-20],[-35,-11],[-33,3]],[[4119,7618],[8,-21],[-25,-8],[-31,3],[2,21],[24,-1],[22,6]],[[4072,7651],[36,-2],[7,-28],[-18,-6],[-24,1],[-1,35]],[[4088,7691],[23,2],[-3,-42],[-19,2],[-1,38]],[[4112,7639],[2,54],[14,0],[1,-18]],[[4132,7674],[15,-6],[-19,-38],[-9,-8]],[[4073,7500],[-7,17]],[[4066,7517],[2,10],[14,3],[2,-13],[20,-6],[3,19],[-35,0],[-6,9],[3,22],[31,-2],[39,12],[-9,23],[23,25],[29,64],[8,27],[11,-8]],[[3744,7893],[-22,47],[39,-34],[-17,-13]],[[3908,7891],[16,-14],[-20,-2],[4,16]],[[4189,7837],[-2,39],[17,0],[1,-38]],[[4228,7877],[15,1],[1,-37],[-15,0],[-1,36]],[[4245,7948],[4,0],[23,-32],[-12,-32],[-5,-1],[-10,65]],[[4189,7956],[4,-19],[-27,-9],[-2,20],[25,8]],[[4145,8051],[-11,7],[4,24],[-11,20],[-18,12],[5,13]],[[3914,8221],[-3,2],[-2,63],[11,3]],[[3987,8265],[-28,-48],[-26,22],[29,49],[25,-23]],[[4077,8229],[10,5],[27,-87]],[[4114,8147],[-7,-14],[-30,96]],[[3872,8321],[11,18],[12,-11],[-12,-17],[-11,10]],[[3874,8316],[13,-7],[11,19],[-14,13],[16,29],[9,4],[-4,-84],[-25,-6],[-16,14],[10,18]],[[3920,8293],[-11,-3],[2,104],[12,3]],[[3969,8382],[18,-11],[-13,-22],[-7,-1],[2,34]],[[3969,8405],[36,-37]],[[4005,8368],[-34,-57],[-5,8],[1,26],[8,0],[15,27],[-14,11],[-35,3],[0,14],[28,5]],[[3989,8268],[-25,23],[28,48],[25,-24],[-28,-47]],[[4007,8366],[25,-24]],[[4032,8342],[-14,-24],[-24,25],[13,23]],[[4064,8305],[27,-26]],[[4091,8279],[-12,-22],[-27,27],[12,21]],[[4106,7525],[-5,-11],[-14,4],[1,14],[18,-7]],[[4045,7951],[13,38],[15,-8],[-14,-38],[-14,8]],[[3655,7537],[4,-1],[29,53],[26,-22],[17,-26],[-23,-11],[-1,-7]],[[3807,8247],[29,-21],[18,-1],[-1,-10],[-23,-35],[-28,33],[-14,1],[19,33]],[[3908,8394],[0,-17],[-10,-7],[-30,-52],[-6,-19],[-17,15],[43,78],[20,2]],[[4043,8149],[16,29],[16,-16],[17,6],[11,-35],[4,-5],[-16,-39]],[[4091,8089],[-37,26],[12,26],[-23,8]],[[4027,8157],[0,4],[42,74],[3,-2],[19,-60],[-18,-8],[-5,16],[-10,0],[-17,-31],[-14,7]],[[4053,7916],[7,21],[39,-12],[-10,-41]],[[4032,7735],[14,4],[-6,21]],[[4040,7760],[24,-4],[0,-28],[-21,-6],[-11,13]],[[3998,7817],[18,-2],[57,-32],[-7,-19],[-22,-2]],[[3843,8190],[25,-26],[10,15],[-10,9]],[[3868,8188],[18,37],[20,-5],[12,-7]],[[3928,8102],[-20,-23],[-23,21],[9,20]],[[3894,8120],[-7,9],[-21,-32],[-18,21],[8,10],[-20,23]],[[3836,8151],[-11,17],[18,22]],[[3953,8199],[7,12],[29,-26],[-3,-6]],[[3722,7973],[-9,-20]],[[4137,6336],[-15,-12],[-1,36],[17,-4],[-1,-20]],[[4150,6416],[-4,-15],[-18,5],[9,30],[13,-20]],[[4165,6453],[-12,-30],[-12,19],[24,11]],[[4313,6638],[-8,-23],[-45,7],[-9,-3],[-49,7],[6,35],[105,-23]],[[4202,6668],[-44,10],[0,3],[37,30],[18,-3],[-11,-40]],[[4247,6928],[12,-1],[-3,-42],[-10,1]],[[4246,6886],[-10,21],[10,-1],[1,22]],[[4009,7129],[-13,17]],[[3996,7146],[30,39]],[[4119,7277],[11,-5],[23,-34],[29,-64],[-29,0],[-23,55],[-14,16],[-25,-6],[-11,13],[14,15],[25,10]],[[4151,7250],[15,15],[42,-78],[-17,-19],[-30,68],[-10,14]],[[4097,6583],[1,-23],[-22,-9],[-6,-35]],[[4070,6516],[-17,-3]],[[4053,6513],[11,69]],[[4053,7219],[25,31],[11,-13],[-6,-15],[2,-23],[10,-24]],[[4098,7179],[-10,21],[-2,22],[15,21],[23,-9],[13,-29]],[[4155,6685],[-40,-30],[-15,30],[1,48],[50,-9],[4,-39]],[[4438,6789],[-1,-40]],[[4437,6749],[-21,2]],[[4108,7305],[14,-21],[-26,-10],[-12,-12]],[[4304,6571],[-2,-20],[-27,5]],[[4275,6556],[-18,4]],[[4361,7089],[-4,-16],[-45,3],[-10,11]],[[4596,6728],[-17,-20],[-21,-16],[-73,-27],[-75,-44],[-40,-12],[-50,2],[3,24],[45,-9],[97,55],[3,18],[54,-3],[49,34],[25,-2]],[[4798,6765],[18,-5],[-1,-46],[-17,0],[0,51]],[[4864,6782],[5,-39],[-6,-9],[-19,33],[20,15]],[[4632,6776],[0,61],[25,-12],[68,-10]],[[4502,6982],[-22,-41],[-124,98],[13,50]],[[4731,6978],[2,-16],[-147,11],[2,22]],[[4660,7312],[4,38],[17,-5],[-2,-35],[-19,2]],[[4684,7345],[29,-5],[-1,-32],[-32,2],[4,35]],[[4669,7433],[-4,-51],[-20,-11],[5,47],[-1,16],[20,-1]],[[4671,7436],[-22,1],[2,25],[22,-1]],[[4673,7461],[-1,-12]],[[4672,7449],[-1,-13]],[[4795,7535],[20,0],[0,-48],[-20,2],[0,46]],[[4822,7611],[10,2],[8,-65],[1,-83],[-11,-8],[-13,2],[1,77],[-2,15]],[[4595,7645],[-25,-1],[-18,18],[10,12],[32,-1],[1,-28]],[[4598,7615],[-2,58],[26,1],[2,-57],[-26,-2]],[[4626,7617],[-1,57],[26,1],[1,-57],[-26,-1]],[[4707,7594],[-23,-14],[-2,67],[31,2],[14,-33],[-20,-22]],[[4703,7708],[11,-55],[-32,-3],[-2,56],[23,2]],[[4700,7751],[-20,-1]],[[4680,7750],[-1,42],[20,2],[1,-43]],[[4704,7753],[-1,38],[19,1],[2,-38],[-20,-1]],[[4660,7870],[9,-10],[3,-65],[-28,-4],[-5,33],[21,46]],[[4674,7795],[-3,64],[24,7],[3,-70],[-24,-1]],[[4702,7793],[-3,74],[24,1],[3,-73],[-24,-2]],[[4750,7849],[2,-53],[-24,-1],[-3,93]],[[4725,7888],[25,-39]],[[4539,7981],[14,47],[20,-12],[-14,-49],[-20,14]],[[4561,7965],[16,48],[27,-19],[-19,-47],[-24,18]],[[4588,7945],[18,47],[28,-19],[-21,-46],[-25,18]],[[4661,7953],[-20,-45],[-26,18],[21,45],[25,-18]],[[4674,7866],[-13,6],[20,44],[12,1],[2,-49],[-21,-2]],[[4594,8092],[-20,-72],[-19,14],[15,50],[24,8]],[[4633,8064],[-27,-66],[-28,19],[23,77],[12,7],[20,-37]],[[4659,8016],[-24,-39],[-27,19],[26,63],[25,-43]],[[4663,7957],[-26,18],[22,40],[17,-30],[-13,-28]],[[4741,7655],[0,-31],[-13,-2],[-9,18],[-14,68],[33,2],[1,-16]],[[4739,7694],[-8,-1],[-1,-38],[11,0]],[[4777,7934],[-15,-5]],[[4762,7929],[-26,-25],[-5,8],[14,15],[-4,41],[30,4],[6,-38]],[[4724,7792],[70,3],[-1,-22],[-23,-1],[-1,-16],[-43,-2],[-2,38]],[[4785,7975],[20,-101],[4,-48]],[[4809,7826],[-11,-5],[-5,46],[-17,84],[-2,22],[11,2]],[[4226,7291],[-8,-25],[-7,5]],[[4183,7316],[16,-14],[27,-11]],[[4810,7263],[3,-32],[-79,6],[-2,7],[-51,4],[-9,7],[26,31]],[[4698,7286],[7,-10],[35,-9],[-1,-4],[39,-3],[23,-6],[9,9]],[[4589,7770],[11,23],[8,-6],[69,4],[1,-17]],[[4681,7601],[-135,-6],[-9,-13],[-27,-61]],[[4510,7521],[-13,8],[-7,16],[8,29],[20,41]],[[4518,7615],[21,-16]],[[4539,7599],[2,-1],[8,12],[131,7],[1,-16]],[[4411,7157],[5,17],[21,-8],[-4,-16]],[[4433,7150],[-22,7]],[[4413,7704],[-10,-1],[-7,92]],[[4409,7733],[-2,-20],[6,-9]],[[4445,7909],[34,3],[34,-16]],[[4513,7896],[-10,-34],[-7,3],[-10,-33]],[[4486,7832],[-43,18],[2,59]],[[4309,7638],[6,84],[43,5],[5,-51],[14,-74],[-4,-1],[-64,37]],[[4516,8065],[-18,75],[17,6],[13,-71],[-12,-10]],[[4497,8143],[-13,64],[17,5],[13,-63],[-17,-6]],[[4556,8209],[-8,-9],[7,-38],[-20,-6],[-23,116],[4,4],[40,-67]],[[4514,8280],[-5,-6],[10,-53],[-36,-11],[-4,20],[21,52],[14,-2]],[[4447,8447],[6,31],[21,-14],[24,-31],[-51,14]],[[4286,8053],[-18,-8],[-8,35],[18,6],[8,-33]],[[4212,8126],[22,3],[4,-52],[-16,-5]],[[4236,8128],[17,-7],[4,-38],[-17,-5],[-4,50]],[[4365,8119],[23,3],[-16,-32],[-7,29]],[[4348,8179],[-21,-8],[-13,54],[21,7],[13,-53]],[[4313,8229],[-10,44],[21,7],[10,-44],[-21,-7]],[[4378,8278],[20,7],[17,-78],[-20,-11],[-18,78],[1,4]],[[4400,8286],[20,5],[11,-52],[1,-23],[-14,-14],[-18,84]],[[4487,8315],[-47,-101]],[[4440,8214],[-4,20],[40,86],[11,-5]],[[4460,8353],[-18,-10]],[[4442,8343],[-8,33],[8,3],[18,-26]],[[4044,8713],[49,44],[6,-12],[-10,-6],[-32,-38],[-11,11],[-1,-3],[72,-60],[13,-8],[-15,-29],[-59,49],[-35,32],[23,20]],[[4099,8744],[9,-27],[-31,-32],[-19,15],[6,11],[35,33]],[[4117,8690],[-21,-22],[-18,16],[31,33],[8,-27]],[[4118,8689],[8,-28],[-10,-10],[-19,16],[21,22]],[[4113,8771],[6,-15],[-19,-10],[-4,13],[17,12]],[[4138,8766],[-18,-10],[-6,16],[19,12],[5,-18]],[[4147,8738],[-38,-20],[-8,26],[37,20],[9,-26]],[[4145,8669],[-17,-6],[-18,54],[9,5]],[[4191,8665],[52,27],[-7,61],[8,1],[0,18],[11,0]],[[4167,8740],[12,6],[24,-73],[-12,-7]],[[4201,8758],[24,-74],[-21,-10],[-24,73],[21,11]],[[4235,8753],[6,-60],[-15,-8],[-24,73],[20,10],[5,-17],[8,2]],[[4149,8780],[16,11],[14,-43],[-11,-5]],[[4166,8792],[19,13],[15,-46],[-20,-10],[-14,43]],[[4209,8822],[13,-52],[-20,-10],[-16,46],[23,16]],[[4210,8823],[34,24],[-1,-73],[-20,-4],[-13,53]],[[4255,8773],[-11,1],[2,74],[17,10]],[[4136,8786],[31,26],[45,29],[34,26],[34,19],[-6,-24],[-20,-6],[-114,-81],[-4,11]],[[4405,8356],[4,-20],[-43,-16],[-5,20],[44,16]],[[4320,8414],[65,26],[8,-36],[-67,-20]],[[4432,8375],[21,-95],[-19,-40],[-31,136],[27,9],[2,-10]],[[4434,8390],[-31,-12],[-16,62],[9,2],[38,-52]],[[4334,8441],[-3,-1]],[[4331,8440],[-14,-3],[-43,-22],[-31,-11],[-9,31],[71,36]],[[4230,8444],[8,40],[10,-7],[42,-4]],[[4290,8473],[-60,-29]],[[4610,9108],[26,-8]],[[4625,9048],[-23,-18]],[[4162,8572],[29,7]],[[4191,8579],[7,-29],[-5,-2],[-31,24]],[[4272,8266],[-4,23],[26,9],[5,-23],[-27,-9]],[[4296,8302],[-30,-11],[-22,103],[7,7],[27,8],[20,-1],[6,-34]],[[4304,8374],[-10,-2]],[[4144,8667],[-13,-24],[-8,12],[21,12]],[[4367,8305],[-2,11]],[[4365,8316],[37,14]],[[4414,8314],[3,-18],[-18,-7]],[[4727,8245],[-34,-18]],[[4693,8227],[-8,41],[34,19]],[[4719,8287],[8,-42]],[[4748,8274],[13,27],[29,-7],[-17,-39],[-25,19]],[[4792,8241],[-16,12],[29,70],[18,-13],[-31,-69]],[[4662,8386],[9,3],[10,-48],[-8,-11]],[[4860,8264],[5,13],[47,-21],[30,-8],[-2,-9],[-4,-20],[-46,8],[-38,22],[8,15]],[[4626,8567],[22,-15],[4,-70],[18,-88],[-9,-3]],[[4713,8332],[-7,32],[38,80],[21,-15],[-43,-93],[-9,-4]],[[4804,8328],[-16,12],[25,55],[16,-11],[-25,-56]],[[4825,8314],[-18,12],[25,56],[18,-13],[-25,-55]],[[4900,8262],[-34,17],[17,37],[38,-17],[27,-7],[-6,-41],[-35,9]],[[4907,8260],[3,11],[24,-7],[2,19],[-18,5],[2,11],[-12,5],[-3,-11],[-17,8],[-8,-17],[23,-10],[-3,-12]],[[4979,8254],[3,34],[32,8],[-6,-31],[-29,-11]],[[4952,8327],[-4,-32],[-45,13],[-19,11],[15,33],[21,-13],[32,-12]],[[4728,8527],[-22,-51],[-20,14],[21,47],[21,-10]],[[4749,8517],[-25,-54],[-16,12],[23,50],[18,-8]],[[4770,8506],[-27,-56],[-16,11],[25,54],[18,-9]],[[4796,8494],[-29,-61],[-21,15],[27,57],[23,-11]],[[4823,8481],[-30,-67],[-22,16],[29,62],[23,-11]],[[4815,8399],[13,30],[16,-12],[-13,-29],[-16,11]],[[4921,8399],[17,-9],[-13,-50],[-24,14],[20,45]],[[4960,8383],[-7,-52],[-26,9],[13,49],[20,-6]],[[4955,8330],[8,51],[24,-4],[-4,-44],[-28,-3]],[[4986,8334],[4,40],[21,-26],[-25,-14]],[[4922,8402],[20,43],[25,-8],[-7,-51],[-38,16]],[[4679,8546],[7,77],[18,-2],[-9,-78],[-16,3]],[[4701,8570],[6,50],[32,-5],[-23,-52]],[[4709,8541],[33,73],[21,-9],[-33,-74],[-21,10]],[[4733,8530],[33,73],[17,-8],[-33,-74],[-17,9]],[[4772,8510],[-19,9],[33,74],[19,-9],[-33,-74]],[[4775,8509],[17,37],[21,-15],[-15,-33],[-23,11]],[[4803,8497],[14,31],[21,-15],[-13,-29],[-22,13]],[[4858,8516],[-12,-40],[-18,8],[14,31],[-24,17],[5,9],[13,29],[34,-17],[-12,-37]],[[4934,8453],[18,44],[21,-13],[-6,-43],[-33,12]],[[4970,8440],[6,42],[19,-7],[-3,-40],[-22,5]],[[5043,8424],[-3,22],[11,31],[19,-8],[-16,-42],[-11,-3]],[[4745,8619],[30,67],[20,-10],[-30,-67],[-20,10]],[[4768,8608],[30,66],[17,-8],[-30,-66],[-17,8]],[[4807,8589],[-18,9],[29,66],[19,-9],[-30,-66]],[[4810,8587],[30,66],[21,-15],[-28,-62],[-23,11]],[[4878,8615],[-23,-50],[-18,8],[28,62],[10,-8]],[[4893,8604],[-22,-47],[-13,7],[22,49]],[[4713,8745],[12,-2],[-6,-46],[-25,5],[1,15]],[[4776,8690],[17,41],[23,-5],[-19,-47],[-21,11]],[[4820,8668],[21,54],[25,-4],[-27,-59],[-19,9]],[[5006,8641],[-6,28],[39,-10],[-6,-27],[-27,9]],[[5075,8617],[-39,14],[6,26],[39,-14],[-6,-26]],[[5116,8602],[-38,14],[6,26],[38,-13],[-6,-27]],[[4631,8804],[-10,-21],[-32,20],[4,28],[38,-27]],[[4675,8771],[-9,-20],[-41,29],[10,21],[40,-30]],[[4842,8726],[11,50],[24,-4],[-10,-50],[-25,4]],[[4616,8837],[-11,4],[6,50],[15,-5]],[[4626,8886],[-10,-49]],[[4658,8792],[-21,14],[28,88],[11,6],[20,-5],[-32,-92],[-6,-11]],[[4828,8806],[29,17],[-7,-42],[-20,3],[-2,22]],[[5089,8678],[-39,14],[6,27],[39,-14],[-6,-27]],[[5023,8779],[-14,5],[5,28],[-13,11]],[[5001,8823],[3,7],[26,-15],[-7,-36]],[[5113,8784],[8,-3],[-7,-23],[-11,7],[-46,-28],[-3,-13],[-35,13],[2,12]],[[5021,8749],[21,-7],[47,27],[24,15]],[[5057,8723],[2,11],[44,27],[10,-6],[-17,-46],[-39,14]],[[5142,8774],[-25,-72],[-18,6],[25,72],[18,-6]],[[5183,8760],[-26,-73],[-17,6],[25,73],[18,-6]],[[4601,8937],[-2,1],[2,86],[26,18],[-1,-43],[9,-2],[-3,-44],[-31,-16]],[[4637,8997],[36,-5],[-4,-40],[-35,1],[3,44]],[[4702,8953],[-5,-55],[-21,5],[-8,11],[7,78],[33,-6],[-6,-33]],[[4738,8888],[-14,3],[13,53],[21,-12],[-20,-44]],[[4709,8986],[32,-9],[-7,-29],[-30,7],[5,31]],[[4774,8969],[-14,-31],[-22,9],[5,30],[31,-8]],[[4768,8878],[11,-3]],[[4779,8875],[-34,-75]],[[4745,8800],[-20,14]],[[4873,9046],[-11,-2]],[[4861,9096],[19,-4],[-7,-46]],[[5068,8908],[54,-18],[-7,-32],[-50,18],[3,32]],[[4629,9046],[23,8],[-3,-56],[-21,3],[1,45]],[[4673,8995],[-22,3],[4,59],[24,7],[-6,-69]],[[4771,9020],[23,-6],[-19,-42],[-64,16],[3,20],[54,-15],[3,27]],[[4768,9020],[-4,-23],[-50,14],[4,21],[50,-12]],[[4847,8919],[-33,9],[45,94],[10,2],[-22,-105]],[[5193,8935],[55,-20],[-6,-25],[-54,20],[5,25]],[[5223,8962],[-7,-33],[-49,18],[7,32],[49,-17]],[[5258,8949],[-9,-32],[-32,12],[8,32],[33,-12]],[[5276,8943],[-13,-49],[-16,5],[14,49],[15,-5]],[[5061,9050],[51,-18],[-4,-26],[-56,18],[9,26]],[[5170,8990],[-7,-1],[-50,16],[1,27],[53,-18],[17,-18],[-14,-6]],[[5216,8967],[-41,15],[0,5],[33,16],[8,-36]],[[5259,8952],[-39,14],[-9,38],[27,12],[10,-24],[20,-12],[-9,-28]],[[5290,8941],[-29,10],[25,73],[24,-24],[-20,-59]],[[4721,9134],[15,67],[12,-2],[-10,-69],[-17,4]],[[4740,9129],[11,69],[19,-4],[-10,-69],[-20,4]],[[4763,9124],[10,69],[20,-4],[-11,-69],[-19,4]],[[4911,9213],[14,-21],[-15,-28],[-25,-61],[-20,5]],[[4924,9088],[-36,9],[0,6],[25,58],[21,-6],[-10,-67]],[[4915,9164],[13,26],[16,-23],[-9,-7],[-20,4]],[[4927,9087],[10,69],[11,6],[12,-19],[-10,-62],[-23,6]],[[5075,9077],[42,-15],[-5,-26],[-48,17],[11,24]],[[5115,9036],[5,26],[49,-17],[-2,-28],[-52,19]],[[4963,9147],[4,17],[27,-8],[-11,-37],[-20,28]],[[5014,9076],[31,-7]],[[5045,9069],[-3,-30],[-28,37]],[[4994,9103],[-8,11],[13,43],[47,-11],[1,-14]],[[5047,9132],[-43,10],[-1,-28],[-9,-11]],[[5210,9008],[-13,22],[-14,13],[7,23],[31,-20],[16,-26],[-27,-12]],[[5269,8983],[-22,14],[-7,20],[38,15],[6,-6],[-15,-43]],[[4793,9194],[-19,4],[9,59],[19,-5],[-9,-58]],[[4796,9193],[9,59],[19,-4],[-8,-59],[-20,4]],[[5018,9157],[-5,23],[30,-7],[2,-23],[-27,7]],[[5049,9159],[-8,41],[19,-10],[-11,-31]],[[5116,9155],[35,-21],[-18,-38],[-36,24],[19,35]],[[5230,9074],[-11,-22],[-29,18],[6,32],[34,-28]],[[5232,9073],[41,-39],[-33,-13],[-19,30],[11,22]],[[4808,9256],[7,31],[25,-14],[10,15],[37,-45],[-1,-3],[-78,16]],[[4820,9328],[-17,-71],[-13,3]],[[4821,9389],[52,-10],[47,-7],[-14,-27],[-35,17],[-53,12]],[[4815,9291],[8,34],[23,-9],[-6,-15],[7,-9],[-8,-15],[-24,14]],[[4871,9272],[-14,16],[14,30],[16,-12],[-16,-34]],[[4869,9359],[36,-18],[-17,-29],[-28,20]],[[4872,9267],[35,73],[22,-18],[-40,-76],[-17,21]],[[4911,9223],[-18,19],[38,78],[17,-13]],[[4968,9222],[-21,7],[19,57],[19,-14],[-12,-24],[-5,-26]],[[4974,9224],[3,22],[10,21],[15,-14],[-21,-31],[-7,2]],[[5016,9211],[3,33],[10,3],[7,-38],[-20,2]],[[5212,9149],[-17,-41],[-40,29],[10,33],[47,-21]],[[5216,9147],[27,-19],[-24,-39],[-21,17],[18,41]],[[5265,9050],[-45,37],[25,40],[15,-18],[10,-47],[-5,-12]],[[5006,9319],[-18,-41],[-20,14],[10,31],[28,-4]],[[5022,9287],[-16,-28],[-17,14],[22,46],[5,-1],[6,-31]],[[5063,9266],[26,-22],[-11,-22],[-29,17],[14,27]],[[5013,9331],[-4,-8],[-27,3],[12,27],[16,-2],[3,-20]],[[5053,9347],[-13,-28],[-21,3],[-4,28],[38,-3]],[[5064,9269],[22,41],[25,-21],[-21,-42],[-26,22]],[[5224,9184],[-10,-32],[-48,22],[6,26]],[[5256,9173],[-12,-42],[-27,19],[8,33]],[[5272,9168],[25,-125],[-18,-6],[-13,11],[6,14],[-9,46],[-18,21],[13,43]],[[5289,9163],[20,-115],[-10,-4],[-24,123]],[[5205,9320],[12,25],[23,-4]],[[4949,8808],[-19,-96]],[[4930,8712],[-12,2],[21,96]],[[5167,8944],[24,-9],[-6,-25],[-24,9],[6,25]],[[4992,8939],[9,-10],[23,-1]],[[5024,8928],[1,-20],[-19,0],[-24,-15],[10,46]],[[5029,8953],[-18,2],[-9,10]],[[5002,8965],[19,33],[24,24],[-16,-69]],[[5119,9298],[61,-16]],[[5180,9282],[-32,-60],[-7,-11]],[[5141,9211],[-56,20]],[[5085,9231],[4,9],[30,58]],[[5010,8622],[-3,14],[25,-8],[-3,-13]],[[5029,8615],[-19,7]],[[4882,5873],[16,7]],[[4906,5850],[-15,-7],[-9,30]],[[5219,6000],[24,17],[17,-39],[-24,-17]],[[5134,6194],[29,25],[3,-26],[-16,-14],[-16,15]],[[5178,5920],[-17,39],[38,27],[17,-39],[-38,-27]],[[5161,6235],[6,-10],[-41,-36],[-5,11],[40,35]],[[5509,6336],[15,14],[17,-28]],[[4952,6130],[-51,27]],[[4901,6157],[8,26],[30,-16]],[[4939,6167],[7,-3]],[[4946,6164],[77,-39],[-18,-19],[-53,24]],[[5050,6335],[8,25],[21,-12],[-11,-30],[-18,17]],[[4838,6085],[27,-14],[-5,-35]],[[4836,5996],[-1,-13]],[[4835,5983],[-22,-13],[3,24],[14,40],[8,51]],[[4966,6633],[4,16],[60,-30]],[[5030,6619],[-8,-14]],[[5022,6605],[-56,28]],[[4952,6634],[52,-26]],[[5004,6608],[-10,-32],[-32,16],[-18,4]],[[4944,6596],[-5,-5]],[[4939,6591],[-5,10],[12,13],[6,20]],[[5189,6857],[-5,-4],[-33,16],[8,23],[35,-17]],[[5337,6831],[-10,-18],[-44,23]],[[5333,6810],[18,33],[32,-35],[-16,-28],[-34,30]],[[5476,6878],[-36,-9],[-20,3]],[[5574,6960],[0,-1]],[[5574,6959],[-33,-30],[-37,-20],[-14,-14]],[[5490,6895],[-18,52]],[[5541,7034],[3,4]],[[5545,7041],[29,-79]],[[5090,7027],[30,-20],[-28,-34],[-23,6]],[[5064,7210],[45,-12]],[[5109,7198],[-2,-12]],[[5134,7156],[7,-37]],[[4975,7349],[-32,-100],[-21,4],[16,51],[21,56],[16,-11]],[[4941,7312],[-21,-58],[-16,5],[9,38],[15,22],[13,-7]],[[4946,7370],[12,-9],[-17,-48],[-13,7],[18,50]],[[4889,7343],[39,-20],[-7,-9],[-22,-3],[-10,-9],[-4,19],[4,22]],[[4913,7299],[-11,-40],[-21,6],[7,33],[13,12],[18,1],[-6,-12]],[[4848,7329],[1,35],[17,-9],[-9,-57],[-9,31]],[[4834,7356],[0,17],[14,-7]],[[4848,7366],[-2,-37],[6,-30],[-1,-26],[-13,3]],[[4831,7452],[18,-13]],[[4849,7439],[-16,-46]],[[4833,7393],[-2,59]],[[4894,7407],[-19,-55],[-25,13],[23,57],[21,-15]],[[4841,7624],[-19,-9]],[[5123,7308],[-24,-31],[-5,9],[17,17],[7,24]],[[5118,7327],[5,-19]],[[5103,7357],[8,-30],[-5,-23],[-15,-16],[-13,34],[11,29],[14,6]],[[5104,7381],[5,-20]],[[5109,7361],[-20,-8],[-10,22],[24,12]],[[5078,7324],[-28,51],[20,17],[18,-42],[-10,-26]],[[5190,7450],[-9,-57]],[[5181,7393],[-10,8]],[[5318,7566],[-43,-63],[-79,-124],[-1,-4]],[[5186,7377],[3,18]],[[5318,7626],[-63,-86],[-24,-35],[9,69],[12,3],[45,66]],[[5297,7644],[-46,-66],[-10,0],[7,52],[13,5],[15,26]],[[5276,7662],[-19,-30],[-8,2],[9,43]],[[5256,7678],[-9,-45],[-12,2]],[[5235,7635],[10,53]],[[5236,7705],[3,13],[24,-9],[-5,-22]],[[5259,7685],[7,24],[22,-9],[-9,-31]],[[5293,7731],[-4,-29],[-23,8],[5,23],[10,50],[23,-13],[-11,-39]],[[5280,7668],[9,32],[24,-9],[-13,-40]],[[5319,7729],[-6,-36],[-24,9],[8,29],[9,38],[22,-17],[-9,-23]],[[5301,7650],[13,41],[23,-8],[-16,-50]],[[5348,7721],[-2,1],[-8,-38],[-24,9],[8,36],[7,21],[27,-32],[13,-14],[-19,-26],[-11,6],[9,37]],[[5359,7669],[-8,8],[32,45],[7,-8]],[[5322,7632],[17,50],[19,-14]],[[5286,7517],[22,32],[26,-1],[3,-36],[-42,-5],[-9,10]],[[5333,7566],[1,-17],[-22,-2],[7,18]],[[5339,7494],[-1,17],[45,4],[0,-16]],[[5335,7548],[46,5],[2,-37],[-45,-4],[-3,36]],[[5380,7568],[1,-14],[-46,-5],[-1,17]],[[5385,7503],[-1,12],[24,2],[0,-14]],[[5409,7503],[0,14],[11,0],[0,-14]],[[5407,7551],[1,-33],[-24,-2],[-3,56]],[[5382,7581],[-3,33],[23,3],[2,-54]],[[5362,7642],[9,9],[5,-17],[2,-49]],[[5392,7665],[10,-47],[-24,-2],[-6,36],[17,19],[3,-6]],[[5000,7331],[19,-13]],[[5019,7318],[-10,-32],[-21,9],[12,36]],[[5486,6827],[-40,29],[5,10],[20,4],[18,18]],[[5399,7681],[8,-22],[7,-39],[-11,-2],[-13,54],[9,9]],[[4996,6704],[50,-28],[20,-16]],[[5066,6660],[-4,-12]],[[5062,6648],[-17,11]],[[5045,6659],[-54,29]],[[4991,6688],[5,16]],[[5261,6766],[30,-15]],[[5291,6751],[-13,-27]],[[4845,7451],[-2,65],[20,-13]],[[4865,7508],[-22,11],[-2,43],[32,-29]],[[5419,7540],[1,-22],[-11,0],[-2,32]],[[5409,7559],[-6,58],[11,1],[5,-68]],[[4896,7405],[48,-34],[-16,-47],[-51,27],[19,54]],[[5195,7361],[3,18],[88,138],[9,-11],[42,5],[1,-17]],[[5143,7828],[14,-5]],[[5157,7823],[6,-30]],[[5163,7793],[5,-30]],[[5050,7338],[-3,-23],[9,-16]],[[5056,7299],[-68,49]],[[4988,7348],[13,38],[5,-8]],[[4982,7413],[5,-6],[-17,-47]],[[4970,7360],[-91,65]],[[4879,7425],[16,49],[12,-6],[10,29]],[[5365,7660],[5,-6],[-14,-16],[-10,-26]],[[5268,7735],[-26,3]],[[5242,7738],[15,58],[22,-11],[-11,-50]],[[5398,7719],[-57,68],[7,5],[80,-44]],[[5255,7850],[-23,19],[-4,16],[29,-32],[-2,-3]],[[5083,7967],[-27,10]],[[5071,8009],[40,-30]],[[5111,7979],[-9,-19]],[[5102,7960],[-19,7]],[[4993,8039],[-10,-20],[-46,0],[-1,31],[36,1],[21,-12]],[[4789,8168],[-17,7]],[[4772,8175],[24,52],[64,-50],[-7,-13],[-13,8],[-51,-1],[0,-3]],[[4843,8201],[-42,32],[14,38],[48,-36],[-20,-34]],[[4847,8197],[18,37],[21,-11],[-11,-47],[-28,21]],[[4883,8198],[45,-11],[-14,-42],[-36,28],[5,25]],[[4935,8215],[-6,-25],[-45,11],[4,21],[47,-7]],[[4959,8146],[-2,-3],[10,-7],[-12,-23],[-9,7],[-30,23],[8,17]],[[5109,8043],[-8,-8],[-31,24],[20,19],[19,-35]],[[5083,8101],[6,-20],[-21,-20],[-20,15],[9,12],[26,13]],[[4984,8144],[73,34],[10,-23],[-53,-24],[-16,-16],[-26,20],[12,9]],[[5055,8210],[-11,38],[22,10],[10,-38]],[[5499,7851],[28,82],[15,-16],[-25,-74],[-18,8]],[[5519,7842],[24,73],[20,-20],[-21,-63],[-23,10]],[[5566,7822],[-22,9],[21,62],[19,-18],[-18,-53]],[[4801,7963],[42,1]],[[4843,7964],[-1,-12],[-38,0],[-3,11]],[[5216,7955],[32,-27],[-12,-15],[-19,20],[-11,-21],[-11,8]],[[5195,7920],[5,10]],[[4935,8004],[-50,-2]],[[4870,8015],[4,8],[22,-7],[39,2],[0,-14]],[[4934,8050],[1,-31],[-35,-1],[-1,32],[35,0]],[[4914,8098],[15,-11],[5,-35],[-35,0],[2,22],[13,24]],[[4911,8101],[-14,-36],[2,-47],[-17,4],[-2,47],[15,43],[16,-11]],[[4879,8022],[-16,18],[-5,33],[20,52],[16,-12],[-12,-26],[-3,-65]],[[4854,8028],[-6,29],[3,30],[-16,9],[-9,-13]],[[4826,8083],[-1,13]],[[4825,8096],[5,14],[32,-17],[-6,-27],[13,-50]],[[4847,8104],[16,33],[14,-11],[-15,-30],[-15,8]],[[4832,8113],[18,36],[12,-12],[-17,-33],[-13,9]],[[5242,8085],[-3,-72]],[[5239,8013],[-11,0],[3,69],[11,3]],[[5551,7807],[2,-18]],[[5421,7799],[3,6],[38,-10],[25,-1],[64,13]],[[4867,7965],[63,3]],[[4930,7968],[-10,-20],[-52,3],[-1,14]],[[5231,8088],[-20,-5]],[[5211,8083],[-30,-4]],[[5181,8079],[1,7],[28,3],[-1,22],[13,16],[10,-6]],[[5169,8115],[3,-17],[20,1],[1,-11],[-38,-16],[-17,38],[12,22],[19,-17]],[[5095,7901],[-35,-24],[-13,27],[5,16],[43,-19]],[[5346,7924],[21,-5],[-16,-89],[-23,4],[18,90]],[[5408,7847],[8,56],[22,-6],[-6,-40],[-24,-10]],[[5442,8024],[-13,-34],[-22,6],[14,47],[21,-19]],[[5124,8064],[4,28],[7,13],[12,-27]],[[5376,8085],[-13,-54],[-29,8],[17,64],[25,-18]],[[5506,7842],[9,-4],[-12,-38],[-12,-2]],[[5491,7798],[15,44]],[[5584,7166],[-47,71],[13,11],[56,-84],[-13,-10],[-9,12]],[[5748,7282],[-14,-8],[-35,-28],[-34,61],[31,4],[38,15],[14,-44]],[[5812,7366],[-12,28],[32,34],[6,-13]],[[5838,7415],[-26,-49]],[[5652,7356],[-11,32],[29,34],[16,-8],[14,-17],[-48,-41]],[[5596,7317],[-10,36],[53,33],[11,-31],[-24,-20],[-30,-18]],[[5466,7567],[-33,13],[1,38],[-7,25],[17,9]],[[5444,7652],[17,-21]],[[5499,7405],[25,9]],[[5524,7414],[-3,23],[32,18],[39,-137],[-65,-64],[-9,28],[-19,123]],[[5641,7312],[19,-6],[19,-32],[-8,-11]],[[5671,7263],[-30,49]],[[5673,7261],[7,8],[17,-24],[-13,-15]],[[5684,7230],[-11,31]],[[5763,7523],[-14,34],[-22,40],[42,35]],[[5810,7585],[-3,-22],[47,-54],[-8,-12],[-28,-29],[-15,-11]],[[5803,7457],[-10,19],[9,8]],[[5548,7626],[21,-7]],[[5569,7619],[-3,-7]],[[5566,7612],[-7,-47]],[[5559,7565],[-10,-22],[-49,58]],[[5822,7163],[48,26],[-5,-22],[-36,-24],[-7,20]],[[5869,7217],[-54,-30],[-5,13],[53,35],[6,-18]],[[5853,7260],[8,-21],[-52,-35],[-9,21],[53,35]],[[5851,7262],[-52,-34],[-9,21],[53,35],[8,-22]],[[5744,7304],[70,50],[18,-43],[-73,-49],[-15,42]],[[5889,7404],[18,-43],[-73,-49],[-18,44],[73,48]],[[5908,7359],[9,-22],[-69,-46],[-13,19],[73,49]],[[5918,7334],[10,-23],[-75,-47],[-8,21],[73,49]],[[5901,7258],[8,-21],[-38,-19],[-6,18],[36,22]],[[5874,7177],[0,14],[40,22],[5,-16]],[[5923,7193],[-5,22]],[[5927,7244],[34,17],[16,13],[34,23],[14,-29],[-3,10],[38,26],[-7,-2],[-14,38],[12,4]],[[5970,7338],[-40,-26],[-10,23],[41,27],[9,-24]],[[5854,7386],[-10,20],[37,37],[25,-23],[-52,-34]],[[5909,7422],[-7,17],[-10,-7],[-9,13],[30,37],[19,-44],[-23,-16]],[[5853,7492],[39,43],[20,-50],[-30,-37],[-29,44]],[[5813,7582],[47,-9],[-8,-58],[-44,50],[5,17]],[[5906,7616],[41,-11],[-88,-94],[-2,4],[6,56],[43,45]],[[5913,7492],[-12,30],[16,12],[9,-22],[-13,-20]],[[5935,7439],[-12,30],[40,26],[12,-28],[-40,-28]],[[5968,7610],[11,-27],[-60,-44],[-8,18],[57,53]],[[5964,7566],[9,-21],[-45,-30],[-8,21],[44,30]],[[5974,7542],[25,-60],[-21,-14],[-25,59],[21,15]],[[6001,7479],[18,-43],[-66,-44],[-17,44],[65,43]],[[5964,7364],[92,62],[11,-27],[-94,-60],[-9,25]],[[6020,7281],[-7,17],[32,19],[6,-16],[-31,-20]],[[6066,7467],[-45,-30],[-18,41],[46,30],[17,-41]],[[6035,7543],[12,-29],[-45,-30],[-12,29],[45,30]],[[6033,7546],[-44,-30],[-12,28],[45,29],[11,-27]],[[5853,8057],[8,-28],[-14,-11],[-29,-69],[-16,-42],[-4,-23],[-21,5],[53,120],[23,48]],[[5802,7881],[0,20],[23,54],[25,-18],[-22,-46],[-4,-15],[-22,5]],[[5866,7972],[-15,-33],[-27,21],[28,60]],[[5852,8020],[14,-48]],[[5883,7916],[-17,-16],[-25,-50],[-21,3],[8,37],[39,79]],[[5867,7969],[16,-53]],[[5884,7914],[16,-52]],[[5900,7862],[-11,-5],[-14,49],[9,8]],[[5844,7824],[2,21],[20,0],[45,18],[6,-21]],[[5996,7719],[-21,-15],[-21,51],[19,13],[23,-49]],[[5976,7702],[21,14],[12,-17],[-25,-17],[-8,20]],[[6021,7682],[-24,-26],[-12,23],[26,18],[10,-15]],[[6049,7526],[-21,51],[17,12],[19,-7]],[[6116,7507],[-4,2],[-44,-27],[-11,26],[45,29],[20,-9]],[[6082,7487],[33,17]],[[6088,7438],[2,29],[-8,20]],[[6143,7485],[-35,-21],[18,62],[17,-41]],[[6194,7520],[11,-21],[-49,-35],[-9,18],[19,13],[28,25]],[[6123,7531],[-22,10],[6,26],[24,-9]],[[6065,7585],[-19,7],[-11,27],[0,14],[41,-1]],[[5974,7773],[-13,29],[42,23],[16,12],[11,-18],[-56,-46]],[[5960,7805],[-7,26],[58,27],[7,-19],[-22,-16],[-36,-18]],[[5977,7845],[-47,-22],[-6,19]],[[5943,7973],[18,-16],[-17,-32],[-15,-17],[-21,-12],[-8,26],[28,23],[15,28]],[[5891,8041],[-14,27],[7,18],[25,-9],[-18,-36]],[[5907,8021],[-16,17],[20,38],[17,-9],[-21,-46]],[[5923,7996],[-18,15],[20,44],[18,-18],[-20,-41]],[[5943,7979],[-19,15],[21,42],[18,-18],[-20,-39]],[[5981,7940],[-17,20],[19,38],[18,-18],[-20,-40]],[[5966,7907],[-17,22],[13,27],[18,-22]],[[6075,7884],[1,-18],[-50,-34],[-12,27],[59,27],[2,-2]],[[6096,7896],[6,13]],[[6102,7909],[-1,-16],[-47,-99],[-9,14],[19,21],[-20,-19],[-16,19],[40,29],[11,4]],[[6084,7809],[24,10],[-4,-18],[-30,-32],[-6,7]],[[6080,7718],[19,10],[6,-19],[-23,-10]],[[6085,7691],[22,-29],[-19,-22]],[[6259,7538],[-21,-18],[-29,-18],[-12,22],[45,43],[17,-29]],[[6280,7603],[20,-28],[-40,-35],[-16,28],[36,35]],[[6066,7908],[6,-20]],[[6072,7888],[-58,-26],[-8,18]],[[6015,7910],[52,26],[17,25],[8,-12]],[[6083,7967],[-17,-26],[-32,-18],[-2,6],[27,60],[24,-22]],[[6014,7937],[32,65],[12,-12],[-26,-56],[0,-12],[-15,-7]],[[5992,7956],[10,21],[22,-17],[-10,-21],[-22,17]],[[6034,7981],[-10,-20],[-22,17],[10,20],[22,-17]],[[6045,8003],[-10,-20],[-22,17],[12,24],[20,-21]],[[6005,8045],[-23,-43],[-17,16],[22,45],[18,-18]],[[5884,8089],[14,29],[21,-23],[-6,-19],[-29,13]],[[5899,8160],[37,71],[10,-10],[-43,-65],[-4,4]],[[6233,7802],[-9,-11]],[[6224,7791],[-22,-22],[-22,36],[27,38],[13,-14],[13,-27]],[[6356,7601],[15,42],[17,-10],[-15,-43],[-17,11]],[[6325,7750],[16,22],[59,-37],[-17,-21],[-58,36]],[[6416,7755],[-14,-18],[-34,21],[16,22]],[[6380,7778],[-14,-19],[-24,15],[64,81],[17,-22],[-43,-55]],[[6338,7938],[14,-17],[-75,-99],[-16,15],[77,101]],[[6279,7908],[17,-20],[-54,-71],[-27,36],[64,55]],[[6221,7883],[-2,6],[16,65],[11,-7],[25,-29],[-27,-24],[-23,-11]],[[6181,8023],[39,4],[-14,-60],[-15,0],[-10,56]],[[6049,8076],[-8,18],[16,10]],[[6047,8134],[-18,-15],[-9,23],[19,13]],[[6018,8141],[23,-54],[-19,-16],[-14,24],[-17,20],[27,26]],[[5953,8137],[27,42],[27,25],[10,-25],[-32,-29],[-18,-26],[-14,13]],[[5951,8139],[-16,17],[25,40],[33,35],[13,-25],[-22,-19],[-33,-48]],[[5934,8157],[-17,17],[29,46],[34,36],[13,-24],[-34,-35],[-25,-40]],[[6043,8160],[-5,-2],[-7,-5],[-20,46],[-6,13],[-30,56],[-12,16],[16,-26],[-32,-36],[-10,10],[24,55],[8,11],[3,4]],[[6093,8294],[3,-37],[12,-21],[-13,-28],[-22,42],[0,16],[14,30],[6,-2]],[[6147,8308],[-29,-6],[-3,27],[29,4],[3,-25]],[[6156,8211],[-28,-9],[-10,98],[29,5],[9,-94]],[[6090,8123],[23,14],[18,-59],[-16,-12],[-25,57]],[[6115,8138],[22,8],[10,-56],[-14,-10],[-18,58]],[[6148,8096],[-9,50],[23,6],[4,-33]],[[6166,8119],[-18,-23]],[[6162,8155],[-24,-6],[-10,50],[29,9],[5,-53]],[[6181,8113],[30,50],[9,33]],[[6288,8137],[-38,-117],[-24,9],[9,34],[21,25],[2,15]],[[6232,7958],[-23,9],[16,59],[24,-9],[-17,-59]],[[6295,7990],[-38,-51],[-21,17],[6,23],[15,-7],[18,33],[20,-15]],[[6277,7916],[-18,21],[37,52],[20,-23],[-39,-50]],[[6337,7941],[-39,-51],[-17,20],[39,51],[17,-20]],[[6366,8146],[11,-14],[-55,-75],[-11,14],[55,75]],[[6332,8041],[-36,-49],[-11,10],[37,51],[10,-12]],[[6523,7758],[-7,6],[18,42],[8,-4]],[[6499,8212],[23,30],[16,-14],[-8,-12]],[[6334,8349],[-2,-10],[-31,14],[1,15],[32,-19]],[[6286,8309],[12,44],[16,-8],[-9,-43],[-19,7]],[[6293,8229],[-4,1],[10,34],[16,81],[4,-2]],[[6292,8242],[-4,-11],[-22,6],[19,71],[20,-8],[-13,-58]],[[6264,8220],[2,15],[27,-8],[13,-12]],[[6289,8376],[12,-8],[-37,-131],[-2,-18],[-16,3]],[[6454,8150],[23,-26],[-16,-20],[-22,25],[15,21]],[[6474,8176],[22,-27],[-17,-20],[-21,26],[16,21]],[[6109,7857],[0,-34],[-21,-7]],[[6506,7623],[7,30]],[[6513,7653],[1,5]],[[6516,7611],[-10,12]],[[6085,8224],[13,-35],[-34,-18],[-12,25],[33,28]],[[6439,8070],[40,52],[14,-17],[-39,-52]],[[6459,8038],[-8,7],[53,71],[8,-9]],[[6494,8111],[-12,15],[55,72],[-1,-32],[-42,-55]],[[6515,8111],[-10,10],[33,44],[5,16],[-10,34],[7,12],[7,-7]],[[6202,7621],[-12,-34],[-28,-28],[-26,-1],[7,33],[19,-2],[28,31],[12,1]],[[6257,7692],[-18,-21],[11,-15]],[[6250,7656],[-1,-32]],[[6223,7625],[-8,59],[-21,31],[27,24]],[[6221,7739],[4,-6],[32,-41]],[[6101,8016],[3,-7],[-19,-10]],[[6087,8063],[6,14],[20,-50],[-9,-16],[-17,52]],[[6100,8096],[18,-47],[-10,-6],[-15,37]],[[6093,8080],[7,16]],[[5774,7219],[-6,15],[20,13],[9,-22]],[[6515,7821],[-18,-43],[-15,10],[19,42],[14,-9]],[[6532,7809],[-18,-43],[-15,11],[18,41],[15,-9]],[[6055,8323],[8,-10],[-27,-60],[-3,-24],[-24,29],[13,35]],[[6022,8293],[2,10],[16,-12],[15,32]],[[6056,8325],[17,37],[48,7]],[[6121,8369],[3,-10],[-37,-9],[-23,-34],[-8,9]],[[6103,8392],[24,53]],[[6134,8445],[6,-59],[0,-25],[-14,-1],[-3,10],[-20,22]],[[6041,8214],[-4,31],[38,85],[15,17],[20,5],[2,-18],[-17,-13],[-27,-60]],[[6068,8261],[-10,7],[-12,-26],[-5,-28]],[[6113,8327],[3,-25],[-27,-1],[8,19],[16,7]],[[6144,8335],[-29,-3],[-2,21],[28,4],[3,-22]],[[6149,7824],[43,33],[13,-9],[-23,-31],[-18,-19],[-15,26]],[[6111,7825],[-1,45],[-5,32]],[[6434,7939],[17,-22],[-21,-27],[-20,18]],[[6385,8123],[-30,-42],[-19,-26],[14,-16],[19,26],[30,41]],[[6399,8106],[6,-9],[-52,-75],[-29,33],[55,75],[6,-7]],[[6097,7412],[-7,16],[18,31],[27,16],[10,6],[13,-19],[48,35],[10,-19]],[[6302,7646],[14,36],[15,-14]],[[6331,7668],[24,-15]],[[6355,7653],[12,-9],[-14,-40],[-51,42]],[[5767,7862],[9,23],[7,-2],[-3,-25],[-13,4]],[[5818,7854],[-37,3],[3,26],[36,-9],[-2,-20]],[[6548,7911],[13,-19],[-51,-64],[-19,14],[57,69]],[[6544,7804],[-25,18],[-7,5],[52,64],[5,-7],[7,-6],[3,-38],[5,-14],[-9,-3],[33,7]],[[6432,7675],[6,10],[10,-11],[8,11]],[[6456,7685],[15,-19],[-16,-19],[-23,28]],[[6306,8197],[8,6],[-9,-43],[-7,2],[8,35]],[[6317,8204],[12,-14],[-22,-27],[10,41]],[[6218,8192],[-14,-41],[-18,-31]],[[6198,8427],[44,-28]],[[6160,8222],[-10,101]],[[6150,8323],[16,35]],[[5857,8066],[41,88],[48,-50],[-16,-35],[-15,8],[6,19],[-27,27],[-19,-57],[20,-37],[11,-10],[-16,-28],[-9,-7],[-24,82]],[[5922,7719],[-7,-42]],[[5915,7677],[-21,8]],[[5894,7685],[5,30],[9,8]],[[5908,7723],[14,-4]],[[6292,8095],[55,73]],[[6347,8168],[12,-15],[5,-6],[-55,-74],[-5,7],[-12,15]],[[6595,7830],[-10,-2],[-5,13],[-3,39],[14,2],[4,-52]],[[6613,7936],[-5,-21],[4,-24]],[[6613,7833],[-17,-4],[-4,56],[-21,0]],[[6571,7885],[42,51]],[[5803,7851],[39,-5],[-1,-22]],[[5271,5868],[-5,-3],[16,-33]],[[5282,5832],[-47,-46],[-29,66],[55,39]],[[5260,5728],[38,26],[1,-44],[-23,-20],[-16,38]],[[5572,6115],[10,10]],[[5582,6125],[27,-41]],[[5729,6035],[21,44],[-12,18]],[[5738,6097],[13,13],[25,-35]],[[5776,6075],[-37,-57]],[[5739,6018],[-10,17]],[[5691,6236],[65,64],[16,15],[28,-17],[-27,-23],[31,22],[14,-10],[33,24]],[[5782,6405],[25,19]],[[5807,6424],[9,-22]],[[5816,6402],[-23,-19]],[[5793,6383],[-11,22]],[[5859,6509],[-16,22],[-12,-2],[-11,18],[15,5]],[[5864,6514],[-5,-5]],[[5873,6471],[-28,-28],[-10,-5],[-15,36],[38,27],[15,-30]],[[5577,5750],[-9,-8],[-42,-14]],[[6058,6483],[16,-30],[-129,-125]],[[6254,6488],[-13,51],[64,29],[18,-16],[6,-17]],[[6550,6675],[47,-30],[-4,-14]],[[6545,6664],[5,11]],[[6560,6745],[19,-1],[24,-11],[-10,-32],[-16,-40],[-28,17],[13,54],[-2,13]],[[6605,6732],[19,-8],[-5,-19],[-22,-58],[-18,13],[19,47],[7,25]],[[6695,6675],[-20,-2],[9,40],[23,-31],[-12,-7]],[[6722,6660],[-7,-1],[-15,41],[-15,16],[2,9]],[[6550,6596],[13,23],[10,5]],[[6573,6624],[9,-10],[43,-22],[16,-19]],[[6820,6539],[-29,-14],[-67,5],[-27,9],[3,18]],[[6683,6726],[-6,-23],[-95,43]],[[6582,6746],[3,15]],[[6894,6588],[2,16],[39,8],[12,80],[14,3]],[[6945,6692],[-14,-74],[-16,-7],[-10,73],[40,8]],[[6887,6681],[15,3],[8,-66],[-14,-10],[-9,73]],[[6955,6701],[-50,-9],[-5,37],[30,6],[27,-2],[-2,-32]],[[6967,6706],[-10,-5],[1,24],[23,119],[14,5]],[[6974,6830],[-17,-94],[-33,1],[2,20],[32,80],[16,-7]],[[6894,6782],[18,6],[13,33],[-7,15]],[[6918,6836],[23,18],[15,-14],[-34,-84],[0,-20],[-23,-4],[-5,50]],[[6883,6840],[61,35]],[[6944,6875],[-10,-24],[-44,-29],[-7,18]],[[6836,6984],[-48,-57],[-6,8],[57,70],[8,-8],[-11,-13]],[[6948,6867],[3,-8],[14,22],[23,-24],[-10,-25],[-20,9],[-16,16],[6,10]],[[6868,6832],[11,7]],[[6879,6839],[7,-24],[15,-124],[-16,-3]],[[6748,6878],[16,17]],[[6764,6895],[13,-20],[-8,-9],[8,-13],[-13,-14]],[[6763,6984],[23,-31],[14,7],[-20,-23],[-25,37],[8,10]],[[6815,6988],[22,24]],[[6837,7012],[1,-5],[-37,-45],[-6,8]],[[6901,7079],[-17,-18],[-8,10]],[[6948,6869],[-11,17],[10,15],[17,-19],[-12,-20],[-4,7]],[[5651,6724],[13,44],[31,-60]],[[5560,6880],[30,18],[15,-13]],[[5605,6885],[-11,-17],[-34,12]],[[5743,6926],[-20,33]],[[5723,6959],[54,28],[7,-25],[-41,-36]],[[5785,6883],[-8,-6],[-32,48],[27,26]],[[5776,6954],[9,5],[17,-64],[-10,-7]],[[5778,6874],[25,17],[13,-59],[-23,-9],[-15,51]],[[5901,6834],[9,-26],[-43,-8],[-44,6],[-4,23],[55,-1],[27,6]],[[5824,6905],[18,-74],[-24,1],[-13,61],[19,12]],[[5854,6831],[-9,0],[-19,76],[20,11],[26,-84],[-18,-3]],[[5900,6837],[-25,-6],[-27,88],[19,11],[33,-93]],[[5866,6933],[-19,-11],[-20,60],[18,11],[21,-60]],[[5825,6981],[20,-60],[-20,-11],[-18,61],[18,10]],[[5804,6969],[19,-61],[-19,-12],[-17,64],[17,9]],[[5806,6974],[-8,25],[18,10],[8,-25],[-18,-10]],[[5763,7050],[15,9],[17,-56],[-17,-9],[-15,56]],[[5780,7061],[15,10],[19,-57],[-17,-10],[-17,57]],[[5812,7084],[22,-59],[-18,-10],[-20,57],[16,12]],[[6001,7207],[95,64]],[[6096,7271],[-76,-97]],[[6054,7009],[8,5],[33,-80],[17,-23],[-6,-29]],[[6022,7089],[12,-6],[27,-67],[-8,-5]],[[6038,7078],[4,2],[43,-12],[14,-25],[-36,-25],[-25,60]],[[6127,7012],[-5,0],[-34,54],[28,0],[7,-20],[4,-34]],[[6119,7012],[-36,5],[-3,8],[20,16],[19,-29]],[[6101,6967],[-15,-7],[-22,55],[14,9],[23,-57]],[[6095,6989],[-9,22],[42,-5],[8,-26],[-8,-2]],[[6138,6981],[-9,26],[21,3],[7,-17],[-19,-12]],[[6145,6930],[-21,3],[16,37],[13,-35],[-8,-5]],[[6104,6965],[29,12],[-13,-41],[-16,29]],[[6087,6958],[15,7],[17,-31],[-6,-20],[-9,8],[-17,36]],[[5632,6850],[9,-6],[22,-72],[-13,-28]],[[5462,6729],[28,51]],[[6167,6854],[12,1],[1,-46],[-12,-2]],[[6181,6833],[11,0],[0,-66]],[[6192,6767],[-10,0],[-1,66]],[[6128,6816],[14,-42],[-11,-3]],[[6132,6769],[21,4],[-6,-42],[-14,7]],[[6150,6731],[5,42],[25,1],[0,-25],[-11,-28],[-19,10]],[[6237,6860],[30,22],[3,12]],[[6270,6894],[8,1],[-35,-109],[4,-3],[9,31],[14,-11],[-30,-45],[-16,8]],[[6211,7154],[11,-12],[-12,-40],[-27,19],[8,14],[-5,19]],[[6186,7154],[11,16],[14,24],[10,-11],[-12,-27],[2,-2]],[[6028,7179],[24,31],[21,27],[20,-31],[-34,-11],[-22,-13],[17,-81],[-5,-19],[-29,12]],[[6179,7328],[65,47],[9,-17],[-63,-49],[-11,19]],[[6263,7339],[-61,-53],[-11,21],[63,49],[9,-17]],[[6116,7214],[-22,-8],[-20,33],[14,17],[28,-42]],[[6143,6713],[5,13],[19,-17]],[[6167,6709],[-2,-6],[-22,10]],[[6192,6764],[1,-37],[-10,-13]],[[6183,6714],[-13,7],[11,23],[2,22],[9,-2]],[[5768,6865],[8,6],[15,-50],[-6,-6]],[[5785,6815],[-17,50]],[[5786,6812],[30,16],[4,-22],[-12,-5],[-20,-20],[-6,13],[-5,13],[9,5]],[[6274,7347],[-10,-8],[-20,38],[10,7]],[[6656,7230],[13,-23],[-16,-15],[-13,24],[16,14]],[[6556,7134],[25,23],[11,-20],[-24,-23],[-12,20]],[[6596,7215],[14,-25],[-27,-25],[-15,25],[28,25]],[[6624,7166],[-27,-26],[-12,21],[28,25],[11,-20]],[[6298,7187],[12,-2],[-6,-54],[-8,2]],[[6297,7246],[11,17],[9,-9],[-7,-68],[-11,2]],[[6366,7250],[-19,1],[33,37],[4,-6],[-14,-15],[-4,-17]],[[6386,7283],[-4,7],[30,29],[7,-4],[-33,-32]],[[6383,7377],[3,11],[28,3],[4,-51]],[[6418,7340],[-35,37]],[[6547,7470],[47,-6],[-1,-15]],[[6579,7490],[-1,-21],[-22,3],[1,14],[22,4]],[[6594,7467],[-14,2],[2,21],[12,-2],[0,-21]],[[6586,7626],[8,-47],[0,-37],[-55,-3],[10,55]],[[6605,7772],[90,9],[6,-33],[-42,-44],[-41,-45],[-12,38]],[[6599,7641],[-11,51],[17,3],[12,-37],[-18,-17]],[[6616,7543],[-16,2],[-2,38],[-7,36],[8,12],[16,-75],[1,-13]],[[6601,7635],[12,13],[5,-7],[12,-62],[-15,-5],[-14,61]],[[6640,7582],[-9,-3],[-12,66],[-5,4],[21,21],[10,-31]],[[6658,7564],[3,-18],[-42,-4],[-4,30],[25,9]],[[6596,7448],[5,36],[17,4],[3,-27],[58,-7],[14,-17]],[[6803,7429],[-23,0]],[[6780,7429],[-2,33],[-20,0],[1,-30]],[[6759,7432],[-28,3],[-6,1]],[[6725,7436],[-3,18],[-30,-4],[-3,-2]],[[6689,7448],[-15,48],[5,6],[40,13]],[[6719,7515],[6,-23]],[[6725,7492],[8,-45],[16,11],[-4,13],[52,1],[16,4],[-12,-11],[2,-36]],[[6856,7556],[11,5],[15,-28],[11,-74],[-16,-21],[-18,-7],[-34,59],[-17,18],[-2,26],[50,22]],[[6953,7585],[7,-21],[40,-54],[-9,-18],[-24,-30],[-45,30],[-4,0],[91,-60],[7,-9],[-11,-21],[-69,35],[-41,15],[0,13],[-11,68],[-11,27],[-7,4],[-4,26],[51,4],[39,-3],[1,-6]],[[7027,7435],[-9,-9],[-19,16],[13,20]],[[7011,7465],[-14,-21],[-28,17],[24,30]],[[7004,7510],[-34,46],[34,21],[16,-55]],[[7016,7546],[-12,54],[37,7]],[[6959,7571],[-5,20],[46,9],[1,-6]],[[6854,7592],[8,-28],[-35,-18],[-23,-7],[-3,32],[40,21],[13,0]],[[6831,7612],[-10,-11],[-25,-3]],[[6796,7598],[-3,37],[53,9],[-6,-22],[-9,-10]],[[7057,7621],[-17,-8],[-30,-5],[7,19],[31,35]],[[7046,7671],[-6,-7],[-16,33],[12,14]],[[7040,7663],[-21,-12],[-6,38],[10,7],[17,-33]],[[7010,7687],[5,-38],[-23,-5],[-4,30],[22,13]],[[6891,7652],[-37,-8],[6,23],[48,11],[3,-22],[-20,-4]],[[6854,7661],[-4,-13],[-50,-9],[-1,10],[29,29],[26,-10],[0,-7]],[[6855,7672],[-21,11],[21,17],[0,-28]],[[6906,7692],[1,-10],[-45,-10],[-4,34],[7,7]],[[6865,7713],[10,-28],[22,5],[9,2]],[[6940,7658],[-26,-1],[-3,21],[25,6],[4,-26]],[[6936,7688],[-26,-5],[-2,20],[26,5],[2,-20]],[[6896,7743],[12,13],[12,-46],[-13,-3],[-11,36]],[[6916,7742],[15,3],[3,-32],[-10,-2],[-8,31]],[[6940,7751],[-25,-5],[-5,16],[23,25],[7,-36]],[[6939,7689],[-4,55],[18,2],[7,-52],[-21,-5]],[[6980,7698],[-17,-4],[-4,35],[17,4],[4,-35]],[[6958,7733],[-2,17],[15,5],[4,-18],[-17,-4]],[[7009,7692],[-22,-11],[-10,72],[19,14],[13,-75]],[[7022,7701],[-10,-5],[-9,65],[6,12],[13,-72]],[[7034,7719],[-11,-17],[-14,75],[8,5]],[[6970,7759],[-26,-7],[-6,41],[12,14],[20,-48]],[[6995,7770],[-21,-12],[-21,53],[17,19],[25,-60]],[[7008,7782],[-10,-10],[-26,61],[9,12]],[[6981,7845],[27,-63]],[[6762,7661],[-7,11],[57,2],[-6,-11]],[[6741,7695],[2,4],[36,1],[2,-21],[-29,-2],[-11,18]],[[6785,7678],[-3,22],[34,2],[3,-23],[-34,-1]],[[6849,7705],[-27,-25],[-13,92],[14,5],[9,-37],[17,-35]],[[6868,7722],[-17,-16],[-14,27],[-12,45],[26,10],[17,-66]],[[6886,7763],[-27,0]],[[6859,7763],[-6,25],[24,10],[9,-35]],[[6805,7804],[64,25],[7,-29],[-67,-25],[-4,29]],[[6911,7780],[4,-7]],[[6915,7773],[-23,-24],[-10,40]],[[6949,7858],[16,6],[5,-27],[-14,-17]],[[6985,7880],[-57,-22],[-4,23],[54,19]],[[6977,7903],[-27,-10],[-5,19],[4,29],[13,-4]],[[6924,7884],[-5,49],[4,17],[24,-8],[-4,-28],[4,-22],[-23,-8]],[[6865,7861],[56,19],[4,-24],[-54,-20],[-6,25]],[[6903,7877],[-15,81],[21,-3],[11,-72],[-17,-6]],[[6901,7877],[-18,-6],[-7,46],[-11,44],[20,-2],[6,-25],[10,-57]],[[6868,7835],[-63,-24],[-5,27],[62,23],[6,-26]],[[6732,7812],[9,-31],[-22,-16],[-16,-2],[-7,49]],[[6801,7815],[-1,-7],[-57,-25],[-9,29]],[[6692,7837],[-2,14],[35,7],[2,-20]],[[6729,7839],[0,20],[65,5],[4,-23]],[[6688,7823],[-26,-7]],[[6662,7816],[-4,27],[27,7],[3,-27]],[[6660,7816],[5,-35],[-24,-2],[-6,31],[-4,26],[25,7],[4,-27]],[[6676,7939],[20,0],[12,-79],[-18,-6],[-14,85]],[[6729,7862],[-19,-2],[-12,80],[19,1],[12,-79]],[[6740,7934],[11,-70],[-19,-1],[-13,79],[19,2],[2,-10]],[[6741,7940],[19,5],[13,-79],[-20,-1],[-12,75]],[[6783,7947],[11,-78],[-19,-3],[-12,80],[20,1]],[[6742,7948],[-6,-1],[-3,37],[44,4],[5,-37],[-40,-3]],[[6734,7947],[-31,-3],[-3,38],[31,2],[3,-37]],[[6701,7944],[-26,-2],[-6,37],[29,2],[3,-37]],[[6646,7957],[-8,51],[21,5],[8,-53]],[[6631,8051],[21,9]],[[6652,8060],[6,-44],[-21,-5],[-6,40]],[[6668,7982],[-3,24],[31,-2],[2,-20],[-30,-2]],[[6730,8006],[1,-19],[-31,-3],[-2,21],[32,1]],[[6731,8007],[43,3],[3,-19],[-44,-4],[-2,20]],[[6748,8122],[3,30],[22,1],[2,-33],[-8,-50],[-6,0],[-13,52]],[[6715,8245],[7,5],[11,-44],[-18,-2]],[[6769,8229],[1,-19],[-35,-3],[-4,21],[31,12]],[[6760,8243],[-30,-13],[-6,21],[22,13]],[[6744,8267],[-29,-18]],[[6715,8272],[17,11]],[[6737,8287],[28,20]],[[6781,8292],[-33,-23]],[[6796,8279],[16,-18],[-6,-24],[-35,9],[-6,30],[17,13],[14,-10]],[[6750,8267],[12,7],[4,-29]],[[6833,8157],[11,-1],[1,-16]],[[6848,8136],[0,67],[22,-5],[11,-15],[-1,-27],[-14,-46]],[[6862,8099],[-10,-15],[-3,34]],[[6819,8159],[27,-41],[3,-35],[-32,-8],[-5,60]],[[6822,8037],[-5,33],[38,10],[-13,-39],[-20,-4]],[[6777,8013],[15,52],[23,5],[5,-33],[-18,-6],[9,-63],[-27,-11],[-7,56]],[[6842,8039],[-10,-28],[-25,-5],[-2,24],[37,9]],[[6831,8009],[-13,-39],[-5,-2],[-5,35],[23,6]],[[6992,8099],[7,23],[27,-12],[4,-12],[-21,-57],[-6,4]],[[6972,7933],[25,-8],[-12,-19]],[[7001,7924],[23,-8],[-26,-30],[-3,13],[6,25]],[[7090,8081],[16,-7]],[[7106,8074],[-19,0],[3,7]],[[7156,7888],[-4,-13],[-36,64]],[[7135,7898],[-19,-50],[-18,14],[24,62],[13,-26]],[[7150,7870],[-9,-24],[-12,-16],[-10,15],[18,48],[13,-23]],[[7075,7832],[-13,28],[20,4],[20,-12],[-27,-20]],[[7072,7828],[-15,-11],[-17,41],[17,3],[15,-33]],[[7126,7827],[-30,-37],[-19,38],[32,23],[17,-24]],[[7080,7773],[-18,-19],[-13,52],[11,8],[14,10],[17,-38],[-11,-13]],[[7060,7748],[-13,2],[-11,46],[10,6],[14,-54]],[[7026,7790],[8,5],[12,-46],[7,-9],[-10,-11]],[[7044,7720],[18,17],[9,-34],[-18,-22]],[[7129,7823],[18,-24],[-35,-44],[-15,29],[32,39]],[[7174,7816],[-23,-16],[0,16],[-13,18],[15,28],[21,-46]],[[7189,7817],[-12,-3],[-24,55],[6,15]],[[7218,7709],[-15,-6],[-29,65],[-22,31],[16,11]],[[7174,7682],[-24,-14],[-36,79],[19,24],[41,-89]],[[7124,7652],[-33,70],[20,21],[36,-78],[-23,-13]],[[7054,7675],[34,42],[17,-34],[-35,-16],[-14,-1]],[[7056,7661],[13,1],[38,17],[13,-29],[-55,-25]],[[7113,7641],[21,9],[42,27],[17,-29]],[[7228,7622],[-16,2],[-32,55],[48,31]],[[6965,7634],[51,11],[1,-11],[-13,-27],[-51,-10],[-30,1],[17,30],[25,6]],[[6810,8126],[5,-51],[-22,-5]],[[6777,8125],[-2,28],[10,1]],[[6785,8157],[-10,0],[-2,47],[14,-1]],[[6799,8207],[-27,37],[34,-9]],[[6841,8231],[19,-20],[-26,-3]],[[6833,8203],[13,0],[-1,-43],[-15,0]],[[6622,7955],[-3,48],[-5,57],[-10,-2],[3,-24]],[[6597,8069],[28,5],[10,-64],[-15,-6],[15,3],[8,-50]],[[6745,7702],[0,15],[32,1]],[[6777,7718],[2,-15],[-34,-1]],[[6780,7718],[34,2]],[[6814,7720],[2,-16],[-34,-1],[-2,15]],[[6733,7762],[-4,7],[37,23],[7,-29]],[[6784,7736],[0,27],[-10,0]],[[6774,7763],[-6,29],[35,12],[9,-67],[-28,-1]],[[6880,7886],[2,-15],[-43,-15],[-4,28]],[[6902,8142],[-14,-8]],[[6876,8140],[10,36],[19,-14],[-3,-20]],[[6905,8142],[3,17],[13,-7],[-3,-14]],[[6918,8138],[-13,4]],[[6796,7868],[18,4]],[[6814,7872],[3,-24],[-17,-5],[-4,25]],[[6673,7595],[-17,-4],[-10,59],[-9,22],[19,21],[17,-98]],[[6681,7550],[-18,-4],[-7,41],[18,5],[7,-42]],[[6699,7598],[77,13],[2,-19],[11,-22],[-71,-11],[-33,-9],[-7,43],[5,1]],[[6686,7679],[-5,26]],[[6726,7710],[-23,-21],[-17,-10]],[[6689,7655],[-3,21]],[[6686,7676],[42,31],[14,-23],[-21,-16],[-32,-13]],[[6693,7632],[-3,20]],[[6690,7652],[26,10],[27,20],[20,-34],[-23,-10],[-47,-6]],[[6735,7608],[-37,-6]],[[6698,7602],[-5,28]],[[6693,7630],[39,4]],[[7006,7942],[25,-15],[-4,-10],[-27,10],[6,15]],[[7007,7947],[41,110],[14,-24],[-2,-26],[-27,-75],[-26,15]],[[7288,7768],[9,-2],[20,15]],[[7317,7781],[7,-17],[-30,-16],[-6,20]],[[7056,7865],[-23,-4],[-25,14],[7,11]],[[7227,7830],[0,-41],[20,-65],[-12,0],[-27,76]],[[7260,7813],[6,-4]],[[7234,7778],[-5,16],[1,40],[30,-21]],[[6988,7979],[8,21]],[[7018,7977],[-5,-12]],[[7013,7965],[-25,14]],[[6878,7645],[33,7],[3,-22],[-16,-5],[36,3],[-13,-30],[-89,-5],[7,24],[12,2]],[[7312,7997],[31,-32],[-13,-41],[-38,20],[20,53]],[[7344,7963],[14,-17],[14,-44],[-40,21],[12,40]],[[7359,8001],[-13,-33],[-31,34],[7,27]],[[7377,7901],[-12,42],[-17,22],[16,43],[28,-17],[-6,-27],[-9,-63]],[[7450,7868],[-49,-52],[-3,17],[12,28],[15,16],[26,-2],[-1,-7]],[[7442,7820],[-39,-6],[53,56],[31,-4],[-45,-46]],[[7482,8025],[46,-50],[-8,-12],[-46,51],[8,11]],[[7467,7980],[-10,10],[15,21],[48,-51],[-16,-22],[-37,42]],[[7462,7947],[-21,20],[14,20],[27,-30],[-13,-19],[-7,9]],[[7456,7910],[-36,23],[19,31],[45,-45],[-10,-14],[-18,5]],[[7388,7947],[24,-18],[-18,-25],[-11,2],[5,41]],[[7391,7971],[33,-22],[-11,-18],[-25,20],[3,20]],[[7392,7974],[4,15],[39,-22],[-10,-16],[-33,23]],[[7393,7995],[-27,16],[6,17],[27,-13],[-6,-20]],[[7401,8008],[3,4],[46,-23],[-13,-20],[-40,24],[4,15]],[[7404,8018],[5,19],[57,-25],[-14,-19],[-48,25]],[[7480,8031],[-12,-16],[-58,26],[17,34],[73,-7],[4,-4],[-24,-33]],[[7435,8103],[67,-5],[-9,-26],[-64,6],[6,25]],[[7435,8106],[3,39],[39,-2],[-3,-40],[-39,3]],[[7485,8102],[-9,2],[3,38],[42,-2],[-17,-39],[-19,1]],[[7517,8124],[19,-18],[-30,-39],[-8,9],[19,48]],[[7514,8068],[12,17],[55,-58],[-15,-15],[-52,56]],[[7540,8102],[57,-54],[-15,-18],[-54,57],[12,15]],[[7630,8032],[-10,8],[26,48],[11,-8]],[[7626,8104],[18,-14],[-26,-48],[-21,10],[29,52]],[[7577,8071],[28,50],[19,-15],[-29,-52],[-18,17]],[[7555,8121],[34,-26],[-13,-23],[-34,32],[13,17]],[[7518,8126],[8,18],[25,-19],[-13,-17],[-20,18]],[[7573,8145],[30,-23],[-12,-25],[-34,26],[16,22]],[[7539,8172],[30,-23],[-17,-22],[-25,19],[12,26]],[[7659,8082],[-84,65],[12,15],[79,-64]],[[7542,8177],[8,13],[32,-24],[-11,-15],[-30,23],[1,3]],[[7552,8192],[12,19],[33,-25],[-13,-18],[-32,24]],[[7668,8101],[-80,64],[14,17],[105,-82]],[[7708,8103],[-29,22],[6,18],[25,-18]],[[7614,8198],[69,-55],[-7,-16],[-73,57],[11,14]],[[7574,8230],[36,-29],[-11,-13],[-34,26],[9,16]],[[7587,8247],[36,-29],[-11,-14],[-35,27],[3,21],[7,-5]],[[7616,8201],[11,14],[65,-50],[-7,-18],[-69,54]],[[7711,8127],[-24,18],[7,18],[22,-16]],[[7716,8149],[-21,15],[9,40],[14,-10]],[[7702,8203],[-7,-36],[-65,51],[23,29],[49,-44]],[[7626,8267],[23,-17],[-24,-28],[-42,33],[43,12]],[[7622,8270],[-40,-14],[-27,20],[0,41],[67,-47]],[[7487,8359],[62,-39],[1,-11],[-65,4],[2,46]],[[7517,8308],[33,-2],[2,-30],[-49,2],[2,30],[12,0]],[[7511,8274],[45,-3],[22,-16],[-9,-17],[-67,5],[1,32],[8,-1]],[[7572,8232],[-24,-39],[-37,2],[9,43],[48,-3],[4,-3]],[[7509,8185],[2,6],[34,-2],[-23,-47],[-21,1],[8,42]],[[7499,8192],[10,0],[-10,-48],[-19,1],[5,48],[14,-1]],[[7506,8239],[12,-1],[-9,-43],[-24,2],[4,43],[17,-1]],[[7460,8194],[22,-1],[-5,-48],[-19,1],[2,48]],[[7438,8148],[-2,48],[22,-1],[-2,-48],[-18,1]],[[7436,8199],[-4,44],[55,-3],[-4,-43],[-47,2]],[[7501,8275],[-1,-32],[-34,2],[1,32],[34,-2]],[[7502,8309],[-1,-31],[-34,2],[1,31],[34,-2]],[[7432,8247],[-2,32],[35,-2],[-2,-32],[-31,2]],[[7429,8283],[-4,30],[41,-2],[-1,-31],[-36,3]],[[7424,8317],[-2,31],[62,-5],[-1,-30],[-59,4]],[[7421,8401],[42,-30],[22,-11],[-1,-15],[-63,6],[-5,45],[5,5]],[[7386,8426],[25,-17],[2,-23],[-29,3],[2,37]],[[7413,8383],[4,-32],[-34,3],[2,32],[28,-3]],[[7417,8349],[3,-32],[-39,2],[1,33],[35,-3]],[[7424,8283],[-43,2],[0,31],[40,-3],[3,-30]],[[7424,8279],[3,-32],[-48,4],[2,31],[43,-3]],[[7433,8134],[-25,0],[1,59],[-8,52],[26,-2],[5,-42],[1,-67]],[[7403,8211],[3,-76],[-33,2],[6,109],[19,-1],[5,-34]],[[7433,8130],[-9,-49],[-22,9],[9,41],[22,-1]],[[7410,8131],[-9,-42],[-18,2],[0,42],[27,-2]],[[7382,8133],[0,-42],[-15,1],[-14,-11],[-9,19],[13,11],[3,23],[22,-1]],[[7359,8134],[-5,-25],[-11,-8],[-12,35],[28,-2]],[[7340,8052],[-33,70],[-2,15],[22,-1],[3,-13],[22,-42],[-2,-32],[-10,3]],[[7270,8052],[55,-3],[-13,-44],[-44,45],[2,2]],[[7226,8021],[19,41],[13,-9],[52,-53],[-10,-18],[-74,39]],[[7246,7967],[-16,49],[71,-36],[-11,-35],[-44,22]],[[7225,8024],[-13,19],[11,32],[21,-12],[-19,-39]],[[7171,8075],[13,-15],[-10,-16]],[[7163,8119],[8,11],[27,-37],[21,-18],[-9,-31],[-38,34]],[[7155,8119],[-27,15],[-4,-15],[-21,12]],[[7103,8131],[3,29],[6,1],[34,-20],[20,-7],[-11,-15]],[[7179,8154],[-11,-16],[-21,22],[-21,8],[-20,-2],[18,60],[12,-7]],[[7193,8161],[25,37],[7,2],[2,-55],[-39,2],[5,14]],[[7251,8143],[-20,2],[-4,60],[15,11],[10,-43],[-1,-30]],[[7253,8143],[-3,56],[-6,18],[9,8],[41,-84],[-41,2]],[[7290,8192],[-15,-9]],[[7275,8183],[-20,42],[17,10],[18,-43]],[[7351,8224],[1,24],[24,-3],[-5,-108],[-24,1],[4,86]],[[7354,8317],[25,-1],[-3,-65],[-24,1],[2,65]],[[7296,8281],[5,18],[21,11],[30,6],[-2,-63],[-14,0]],[[7336,8253],[1,47],[-41,-19]],[[7292,8287],[8,-36],[-28,-10],[-8,16],[28,30]],[[7248,8240],[14,15],[7,-17],[-16,-9],[-5,11]],[[7317,8336],[4,-23],[-15,-5],[11,28]],[[7355,8320],[1,68],[26,-2],[-3,-67],[-24,1]],[[7384,8428],[-2,-38],[-26,1],[6,51],[22,-14]],[[7339,8452],[20,-9],[-6,-51],[-15,-1],[1,61]],[[7325,8389],[1,66],[10,-3],[-1,-61],[-10,-2]],[[7244,8471],[1,13],[75,-15],[-1,-9],[-75,11]],[[7312,8387],[-3,70],[10,0],[0,-69],[-7,-1]],[[7306,8459],[4,-73],[-18,3],[-5,71],[19,-1]],[[7302,8314],[-10,-18],[-12,35],[-8,41],[19,5],[11,-63]],[[7289,8296],[-15,-8],[-24,75],[19,8],[20,-75]],[[7242,8409],[6,-46],[7,-28],[-18,-15]],[[7236,8316],[21,15],[15,-44],[-18,-11],[-18,27]],[[7261,8263],[-5,11],[32,17],[-27,-28]],[[7246,8246],[-8,17],[16,9],[5,-11],[-13,-15]],[[7236,8299],[15,-25],[-15,-8]],[[7015,8177],[47,-8],[20,-3],[22,-4],[-2,-23],[-13,-54],[-19,8],[-18,15],[-4,6],[-52,66],[19,-3]],[[6913,8198],[-29,5],[-6,35]],[[7243,8436],[1,30],[19,-2],[6,-90],[-19,-7],[-6,45]],[[7491,8038],[57,-61]],[[7528,7914],[-21,22],[24,40],[-47,52],[7,10]],[[7390,7797],[9,13],[43,8],[51,51],[34,38]],[[7527,7907],[6,-7],[-28,-36],[6,-7]],[[7475,7829],[-26,-22]],[[7026,8114],[-26,10],[6,16],[20,-26]],[[7346,7718],[-6,29],[13,20],[19,60],[9,-6],[2,-31],[-37,-72]],[[7399,7901],[20,29],[28,-19],[29,-9],[9,16],[-13,17],[13,19],[40,-44],[-30,-37],[-21,-3],[-46,11],[-20,-20],[-12,-29],[1,-20],[-12,-19],[-1,29]],[[7308,7905],[-24,12],[7,24],[24,-12]],[[7222,8209],[23,29],[7,-10],[-30,-19]],[[6993,8156],[10,-12],[-7,-18],[-78,29],[-31,22],[-2,22],[75,-13],[33,-30]],[[7310,8140],[1,11],[21,4],[2,50],[-35,-5],[-8,-7]],[[7291,8193],[-17,43],[31,11],[7,1],[-1,-35],[24,0],[-6,2],[2,33],[18,-1],[-4,-108],[-35,1]],[[7313,8249],[17,-1],[-3,-32],[-14,-3],[0,36]],[[7268,8408],[-3,55],[19,-2],[7,-80],[-19,-7],[-4,34]],[[7317,8360],[-13,-44],[-12,71],[8,-6],[19,4],[-2,-25]],[[7319,8342],[6,45],[28,1],[-1,-68],[-29,-6],[-4,28]],[[7110,8192],[-6,-26],[-89,15],[2,17]],[[5979,5963],[12,107],[3,3],[47,-28],[-11,-87],[-5,-15]],[[6229,6146],[28,-88]],[[6545,6407],[20,52],[15,-38],[-35,-14]],[[6780,6456],[10,-23],[-22,-7],[-23,5],[-14,3],[-36,-5]],[[6695,6429],[0,14],[-38,8],[-23,8]],[[6634,6459],[1,5]],[[6515,6386],[-13,13],[-4,1],[-40,66]],[[6458,6466],[23,24],[10,2],[71,-29],[-20,-55],[-19,12],[7,-11],[-15,-23]],[[6332,6463],[6,-60],[-94,-20],[-3,54]],[[6541,6249],[39,12]],[[7304,6541],[3,-4],[3,-72]],[[7310,6465],[-12,4],[-81,-14]],[[7217,6455],[0,23]],[[7282,6356],[0,6],[-24,21],[-1,17]],[[7300,6378],[-15,-22]],[[7285,6356],[-3,0]],[[7426,6292],[6,28],[56,-51],[-8,-13]],[[7504,6307],[-25,9],[-21,14],[-2,29]],[[7472,6375],[19,-1]],[[7491,6374],[-1,-14],[20,-11]],[[7510,6349],[-6,-42]],[[7474,6423],[-9,1],[8,52]],[[7020,6650],[-2,-28],[-13,1],[-1,-29],[-23,11],[26,39],[13,6]],[[7014,6669],[6,-17],[-13,-6],[-30,-41],[-14,-2]],[[7017,6673],[15,24],[17,-66],[-28,-9],[3,44],[-7,7]],[[7012,6788],[16,-72],[-31,-9],[-2,18],[5,57],[12,6]],[[7244,6971],[-32,9]],[[7212,6980],[13,101],[5,27],[22,75],[12,30]],[[7209,6979],[-3,-29]],[[7206,6950],[-16,2],[-26,-8]],[[6983,6542],[31,-7],[-1,-12],[-32,7],[2,12]],[[6985,6601],[29,-25]],[[6965,6515],[8,27],[9,0],[-6,-33],[-11,6]],[[6941,6502],[12,10],[56,-16],[21,1]],[[7030,6497],[5,-13]],[[7239,6613],[22,-3],[5,-16]],[[7215,6629],[-16,-32]],[[7183,6720],[14,-3]],[[7197,6717],[10,-90],[8,2]],[[7314,6996],[-5,21]],[[7309,7017],[75,-20],[-3,-12],[-31,-123],[-44,11],[-37,-26],[-15,-36],[1,-23],[-12,0]],[[7294,6994],[19,-6]],[[7343,6833],[-8,-27],[-25,-3]],[[7310,6803],[4,41]],[[7389,6654],[2,-10],[-27,-29]],[[7361,6672],[11,-18],[-18,-19],[19,19],[-11,19]],[[7367,6678],[22,-24]],[[7392,6542],[31,25]],[[7423,6567],[-2,20],[13,14],[39,-47]],[[7550,6489],[1,18]],[[7546,6604],[-19,10],[-32,5]],[[7495,6619],[4,25],[47,-24],[22,-21],[12,-23],[1,-21],[-4,-36],[4,-21],[17,-17]],[[7625,6593],[29,7]],[[7580,6579],[-11,21],[-30,29],[7,22],[20,-12],[24,-32],[8,-18],[-18,-10]],[[7583,6626],[4,9],[23,-42],[-10,-1],[-17,34]],[[7596,6657],[19,-22],[15,-37],[-19,-5],[-23,43],[8,21]],[[7632,6603],[-12,32],[29,13],[4,-45],[-21,0]],[[7601,6679],[35,-13],[1,-18],[-19,-12],[-21,24],[4,19]],[[7638,6667],[-35,13],[0,13],[44,-17],[2,-27],[-10,-2],[-1,20]],[[7551,6682],[9,-10],[33,-12],[-13,-31],[-32,26],[3,27]],[[7551,6683],[4,28],[45,-18],[-6,-32],[-8,11],[-35,11]],[[7544,6654],[-8,-24],[-17,9],[5,25],[20,-10]],[[7552,6712],[-8,-55],[-20,12],[5,52],[23,-9]],[[7491,6942],[15,-14],[-29,-53],[-12,-12],[-9,9],[35,70]],[[7490,6872],[-8,7],[26,47],[11,-12],[12,-16],[-27,-32],[-14,6]],[[7506,6864],[79,98],[16,-24],[-85,-80]],[[7533,6900],[-11,14],[47,67],[14,-17],[-50,-64]],[[7509,6928],[36,77],[23,-22],[-48,-66],[-11,11]],[[7543,7008],[-36,-77],[-15,13],[33,77],[18,-13]],[[7434,6840],[-16,1],[19,81],[29,-21],[-32,-61]],[[7451,6918],[14,42],[23,-16],[-20,-40],[-17,14]],[[7466,6962],[16,48],[27,-18],[-20,-46],[-23,16]],[[7451,6925],[-13,-1],[30,95],[13,-8],[-30,-86]],[[7450,6967],[-13,-41],[-8,5],[11,41],[17,54],[10,-6],[-17,-53]],[[7467,7023],[-10,6],[12,29],[53,-34],[-11,-29],[-44,28]],[[7524,7028],[-53,34],[14,35],[51,-33],[-12,-36]],[[7544,7013],[-17,13],[14,39],[16,54],[22,-14],[-35,-92]],[[7570,6986],[-23,24],[8,24],[31,-26],[-16,-22]],[[7593,6958],[-21,27],[15,22],[23,-31],[-17,-18]],[[7715,7040],[-23,-19],[-88,-81],[-10,16],[80,79],[21,29]],[[7610,6983],[66,73],[7,-7],[-70,-70],[-3,4]],[[7604,6992],[56,76],[14,-11],[-65,-73],[-5,8]],[[7693,7065],[-8,-13],[-24,19],[7,11]],[[7627,7027],[-25,-33],[-12,16],[21,33],[21,38],[25,-12],[-30,-42]],[[7666,7083],[-7,-11],[-25,12],[3,11]],[[7609,7044],[-21,-33],[-14,14],[18,35],[12,35],[26,-13],[-21,-38]],[[7595,7074],[-23,-48],[-15,11],[18,48],[7,20],[20,-9],[-7,-22]],[[7635,7096],[-4,-11],[-26,13],[2,12]],[[7531,7134],[22,-13],[-16,-55],[-23,16],[17,52]],[[7486,7099],[21,50],[21,-13],[-16,-53],[-26,16]],[[7403,6939],[-1,3],[34,119],[5,13],[25,-14],[-23,-66],[-16,-60],[-24,5]],[[7427,6927],[-12,-53],[-13,-9],[-5,-17]],[[7397,6848],[-25,8]],[[7372,6856],[10,41],[-16,6]],[[7366,6903],[11,44],[50,-20]],[[7336,7062],[-2,-10],[-39,11],[37,-13],[17,-16],[-3,-22],[-42,12]],[[7304,7024],[5,24],[-26,9]],[[7375,7048],[-10,-41],[-17,4],[9,43]],[[7314,7163],[78,-21],[-1,-9]],[[7325,7187],[45,-13],[61,-25]],[[7431,7149],[-4,-12],[-43,10],[-68,20]],[[7562,7315],[1,10],[39,-18],[-3,-10]],[[7593,7270],[14,39],[-18,9],[5,18],[39,-20],[-8,-37]],[[7625,7279],[-32,-9]],[[7627,7279],[8,36],[8,-7],[-13,-18],[4,-11]],[[7634,7279],[-7,0]],[[7648,7311],[-53,28],[16,50],[31,-12],[-53,27],[6,20],[51,-27],[9,-15],[-31,-31],[4,-10],[23,-11],[-3,-19]],[[7565,7329],[23,72],[20,-11],[-23,-70],[-20,9]],[[7541,7339],[29,90],[22,-4],[-31,-95],[-20,9]],[[7517,7349],[31,99],[19,-17],[-29,-91],[-21,9]],[[7519,7460],[26,-11],[-32,-98],[-32,17]],[[7544,7496],[13,-10],[-10,-33],[-14,7],[11,36]],[[7557,7492],[-9,17],[6,15],[13,-8],[-10,-24]],[[7588,7485],[11,16],[15,-7],[-21,-65],[-18,17],[13,39]],[[7647,7401],[-51,26],[21,65],[25,-11]],[[7643,7482],[-6,4],[20,65],[28,-14]],[[7639,7560],[15,-8],[-20,-64],[-16,8],[21,64]],[[7636,7562],[-21,-65],[-18,17],[19,58],[20,-10]],[[7592,7584],[21,-11],[-19,-58],[-22,6],[20,63]],[[7637,7565],[-47,24],[-22,-68],[-14,7],[18,54]],[[7231,7255],[10,18],[9,31],[14,-3],[-2,-74],[-31,28]],[[7199,7256],[9,17],[41,-41],[14,-10]],[[7188,7309],[26,-22],[-14,-26],[-25,12],[13,36]],[[7157,7282],[-9,8],[4,14],[28,-12],[-6,-18],[-17,8]],[[7181,7293],[-29,12],[4,19],[31,-15],[-6,-16]],[[7243,7328],[-17,-24],[-11,-15],[-14,14],[-47,25],[3,19]],[[7211,7276],[24,37],[12,-8],[-7,-27],[-11,-20],[-18,18]],[[7396,7360],[-17,21],[9,14]],[[7452,7469],[-35,26],[23,34],[19,-25]],[[7141,7362],[15,-4],[-10,-68],[-18,11]],[[7105,7424],[3,1],[15,-59],[7,-2]],[[7106,7312],[-15,5],[8,26],[-33,43],[13,13]],[[7055,7372],[16,-33],[6,5],[-22,29],[10,11],[32,-44],[-7,-23],[-55,28],[20,27]],[[7132,7367],[-13,24],[25,7],[-4,-32],[-8,1]],[[7140,7402],[-21,-9],[-4,14],[22,14],[3,-19]],[[7149,7465],[9,-20],[-32,-30],[-11,-4],[-2,20],[36,34]],[[7341,7544],[-10,-27],[-15,7],[20,51],[15,-14],[-10,-17]],[[7328,7500],[4,12],[22,-14],[-4,-9]],[[7344,7509],[-11,7],[8,22],[23,-20],[-8,-17],[-12,8]],[[7369,7623],[14,-18],[-31,-42],[-14,15],[31,45]],[[7364,7575],[21,27],[15,-20],[-17,-29]],[[7431,7747],[1,-1]],[[7432,7746],[-39,-36],[-21,-28],[-25,-20],[-4,5]],[[7822,7697],[68,1]],[[7594,7692],[-5,11],[24,36],[-10,26],[-14,15],[-32,-16],[-7,-31],[-21,-39],[-8,7]],[[7531,7692],[9,15],[13,-13],[0,-19],[-22,17]],[[7590,7690],[-34,-16],[1,23],[18,27],[15,-34]],[[7556,7744],[16,-18],[-19,-28],[-11,12],[14,34]],[[7565,7765],[22,10],[13,-12],[-25,-30],[-19,14],[9,18]],[[7601,7761],[9,-23],[-22,-31],[-10,25],[23,29]],[[7648,7678],[-47,9],[46,27],[1,-36]],[[7666,7673],[-15,5],[2,17],[17,2]],[[7671,7701],[-18,-3],[-3,17],[14,8]],[[8010,8717],[-5,43],[22,-17],[23,-24],[-18,-24]],[[8033,8693],[18,24],[20,-21],[-19,-23]],[[8097,8667],[19,-19],[-11,-17],[8,-26],[19,-19],[-30,-45]],[[8150,8612],[-17,-25],[-19,22],[-6,20],[9,18],[33,-35]],[[8152,8610],[36,-39],[-7,-12],[-11,2],[-11,-15],[-10,-33],[-35,40],[38,57]],[[8151,8512],[8,30],[9,13],[8,-4],[-12,-51],[-13,12]],[[8104,8539],[9,13],[30,-37],[20,-16],[-9,-14]],[[8155,8484],[14,21],[4,33],[16,32],[50,-53],[-33,-47],[18,-21],[-13,-20]],[[8253,8421],[-44,49],[32,46],[51,-55],[-33,-46],[-6,6]],[[8212,8428],[13,20],[32,-35],[-7,-15],[42,61],[12,-12]],[[8318,8258],[38,22],[8,-31],[-37,-17],[-27,-16]],[[8287,8191],[1,-28],[-12,-1]],[[8298,8213],[12,6],[5,-22],[-4,-38],[-20,4],[-2,33]],[[8334,8148],[-21,10],[3,41],[-4,21],[24,15],[5,-23],[-1,-42],[-6,-22]],[[8355,8134],[-19,13],[7,26],[0,43],[-5,20],[26,10],[3,-32],[-2,-34],[-10,-46]],[[8323,8149],[30,-20],[-21,-42],[-23,25],[14,37]],[[8308,8111],[23,-25],[-43,-54],[-13,30],[33,49]],[[8290,8158],[31,-8],[-22,-51],[-25,-35],[-10,28],[10,11],[12,29],[4,26]],[[8275,8157],[13,1],[-5,-27],[-20,-36],[-6,16]],[[8255,8106],[6,-17],[-12,-35],[19,-51],[-28,-23]],[[8252,8054],[11,29],[21,-57],[-14,-19],[-18,47]],[[8290,7998],[-9,-6],[-8,11],[13,17],[4,-22]],[[8224,7941],[-3,9],[20,26],[8,-11],[16,6],[29,25],[10,-25]],[[8308,7970],[-7,26],[31,-5],[10,16],[24,-24]],[[8310,7999],[15,25],[14,-14],[-9,-15],[-20,4]],[[8296,8002],[-6,20],[16,21],[17,-17],[-19,-26],[-8,2]],[[8334,8081],[16,-19],[-26,-35],[-17,19],[27,35]],[[8326,8026],[17,23],[13,-13],[-16,-25],[-14,15]],[[8368,7988],[-23,23],[14,23],[50,18],[17,-17]],[[8357,8038],[-12,13],[37,41],[22,-33],[-3,-5],[-44,-16]],[[8368,8116],[12,-21],[-29,-31],[-16,18],[16,21],[17,13]],[[8384,8094],[23,12],[18,2],[-15,-43],[-17,10],[-9,19]],[[8426,8040],[-15,16],[18,52],[15,21]],[[8383,8096],[-12,20],[41,19],[32,2],[-15,-21],[-46,-20]],[[8369,8119],[-10,11],[6,21],[7,55],[21,2],[4,-73],[-28,-16]],[[8420,8141],[-21,-4],[-4,71],[20,2],[5,-69]],[[8446,8143],[-24,-2],[-4,69],[21,3],[8,-51],[-1,-19]],[[8464,8163],[3,-22],[-17,0],[-7,56],[-4,70],[20,0]],[[8417,8214],[-4,54],[23,-1],[3,-51],[-22,-2]],[[8387,8267],[24,0],[4,-53],[-21,-2],[-2,35],[-5,20]],[[8385,8267],[7,-56],[-20,-1],[-5,48],[18,9]],[[8544,8379],[-23,-22],[-19,-10]],[[8502,8347],[14,35],[26,28],[14,13],[9,-24],[-10,-10],[-11,-10]],[[8546,8376],[21,20],[5,-13]],[[8554,8362],[-8,14]],[[8532,8438],[12,13],[10,-23],[-11,-11]],[[8574,8386],[-27,68],[50,54],[36,-45],[-11,-26],[-8,6]],[[8614,8443],[10,19],[-24,27],[-17,-10],[7,-14]],[[8622,8434],[32,-27],[9,-16]],[[8613,8412],[9,22]],[[8636,8458],[8,-37],[-19,15],[11,22]],[[8663,8392],[-7,15],[-19,56],[34,77],[28,12]],[[8610,8520],[34,-33],[-9,-21],[-35,44],[10,10]],[[8664,8538],[-19,-48],[-33,32],[19,20],[11,-7],[22,3]],[[8607,8524],[-36,-38],[-23,7],[-12,34],[23,137],[-2,58],[20,4]],[[8663,8565],[-8,4],[-7,25],[-10,-12],[1,-14]],[[8639,8568],[-24,0],[18,28],[23,4],[7,-35]],[[8727,8527],[6,-17],[15,-5],[28,12],[24,-1]],[[9330,8344],[5,37],[25,3],[2,-24],[-8,-24],[-13,-7],[-12,5]],[[9338,8323],[16,9],[10,26],[-1,30],[-30,-3]],[[9370,8313],[-3,-6],[-29,16]],[[9308,8509],[18,-1]],[[8721,8578],[2,-17],[-13,2]],[[8607,9465],[2,3],[47,-70],[16,-8],[10,24],[27,-2],[3,-43]],[[8612,9503],[33,-33],[35,-54],[-7,-22],[-17,10],[-52,76]],[[8718,9450],[-8,-32],[-11,-2],[2,15],[-4,-15],[-14,1],[-36,55],[-27,26],[-7,7]],[[8728,9554],[-3,-22]],[[8730,9586],[23,-6]],[[8770,9547],[-19,-8],[8,25],[33,0],[0,-18]],[[8759,9568],[3,51],[15,7],[15,-58],[-33,0]],[[8819,9551],[0,-1]],[[8795,9547],[0,29],[-16,55],[-21,-12],[-2,-38],[-25,8]],[[8755,7473],[-39,-38],[-3,6],[-15,-16],[-65,135],[36,28]],[[9033,6761],[3,-16]],[[9005,6820],[29,-3],[3,-8]],[[9037,6809],[5,-20],[-36,-14],[-1,45]],[[8893,6820],[0,0]],[[8923,7066],[-43,106],[14,9],[42,-106]],[[8899,7049],[-29,67],[23,17],[27,-69]],[[8876,7033],[-29,67],[20,15],[29,-68]],[[8822,7082],[22,16],[30,-67],[-21,-14],[-31,65]],[[8850,7013],[27,-53],[-28,-20],[-59,100],[34,27],[26,-54]],[[8759,7012],[-2,3],[31,24],[60,-100],[-24,-17],[-65,90]],[[8748,6944],[37,27],[14,-18],[-64,-46],[-10,20],[23,17]],[[8771,6991],[13,-19],[-60,-44],[-9,21]],[[8715,6949],[56,42]],[[8651,7032],[13,10],[14,-26]],[[8761,7023],[-10,0],[-16,43],[65,51],[23,-47],[-62,-47]],[[8804,7119],[74,51],[13,-34],[-71,-51],[-16,34]],[[8865,7187],[18,11],[7,-15],[-41,-29],[-8,16]],[[8838,7168],[8,-16],[-43,-31],[-8,17]],[[8772,7100],[-39,-30],[-8,24],[63,48],[10,-21],[-26,-21]],[[8723,7088],[10,-28],[-53,-41],[-13,25],[56,44]],[[8639,7105],[6,-26],[19,-35],[-14,-11]],[[8604,7209],[19,14],[18,-8],[-1,-76]],[[8671,7200],[-27,-18]],[[8644,7182],[0,36],[33,-5],[2,-8]],[[8642,7106],[28,21]],[[8670,7127],[13,-22],[25,20],[15,-34],[-57,-45],[-18,34],[-6,26]],[[8672,7129],[16,12]],[[8698,7149],[9,-23],[-25,-19],[-10,22]],[[8719,7165],[10,-23],[-19,-14],[-10,22]],[[8778,7137],[-53,-41],[-15,30],[63,48],[14,-30],[-9,-7]],[[8740,7181],[10,-22],[-19,-15],[-10,22]],[[8762,7197],[10,-21],[-20,-15],[-10,21]],[[8841,7238],[20,17],[21,-53],[-18,-13]],[[8807,7308],[8,6],[28,-13],[17,-44],[-20,-17]],[[8862,7259],[-17,42],[11,8],[4,-10]],[[8862,7300],[-4,10],[15,11]],[[8839,7347],[-20,42],[49,-16],[-16,10],[-2,15],[-53,108],[16,3],[59,-122]],[[8818,7388],[36,-76],[-8,-7],[-31,24],[-25,53],[2,12],[26,-6]],[[8804,7311],[-4,-3],[-45,92],[23,-1],[37,-74],[-11,-14]],[[8721,7409],[30,-6],[47,-97],[-22,-15],[-56,116],[1,2]],[[8711,7311],[-17,35],[38,28],[42,-84],[-21,-15]],[[8696,7219],[-16,-2],[-5,23],[52,32],[10,-31],[-23,-16],[-18,-6]],[[8670,7259],[46,35],[9,-20],[-51,-31],[-4,16]],[[8636,7234],[32,23],[8,-40],[-49,9],[9,8]],[[8698,7418],[17,-8],[16,-33],[-38,-29],[-20,41],[25,29]],[[8631,7471],[8,-18],[23,-47],[-25,-30],[-15,-10],[-27,57],[-7,15],[-13,26],[43,32],[13,-25]],[[8665,7407],[-21,42],[32,14],[19,-40],[-30,-16]],[[8661,7494],[13,-28],[-31,-14],[-10,21]],[[8633,7473],[28,21]],[[8649,7518],[-13,-10],[-18,37],[13,11],[18,-38]],[[8621,7497],[-18,38],[13,11],[18,-39],[-13,-10]],[[8668,7589],[-36,-28],[-9,20],[35,13],[10,48],[6,2],[3,39],[-4,37]],[[8658,7694],[16,13],[2,-24],[-9,-8],[-9,19]],[[8672,7720],[3,-10],[-49,-37]],[[8642,7678],[14,15],[9,-18],[-23,3]],[[8643,7662],[5,-12],[-12,-6],[-7,28],[24,2],[9,-13],[-12,-9],[-7,10]],[[8611,7605],[29,26],[-3,11],[26,18],[11,19],[-2,-34],[-5,0],[-10,-49],[-35,-14],[-11,23]],[[8620,7579],[9,-20],[-27,-21],[-10,20],[-7,11],[29,23],[6,-13]],[[8589,7477],[-15,-10],[-30,58]],[[8544,7525],[8,6],[21,-44],[8,6],[8,-16]],[[8573,7560],[10,8],[22,-46]],[[8605,7522],[-13,5],[-9,-7],[-10,18],[8,6],[-8,16]],[[8551,7454],[-31,65],[18,13],[33,-67],[-20,-11]],[[8500,7504],[17,14],[32,-65],[-19,-11],[-30,62]],[[8498,7503],[30,-62],[-15,-8],[-29,59],[14,11]],[[8469,7481],[13,10],[29,-59],[-15,-8],[-27,57]],[[8497,7421],[53,29],[9,-19],[-49,-37],[-13,27]],[[8466,7479],[26,-56],[-15,-13],[-16,-4],[-4,52],[9,21]],[[8434,7402],[-8,83],[29,17],[10,-20],[-11,-17],[4,-59],[-24,-4]],[[8488,7579],[17,-36],[-40,-32],[-42,-23],[2,-24]],[[8458,7504],[49,36],[9,-20],[-49,-36],[-9,20]],[[8564,7557],[-18,-14],[-27,-21],[-10,20],[27,21],[18,14],[18,14],[10,-20],[-18,-14]],[[8553,7580],[-18,-15],[-27,-20],[-10,19],[27,21],[18,15],[18,14],[10,-20],[-18,-14]],[[8554,7628],[6,-11],[-63,-50],[-7,13]],[[8791,7461],[-4,-4],[-14,29],[4,4],[14,-29]],[[8609,7356],[-28,58],[11,9],[28,-59],[-11,-8]],[[8523,7331],[13,1]],[[8536,7332],[7,-14]],[[8439,7357],[-4,41],[24,5],[4,-42]],[[8463,7361],[-24,-4]],[[8495,7366],[1,13],[13,9],[9,-18]],[[8518,7370],[-23,-4]],[[8609,7350],[34,24],[28,13],[19,-40]],[[8607,7310],[-12,10],[21,15],[-7,15]],[[8535,7294],[28,-49],[-16,-17]],[[8514,7275],[21,19]],[[8539,7334],[31,19]],[[8580,7333],[-29,-22],[-12,23]],[[8586,7379],[-13,29]],[[8573,7408],[6,4],[28,-58],[-6,-5]],[[8572,7410],[-5,10],[-28,-22],[-5,9]],[[8534,7407],[48,37],[9,-19],[-19,-15]],[[8563,7434],[-9,18],[19,11],[8,-16],[-18,-13]],[[8786,7499],[15,-31],[-9,-7],[-14,30],[8,8]],[[8795,7506],[15,-31],[-9,-7],[-15,32],[9,6]],[[8800,7462],[10,-22],[-11,-9],[-11,23],[12,8]],[[8827,7389],[-11,23],[5,3],[13,-27],[-7,1]],[[8800,7429],[13,10],[-12,24],[11,9],[36,-75],[1,-14],[-14,4],[-14,30],[-11,-8],[-10,20]],[[8758,7433],[-12,23],[26,28],[13,-28],[-27,-23]],[[8787,7453],[27,-57],[-38,7],[-18,29],[29,21]],[[8896,6319],[25,18],[17,-43]],[[8865,6349],[9,27],[19,24],[27,-60],[-25,-18]],[[8938,6400],[8,-104],[-5,1],[-26,64],[9,47],[14,-8]],[[8967,6339],[7,-57],[-25,12],[-3,42],[21,3]],[[8961,6398],[6,-55],[-22,-2],[-5,62],[21,-5]],[[8977,6281],[-13,116],[21,-6],[12,-116],[-20,6]],[[9000,6274],[-12,116],[20,-6],[13,-118],[-21,8]],[[9018,6327],[19,-6],[7,-62],[-20,5],[-6,63]],[[9017,6331],[-6,52],[20,-6],[5,-52],[-19,6]],[[9059,6314],[7,-60],[-18,4],[-8,62],[19,-6]],[[9040,6324],[-6,52],[19,-6],[5,-51],[-18,5]],[[9090,6237],[-20,14],[-8,62],[20,-6],[8,-70]],[[9082,6310],[-20,8],[-5,51],[19,-6],[6,-53]],[[9094,6236],[-8,69],[21,-6],[7,-68],[-20,5]],[[9106,6301],[-21,9],[-6,53],[21,-7],[6,-55]],[[9136,6230],[-19,0],[-7,67],[19,-6],[7,-61]],[[9129,6294],[-20,6],[-6,56],[19,-6],[7,-56]],[[9159,6224],[-20,5],[-7,61],[20,-7],[7,-59]],[[9151,6288],[-19,5],[-7,55],[20,-4],[6,-56]],[[9180,6216],[-19,4],[-7,62],[19,-6],[7,-60]],[[9173,6279],[-19,6],[-6,57],[19,-5],[6,-58]],[[9184,6213],[-7,62],[20,-5],[5,-54],[-18,-3]],[[9177,6277],[-7,59],[20,-6],[6,-56],[-19,3]],[[9219,6283],[9,-49],[-23,-15],[-12,108],[19,-6],[7,-38]],[[9227,6256],[23,3],[4,-35],[-21,9],[-6,23]],[[9255,6224],[-4,36],[29,1],[3,-35],[-28,-2]],[[9301,6230],[-15,-4],[-4,36],[16,1],[3,-33]],[[9298,6265],[-16,-1],[-4,42],[16,-5],[4,-36]],[[9280,6264],[-29,-1],[-6,52],[31,-9],[4,-42]],[[9248,6262],[-22,-1],[-10,62],[27,-8],[5,-53]],[[9244,6323],[-19,36]],[[9223,6359],[17,-38],[-27,7],[-9,31],[19,0]],[[9209,6330],[-39,11],[-3,56],[30,-34],[12,-33]],[[9166,6342],[-29,8],[-4,37],[30,4],[3,-49]],[[9086,6365],[-3,34],[25,-1],[21,8],[4,-54],[-47,13]],[[9082,6366],[-15,5],[-7,70],[15,3],[7,-78]],[[9035,6380],[-6,58],[28,6],[6,-72],[-28,8]],[[9032,6381],[-33,10],[-6,39],[33,6],[6,-55]],[[8990,6394],[-48,14],[-7,11],[51,34],[8,-55],[-4,-4]],[[9021,6478],[4,-39],[-32,-6],[-3,23],[31,22]],[[9055,6459],[1,-12],[-28,-5],[-4,39],[9,11]],[[9066,6523],[8,-75],[-15,-3],[-6,67],[13,11]],[[9111,6437],[2,-34],[-31,-2],[-4,43],[31,9],[2,-16]],[[9095,6529],[9,-7],[1,-28],[-17,-2],[5,-40],[-16,-3],[-8,72],[26,8]],[[9124,6459],[-29,-7],[-4,36],[13,3],[20,-16],[0,-16]],[[9125,6480],[-18,12],[-1,28],[30,-25],[-11,-15]],[[9153,6462],[-24,16],[8,16],[14,-12],[2,-20]],[[9127,6477],[31,-18],[-6,-16],[-26,17],[1,17]],[[9111,6447],[16,9],[21,-17],[-24,-33],[-11,7]],[[9133,6389],[-1,22],[19,26],[8,3],[4,-47],[-30,-4]],[[9223,6361],[-26,9],[-32,34],[0,23],[43,-29],[11,-1]],[[9190,6413],[-27,19],[-1,17],[35,-12]],[[9185,6445],[-23,10],[2,23],[48,-21]],[[9263,6428],[11,3],[89,-136],[-3,-8]],[[9120,6545],[-60,-19],[-9,-7],[-12,31],[32,9],[21,-1],[18,15]],[[9189,6605],[15,-1],[6,-32],[-13,-3]],[[8989,6462],[-3,21],[18,20],[18,32],[15,13],[12,-31],[-35,-40],[-25,-15]],[[8969,6472],[13,7],[4,-19],[-63,-40],[-19,-3],[14,40],[51,15]],[[8869,6442],[-10,34],[-10,2]],[[8849,6478],[10,8],[9,-7],[30,-65],[-29,-34]],[[8801,6539],[15,11],[35,-58],[-20,-44]],[[8834,6587],[6,-9],[21,-2],[26,11],[-6,11]],[[8903,6619],[15,-16],[-25,-28],[-34,-25],[-12,-10],[-23,34],[40,-65],[-11,-14],[-42,67],[-9,-21]],[[8860,6498],[7,10],[10,-14],[39,-24],[-17,-51],[-28,62],[-11,17]],[[8898,6485],[-23,15],[-6,9],[37,32],[9,8],[21,18],[4,-31],[4,-67],[-25,-8],[-2,12],[-19,12]],[[8849,6537],[52,39],[20,22],[14,-28],[-69,-59],[-17,26]],[[8926,6674],[6,-16],[-12,-51],[-16,16]],[[8926,6687],[0,0]],[[8945,6599],[-3,-14],[-10,0],[-10,17],[10,41],[11,-5]],[[8943,6532],[-4,38],[33,9],[-18,-48],[-11,1]],[[8999,6573],[9,-3],[8,-37],[-20,-32],[-19,-22],[-30,-9],[-4,21],[3,37],[37,2],[16,43]],[[8994,6573],[-15,-42],[-20,0],[16,48],[19,-6]],[[9013,6715],[1,-47],[-33,41],[-17,32],[9,7]],[[9012,6607],[7,-5],[-10,-30],[-10,3],[13,32]],[[9037,6585],[-2,-14],[-16,-34],[-7,31],[10,32],[15,-15]],[[9035,6557],[6,18],[-4,17],[13,11],[-8,-23],[11,-24],[-18,1]],[[9110,6575],[-19,-15],[-38,3],[-10,17],[12,25]],[[9055,6605],[-7,-25],[13,-9],[25,-4],[21,14]],[[9306,6766],[-39,18],[-41,-3],[-27,-7],[1,-19]],[[9175,6700],[0,22],[-15,67]],[[9202,6755],[0,17],[63,9],[31,-11],[-11,-22]],[[9233,6764],[0,2]],[[9232,6765],[0,-1]],[[9286,6748],[10,19],[8,-4]],[[9284,6746],[-8,-9],[-38,11],[-13,-2],[0,-13],[-12,-4]],[[9210,6729],[-9,-1],[2,25]],[[9201,6752],[-3,-42]],[[9200,6710],[0,0]],[[9202,6618],[1,-10],[-25,-1],[-3,90]],[[9197,6707],[2,-61],[3,-25]],[[9209,6699],[0,1]],[[9256,6649],[2,-9],[-46,-7]],[[9208,6678],[-9,0],[7,20]],[[9210,6633],[-8,0],[-3,42],[9,2]],[[9260,6624],[3,-39],[-51,-14],[-7,48]],[[9311,6668],[12,-2],[0,-50],[2,-14],[-60,-17],[-3,39]],[[9301,6709],[-2,-25],[-12,-23],[-26,-20],[-4,8]],[[9307,6761],[8,-8],[-4,-14],[18,0],[-6,-71],[-12,2]],[[9426,6851],[9,-12],[-22,-35],[-13,-16],[-32,-23],[-37,-14],[-22,11]],[[9461,6887],[6,-11],[-30,-34],[-8,13]],[[9501,6911],[1,-18],[-32,-15],[-7,12]],[[9566,7015],[-15,-34],[-36,-23],[-16,-30],[1,-10]],[[9530,6919],[19,54],[21,42]],[[9513,6947],[6,10],[25,9],[-8,-20],[-23,1]],[[9502,6919],[8,25],[21,-2],[-4,-23]],[[9554,6768],[-9,-21],[-8,8],[-14,56],[-2,49],[8,49],[-4,1],[-3,-18],[-17,1],[-1,19]],[[9644,6662],[-6,26],[-14,11],[-56,20],[-22,26],[11,14]],[[9640,6663],[-47,-17],[5,30],[32,1],[10,-14]],[[9604,6702],[27,-14],[-17,-10],[-12,5],[2,19]],[[9595,6687],[-20,24],[26,-7],[-6,-17]],[[9588,6650],[-60,70],[16,21],[49,-57],[-5,-34]],[[9542,6744],[-17,-21],[-52,60],[31,11],[38,-50]],[[9460,6801],[-10,17],[23,26],[16,13],[28,2],[3,-49],[10,-45],[-25,34],[-33,-14],[-11,14]],[[9455,6858],[17,17],[31,14],[18,-2],[-4,-24],[-30,-3],[-13,-9],[-25,-31],[-10,19],[16,19]],[[9417,6804],[20,32],[20,-36]],[[9459,6798],[7,-13],[-31,-44],[-21,-1],[-27,33],[29,29]],[[9412,6736],[19,-1],[-22,-58],[-16,20],[19,39]],[[9393,6756],[17,-17],[-19,-39],[-38,51],[17,11]],[[9434,6602],[-29,1],[9,80]],[[9442,6495],[-1,-28],[-27,0],[2,28],[-3,0],[-2,-28],[-21,-9],[4,38],[4,50],[6,51],[9,-1],[18,1]],[[9379,6595],[23,2],[-8,-74],[-23,-5],[8,77]],[[9377,6596],[-3,-28],[-41,0],[-5,27],[49,1]],[[9330,6568],[-31,-7],[-11,23],[38,10],[4,-26]],[[9318,6519],[-9,-8],[-19,26],[8,20]],[[9298,6557],[20,-38]],[[9324,6516],[-23,42],[30,6],[6,-38],[-13,-10]],[[9334,6565],[39,-1],[-2,-25],[-33,1],[-4,25]],[[9337,6515],[2,21],[31,-1],[-2,-20],[-26,-8],[-5,8]],[[9288,6485],[30,10],[6,-8],[-15,-39],[-21,37]],[[9294,6407],[-41,64],[32,14],[23,-41],[-14,-37]],[[9313,6389],[-3,-7],[-14,22],[13,34],[14,-22],[-10,-27]],[[9326,6419],[-15,25],[15,42],[10,1],[16,-29],[-26,-39]],[[9354,6461],[-15,28],[4,14],[25,6],[2,-34],[-16,-14]],[[9373,6477],[-2,35],[22,6],[-3,-31],[-17,-10]],[[9442,6444],[-30,-2],[2,21],[29,0]],[[9394,6457],[16,5],[-1,-21],[-32,-22],[-10,18],[27,20]],[[9389,6482],[-2,-25],[-21,-17],[-10,18],[33,24]],[[9363,6437],[-21,-34],[-15,14],[26,38],[10,-18]],[[9333,6384],[-6,-27],[-13,20],[12,37],[14,-13],[-7,-17]],[[9353,6380],[-7,-29],[-16,3],[13,45],[10,-19]],[[9333,6347],[42,-7],[-12,-39],[-30,46]],[[9357,6379],[2,5],[26,-23],[-8,-17],[-28,6],[8,29]],[[9440,6422],[-1,-9],[-30,-22],[3,47],[30,2]],[[9406,6363],[-3,18],[29,20],[21,18]],[[9369,6299],[8,37],[14,29],[10,-9]],[[9149,6490],[3,12],[27,-11]],[[9179,6491],[-4,-14],[-26,13]],[[9210,6477],[-2,-14]],[[9208,6463],[-31,13],[4,14]],[[9338,6638],[7,6],[25,47],[-7,9]],[[9363,6700],[11,18],[35,-47],[-5,-54]],[[9404,6617],[-51,4]],[[9593,6645],[48,17],[14,-49],[1,-15],[-62,1],[-1,46]],[[7591,7228],[12,12],[14,-33],[23,-3]],[[7634,7185],[-39,9],[-4,34]],[[8798,6754],[-46,6],[-18,-6]],[[7926,6053],[12,13],[0,45]],[[8066,6036],[-11,9]],[[8055,6045],[16,33],[6,-1]],[[7821,5986],[-6,-25],[3,-29]],[[7828,5871],[-23,1]],[[7965,6124],[-5,-10],[-36,18]],[[7962,6115],[3,8],[25,-3],[5,-12],[-6,-14],[-27,21]],[[7991,6093],[5,11],[39,-4],[-11,-32],[-33,25]],[[8025,6067],[12,32],[20,-1],[-1,-23],[-10,-23],[-21,15]],[[8078,6098],[-76,7],[-10,15]],[[8069,6274],[32,-8],[5,-11],[-31,-23],[-10,20],[4,22]],[[8104,6298],[-5,-28],[-27,7],[5,29],[27,-8]],[[8141,6287],[0,-5],[-33,-25],[-6,14],[5,26],[34,-10]],[[8159,6286],[-6,2],[16,57],[6,33],[13,-2]],[[8109,6332],[29,9],[-7,-46],[-23,7],[1,30]],[[8005,6496],[-25,-6],[-20,-3]],[[7708,6230],[35,-24],[30,-4]],[[7784,6206],[11,27],[20,-14],[-9,-27]],[[7848,6333],[9,-5],[3,-21]],[[7860,6307],[-1,-16],[-5,-57]],[[7854,6234],[-16,2],[5,58],[-17,2]],[[7826,6296],[6,40]],[[7857,6222],[3,32],[38,-6],[-3,-31],[-38,5]],[[7868,6395],[-3,-31],[-6,0]],[[7828,6499],[-49,-13],[1,15],[32,8],[16,-1],[0,-9]],[[7754,6479],[20,22],[2,-15],[-22,-7]],[[7826,6529],[0,-2]],[[7826,6527],[2,-16],[-17,1],[-38,-10],[-22,-17]],[[7751,6485],[-9,8]],[[7533,6430],[-12,-23],[-9,38],[21,-15]],[[7506,6458],[7,-34],[-38,-1]],[[7547,6397],[-6,28],[28,-20],[-22,-8]],[[7678,6236],[7,12],[20,-18],[-13,-18],[-24,-8],[11,17],[-1,15]],[[7499,6281],[50,-30],[7,-11],[-5,-17],[-19,8],[-45,31],[12,19]],[[7592,6233],[-2,-22],[-36,11],[4,17]],[[7650,6281],[9,4],[5,-17],[18,-18],[-6,-14],[2,-17],[-15,-16],[-31,0],[-41,8],[4,29]],[[6971,5842],[35,-32],[-8,-14]],[[6979,5876],[16,-10],[27,-27],[-15,-26],[-37,34]],[[7023,5844],[-19,21],[10,36],[10,14],[23,14],[17,-12],[-41,-73]],[[7066,5922],[-16,10],[3,21],[13,27],[19,-15],[-1,-15],[-18,-28]],[[7053,5957],[-4,-24],[-25,-14],[-3,5],[15,41],[17,-8]],[[7092,5985],[-4,-16],[-34,21],[-9,19],[9,4],[38,-20],[0,-8]],[[7108,6038],[-13,-41],[-37,18],[20,40],[30,-17]],[[7032,6049],[-2,16],[18,11],[18,-19]],[[7040,6100],[21,-4],[-12,-15],[-9,19]],[[7039,6102],[-1,27],[34,-12],[-10,-20],[-23,5]],[[7055,6127],[-16,5],[2,34],[26,4],[-12,-43]],[[7073,6121],[-15,5],[12,43],[18,-9],[-15,-39]],[[7076,6207],[-8,-33],[-24,-2],[-29,-17]],[[7108,6145],[-5,-20],[-8,2],[-6,-23],[-19,-21],[5,-6]],[[7075,6077],[-12,-13],[-12,14],[17,23],[23,57],[17,-13]],[[7117,6137],[9,-7]],[[7126,6130],[-30,-60],[-7,5]],[[7173,6163],[27,-34]],[[7200,6129],[-37,-20],[-12,11],[22,43]],[[7264,6000],[12,-31],[-37,-5],[-1,33],[26,3]],[[7194,5993],[40,3],[1,-33],[-39,-3],[-2,33]],[[7164,5958],[-20,-1],[0,30],[22,3]],[[7166,5990],[-2,-32]],[[7117,5986],[24,1],[1,-65],[-27,-1],[2,65]],[[7074,5927],[14,20],[10,43],[16,-4],[0,-65],[-42,-1],[2,7]],[[7075,5915],[36,2],[4,-22],[-35,-16]],[[7080,5879],[-5,36]],[[7000,5794],[23,41],[17,-32],[-29,-22],[-15,-3],[4,16]],[[7013,5778],[28,22],[13,-27],[-23,-17],[-11,-8],[-14,25],[7,5]],[[7080,5828],[10,-29],[-33,-24],[-12,27],[35,26]],[[7067,5866],[18,13],[30,12],[6,-35],[-41,-20],[-13,30]],[[7102,5808],[-9,-7],[-10,29],[39,21],[5,-19]],[[7150,5866],[-26,-9],[-7,60],[26,2]],[[7131,5832],[-6,21],[23,8],[7,-24]],[[7152,5861],[0,0]],[[7193,5956],[1,-31],[-49,-3],[-1,31],[49,3]],[[7196,5956],[39,4],[1,-33],[-39,-2],[-1,31]],[[7290,5930],[-50,-3],[-1,33],[38,6],[13,-36]],[[7197,5920],[40,3],[0,-29],[-38,-4],[-2,30]],[[7431,5699],[-29,-22]],[[7214,5821],[40,26],[9,-23],[-9,-9],[68,45],[6,-10]],[[7321,5862],[-55,-36],[-9,22],[54,35],[10,-21]],[[7210,5861],[32,18],[10,-26],[-30,-18]],[[7282,5972],[-18,53],[5,50],[26,-5],[-4,-45],[14,-38],[-23,-15]],[[7293,6029],[1,8],[19,-5],[25,-14],[-11,-17],[-20,-13],[-14,41]],[[7308,5985],[19,14],[12,18],[29,-35],[-44,-37],[-16,40]],[[7339,5916],[-14,28],[41,33],[27,19],[12,-24],[-32,-23],[-34,-33]],[[7348,6032],[6,13],[25,-25],[13,-21],[-22,-16],[-29,36],[7,13]],[[7347,6033],[-8,-13],[-13,9],[-32,10],[3,31],[29,-8],[27,-16],[-6,-13]],[[7278,6078],[-3,29],[27,7],[32,-2]],[[7334,6112],[-7,-47],[-49,13]],[[7339,6059],[-10,5],[7,54],[29,-5]],[[7377,6106],[13,-9],[-11,-32],[-14,-25],[-9,8]],[[7395,6001],[-28,38],[12,22],[40,-35],[-24,-25]],[[7388,6082],[37,-33]],[[7425,6049],[-5,-21],[-40,35],[8,19]],[[7397,5998],[26,31],[5,27],[17,-6],[2,8],[-18,6],[8,48],[16,-16],[-4,-104],[-41,-18],[-11,24]],[[7393,6109],[-7,5],[7,19],[-9,10],[-15,-9],[-32,-5]],[[7337,6129],[0,15],[30,4],[21,17],[19,-24],[-14,-32]],[[7286,6173],[9,57],[28,-9],[18,-11],[-9,-37],[-2,-26],[-48,17],[4,9]],[[7335,6182],[8,27],[23,-18],[-5,-10],[-1,-33],[-27,-1],[2,35]],[[7455,6174],[-61,6],[-11,1],[-45,36]],[[7034,5968],[-24,10],[-15,-5],[0,13],[46,21],[23,-26],[-10,-21],[-20,8]],[[7006,5947],[-8,3],[-2,21],[21,-1],[-11,-23]],[[7034,5966],[-11,-29],[-15,10],[11,26],[15,-7]],[[6073,5909],[-39,-16]],[[6076,5907],[64,23],[6,-21],[-17,-16],[-19,-23],[-26,-9]],[[6257,5914],[18,13],[12,-32],[-17,-12],[-13,31]],[[6240,5891],[15,21],[13,-31],[-13,-10],[-15,20]],[[6239,5888],[13,-19],[-29,-22],[16,41]],[[6290,5959],[17,-49],[-18,-12],[-13,35],[-31,-28],[-26,-55],[1,-5],[-37,-28],[-11,31],[34,78]],[[6547,5684],[38,58],[8,-9]],[[6559,5804],[6,-8],[-13,-20],[-8,7],[15,21]],[[6570,5838],[35,27],[4,-11],[-33,-27],[-6,11]],[[6577,5826],[33,27],[4,-10],[-32,-25],[-5,8]],[[6394,5725],[25,-19],[-21,-42]],[[6398,5664],[-24,19],[20,42]],[[6455,5756],[-14,35],[37,21],[15,16],[-38,-72]],[[6494,5862],[13,-17]],[[6507,5845],[-8,-10],[-17,10],[-10,-4]],[[6447,5538],[17,1],[-6,-74],[-18,2],[7,71]],[[6475,5462],[-14,2],[6,74],[14,1]],[[6481,5539],[-6,-77]],[[6473,5586],[21,-17],[0,-27],[-46,0],[2,32],[23,12]],[[6516,5340],[-35,13],[1,17],[7,87],[8,101],[13,7],[2,17]],[[6512,5582],[18,-4],[22,28],[24,-23]],[[6433,5623],[36,-34],[-51,-29],[-13,23],[28,40]],[[6342,5623],[0,12],[18,1],[0,-13],[-18,0]],[[6320,5758],[-4,-20],[-49,-29]],[[6267,5709],[-5,14]],[[6009,5530],[27,15],[32,-9],[34,-19],[-8,-14]],[[6146,5529],[-35,-3],[24,45],[16,12],[4,-52],[-9,-2]],[[6209,5691],[6,-13]],[[6215,5678],[-45,-26],[-8,10]],[[6390,5390],[3,24],[42,-15],[-2,-26],[-43,17]],[[6476,5459],[11,-3],[-6,-69],[-3,-33],[-40,17],[2,32],[-5,2],[-27,10],[-15,5],[4,49],[41,-6],[-1,-22],[0,-19],[20,-2]],[[6350,5295],[8,99],[10,-2]],[[6456,5252],[4,7]],[[6460,5259],[10,-1],[-4,-57]],[[6480,5349],[34,-12],[-11,-49],[-28,4],[5,57]],[[6113,5596],[-76,-44]],[[6535,5920],[-4,5],[-26,-32],[-16,43],[-12,-7],[-18,52],[9,14],[-23,-33],[10,-30],[15,10],[4,-15],[-19,-12]],[[6455,5915],[-21,66]],[[6441,5906],[3,-10],[-29,-18],[-6,20],[11,21],[7,-21],[14,8]],[[5600,5353],[-14,21],[82,53]],[[5788,5509],[-66,-41],[-2,3],[58,74]],[[5465,5324],[-25,-2]],[[5986,5518],[1,-15],[-92,-19],[-13,4]],[[6065,5234],[-14,-1],[-34,11],[-28,0]],[[5989,5244],[-1,12],[20,5]],[[6008,5261],[0,-8],[28,3],[28,-4],[0,-7],[28,4],[-2,26],[5,1]],[[6151,5273],[17,-11],[-15,-29]],[[6153,5233],[-11,7],[-44,-2],[0,-4]],[[6038,5074],[-33,48],[5,19],[17,2],[-1,13],[23,4]],[[6049,5160],[4,0]],[[5847,5247],[-2,25]],[[5859,5249],[1,-12]],[[5860,5237],[-13,10]],[[5944,4997],[-6,-37]],[[5938,4960],[0,-12]],[[5938,4948],[-33,4],[-2,31]],[[5903,4983],[41,14]],[[5949,4900],[50,-8],[47,-5],[-15,-58]],[[6031,4829],[-8,1],[2,26],[-30,10],[-47,24],[1,10]],[[6097,4879],[36,-14]],[[6133,4865],[-9,-63],[-38,3],[11,74]],[[5913,4862],[-5,14],[13,4],[8,-17],[67,-38],[27,-7],[46,-5],[6,-22]],[[6220,5191],[9,-6],[-31,-72],[-8,5]],[[6190,5118],[25,56],[5,17]],[[5472,4692],[46,-17],[3,17],[16,-4],[-11,-15],[-8,-28],[-42,13],[-13,12]],[[5463,4670],[9,22]],[[5690,4673],[21,-4]],[[5762,4704],[-41,12]],[[5723,4737],[42,-8],[-3,-25]],[[5424,4695],[-55,-5]],[[5369,4690],[6,26]],[[5375,4716],[25,1]],[[5400,4717],[5,0]],[[5405,4717],[22,1]],[[5427,4718],[-3,-23]],[[5552,4942],[2,-30]],[[5554,4912],[-22,1],[2,28],[18,1]],[[5572,4853],[3,88],[54,-1],[-2,-86],[-55,-1]],[[5633,4908],[17,-1]],[[5650,4907],[0,-29],[-18,0],[1,30]],[[5721,4911],[11,10],[20,-2],[4,-15],[13,0]],[[5769,4904],[-1,-39],[-70,2],[1,42]],[[5699,4909],[18,-1]],[[5717,4908],[4,3]],[[5550,4993],[-28,0],[-5,-10],[-19,-8]],[[5498,4975],[-8,31],[14,7],[10,15],[25,8],[11,-43]],[[5486,5019],[2,-24],[-19,2],[8,30],[25,46],[24,10],[9,-32]],[[5535,5051],[-32,-14],[-17,-18]],[[5469,5085],[-10,44],[13,2],[6,-24]],[[5462,5051],[-20,74],[13,2],[13,-52]],[[5771,4950],[-82,5],[-14,101],[-24,35],[-38,41],[-14,11],[-27,7],[-2,13]],[[5730,4394],[10,82],[63,-14]],[[5658,4640],[-5,-34],[-109,21],[10,36]],[[5975,4335],[5,-3],[-16,-64],[29,-12]],[[5993,4256],[-5,-31]],[[5289,4606],[-11,-1],[-2,20],[7,8],[27,-3],[2,-20],[-9,-2]],[[5303,4608],[-14,-2]],[[4782,3533],[14,10],[6,-21],[80,48],[6,-8]],[[4866,3589],[14,-16],[-72,-43],[-8,16],[43,31],[23,12]],[[4840,3578],[-41,-30],[-10,17],[38,32],[13,-19]],[[4825,3599],[-38,-32],[-13,16],[39,33],[12,-17]],[[4714,3974],[4,1]],[[4718,3975],[13,4],[1,-11]],[[4732,3968],[-48,-15],[-3,11]],[[4681,3964],[33,10]],[[4723,3934],[-32,-11],[-6,24],[83,25],[6,-21],[-51,-17]],[[4834,3878],[4,-18],[11,4],[3,-20]],[[4852,3844],[-41,-12],[-9,35],[32,11]],[[4845,3943],[26,9],[13,-52],[-25,-8],[-14,51]],[[4772,3974],[55,21],[5,-21],[-54,-21],[-6,21]],[[4961,3893],[4,-15],[-22,-6],[-2,14]],[[4941,3886],[20,7]],[[4962,3809],[11,-31]],[[4973,3778],[12,7]],[[4985,3785],[6,-28]],[[4914,3696],[32,-54],[-16,-10],[-31,51],[15,13]],[[4932,3710],[33,-56],[-17,-11],[-32,54],[16,13]],[[4978,3623],[-36,-22],[-11,29],[36,22],[11,-29]],[[5117,3756],[6,-19],[-8,1],[-4,-17],[-14,-16],[-2,-42]],[[5095,3663],[-8,3]],[[5087,3666],[-1,38],[-14,4],[-6,-37]],[[5066,3671],[-14,3]],[[5052,3674],[3,15],[-14,3],[4,19],[-19,4],[-4,12],[-19,-8]],[[5003,3719],[-6,34],[34,19],[2,14]],[[5116,3771],[1,-15]],[[5143,3992],[-61,40],[9,19]],[[5013,3564],[4,18],[82,-18],[4,-21]],[[5053,3610],[28,15],[-6,-51]],[[5075,3574],[-18,4]],[[5213,3869],[2,-34]],[[5157,3822],[-5,13],[-18,2],[11,35]],[[5152,3649],[14,-4]],[[5166,3645],[-3,-31],[17,-7]],[[5180,3607],[-5,-22]],[[5291,3391],[1,3],[68,-1],[0,-20]],[[5357,3448],[2,-15],[-123,3],[10,38],[44,-20],[19,-5],[48,-1]],[[5429,3432],[-68,1],[1,16],[-59,3],[-56,24],[1,6]],[[5248,3482],[14,-6],[7,26]],[[5269,3502],[38,-17],[51,1],[4,-31]],[[5438,3475],[-18,38],[27,32],[19,-19]],[[5416,3530],[8,-9]],[[5424,3521],[-17,-19]],[[5308,3592],[27,-9]],[[5335,3583],[5,-2]],[[5340,3581],[23,-10]],[[5371,3553],[-16,-63]],[[5355,3490],[-51,0],[-21,10],[-27,13],[9,31],[15,56],[28,-8]],[[5354,3654],[-5,-20],[-27,11]],[[5322,3645],[10,17]],[[5393,3614],[-40,17],[9,33],[22,-26],[14,-27]],[[5109,3536],[-4,28],[41,-3],[23,-7],[-7,-35]],[[4858,3514],[6,-15],[-14,-11],[-6,16],[14,10]],[[4863,3447],[-22,28],[32,28],[3,-9],[-8,-19],[-5,-28]],[[5006,3397],[-14,-13],[-9,6],[13,32],[10,-25]],[[4974,3387],[20,39],[-3,-20],[-17,-19]],[[4972,3388],[-18,6],[22,30],[11,25],[6,-17],[-21,-44]],[[4980,3373],[-2,0]],[[4978,3373],[-29,-1]],[[4949,3372],[7,16],[36,-5],[16,8],[-13,40],[6,4],[24,-60]],[[4927,3345],[-12,21],[-24,19],[-21,4],[-8,1],[-54,87],[9,10],[26,17],[6,-16],[-11,-11],[27,-34],[7,-28],[7,-9],[1,-2],[26,-14],[40,0],[2,-18]],[[4948,3372],[-19,1],[-2,-28]],[[4515,3487],[1,-26],[-6,-14],[-21,-8],[1,39]],[[4537,3495],[3,-16],[-23,-9],[0,18]],[[4556,3502],[3,-17],[-17,-6],[-3,17]],[[4591,3515],[1,-18],[-31,-11],[-3,16]],[[4617,3524],[0,-22],[-23,-4],[-1,17]],[[4617,3708],[-1,35],[29,-33]],[[4507,3442],[23,-15],[-4,-9],[-25,-8]],[[4538,3445],[-7,-16],[-21,15],[7,24],[24,8],[-3,-31]],[[4565,3438],[-10,-24],[-22,14],[10,24],[0,25],[23,8],[-1,-47]],[[4594,3431],[-24,14],[-2,41],[24,8],[2,-63]],[[4621,3436],[2,17]],[[4624,3494],[45,-52],[-12,-26],[-28,-38],[-22,0]],[[4607,3378],[-6,-1],[-111,-40],[-1,49]],[[4489,3386],[64,25]],[[4553,3411],[3,1],[13,29],[24,-15]],[[4597,3427],[-3,68],[23,4],[4,-63]],[[4486,3261],[1,28],[131,50],[-5,-28],[-121,-48]],[[4653,3326],[-15,29],[-13,-4]],[[4625,3351],[9,26],[27,-48],[-8,-3]],[[4650,3355],[-13,26],[26,32],[17,-16],[6,-19]],[[4697,3332],[-10,59],[36,-7],[-16,-47],[-10,-5]],[[4704,3287],[-6,42],[11,6],[16,48],[13,-2]],[[4693,3338],[9,-63],[-8,-6],[-30,57],[29,12]],[[4690,3271],[-26,-14],[-6,21],[23,11],[9,-18]],[[4698,3264],[-10,-25],[-18,-8],[-6,23],[26,14],[8,-4]],[[4666,3222],[-34,-16],[-8,29],[39,18],[3,-31]],[[4662,3255],[-39,-18],[6,37],[27,6],[6,-25]],[[4655,3283],[-27,-6],[4,36],[14,6],[9,-36]],[[4626,3219],[4,-14],[-36,-17],[3,16]],[[4581,3293],[11,-14]],[[4592,3279],[11,-11],[-9,-44],[-74,-36],[-27,61],[1,10],[87,34]],[[4531,3156],[54,25],[-4,-17]],[[4604,3084],[-12,33],[34,18]],[[4626,3135],[-22,-51]],[[4629,3136],[16,8]],[[4617,3074],[-12,9],[24,53]],[[4641,3192],[-52,-24]],[[4589,3168],[4,17],[76,37]],[[4617,3071],[13,-5],[-28,-63],[17,33],[12,29],[25,-6],[-3,-31],[-31,3],[31,-6],[-2,-14],[-22,-1],[1,-3]],[[4630,3007],[8,-25]],[[4638,2982],[-32,-9],[1,-5],[61,20],[12,-4]],[[4680,2984],[-64,-18],[-1,-25],[-16,-95],[0,-40],[-15,5]],[[4679,3021],[0,-27],[-25,-7],[0,36],[25,-2]],[[4679,3024],[-24,2],[3,33],[26,-1],[-5,-34]],[[4687,3090],[-3,-28],[-27,0],[-24,6],[10,24],[20,-5],[24,3]],[[4650,3143],[12,-6],[-31,-68],[-13,4]],[[4690,3118],[-3,-26],[-37,13],[14,31],[26,-18]],[[4701,3207],[-5,-39],[-5,-44],[-36,26]],[[4688,3059],[6,60],[4,33],[20,3],[0,-39],[2,0],[0,40],[7,2]],[[4725,3162],[-26,-5],[2,13],[19,9]],[[4869,3166],[6,9],[17,-16],[-3,-31]],[[4927,3289],[-15,-75],[-14,-26],[-4,-27],[-18,16],[14,44],[13,-2],[1,-12],[8,79],[-13,40],[22,23],[6,-9]],[[4890,3315],[7,9],[9,-16],[4,-27],[-6,-59],[-14,1],[-3,42],[-14,28],[17,22]],[[4843,3254],[28,37],[15,-32],[2,-36],[-25,2],[-20,29]],[[4848,3206],[15,17],[25,-2],[-7,-27],[-14,-25]],[[4831,3239],[11,13],[18,-26],[-13,-17]],[[4815,3273],[8,6],[16,-24],[-10,-13]],[[4869,3294],[-28,-37],[-18,26],[-2,34],[30,-7],[18,-16]],[[4795,3309],[24,8],[2,-34],[-8,-8]],[[4815,3372],[4,-51],[-25,-9],[-10,19],[21,39],[10,2]],[[4783,3335],[-12,22],[7,16],[23,0],[-18,-38]],[[4717,3482],[68,3]],[[4746,3384],[-8,2],[1,39],[-25,24]],[[4714,3449],[13,23],[-10,10]],[[4830,3363],[-12,-2],[-1,14],[17,3],[7,-13],[-11,-2]],[[4844,3379],[15,-21],[22,-39],[1,-8]],[[4882,3311],[-11,-15],[-20,17],[-30,8],[-2,39],[24,3],[1,16]],[[4886,3344],[9,-17],[-9,-11]],[[4886,3316],[0,28]],[[4886,3355],[0,28]],[[4886,3383],[24,-15],[9,-16],[-22,-23],[-11,26]],[[4718,2878],[-13,32]],[[4856,2712],[-11,-11],[-4,-19],[-10,1]],[[4874,2683],[-31,-1],[4,18],[11,10],[34,-1],[27,10],[5,-36],[-50,0]],[[4922,2671],[0,-16],[-85,0],[5,23],[81,0],[-1,-7]],[[4835,2651],[87,-1],[-7,-20],[-80,-1],[0,22]],[[4859,2563],[-37,19],[13,43],[76,0],[-15,-20]],[[4830,2678],[8,-1],[-6,-24],[-1,-32],[-12,-37],[-63,32],[2,13],[4,34]],[[4751,2617],[-34,9],[-5,11],[10,29],[37,-12],[-8,-37]],[[4621,2713],[2,1],[96,-47],[-17,-53],[9,20],[2,-14],[19,-7],[-2,-8],[16,-8],[-14,-35],[-50,24],[-7,8],[-15,-1]],[[4618,2552],[5,-27],[-8,-3],[-2,29]],[[4612,2599],[23,-1]],[[4635,2598],[15,-41],[-33,17],[-3,13]],[[4618,2568],[33,-17],[5,-14],[-30,-11],[-8,42]],[[4734,2525],[1,-29],[-44,23],[8,24]],[[4695,2544],[-7,-23],[-13,7],[-8,34],[3,27],[11,-6]],[[4720,2564],[12,-4],[1,-26]],[[4742,2580],[6,15],[53,-12],[18,-7],[-11,-34],[-50,15]],[[4735,2561],[18,-5],[4,-37],[-21,11],[-1,31]],[[4787,2481],[-23,-3],[-8,75],[24,-7],[7,-65]],[[4783,2545],[24,-7],[-3,-13],[4,-42],[-19,-2],[-6,64]],[[4810,2537],[14,-5],[5,-48],[-18,-1],[-4,41],[3,13]],[[4859,2503],[1,-19]],[[4860,2484],[-28,0],[-4,35]],[[4827,2534],[-16,7],[11,34],[24,-11],[12,-6]],[[4921,2720],[29,23],[9,-27],[0,-33],[-33,0],[-5,37]],[[4955,2739],[17,-27],[-11,-11],[-6,38]],[[4979,2722],[-7,-7],[-19,31],[9,7]],[[5048,2630],[-35,0],[0,21],[-39,61],[7,7]],[[4962,2662],[-1,37],[11,11],[30,-48],[-40,0]],[[4926,2670],[0,8],[33,0],[-1,-19],[-33,-1],[1,12]],[[4924,2630],[1,25],[33,1],[1,-26],[-35,0]],[[4984,2657],[21,-1],[5,-26],[-48,0],[0,26],[22,1]],[[4903,2608],[13,17],[42,0],[0,-18],[-55,1]],[[4961,2625],[48,0],[-4,-18],[-44,0],[0,18]],[[5047,2625],[5,-43],[-32,-6],[-15,8],[8,41],[34,0]],[[5072,2612],[3,-29],[-20,-1],[-6,47]],[[5087,2499],[-8,80],[10,-3]],[[5089,2580],[-11,2],[-3,28]],[[5055,2579],[21,0],[8,-80],[-20,2],[-9,78]],[[5050,2506],[-10,4],[-8,65],[10,2],[10,1],[8,-76],[-10,4]],[[5037,2511],[-25,9],[-7,58],[25,-4],[7,-63]],[[5002,2584],[-40,0],[0,19],[42,0],[-2,-19]],[[4963,2581],[39,0],[3,-23],[-40,3],[-2,20]],[[4967,2556],[38,-4],[2,-30],[-40,15],[0,19]],[[4950,2576],[11,-4],[3,-34],[-10,3]],[[4891,2594],[8,9],[59,0],[1,-22],[-10,-1]],[[4906,2542],[4,-31]],[[4910,2511],[-31,32],[27,-1]],[[4933,2456],[29,9],[-2,20]],[[4960,2485],[10,0],[4,-40],[-35,-5],[-6,16]],[[4989,2524],[3,-32],[-20,-2],[-5,41],[22,-7]],[[4974,2485],[18,1],[4,-37],[-18,-3],[-4,39]],[[5050,2457],[-4,0],[-5,48],[10,-4]],[[5085,2489],[3,-28],[-11,-2]],[[5045,2445],[5,-52],[-10,2]],[[5063,2389],[-10,4],[-6,49],[10,2]],[[5112,2362],[-11,7],[-5,52],[10,-3]],[[5078,2457],[11,1],[4,-34],[-12,2]],[[5087,2372],[26,-15]],[[5113,2357],[3,-22],[-28,21],[-1,16]],[[4954,2372],[0,16],[32,-2]],[[4991,2392],[-7,-1],[-6,52],[19,3],[4,-44]],[[4953,2394],[-13,42],[35,6],[5,-51],[-27,3]],[[4861,2481],[5,-54]],[[4866,2427],[-8,-1],[-6,55],[9,0]],[[4850,2481],[5,-55],[-17,-3],[-6,57],[18,1]],[[4830,2480],[5,-57],[-17,-3],[-6,60],[18,0]],[[4790,2477],[18,2],[6,-60],[-18,-3],[-6,61]],[[4794,2413],[5,-47],[-23,-3],[-12,111],[23,2],[7,-63]],[[4769,2402],[4,-39],[-21,-4],[-7,37]],[[4677,2522],[58,-30],[1,-18],[-40,-10],[-19,58]],[[4698,2458],[39,12],[1,-26],[-32,-10],[-8,24]],[[4735,2350],[-3,4],[-25,76],[32,11],[3,-44],[6,-44],[-13,-3]],[[4736,2347],[13,3],[5,-40]],[[4752,2356],[35,5],[6,-61],[-23,-16],[-11,26],[-7,46]],[[4789,2362],[27,3],[4,-45],[-25,-18],[-6,60]],[[4814,2416],[1,-48],[-14,-2],[-5,47],[18,3]],[[4836,2420],[4,-48],[-21,-3],[-1,48],[18,3]],[[4820,2366],[21,3],[3,-27],[-20,-19],[-4,43]],[[4838,2420],[18,3],[6,-64],[-16,-15],[-8,76]],[[4770,2279],[50,35],[4,-15]],[[4826,2300],[-2,18],[49,44]],[[4872,2368],[-8,-7],[-6,62],[9,1]],[[4658,2195],[10,-68],[-12,-7]],[[4623,2463],[13,-2],[-1,-56],[17,-85],[-14,-5],[4,-83],[7,-14]],[[4634,2216],[-4,102]],[[4674,2119],[-2,8],[42,26],[4,-9]],[[4712,2167],[-5,14],[52,33]],[[4668,2157],[36,22],[9,-22],[-40,-25],[-5,25]],[[4662,2196],[28,18],[12,-31],[-34,-21],[-6,34]],[[4748,2246],[9,-29],[-51,-32],[-13,31],[36,16],[19,14]],[[4643,2283],[38,-45],[10,-19],[-29,-17],[-17,31],[-2,50]],[[4653,2316],[51,-65],[15,-3],[24,14],[5,-11],[-21,-15],[-35,-16],[-8,20],[-42,50],[0,22],[11,4]],[[4690,2277],[45,17],[8,-27],[-25,-14],[-13,2],[-15,22]],[[4672,2298],[56,21],[6,-22],[-48,-18],[-14,19]],[[4721,2342],[5,-20],[-56,-22],[-12,18],[63,24]],[[4651,2346],[60,23],[8,-23],[-64,-24],[-4,24]],[[4644,2380],[57,21],[9,-28],[-60,-24],[-6,31]],[[4640,2414],[51,19],[9,-28],[-57,-22],[-3,31]],[[4684,2455],[5,-18],[-49,-19],[0,42],[34,-9],[10,4]],[[4633,2496],[33,12],[16,-50],[-42,8],[-7,30]],[[4620,2469],[-5,49],[9,3],[11,-54],[-15,2]],[[4628,2522],[29,11],[8,-22],[-32,-12],[-5,23]],[[4869,1891],[8,-14],[27,-80],[-22,-7],[-32,97],[19,4]],[[4860,1782],[-17,44],[23,0],[12,-38],[-18,-6]],[[4846,1886],[18,-57],[-35,1],[-5,52],[22,4]],[[4821,1882],[5,-52],[-12,0],[-22,47],[29,5]],[[4732,2017],[-5,12],[17,11],[28,-68],[4,-30]],[[4677,2006],[12,2],[6,-13]],[[4698,1996],[-5,12],[33,20],[5,-12]],[[4680,2045],[8,-34],[-14,-3]],[[4720,2038],[4,-6],[-32,-20],[-7,24],[26,16],[9,-14]],[[4703,2069],[7,-14],[-25,-15],[-2,9]],[[4753,2097],[0,-1],[13,-38],[-21,-13],[-12,38],[-3,-2],[12,-37],[-12,-8]],[[4788,2117],[3,-11],[-12,-7]],[[4773,2095],[-14,-9],[-3,12]],[[4800,2080],[-31,-20],[-9,24],[17,10]],[[4780,2032],[-10,25],[31,17],[10,-25],[-31,-17]],[[4751,2030],[-5,12],[21,13],[10,-26],[-20,-12],[-6,13]],[[4776,2025],[18,-37],[-21,-13],[-15,38],[18,12]],[[4784,2022],[-3,6],[31,18],[12,-34],[-27,-22],[-13,32]],[[4781,1924],[-7,48],[21,13],[33,-46],[-47,-15]],[[4844,1890],[-54,-9],[-8,40],[49,14],[13,-45]],[[4870,1895],[-21,-4],[-15,46],[-36,50],[32,26],[20,-48],[20,-70]],[[4914,1918],[-29,-17],[-11,33],[27,17],[13,-33]],[[4878,2000],[0,-59],[-5,-4],[-28,81],[33,-1],[0,-17]],[[4900,1994],[1,-39],[-20,-9],[0,71],[19,0],[0,-23]],[[4917,1920],[-13,33],[34,21],[13,-33],[-34,-21]],[[4934,1986],[3,-8],[-34,-20],[0,59],[24,0],[7,-31]],[[4954,1942],[-13,34],[34,21],[13,-33],[-34,-22]],[[4946,1983],[-6,-4],[-10,38],[44,0],[0,-16],[-28,-18]],[[5015,1980],[-23,-15],[-14,36],[0,16],[23,0],[14,-37]],[[5017,1982],[-13,35],[47,-15],[-34,-20]],[[5057,2004],[-27,10],[0,26],[-23,61],[32,18],[26,-63]],[[4977,2052],[40,16],[10,-29],[0,-24],[-23,6],[-25,0],[-2,31]],[[4977,2084],[28,16],[11,-28],[-39,-16],[0,28]],[[5036,2122],[-59,-34],[-1,26],[50,32],[10,-24]],[[4930,2085],[42,27],[2,-51],[-43,0],[-1,24]],[[4930,2021],[1,37],[42,0],[1,-37],[-44,0]],[[4901,2021],[-19,34],[45,27],[0,-61],[-26,0]],[[4867,2021],[-5,22],[17,10],[17,-31],[-29,-1]],[[4844,2021],[-14,37],[17,12],[17,-49],[-20,0]],[[4866,2082],[12,-27],[-17,-11],[-11,27],[16,11]],[[4829,2061],[-8,26],[34,23],[10,-24],[-36,-25]],[[4822,2171],[24,-63],[-26,-19],[-6,28]],[[4851,2187],[24,-60],[-26,-18],[-24,61],[26,17]],[[4882,2132],[-5,-3],[-24,60],[11,6]],[[4909,2131],[5,-13],[-46,-31],[-11,25],[26,17]],[[4927,2087],[-47,-29],[-11,26],[46,31],[12,-28]],[[4964,2110],[-35,-21],[-12,28],[46,30]],[[4963,2151],[-47,-31],[-5,12]],[[4930,2240],[15,10],[10,-24]],[[4920,2294],[10,7],[14,-48],[-14,-10]],[[4951,2343],[3,-21],[13,-34],[-26,-17],[-12,35]],[[4984,2244],[-26,-16]],[[4958,2228],[-16,40],[24,16],[18,-40]],[[4969,2359],[12,7],[37,2],[41,-9]],[[5059,2359],[0,-15],[-23,7],[-48,4],[-32,-8]],[[5062,2357],[36,-20],[36,-31]],[[5134,2306],[-5,-26],[-15,1],[-4,24],[-9,13],[-39,24],[0,15]],[[5062,2338],[27,-15],[16,-15],[6,-26],[-40,2],[-9,54]],[[5027,2349],[19,-63]],[[5046,2286],[-13,1],[-17,63],[11,-1]],[[5037,2347],[22,-7],[9,-56],[-13,1]],[[5055,2285],[-18,62]],[[4957,2344],[26,6],[31,1],[5,-27],[-36,-4],[-20,-7],[-6,31]],[[4964,2310],[21,6],[35,5],[11,-34],[-60,5],[-7,18]],[[4973,2287],[27,-2],[27,-65],[-22,-6],[-32,73]],[[5032,2283],[12,-60],[-14,-3],[-26,65],[28,-2]],[[5082,2233],[-10,47],[25,-2],[6,-41],[-21,-4]],[[5105,2238],[-5,40],[28,-2],[-5,-34],[-18,-4]],[[5119,2220],[-32,-10]],[[5087,2210],[-4,19],[39,10],[-3,-19]],[[5084,2209],[-40,-13]],[[5044,2196],[-12,21],[48,11],[4,-19]],[[5016,2187],[-10,24],[23,6],[12,-22]],[[5094,2189],[22,12]],[[5116,2201],[-10,-40],[-12,28]],[[5057,2166],[35,20],[12,-28],[6,3],[-11,-61],[-12,-8],[-30,74]],[[5032,2152],[22,13],[30,-74],[-22,-12],[-20,44],[-10,29]],[[5073,2048],[20,11]],[[5093,2059],[-7,-43],[-13,32]],[[5107,2054],[-10,10]],[[5097,2064],[6,32],[23,14],[14,-37],[-33,-19]],[[5110,2141],[14,-28],[-18,-10],[4,38]],[[5177,2143],[-51,-27],[-15,33],[2,12],[92,52]],[[5203,2177],[1,-4]],[[5137,2179],[-23,-14],[6,36],[8,5]],[[5204,2110],[-62,-35],[-13,36],[14,9]],[[5296,2128],[4,-14],[-28,-16],[-7,13]],[[5263,2109],[6,-12],[-27,-16],[-6,12]],[[5233,2092],[6,-12],[-27,-16],[-5,14]],[[5137,1941],[-3,20],[30,16],[5,-28],[-18,-10],[-14,2]],[[5136,1923],[8,-53],[-31,-9],[-8,51]],[[5154,1933],[16,9],[14,-68],[-35,-19],[-10,69],[15,9]],[[5186,1875],[-14,68],[31,17],[16,-66],[-33,-19]],[[5228,1974],[20,-63],[-26,-15],[-17,66],[23,12]],[[5251,1912],[-10,34],[41,24],[5,-37],[-36,-21]],[[5231,1976],[42,24],[8,-27],[-41,-23],[-9,26]],[[5290,1934],[-4,27],[-11,41],[38,22],[1,-77],[-24,-13]],[[5331,2036],[1,-80]],[[5317,1947],[-2,80]],[[5312,1689],[33,14],[5,-14]],[[5336,1782],[11,6]],[[5347,1788],[11,-94]],[[5350,1690],[-8,37],[-6,55]],[[5365,1640],[-3,-6],[-37,11],[1,16]],[[5384,1614],[-20,-6],[2,29],[18,-23]],[[5265,1603],[-1,7],[47,35],[48,-12],[-3,-7],[-32,-6],[-59,-17]],[[5232,1590],[38,13],[91,23],[2,-18],[-126,-29]],[[5277,1638],[6,-14],[-21,-13],[2,-8],[-53,-22],[-29,-13],[-3,14],[68,44],[23,21],[7,-9]],[[5325,1662],[-1,-15],[-25,-5],[-15,-17],[-7,14]],[[5275,1641],[-9,23],[30,18],[11,-8]],[[5200,1599],[-10,23],[74,40],[5,-14],[-29,-25],[-40,-24]],[[5197,1627],[-6,28],[72,41],[20,-18],[-27,-19],[-59,-32]],[[5246,1715],[16,-18],[-71,-41],[-7,24],[62,35]],[[5184,1682],[-8,25],[51,29],[15,-8],[4,-11],[-62,-35]],[[4963,1660],[9,9],[10,-33]],[[4985,1639],[-10,33],[23,-18]],[[5082,1746],[-23,-14],[-7,18],[41,24],[6,-19],[-17,-9]],[[5063,1816],[16,6],[-10,65],[-18,-6]],[[5051,1881],[-2,21],[-1,16],[22,7],[28,10],[17,-114],[6,-25],[-45,-26],[-13,46]],[[5075,2006],[2,-17]],[[5077,1989],[-18,-10],[-17,-9]],[[5042,1970],[-2,20],[35,16]],[[5038,1989],[8,-67],[-6,-2],[-21,57],[19,12]],[[5016,1976],[22,-57],[-23,-15],[-22,57],[23,15]],[[5046,1917],[3,-33],[-21,-13],[-12,29],[30,17]],[[4955,1938],[35,21],[22,-56],[-35,-22],[-22,57]],[[4990,1848],[-11,29],[34,22],[11,-30],[-34,-21]],[[4946,1854],[30,22],[11,-30],[-12,-8],[-29,16]],[[4953,1936],[22,-56],[-35,-21],[-21,57],[34,20]],[[4916,1913],[21,-56],[-20,-12],[-22,56],[21,12]],[[4968,1834],[-39,-23],[-11,30],[21,12],[29,-19]],[[4936,1792],[-5,15],[41,25],[4,-25],[-38,-23],[-2,8]],[[5001,1822],[-20,15],[68,43],[5,-25],[-53,-33]],[[5029,1806],[-21,15],[47,29],[4,-26],[-30,-18]],[[5074,1768],[-24,-14],[-19,50],[28,18],[15,-54]],[[5023,1802],[-39,-23],[-4,25],[21,14],[22,-16]],[[5007,1710],[-21,66],[41,25],[21,-49],[-12,-8],[-29,-34]],[[4990,1752],[3,-11],[-35,-20],[-18,59],[37,23],[3,-20]],[[5005,1709],[-31,-32],[-15,41],[34,20],[12,-29]],[[4917,1798],[11,7],[43,-132],[-9,-9]],[[5107,1739],[-11,37],[24,14],[9,-38]],[[5064,1715],[-4,14],[19,11],[4,-14]],[[5083,1726],[-19,-11]],[[5036,1693],[-13,29],[26,26],[12,-35],[2,-8]],[[5063,1705],[-10,-6],[6,-18],[14,-49],[-3,-14]],[[5070,1618],[-8,-4]],[[5062,1614],[-3,9],[-17,-10]],[[5042,1613],[-11,13]],[[5031,1626],[28,28],[-14,49],[-9,-10]],[[5131,1649],[-24,-13],[-6,7],[37,74],[9,-38]],[[5033,1692],[-16,-16],[-14,25],[18,19],[12,-28]],[[5286,1862],[-6,16]],[[5280,1878],[38,22],[3,-17],[-35,-21]],[[5145,1710],[24,13]],[[5169,1723],[4,-14],[-24,-13],[-4,14]],[[5172,1725],[37,21]],[[5209,1746],[15,-8],[-49,-27],[-3,14]],[[5335,1782],[0,-15],[-80,-45],[-10,8]],[[5295,1759],[40,23]],[[5163,1753],[-26,-9]],[[5137,1744],[-10,48],[31,-17],[5,-22]],[[5179,1762],[-14,-7]],[[5165,1755],[-1,16],[15,-9]],[[5333,1806],[-3,26]],[[5330,1832],[11,5]],[[5341,1837],[3,-25]],[[5344,1812],[-11,-6]],[[5178,1615],[9,-29],[-8,-3],[-8,28],[7,4]],[[5188,1587],[-9,30],[9,5],[12,-27],[-12,-8]],[[5170,1643],[8,-26],[-7,-3],[-7,24],[6,5]],[[5179,1618],[-8,25],[18,9],[7,-24],[-17,-10]],[[5171,1645],[-6,24],[15,9],[8,-21],[-17,-12]],[[5165,1671],[-12,7],[-3,14],[23,14],[7,-26],[-15,-9]],[[5310,1690],[-22,19]],[[5288,1709],[50,31],[7,-30],[-35,-20]],[[5287,1711],[-19,16]],[[5268,1727],[67,39],[3,-25],[-51,-30]],[[5055,2281],[10,-53],[-19,-4],[-11,58],[20,-1]],[[5067,2229],[-11,52],[13,-1],[10,-48],[-12,-3]],[[5002,3334],[-17,-61],[-15,9],[-18,20],[22,52],[33,1],[-5,-21]],[[5004,3333],[6,22],[23,0],[2,-29],[-18,-66],[-29,12],[16,61]],[[5050,3246],[-30,12],[26,92],[28,-12],[-24,-92]],[[5093,3312],[-3,-11],[-21,8],[9,28],[19,-9],[-4,-16]],[[5069,3306],[29,-12],[-5,-14],[-28,12],[4,14]],[[5065,3289],[28,-12],[-10,-42],[-31,10],[13,44]],[[5103,3297],[21,-9],[2,-28],[-32,7],[9,30]],[[5092,3260],[34,-5],[-2,-29],[-39,9],[7,25]],[[5132,3180],[-6,37],[17,-5]],[[5122,3212],[8,-32],[-17,9],[9,23]],[[5083,3227],[39,-9],[-12,-28],[-34,21],[7,16]],[[5089,3134],[6,13],[16,-10]],[[5114,3138],[-17,13],[13,31],[19,-12]],[[5074,3206],[33,-22],[-12,-30],[-34,21],[13,31]],[[5056,3137],[-9,7],[13,28],[32,-22],[-5,-15]],[[5016,3202],[40,-27],[-12,-29],[-42,27],[14,29]],[[5075,3229],[2,-6],[-20,-46],[-28,22],[18,41],[28,-11]],[[5033,3245],[11,-4],[-17,-42],[-10,7],[16,39]],[[5018,3252],[13,-6],[-16,-38],[-12,9],[15,35]],[[5002,3212],[11,-9],[-13,-29],[-12,9],[14,29]],[[4973,3211],[18,-12],[-6,-15],[-19,10],[7,17]],[[4985,3265],[30,-12],[-16,-35],[-27,18],[13,29]],[[4947,3297],[23,-23],[13,-7],[-14,-29],[-40,27],[0,16],[18,16]],[[4928,3263],[39,-27],[-7,-14],[-37,25],[5,16]],[[4964,3196],[-45,31],[3,17],[40,-27],[7,16],[9,-6],[-14,-31]],[[5142,3220],[-15,5],[3,16],[-4,53],[-23,7],[6,22],[26,-11]],[[4374,3618],[17,-7],[-5,-21]],[[4371,3597],[-9,-22]],[[4362,3575],[-7,13],[-32,14]],[[4323,3602],[-2,1]],[[4321,3603],[2,11],[-19,0],[6,19],[20,-8],[2,11],[39,-17]],[[4371,3619],[3,-1]],[[4161,3731],[9,8],[47,-79],[-11,-11]],[[4246,3689],[-24,-28],[-18,29],[10,8],[32,-9]],[[4430,3663],[11,35],[21,-9],[-10,-37]],[[4452,3639],[15,48],[20,-10],[-15,-47],[-20,9]],[[4436,2683],[-3,96],[45,-63]],[[4480,2753],[-13,-16],[-18,25],[21,14],[10,-23]],[[4432,2834],[0,19],[17,-1],[-1,-19],[-16,1]],[[4479,2802],[1,-3]],[[4487,2762],[-5,-9],[-30,77],[-1,27],[-19,-1],[-1,49],[-1,56]],[[4426,2827],[-8,1],[-26,41],[15,14],[18,1],[1,-57]],[[4348,3375],[-13,-18],[-19,9],[-11,15],[9,13],[-9,11]],[[4305,3405],[9,13],[-5,9],[-40,72],[-12,8],[6,19]],[[4266,3386],[-50,46],[25,38]],[[4241,3470],[16,-12],[-5,-12],[22,-13],[5,6],[15,-11]],[[4294,3428],[-28,-42]],[[4086,3320],[11,24],[25,-19],[4,-15],[-17,-7],[-23,17]],[[4083,3407],[40,-62],[23,-30]],[[4146,3315],[-8,-15],[-9,6],[-5,23],[-57,44],[16,34]],[[4110,3619],[-8,-42],[11,-4]],[[4113,3573],[-5,-20]],[[4108,3553],[-15,6],[-7,-17],[-8,4],[8,46],[-5,10]],[[4081,3602],[22,19],[7,-2]],[[3953,3586],[40,44],[5,-19],[9,10],[16,-36],[-26,-23]],[[3997,3562],[-31,14],[-13,10]],[[4081,3703],[-19,-23]],[[4062,3680],[-16,20],[23,28],[12,-25]],[[4368,2994],[-30,22],[-5,21],[41,-30],[-6,-13]],[[4341,3061],[-40,28]],[[4318,3111],[33,-27],[-10,-23]],[[3533,3279],[11,-51],[30,25],[2,-12],[-19,-16],[-7,-28],[-16,-5],[-3,13],[2,18]],[[3616,3319],[36,21],[9,-27],[-82,-69],[-3,18],[30,22],[16,18],[-6,17]],[[3613,3318],[7,-19],[-17,-14],[-6,22],[16,11]],[[3555,3291],[28,15],[12,1],[7,-23],[-30,-22],[-7,-12],[-10,41]],[[3690,3338],[-28,-25],[-10,32],[31,24],[12,-26],[-5,-5]],[[3763,3489],[0,-46],[-27,13]],[[3709,3354],[5,7],[32,-32]],[[3748,3333],[-32,30],[58,66]],[[3745,3200],[-42,46],[33,11],[1,-18],[20,-21],[-12,-18]],[[3792,3151],[-45,47],[14,17],[42,-42],[-11,-22]],[[3942,3344],[-8,9],[33,17],[4,-11],[23,-2],[23,9],[-3,19],[23,7],[1,-25],[-26,-72],[-70,49]],[[3932,3357],[-29,38],[17,12],[27,-42],[-15,-8]],[[3955,3409],[10,-33],[-17,-10],[-26,42],[18,9],[15,-8]],[[3930,3489],[15,-47],[-7,-18],[-11,-5]],[[3998,3411],[6,-25]],[[4004,3386],[-33,-10],[-7,19],[34,16]],[[3941,3504],[-8,-7],[-7,12]],[[3834,3243],[7,-5],[-11,-22]],[[3532,3291],[17,13],[14,-56],[-18,-15],[-13,58]],[[3702,3351],[-6,-7],[-13,27],[-31,-21],[-2,-8],[-54,-32],[-42,-15],[-3,10],[12,9]],[[3469,2930],[-1,19],[37,4],[4,-35],[-3,-7],[-37,19]],[[3554,2928],[7,-45],[-22,10],[-6,31]],[[3487,2992],[6,-2],[1,-34],[-26,-3],[-1,22]],[[3515,2997],[8,-37],[-26,-4],[-2,34],[20,7]],[[3364,3073],[30,-7],[10,-40],[-31,11]],[[3374,3095],[18,2],[2,-26],[-26,6]],[[3368,3077],[6,18]],[[3381,3129],[16,0],[-5,-28],[-18,-1]],[[3374,3100],[7,29]],[[3484,3265],[7,-43]],[[3633,2955],[6,19],[50,-18],[-14,-29],[-46,13],[4,15]],[[3712,2964],[25,-44],[1,-12],[-36,11],[-25,7],[8,15],[17,-3],[-2,4],[-13,3],[19,30],[6,-11]],[[3669,2972],[16,31],[19,-25],[-13,-19],[-22,13]],[[3616,2985],[10,22],[20,-14],[-12,-25],[-21,8],[3,9]],[[3615,3067],[26,-22],[-19,-40],[-27,19],[20,43]],[[3657,3018],[-10,-22],[-20,14],[17,37],[19,-17],[-6,-12]],[[3633,3148],[3,28],[52,-51],[-21,-10],[-34,33]],[[3679,3210],[-15,24],[15,10],[18,1],[44,-47],[-22,-30],[-40,42]],[[3567,2979],[8,8],[58,-22],[-3,-9],[-63,23]],[[3709,3112],[11,16],[-13,17],[14,18],[22,-23],[-18,-31]],[[3758,3154],[-13,-13],[-11,11],[22,30],[35,-38],[-4,-10]],[[3558,2497],[-3,22],[30,13],[3,-25]],[[3605,2546],[-13,63],[-5,-1],[-11,42],[6,3],[-13,61],[-6,12],[-19,-7]],[[3544,2719],[16,20],[22,9],[24,-89],[12,-37],[9,-58],[-22,-18]],[[3710,2653],[-10,36],[17,9]],[[3717,2698],[21,-22],[-16,-15],[-12,-8]],[[3660,2735],[16,7],[14,-17],[11,-30],[-23,-13],[-18,53]],[[3604,2684],[12,-7],[5,-21],[-6,-9],[-11,37]],[[3540,2810],[15,8],[-2,30],[-11,-2]],[[3542,2846],[-1,32]],[[3563,2867],[8,-74],[11,-40],[-21,-9],[-31,10]],[[3533,2769],[19,-3],[-12,44]],[[3595,2839],[-10,-6]],[[3585,2833],[-14,-8]],[[3571,2825],[-5,38]],[[3714,2864],[-15,20],[9,24],[28,-8],[-22,-36]],[[3695,2827],[52,69],[23,-7],[-15,-39],[-14,6],[-29,-49],[-17,20]],[[3649,2779],[44,46],[17,-21],[-31,-30],[5,-26],[38,-42],[-8,-4],[-12,-7],[-12,35],[-12,15],[-18,-8],[-11,42]],[[3754,2847],[-25,-58],[-16,17],[30,49],[11,-8]],[[3727,2785],[-38,-32],[-10,19],[31,29],[17,-16]],[[3688,2748],[17,15],[11,-34],[15,5],[5,-19],[-13,-8],[-35,41]],[[3721,2775],[10,-38],[-14,-5],[-11,31],[15,12]],[[3728,2781],[17,-4],[10,-54],[-16,-7],[-16,61],[5,4]],[[3710,2858],[-23,26],[-12,-22]],[[3673,2814],[-4,-5],[-15,49],[14,2],[8,20],[-11,8],[5,32],[35,-11],[-10,-27],[18,-20],[-3,-4]],[[3558,2740],[-34,-40],[-4,1],[-21,56],[2,4],[57,-21]],[[3660,2730],[15,-50],[-50,-25],[-3,13]],[[3622,2668],[23,9],[-12,39],[27,14]],[[3592,2507],[-2,28],[27,12]],[[3617,2547],[1,-11],[14,2],[3,-21]],[[3635,2517],[-43,-10]],[[3652,2648],[-14,-6],[4,-15],[10,4],[7,-29],[-31,-15]],[[3628,2587],[-9,46],[6,17],[23,12]],[[3985,2648],[-72,48],[-41,-82],[-33,23],[-12,-31],[-25,21],[-6,16],[6,50],[-31,-6],[-23,2],[-8,23]],[[3740,2712],[53,20],[45,15],[16,6],[43,-28],[-6,-14],[4,-2],[6,14],[87,-58],[-3,-17]],[[3823,2748],[12,53]],[[3835,2801],[47,-31],[-59,-22]],[[3996,2702],[-8,-33],[-53,35],[12,29],[49,-31]],[[4000,2726],[-4,-21],[-47,30],[7,19],[44,-28]],[[3843,2810],[56,-33]],[[3899,2777],[-12,-6],[-47,30],[3,9]],[[3862,2819],[9,8],[11,26]],[[3882,2853],[57,-39],[-27,-27],[-50,32]],[[3927,2795],[19,-12]],[[3946,2783],[-6,-14],[-24,15],[11,11]],[[3941,2847],[19,-12]],[[3960,2835],[-16,-17],[-17,11],[14,18]],[[3912,2847],[20,36],[22,-13],[-29,-40],[-13,17]],[[3910,2849],[-21,4],[18,46],[23,-14],[-20,-36]],[[3845,2930],[1,5],[35,-19],[-6,-23],[-34,20],[4,17]],[[3842,2930],[-11,-52],[-22,8],[14,61],[19,-17]],[[3800,2888],[-13,40]],[[3787,2928],[15,12],[8,18],[11,-9],[-14,-62],[-7,1]],[[3783,2935],[-34,67],[-2,16]],[[3747,3018],[24,-28],[36,-29],[-5,-12],[-19,-14]],[[3794,3095],[7,-39],[12,-7],[-40,-55],[-25,28]],[[3802,2970],[21,45],[-16,20]],[[3807,3035],[10,13],[23,-11],[-31,-73],[-7,6]],[[3810,3109],[18,-12],[-13,-43],[-12,5],[-4,17],[11,33]],[[3791,3115],[16,-8],[-9,-27],[-7,35]],[[3795,3142],[40,-20],[-7,-17],[-24,12],[-13,1],[4,24]],[[3808,3168],[35,-19],[-6,-22],[-39,20],[10,21]],[[3821,3194],[30,-18],[-6,-22],[-35,16],[11,24]],[[3900,3147],[-12,-17],[-40,22],[6,23],[46,-28]],[[3824,2950],[-11,11],[18,41]],[[3903,2948],[5,19]],[[3908,2967],[29,-9],[-2,-8],[-32,-2]],[[3864,3003],[76,-35]],[[3940,2968],[-3,-7],[-57,18],[-18,12],[2,12]],[[3847,3039],[10,20],[20,-9],[-9,-20],[-21,9]],[[3977,2898],[-10,-31],[-18,11],[14,62],[25,-11],[-11,-31]],[[3957,3109],[27,-16],[0,-13],[-19,0],[-13,9],[5,20]],[[4006,3030],[12,45]],[[4018,3075],[30,-14],[-12,-47],[-30,16]],[[3842,3237],[23,-9],[-13,-47],[-29,17],[19,39]],[[3851,3254],[20,-7]],[[3871,3247],[-5,-17],[-22,9],[7,15]],[[3915,3228],[-5,-15],[-41,16],[5,16]],[[3874,3245],[41,-17]],[[4083,3157],[15,35]],[[4139,3163],[-2,-7]],[[4137,3156],[-13,-24]],[[4124,3132],[-28,4],[3,13],[-16,8]],[[4018,3146],[12,25],[43,-25],[-5,-16]],[[4068,3130],[-4,-10],[-31,14],[-15,12]],[[4012,2591],[-29,13]],[[3983,2604],[11,59]],[[4110,3046],[-29,-33],[-7,-20]],[[4074,2993],[-34,19],[8,34],[14,37],[35,-23],[13,-14]],[[4223,3040],[18,-17],[-37,-65],[-17,16],[36,66]],[[4249,3015],[-19,-33],[9,-9]],[[4239,2973],[-17,-32],[-16,15],[36,66],[7,-7]],[[4328,2940],[-38,-65]],[[4290,2875],[-10,9],[38,65],[10,-9]],[[4143,2850],[18,-16],[-27,-53],[-13,14],[22,55]],[[4334,2634],[-28,-12],[-54,-26],[1,2]],[[4323,2661],[11,-27]],[[4429,2668],[-19,-11],[11,-28],[-14,-20],[3,-12],[-20,-27],[1,-24]],[[4391,2546],[-10,2],[4,21],[-40,11],[-5,35],[24,8],[5,-30],[16,-5],[4,55],[-1,-6],[-48,-20],[-3,16],[0,11],[91,39],[0,-6],[1,-9]],[[4402,2675],[0,22]],[[4428,2708],[1,-22],[-27,-11]],[[4305,2732],[-10,20],[17,11],[16,21],[13,-20],[-36,-32]],[[4328,2787],[-14,-18],[-20,-14],[0,14],[22,35],[12,-17]],[[4270,2791],[33,64],[26,-28],[-36,-55],[-1,-18],[-15,1]],[[4324,2815],[7,9],[11,-17],[-13,-18],[-11,17],[6,9]],[[4362,2750],[-4,-4],[-27,40],[12,19],[29,-41],[-10,-14]],[[4347,2810],[12,19],[27,-44],[-9,-17],[-31,37],[1,5]],[[4312,2854],[-6,6],[38,65],[13,-13],[-24,-41]],[[4340,2862],[17,-29],[-14,-22],[-16,28]],[[4404,2809],[-28,45],[-18,-19]],[[4358,2835],[-21,38],[22,37],[6,-6],[51,-80],[-12,-15]],[[4238,2665],[-130,90],[3,9],[130,-88],[-3,-11]],[[4178,2890],[11,-28]],[[4189,2862],[-16,-32],[-31,-59]],[[4142,2771],[-7,8],[29,58],[-8,8]],[[4156,2845],[22,45]],[[4263,2700],[23,23]],[[4286,2723],[31,-52]],[[4261,2638],[3,6]],[[4008,2788],[1,11],[222,-155],[-3,-8]],[[4320,2675],[-14,22],[11,10],[14,-21],[-11,-11]],[[4316,1954],[6,-82],[-33,-19],[27,101]],[[4393,1894],[4,-16],[-31,12],[-41,-21],[-1,8]],[[4342,2033],[13,23]],[[4366,2017],[-24,16]],[[4404,2039],[9,-8],[-31,-77]],[[4432,1915],[-8,6],[27,88]],[[4451,2009],[16,-6],[-35,-88]],[[4454,1917],[-15,-13]],[[4439,1904],[-5,9]],[[4434,1913],[36,89],[15,-8]],[[4453,2109],[6,7],[50,32],[9,-26],[-56,-37],[-9,24]],[[4540,2237],[-3,-23],[-33,1],[-27,14],[7,11],[56,-3]],[[4494,2260],[48,-3],[-2,-17],[-47,2],[1,18]],[[4496,2283],[49,-2],[-3,-20],[-43,2],[-3,20]],[[4532,2329],[18,-2],[-5,-43],[-15,0],[2,45]],[[4512,2329],[18,-1],[-3,-44],[-16,1],[1,44]],[[4497,2308],[13,20],[-1,-43],[-13,1],[1,22]],[[4550,2330],[-23,2],[2,19],[23,0],[-2,-21]],[[4467,2307],[1,47],[57,-2],[-1,-20],[-20,-1],[-10,-22],[-1,-41],[-12,-1]],[[4493,2264],[-1,-21],[-15,-12],[-16,3],[4,27],[28,3]],[[4439,2255],[-2,-19],[-35,1],[-2,20],[38,2],[1,-4]],[[4389,2334],[-4,34],[58,10],[-2,-74]],[[4441,2304],[-10,0],[-5,17]],[[4449,2313],[14,-7],[-1,-41],[-19,-2],[1,52],[5,-2]],[[4464,2355],[-1,-44],[-19,9],[2,58],[19,3],[-1,-26]],[[4386,2401],[40,82],[12,-10],[-3,-11],[9,-44],[-2,-36],[-22,-4],[-6,60],[2,-61],[-27,-4],[-3,28]],[[4460,2384],[-14,-2],[0,47],[-8,34],[3,8],[18,-13],[8,-38],[-2,-34],[-5,-2]],[[4492,2438],[-29,21],[-36,27],[11,23],[0,76],[3,4],[19,26]],[[4460,2615],[28,-26],[3,6],[22,-19],[-1,16],[11,13]],[[4523,2605],[9,-32],[12,-67]],[[4534,2579],[3,15],[27,-23],[12,-26],[-31,-22],[-11,56]],[[4504,2673],[17,-14],[-17,-35],[-23,18],[23,31]],[[4383,2487],[4,47]],[[4387,2534],[28,40]],[[4415,2574],[7,-25],[-19,-27],[22,-20]],[[4425,2502],[-8,-16]],[[4417,2486],[-21,19],[-13,-18]],[[4389,2231],[-29,-2],[-4,67],[-7,96],[28,5],[3,-24],[11,-119],[-2,-23]],[[4159,2295],[-17,43],[15,10],[37,-28],[-35,-25]],[[4174,2501],[2,1],[29,24]],[[4205,2526],[5,-30],[-32,2],[15,-6],[0,-14],[-14,-3],[-16,-52],[-10,10],[2,13],[19,55]],[[4205,2492],[-1,-93],[-4,-8],[-34,32],[16,53],[13,-1],[1,17],[9,0]],[[4229,2492],[-3,-113],[-4,-9],[-18,17],[2,11],[1,94],[22,0]],[[4252,2494],[0,-138],[-9,-6],[-17,17],[3,12],[2,113],[21,2]],[[4353,2505],[-19,-8],[-8,25],[24,-1],[3,-16]],[[4263,2495],[-6,1],[1,29],[63,-4],[8,-24],[-66,-2]],[[4254,2496],[-41,0],[-1,29],[44,0],[-2,-29]],[[4283,2547],[63,-1]],[[4346,2546],[2,-19],[-64,0],[-1,20]],[[4283,2558],[-3,-31],[-72,1]],[[4208,2528],[24,36],[16,16],[25,16],[41,18],[21,10]],[[4335,2624],[10,-66]],[[4345,2558],[-6,0],[-56,0]],[[4547,2498],[0,9],[-2,13],[32,22],[7,-13],[3,1],[-25,47]],[[4562,2577],[8,9],[11,-17],[20,10]],[[4601,2579],[6,-37],[7,-77]],[[4163,2215],[-22,62],[19,12],[19,-50],[23,15],[5,-9]],[[4207,2245],[-44,-30]],[[4210,2247],[-5,8],[35,23]],[[4240,2278],[4,-9],[-34,-22]],[[4122,2314],[-11,-8],[16,-33]],[[4127,2273],[-36,-23],[39,119],[24,-20],[-32,-21],[0,-14]],[[4149,2288],[-16,33],[-8,-5]],[[4125,2316],[-1,10],[15,10],[18,-43],[-8,-5]],[[4277,2308],[-33,-21],[-17,14],[40,25]],[[4267,2326],[10,-18]],[[4279,2305],[4,-10],[-25,-17]],[[4258,2278],[-10,6],[31,21]],[[4128,2213],[-9,-6],[-16,45],[8,5]],[[4288,2099],[-6,16]],[[4282,2115],[51,35],[1,-20],[-46,-31]],[[4250,1950],[0,-8]],[[4138,1873],[112,77]],[[4548,2163],[7,-30]],[[4555,2133],[-31,-13],[-11,27],[35,16]],[[4321,1995],[-17,-4],[-54,-37],[-113,-79],[-14,39],[131,90],[56,37],[25,17],[-1,-35],[-13,-28]],[[4486,1996],[-64,33],[-12,10],[13,4],[16,47],[-12,5],[-18,-54],[-6,4]],[[4426,2103],[9,-3],[8,42]],[[4448,2175],[3,21]],[[4451,2196],[32,-5],[5,12]],[[4488,2203],[21,-51],[-57,-39],[8,-31],[-17,1],[-5,-14],[23,-12],[-21,14],[23,7],[17,-9],[6,-1]],[[4488,2070],[-19,15],[51,32],[8,-20]],[[4388,2157],[4,40],[12,6],[0,29],[51,-3],[-3,-20]],[[4434,2201],[-23,2],[1,-14],[-14,0],[-4,-34],[-6,2]],[[4414,2050],[13,42],[11,-6],[-15,-39],[-9,3]],[[4555,2395],[-1,-12],[-47,-5],[3,-16],[44,3],[-1,-11],[-51,2],[-34,2],[1,24],[18,3]],[[4486,2389],[-17,-3],[2,37],[-8,32],[39,-26]],[[4554,2367],[-43,-4],[-2,16],[44,3],[1,-15]],[[4092,2246],[9,4],[16,-45],[-9,-5]],[[4183,2082],[-9,24]],[[4174,2106],[116,74],[43,32],[0,-31],[-150,-99]],[[4172,2109],[-4,10],[81,54]],[[4284,2181],[-43,-29],[-69,-43]],[[4217,2003],[-15,34]],[[4202,2037],[20,13],[14,-34],[-19,-13]],[[4201,2041],[-16,38]],[[4185,2079],[24,16],[15,-39],[-23,-15]],[[4352,2296],[-36,-25]],[[4316,2271],[-7,116],[36,8],[4,-50],[-16,-6],[1,-22],[16,10],[2,-31]],[[4345,2578],[38,-10],[-4,-18],[-31,9],[-3,19]],[[4374,2405],[-66,-11],[0,98],[47,1],[8,-36],[-22,-4],[-1,-15],[-19,0],[0,-22],[21,0],[0,36],[21,3],[11,-50]],[[4366,2626],[22,7],[-4,-42],[-14,3],[-4,32]],[[4298,2386],[0,92],[-32,-1],[0,-111]],[[4266,2366],[-12,-1],[0,112],[-1,16],[52,-1],[0,-101],[-7,-5]],[[4173,2501],[-19,-53],[-2,-15],[-21,-60],[-143,100],[-5,2]],[[3845,2072],[-17,-8],[-41,0]],[[3964,2148],[14,-11],[-27,-32],[-27,1]],[[3711,2060],[-6,16],[-33,18],[-5,-13]],[[3667,2081],[-24,17],[3,41]],[[3728,2097],[-17,-37]],[[3643,2137],[-6,-35],[-36,21]],[[3622,2107],[32,-21],[38,-32],[-3,-13],[-32,-60]],[[3579,1812],[-35,-78],[-33,120],[-4,22],[12,-15],[5,-38],[28,10]],[[3773,2088],[-21,-58],[-17,5],[-22,13],[17,34]],[[3499,1889],[6,-7],[3,-25],[35,-125],[-31,-67],[-25,-57]],[[3521,1563],[-36,35],[5,7],[15,-6],[17,-17],[63,46],[-8,31],[48,43],[-7,-4],[-23,37],[21,47]],[[3505,1636],[31,-40],[-14,-12],[-15,16],[-16,7],[14,29]],[[3547,1602],[-10,-6],[-28,37]],[[3534,1701],[4,9],[16,-12],[-6,-19],[18,-62],[-11,-9]],[[3561,1688],[14,-28],[8,-31],[-16,-11],[-17,53],[1,18]],[[3577,1660],[-7,18],[38,34],[9,-16],[-40,-36]],[[3568,1679],[-6,11],[23,19],[9,25],[13,-21],[-39,-34]],[[3560,1692],[-5,6],[23,50],[15,-14],[-13,-28],[-20,-14]],[[3569,1756],[8,-6],[-23,-51],[-13,12],[2,9]],[[3602,1805],[-25,-55],[-7,6]],[[3615,1783],[-21,-47],[-15,15],[24,53]],[[3773,1296],[-52,-39]],[[3713,1250],[36,86]],[[3814,1945],[-7,20],[-26,35],[-30,24],[18,41],[41,-6]],[[3966,2074],[-17,26],[30,37],[16,-14]],[[4027,2095],[12,-10],[-42,-70],[-8,15],[38,65]],[[4003,2001],[-5,12],[43,71],[7,-9]],[[4048,2075],[-45,-74]],[[3677,1983],[14,20],[18,37],[24,-13],[42,-30],[29,-40],[12,-29],[-5,-43]],[[4682,1869],[-37,-1]],[[5011,678],[-17,43]],[[5155,835],[-7,30],[16,13],[83,-159],[5,-1],[29,23],[6,-12],[-41,-27]],[[5024,851],[77,69],[26,-33]],[[5308,745],[-19,-14],[-6,12],[24,20]],[[5307,763],[1,-18]],[[5269,771],[29,24],[5,-31],[-21,-17],[-13,24]],[[5267,769],[12,-25],[-26,-20],[-15,22],[29,23]],[[5236,750],[-14,26],[29,25],[14,-29],[-29,-22]],[[5268,775],[-15,28],[27,22],[16,-27],[-28,-23]],[[5237,837],[24,20],[17,-28],[-26,-22],[-15,30]],[[5234,834],[15,-30],[-29,-25],[-16,31],[30,24]],[[5186,844],[30,25],[16,-31],[-30,-24],[-16,30]],[[5219,872],[22,18],[18,-29],[-24,-21],[-16,32]],[[5217,875],[-17,33],[21,18],[18,-32],[-22,-19]],[[5167,881],[30,25],[17,-33],[-30,-25],[-17,33]],[[5125,896],[21,19],[16,-33],[-16,-13],[-21,27]],[[5149,917],[13,13],[17,-34],[-14,-11],[-16,32]],[[5181,898],[-16,34],[13,12],[18,-34],[-15,-12]],[[5177,954],[19,17],[23,-42],[-21,-17],[-21,42]],[[5309,810],[-10,-9],[-54,89],[-59,108],[7,6]],[[5146,921],[-13,28],[30,27],[13,-28],[-30,-27]],[[5122,899],[-18,24],[26,23],[14,-28],[-22,-19]],[[4978,985],[125,123],[58,-128],[-139,-125]],[[5006,1132],[82,-28],[-8,-11]],[[4866,1073],[-14,39]],[[4894,1201],[23,-25],[78,-39]],[[5013,1027],[-11,-14]],[[5378,796],[-32,-23],[-27,42],[15,14]],[[5333,830],[-14,-14],[-58,94],[-59,100],[10,5]],[[5349,993],[7,-10],[-20,-45],[5,-20],[15,-20]],[[5387,949],[-14,-22],[-28,29],[14,26],[28,-33]],[[5357,901],[-18,31],[5,22],[28,-29],[-15,-24]],[[5366,890],[-7,9],[29,48],[10,-7],[13,-11],[-31,-49],[-14,10]],[[5429,841],[-40,48],[10,16],[42,-43]],[[5443,865],[-42,43],[12,19],[43,-39]],[[5382,960],[-32,39],[-31,82],[114,-49]],[[5538,1085],[3,-72],[4,-38],[-48,37],[41,73]],[[5536,1110],[2,-22],[-38,-64]],[[5500,1024],[-9,9]],[[5377,1342],[21,49],[33,-36],[33,-29]],[[5471,1181],[-54,-17]],[[3244,3266],[4,-33]],[[3423,3469],[1,-42]],[[3383,3427],[-2,41],[42,1]],[[3046,3760],[-2,31]],[[3044,3791],[32,2],[0,10]],[[3076,3803],[0,5],[-32,-4],[-1,56],[29,4]],[[3088,3866],[-9,18],[7,6],[-24,49],[19,16],[21,-34],[48,-74]],[[3461,3737],[-10,4],[-3,-24],[-19,1],[-12,-22]],[[3417,3696],[-31,30],[17,42],[29,-12],[12,30],[23,-16],[-6,-33]],[[3684,3766],[6,-3]],[[3690,3763],[7,-11],[-19,-74],[-7,-4]],[[3671,3674],[-29,15],[10,41]],[[3848,3620],[-1,-41],[-8,-7],[-69,30],[2,85],[37,-20],[39,-47]],[[3241,3828],[33,-24]],[[3274,3804],[1,-16],[-40,16]],[[3623,3788],[-10,-39]],[[3613,3749],[-51,19],[16,34],[45,-14]],[[3295,3779],[-16,8],[-2,23],[21,7]],[[3297,3432],[0,-5]],[[3295,3427],[-30,3]],[[3265,3430],[9,28],[4,37],[14,4],[-5,-20],[10,-3],[9,24],[50,-1],[3,-31],[-43,-3]],[[2787,3646],[1,-56],[-10,-1],[-7,56],[16,1]],[[2866,3915],[-2,7],[32,7],[95,26],[9,6],[22,-12]],[[3022,3949],[-29,-8]],[[2876,3929],[-13,-4],[-9,35],[19,5],[3,-36]],[[2877,3928],[-3,37],[15,2],[3,-36],[-15,-3]],[[2909,3935],[-16,-4],[-2,36],[16,2],[2,-34]],[[2961,3949],[-15,-4],[-2,28],[15,2],[2,-26]],[[2974,3977],[2,-23],[-14,-5],[-2,26],[14,2]],[[2678,3603],[21,-1],[-9,53],[32,16]],[[2722,3671],[20,4],[4,31]],[[2746,3706],[16,-56]],[[2762,3650],[6,-21],[5,-40],[-43,-2],[-48,3],[-4,13]],[[2995,3980],[-4,-22],[-14,-4],[-2,23],[20,3]],[[2684,3584],[33,-3],[57,3],[6,-25]],[[2602,3847],[-21,7],[-15,33],[13,16],[4,26],[18,7],[21,-71],[-20,-18]],[[2519,3902],[0,17]],[[2618,3940],[-9,-13],[-9,30],[-1,-18],[-17,-8],[-25,12],[16,12],[-33,20],[-8,-10],[8,-19],[-3,-20],[5,-10],[21,-8],[-13,-37],[-25,14]],[[1933,4523],[0,31],[22,13],[11,-24]],[[1997,4592],[10,-30],[-41,-16],[-8,28]],[[2047,4601],[2,-32],[-41,-7],[-9,30]],[[2129,4590],[-3,-29],[-76,9],[-1,31]],[[2202,4573],[-4,-27],[-70,14],[2,30]],[[2253,4574],[-23,-35],[-31,6],[5,28]],[[2266,4525],[1,1],[-34,11],[23,36]],[[2746,4318],[8,-30],[-39,-7],[38,3],[15,-58],[4,-2],[16,-53],[12,-16]],[[2391,3479],[5,9],[29,-10]],[[2500,3663],[4,20],[41,69],[12,-21]],[[2344,2905],[7,16],[15,-40],[-8,-4]],[[2332,2946],[19,41],[20,-13],[-21,-43],[-18,15]],[[2391,2947],[-19,-38],[-9,-12],[-10,25],[19,38],[19,-13]],[[2374,2865],[-10,30],[12,17],[21,42],[10,-8]],[[2437,2919],[7,-8],[-49,-96],[-11,2]],[[2454,2746],[-5,9],[24,54],[7,-5]],[[2405,3031],[-33,-54],[-18,13],[16,33],[22,26],[13,-18]],[[2422,3007],[-22,-42],[-18,16],[28,43],[12,-17]],[[2443,2978],[-21,-41],[-24,19],[25,49],[20,-27]],[[2444,2976],[19,-25],[-18,-37],[-21,21],[20,41]],[[2483,2918],[-19,-20],[-17,14],[17,38],[21,-28]],[[2485,2922],[-2,-4]],[[2523,3123],[-7,27],[31,-14],[-24,-13]],[[2529,3110],[-3,9],[25,16],[12,-5],[-34,-20]],[[2577,3148],[-14,-17],[-54,25],[6,20],[62,-28]],[[2501,3192],[5,20],[37,-17],[-8,-21],[-34,18]],[[2185,3466],[6,-5],[-30,-92],[-21,7]],[[2309,3240],[13,26],[9,-2]],[[2239,3646],[-14,-3],[-3,23],[14,8],[3,-28]],[[2142,3796],[-9,22],[17,5],[13,-42],[-12,-3],[-9,18]],[[2164,3781],[-13,42],[17,7],[8,-47],[-12,-2]],[[2208,3835],[13,0],[7,-50],[-15,0],[-5,50]],[[2240,3833],[-4,-27],[-12,1],[-2,28],[18,-2]],[[2242,3833],[16,-3],[-11,-48],[-17,1],[12,50]],[[2260,3829],[14,-4],[-9,-45],[-14,1],[9,48]],[[2276,3825],[14,-4],[-11,-44],[-13,3],[10,45]],[[2306,3817],[15,-4],[-15,-45],[-12,4],[12,45]],[[2362,3798],[15,-6],[-15,-44],[-15,6],[15,44]],[[2413,3765],[-2,-15],[-39,20],[8,22],[33,-27]],[[2427,3731],[-18,3],[4,19],[15,-7],[-1,-15]],[[2142,3826],[-12,-4],[-15,38],[15,4],[12,-38]],[[2265,3889],[18,-1],[-2,-32],[-6,-27],[-14,4],[4,22],[0,34]],[[2302,3884],[-11,-59],[-15,4],[7,26],[1,32],[18,-3]],[[2321,3877],[-15,-56],[-14,4],[11,58],[18,-6]],[[2339,3869],[-17,-52],[-14,4],[14,56],[17,-8]],[[2390,3828],[-11,-33],[-16,7],[12,36],[15,-10]],[[2416,3764],[-36,29],[7,21],[34,-37],[-5,-13]],[[2431,3747],[-16,8],[6,21],[25,-28],[4,-24],[-21,5],[2,18]],[[2344,3884],[-5,-13],[-34,14],[-40,6],[-1,11]],[[2392,3832],[-16,8],[3,10]],[[2426,3784],[-5,-6],[-33,38],[5,14]],[[2553,3778],[-53,-85],[-17,4]],[[1751,4379],[6,6],[20,-9],[19,-42],[48,-62]],[[1783,4416],[3,12],[117,81],[17,18]],[[2143,3083],[-6,20],[15,19]],[[1907,4535],[5,-14],[-10,-10],[-6,15],[11,9]],[[2185,3782],[-8,1],[-15,93],[8,3]],[[2170,3879],[5,-38]],[[2199,3834],[8,1],[5,-50],[-24,-2]],[[2199,3904],[1,-14],[-38,-12],[-4,26],[6,3]],[[1927,4562],[1,-21],[-15,-18],[-5,12],[-13,-8],[7,-17],[-116,-80],[6,17],[-29,4]],[[2095,3885],[10,5],[15,-48],[29,-64],[-5,-8],[-19,35],[-21,58]],[[2113,3864],[-5,27],[40,13],[9,-3],[2,-23],[-46,-14]],[[2066,3303],[6,11],[27,-24],[25,-16],[11,-16],[9,8]],[[2150,3226],[-27,30],[-57,47]],[[2215,3685],[20,-9],[-15,-9],[4,-26],[16,3],[1,-21]],[[2378,3851],[-16,-49],[-6,3]],[[2473,3278],[43,-20],[25,27],[17,-40],[-7,-22]],[[2550,3218],[-3,-11],[-3,-10],[-54,27]],[[2490,3224],[-4,12],[1,11],[-5,2]],[[2453,2977],[-8,8],[-31,45],[5,6],[69,-36],[-20,-45],[-15,22]],[[2359,2876],[8,4],[10,-36],[5,-31],[18,-25],[33,-24],[8,-19],[12,-2]],[[2075,3328],[-14,-20],[0,-31],[-11,-24]],[[2058,3224],[22,39],[33,-25],[10,13],[18,-18],[-5,-52]],[[1369,3414],[15,19],[13,53],[7,11],[26,-2],[-11,-71]],[[1423,3426],[9,69],[18,-1]],[[1411,3528],[-20,-46],[-6,25],[3,23],[23,-2]],[[1402,3500],[13,27],[62,-6],[4,-26],[-79,5]],[[1501,3487],[-14,-5],[-6,40],[22,5],[5,-37],[-7,-3]],[[1537,3536],[-14,-38],[-13,-6],[-5,36],[32,8]],[[1361,3571],[24,-3],[0,-33],[-28,2]],[[1417,3531],[15,32],[39,-4],[6,-34],[-60,6]],[[1502,3531],[-22,-5],[-6,34],[23,10],[5,-39]],[[1533,3583],[6,-42],[-34,-9],[-6,39],[34,12]],[[1572,3560],[-30,-18],[-3,41],[33,-23]],[[1541,3586],[25,14],[3,-31],[-28,17]],[[1578,3564],[-9,32],[45,10],[2,-25],[-38,-17]],[[1430,3567],[-42,5],[-2,41],[62,-7],[-18,-39]],[[1491,3613],[6,-39],[-23,-10],[-7,43],[4,18],[20,-12]],[[1498,3608],[29,-18],[-28,-15],[-1,33]],[[1355,3660],[25,-4],[3,-39],[-29,3]],[[1462,3647],[25,-1],[3,-25],[-18,8],[-10,18]],[[1493,3616],[-4,31],[33,8],[9,-59],[-38,20]],[[1554,3663],[11,-59],[-30,-11],[-9,63],[28,7]],[[1612,3642],[2,-33],[-45,-10],[-6,32],[49,11]],[[1612,3656],[0,-11],[-50,-11],[-5,30],[20,13],[20,-4]],[[1456,3650],[-58,8],[5,31],[50,-8],[3,-31]],[[1374,3749],[36,-5],[-12,-62],[-35,5],[8,-25],[-15,2]],[[1434,3740],[-7,-52],[-23,3],[9,52],[21,-3]],[[1469,3734],[-17,-37],[1,-13],[-24,3],[7,53],[33,-6]],[[1518,3687],[4,-28],[-34,-8],[-1,6],[31,30]],[[1481,3731],[32,-13],[4,-23],[-27,-29],[-4,2],[-8,59],[3,4]],[[1553,3667],[-28,-7],[-5,34],[16,18],[10,-4],[7,-41]],[[1577,3681],[-21,-13],[-8,42]],[[1418,3808],[-6,-62],[-24,3],[6,65]],[[1469,3737],[-33,5],[17,46],[16,-13],[4,-29],[-4,-9]],[[1376,3835],[3,33],[24,38],[19,-22],[-1,-48],[-14,-9],[-31,8]],[[1405,3909],[33,27],[38,-42],[-9,-5],[-45,1],[-17,19]],[[1540,3981],[31,-4],[-4,-30],[-28,-37],[-10,4],[11,67]],[[1526,4030],[-7,-41],[-20,4]],[[1541,3986],[13,79],[27,-6],[-10,-78],[-30,5]],[[1562,4137],[-11,-68],[-7,2]],[[1658,4117],[-3,-2]],[[1655,4115],[-36,-10],[-16,20]],[[1356,3533],[28,-3],[-2,-23],[5,-49],[-16,-35]],[[1589,4123],[-7,-60],[-28,6],[11,67]],[[1242,2524],[7,-34],[9,-52],[6,-31],[1,-8]],[[1323,2466],[-19,3],[1,21],[28,7],[61,29],[22,16],[2,-11]],[[1416,2530],[-25,-19]],[[1391,2511],[-63,-34],[-5,-11]],[[1319,2616],[22,5],[12,-72],[-18,-9],[-16,76]],[[1343,2622],[20,4],[10,-68],[-18,-9],[-12,73]],[[1386,2629],[7,-61],[-18,-9],[-10,67],[21,3]],[[1414,2572],[-19,-3],[-7,60],[22,3],[4,-60]],[[1440,2618],[54,8],[1,-16],[-19,-7],[-33,-25],[-3,40]],[[1413,2648],[101,15],[3,-29],[-102,-16],[-2,30]],[[1298,2727],[23,4],[14,-75],[-23,-6],[-14,77]],[[1349,2732],[25,2],[8,-69],[-21,-3],[-12,70]],[[1402,2735],[6,-67],[-24,-3],[-8,69],[26,1]],[[1413,2653],[-7,75],[43,-22],[-18,-51],[-18,-2]],[[1435,2656],[17,48],[63,-33],[-2,-4],[-78,-11]],[[1460,2739],[-10,-29],[-43,23],[-4,36],[57,-30]],[[1202,2865],[41,64],[21,15],[6,-10],[-16,-14],[5,-27],[-9,-6],[-26,-42],[-22,20]],[[1247,2824],[-21,19],[19,31],[15,15],[6,-36],[-19,-29]],[[1264,2808],[-15,14],[19,30]],[[1367,2939],[0,19],[21,2]],[[1403,2775],[3,35],[54,-29],[-11,-31],[-46,25]],[[1490,2729],[-38,20],[11,32],[23,3],[4,-55]],[[1529,2707],[-34,19],[-3,27],[47,-19],[-10,-27]],[[1559,2691],[-28,15],[10,27],[23,-13],[12,-14],[-17,-15]],[[1520,2788],[0,-39],[-29,8],[-2,27],[31,4]],[[1522,2788],[17,3],[0,-54],[-17,8],[0,43]],[[1559,2793],[9,1],[8,-51],[12,-25],[-5,-5],[-6,-5],[-15,17],[-20,10],[-1,56],[8,1]],[[1586,2797],[8,-41],[9,-24],[-13,-13],[-12,26],[-8,50],[16,2]],[[1617,2745],[-12,-12],[-8,18],[-9,46],[17,2],[12,-54]],[[1404,2841],[26,2],[3,-38],[-30,11],[1,25]],[[1549,2796],[-61,-8],[-2,27],[61,7],[2,-26]],[[1555,2797],[-3,26],[47,4],[5,-24],[-49,-6]],[[1552,2827],[-2,26],[42,3],[6,-25],[-46,-4]],[[1602,2822],[-8,34],[52,5],[4,-21],[-48,-18]],[[1612,2780],[-9,39],[46,17],[7,-23],[-44,-33]],[[1404,2877],[63,6],[3,-34],[-66,-5],[0,33]],[[1470,2884],[72,7],[2,-35],[-71,-7],[-3,35]],[[1593,2858],[-2,38],[47,2],[7,-34],[-52,-6]],[[1648,2864],[-6,34],[38,10],[6,-35],[-38,-9]],[[1425,2883],[-21,-3],[-1,48],[18,-10],[44,5],[2,-36],[-23,-2]],[[1467,2923],[76,10],[-1,-39],[-72,-7],[-3,36]],[[1548,2895],[1,35],[21,2],[19,-6],[1,-27],[-42,-4]],[[1591,2899],[-1,27],[42,5],[5,-29],[-46,-3]],[[1698,2871],[-9,-1]],[[1689,2870],[-17,107],[-3,46],[9,50],[13,6]],[[1403,2931],[0,11],[60,7],[2,-23],[-44,-5],[-18,10]],[[1550,2967],[41,7],[31,9],[5,-26],[-51,-10],[-5,-7],[-22,-3],[1,30]],[[1630,2957],[-4,27],[42,5],[5,-29],[-43,-3]],[[1593,2977],[-27,-5],[1,29],[50,9],[5,-25],[-29,-8]],[[1587,3007],[-20,-3],[1,19],[48,7],[0,-17],[-29,-6]],[[1625,2986],[-5,32],[47,5],[1,-31],[-43,-6]],[[1619,3021],[-1,19],[43,8],[9,-4],[-3,-19],[-48,-4]],[[1677,3073],[-7,-27],[-8,3],[-43,-7],[-1,27],[59,4]],[[1081,3002],[22,8],[13,4],[15,-35]],[[1131,2979],[-13,-7]],[[1118,2972],[-12,-5]],[[1141,2910],[13,8]],[[1154,2918],[28,-43],[2,-10],[1,-6]],[[1185,2859],[-7,-15],[-4,-33],[5,-84],[27,4]],[[1206,2731],[9,-52]],[[1215,2679],[-24,-3],[14,-62],[21,2]],[[1226,2616],[4,-28],[2,-10],[-24,1],[3,-5],[22,2],[4,-25],[-24,6],[1,-24],[0,14],[23,2],[4,-17]],[[1036,3115],[-18,-66],[29,-11],[29,-31]],[[1129,3178],[-19,-72],[-1,-45],[-44,8],[-13,2],[3,25],[16,5],[-18,-1],[-2,-61],[-32,11],[12,49],[8,17]],[[1052,3061],[12,-2],[2,-20],[18,-13],[12,-1],[4,33]],[[1100,3058],[9,1],[7,-41],[-31,-9],[-15,9],[-16,17],[-2,26]],[[1171,2899],[-9,30],[-3,51],[-5,21],[-42,81],[0,16],[23,79]],[[1308,2963],[2,32],[55,-1],[-1,-27]],[[1270,3000],[6,27],[34,-1],[-3,-28],[-37,2]],[[1378,3039],[0,-14],[-64,3],[2,14]],[[1512,3039],[3,37]],[[1515,3076],[30,7]],[[1545,3083],[1,-24]],[[1617,3077],[-1,28],[64,5],[1,-29]],[[1518,3131],[20,0],[4,-28],[-26,-1]],[[1615,3127],[12,2],[7,20],[15,-9],[29,-6],[1,-21],[-64,-5],[0,19]],[[1521,3164],[12,0],[4,-31],[-18,1]],[[1541,3134],[-4,30],[65,2],[29,-16],[-6,-19],[-26,7],[-58,-4]],[[1321,3358],[-19,-33],[-57,-40],[-55,-47],[-57,-54]],[[1334,3306],[-38,8],[13,13],[13,25]],[[1570,3169],[-27,-1]],[[1313,2394],[23,20],[15,-12],[-22,-19]],[[1395,2335],[11,21],[69,-54],[-6,12],[33,26],[40,36],[45,45],[0,13],[13,-20],[-103,-107],[-11,-14]],[[1332,2382],[21,18],[51,-42],[-12,-24],[-60,48]],[[1420,2519],[1,-17],[-72,-70],[-71,-64],[-3,5]],[[1400,2474],[9,-21],[5,-26],[-18,-21],[-16,28],[-28,-28],[-13,10],[61,58]],[[1394,2405],[-16,-16],[-25,15],[26,27],[15,-26]],[[1455,2376],[-34,-28],[-43,36],[36,36],[11,2],[30,-46]],[[1507,2539],[-57,-46],[-38,-40],[-9,24],[21,20],[48,35],[25,24],[10,-17]],[[1480,2486],[-15,-14],[-30,-38],[-17,-13],[-5,28],[17,22],[40,33],[10,-18]],[[1457,2377],[-31,46],[15,14],[30,-46],[-14,-14]],[[1517,2520],[-36,-34],[-10,18],[37,33],[9,-17]],[[1529,2503],[-38,-34],[-9,15],[37,34],[10,-15]],[[1799,2797],[-49,-23],[2,41],[37,24],[6,-1],[4,-41]],[[1852,2824],[-52,-27],[-3,45],[49,10],[6,-28]],[[1599,2479],[-5,-5],[14,-34],[-6,-24],[-15,22],[-8,-9],[-35,56],[-45,71],[8,7]],[[1507,2563],[27,-43]],[[1501,2342],[-31,-24],[-12,0],[9,34],[19,20],[15,-30]],[[1578,2426],[4,-6],[-42,-43],[-15,25],[41,43],[12,-19]],[[1228,2833],[-11,-22],[6,-49],[-18,-1],[-14,84],[9,14],[28,-26]],[[1229,2832],[32,-29],[-7,-26],[2,-13],[-31,-2],[-6,37],[10,33]],[[1465,2958],[79,10],[0,-33],[-77,-9],[-2,32]],[[1284,3163],[-4,-9]],[[1280,3154],[-69,48]],[[1736,2766],[-9,48]],[[1840,2881],[6,-26],[-35,-6],[-22,-8],[-37,-23],[-3,-44],[-13,-8]],[[1678,2771],[18,-27],[-57,-26],[-52,-41],[-5,2]],[[1403,2959],[0,4],[46,28],[7,-18]],[[1459,2967],[4,-16],[-60,-7],[0,8]],[[1518,3003],[-3,-37],[-52,-5],[-2,7]],[[1546,3020],[-2,-50],[-26,-3],[2,38]],[[1615,3041],[1,-8],[-48,-8],[-4,-53],[-14,-2],[2,54]],[[1552,3032],[0,22],[22,12],[40,3],[1,-21]],[[1315,2628],[2,-11],[-26,-9],[-24,104],[10,7]],[[1285,2722],[11,5],[17,-91]],[[1409,2646],[1,-12],[-46,-5],[-45,-11],[-2,11]],[[1315,2638],[-3,10],[25,6],[70,11],[1,-11]],[[1250,2592],[39,13],[10,-50],[3,-42]],[[1302,2505],[1,-12],[-52,0],[-16,94],[9,3]],[[1340,2517],[3,-11],[-38,-13],[-1,12]],[[1340,2527],[-4,11],[62,30],[17,2],[1,-11]],[[1414,2545],[-19,-14],[-49,-24],[-4,11]],[[1480,2483],[32,-55],[-40,-36],[-30,48],[15,21],[23,22]],[[1530,2501],[22,-35],[-38,-37],[-22,38],[38,34]],[[1565,2447],[-42,-44],[16,-26],[-37,-34],[-17,31],[-19,-21],[-5,-24],[-11,-6],[-25,22],[110,101],[18,18],[12,-17]],[[1234,2685],[30,25],[10,-34],[15,-68],[-39,-13]],[[1244,2592],[-9,-3],[-16,90],[9,3]],[[1400,2751],[1,-13],[-78,-4],[-26,-4],[-2,15]],[[1294,2753],[-1,12],[106,6],[1,-12]],[[1263,2749],[-5,35],[7,16],[26,-35],[4,-36],[-18,-7],[-43,-34],[-16,-5],[-9,52]],[[1207,2746],[-2,12],[52,3],[2,-13]],[[1972,1300],[16,-8]],[[1963,1133],[-28,-3],[17,177],[11,-5]],[[1992,1288],[6,-3]],[[1983,1135],[-17,-2]],[[2080,1598],[-16,5],[14,101],[17,-12]],[[2287,1593],[2,-53],[-29,16],[27,37]],[[2333,1561],[10,2],[14,-35],[-1,-13],[-41,14],[5,34],[13,-2]],[[2323,1596],[15,-6],[4,-24],[-26,2]],[[2342,1588],[46,-29],[-30,-50],[0,31],[-12,24],[-4,24]],[[2053,1723],[13,60],[23,-12],[-13,-61],[-23,13]],[[2154,1796],[21,-1],[-6,-41],[-11,-37],[-3,-44],[-23,7]],[[2097,1782],[16,-10]],[[2096,1696],[-17,12],[18,74]],[[2158,1673],[1,26],[6,28],[31,-34],[-27,-26],[-11,6]],[[2203,1644],[-31,21],[26,25],[7,-27],[-2,-19]],[[2206,1643],[1,26],[-7,22],[18,12],[11,-37],[-3,-33],[-20,10]],[[2228,1631],[3,37],[-10,36],[19,13],[12,-34],[2,-34],[-6,-26],[-20,8]],[[2276,1658],[7,-46],[-32,10],[6,35],[19,1]],[[2293,1609],[-5,1],[-7,49],[24,2],[20,-8],[-32,-44]],[[2329,1649],[8,-8],[-2,-46],[-37,13],[31,41]],[[2338,1594],[-1,20],[23,-6],[47,-23],[-8,-30],[-22,17],[-39,22]],[[2166,1730],[9,36],[20,-23],[21,-37],[-18,-12],[-19,26],[-13,10]],[[2261,1730],[9,-28],[6,-40],[-19,-2],[-2,22],[-13,36],[19,12]],[[2281,1662],[-4,32],[-12,39],[30,19],[5,-33],[1,-55],[-20,-2]],[[2326,1656],[-18,8],[17,44],[23,-13],[-22,-39]],[[2330,1652],[22,41],[21,-22],[-35,-27],[-8,8]],[[2403,1636],[4,-25],[-5,-20],[-42,20],[15,21],[28,4]],[[2160,1945],[6,-10],[-12,-16],[8,-9],[-5,-20],[-21,3],[-24,-29],[-28,-47],[-13,-33],[-7,3],[-17,-61]],[[2178,1795],[20,3],[15,-36],[25,-42],[-19,-12],[-31,50],[-12,11],[2,26]],[[2219,1807],[13,-28],[28,-45],[-20,-12],[-28,47],[-12,31],[19,7]],[[2297,1754],[19,12],[9,-36],[-6,-31],[-15,-35],[-1,56],[-6,34]],[[2367,1739],[-18,-41],[-23,12],[1,25],[22,7],[18,-3]],[[2353,1695],[29,67],[14,-8],[-8,-34],[-13,-26],[15,-6],[-2,-12],[-13,-4],[-22,23]],[[2156,1886],[-5,-33],[-15,3],[-26,-37],[-15,13],[21,33],[21,25],[19,-4]],[[2151,1850],[-4,-27],[-14,-17],[-20,11],[25,35],[13,-2]],[[2157,1846],[21,-15],[-3,-32],[-24,2],[6,45]],[[2210,1834],[8,-24],[-40,-11],[3,31],[29,4]],[[2257,1751],[-34,58],[20,14],[15,-38],[13,-9],[1,-15],[-15,-10]],[[2369,1743],[-16,3],[-26,-8],[-8,30],[28,18],[28,-18],[-6,-25]],[[2176,1908],[10,-26],[-8,-47],[-21,15],[11,58],[8,0]],[[2189,1877],[20,-40],[-28,-3],[8,43]],[[2222,1813],[-16,42],[-11,22],[30,-7],[10,-10],[7,-33],[-20,-14]],[[2245,1825],[19,25],[7,-50],[0,-20],[-15,13],[-11,32]],[[2189,1921],[36,-13],[14,-25],[-5,-16],[-8,6],[-33,7],[-12,30],[8,11]],[[2266,1861],[-20,-30],[-10,33],[5,17],[25,-20]],[[2306,1829],[-10,-24],[-23,9],[-7,39],[3,5],[37,-29]],[[2326,1813],[22,-22],[-30,-19],[0,15],[8,26]],[[2179,1962],[1,-11],[-14,-6]],[[2192,1937],[29,25],[19,5],[24,-11],[-32,-20],[-17,-18],[-24,9],[1,10]],[[2218,1916],[18,18],[29,-18],[29,-25],[-18,-15],[-40,31],[-18,9]],[[2279,1874],[18,13],[31,-19],[26,-2],[-23,-34],[-52,42]],[[2399,1843],[-23,-19],[-22,-30],[-23,21],[12,29],[39,6]],[[2190,1943],[-9,15],[29,35],[17,-21],[-37,-29]],[[2240,1936],[27,18],[23,-15],[33,-31],[-26,-16],[-20,19],[-37,25]],[[2300,1889],[25,16],[19,-20],[19,-8],[-22,-7],[-28,8],[-13,11]],[[2407,1901],[-15,-39],[-10,-10],[-37,-4],[22,28],[40,25]],[[2325,1910],[-18,18],[-37,31],[30,5],[32,-3],[22,-41],[-29,-10]],[[2366,1879],[-20,8],[-19,19],[50,15],[13,9],[10,-28],[-34,-23]],[[2248,2040],[42,-12],[-23,-19],[-23,-30],[-14,-6],[-18,23],[36,44]],[[2286,1969],[-23,-5],[-23,9],[25,30],[35,25],[16,-29],[-22,-10],[-8,-20]],[[2365,1960],[-38,8],[-38,1],[18,26],[32,0],[14,5],[12,-40]],[[2357,1921],[-22,39],[43,-7],[16,3],[-3,-17],[-11,-11],[-23,-7]],[[2397,1957],[19,7],[11,-32],[-5,-13],[-19,-16],[-10,25],[4,29]],[[2320,1998],[-17,29],[38,-7],[22,-10],[-15,-9],[-28,-3]],[[2417,1977],[-1,-7],[-25,-9],[-23,-2],[-12,43],[10,7],[51,-32]],[[2273,2070],[42,-20],[-20,-17],[-44,10],[22,27]],[[2327,2028],[-28,4],[18,16],[27,9],[27,-4],[45,-32],[2,-40],[-43,27]],[[2294,2092],[55,-12],[-1,-20],[-30,-8],[-42,21],[18,19]],[[2303,2107],[57,-13]],[[2360,2094],[-10,-11],[-54,12],[7,12]],[[1735,1852],[6,17],[37,64],[16,-11],[-10,-24],[-2,-29],[-47,-17]],[[1823,1896],[-35,-24],[-2,24],[10,25],[27,-25]],[[1859,1856],[-35,1],[-31,-5],[-6,16],[39,26],[33,-38]],[[1794,1833],[0,16],[36,5],[26,-2],[-17,-25]],[[1839,1827],[-18,8],[-27,-2]],[[1826,1899],[-28,25],[14,29],[34,-27],[-20,-27]],[[1847,1928],[-34,27],[14,23],[18,-17],[22,-6],[-20,-27]],[[1845,1881],[-16,15],[40,56],[15,7],[6,-32],[-22,-17],[-23,-29]],[[1919,1794],[-43,40],[28,21],[13,3],[5,-22],[-3,-42]],[[1938,1781],[-17,12],[5,23],[-7,42],[15,-3],[21,-15],[-17,-59]],[[1941,1779],[14,49],[21,56],[14,-33],[-15,-34],[-13,-50],[-21,12]],[[1964,1766],[7,29],[19,51],[12,-30],[-18,-62],[-20,12]],[[2026,1735],[-39,18],[17,59],[18,-50],[4,-27]],[[2029,1734],[-13,56],[13,14],[21,-9],[-14,-63],[-7,2]],[[1872,1958],[-30,9],[-13,13],[15,19],[39,-32],[-11,-9]],[[1900,1894],[-7,30],[22,2],[34,-8],[12,2],[11,-26],[-17,-5],[-36,8],[-19,-3]],[[1956,1843],[-23,17],[-15,2],[-16,29],[18,2],[23,-7],[30,5],[-17,-48]],[[1991,1854],[-13,32],[17,26],[19,-17],[-23,-41]],[[1992,1850],[24,43],[18,-13],[-29,-57],[-13,27]],[[2006,1817],[30,61],[19,-11],[-20,-46],[-20,-27],[-9,23]],[[2031,1807],[26,58],[20,-10],[-26,-57],[-20,9]],[[1945,1960],[42,-8],[-25,-27],[-17,35]],[[2021,1947],[-42,-51],[-16,26],[12,8],[15,22],[31,-5]],[[2049,1943],[-33,-46],[-19,17],[28,32],[24,-3]],[[2071,1939],[-9,-18],[-27,-38],[-17,13],[29,35],[5,11],[19,-3]],[[2096,1937],[-40,-67],[-19,11],[28,39],[8,19],[23,-2]],[[1904,2010],[25,-41],[-38,-4],[-46,36],[21,22],[13,0],[25,-13]],[[1975,1960],[-36,8],[-24,31],[28,10],[40,-11],[-8,-38]],[[2024,1953],[-47,7],[8,37],[50,-9],[-11,-35]],[[2028,1952],[10,34],[42,-12],[-8,-29],[-44,7]],[[2075,1945],[8,28],[44,-2],[-8,-21],[-19,-7],[-25,2]],[[2127,1925],[-7,18],[16,18],[17,-7]],[[1831,2063],[36,4],[-7,-31],[4,-10],[-16,-13],[-16,24],[-12,9],[11,17]],[[1869,2066],[13,-8],[13,-19],[5,-23],[-33,11],[-5,15],[7,24]],[[1880,2066],[44,7],[18,-17],[-3,-18],[-39,1],[-20,27]],[[1947,2015],[-5,16],[3,23],[37,-15],[1,-38],[-36,14]],[[2035,1990],[-24,7],[3,39],[22,-6],[-1,-40]],[[2038,1990],[2,39],[35,-18],[24,-20],[-4,-17],[-57,16]],[[2127,1973],[-30,1],[13,32],[19,-24],[-2,-9]],[[1806,2115],[30,-11],[-7,-26],[-26,6],[3,31]],[[1831,2073],[10,41],[46,46],[20,-22],[-28,-24],[-10,-18],[-5,-23],[-33,0]],[[1865,2073],[7,25],[14,1],[22,-9],[12,-12],[-17,-5],[-38,0]],[[1971,2079],[65,-10],[0,-35],[-53,9],[-12,36]],[[2039,2033],[0,35],[41,-24],[29,-34],[-8,-16],[-25,20],[-37,19]],[[2158,1961],[-7,18],[11,13],[9,27],[17,-24]],[[1874,2103],[13,16],[22,17],[21,-19],[-27,-20],[-29,6]],[[1923,2079],[-17,16],[25,19],[17,7],[2,-36],[-27,-6]],[[2041,2091],[-26,5],[-10,19],[42,8],[-6,-32]],[[2075,2115],[-12,-14],[-18,-6],[7,43],[23,-23]],[[2075,2110],[24,-25],[-26,-29],[-32,18],[3,16],[14,2],[17,18]],[[2075,2055],[26,29],[23,-14],[9,-12],[-26,-10],[-12,-12],[-20,19]],[[2113,2014],[-16,20],[17,15],[20,6],[6,-28],[-27,-13]],[[2144,1991],[-1,36],[-6,27],[27,-5],[2,-28],[-4,-19],[-12,-16],[-6,5]],[[1841,2167],[10,28],[34,-33],[-20,-19],[-8,14],[-16,10]],[[1910,2139],[-20,22],[35,18],[18,-14],[-33,-26]],[[1914,2138],[31,25],[14,-7],[-11,-32],[-16,-5],[-18,19]],[[1951,2124],[10,31],[26,-16],[11,-22],[-47,7]],[[2050,2146],[-2,-20],[-44,-9],[-11,31],[57,-2]],[[2132,2099],[15,-15],[16,-31],[-27,5],[-14,18]],[[2110,2082],[-33,30],[13,4],[27,-1],[10,-11]],[[2163,2066],[-4,9],[24,-1],[18,-12],[-15,-26],[-15,-15],[-8,45]],[[2203,2061],[24,3],[7,-8],[-46,-56],[-14,19],[7,5],[22,37]],[[1814,2210],[24,8],[18,-7],[-14,-27],[-31,-3],[3,29]],[[1853,2197],[11,25],[35,-18],[23,-24],[-34,-17],[-35,34]],[[1903,2208],[5,7],[30,-5],[24,3],[12,-24],[-47,-5],[-24,24]],[[1985,2162],[2,-9],[-36,13],[-21,15],[46,5],[9,-24]],[[2050,2149],[-61,3],[-10,34],[29,0],[22,-8],[22,1],[-2,-30]],[[2087,2186],[15,-15],[-14,-20],[-26,32],[-2,24],[27,-21]],[[2077,2117],[-24,25],[5,28],[54,-51],[-35,-2]],[[2119,2121],[-29,29],[13,20],[34,-42],[-18,-7]],[[2177,2133],[-38,-5],[-12,21],[-22,23],[7,9],[44,-20],[21,-28]],[[2232,2071],[-18,-7],[-24,9],[-2,24],[-21,31],[14,1]],[[2240,2057],[-8,10],[7,10]],[[1866,2238],[-9,-24],[-21,7],[-22,-7],[1,14]],[[2117,2194],[-13,-20],[-44,36],[1,15]],[[2193,2160],[16,-8]],[[2209,2152],[-30,-19],[-21,30],[-45,20],[6,10]],[[2182,2186],[15,-8],[-7,-17],[3,-1]],[[1818,2043],[13,-9],[16,-23],[-12,-19],[-28,24],[11,27]],[[2260,1472],[15,21],[16,43],[20,-9],[-18,-52],[7,6]],[[2300,1481],[19,-12]],[[2324,1814],[-8,-23],[0,-21],[-19,-11],[-2,22],[4,26],[9,20],[16,-13]],[[1842,1825],[19,27],[26,-37]],[[1887,1815],[-16,-10],[-29,20]],[[2391,1857],[18,44],[19,24],[1,17],[-6,23],[21,-8]],[[2446,1960],[-25,12],[2,40],[33,-27]],[[2457,1987],[-36,32],[7,7],[33,-22],[12,-15]],[[2227,2266],[3,-4],[-32,-80],[-14,8]],[[2219,2170],[-18,10],[14,34],[17,-11],[-13,-33]],[[2234,2206],[-18,11],[15,38],[17,-15],[-14,-34]],[[2310,2165],[-23,-29],[-18,8],[27,34],[14,-13]],[[2241,2336],[32,-53],[-13,-16],[-11,-23],[-18,22]],[[2258,2307],[-14,28],[31,24],[15,-28],[-32,-24]],[[2337,2415],[7,-11],[-16,-19],[-22,-3],[-28,-19],[-14,8]],[[2291,2336],[-12,23],[22,17],[26,7],[-9,-18],[-27,-29]],[[2308,2310],[-15,23],[25,27],[11,23],[16,19],[17,-23],[-54,-69]],[[2311,2307],[26,33],[16,-19],[-27,-32],[-15,18]],[[2380,2357],[-25,-34],[-16,20],[26,33],[15,-19]],[[2358,2426],[22,12]],[[2380,2438],[22,4],[1,-13],[-38,-47],[-25,35]],[[2409,2395],[-27,-35],[-15,19],[35,43],[7,-27]],[[2448,2322],[-14,0],[-11,38],[13,2],[12,-40]],[[2471,2366],[-22,-39],[-10,36],[32,3]],[[2406,2441],[26,-6],[2,-34],[-22,-3],[-6,43]],[[2477,2353],[-5,5],[29,43],[9,-8]],[[2373,2535],[22,10],[14,-53],[-21,-12],[-15,55]],[[2435,2439],[-18,44],[2,3],[64,-18],[6,-31],[-54,2]],[[2212,2693],[48,-44],[-4,-23],[-24,-3]],[[2232,2623],[-1,16]],[[2234,2619],[22,4],[-1,-52]],[[2258,2571],[0,53],[7,26],[22,-7],[-11,-71],[-18,-1]],[[2256,2568],[21,1],[12,74],[26,-13],[-21,-60],[7,-10],[-11,-10]],[[2303,2562],[-5,9],[18,52],[15,-48],[-28,-13]],[[2341,2532],[-31,19],[-5,8],[28,12],[8,-39]],[[2368,2537],[-20,-9],[-12,44],[20,8],[12,-43]],[[2358,2586],[-3,25],[26,-15],[-23,-10]],[[2429,2574],[-15,-65],[-5,-2],[-24,90],[44,-23]],[[2345,2621],[-26,13],[-4,25],[-14,14],[23,8],[8,-15],[13,-45]],[[2350,2619],[-7,30],[26,-9],[9,-32],[-28,11]],[[2399,2594],[-16,8],[-7,36],[27,-9],[-4,-35]],[[2405,2591],[4,36],[29,-10],[-7,-39],[-26,13]],[[2434,2577],[10,37],[56,-32],[-7,-37],[-59,32]],[[2496,2543],[8,37],[43,-21],[-10,-41],[-41,25]],[[2566,2491],[-27,24],[7,28],[19,-21],[6,-24],[-5,-7]],[[2547,2546],[8,24],[26,-24],[-14,-21],[-20,21]],[[2408,2667],[-5,-35],[-31,11],[-7,31],[43,-7]],[[2411,2667],[38,-12],[-10,-35],[-30,10],[2,37]],[[2445,2617],[8,38],[40,-30],[9,-16],[-1,-24],[-56,32]],[[2504,2584],[10,52],[11,-11],[28,-13],[3,-13],[-8,-36],[-44,21]],[[2257,2742],[16,-12],[13,-21],[0,-12]],[[2316,2708],[32,1],[8,-29],[-29,5],[-11,23]],[[2409,2672],[-45,8],[-9,29],[56,-7],[-2,-30]],[[2412,2672],[6,29],[37,-12],[-4,-25],[-39,8]],[[2454,2660],[6,26],[52,-44],[-5,-24],[-27,25],[-26,17]],[[2310,2785],[-3,-13],[-20,-8],[-18,-27],[-9,7]],[[2301,2735],[-11,-22],[-15,20],[14,29],[18,4],[-6,-31]],[[2313,2715],[-7,32],[7,17],[30,-30],[5,-21],[-35,2]],[[2425,2719],[-13,-14],[-58,8],[-7,22]],[[2489,2701],[-11,-24],[-13,10]],[[2465,2687],[19,20],[5,-6]],[[2572,2581],[-3,2]],[[2569,2583],[-11,7],[3,22],[-37,18],[-9,12],[-34,32],[10,23],[21,-27],[6,-15],[14,-13],[26,-4],[6,-21],[13,-3],[6,-28]],[[2378,2086],[-10,4]],[[2368,2090],[9,13],[71,-34],[-5,-16],[-65,33]],[[2506,2041],[22,-6],[33,11],[32,3],[24,8],[2,-15],[-60,-12],[-31,-10],[-26,7],[4,14]],[[2825,2075],[-41,-20],[-37,-8],[-11,14],[31,5],[46,20]],[[2337,2126],[25,31],[28,-14],[-14,-36],[-39,19]],[[2418,2087],[-40,19],[14,36],[37,-18],[-11,-37]],[[2449,2072],[-29,14],[12,37],[28,-14],[-11,-37]],[[2507,2044],[7,25],[15,-1],[32,6],[4,-24],[-37,-11],[-21,5]],[[2559,2117],[11,-2],[17,-29],[5,-34],[-25,-1],[-8,66]],[[2617,2061],[-22,-9],[-5,34],[25,3],[2,-28]],[[2618,2103],[26,-12],[-1,-31],[-23,3],[-2,40]],[[2686,2091],[10,-9],[-9,-26],[-14,1],[0,17],[13,17]],[[2691,2056],[10,21],[13,-16],[-23,-5]],[[2746,2065],[-19,-2],[-16,11],[-1,11],[31,11],[5,-31]],[[2786,2075],[-38,-9],[-4,31],[36,5],[6,-27]],[[2440,2161],[-10,-34],[-37,17],[13,33],[34,-16]],[[2442,2159],[29,-13],[-10,-34],[-29,14],[10,33]],[[2473,2145],[27,-13],[-10,-34],[-27,13],[10,34]],[[2525,2120],[-10,-33],[-22,10],[10,33],[22,-10]],[[2515,2072],[8,27],[34,5],[4,-26],[-46,-6]],[[2446,2285],[8,-9],[-118,-146],[-14,6]],[[2410,2216],[41,-19],[-10,-34],[-53,26],[22,27]],[[2453,2195],[29,-13],[-10,-34],[-29,14],[10,33]],[[2474,2147],[10,34],[27,-13],[-10,-34],[-27,13]],[[2525,2207],[21,-16],[-20,-69],[-22,11],[21,74]],[[2650,2145],[12,-27],[-17,-24],[-26,12],[8,17],[23,22]],[[2497,2227],[-14,-43],[-29,14],[17,56],[26,-27]],[[2539,2149],[12,42],[24,-4],[-15,-48],[-21,10]],[[2563,2138],[15,49],[30,-8],[-20,-28],[-3,-19],[-22,6]],[[2665,2121],[-12,33],[13,16],[25,-18],[-26,-31]],[[2683,2101],[-16,18],[27,31],[20,-16],[-31,-33]],[[2689,2095],[28,38],[20,-3],[4,-30],[-26,-8],[-12,-10],[-14,13]],[[2744,2100],[-5,30],[39,5],[2,-30],[-36,-5]],[[2797,2080],[-13,9],[-2,47],[8,4]],[[2472,2317],[9,12]],[[2481,2329],[4,-5],[-28,-39],[-7,5]],[[2497,2236],[-22,23],[7,17],[26,16],[12,-18],[-23,-38]],[[2502,2231],[5,21],[17,18],[11,-12],[-12,-42],[-21,15]],[[2547,2201],[-20,13],[12,41],[21,-20],[-13,-34]],[[2557,2199],[9,34],[23,-19],[-12,-20],[-20,5]],[[2579,2193],[12,19],[18,-26],[-30,7]],[[2527,2274],[-16,22],[52,17],[2,-33],[-38,-6]],[[2573,2264],[19,-22],[7,-18],[-7,-6],[-26,21],[7,25]],[[2633,2236],[9,-64],[-24,12],[-24,32],[39,20]],[[2658,2166],[-8,-7],[-5,20],[-8,58],[14,5],[14,-69],[-7,-7]],[[2678,2182],[-14,1],[-10,60],[10,2]],[[2722,2152],[-4,-13],[-49,33],[12,9]],[[2788,2143],[-23,-8],[-30,-1],[-15,4],[4,13]],[[2525,2365],[4,5],[40,-1],[1,-12],[-32,-14]],[[2538,2343],[-13,22]],[[2626,2273],[6,-33],[-30,-14],[-10,23],[34,24]],[[2652,2255],[-16,-14],[-8,43],[24,8],[0,-37]],[[2645,2369],[11,-23],[4,-28],[12,-30]],[[2665,2249],[-11,-3],[2,45],[-11,34],[-17,21],[17,23]],[[2560,2408],[32,40],[6,-2],[-10,-72],[-28,34]],[[2640,2532],[32,-16],[-28,-20],[-13,-7],[-5,-17],[-32,-5]],[[2593,2460],[34,9],[13,-33],[-38,13],[-9,11]],[[2644,2491],[33,23],[77,-24]],[[2788,2271],[-11,16],[30,35],[-9,57],[-41,29],[2,9],[-9,-11],[-33,21]],[[2717,2427],[10,22]],[[2727,2449],[-14,3],[-25,29],[-24,-4],[-20,14]],[[2686,2305],[26,32]],[[2712,2337],[42,-36],[-44,41],[15,23],[21,-17],[32,-71],[6,-8]],[[2287,2867],[16,-45]],[[2304,2665],[11,-26],[-16,6]],[[2213,2150],[8,15],[65,-36],[19,22],[9,-10]],[[2316,2143],[-9,11],[118,157],[14,-15]],[[2292,2547],[11,10],[5,-10],[37,-22],[16,-46]],[[2361,2479],[-15,-7],[-14,5]],[[2675,2403],[-14,6],[5,21],[27,15],[-7,-22],[9,-11],[-20,-9]],[[2635,2483],[16,-11],[41,-6],[1,-18]],[[2693,2448],[-38,7],[-16,-8],[-7,22],[3,14]],[[2579,2789],[26,-84],[11,-23],[-29,-35]],[[2557,2653],[-9,8],[-9,-6],[-13,15],[2,16],[-8,8]],[[2589,2644],[26,32],[9,-40],[-35,-45],[-8,17]],[[2631,2535],[-18,11]],[[2613,2546],[22,10],[3,-19]],[[2614,2694],[-14,38],[14,15],[21,-23],[12,-14],[-14,-18]],[[2629,2618],[24,29],[24,-24],[-37,-55],[-4,0],[-7,50]],[[2640,2545],[-2,14],[67,95],[18,-16]],[[2623,2742],[19,22],[19,-21],[-17,-24],[-21,23]],[[2645,2718],[17,24],[32,-38],[-13,-21],[-36,35]],[[2588,2879],[18,-22],[-17,-20],[-26,34]],[[2592,2834],[16,19],[51,-67],[-16,-17],[-51,65]],[[2721,2645],[-37,35],[27,48],[21,-14],[22,-30],[-33,-39]],[[2763,2488],[29,-14],[-10,-16],[-32,13],[13,17]],[[2846,2430],[-11,-10],[-35,32],[8,22],[38,-44]],[[2704,2538],[18,-17],[12,-4],[-3,-16],[-46,15],[19,22]],[[2734,2501],[3,16],[15,16],[19,-19],[-11,-22],[-26,9]],[[2765,2490],[26,41],[14,-16],[-21,-34],[-19,9]],[[2786,2480],[21,33],[14,-15],[-12,-18],[-23,0]],[[2862,2445],[-15,-13],[-37,43],[12,21],[25,-27],[15,-24]],[[2863,2443],[26,-43],[-15,-14],[-26,44],[15,13]],[[2731,2632],[17,-11],[-60,-56],[-31,-37],[-11,7]],[[2703,2543],[-11,21],[41,38],[12,-23],[-42,-36]],[[2856,2528],[-24,-37],[-22,24],[21,34],[25,-21]],[[2879,2508],[-26,-41],[-19,22],[24,34],[21,-15]],[[2904,2491],[-23,-44],[-11,-10],[-15,25],[27,41],[22,-12]],[[2902,2389],[-10,12],[-21,35],[15,14],[19,40],[42,-36],[44,-38]],[[2861,2650],[-24,-39],[-24,-36],[-32,27],[24,39],[5,7],[18,-16],[21,6],[-8,21],[-2,-20],[-15,-1],[-12,15]],[[2868,2646],[17,-25],[-24,-18],[-30,-46],[-15,15],[46,76]],[[2921,2652],[24,-8],[22,-22]],[[2951,2605],[-13,12],[-31,9],[-21,-5],[-14,22]],[[2759,2696],[-4,-8],[-21,29],[-21,15],[-50,55],[10,12]],[[2785,2901],[-6,-12],[16,-17]],[[2795,2872],[-17,-26],[-24,12],[-10,-21],[-13,9],[3,16]],[[2734,2862],[-10,9],[-19,-3],[-15,-20],[-3,-35],[-15,-12],[-11,-12],[-36,49]],[[2785,2456],[11,20],[10,-2],[-10,-21],[38,-36],[12,10],[8,-13]],[[2919,2236],[20,5]],[[2939,2241],[2,-14],[12,-6]],[[2953,2221],[-21,-76]],[[2926,2123],[13,44],[14,-16],[-8,-42],[-19,14]],[[2921,2123],[39,-22],[-12,6],[6,41],[8,-7]],[[2961,2143],[-21,26],[8,26]],[[2963,2241],[7,24],[10,-11],[52,-39],[-23,-29]],[[2912,2372],[23,-26],[-18,-26],[-24,30],[19,22]],[[2971,2266],[26,31],[21,-6],[52,-37],[-35,-39],[-52,39],[-12,12]],[[3045,2358],[65,-87],[-25,-28],[-23,23],[-43,28],[-20,6],[46,58]],[[3109,2192],[-11,12],[-12,36],[26,30],[27,-34]],[[3160,2209],[20,-25],[-16,-33],[-17,4]],[[2956,2453],[17,23]],[[2990,2498],[7,-10],[-33,-43],[-8,8]],[[3008,2407],[-41,36],[32,42],[28,-45],[9,-28],[-14,-18],[-14,13]],[[3126,2395],[12,-23],[-53,-60],[-15,20]],[[3070,2332],[48,54]],[[3096,2296],[-10,14],[53,61],[8,-17]],[[3115,2272],[20,23],[24,-45],[-13,-16],[-31,38]],[[3148,2232],[27,25],[10,-55],[-2,-14],[-35,44]],[[3176,2353],[-7,-18],[-11,2],[-31,60]],[[3203,2392],[60,-42],[-80,-117],[-13,66],[-4,24],[6,11],[8,27]],[[3451,2215],[-10,7],[57,108]],[[3496,2331],[-56,-108],[-11,8]],[[2861,2369],[13,14],[17,-33],[17,-24],[60,-60],[-10,-9]],[[3274,2490],[12,17]],[[3286,2507],[76,-12]],[[3362,2495],[-40,-58]],[[3026,2485],[-14,-13],[-10,17],[12,14]],[[3014,2503],[12,-18]],[[3036,2425],[21,20],[13,-16],[8,7],[12,-17]],[[3090,2419],[-33,-36]],[[3057,2383],[-18,23],[-3,19]],[[3049,2507],[26,27],[26,-13],[12,-17],[26,-33]],[[3118,2449],[-25,34],[-21,-6],[-7,7],[-16,23]],[[3236,2244],[-6,7]],[[3230,2251],[56,81],[-1,2],[-56,-82]],[[3229,2252],[-10,11]],[[3219,2263],[54,79],[-55,-77]],[[3218,2265],[-5,4]],[[3213,2269],[54,78],[26,-19]],[[3293,2328],[-31,-45],[-26,-39]],[[3370,2271],[58,-43]],[[3444,2146],[-26,-4]],[[3454,2209],[17,-13]],[[2677,3002],[35,-27],[-9,-12]],[[2703,2963],[-39,22],[13,17]],[[2718,3059],[12,-7],[-41,-59],[-11,10]],[[2678,3003],[40,56]],[[2732,3050],[21,-12],[-4,-15],[-34,-45],[-23,17],[40,55]],[[2663,3101],[12,31],[35,-26],[-20,-22],[-27,17]],[[2677,3133],[10,16],[19,7],[25,-15],[-20,-33],[-34,25]],[[2892,3077],[-2,11],[25,8],[8,-3],[-31,-16]],[[3028,2977],[-16,6],[-18,16]],[[2994,2999],[29,34],[15,-18],[-23,-24],[24,22],[8,-16],[-19,-20]],[[3109,3056],[-61,-58],[-7,16],[55,55],[13,-13]],[[3124,3044],[-67,-63],[-7,15],[61,59],[13,-11]],[[3020,2933],[-1,14],[16,7],[33,36],[58,53],[19,-12]],[[2560,3305],[27,30],[10,-15],[-27,-30],[-10,15]],[[2609,3307],[-49,-59],[-8,21],[7,4],[40,46],[10,-12]],[[2841,3530],[7,-3]],[[2848,3527],[-9,-16],[-12,11],[-28,5],[-5,21]],[[2863,3265],[-14,59],[27,5],[-5,-39],[-8,-25]],[[2869,3239],[-4,18],[7,30],[27,-7],[5,-12],[-35,-29]],[[2828,3493],[10,14],[23,-48],[-19,-11],[-14,45]],[[2852,3404],[-9,41],[18,13],[12,-47],[-21,-7]],[[2901,3363],[9,-28],[-31,-4],[1,30],[21,2]],[[2879,3329],[22,0],[-2,-45],[-26,5],[6,40]],[[2853,3524],[71,-34],[34,10]],[[3042,3474],[0,-97],[-15,0],[-51,-125]],[[2976,3252],[-49,34]],[[2927,3286],[-40,129]],[[2887,3415],[-34,106]],[[2853,3521],[0,3]],[[3041,3343],[-23,7],[10,25],[14,0],[-1,-32]],[[3103,3241],[36,75],[20,-13],[-41,-75],[-15,13]],[[2829,2693],[-17,-29],[-18,18],[9,18],[22,13],[4,-20]],[[2905,2785],[-17,-20],[-17,22],[17,19],[17,-21]],[[2978,2608],[9,-3]],[[2987,2605],[1,-2]],[[2988,2603],[-2,-2],[24,-53],[21,15],[9,-9]],[[3040,2554],[-21,-20],[-16,3]],[[2988,2603],[18,13],[8,-17],[-19,-13],[-7,17]],[[3030,2565],[-19,-13],[-7,15],[18,14],[8,-16]],[[2943,2859],[-11,-41],[-19,-24]],[[2913,2794],[-19,26]],[[2916,2789],[18,22],[5,17],[31,-113],[-17,-14],[-34,28]],[[2946,2817],[-5,17],[4,19],[15,-2],[8,-12]],[[3009,2892],[-22,-12],[-28,-21],[-4,5]],[[3009,2907],[0,-15]],[[2989,2878],[12,8],[8,-21],[-37,-26],[-12,17],[29,22]],[[3018,2843],[-33,-24],[-11,18],[36,26],[8,-20]],[[3116,2677],[-35,41],[11,12],[34,-38],[-10,-15]],[[3061,2774],[6,4],[30,-39],[-5,-6],[-31,41]],[[3179,2979],[-44,12],[42,31],[2,-43]],[[2582,3153],[5,15],[-16,40],[-18,8]],[[2553,3216],[9,27]],[[2594,3159],[-12,-6]],[[2535,3306],[5,-18],[-24,-27],[-16,9],[35,36]],[[2524,3333],[-47,-54],[-10,17],[49,53],[8,-16]],[[2440,3376],[9,-33],[-7,-9],[-50,17]],[[2399,3365],[28,53]],[[2427,3415],[1,-2]],[[2428,3413],[-24,-47],[19,-7],[17,17]],[[2438,3390],[28,37],[9,-24],[-30,-32],[-7,19]],[[2437,3392],[-8,23],[25,37],[10,-23],[-27,-37]],[[3082,3242],[9,10],[22,-26],[-8,-14]],[[3015,2605],[11,8],[16,-12],[13,-29],[-13,-13]],[[3042,2559],[-8,8],[-19,38]],[[3069,2854],[6,28],[18,-7],[-7,-31],[-17,10]],[[3112,2868],[-7,-31],[-17,6],[7,32],[17,-7]],[[3126,2829],[-18,7],[7,32],[39,-14],[-28,-25]],[[3350,2873],[-12,1],[7,32],[11,-4]],[[3192,2951],[2,-31]],[[3194,2920],[-8,-1],[-5,104],[12,-2]],[[3344,2907],[-7,-33],[-21,7],[-1,36],[29,-10]],[[3012,2718],[-21,-23],[-14,19]],[[2977,2714],[25,19],[10,-15]],[[3095,2641],[-39,52]],[[3019,2744],[9,6],[76,-93],[29,43],[8,-8]],[[3182,2934],[-89,25],[20,15],[68,-19],[1,-21]],[[3043,2821],[23,-39],[-8,-4],[-33,52],[-22,57],[7,2]],[[3010,2889],[21,-55],[12,-13]],[[3156,3046],[-17,-8],[17,28]],[[2739,3092],[-23,16],[17,31],[31,-38]],[[2706,3075],[-13,8],[21,22],[23,-14]],[[2684,2808],[28,20],[9,-31]],[[2816,3120],[0,1]],[[2816,3121],[-9,43],[9,2]],[[2723,3190],[16,-11],[10,-16]],[[2749,3163],[-17,-21],[-20,17],[-16,0],[-3,28]],[[6317,2982],[-38,30],[5,10],[16,-13],[21,-4],[18,-3],[-2,-12],[16,-5],[22,-19],[-13,-20],[-45,36]],[[6353,2986],[-14,5],[1,11],[17,-3],[23,-22],[-5,-10],[-22,19]],[[6364,2945],[17,31],[51,-50],[-5,-31],[-63,50]],[[6596,2875],[5,-3]],[[6601,2872],[-25,10],[24,-17],[-7,-17],[-24,14],[-14,57],[16,6]],[[6571,2925],[10,-40]],[[6510,2811],[18,-20],[-9,-14]],[[6558,2959],[8,-28],[-14,-4],[-7,25],[13,7]],[[6404,3550],[4,-18],[-18,-7],[-4,19],[18,6]],[[6606,3611],[28,-24],[-13,-56]],[[6621,3531],[-13,2],[8,43],[-20,18],[10,17]],[[6621,3514],[32,14],[20,26],[-3,-48],[-51,-13]],[[6619,3493],[2,21]],[[6667,3558],[-12,-23],[-15,-15],[-17,-4],[4,39],[9,30],[31,-27]],[[6675,3601],[-3,-35],[-71,59],[-31,-10],[24,23],[10,23],[71,-60]],[[6678,3639],[-2,-35]],[[6676,3604],[-71,60],[6,20],[34,-17],[33,-28]],[[6672,3425],[-2,-58],[-18,0],[1,30],[-7,0],[0,24]],[[6646,3421],[26,4]],[[6751,3549],[-26,-5],[0,21],[26,-16]],[[6522,3451],[-9,-4]],[[6513,3447],[-6,21],[-10,13],[-13,47],[9,5],[6,22],[-9,45],[-12,9],[25,1]],[[6574,3420],[-5,3]],[[6264,4724],[-34,4],[-5,-30],[-32,-7],[-7,18]],[[6262,4722],[-1,-30],[-35,6],[3,30],[33,-6]],[[6282,4708],[5,-21],[-23,4],[2,32]],[[6208,4637],[-15,50],[31,6],[-1,-52],[-15,-4]],[[6240,4636],[-15,6],[2,51],[19,-3],[-2,-55],[-4,1]],[[6248,4688],[22,-4],[-2,-54],[-22,6],[2,52]],[[6272,4628],[1,56],[23,-3],[-2,-57],[-22,4]],[[6297,4621],[2,61],[15,-20],[-2,-43],[-15,2]],[[6311,4615],[1,-1],[-5,-132],[-10,1],[-6,17],[5,117],[15,-2]],[[6293,4619],[1,-2],[-5,-117],[-23,2],[5,122],[22,-5]],[[6236,4606],[-7,30],[38,-10],[1,-24],[-32,4]],[[6238,4574],[-2,26],[31,-4],[-2,-23],[-27,1]],[[6221,4577],[-39,3],[4,103],[2,0],[33,-106]],[[6179,4507],[3,67],[19,-2],[-3,-67],[-19,2]],[[6228,4554],[12,-52],[-39,4],[2,65],[19,0],[6,-17]],[[6264,4518],[-2,-18],[-17,3],[-8,43],[-7,25],[36,-2],[-2,-51]],[[6274,4451],[-19,-9]],[[6255,4442],[-9,55],[34,-1],[-1,-44]],[[6279,4452],[-5,-1]],[[6180,4405],[0,50]],[[6180,4455],[65,-2],[5,-15],[-10,-47],[-60,14]],[[6316,4081],[77,-9],[1,-14],[-56,3],[-18,-2],[-4,22]],[[6327,4028],[-7,29],[74,-2],[1,-19],[-68,-8]],[[6440,3974],[-13,-5],[-15,66],[19,1],[13,-60],[-4,-2]],[[6367,3979],[50,24]],[[6417,4003],[2,-16],[-48,-21],[-4,13]],[[6361,4003],[-4,23],[51,9],[3,-9]],[[6411,4026],[-50,-23]],[[6340,3967],[-13,57],[26,1],[11,-48],[-24,-10]],[[6358,3896],[-11,31],[-7,35],[26,10],[18,-65],[-26,-11]],[[6387,3909],[-16,53],[23,9],[15,-52],[-22,-10]],[[6411,3920],[-15,52],[25,11],[12,-52],[-22,-11]],[[6436,3931],[-8,36],[17,8],[7,-36],[-16,-8]],[[6542,4003],[8,-30],[-32,1],[-10,40],[34,-11]],[[6531,3970],[1,-35]],[[6532,3935],[-4,2],[-9,33],[12,0]],[[6505,3842],[8,-24]],[[6513,3818],[7,-18],[-3,-29]],[[6517,3771],[-6,-2],[-21,63],[15,10]],[[6458,3934],[13,1],[32,-91],[-26,-16],[-36,99],[17,7]],[[6419,3918],[19,8],[35,-100],[-20,-10],[-34,102]],[[6387,3903],[28,14],[30,-85],[-26,-15],[-32,86]],[[6411,3810],[-30,27],[-21,55],[26,10],[32,-87],[-7,-5]],[[6452,3813],[19,-54],[-10,-6],[-25,69],[11,5],[5,-14]],[[6487,3829],[21,-61],[-33,-9],[-20,52],[32,18]],[[6597,3874],[-8,-1]],[[6589,3873],[-6,30],[17,5],[-3,-34]],[[6561,3995],[26,-5],[-1,-19],[-20,2],[-5,22]],[[6560,4002],[-9,34],[9,2],[47,-16],[4,-34],[-51,14]],[[6667,3982],[-53,14],[-2,25],[56,-18],[-1,-21]],[[6334,4211],[-6,1],[-29,-41],[-5,-28]],[[6294,4143],[-8,-6],[17,104],[-13,11],[4,27],[72,-18]],[[6572,3761],[-36,-12],[-23,-12],[-28,-1],[-4,22],[56,16],[13,22],[15,-4],[7,-31]],[[6543,4006],[-50,16],[12,-7],[9,-37]],[[6499,3982],[-5,22],[-11,3],[4,28],[57,-12],[-1,-17]],[[6553,3972],[-8,28],[8,0],[6,-28]],[[6470,4620],[-13,5],[0,25],[14,2],[-1,-32]],[[6495,4619],[2,40],[19,6],[-2,-48],[-19,2]],[[6517,4617],[3,52],[22,5],[-2,-58],[-23,1]],[[6543,4615],[3,59],[24,-2],[-2,-59],[-25,2]],[[6717,4646],[-2,3],[-61,8],[11,-2],[-2,-47],[-17,1],[3,49],[-4,1],[-2,-50],[-39,2],[1,64],[30,-8],[12,9],[72,-12],[0,-18]],[[6685,4652],[-2,-45],[-17,1],[3,46],[16,-2]],[[6704,4648],[-1,-43],[-17,1],[2,45],[16,-3]],[[6678,4559],[-12,44],[36,-2],[-1,-30],[-23,-12]],[[6662,4542],[-16,61],[16,1],[16,-56],[-16,-6]],[[6660,4542],[-27,-10],[-14,16],[2,57],[21,0],[18,-63]],[[6600,4549],[2,53],[17,3],[-2,-57],[-17,1]],[[6600,4543],[16,-1],[0,-16],[-17,-7],[1,24]],[[6595,4549],[-27,1],[3,59],[26,-2],[-2,-58]],[[6568,4609],[-3,-49],[-24,2],[2,49],[25,-2]],[[6539,4611],[-2,-58],[-22,1],[2,59],[22,-2]],[[6514,4613],[-3,-59],[-18,2],[2,58],[19,-1]],[[6492,4614],[-3,-58],[-19,1],[3,59],[19,-2]],[[6462,4461],[0,0]],[[6486,4474],[-1,-14],[-19,-7],[0,13],[20,8]],[[6467,4471],[3,82],[19,-2],[-3,-73],[-19,-7]],[[6489,4479],[3,72],[19,-1],[-3,-64],[-19,-7]],[[6512,4487],[3,63],[22,-2],[-3,-53],[-22,-8]],[[6508,4482],[0,-14],[-19,-7],[0,14],[19,7]],[[6535,4492],[-1,-14],[-23,-8],[1,13],[23,9]],[[6538,4493],[25,9],[-1,-25],[-25,1],[1,15]],[[6597,4475],[2,40],[16,6],[-1,-47],[-17,1]],[[6617,4472],[1,50],[14,5],[16,-52],[-31,-3]],[[6652,4474],[-18,54],[27,10],[13,-45],[0,-15],[-22,-4]],[[6678,4480],[-14,55],[16,5],[16,-59],[-18,-1]],[[6700,4277],[-8,14],[4,92],[9,1]],[[6705,4387],[-9,2],[3,89],[10,2]],[[6694,4389],[-20,1],[3,84],[19,4],[1,-8],[-3,-81]],[[6672,4390],[-22,2],[2,79],[23,2],[-3,-83]],[[6648,4392],[-17,1],[3,74],[15,2],[-1,-77]],[[6613,4394],[3,74],[16,-1],[-3,-74],[-16,1]],[[6593,4395],[3,74],[17,-1],[-3,-74],[-17,1]],[[6588,4385],[-26,2],[3,85],[26,-2],[-3,-85]],[[6534,4389],[3,85],[25,-2],[-4,-85],[-24,2]],[[6486,4392],[3,65],[18,7],[-2,-73],[-19,1]],[[6463,4389],[19,-1],[-3,-66],[-19,2],[3,65]],[[6503,4357],[-2,-36],[-19,1],[2,36],[1,30],[19,-2],[-1,-29]],[[6504,4321],[4,65],[22,-1],[-3,-65],[-23,1]],[[6585,4316],[-27,2],[3,65],[27,-2],[-3,-65]],[[6611,4358],[1,30],[16,-1],[-1,-30]],[[6627,4357],[-16,1]],[[6629,4357],[2,29],[17,0],[-2,-30]],[[6646,4356],[-17,1]],[[6668,4291],[-22,12],[4,83],[21,-2],[-3,-93]],[[6689,4281],[-19,9],[4,94],[19,-1],[-4,-102]],[[6602,4174],[-19,2],[6,133],[45,-6],[41,-21],[28,-11],[-4,-72],[-8,-34],[-66,7]],[[6558,4313],[26,-2],[-2,-65],[-27,2],[3,65]],[[6555,4313],[-3,-56],[-24,1],[2,57],[25,-2]],[[6527,4315],[-3,-65],[-23,1],[3,65],[23,-1]],[[6501,4317],[-3,-65],[-19,1],[3,65],[19,-1]],[[6459,4319],[19,-1],[-3,-65],[-18,1],[2,65]],[[6456,4250],[19,-1],[-2,-63],[-19,2],[2,62]],[[6476,4186],[3,62],[19,-1],[-3,-63],[-19,2]],[[6499,4184],[2,63],[23,-2],[-3,-63],[-22,2]],[[6524,4181],[3,55],[24,-2],[-2,-55],[-25,2]],[[6552,4179],[3,64],[26,-1],[-2,-66],[-27,3]],[[6529,4149],[-54,5],[1,28],[102,-10],[1,-28],[-50,5]],[[6456,4183],[17,-1],[-3,-63],[-16,1]],[[6473,4114],[1,36],[55,-6],[-2,-35],[52,-5],[1,-29],[-54,5],[-31,4]],[[6527,4053],[1,22],[52,-4],[0,-35],[-53,17]],[[6586,4034],[-2,36],[42,-4],[-2,-44],[-38,12]],[[6668,4008],[-40,13],[2,44],[40,-4],[-2,-53]],[[6630,4070],[1,29],[41,-4],[-1,-29],[-41,4]],[[6584,4104],[43,-5],[-1,-29],[-42,4],[0,30]],[[6579,4109],[-49,4],[1,31],[48,-4],[0,-31]],[[6583,4139],[46,-4],[-1,-31],[-44,4],[-1,31]],[[6631,4103],[1,31],[41,-4],[-1,-31],[-41,4]],[[6617,4168],[13,-1],[-1,-28],[-14,1]],[[6633,4138],[1,28],[41,-3],[-2,-29],[-40,4]],[[6684,4002],[5,114],[2,13],[13,-2],[-4,-97],[-3,-29],[-13,1]],[[6705,4158],[-1,-27],[-12,0],[7,26],[6,1]],[[6716,4158],[-1,-15],[67,-5]],[[6782,4138],[0,-14],[-76,6],[1,29],[9,-1]],[[6806,4170],[3,-41],[-24,-6],[-1,36],[22,11]],[[6782,4056],[2,63],[25,4],[-3,-68],[-24,1]],[[6779,4055],[-24,2],[3,66],[24,0],[-3,-68]],[[6731,4099],[1,26],[24,-2],[-2,-65],[-25,1],[2,40]],[[6702,4062],[3,65],[26,-2],[-3,-66],[-26,3]],[[6698,3999],[5,58],[24,0],[-2,-55],[-27,-3]],[[6729,4030],[0,26],[23,-1],[-1,-27]],[[6751,4028],[-22,2]],[[6777,4007],[-25,-3],[2,50],[25,-1],[-2,-46]],[[6780,4006],[1,45],[25,-3],[-2,-47],[-24,5]],[[6807,4000],[1,47],[12,1],[-2,-50],[-11,2]],[[6687,3975],[-3,23],[12,-1],[-4,-22]],[[6693,3975],[5,22],[79,7],[0,-19]],[[6779,3986],[2,15],[21,-5],[1,-20]],[[6805,3974],[1,19],[11,2],[0,-17]],[[6712,4561],[-32,-12],[-2,8],[26,12],[4,79],[8,-2]],[[6709,4483],[-9,-1],[-17,61],[29,10]],[[6818,4412],[0,12],[28,1],[8,7],[-5,23],[-32,-2],[-1,13]],[[6815,4502],[-4,115],[4,8]],[[6815,4625],[5,-29]],[[6817,4451],[34,2],[4,-8],[-9,-18],[-28,-1],[-1,25]],[[6648,5037],[-11,-17],[-35,35],[-50,40],[11,18]],[[6589,5005],[1,12],[16,28],[28,-29],[-11,-17],[-34,6]],[[6588,4998],[33,-3],[-10,-38],[-26,5],[3,36]],[[6605,4899],[-3,-29],[-32,5],[6,66]],[[6572,4920],[-4,-37]],[[6525,4959],[-28,3],[-1,39],[-6,21],[-15,15],[3,25]],[[6471,4966],[4,66],[13,-10],[8,-32],[-2,-26],[-23,2]],[[6476,5063],[-7,-95],[-12,-1],[4,61],[7,27]],[[6448,4881],[4,33],[34,5],[-1,-42],[-30,-5],[-7,9]],[[6519,4882],[-31,-5],[2,42],[36,5],[-7,-42]],[[6510,4876],[13,0],[-6,-50],[-19,7]],[[6574,4822],[-55,2],[6,53],[42,-6]],[[6563,4813],[-2,-34],[-46,6],[4,34],[44,-6]],[[6516,4818],[-4,-33],[-32,4],[2,27],[34,2]],[[6461,4731],[3,59],[13,24],[-3,-84],[-13,1]],[[6479,4759],[1,27],[32,-4],[-3,-27],[-30,4]],[[6478,4729],[1,26],[31,-4],[-3,-26],[-29,4]],[[6512,4756],[3,25],[46,-5],[-2,-17],[-13,-8],[-34,5]],[[6474,4725],[59,-6]],[[6535,4721],[-25,4],[3,26],[33,-4]],[[6559,4738],[-2,-23],[45,-6],[-1,-13]],[[6562,4745],[41,-6],[-2,-26],[-41,6],[2,26]],[[6577,4810],[29,-6],[-2,-31],[-31,5]],[[6606,4822],[1,42],[18,-2],[-2,-41],[-17,1]],[[6650,4772],[-40,4],[1,30],[42,-4]],[[6810,4661],[24,15],[-25,33],[-26,55]],[[6811,4671],[3,25],[14,-17],[-4,-10],[-13,2]],[[6753,4681],[2,25],[54,-10],[-3,-24],[-53,9]],[[6727,4673],[3,37],[22,-4],[-1,-27],[56,-10],[1,-9]],[[6572,4773],[22,-1],[-1,-27],[-29,4]],[[6594,4745],[1,27],[9,-1],[-1,-27],[-9,1]],[[6793,4733],[5,-10],[13,-22],[-21,2],[-58,11],[-1,39],[18,-1]],[[6496,4925],[-44,-7],[2,18],[41,5],[1,-16]],[[6496,4942],[-42,-5],[6,28],[59,-6],[8,-15]],[[6670,4963],[-42,32],[26,37]],[[6939,5840],[10,16],[15,-8],[8,-41],[-33,33]],[[6952,5782],[-24,41],[9,14],[33,-35],[-18,-20]],[[6953,5774],[-18,-13],[-25,46],[17,15],[26,-48]],[[6890,5790],[17,15],[25,-47],[-32,-27],[-33,3],[5,35],[18,21]],[[6843,5745],[23,-4],[-5,-42],[-22,6],[4,40]],[[6845,5771],[24,-4],[-3,-21],[-22,3],[1,22]],[[6849,5804],[36,-16],[-15,-17],[-24,4],[3,29]],[[6853,5837],[38,-11],[18,-17],[-22,-18],[-12,9],[-25,7],[3,30]],[[6856,5871],[52,-19],[23,-19],[-19,-21],[-20,18],[-39,11],[3,30]],[[6940,5848],[-7,-11],[-26,20],[-50,19],[1,14]],[[6853,5876],[-13,-126],[-13,6]],[[6826,5754],[13,-7],[-4,-42],[-21,1]],[[6735,5700],[16,-3],[-10,-66],[-24,5]],[[6783,5694],[-8,-70],[-30,6],[8,68],[30,-4]],[[6778,5634],[8,61],[27,7],[11,-3],[-21,-85],[-26,10],[1,10]],[[6876,5500],[-33,-11],[5,54],[-26,5],[16,148],[25,3],[2,32],[37,1],[52,40],[4,-10],[-40,-36]],[[6818,5548],[-28,2],[14,57],[20,-9],[-6,-50]],[[6759,5551],[17,69],[26,-10],[-15,-62],[-28,3]],[[6733,5556],[9,71],[33,-6],[-18,-70],[-24,5]],[[6675,5396],[10,74],[35,-7],[-8,-69],[-37,2]],[[6756,5415],[5,40]],[[6761,5455],[13,-3],[-8,-65],[-14,1],[-39,6],[3,27],[40,-8],[0,2]],[[6757,5548],[-10,-86],[-25,3],[11,88],[24,-5]],[[6786,5544],[-12,-88],[-26,6],[10,86],[28,-4]],[[6810,5466],[-31,7],[8,63],[3,8],[28,0],[-8,-78]],[[6801,5381],[-32,6],[8,64],[30,-6],[-6,-64]],[[6840,5488],[-25,-8],[7,63],[24,-3],[-6,-52]],[[6812,5449],[2,26],[26,9],[1,-40],[-29,5]],[[6910,5260],[-24,2],[3,32]],[[6881,5337],[-8,24],[-1,24],[-4,108],[9,3]],[[6811,5444],[30,-5],[1,-30],[-34,6],[3,29]],[[6804,5381],[4,30],[34,-6],[1,-22],[-9,-10],[-30,8]],[[6847,5383],[-1,22],[22,1],[1,-42],[-12,3],[-10,16]],[[6881,5324],[4,-30],[-35,0],[-1,35],[32,-5]],[[6851,5263],[-1,27],[35,-1],[-3,-27],[-31,1]],[[6896,5256],[-3,-33],[-17,-57],[-25,1],[0,90],[45,-1]],[[6877,5069],[-9,-18],[-16,17],[18,32]],[[6870,5100],[7,-31]],[[6807,5115],[10,21],[-2,40],[33,0],[-1,-28],[-7,-26],[-14,-28],[-19,21]],[[6804,5258],[44,-1],[0,-76],[-33,-1],[-11,78]],[[6803,5263],[-5,27],[49,0],[0,-27],[-44,0]],[[6812,5295],[1,20],[20,-2],[2,19]],[[6835,5332],[10,-2],[1,-36],[-34,1]],[[6804,5376],[30,-8],[10,-15],[1,-18],[-44,7],[3,34]],[[6792,5297],[-33,9],[10,77],[31,-6],[-8,-80]],[[6602,5325],[20,-2],[-1,-16],[-25,8]],[[6624,5306],[2,16],[38,-5],[-3,-26],[-37,15]],[[6665,5290],[3,27],[34,-6],[-4,-31],[-33,10]],[[6662,5265],[2,21],[33,-12],[-1,-15],[-34,6]],[[6620,5272],[3,28],[38,-13],[-3,-22],[-38,7]],[[6592,5312],[28,-11],[-3,-32],[-34,6],[-10,-9],[18,-59],[-2,-2],[-52,9],[1,9]],[[6613,5232],[-4,-28],[-16,3],[-9,29]],[[6584,5236],[10,-1],[19,-3]],[[6615,5222],[5,46],[38,-7],[-5,-45],[-38,6]],[[6657,5217],[4,43],[34,-6],[-4,-42],[-34,5]],[[6650,5158],[6,51],[34,-6],[-6,-51],[-34,6]],[[6609,5165],[6,53],[38,-7],[-6,-52],[-38,6]],[[6525,5184],[13,25],[51,-9],[-4,-33],[-12,-23],[-48,40]],[[6517,5184],[54,-44],[-10,-18]],[[6646,5154],[-4,-43],[-7,-18],[-31,26],[9,16],[3,25],[30,-6]],[[6684,5148],[-6,-54],[-33,15],[5,45],[34,-6]],[[6638,5091],[6,14],[33,-15],[-11,-28],[-28,29]],[[6566,5118],[8,20],[38,-31],[51,-49],[-11,-17]],[[6657,5034],[11,19],[44,-57],[18,-28],[4,-30],[16,-3],[-4,-35]],[[6711,5005],[-12,18],[8,10],[30,-5],[-5,-47],[-21,24]],[[6683,5043],[-12,14],[10,21],[5,24],[25,-5],[-6,-60],[-9,-11],[-13,17]],[[6708,5037],[6,60],[29,-5],[-6,-59],[-29,4]],[[6748,5137],[-4,-41],[-57,10],[4,41],[57,-10]],[[6695,5185],[57,-9],[-4,-35],[-57,10],[4,34]],[[6699,5227],[44,-7],[-3,-38],[-44,8],[3,37]],[[6703,5266],[47,-8],[-4,-35],[-46,8],[3,35]],[[6704,5270],[4,39],[46,-9],[-4,-38],[-46,8]],[[6799,5260],[-4,-5],[-41,7],[4,37],[35,-7],[6,-32]],[[6805,5213],[-55,10],[4,34],[46,-8],[5,-36]],[[6811,5170],[-54,9],[4,37],[45,-7],[5,-39]],[[6811,5165],[-1,-34],[-57,9],[3,35],[55,-10]],[[6789,5088],[-41,7],[4,41],[51,-8],[2,-6],[-16,-34]],[[6761,5028],[-20,4],[7,59],[39,-7],[-26,-56]],[[6875,4867],[42,79],[5,-3],[-43,-83],[-8,-2]],[[6938,4986],[6,-2],[-21,-40],[-5,3],[20,39]],[[6949,4993],[-10,-6]],[[6949,4993],[0,0]],[[6748,4890],[6,0],[-4,12],[46,10],[16,2],[10,-18],[-17,-7],[4,-13],[-50,-15]],[[7007,4935],[-19,-6],[5,27],[-15,23],[-33,6],[7,15]],[[6952,5000],[3,6],[-20,4],[-13,15],[-6,22],[-26,42],[-4,24],[0,3]],[[6914,5254],[4,-39],[-13,-40],[-5,-36],[4,-18],[-17,-8],[18,5],[36,-89],[14,-12],[52,-14],[15,0],[7,-59],[-15,-3]],[[6947,4927],[22,43],[-8,-13],[-16,14],[-16,-32],[-6,4],[21,41],[6,-4],[24,-2],[11,-8],[-27,-53],[-21,-40],[-11,-10],[-20,-1],[5,17],[9,-7],[27,51]],[[6944,4887],[8,18],[34,-20],[1,-22],[-43,24]],[[6779,5057],[34,-29],[-12,-24],[-33,29],[11,24]],[[6835,4919],[9,14],[15,-13],[-10,-19],[-14,18]],[[6862,4986],[22,-17],[-12,-24],[-19,16]],[[6853,4961],[9,25]],[[6864,4991],[11,20]],[[6875,5011],[21,-19],[-10,-20],[-22,19]],[[6789,4981],[-28,16],[6,34],[34,-28],[-12,-22]],[[6792,4979],[11,21],[21,-17],[-11,-22],[-21,18]],[[6832,4978],[-12,-25]],[[6820,4953],[-5,4]],[[6815,4957],[12,25],[5,-4]],[[6923,4942],[5,-3],[-25,-49],[5,-5],[-10,-20],[-18,-5],[43,82]],[[6799,4932],[-47,-13]],[[6752,4919],[5,49],[18,-12],[24,-24]],[[5267,3132],[5,-3],[-1,-42],[-5,-4],[-2,-48],[-11,-18],[-37,3]],[[5216,3016],[46,-3],[-2,-36],[-24,-69],[-4,-90],[-2,-8],[-38,-5]],[[5313,2973],[-44,6],[3,19],[4,128]],[[5258,2815],[-19,2]],[[5239,2817],[4,51],[9,64],[13,46],[33,-6]],[[5298,2972],[-10,-10],[-2,-21],[10,-3],[-12,-13]],[[5452,2753],[-8,-33],[-15,5],[7,34]],[[5435,2759],[-8,-33],[-14,5],[7,34]],[[5418,2765],[-7,-33],[-12,4],[3,35]],[[5412,2671],[12,53],[20,-7],[-12,-53],[-20,7]],[[5411,2672],[-19,6],[6,56],[24,-9],[-11,-53]],[[5392,2698],[-2,-19],[-39,14],[2,19]],[[5799,2728],[-19,-3],[-8,73],[19,6],[8,-76]],[[5678,2894],[16,8],[3,36],[18,-4],[4,-51],[-11,-1]],[[5781,2934],[6,-45],[-20,-5],[-5,45],[19,5]],[[5698,2960],[19,-4],[-2,26],[6,34]],[[5721,3016],[34,3],[25,-2],[23,-6],[33,-2],[-50,-2],[45,-6],[-10,-37],[-30,-6],[-8,-19],[-25,-7],[-3,46],[0,7],[21,3],[-1,15],[-28,-2],[5,-31],[4,-38],[-17,-3],[-43,13],[2,18]],[[5816,2604],[-1,11],[21,4]],[[5894,2630],[9,2],[21,-159],[-9,-2]],[[5889,2670],[11,-16],[2,-20],[-8,-1]],[[5897,2664],[-21,29],[18,2],[3,-31]],[[5921,2628],[-20,29],[-5,39],[18,3],[7,-71]],[[5933,2611],[-7,10],[-11,78],[18,2],[14,-109],[-14,19]],[[5961,2570],[-11,16],[-8,61],[-7,54],[10,2]],[[5929,2582],[14,-105],[-17,-4],[-22,160],[10,1],[11,-16],[4,-36]],[[5933,2607],[16,-24],[13,-101],[-17,-6],[-18,138],[6,-7]],[[5953,2577],[21,-31],[9,-62],[-17,-3],[-3,11],[-12,84],[2,1]],[[5935,2472],[8,2],[11,-81],[-8,-2]],[[5956,2393],[-11,82],[17,3],[12,-81],[-18,-4]],[[5976,2397],[-11,79],[18,6],[11,-81],[-18,-4]],[[5996,2401],[-19,139],[24,-32],[13,-103],[-18,-4]],[[6016,2405],[-13,99],[28,-40],[2,-41],[22,5],[9,-13],[-48,-10]],[[6032,2462],[22,-32],[-20,-5],[-2,37]],[[5766,2881],[21,5],[-1,-33]],[[5775,2990],[-16,-2],[-1,12],[16,2],[1,-12]],[[5800,2804],[-8,13],[-2,32],[23,-6]],[[5974,2826],[17,1],[13,-113],[-18,-3]],[[5835,2892],[-4,25],[10,2],[2,-17],[-8,-10]],[[5829,2989],[35,-16],[12,-12]],[[5789,2855],[1,20],[44,14],[10,13],[-2,20],[-12,37],[-7,4],[6,26]],[[5790,2878],[-4,53],[21,9],[21,18],[9,-37],[-27,1],[1,-20],[-17,-6],[-4,-18]],[[6178,3048],[0,3]],[[6178,3051],[30,32],[10,-26],[-40,-9]],[[6244,3011],[-41,-9]],[[6203,3002],[-3,47],[24,-2],[40,-30]],[[6167,3038],[30,10],[3,-46]],[[6200,3002],[-11,-4]],[[6022,2999],[56,6],[30,9],[3,-31]],[[6071,2977],[-36,-5],[-1,16],[-12,11]],[[6003,3030],[33,-22],[-14,-4]],[[6022,3004],[-20,-5],[-5,29]],[[6355,2841],[15,-12]],[[6370,2829],[29,-208],[2,-10],[-11,-11]],[[6360,2939],[-12,-25],[-5,9],[10,21]],[[6353,2944],[7,-5]],[[6412,2622],[-10,-3],[-42,294],[8,20],[15,-12],[42,-33],[-1,-9],[-43,34],[-3,-17],[12,-79],[15,-12],[-15,1],[5,-32],[10,28],[78,-58]],[[5721,3016],[-17,1]],[[5704,3017],[-15,27]],[[5705,3062],[14,-21],[2,-25]],[[6007,3034],[-24,12],[48,55],[3,42],[16,-2]],[[6015,3033],[-8,1]],[[5648,2860],[-2,-25]],[[5506,2927],[26,10],[0,-14],[23,-5],[2,17],[8,-12],[7,-12],[19,-11],[20,-4],[7,23]],[[5618,2919],[35,-5]],[[5653,2914],[-2,-25],[-3,-29]],[[5777,3346],[9,17],[29,36],[13,24],[2,-33],[-4,-16],[-35,-46]],[[5653,3256],[6,8],[-29,37]],[[5630,3301],[18,23],[30,-33],[10,-18],[-23,-29],[-12,12]],[[5473,3373],[-12,0],[0,-38],[-10,1]],[[5451,3336],[2,31],[-7,1],[2,-33]],[[5363,3373],[0,20],[110,-2],[0,-18]],[[5412,3103],[-9,8],[-4,26],[21,-15],[-8,-19]],[[5421,3124],[-22,16],[6,20],[25,-16],[-9,-20]],[[5413,3176],[22,-18]],[[5435,3158],[-5,-12],[-24,17],[7,13]],[[5411,3176],[-11,-20],[-6,-27],[13,-39]],[[5656,3799],[-16,27],[14,12],[2,-39]],[[5570,3621],[1,30],[21,1],[12,-45],[-2,-3],[-32,17]],[[5608,3601],[-14,51],[20,8],[9,-23],[22,-41],[-5,-10],[-32,15]],[[5645,3661],[18,-28],[-12,-31],[-5,0],[-23,43]],[[5623,3645],[22,16]],[[5609,3690],[-8,44],[24,4],[8,-41]],[[5633,3697],[-24,-7]],[[5676,3660],[-13,-22],[-16,22],[-11,32],[-9,47],[22,4],[14,-50],[13,-33]],[[5696,3682],[-19,-17],[-15,42],[-7,34],[26,-1],[2,-26],[13,-32]],[[5701,3735],[1,-26],[7,-16],[-12,-10],[-9,19],[-5,37],[18,-4]],[[5718,3730],[4,-27],[-12,-9],[-7,16],[-1,24],[16,-4]],[[5747,3722],[-23,-18],[-5,26],[28,-8]],[[5764,3677],[16,-12],[14,30]],[[5794,3695],[59,-48],[-21,-44],[-29,-16]],[[5803,3587],[-20,56],[-17,-10]],[[5766,3633],[-8,30],[6,14]],[[5875,3634],[52,5],[1,-20],[-19,-23],[-34,38]],[[5931,3625],[-2,15],[38,4],[0,-10],[-22,-28],[-14,19]],[[5940,3596],[27,31],[1,-32],[-15,-16],[-13,17]],[[5911,3594],[14,17],[27,-34],[-15,-17],[-26,34]],[[5939,3557],[29,30],[2,-59],[-4,-5],[-27,34]],[[5969,3505],[-6,-14],[-13,-3],[-31,47],[15,16],[35,-46]],[[5877,3549],[-19,14],[30,19],[6,-6],[-17,-27]],[[5919,3479],[-19,37],[18,17],[29,-45],[-28,-9]],[[5871,3465],[-6,29],[33,20],[17,-36],[-44,-13]],[[5861,3517],[16,29],[19,-29],[-32,-20],[-3,20]],[[5815,3501],[19,11],[8,17],[16,-8],[5,-25],[-43,-13],[-5,18]],[[5869,3465],[-39,-9],[-9,24],[42,12],[6,-27]],[[5743,3653],[4,-13],[-46,-32],[5,-29],[-13,-3]],[[5693,3576],[-6,43],[39,20],[17,14]],[[5723,3698],[16,-42],[-30,-13],[3,-8],[-25,-13],[-6,36],[17,20],[25,20]],[[5671,3551],[1,19],[21,2],[3,-19],[-25,-2]],[[5669,3530],[30,3],[3,-18],[-34,-3],[1,18]],[[5667,3491],[1,20],[34,3],[4,-20],[-39,-3]],[[5669,3468],[1,20],[36,3],[3,-19],[-40,-4]],[[5686,3448],[-22,0],[2,19],[43,4],[3,-19],[-26,-4]],[[5663,3428],[1,19],[48,4],[3,-18],[-52,-5]],[[5717,3422],[-52,-16],[-2,21],[53,4],[1,-9]],[[5608,3442],[52,-15],[0,-10],[-17,-7],[-41,14],[6,18]],[[5614,3460],[47,-13],[-1,-18],[-52,14],[6,17]],[[5619,3480],[43,-13],[-1,-18],[-47,13],[5,18]],[[5625,3499],[35,-10],[-2,-19],[-38,11],[5,18]],[[5626,3502],[5,19],[34,-10],[-2,-20],[-37,11]],[[5637,3539],[29,-8],[-1,-18],[-33,9],[5,17]],[[5642,3557],[25,-7],[-1,-18],[-29,8],[5,17]],[[5648,3576],[20,-6],[-1,-18],[-23,6],[4,18]],[[5561,3589],[8,27],[76,-37],[-10,-32],[-50,25],[-24,17]],[[5552,3626],[15,-9],[-5,-20],[-19,-34],[-14,13]],[[5543,3560],[17,27],[20,-14],[55,-29],[-13,-41],[-43,24],[-36,33]],[[5598,3464],[-22,13],[-29,26],[-22,25],[17,30],[27,-26],[41,-26]],[[5610,3506],[-12,-42]],[[5528,3575],[12,-16],[-19,-26],[-12,14]],[[5532,3467],[9,12],[-18,32],[6,9]],[[5529,3520],[27,-29],[-19,-29],[-5,5]],[[5556,3426],[24,-24],[-11,-16],[-23,26],[10,14]],[[5556,3427],[-13,-17],[-43,48],[12,18],[44,-49]],[[5507,3415],[18,12],[17,-19],[-11,-11],[-21,-7],[-29,1],[-6,25],[8,-1]],[[5482,3417],[-6,16],[23,23],[24,-28],[-16,-8]],[[5475,3373],[0,15],[37,0],[37,18],[19,-22],[-5,-9]],[[5364,3427],[109,-2],[0,-32],[-110,3],[1,31]],[[5885,3557],[11,-11],[17,20],[-2,14]],[[5911,3580],[21,-26],[-34,-35],[-20,29],[7,9]],[[5547,3472],[10,17],[30,-22]],[[5587,3467],[-9,-24]],[[5869,3925],[-22,-8],[-19,-38],[-8,5],[24,52]],[[5832,3830],[-14,3],[0,19],[-9,9],[10,21],[12,-4],[19,39],[17,5]],[[5796,3835],[11,24],[9,-8],[0,-15],[-20,-1]],[[5990,4024],[-10,9],[39,71],[8,-30],[0,-17],[-20,-24],[-17,-9]],[[5927,4028],[-8,7],[50,89],[12,-3]],[[5851,3942],[9,17],[38,16],[-11,4],[18,32],[8,-10],[-6,-36]],[[5903,4012],[-18,-39],[-27,-13],[33,59],[12,-7]],[[5905,4016],[-9,7],[15,26],[9,-6],[-15,-27]],[[5927,4078],[15,26],[9,-5],[-15,-27],[-9,6]],[[5917,4084],[-33,20],[13,23],[34,-18],[-14,-25]],[[5903,4057],[-33,21],[12,23],[33,-20],[-12,-24]],[[5886,4028],[-31,23],[13,24],[33,-21],[-15,-26]],[[5837,3942],[-10,0],[50,89],[7,-5],[-46,-84]],[[5875,4033],[-51,-91],[-10,0],[54,96],[7,-5]],[[5813,3943],[-19,0],[59,106],[14,-10],[-54,-96]],[[5719,4014],[2,12],[-41,8],[-2,-10]],[[5678,4024],[-7,23],[84,-15],[-4,-25],[-32,7]],[[5670,4072],[90,-12],[-4,-25],[-85,15],[-1,22]],[[5669,4095],[82,-6],[14,-3],[-4,-23],[-91,11],[-1,21]],[[5707,4130],[-9,-32],[-29,2],[0,15],[15,24],[8,31],[38,-18]],[[5730,4152],[-2,-11],[-17,6],[-4,-17]],[[5624,3985],[41,13],[5,-50],[-30,-18],[-19,47],[3,8]],[[5579,3911],[17,-26],[-16,-14],[-6,35],[5,5]],[[5518,3850],[13,38]],[[5531,3888],[6,-36],[-3,-18],[-1,-16],[-13,-9],[-64,-8],[-24,17],[2,13]],[[5500,3750],[-33,-6],[-2,19],[33,5],[2,-18]],[[5404,3769],[20,11],[2,-33],[-10,-7],[-12,29]],[[5401,3775],[-8,17],[32,27],[0,-28],[-24,-16]],[[5475,3902],[3,-18],[-50,-15],[-14,23],[60,18],[1,-8]],[[5400,3919],[24,7],[4,-25],[-18,-5],[-15,22],[5,1]],[[5441,3950],[-3,19],[41,11],[47,14],[16,-27],[-98,-29],[-3,12]],[[7051,5728],[-13,-8],[-15,23],[10,9]],[[6995,5773],[8,-4],[31,-53],[-60,-47],[0,28],[21,76]],[[6977,5797],[15,-21],[-9,-35],[-10,-33],[-64,-41],[-19,-7],[-9,-51]],[[6882,5609],[8,48],[21,7],[9,-39],[-38,-16]],[[6970,5667],[-47,-40],[-9,39],[58,38],[-2,-37]],[[6931,5592],[-13,-7],[-5,13],[-24,-14],[9,-37],[19,0]],[[6917,5547],[-8,-35],[-14,-6],[-13,42],[4,60],[35,14],[10,-30]],[[6881,5540],[10,-34],[-8,-3]],[[6914,5513],[6,36],[5,5],[26,-24],[21,-7],[-9,-30],[-32,17],[-17,3]],[[6928,5556],[20,17],[13,-9],[-16,-24],[-17,16]],[[6947,5538],[16,25],[22,-10],[-12,-27],[-26,12]],[[7005,5522],[-28,4],[12,29],[7,1],[9,-34]],[[7047,5576],[11,-4],[-10,-39],[-38,-10],[-9,35]],[[7060,5567],[25,-6],[0,-11],[-31,-14],[6,31]],[[7085,5599],[0,-33],[-23,9],[8,35],[15,-11]],[[7073,5634],[-5,-17],[-9,7]],[[7144,5595],[27,-23],[-14,-27],[-58,47],[-27,22],[4,18]],[[7098,5552],[-9,-1],[0,45],[10,-9],[55,-46],[-13,-26],[-43,37]],[[7161,5605],[19,-16],[-7,-14],[-26,22]],[[7176,5573],[7,14],[37,-31],[-14,-9],[-30,26]],[[7193,5515],[-34,28],[15,27],[33,-28],[16,10],[5,-13],[-35,-24]],[[7175,5490],[-32,23],[14,26],[33,-28],[-15,-21]],[[7166,5415],[-8,24],[33,21],[17,-22],[-42,-23]],[[7160,5374],[-18,24],[68,35],[1,-32],[-51,-27]],[[7186,5347],[-23,24],[48,25],[2,-32],[-27,-17]],[[7119,5386],[20,10],[8,-15],[35,-36],[-14,-8],[-10,-7],[-37,23],[-15,26],[13,7]],[[7146,5464],[17,-50],[-22,-12],[-16,47],[21,15]],[[7104,5434],[18,13],[16,-47],[-20,-10],[-13,-7],[-14,42],[13,9]],[[7100,5478],[13,6],[8,-32],[-18,-13],[-13,-9],[-1,44],[11,4]],[[7116,5490],[-1,44],[24,-22],[-23,-22]],[[7099,5547],[12,-10],[1,-49],[-12,-6],[-11,-4],[0,69],[10,0]],[[7055,5500],[-3,30],[34,15],[0,-32],[-31,-13]],[[7059,5465],[-3,30],[30,14],[0,-32],[-27,-12]],[[7064,5421],[-4,40],[26,11],[1,-44],[-23,-7]],[[7087,5423],[15,-42],[-32,-17],[-5,52],[22,7]],[[7099,5318],[14,37],[41,-26],[-33,-14],[-22,3]],[[7103,5377],[8,-18],[-16,-41],[-22,9],[-3,33],[33,17]],[[7025,5333],[1,16],[17,4],[2,-31],[2,32],[20,5],[2,-32],[17,-10],[-64,-26],[3,42]],[[7061,5415],[5,-52],[-19,-5],[-2,52],[16,5]],[[7026,5353],[1,51],[14,5],[2,-51],[-17,-5]],[[7061,5420],[-34,-11],[-5,36],[34,14],[5,-39]],[[7018,5479],[35,15],[3,-30],[-34,-15],[-4,30]],[[7006,5518],[6,-36],[-24,-1],[-22,10],[9,31],[31,-4]],[[7020,5407],[-24,2],[7,32],[13,2],[4,-36]],[[6976,5423],[5,25],[19,-7],[-7,-30],[-17,12]],[[6984,5477],[-11,-52],[-19,13],[11,49],[19,-10]],[[6962,5489],[-11,-49],[-18,9],[11,49],[18,-9]],[[6896,5503],[19,6],[25,-9],[-5,-23],[-31,-2],[-8,28]],[[6885,5499],[7,2],[9,-29],[1,-26],[-8,-1]],[[6894,5443],[8,0],[3,-44],[2,-21],[22,-116],[-9,0]],[[6911,5381],[-5,63],[23,0],[-7,-58],[-11,-5]],[[6926,5384],[5,59],[19,-7],[-12,-55],[-12,3]],[[6933,5342],[20,92],[19,-13],[-17,-76],[-22,-3]],[[6917,5341],[-6,36],[12,5],[14,-6],[-8,-34],[-12,-1]],[[6959,5345],[16,74],[17,-12],[-13,-59],[-20,-3]],[[6983,5348],[13,57],[25,-2],[-1,-51],[-37,-4]],[[7020,5348],[-2,-29],[-27,-7],[-7,5],[-1,26],[37,5]],[[7015,5285],[-25,-8],[-4,32],[30,4],[-1,-28]],[[6983,5312],[-27,-4],[1,32],[22,3],[4,-31]],[[6956,5266],[0,37],[27,5],[3,-32],[-30,-10]],[[6925,5302],[-7,34],[35,4],[-1,-33],[-27,-5]],[[6932,5263],[-6,35],[27,4],[-1,-37],[-20,-2]],[[6930,5259],[2,-40],[-13,-1],[-1,39],[12,2]],[[6934,5259],[23,2],[29,10],[-2,-41],[-35,-11],[-14,0],[-1,40]],[[7015,5225],[-2,-46],[-13,1],[-13,27],[3,64],[10,5],[17,5],[-2,-56]],[[6964,5163],[-3,57],[24,8],[0,-24],[7,-19],[-12,-4],[0,-15],[-16,-3]],[[6938,5163],[-3,51],[24,2],[1,-52],[-22,-1]],[[6934,5165],[-27,10],[12,39],[14,0],[1,-49]],[[6906,5121],[-4,20],[5,30],[36,-14],[-11,-31],[-26,-5]],[[7012,5152],[-25,-4],[-4,29],[30,0],[-1,-25]],[[6993,5080],[-7,63],[26,4],[4,-67],[-23,0]],[[7021,5038],[1,-32],[-13,0],[-57,15],[-15,23]],[[6923,5087],[-14,30],[22,3],[11,-32]],[[6944,5089],[-10,28],[21,5],[11,-33]],[[7111,4863],[-4,28]],[[7107,4891],[24,-4],[2,-29],[-22,5]],[[7130,4894],[-5,58],[19,3],[6,-64],[-20,3]],[[7108,4897],[-5,52],[20,3],[5,-57],[-20,2]],[[7101,4951],[5,-54],[-22,2],[-5,49],[22,3]],[[7063,4905],[-5,40],[18,3],[5,-49],[-18,6]],[[7036,4942],[19,3],[5,-40],[-20,-2],[-4,39]],[[7030,5001],[18,1],[6,-54],[-18,-3],[-6,56]],[[7052,5003],[18,1],[5,-53],[-17,-2],[-6,54]],[[7096,5005],[4,-48],[-22,-3],[-5,50],[23,1]],[[7103,4957],[-5,48],[20,1],[4,-46],[-19,-3]],[[7124,4960],[-4,46],[15,1],[6,-13],[3,-31],[-20,-3]],[[7098,5009],[-1,10],[24,17],[11,-26],[-34,-1]],[[7054,5009],[-3,35],[34,8],[23,15],[13,-28],[-27,-19],[0,-9],[-40,-2]],[[7023,5081],[22,2],[6,-74],[-21,-1],[-7,73]],[[7106,5072],[-20,-16],[-35,-8],[-3,35],[31,4],[16,10],[11,-25]],[[7098,5100],[23,16],[38,-84],[-27,-11],[-34,79]],[[7099,5175],[13,6],[63,-142],[-14,-6],[-62,142]],[[7067,5160],[29,14],[24,-55],[-23,-16],[-30,57]],[[7093,5101],[-15,-10],[-30,-4],[-2,24],[16,3],[20,13],[11,-26]],[[7080,5130],[-34,-15],[-3,36],[22,8],[15,-29]],[[7022,5085],[-4,62],[22,3],[5,-63],[-23,-2]],[[7019,5194],[9,0],[27,-24],[-3,-11],[-33,-6],[0,41]],[[7036,5211],[34,12],[24,-46],[-29,-12],[-30,28],[1,18]],[[7022,5246],[17,0],[16,10],[13,-30],[-20,-9],[-28,-2],[2,31]],[[7023,5283],[31,17],[28,-51],[29,-64],[-14,-6],[-25,48],[-18,44],[1,-11],[-18,-12],[-15,0],[1,35]],[[7155,4814],[-16,4],[-5,69],[17,0],[4,-40]],[[6963,5106],[-6,20],[-22,-1],[11,33],[15,3],[8,-51],[-6,-4]],[[6964,5105],[6,4],[-8,52],[20,2],[8,-82],[-18,-1],[-8,25]],[[7647,5763],[-56,-10],[2,25],[46,7],[8,-22]],[[7659,5733],[-70,-13],[2,29],[58,10],[10,-26]],[[7672,5699],[-24,-14],[-2,43],[14,2],[12,-31]],[[7585,5679],[0,34],[42,12],[16,0],[2,-40],[-36,-8],[-24,2]],[[7690,5652],[-21,-6],[-1,43],[5,6],[17,-43]],[[7635,5607],[0,30],[30,3],[1,-12],[-19,-2],[0,-19],[-12,0]],[[7647,5681],[18,7],[1,-43],[-18,-2],[-1,38]],[[7630,5640],[-1,38],[16,3],[1,-40],[-16,-1]],[[7610,5638],[1,36],[14,3],[2,-38],[-17,-1]],[[7608,5606],[1,28],[23,2],[0,-30],[-24,0]],[[7582,5606],[2,69],[23,-2],[-2,-67],[-23,0]],[[7581,5705],[-28,0],[0,30],[31,-7],[-3,-23]],[[7520,5744],[29,-8],[1,-11],[-30,-1],[0,20]],[[7487,5736],[19,13],[10,-4],[1,-21],[-30,0],[0,12]],[[7517,5720],[0,-32],[-30,-1],[0,33],[30,0]],[[7550,5720],[0,-32],[-30,0],[0,32],[30,0]],[[7580,5652],[-26,-1],[-1,50],[29,0],[-2,-49]],[[7521,5651],[-1,33],[30,0],[0,-33],[-29,0]],[[7518,5683],[0,-32],[-11,-1],[-1,33],[12,0]],[[7488,5650],[0,33],[16,0],[0,-32],[-16,-1]],[[7453,5645],[31,0],[1,-40],[-34,-1],[2,41]],[[7517,5646],[1,-41],[-29,0],[-1,40],[29,1]],[[7550,5646],[1,-40],[-30,-1],[0,41],[29,0]],[[7554,5647],[26,0],[-1,-41],[-25,0],[0,41]],[[7518,5563],[-29,-1],[-1,38],[30,1],[0,-38]],[[7522,5563],[-1,38],[30,0],[0,-37],[-29,-1]],[[7555,5563],[-1,39],[24,0],[-1,-38],[-22,-1]],[[7580,5564],[1,38],[24,0],[-1,-39],[-24,1]],[[7607,5563],[1,39],[24,0],[-1,-39],[-24,0]],[[7646,5562],[-12,0],[1,40],[12,0],[-1,-40]],[[7634,5558],[12,0],[-2,-93],[-12,-7],[2,100]],[[7631,5558],[-1,-54],[-24,1],[1,54],[24,-1]],[[7604,5441],[2,59],[24,-1],[-2,-43],[-24,-15]],[[7576,5443],[3,59],[23,-1],[-1,-61],[-25,3]],[[7604,5559],[-2,-54],[-24,1],[2,54],[24,-1]],[[7554,5559],[23,1],[-4,-126],[-26,0],[-21,-8],[-7,34],[28,11],[6,39],[1,49]],[[7519,5464],[1,45],[29,-1],[-5,-33],[-25,-11]],[[7520,5514],[2,45],[29,0],[-1,-47],[-30,2]],[[7500,5515],[1,43],[17,0],[-1,-44],[-17,1]],[[7486,5464],[2,47],[29,-2],[-2,-46],[-29,-12],[0,13]],[[7447,5557],[38,1],[-1,-43],[-39,2],[2,40]],[[7443,5513],[41,-2],[-1,-33],[-42,2],[2,33]],[[7446,5430],[36,15],[6,-35],[-36,-14],[-6,34]],[[7498,5373],[-6,35],[31,12],[7,-38],[-32,-9]],[[7534,5383],[-8,38],[25,10],[22,-1],[-4,-37],[-35,-10]],[[7606,5436],[24,16],[35,-95],[-26,-15],[-33,94]],[[7681,5366],[-13,-8],[-36,96],[13,8],[36,-96]],[[7598,5404],[13,7],[25,-71],[-26,-12],[-12,76]],[[7581,5313],[-8,76],[22,13],[12,-76],[-26,-13]],[[7549,5305],[-14,74],[34,9],[9,-76],[-29,-7]],[[7505,5334],[-6,34],[32,10],[7,-35],[-33,-9]],[[7512,5295],[-7,35],[34,9],[6,-35],[-33,-9]],[[7459,5358],[37,10],[5,-35],[-35,-9],[-7,34]],[[7466,5319],[36,10],[6,-36],[-35,-9],[-7,35]],[[7474,5279],[35,10],[5,-28],[-35,-10],[-5,28]],[[7480,5247],[34,10],[5,-29],[-35,-4],[-4,23]],[[7517,5262],[-5,27],[34,10],[5,-28],[-34,-9]],[[7523,5229],[-5,29],[34,9],[6,-28],[-35,-10]],[[7561,5240],[-12,60],[29,8],[15,-58],[-32,-10]],[[7582,5309],[26,13],[17,-57],[-29,-13],[-14,57]],[[7628,5266],[-17,57],[27,13],[20,-56],[-30,-14]],[[7661,5281],[-20,57],[26,15],[21,-56],[-27,-16]],[[7704,5306],[-13,-7],[-21,55],[12,8],[22,-56]],[[7705,5302],[27,-72],[-13,-6],[-27,71],[13,7]],[[7689,5293],[27,-71],[-28,-12],[-25,67],[26,16]],[[7660,5276],[24,-68],[-35,-16],[-20,70],[31,14]],[[7626,5261],[20,-70],[-28,-13],[-21,69],[29,14]],[[7562,5236],[32,10],[21,-69],[-32,-15],[-21,74]],[[7517,5221],[42,14],[6,-23],[-32,-14],[-16,23]],[[7559,5151],[-9,33],[-14,10],[30,14],[14,-48],[-21,-9]],[[7485,5220],[27,1],[11,-22],[22,-21],[-52,-1],[-8,43]],[[7494,5173],[54,1],[7,-23],[-57,-1],[-4,23]],[[7510,5085],[63,3],[4,-15],[-13,-5],[-50,-3],[-4,20]],[[7571,5109],[-11,38],[21,9],[10,-38],[-20,-9]],[[7581,5074],[-9,30],[21,10],[8,-30],[-20,-10]],[[7595,5119],[-11,39],[63,29],[6,-20],[-6,-24],[-52,-24]],[[7596,5115],[52,24],[13,-5],[5,-20],[-62,-28],[-8,29]],[[7664,5136],[6,27],[30,3],[10,-30],[-40,-21],[-6,21]],[[7655,5172],[-4,16],[35,16],[12,-34],[-29,-3],[-14,5]],[[7713,5138],[-24,67],[29,14],[23,-61],[-28,-20]],[[7756,5169],[-12,-8],[-23,59],[13,6],[22,-57]],[[7745,5157],[12,8],[29,-77],[-13,-6],[-28,75]],[[7788,5084],[16,-42],[-16,0],[-14,36],[14,6]],[[7736,5060],[35,17],[14,-35],[-42,-5],[-7,23]],[[7727,5093],[32,15],[11,-28],[-35,-16],[-8,29]],[[7742,5154],[16,-42],[-33,-15],[-10,37],[27,20]],[[7712,5132],[10,-36],[-41,-19],[-10,34],[41,21]],[[7668,5109],[9,-33],[-62,-28],[-9,33],[62,28]],[[7603,5080],[9,-34],[-25,-11],[-5,35],[21,10]],[[7515,5060],[64,6],[2,-31],[-61,-3],[-5,28]],[[7521,5028],[59,3],[-4,-36],[-48,-3],[-7,36]],[[7535,4954],[-7,33],[48,3],[-3,-26],[-10,-3]],[[7580,4995],[5,34],[28,13],[8,-29],[-41,-18]],[[7625,5015],[-8,29],[106,48],[8,-28],[-106,-49]],[[7626,5011],[107,48],[6,-23],[-42,-17],[-63,-37],[-8,29]],[[7702,4964],[-21,-5],[-11,38],[24,14],[6,-17]],[[7636,4978],[31,18],[8,-29],[-30,-15],[-9,26]],[[7646,4948],[30,15],[7,-34],[-33,1],[-4,18]],[[7703,4929],[-16,0],[-5,27],[20,4]],[[7703,4912],[-54,2]],[[7649,4914],[1,12],[53,-1]],[[7632,4975],[9,-23],[-68,-39],[-8,24],[67,38]],[[7538,4908],[3,15],[20,12],[10,-25],[-3,-42],[6,41],[19,11],[-7,-70]],[[7501,4873],[19,-5]],[[7296,4883],[2,16],[33,7],[4,-36],[-44,-1],[5,14]],[[7294,4939],[34,4],[4,-35],[-35,-6],[-3,37]],[[7281,4974],[13,-1],[-2,-28],[5,-58],[-11,-12],[-8,99],[20,36],[1,-33],[-18,-3]],[[7295,4971],[30,5],[3,-31],[-31,-2],[-2,28]],[[7300,5011],[22,1],[3,-34],[-24,-2],[-1,35]],[[7334,4892],[-7,87],[-5,39],[18,9]],[[7413,5049],[51,3],[7,-18]],[[7429,4984],[-5,-6],[11,-104],[-4,1]],[[7485,4988],[4,0],[38,-68],[-22,-7],[-20,75]],[[7522,4993],[14,-74],[-2,-7],[-44,79]],[[7472,5036],[-4,13],[43,3],[2,-14]],[[7507,5075],[3,-19],[-24,-1],[-4,19]],[[7477,5098],[-6,43],[-32,-2],[-1,26],[52,3],[11,-68]],[[7442,5115],[-2,21],[28,2],[4,-22],[-30,-1]],[[7441,5112],[31,1],[11,-58],[-37,-2],[-5,59]],[[7439,5111],[4,-58],[-22,-1],[-4,58],[22,1]],[[7414,5110],[5,-57],[-22,-3],[-5,59],[22,1]],[[7390,5109],[4,-59],[-21,-1],[-4,59],[21,1]],[[7355,5108],[11,0],[5,-58],[-11,-2]],[[7338,5165],[24,3],[4,-56],[-24,-2],[-4,55]],[[7369,5111],[-5,57],[22,2],[5,-57],[-22,-2]],[[7393,5113],[-5,57],[22,3],[4,-59],[-21,-1]],[[7434,5176],[5,-61],[-22,-1],[-5,60],[22,2]],[[7412,5175],[-1,12],[19,0],[3,-9],[-21,-3]],[[7388,5172],[-1,16],[22,-1],[1,-12],[-22,-3]],[[7364,5169],[-1,20],[22,-1],[1,-16],[-22,-3]],[[7338,5166],[-3,25],[25,-2],[2,-20],[-24,-3]],[[7336,5195],[-8,22],[-1,39],[86,9],[4,-26],[-76,-1],[0,-4],[77,1],[4,-17]],[[7489,5172],[-52,-2],[-7,29],[53,3],[6,-30]],[[7482,5206],[-53,-3],[-7,32],[55,0],[5,-29]],[[7476,5240],[-55,-1],[-5,27],[53,12],[7,-38]],[[7468,5282],[-37,-10],[-6,33],[37,12],[6,-35]],[[7461,5322],[-52,-19],[-5,24],[53,17],[4,-22]],[[7406,5298],[6,-28],[-38,-4],[-4,24],[36,8]],[[7401,5326],[4,-24],[-61,-14],[22,0],[5,-23],[-41,-4],[-3,42],[74,23]],[[7255,5268],[-3,12],[70,22],[4,-41],[-43,0],[-28,7]],[[7217,5357],[15,9],[20,-97]],[[7246,5309],[71,23],[4,-28],[-70,-22],[-5,27]],[[7245,5312],[-4,27],[61,20],[8,10],[5,-34],[-70,-23]],[[7309,5374],[-11,-13],[-58,-19],[-7,29],[9,11],[7,-8],[56,19],[4,-19]],[[7305,5396],[-55,-19],[-7,7],[13,19],[19,14],[24,5],[6,-26]],[[7325,5306],[-5,27],[36,11],[4,-27],[-35,-11]],[[7400,5329],[-35,-11],[-6,28],[36,11],[5,-28]],[[7456,5348],[-52,-18],[-6,28],[53,18],[5,-28]],[[7450,5379],[-53,-17],[-6,34],[52,18],[7,-35]],[[7394,5361],[-36,-12],[-6,34],[36,12],[6,-34]],[[7319,5336],[-6,34],[35,12],[7,-34],[-36,-12]],[[7312,5375],[-10,48],[37,8],[9,-44],[-36,-12]],[[7351,5388],[-8,44],[36,9],[8,-41],[-36,-12]],[[7390,5401],[-8,41],[54,12],[7,-35],[-53,-18]],[[7436,5458],[-22,-4],[-8,34],[29,13],[1,-43]],[[7437,5506],[-32,-14],[-9,23],[44,20],[-3,-29]],[[7440,5539],[-45,-20],[-6,15],[53,29],[-2,-24]],[[7380,5476],[4,-14],[23,6]],[[7407,5468],[3,-15],[-31,-7],[-9,26],[10,4]],[[7386,5532],[16,-41],[-33,-15],[-13,39],[30,17]],[[7334,5503],[19,10],[22,-68],[-19,-4],[-22,62]],[[7331,5500],[21,-60],[-23,-5],[-19,54],[21,11]],[[7306,5487],[20,-53],[-25,-6],[-17,47],[22,12]],[[7281,5473],[16,-46],[-24,-5],[-14,39],[22,12]],[[7256,5459],[14,-39],[-24,-22],[-9,51],[19,10]],[[7213,5435],[21,12],[10,-53],[-14,-20],[-14,-8],[-3,69]],[[7194,5462],[50,29],[11,-28],[-44,-24],[-17,23]],[[7178,5487],[15,24],[36,23],[14,-39],[-51,-30],[-14,22]],[[7258,5465],[-11,28],[22,12],[10,-28],[-21,-12]],[[7253,5551],[15,-41],[-22,-13],[-14,40],[21,14]],[[7231,5541],[-5,14],[21,13],[5,-13],[-21,-14]],[[7272,5507],[23,13],[10,-29],[-23,-12],[-10,28]],[[7303,5508],[-5,14],[21,12],[10,-29],[-21,-12],[-5,15]],[[7256,5553],[22,15],[15,-44],[-22,-13],[-15,42]],[[7301,5584],[16,-46],[-21,-12],[-15,44],[20,14]],[[7299,5588],[-20,-14],[-4,12],[20,15],[4,-13]],[[7332,5506],[-10,30],[26,15],[11,-30],[-27,-15]],[[7329,5603],[18,-48],[-27,-15],[-16,46],[25,17]],[[7302,5590],[-4,13],[25,17],[5,-13],[-26,-17]],[[7374,5565],[11,-29],[-23,-13],[-10,29],[22,13]],[[7377,5567],[24,14],[11,-30],[-24,-14],[-11,30]],[[7443,5569],[-28,-16],[-11,30],[40,23],[-1,-37]],[[7376,5571],[-9,24],[23,14],[9,-24],[-23,-14]],[[7373,5569],[-23,-12],[-8,22],[22,14],[9,-24]],[[7331,5609],[-5,13],[22,16],[5,-13],[-22,-16]],[[7378,5638],[10,-25],[-22,-14],[-9,24],[21,15]],[[7403,5654],[9,-26],[-21,-13],[-10,24],[22,15]],[[7402,5659],[-22,-16],[-5,12],[22,16],[5,-12]],[[7449,5651],[-34,-21],[-9,26],[41,29],[2,-34]],[[7404,5660],[-4,13],[47,37],[3,-19],[-46,-31]],[[7452,4875],[-16,0],[-11,102],[14,7]],[[7448,4904],[4,-29]],[[7488,4904],[41,14],[5,-9],[-9,-35],[-24,1]],[[7460,4920],[-4,37],[2,29],[24,2],[19,-76],[-15,-5]],[[7499,5145],[57,1],[15,-53],[-62,-3],[-10,55]],[[7623,4767],[-27,4]],[[7596,4771],[-16,2],[-7,11]],[[7573,4784],[17,74],[22,3],[13,77],[17,10],[5,-27],[-10,-64],[-14,-90]],[[7610,4871],[-18,-1],[5,52],[24,14],[-11,-65]],[[7326,5218],[7,-27],[7,-84]],[[7335,4767],[2,-34],[-36,-8],[-6,51],[40,-9]],[[7371,4759],[1,-18],[-33,-8],[-2,34],[34,-8]],[[7347,4672],[-7,55],[30,7],[7,-41],[-6,-15],[-24,-6]],[[7313,4673],[-11,45],[36,9],[6,-47],[-31,-7]],[[7326,4609],[-13,62],[26,7],[9,-64],[-22,-5]],[[7350,4615],[-8,55],[29,7],[3,-59],[-24,-3]],[[7332,4576],[-5,30],[46,8],[-1,-34],[-40,-4]],[[7334,4572],[38,4],[49,-17],[2,-18],[15,11],[24,-11],[-6,-18]],[[7376,4579],[1,33],[42,2],[2,-50],[-45,15]],[[7424,4562],[-2,52],[25,2],[1,-65],[-24,11]],[[7465,4544],[-14,7],[0,64],[38,3],[1,-28],[-12,-12],[-13,-34]],[[7401,4651],[6,-33]],[[7407,4618],[-30,-1],[-1,33],[25,1]],[[7422,4619],[-3,33],[28,1],[0,-32],[-25,-2]],[[7375,4654],[0,34],[24,6],[6,-38],[-30,-2]],[[7439,4678],[7,-5]],[[7446,4673],[0,-15],[-28,-1],[-6,43]],[[7488,4661],[13,-3],[-2,-11],[22,-6]],[[7521,4641],[-5,-63],[-14,-1],[-7,13],[-7,71]],[[7573,4608],[1,-24]],[[7574,4584],[-55,-4],[1,23]],[[7601,4585],[-1,25]],[[7621,4613],[4,-26],[-24,-2]],[[7726,4637],[11,2]],[[7737,4639],[8,-52],[-11,-2],[-8,52]],[[7693,4631],[29,6]],[[7722,4637],[2,-17],[-42,-7],[-1,16],[12,2]],[[7686,4577],[-3,32],[42,8],[5,-32],[-44,-8]],[[7622,4633],[54,11],[3,-32],[-53,-10],[-4,31]],[[7670,4575],[-40,-7],[-3,30],[52,10],[3,-31],[-12,-2]],[[7606,4550],[-7,32],[23,2],[5,-28],[-21,-6]],[[7510,4552],[8,23],[28,4],[5,-41],[-11,-2],[-30,16]],[[7491,4584],[6,-9],[17,-2],[-11,-31],[-29,13],[17,29]],[[7461,4517],[10,33],[30,-12],[-9,-33]],[[7502,4523],[7,24],[39,-19],[-7,-24],[-39,19]],[[7495,4503],[5,16],[68,-34],[5,-18]],[[7546,4503],[9,30],[20,4],[12,-56],[-41,22]],[[7578,4539],[25,4],[14,-62],[-25,-2],[-14,60]],[[7621,4481],[-14,63],[21,4],[6,-64],[-13,-3]],[[7577,4465],[-2,17],[15,-7],[25,2],[8,-18],[25,-11],[7,-19]],[[7655,4480],[15,-6],[20,3],[4,-26],[-41,-7],[-12,33],[14,3]],[[7658,4499],[31,5],[2,-22],[-17,-4],[-15,5],[-1,16]],[[7689,4508],[-35,-5],[0,-18],[-16,-1],[-4,45],[52,8],[3,-29]],[[7669,4570],[14,2],[2,-30],[-52,-9],[-3,30],[39,7]],[[7689,4542],[-3,31],[45,7],[5,-31],[-47,-7]],[[7746,4583],[11,-65],[-11,-1],[-12,64],[12,2]],[[7692,4509],[-3,28],[48,8],[5,-29],[-50,-7]],[[7747,4489],[-52,-8],[-3,23],[51,8],[4,-23]],[[7695,4475],[52,10],[6,-26],[-56,-8],[-2,24]],[[7768,4462],[-11,-2],[-11,53],[12,1],[10,-52]],[[7790,4388],[-21,9],[2,7],[-13,52],[11,2],[11,-41],[10,-29]],[[7736,4454],[18,1],[14,-51],[-2,-5],[-27,12],[-3,43]],[[7699,4430],[-1,17],[34,5],[4,-39],[-37,17]],[[7695,4432],[-25,11],[23,3],[2,-14]],[[7660,4427],[-5,14],[15,-3],[122,-56],[5,-12]],[[7804,4354],[10,-21],[-45,26],[-79,35],[-17,6],[6,9]],[[7660,4417],[3,-14],[-80,36],[-3,13]],[[7490,4424],[7,-28],[-31,-14],[-18,64],[9,37],[3,28]],[[7496,4442],[18,-7]],[[7514,4435],[8,-28],[-22,-10],[-7,28]],[[7554,4411],[6,-14],[-24,-17],[-15,39]],[[7562,4443],[18,-7],[6,-21],[-24,-17],[-6,14]],[[7454,4503],[0,-11],[-94,42],[-20,4],[-4,18]],[[7448,4465],[-4,-4],[-52,24],[8,27],[53,-24],[-5,-23]],[[7372,4487],[-12,42],[36,-16],[-7,-27],[-17,1]],[[7381,4462],[10,18],[25,-11],[-26,-29],[-9,22]],[[7461,4382],[-21,-9],[-17,58],[19,19],[19,-68]],[[7403,4408],[18,20],[16,-57],[-19,-8],[-15,45]],[[7470,4350],[-46,-20],[-5,29],[43,19],[8,-28]],[[7467,4378],[31,14],[8,-26],[-32,-14],[-7,26]],[[7509,4367],[-8,26],[22,10],[10,-25],[-24,-11]],[[7518,4335],[-8,28],[25,11],[10,-27],[-27,-12]],[[7430,4297],[-5,29],[46,20],[7,-28],[-48,-21]],[[7442,4297],[7,-28],[-10,-5],[-8,28],[11,5]],[[7487,4285],[-35,-15],[-8,28],[36,16],[7,-29]],[[7484,4315],[32,14],[7,-28],[-31,-13],[-8,27]],[[7526,4303],[-7,28],[28,12],[11,-26],[-32,-14]],[[7528,4299],[31,14],[18,-32],[-40,-18],[-9,36]],[[7498,4246],[-45,-19],[-13,33],[49,22],[9,-36]],[[7508,4209],[-38,-17],[-15,31],[44,19],[9,-33]],[[7503,4244],[32,14],[9,-33],[-31,-14],[-10,33]],[[7595,4248],[-48,-21],[-9,32],[41,18],[16,-29]],[[7576,4328],[-15,-10],[-23,58],[24,17],[7,-14]],[[7571,4381],[-6,14],[20,14],[3,2],[27,-63],[-12,-7]],[[7644,4407],[26,-11],[3,-7],[-31,-21],[-21,47],[23,-8]],[[7679,4388],[11,3],[45,-21],[-6,-23],[-38,13],[-12,28]],[[7707,4326],[-13,27],[33,-10],[-20,-17]],[[7672,4301],[-28,63],[31,22],[28,-63],[-31,-22]],[[7669,4299],[-22,-15],[-27,63],[21,15],[28,-63]],[[7632,4273],[-27,63]],[[7605,4336],[12,9],[28,-63],[-13,-9]],[[7579,4323],[27,-62],[2,-5]],[[7608,4256],[-10,-7],[-36,65],[17,9]],[[7709,4322],[20,18],[19,-26],[-31,-11],[-8,19]],[[7769,4314],[-14,-3],[-24,33],[7,24],[21,-9],[10,-45]],[[7765,4356],[29,-16],[8,-15],[-30,-12],[-7,43]],[[7710,4240],[-9,-6],[-28,63],[32,23],[8,-18]],[[7713,4302],[-23,-17],[20,-45]],[[7711,4237],[15,-35]],[[7726,4202],[-9,-6],[-15,35],[9,6]],[[7753,4216],[25,-54],[-22,-17],[-27,54],[24,17]],[[7732,4127],[-12,-10],[-6,14]],[[7706,4150],[-11,26],[12,8]],[[7714,4194],[-21,-15],[-15,35],[21,15],[15,-35]],[[7669,4233],[-20,47],[21,15],[21,-47],[-22,-15]],[[7609,4252],[25,18],[12,8],[28,-62],[-13,-9],[-24,-19],[-17,-7],[-8,34],[-12,31],[9,6]],[[7610,4180],[-25,2],[-3,21],[28,12],[8,-34],[-8,-1]],[[7561,4176],[-13,47],[49,21],[12,-27],[-32,-13],[6,-22],[-22,-6]],[[7514,4207],[31,14],[9,-31],[-32,-14],[-8,31]],[[7528,4138],[-28,-14],[-14,31],[33,16],[9,-33]],[[7539,4099],[-26,-5],[-13,28],[29,13],[10,-36]],[[7523,4172],[21,11],[22,-79],[-23,-4],[-20,72]],[[7570,4104],[-18,66],[31,10],[3,-28],[1,-48],[-17,0]],[[7610,4178],[8,1],[0,-38],[-7,-42],[-23,5],[1,31],[-4,45],[25,-2]],[[7637,4090],[-24,9],[8,57],[-1,23],[29,15],[13,-29],[-18,-20],[-7,-55]],[[7780,4159],[26,-56],[-21,-17],[-28,55],[23,18]],[[7755,4139],[27,-55],[-16,-13],[-27,56],[16,12]],[[7721,4113],[15,12],[27,-56],[-15,-12],[-27,56]],[[7707,4102],[11,9],[87,-179],[-10,-10]],[[7711,4026],[-12,-5],[-27,54],[12,9]],[[7697,4019],[-29,-4],[-2,48],[7,6],[24,-50]],[[7640,4013],[-2,72],[21,-12],[4,-9],[2,-50],[-25,-1]],[[7619,4011],[-6,49],[-1,34],[24,-8],[3,-73],[-20,-2]],[[7582,3999],[-10,-4],[-28,101],[22,3],[5,-18]],[[7575,4082],[-5,17],[40,-4],[1,-38],[6,-47],[-10,-2]],[[7556,4036],[-15,-4],[-26,57],[25,6],[16,-59]],[[7525,3997],[-3,22],[-33,-5],[-5,14],[2,-22],[-38,-7]],[[7448,3999],[-3,25]],[[7445,4024],[23,6],[15,11],[-1,42],[31,6],[22,-53],[21,-2],[24,-84],[-7,-4]],[[7573,3992],[32,13],[6,-78],[-18,-6],[-20,71]],[[7611,3972],[-4,34],[28,4],[1,-45],[-5,-42],[-18,5],[-2,44]],[[7636,3952],[1,58],[28,1],[0,-25],[-14,-71],[-18,7],[3,30]],[[7596,3913],[18,12],[36,-12],[-3,-22],[-51,22]],[[7649,3890],[4,22],[29,-11],[-3,-18],[-30,7]],[[7665,3962],[3,50],[30,5],[14,-28],[-22,-18],[2,-5],[-10,-62],[-28,10],[11,48]],[[7742,3963],[-11,-8],[-31,63],[12,6]],[[7771,3904],[-11,-9],[-28,58],[11,8]],[[7693,3965],[20,22],[16,-33],[-11,-15],[-6,-44],[-28,8],[9,62]],[[7721,3945],[9,7],[28,-58],[-16,-6],[-28,6],[7,51]],[[7681,3882],[3,18],[52,-14],[-3,-16],[-52,12]],[[7793,3859],[-58,11],[3,16],[34,16]],[[7797,3919],[11,8],[24,-49],[-8,-17]],[[7811,3930],[15,11],[22,-21],[-16,-34],[-21,44]],[[7851,3927],[-22,17],[16,6],[11,-8],[-5,-15]],[[7781,3990],[15,11],[28,-56],[-15,-12],[-28,57]],[[7799,4003],[16,13],[30,-60],[-18,-9],[-28,56]],[[7839,4034],[29,-62],[-9,-24],[-8,4],[-33,66],[21,16]],[[7759,4035],[-9,19],[15,11],[29,-60],[-15,-11],[-20,41]],[[7768,4067],[16,13],[29,-61],[-16,-12],[-29,60]],[[7787,4082],[21,17],[29,-61],[-21,-16],[-29,60]],[[7787,4152],[25,7],[31,-65],[-21,-16],[-35,74]],[[7816,4160],[18,5],[27,-58],[-15,-11],[-30,64]],[[7837,4166],[18,5],[24,-50],[-15,-11],[-27,56]],[[7859,4172],[22,6],[23,-38],[-22,-17],[-23,49]],[[7931,4135],[-7,-20],[-40,65],[13,3],[34,-48]],[[7884,4120],[22,16],[16,-25],[-15,-40],[-23,49]],[[7866,4106],[15,11],[24,-50],[-11,-22],[-28,61]],[[7841,4039],[-17,35],[21,16],[17,-36],[-21,-15]],[[7855,4075],[16,12],[23,-49],[-10,-26],[-29,63]],[[7842,4036],[21,16],[20,-43],[-13,-32],[-28,59]],[[7830,3862],[5,13],[51,0],[2,-15],[-47,4],[-11,-2]],[[7839,3880],[13,38],[18,-13],[12,-26],[-43,1]],[[7895,3886],[-8,-4],[-16,29],[-17,14],[13,33]],[[7867,3958],[34,-68],[-6,-4]],[[7929,4118],[5,14],[18,-23],[-7,-18]],[[7992,4060],[-20,-23],[-25,49],[8,20],[37,-46]],[[7975,4032],[11,15],[40,-58],[-20,-16],[-31,59]],[[8012,3975],[15,13],[24,-43],[-9,-41],[-35,67],[5,4]],[[8057,3969],[-5,-19],[-23,42],[-40,58],[5,7],[40,-49],[23,-39]],[[7769,4308],[8,-19],[-16,-11]],[[7761,4278],[-23,-17],[-18,39],[49,8]],[[7793,4314],[12,8],[17,-32],[-15,-8],[-14,32]],[[7584,3938],[6,-21],[-16,2]],[[8027,3868],[11,35],[6,-4],[15,66],[18,-33],[-8,-13],[-21,-61]],[[7677,4171],[-12,-6],[-14,30],[24,17],[42,-97],[-46,-37],[-11,-1],[-22,12],[8,57],[6,8]],[[7294,4754],[-42,3],[0,30],[38,-9],[4,-24]],[[7298,4724],[-40,-9],[-6,39],[42,-6],[4,-24]],[[7310,4672],[-22,-5],[-8,45],[19,6],[11,-46]],[[7323,4609],[-23,-6],[-12,63],[22,5],[13,-62]],[[7100,4621],[2,5],[54,-9],[18,-6],[92,-16],[23,-1],[33,9],[7,-31]],[[7256,4601],[-10,3],[-3,51],[43,10],[12,-63],[-21,-3]],[[7264,4662],[-6,45],[20,4],[8,-44],[-22,-5]],[[7243,4657],[-7,45],[20,4],[6,-45],[-19,-4]],[[7233,4761],[-2,30]],[[7231,4791],[17,-4],[-1,-29],[-14,3]],[[7202,4697],[3,-39],[11,1]],[[7216,4659],[0,-21],[-34,5],[12,19],[-5,32],[13,3]],[[7223,4607],[-4,43],[21,5],[4,-50],[-21,2]],[[7179,4641],[37,-6],[2,-27],[-55,12],[16,21]],[[7148,4688],[32,38],[5,-30],[-37,-8]],[[7136,4774],[42,-15],[2,-27],[-8,-8],[-45,16],[9,34]],[[7175,4804],[3,-40],[-41,15],[9,33],[29,-8]],[[7100,4822],[41,-9],[-8,-33],[-38,13],[5,29]],[[7068,4669],[-12,23],[23,22],[27,-36],[-38,-9]],[[7064,4666],[19,-38],[-5,-4],[-51,9],[1,24],[36,9]],[[7027,4663],[-10,31],[21,23],[24,-46],[-35,-8]],[[7055,4696],[-14,25],[27,31],[16,-2],[-5,-31],[-24,-23]],[[7042,4799],[7,-4],[18,19],[27,-6]],[[7094,4808],[-10,-56],[-14,3],[-30,-33],[-16,24],[18,53]],[[6996,4735],[34,34],[-12,-29],[-22,-5]],[[7036,4788],[-14,-21],[-65,-65]],[[7050,4610],[8,-10],[27,-2],[-19,-24],[-12,9],[-65,12],[-14,21]],[[7014,4557],[-20,28],[3,4],[61,-11],[5,-8],[-15,-14]],[[7045,4512],[19,19],[-15,22]],[[7049,4553],[29,28],[18,-31],[-27,-26],[34,-49],[-9,-33],[-49,70]],[[7104,4480],[-30,41],[23,25],[19,-36],[-12,-30]],[[7162,4435],[-38,16],[22,26],[12,8],[4,-50]],[[7133,4469],[-13,-17],[-17,9],[10,38]],[[7118,4564],[16,-31],[-15,-20],[-19,36],[18,15]],[[7116,4568],[-18,-16],[-17,33],[21,11],[14,-28]],[[7332,4557],[4,-19],[-107,17],[-28,4],[-78,6],[-13,25],[28,-2]],[[7160,4527],[-13,-10],[-20,40],[25,1]],[[7152,4558],[-1,-19],[9,-12]],[[7161,4491],[18,25]],[[7179,4516],[4,-25],[-22,0]],[[7202,4537],[7,-41],[-22,-5],[-5,29],[-6,36],[23,-1],[3,-18]],[[7205,4539],[-2,15],[19,-3],[9,-1],[8,-48],[-26,-6],[-8,43]],[[7242,4502],[-8,47],[26,-4],[6,-38],[-24,-5]],[[7272,4495],[-8,50],[27,-4],[6,-40],[-25,-6]],[[7300,4503],[-6,37],[30,-5],[9,-23],[-33,-9]],[[7368,4486],[-19,-5],[-21,54],[25,-4],[15,-45]],[[7398,4410],[-10,-12],[-23,7],[-12,72],[17,5],[28,-72]],[[7330,4471],[20,5],[11,-71],[-22,7],[-9,59]],[[7306,4469],[-5,30],[34,9],[11,-28],[-40,-11]],[[7278,4461],[-5,30],[25,6],[4,-29],[-24,-7]],[[7283,4428],[-4,29],[12,3]],[[7291,4460],[2,-13]],[[7317,4447],[13,2]],[[7330,4449],[5,-35],[-13,3]],[[7250,4454],[-7,44],[24,5],[7,-43],[-24,-6]],[[7192,4439],[-23,-4],[-6,43],[26,-19],[3,-20]],[[7200,4410],[-7,45],[46,-37],[-39,-8]],[[7189,4352],[29,-58],[-13,-14],[-16,18],[0,54]],[[7189,4283],[21,-20],[6,-22],[0,-29],[-26,0],[-1,71]],[[7208,4275],[14,12],[20,-30],[1,-62],[-23,0],[-4,62],[-8,18]],[[7268,4196],[-22,-1],[-1,54],[23,-30],[0,-23]],[[7272,4167],[0,46],[31,-46],[-31,0]],[[7296,4185],[1,55],[25,1],[-9,-73],[-17,17]],[[7297,4244],[2,52],[34,0],[-10,-51],[-26,-1]],[[7334,4299],[-35,-1],[2,24],[46,1],[-13,-24]],[[7400,4405],[15,-44],[-12,-5],[-34,-2],[31,51]],[[7427,4295],[-24,-7],[-8,64],[21,5],[11,-62]],[[7374,4300],[-33,2],[26,48],[25,2],[1,-11]],[[7339,4296],[59,2],[5,-23],[-73,-3],[9,24]],[[7374,4247],[0,22],[31,1],[5,-18],[-36,-5]],[[7327,4245],[2,23],[42,1],[0,-22],[-44,-2]],[[7322,4198],[4,43],[17,1],[1,-43],[-22,-1]],[[7346,4242],[25,1],[1,-43],[-25,-1],[-1,43]],[[7400,4201],[-25,-1],[-1,28],[19,1],[7,-28]],[[7393,4242],[18,6],[16,-47],[-24,0],[-10,41]],[[7450,4225],[-24,-10],[-11,34],[22,10],[13,-34]],[[7466,4150],[-17,38],[-11,-7]],[[7438,4181],[-10,30],[24,10],[31,-64],[-17,-7]],[[7368,4173],[-50,-4],[3,25],[39,2]],[[7360,4196],[8,-23]],[[7369,4171],[8,-23]],[[7377,4148],[-54,-5],[-5,23],[51,5]],[[7404,4145],[0,-31],[-39,6],[1,23],[38,2]],[[7451,4146],[15,-28],[-59,-4],[0,30],[44,2]],[[7498,4124],[-28,-6],[-15,28],[29,9],[14,-31]],[[7511,4093],[-29,-6],[-9,27],[25,8],[13,-29]],[[7478,4087],[-34,-5],[-2,30],[27,2],[9,-27]],[[7440,4081],[-30,-2],[-3,30],[32,3],[1,-31]],[[7481,4055],[-68,-7],[-4,27],[70,7],[2,-27]],[[7480,4041],[-12,-10],[-37,-10],[-15,26],[64,6],[0,-12]],[[7405,4078],[-35,-2],[-44,65],[35,3],[3,-29],[17,1],[23,-8],[1,-30]],[[7366,4075],[-60,-4],[4,30],[36,2],[20,-28]],[[7315,4149],[29,-43],[-34,-2],[5,45]],[[7309,4135],[-37,0],[0,27],[34,1],[3,-28]],[[7268,4192],[1,-58],[-23,0],[-1,56],[23,2]],[[7243,4191],[0,-57],[-23,0],[-1,57],[24,0]],[[7191,4133],[0,57],[25,0],[0,-57],[-25,0]],[[7305,4105],[-31,-2],[-2,28],[35,1],[-2,-27]],[[7302,4071],[-29,-1],[1,30],[31,-1],[-3,-28]],[[7270,4070],[-23,1],[-1,58],[23,2],[1,-61]],[[7221,4076],[-1,53],[24,-1],[1,-59],[-24,7]],[[7192,4072],[-1,57],[26,0],[0,-51],[-25,-6]],[[7269,4273],[-4,-43]],[[7265,4230],[-20,29]],[[7169,4401],[-54,35],[-7,-12]],[[7108,4424],[-12,16],[6,19],[19,-11],[44,-19],[4,-28]],[[7172,4404],[-3,26],[24,5],[3,-26]],[[6952,4650],[33,33],[12,-15],[-1,-12],[-41,-10],[-3,4]],[[7001,4658],[-24,56],[21,17],[25,6],[15,-17],[-22,-22],[-13,10],[16,-25],[6,-20],[-24,-5]],[[7353,4354],[-4,0],[-9,53],[47,-13],[-23,-40],[-11,0]],[[7189,4051],[-14,1],[-2,14]],[[7173,4066],[16,2],[0,-17]],[[7192,4054],[0,14],[25,4],[17,-7],[48,1],[0,-15]],[[7214,4047],[-22,7]],[[7286,4052],[0,14],[17,1],[-2,-14]],[[7301,4053],[-1,0]],[[7300,4053],[-1,0]],[[7299,4053],[-13,-1]],[[7304,4053],[1,14],[64,4],[8,-13]],[[7173,4123],[-1,23]],[[7172,4146],[0,43],[15,1],[2,-118],[-16,2]],[[7173,4074],[1,18]],[[7172,4288],[14,1],[1,-95],[-15,1]],[[7172,4195],[0,26]],[[7173,4247],[-1,41]],[[7172,4292],[0,34]],[[7172,4326],[-1,21]],[[7171,4347],[0,25]],[[7171,4372],[0,18]],[[7171,4390],[14,-26],[1,-71],[-14,-1]],[[7381,4058],[-9,13],[33,3],[2,-36]],[[7408,4037],[6,7],[18,-27]],[[7432,4017],[-6,-7]],[[7039,4068],[16,-7],[1,-17]],[[6954,4156],[9,-15],[22,-14],[-7,-22],[7,-11]],[[6948,4141],[6,15]],[[6945,4572],[-6,-19],[-22,2],[1,-7],[21,2],[-2,-10]],[[7134,3567],[16,-1],[0,-40],[-25,-13],[4,16]],[[7129,3529],[6,0],[-1,38]],[[7074,3792],[7,-1],[-10,-28],[-31,-2],[5,65],[24,1]],[[7167,3640],[3,12],[22,-9]],[[7192,3643],[-6,-25]],[[7186,3618],[-22,10]],[[7164,3628],[3,12]],[[7150,3864],[-18,17],[-19,-29],[-4,-15],[-20,3],[1,11],[24,43],[-13,17],[49,-47]],[[7033,3753],[-39,18],[8,47],[12,10],[27,-2],[-4,-58],[-4,-15]],[[7145,3678],[-7,-28],[-11,15],[-42,16],[-4,-10]],[[7073,3701],[-4,8]],[[7244,3774],[8,-17],[-9,-27],[-15,6],[8,33]],[[7382,3576],[5,17],[17,-2],[0,-18],[11,-1]],[[3903,4791],[-16,-22],[-18,21],[10,14]],[[3941,4720],[-5,-5]],[[3936,4715],[-34,38]],[[3800,4721],[10,-13]],[[3810,4708],[-15,-18],[-17,22]],[[4061,4832],[-21,21],[3,5]],[[4043,4858],[21,-10],[-3,-16]],[[3961,4812],[16,-18],[-5,-9]],[[3972,4785],[-19,17],[8,10]],[[3812,4593],[-5,-6]],[[3807,4587],[-42,58],[6,7]],[[3878,4612],[37,42],[28,-33],[-27,-41],[-38,32]],[[4049,4722],[-20,12],[-25,24],[24,28],[33,-41],[-12,-23]],[[4042,4802],[32,-26],[-12,-25],[-30,39],[10,12]],[[4099,4825],[-23,-45],[-30,24],[31,36],[22,-15]],[[4084,4729],[16,26],[23,-20],[-22,-24]],[[4130,4804],[-32,-41],[-18,14],[23,45],[27,-18]],[[4162,4781],[-35,-41],[-25,20],[32,41],[28,-20]],[[4174,4721],[-6,-10],[-33,31],[7,8]],[[4154,4764],[13,12],[22,-17],[-8,-21]],[[4126,4732],[5,6],[36,-33],[-14,-34],[-47,24]],[[4188,4743],[5,12],[22,-16],[-35,-81],[-23,12],[21,49]],[[4184,4657],[34,79],[46,-16],[1,-6],[-43,-70],[-38,13]],[[4219,4639],[-21,-63],[-21,15],[13,23],[9,-5],[9,34],[11,-4]],[[4166,4637],[18,-21],[-13,-20],[-29,24],[24,17]],[[4171,4513],[-29,27],[30,46],[24,-17],[-12,-33],[-13,-23]],[[4196,4446],[-35,32],[7,13],[35,-32],[-7,-13]],[[4212,4432],[-12,11],[17,30],[12,-11],[-17,-30]],[[4230,4416],[-12,11],[17,30],[13,-11],[-18,-30]],[[4221,4490],[-5,-9],[-36,32],[10,17],[13,36],[15,-8],[16,-46],[-5,-7]],[[4275,4594],[-55,-30],[-16,8],[23,61],[48,-39]],[[4233,4534],[37,19],[6,-10],[-22,-38],[-16,14],[-5,15]],[[4259,4501],[22,39],[14,-10],[-24,-41],[-12,12]],[[4257,4391],[-23,21],[7,13],[31,-28],[-6,-14],[-9,8]],[[4251,4443],[29,-26],[-6,-15],[-30,28],[7,13]],[[4296,4454],[-19,11],[-11,-26],[12,-11],[10,9]],[[4288,4437],[-6,-16],[-29,26],[19,32],[29,-11],[-5,-14]],[[4292,4515],[22,-16],[-10,-25],[-28,13],[16,28]],[[4321,4517],[-5,-13],[-9,6],[-12,38],[12,22],[14,-53]],[[4349,4557],[-13,-7],[-12,-19],[-12,42],[29,14],[8,-30]],[[4339,4593],[-28,-14],[-6,23],[27,16],[7,-25]],[[4332,4644],[-15,-1],[-21,-11]],[[4296,4632],[-8,26],[41,17],[3,-31]],[[4299,4704],[1,-35]],[[4300,4669],[-13,-5],[-11,47],[23,-7]],[[4319,4676],[-10,27]],[[4309,4703],[23,2],[1,-24],[-14,-5]],[[4243,4668],[26,42],[11,-43]],[[4278,4601],[-18,14]],[[4126,4527],[3,18],[-12,12]],[[4134,4615],[34,-25],[-42,-63]],[[3898,4565],[-33,32]],[[3865,4597],[9,11],[43,-36],[30,45],[7,-7]],[[3923,4664],[32,-35],[2,-14]],[[3957,4615],[-39,43],[5,6]],[[4105,4860],[51,-44],[-7,-15],[-71,49],[4,18],[23,-8]],[[4152,4798],[7,15],[23,-19],[-13,-9],[-17,13]],[[4217,4747],[-44,36],[12,8],[35,-30],[-3,-14]],[[4197,4829],[-5,-29]],[[4192,4800],[-7,-5],[-24,21],[12,28],[24,-15]],[[4124,4877],[46,-30],[-12,-28],[-58,51],[24,7]],[[4185,4893],[9,-26],[-12,-24]],[[4182,4843],[-6,4],[-4,42],[13,4]],[[4251,4849],[-47,27],[-10,19]],[[4194,4895],[14,5],[8,-22],[37,-23],[-2,-6]],[[4261,4875],[-6,-15],[-36,22],[-7,19],[34,9],[26,-2],[-11,-33]],[[4298,4767],[-24,16],[14,26],[32,10],[-22,-52]],[[4282,4742],[-24,8],[14,30],[24,-16],[-14,-22]],[[4255,4751],[-18,5],[15,37],[18,-12],[-15,-30]],[[4228,4759],[12,29],[-4,15],[15,-9],[-15,-38],[-8,3]],[[4271,4726],[-50,17],[2,13],[58,-17],[-10,-13]],[[4279,4723],[8,14],[16,-5],[29,1],[1,-16],[-27,-3],[-27,9]],[[4391,4734],[0,-11],[-55,-6],[0,16],[55,1]],[[4309,4759],[2,10],[19,2],[3,-28]],[[4336,4737],[-3,34],[27,4],[6,-36],[-30,-2]],[[4390,4738],[-21,0],[-7,37],[19,3],[9,-40]],[[4381,4781],[-48,-7],[-2,11],[45,16],[5,-20]],[[4374,4810],[-9,-3],[-6,21],[-11,6]],[[4348,4834],[19,10],[7,-34]],[[4264,4836],[-18,-7],[16,41]],[[4413,4736],[15,5],[3,-11],[-18,-3],[0,9]],[[4479,4749],[-44,-17],[-3,10],[39,15],[8,-8]],[[4437,4802],[13,5],[4,-24],[-17,19]],[[4390,4851],[4,-71],[-8,-3],[-15,67],[19,7]],[[4407,4858],[3,-73],[-11,-3],[-4,71],[12,5]],[[4411,4858],[8,2],[12,-57],[-18,-7],[-2,62]],[[4452,4853],[15,-35],[-32,-13],[-10,50],[27,-2]],[[4395,4859],[-5,29],[22,8],[5,-29],[-22,-8]],[[4422,4869],[-5,29],[10,6],[17,-37],[-22,2]],[[4491,4792],[20,11],[8,-22],[-19,-12],[-9,23]],[[4551,4821],[8,-20],[-35,-20],[-9,22],[36,18]],[[4406,5099],[-19,-23],[-12,15],[15,19],[16,-11]],[[4416,5060],[-6,-8],[-19,24],[16,21],[10,-14],[-1,-23]],[[4465,4970],[-33,50],[22,22],[27,-52]],[[4342,4917],[14,24],[27,-39]],[[4421,5130],[3,-10],[-16,-19],[-9,18],[22,11]],[[4540,4852],[8,-22],[-10,-6],[-9,22],[11,6]],[[4388,4902],[-16,27],[-32,37],[27,26],[15,-26],[30,-42],[-4,-14]],[[4086,5318],[5,12],[11,-7],[-5,-13],[-11,8]],[[4139,5229],[6,20]],[[4145,5249],[18,-7],[-3,-21],[-21,8]],[[4366,5224],[17,-21],[-25,-24],[-14,14],[22,31]],[[4219,5344],[-23,9],[4,20],[23,-9],[-4,-20]],[[4399,5274],[-28,5],[-4,5],[29,22]],[[4422,5315],[-30,-6],[23,29],[7,-23]],[[4088,5338],[-7,-18],[-26,14],[5,21],[28,-17]],[[4374,5326],[17,29],[15,9],[7,-21],[-29,-34]],[[4117,5346],[-2,1]],[[4102,5356],[9,21],[41,-15],[-13,-22]],[[4030,5328],[6,37]],[[4036,5365],[18,-7],[-8,-36],[-16,6]],[[4060,5271],[-23,15],[16,41],[25,-13],[-18,-43]],[[4314,5254],[-4,30],[-21,2]],[[4289,5286],[1,14],[64,-25],[-40,-21]],[[4449,5224],[-38,-34],[-12,24]],[[4423,5158],[-10,25],[40,37]],[[4423,5259],[12,-1],[22,-23],[-4,-7]],[[4415,5346],[-6,19],[9,6],[7,-12],[-10,-13]],[[4756,5325],[-18,9],[-17,-7],[-3,15]],[[4718,5342],[26,8],[12,-25]],[[4585,5428],[29,9],[4,-24],[-7,-16],[3,-20],[-51,-32],[-6,30],[21,32],[7,21]],[[4604,5307],[-4,18],[-20,-6],[10,-52],[46,12],[-4,25],[-27,-9],[-1,6]],[[4604,5301],[30,16],[9,-5],[9,-50],[-70,-21],[-19,95],[18,13],[37,16],[11,-45],[-25,-13]],[[4694,5383],[25,-8],[21,-21],[-39,-11],[-7,40]],[[4681,5383],[8,1],[8,-42],[-37,-12],[-4,22],[-4,22],[29,9]],[[4604,4864],[20,6],[9,-41],[-41,-14],[-5,22]],[[4696,4846],[-27,-6],[-33,-10],[-2,11]],[[4681,4858],[14,8]],[[4695,4866],[16,3]],[[4641,4934],[50,17],[3,-14],[-49,-18],[-4,15]],[[4547,4930],[73,25],[3,-13],[-77,-27]],[[4572,4942],[-22,-7],[-9,28],[28,42]],[[4569,5005],[13,-11],[-16,-27],[6,-25]],[[4583,4947],[-5,24],[20,-10],[8,23]],[[4606,4984],[9,-26],[-32,-11]],[[4579,5030],[21,8],[11,-53],[-37,31],[5,14]],[[4642,5030],[7,-33],[23,8],[-7,34]],[[4665,5039],[28,12],[3,-20]],[[4683,4983],[-33,-12],[-13,56],[5,3]],[[4625,4877],[-43,-15],[-8,30],[44,12],[-5,-20],[12,-7]],[[4620,4908],[-50,-15],[-7,7],[54,23]],[[4636,5067],[-4,-2],[7,-32],[-30,-10],[-6,23],[-21,-7],[5,40],[7,9],[63,29],[3,-10],[-50,-21],[15,2]],[[3146,4893],[34,-22],[-3,-17]],[[3029,5031],[-9,-44],[-29,16],[5,15],[33,13]],[[3606,4673],[-5,7],[51,84]],[[3033,5043],[-31,-13],[2,12]],[[3034,5129],[30,-7],[0,-8],[-34,-4],[4,19]],[[3736,4920],[29,51]],[[3135,4908],[7,40],[22,-10],[-7,-44],[-22,14]],[[3161,4891],[7,45],[23,-10],[-9,-49],[-21,14]],[[3208,4873],[-20,3],[8,49],[37,-2],[-1,-52],[-24,2]],[[3241,4923],[36,-1],[-2,-68],[-35,16],[0,26]],[[3279,4852],[2,69],[26,0],[-3,-76],[-25,7]],[[3403,4849],[-9,-64],[-23,9],[8,50],[24,5]],[[3414,4842],[20,-34],[-30,-19],[10,53]],[[3404,4778],[35,27],[14,-20],[-4,-29],[-45,22]],[[3506,4802],[-12,-38],[-35,23],[3,18],[44,-3]],[[3472,4864],[36,-55],[-46,2],[10,53]],[[3315,4844],[-7,1],[3,76],[31,-1],[0,-27]],[[3341,4879],[-1,-36],[-16,1]],[[3347,4843],[0,77],[17,-1],[-10,-74],[-7,-2]],[[3359,4847],[10,72],[16,0],[-10,-67],[-16,-5]],[[3405,4861],[-25,-7],[18,119],[23,-5],[-16,-107]],[[3463,4878],[-19,-7],[4,30],[15,-23]],[[3497,4838],[-20,34],[49,14],[-3,-20],[-26,-28]],[[3536,4858],[-8,8],[6,23],[25,7],[-23,-38]],[[3517,4807],[21,39],[16,-16],[-25,-41],[-12,18]],[[3181,5038],[-16,-95],[-23,10],[14,85],[25,0]],[[3191,4931],[-22,10],[16,97],[22,-1],[1,-8],[-17,-98]],[[3235,4980],[-1,-51],[-37,1],[9,51],[9,57],[22,-1],[-2,-57]],[[3243,4982],[35,-2],[-1,-51],[-36,2],[1,16]],[[3312,4928],[2,51],[30,-1],[-1,-51],[-31,1]],[[3348,4927],[1,51],[23,-1],[-7,-50],[-17,0]],[[3370,4926],[7,51],[16,-3],[-7,-48],[-16,0]],[[3280,5035],[-1,-50],[-36,2],[1,49],[36,-1]],[[3312,5034],[-2,-50],[-27,1],[2,50],[27,-1]],[[3346,5033],[-2,-50],[-30,1],[2,49],[30,0]],[[3401,5027],[-7,-47],[-16,2],[6,47],[17,-2]],[[3421,4973],[-22,6],[7,47],[21,-4],[-6,-49]],[[3502,4887],[11,72],[1,27],[-9,2],[2,16]],[[3507,5004],[21,-6],[-17,-108],[-9,-3]],[[3530,4895],[-15,-4],[8,49],[17,-4],[-10,-41]],[[3566,4905],[-29,-8],[8,37],[31,-7],[-10,-22]],[[3553,4988],[-11,-46],[-18,4],[8,50],[21,-8]],[[3215,5047],[-2,45],[26,-4],[-1,-42],[-23,1]],[[3283,5044],[-39,2],[1,41],[68,-11],[0,-33],[-11,1]],[[3359,5041],[-40,1],[0,23]],[[3728,5011],[-20,-33],[-26,26],[18,33],[28,-26]],[[3661,4975],[-28,27],[17,31],[28,-27],[-17,-31]],[[3662,4974],[19,28],[26,-25],[-18,-30],[-27,27]],[[3576,5054],[3,-17],[-22,4]],[[3557,5041],[0,12],[19,1]],[[3287,5282],[6,-18],[-20,-11],[-2,24],[16,5]],[[3269,5220],[3,26],[23,13],[7,-20],[-33,-19]],[[3310,5201],[2,-2],[-8,-80],[-26,15],[2,51],[30,16]],[[3312,5275],[-15,-9],[-8,23],[15,8]],[[3306,5241],[-7,20],[28,16],[7,-20],[-28,-16]],[[3345,5219],[-11,-120],[-25,14],[9,92],[27,14]],[[3311,5301],[33,19],[10,-21],[-35,-20]],[[3338,5259],[-7,21],[25,14],[9,-20],[-27,-15]],[[3348,5232],[-8,22],[26,15],[9,-21],[-27,-16]],[[3350,5221],[28,15],[6,-32],[-34,-17],[0,34]],[[3343,5140],[3,40],[37,15],[-17,-69],[-23,14]],[[3380,5061],[11,44],[18,-11],[17,-3],[-1,-33],[-41,-1],[-4,4]],[[3426,5097],[-34,13],[7,26],[27,-16],[0,-23]],[[3535,5062],[-2,73],[15,14],[4,-86],[-17,-1]],[[3573,5063],[-17,0],[-3,94],[18,18],[2,-112]],[[3597,5064],[-19,-1],[-1,79],[18,0],[2,-78]],[[3614,5064],[-12,0],[-2,78],[40,2],[2,-78],[-9,-1]],[[3729,5065],[-43,-1],[5,66],[40,-61],[-2,-4]],[[3576,5182],[18,9],[1,-43],[-18,0],[-1,34]],[[3640,5150],[-40,-2],[-1,42],[41,-8],[0,-32]],[[3646,5149],[0,29],[25,-20],[13,-20],[-38,11]],[[3434,5200],[54,-3],[-19,-59],[-35,11],[0,51]],[[3475,5138],[18,59],[24,-2],[6,-32],[-30,-22],[-18,-3]],[[3699,5141],[-26,36],[30,-8]],[[3718,5178],[-72,17],[0,12]],[[3646,5207],[12,-7],[11,27]],[[3668,5099],[13,0],[-1,-35],[-28,1],[-5,19]],[[3646,5121],[0,22],[38,-11],[-2,-30],[-7,5]],[[3383,5286],[-8,25],[19,42],[8,-27],[-3,-32]],[[3589,5519],[-35,-2],[1,28],[44,-2],[4,-23]],[[3561,5620],[8,18],[15,6],[9,-42],[-4,-4],[-28,22]],[[3595,5615],[-7,30],[25,8],[8,-35],[-22,-14],[-4,11]],[[3903,5615],[-18,-5],[-13,44],[19,4]],[[3573,5692],[10,-43],[-17,-3],[-35,33],[42,13]],[[3820,5652],[-12,-1],[-4,62],[42,15],[17,-70],[-25,-3]],[[3852,5736],[-7,29],[93,4],[12,-33],[-98,0]],[[3972,5467],[-10,14],[9,3],[-10,0],[-6,15],[14,4]],[[3773,5638],[3,-43],[-33,-11],[-15,1],[-44,34],[5,7],[84,12]],[[3876,3624],[-20,2],[14,55],[-2,11],[12,4]],[[3880,3696],[2,-29]],[[3843,3785],[-5,27],[16,5],[4,-22]],[[3858,3795],[-15,-10]],[[3880,3871],[36,11],[14,-63],[19,-57],[15,-32],[-56,-31]],[[3990,3687],[-27,-22],[-9,0],[-5,21],[30,19],[11,-18]],[[3915,3671],[-3,25],[23,14],[6,-23],[-26,-16]],[[3976,3709],[-28,-18],[-10,21],[28,15],[10,-18]],[[4027,3745],[5,-8]],[[3998,3690],[-7,10],[36,45]],[[4062,3867],[3,-33],[-6,-26],[-34,-60],[-36,-44],[-26,41],[-31,96],[-8,44],[44,14],[8,-44]],[[3981,3856],[-8,44],[28,9],[6,-32]],[[4013,3877],[-8,34],[29,9],[24,-45]],[[3690,3937],[-18,-19],[-16,31],[34,-12]],[[3706,3955],[-12,-13],[-38,12],[-13,10]],[[3786,3925],[8,55],[5,0],[17,-122],[-19,-6],[-22,6],[6,37],[5,30]],[[3865,3875],[-41,-13],[-3,6],[-11,78]],[[3810,3946],[21,0],[-2,-13],[26,9]],[[3865,3925],[6,1]],[[3908,3926],[6,-36],[-42,-13]],[[3905,3943],[-34,-11],[-7,43],[35,-3],[6,-29]],[[3922,3892],[-5,31],[44,14],[6,-31],[-45,-14]],[[3915,3929],[-7,43],[47,-3],[5,-26],[-45,-14]],[[3989,3966],[10,-50],[-27,-9],[-12,61],[29,-2]],[[4008,3965],[22,-39],[-26,-9],[-10,49],[14,-1]],[[4080,3862],[-5,14],[-49,86],[25,2]],[[3904,3987],[-2,17],[41,38],[36,-60],[-75,5]],[[3891,4063],[-7,35],[29,19],[28,-66],[-41,-37],[-8,42]],[[3986,3981],[-38,65],[16,15],[43,-76],[-21,-4]],[[3932,4133],[28,-64],[-16,-14],[-28,65],[16,13]],[[3936,4137],[29,24],[14,-17],[-6,-32],[7,-25],[-16,-14],[-28,64]],[[3996,4102],[-5,16],[5,19],[24,-13],[-24,-22]],[[3984,4081],[41,38],[1,-27],[-31,-30],[-11,19]],[[4025,4058],[-20,-14],[-8,14],[26,25],[2,-25]],[[4047,3979],[-19,1],[1,23],[19,-1],[-1,-23]],[[4030,4027],[19,-1],[0,-18],[-20,1],[1,18]],[[4111,4093],[-73,31],[13,22]],[[4086,4191],[4,8],[35,-12],[20,31],[19,-5]],[[4121,4195],[-27,11],[18,30],[29,-12],[-11,-25],[-9,-4]],[[3914,4461],[-3,12],[45,62],[10,-29],[-52,-37],[2,-6]],[[4117,4264],[-9,-17],[-26,25],[9,15]],[[4091,4287],[26,-23]],[[4115,4245],[32,56],[24,-20],[-25,-50],[-31,14]],[[4167,4221],[-16,9],[24,47],[8,-7]],[[4012,4435],[-25,25],[16,26],[26,-23],[-17,-28]],[[4016,4431],[17,28],[29,-26],[-18,-30],[-28,28]],[[4091,4358],[20,35],[22,-20],[-19,-34],[-23,19]],[[4151,4307],[19,35],[13,-11],[-10,-42],[-22,18]],[[4131,4428],[36,-32],[-16,-30],[-37,32],[17,30]],[[4166,4353],[-12,10],[13,23],[12,-10]],[[4186,4369],[11,-10],[-12,-23],[-12,10]],[[4104,4495],[-36,33],[-6,-12],[4,-16]],[[4066,4500],[-21,18],[48,35],[22,-41],[-11,-17]],[[4177,4451],[-17,-30],[-21,19],[17,31],[21,-20]],[[4191,4439],[-17,-31],[-10,10],[17,30],[10,-9]],[[4206,4425],[-13,-24],[-12,10],[14,24],[11,-10]],[[4225,4408],[-13,-25],[-11,11],[13,24],[11,-10]],[[4186,4277],[-9,7],[12,49],[40,72],[6,-5]],[[4005,4497],[-8,22],[55,38],[9,-20],[-56,-40]],[[3985,4544],[-4,21],[31,37],[16,-53],[-36,-25]],[[3766,4316],[-13,25],[-3,27],[8,2]],[[3736,4393],[-5,-7],[-15,31]],[[3777,4383],[-17,-5]],[[3747,4393],[0,4]],[[3805,4383],[4,1],[33,-63],[-23,-21]],[[3823,4295],[45,39],[47,-113]],[[3840,4401],[-38,-12],[-5,21],[5,22],[29,-14],[9,-17]],[[3858,4354],[6,-14],[-18,-16],[-32,62],[28,8],[16,-40]],[[3798,4441],[-40,19],[9,32],[12,12],[24,-8],[-5,-55]],[[3819,4490],[23,-8],[-10,-57],[-19,9]],[[3846,4401],[-9,21],[10,58],[24,-50],[-25,-29]],[[3852,4561],[2,-5],[-11,-66],[-12,4]],[[3849,4488],[9,56],[20,-31]],[[4049,4399],[18,30],[37,-33],[-19,-32],[-36,35]],[[3640,4068],[25,0]],[[3665,4068],[12,1]],[[3648,4009],[-21,8],[13,51]],[[3731,4001],[-10,69],[79,2],[2,-3],[-56,-69],[-15,1]],[[3793,3995],[-36,4],[45,56],[-9,-60]],[[3856,3990],[-53,4],[-2,14],[9,56],[14,13]],[[3885,3988],[-24,2],[-8,36]],[[3853,4026],[9,8],[12,-35],[11,-11]],[[3646,4119],[-61,14],[10,39],[64,-20],[-13,-33]],[[3706,4117],[22,35],[12,-31],[22,-42],[-21,-2],[-22,18],[-13,22]],[[3759,4094],[22,18]],[[3781,4112],[18,-32],[-32,-2],[-8,16]],[[3459,4257],[26,21],[26,-49],[-22,-18],[-30,46]],[[3513,4300],[24,-50],[-22,-18],[-26,49],[24,19]],[[3517,4226],[22,18],[17,-22],[-26,-20],[-13,24]],[[3533,4196],[27,22],[38,-11],[-8,-28],[-57,17]],[[3552,4262],[-11,-9],[-24,50],[41,34],[25,-50],[-14,-11]],[[3693,4206],[22,-23],[11,-28],[-22,-34],[-27,49],[16,36]],[[3730,4159],[-9,22],[17,14],[22,8],[6,-25],[-36,-19]],[[3361,4415],[27,30],[28,-44],[-28,-29],[-27,43]],[[3390,4366],[29,31],[23,-36],[-29,-31],[-23,36]],[[3434,4296],[-17,27],[30,30],[16,-30],[-29,-27]],[[3454,4266],[-16,25],[28,26],[16,-29],[-28,-22]],[[3413,4471],[25,-39],[-22,-22],[-25,38],[22,23]],[[3423,4400],[21,22],[23,-35],[-21,-23],[-23,36]],[[3466,4326],[-16,31],[22,22],[19,-29],[-25,-24]],[[3485,4290],[-15,30],[24,23],[15,-34],[-24,-19]],[[3417,4475],[19,20],[25,-39],[-19,-20],[-25,39]],[[3488,4365],[19,20],[8,-13],[-20,-19],[-7,12]],[[3577,4363],[-20,37],[27,26],[32,-32],[-39,-31]],[[3581,4354],[25,20],[20,-37],[-20,-30],[-25,47]],[[3622,4323],[7,10],[19,-37],[-24,-20],[-7,12]],[[3673,4181],[-31,59],[37,31],[29,-11],[-35,-79]],[[3710,4265],[-30,11],[10,47],[32,2],[-12,-60]],[[3719,4270],[7,39],[19,1],[-11,-50],[-15,10]],[[3623,4388],[32,-8],[-26,-40],[-19,37],[13,11]],[[3710,4369],[-7,-39],[-11,1],[6,41],[12,-3]],[[3715,4368],[14,-4],[-6,-33],[-15,-1],[7,38]],[[3622,4399],[-15,16],[37,33],[11,-23],[-33,-26]],[[3510,4574],[28,-23],[-15,-28],[-37,26],[24,25]],[[3659,4428],[-12,22],[24,22],[18,-19],[-30,-25]],[[3608,4568],[-8,-9],[-19,21],[14,8]],[[3769,4294],[13,-25],[-21,-18]],[[3750,4249],[-12,8],[11,53],[-11,6],[-10,-2],[6,29],[11,4],[4,-16],[11,-20]],[[3532,4145],[-22,34],[18,14],[62,-19],[-11,-40],[-47,11]],[[3537,4383],[13,13],[20,-37],[-13,-11]],[[3112,4120],[-23,-14],[2,24],[47,41],[16,-33],[-10,-8],[5,-10],[-49,-40],[-10,23],[22,17]],[[3126,4023],[-22,48],[49,40],[2,-3],[-29,-85]],[[3148,4061],[12,37],[13,2],[7,-13],[-27,-25],[28,22],[12,-27],[-59,-48],[14,52]],[[3193,4143],[-10,-15],[10,-21],[-6,-6],[15,-29],[17,14],[3,-6]],[[3222,4080],[-22,-18],[-22,41],[8,6],[-10,20],[17,14]],[[3236,4091],[-3,6],[34,27],[-25,51],[-37,-30],[-3,6]],[[3202,4151],[46,36],[31,-61],[-43,-35]],[[3273,4082],[19,16],[20,-41],[-19,-16],[-20,41]],[[3240,4267],[4,-1],[25,-50],[-22,-18],[-23,46],[16,23]],[[3251,4190],[22,17],[14,-29],[-21,-17],[-15,29]],[[3282,4128],[-13,27],[22,17],[13,-27],[-22,-17]],[[3263,4297],[31,-62],[-21,-17],[-28,55],[18,24]],[[3277,4211],[21,16],[14,-29],[-21,-17],[-14,30]],[[3307,4148],[-12,27],[20,17],[14,-27],[-22,-17]],[[3362,4097],[-21,-17],[-20,41],[21,17],[20,-41]],[[3333,3962],[12,9],[12,-25],[-12,-8],[-12,24]],[[3334,4169],[-14,27],[32,25],[13,-26],[-31,-26]],[[3388,4117],[-21,-16],[-29,59],[20,17]],[[3358,4177],[30,-60]],[[3316,4304],[30,24],[
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment