Skip to content

Instantly share code, notes, and snippets.

@mbostock
Last active October 26, 2021 23:28
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save mbostock/39b34968ad5eab65de1d7da81f78bb27 to your computer and use it in GitHub Desktop.
Save mbostock/39b34968ad5eab65de1d7da81f78bb27 to your computer and use it in GitHub Desktop.
California Population Density II
license: gpl-3.0
height: 1100
border: no
.DS_Store
node_modules
cb_*

A variation of my California population density map using California’s 23,198 block groups rather than its 8,043 tracts. The example exhibits how useful the Census API is: the prepublish script here can automatically grabs the list of counties for the desired state and then the population data for each block group.

<!DOCTYPE html>
<svg width="960" height="1100"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/d3-scale-chromatic.v1.min.js"></script>
<script src="https://d3js.org/topojson.v2.min.js"></script>
<script>
var svg = d3.select("svg"),
width = +svg.attr("width"),
height = +svg.attr("height");
var path = d3.geoPath();
var color = d3.scaleThreshold()
.domain([1, 10, 50, 200, 500, 1000, 2000, 4000])
.range(d3.schemeOrRd[9]);
var x = d3.scaleSqrt()
.domain([0, 4500])
.rangeRound([440, 950]);
var g = svg.append("g")
.attr("class", "key")
.attr("transform", "translate(0,40)");
g.selectAll("rect")
.data(color.range().map(function(d) {
d = color.invertExtent(d);
if (d[0] == null) d[0] = x.domain()[0];
if (d[1] == null) d[1] = x.domain()[1];
return d;
}))
.enter().append("rect")
.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 color(d[0]); });
g.append("text")
.attr("class", "caption")
.attr("x", x.range()[0])
.attr("y", -6)
.attr("fill", "#000")
.attr("text-anchor", "start")
.attr("font-weight", "bold")
.text("Population per square mile");
g.call(d3.axisBottom(x)
.tickSize(13)
.tickValues(color.domain()))
.select(".domain")
.remove();
d3.json("topo.json", function(error, topology) {
if (error) throw error;
svg.append("g")
.selectAll("path")
.data(topojson.feature(topology, topology.objects.blockgroups).features)
.enter().append("path")
.attr("fill", function(d) { return d3.schemeOrRd[9][d.id]; })
.attr("d", path);
svg.append("path")
.datum(topojson.feature(topology, topology.objects.counties))
.attr("fill", "none")
.attr("stroke", "#000")
.attr("stroke-opacity", 0.3)
.attr("d", path);
});
</script>
{
"private": true,
"license": "gpl-3.0",
"author": {
"name": "Mike Bostock",
"url": "https://bost.ocks.org/mike"
},
"scripts": {
"prepublish": "bash prepublish"
},
"devDependencies": {
"d3-array": "^1.0.1",
"d3-geo-projection": "^1.2.0",
"ndjson-cli": "^0.3.0",
"shapefile": "^0.5.8",
"topojson": "^2.0.0",
"topojson-client": "^2.1.0",
"topojson-simplify": "^2.0.0"
}
}
#!/bin/bash
# EPSG:3310 California Albers
PROJECTION='d3.geoAlbers().parallels([34, 40.5]).rotate([120, 0])'
# The state FIPS code.
STATE=06
# The ACS 5-Year Estimate vintage.
YEAR=2014
# The display size.
WIDTH=960
HEIGHT=1100
# Download the census block group boundaries.
# Extract the shapefile (.shp) and dBASE (.dbf).
if [ ! -f cb_${YEAR}_${STATE}_bg_500k.shp ]; then
curl -o cb_${YEAR}_${STATE}_bg_500k.zip \
"http://www2.census.gov/geo/tiger/GENZ${YEAR}/shp/cb_${YEAR}_${STATE}_bg_500k.zip"
unzip -o \
cb_${YEAR}_${STATE}_bg_500k.zip \
cb_${YEAR}_${STATE}_bg_500k.shp \
cb_${YEAR}_${STATE}_bg_500k.dbf
fi
# Download the list of counties.
if [ ! -f cb_${YEAR}_${STATE}_counties.json ]; then
curl -o cb_${YEAR}_${STATE}_counties.json \
"http://api.census.gov/data/${YEAR}/acs5?get=NAME&for=county:*&in=state:${STATE}&key=${CENSUS_KEY}"
fi
# Download the census block group population estimates for each county.
if [ ! -f cb_${YEAR}_${STATE}_bg_B01003.ndjson ]; then
for COUNTY in $(ndjson-cat cb_${YEAR}_${STATE}_counties.json \
| ndjson-split \
| tail -n +2 \
| ndjson-map 'd[2]' \
| cut -c 2-4); do
echo ${COUNTY}
if [ ! -f cb_${YEAR}_${STATE}_${COUNTY}_bg_B01003.json ]; then
curl -o cb_${YEAR}_${STATE}_${COUNTY}_bg_B01003.json \
"http://api.census.gov/data/${YEAR}/acs5?get=B01003_001E&for=block+group:*&in=state:${STATE}+county:${COUNTY}&key=${CENSUS_KEY}"
fi
ndjson-cat cb_${YEAR}_${STATE}_${COUNTY}_bg_B01003.json \
| ndjson-split \
| tail -n +2 \
>> cb_${YEAR}_${STATE}_bg_B01003.ndjson
done
fi
# 1. Convert to GeoJSON.
# 2. Project.
# 3. Join with the census data.
# 4. Compute the population density.
# 5. Simplify.
# 6. Compute the county borders.
geo2topo -n \
blockgroups=<(ndjson-join 'd.id' \
<(shp2json cb_${YEAR}_${STATE}_bg_500k.shp \
| geoproject "${PROJECTION}.fitExtent([[10, 10], [${WIDTH} - 10, ${HEIGHT} - 10]], d)" \
| ndjson-split 'd.features' \
| ndjson-map 'd.id = d.properties.GEOID.slice(2), d') \
<(ndjson-map < cb_${YEAR}_${STATE}_bg_B01003.ndjson '{id: d[2] + d[3] + d[4], B01003: +d[0]}') \
| ndjson-map -r d3=d3-array 'd[0].properties = {density: d3.bisect([1, 10, 50, 200, 500, 1000, 2000, 4000], (d[1].B01003 / d[0].properties.ALAND || 0) * 2589975.2356)}, d[0]') \
| topomerge -k 'd.id.slice(0, 3)' counties=blockgroups \
| topomerge --mesh -f 'a !== b' counties=counties \
| topomerge -k 'd.properties.density' blockgroups=blockgroups \
| toposimplify -p 1 -f \
> topo.json
# Re-compute the topology as a further optimization.
# This consolidates unique sequences of arcs.
# https://github.com/topojson/topojson-simplify/issues/4
topo2geo \
< topo.json \
blockgroups=blockgroups.json \
counties=counties.json
geo2topo \
blockgroups=blockgroups.json \
counties=counties.json \
| topoquantize 1e5 \
> topo.json
rm blockgroups.json counties.json
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"blockgroups":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","id":"6","properties":{"density":6},"arcs":[[[6,7,808,809]],[[810]],[[11,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]],[[119,993,994,995,996]],[[997,115,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]],[[109,1109,1110]],[[1111,1112,1113]],[[1114,1115,1116,1117,1118,1119,1120]],[[1121,-2,1122,1123,1124]],[[1125,1126,1127,1128,1129]],[[1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142]],[[1143,1144,1145]],[[139,140,1146,1147,1148,1149,1150,1151,1152,568,1153,1154,570,1155,1156,1157,1158,1159,1160,-567,-143,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,170]],[[1227,1228]],[[173,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,199,1261]],[[1262]],[[1263,1264,1265,1266,1267,1268]],[[1269,201,1270]],[[1271]],[[1272,1273,1274]],[[1275,1276,1277,1278]],[[1279,1280]],[[1281,161,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,409,1520,1521,1522,1523,-412,1524,1525,1526,1527,1528,1529]],[[406,1530,1531,1532,1533,1534,1535,1536,405]],[[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,366,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,398,1795,1796,1797,1798,1799,1800,1801]],[[400,1802,1803]],[[1804,1805,394,1806,1807,1808,1809,392,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,1992,1993,1994]],[[1995,1996,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]],[[478,479,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,522,2151]],[[2152,2153]],[[2154,-365,2155,2156,2157]],[[2158,2159,2160,2161,2162]],[[2163,2164]],[[2165,2166]],[[2167]],[[2168,2169]],[[2170,2171,2172,2173]],[[2174,546,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,563,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,581,582,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,621,622,2447,2448,2449,2450,2451,2452,2453,2454,2455,-625]],[[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,-554,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]],[[641,642,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,673]],[[2682,2683,2684,2685]],[[2686,2687]],[[2688,2689,2690,2691]],[[2692,2693]],[[2694,2695]],[[2696,2697,2698,2699]],[[2700]],[[2701,-680,2702,2703,2704,2705,2706,2707,2708,-678,2709]],[[681,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,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,-357]],[[2806,2807,2808,2809,2810]],[[2811,2812,2813,2814]],[[2815,2816,2817,2818,2819,2820]],[[2821,2822,-346]],[[2823,2824]],[[2825,2826,2827]],[[2828,2829,2830,-618,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]],[[-634,2874,2875,2876,2877,2878,-637,-636,-635]],[[2879,2880,2881,-630]],[[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,-647,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,2956,2957,2958,2959,2960,2961]],[[2962,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,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,3253,3254,3255,3256]],[[3257,3258,3259,3260,3261,3262,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]],[[706,707,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,-27]],[[-493,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,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,745,746,3501,3502,3503]],[[3504,3505,3506,3507]],[[3508,3509,3510,3511,3512,740,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]],[[-734,3574,3575,3576]],[[3577,3578,3579,3580,3581]],[[3582,3583,3584,3585,3586,3587,3588]],[[3589,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,-477,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,-506,3800,3801,3802,3803]],[[3804,3805,3806,-113,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]],[[-663,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,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,-717,3952,3953]],[[-721,3954,3955,3956,-723,-722]],[[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,-462,4007]],[[4008,4009,4010,4011,4012,4013]],[[4014,4015,4016,-468,-467,4017,4018,4019,4020]],[[4021,802,803,804,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,-390,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,-671,4259,4260]],[[4261,-790,4262]],[[4263,4264,-784,4265]],[[4266,4267,4268,4269,4270,4271,4272,4273,4274,4275]],[[4276,4277,4278,4279,4280]]]},{"type":"MultiPolygon","id":"8","properties":{"density":8},"arcs":[[[9,10,-815,4281,-834,4282,4283,-837,4284,-835,4285,-846,4286,4287,4288,-863,4289,-866,4290,4291,4292,-870,4293,4294,4295,4296,4297,-857,4298,4299,-821,4300,-823,-842,4301,4302,4303,4304,4305,-818,4306,-816,4307,4308,4309,4310,4311,4312,4313,4314,4315,-840,4316,4317,4318,-3,-1122,4319,4320,-1121,4321,-1119,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4,5,-810,4334],[4335],[4336],[-811]],[[-813,4337,4338]],[[4339,-855,4340,-848]],[[-853,852,4341]],[[4342,4343,4344,4345,4346,4347,-873,4348,-875,4349,4350,4351,4352,4353,4354,4355,4356,-868,4357,4358],[4359],[4360]],[[4361,4362,4363]],[[4364,4365,4366,-3619,4367,4368,4369,4370,-3617,4371,4372,4373,4374,4375,4376,4377,4378,4379,-3654,4380,-3652,4381,4382,4383,4384,-3628,4385,-3635,4386,4387,4388,4389,4390,-3646,4391,4392,4393,4394,744,-3501,4395,-3499,4396,4397,4398,-3505,4399,-3504,4400,-3491,4401,-3489,4402,-3487,4403,4404,-3474,4405,-3480,4406,4407,4408,-3469,4409,4410,4411,4412,-3483,4413,4414,4415,-3497,4416,4417,4418,-3515,4419,742,4420,4421,4422,4423,4424,-3643,4425,-3620,4426,-3640,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,-37,4442,4443,4444,-35,4445],[4446],[4447],[4448],[4449],[4450],[4451],[4452],[4453],[4454],[4455,4456],[-3627],[4457],[4458,4459],[-3659,4460],[4461,4462],[-3611,4463,4464,4465,-3609,4466,-3608,4467]],[[-898,4468,-896,4469,4470,4471,4472,-882,4473,-878,4474,4475]],[[4476,4477,4478,-1056,4479,20,4480]],[[4481,4482]],[[-885]],[[879,-880,4483]],[[-905,4484,4485]],[[4486,4487,-904,4488,-889,4489,4490,4491,4492]],[[4493,-900,4494,-908]],[[-916,4495,-929,4496,-925,4497,4498,4499,4500,4501,4502,4503,-914,4504,-910,4505,4506],[4507]],[[4508,-922,4509,-927]],[[4510,4511,4512]],[[4513,4514,-951]],[[4515,-961,4516,4517,-958,4518,-953]],[[-947,4519]],[[4520,4521]],[[4522,4523,4524]],[[4525]],[[4526,4527,-966,4528]],[[4529,-4530,4530]],[[4531,4532,4533,4534]],[[-970,4535,4536]],[[-975,4537,4538,4539,4540]],[[4541]],[[4542,-979,4543,-973,4544,4545]],[[4546,4547,-983]],[[4548,4549,4550,-987,4551,4552,-993,4553,4554,4555,-995,4556,4557,4558,4559,4560,4561,4562],[4563]],[[4564,-4565,4565]],[[4566,4567,-1005,4568,4569,-1006,4570,4571,4572,-1000]],[[-1009,4573,-1067,4574]],[[4575,4576,4577,4578,-1093,4579,4580,4581,4582,4583,-1022,4584,4585,4586,-1024,4587,-1016,4588,-1040,4589,-1030,4590],[4591]],[[4592,-1038,4593,-1032]],[[4594,-1052,4595,4596,4597,-1046]],[[4598,-1050,4599,-1053]],[[-1059,4600,4601,4602]],[[-1034,4603,4604]],[[-1012,4605,4606,4607,4608]],[[4609,-1014,4610,-1042]],[[-1076,4611,4612]],[[-989,988,4613]],[[-1087,4614]],[[4615,-1090,4616,-1054]],[[4617,-1103,4618,-1101]],[[-1108,4619,4620]],[[4621,4622]],[[4623,-3803,4624,4625,4626,4627,-3810,4628,-3805,4629,-3808,-112,4630,-1110,-110,4631,4632]],[[4633,4634,4635]],[[-1116,4636]],[[-1124,4637,4638]],[[4639,-1127]],[[4640,-1194,4641,-1139,4642,-1137]],[[4643,4644]],[[-1131,4645,4646]],[[4647,4648,4649,-1164]],[[4650,-1175,4651]],[[-1169,4652,4653]],[[4654,4655,4656,-1215,4657,4658,4659,-1224,4660,4661,4662,-1226,171,4663,4664,-1229,4665,-1237,4666,-1235,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,-1244,4682,-1242,4683,4684,4685,-1246,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,-1239,4700,4701,4702,-1208,4703,4704,-1205,4705,4706,4707,4708],[4709],[4710],[4711],[4712],[4713]],[[4714,4715,4716,4717]],[[4718,-1202,-1196]],[[-1204,4719]],[[4720,-1210,4721]],[[4722,4723,4724]],[[-1220,4725]],[[4726,-1232,4727,4728,4729,4730]],[[4731,-4732,4732]],[[4733]],[[4734,4735]],[[-1248,4736]],[[4737,-1250,4738,4739]],[[4740,4741,4742]],[[4743,4744,193,194]],[[4745,-1255,4746,4747]],[[4748,4749,-1254]],[[4750,-1260]],[[4751,4752,4753]],[[-1267,4754],[4755]],[[-1269,4756]],[[203,4757]],[[4758]],[[4759]],[[-1277,4760,4761,4762,4763,-1274]],[[4764,4765]],[[4766,4767,4768,4769]],[[4770,-1286,4771,4772]],[[4773,4774,-1284]],[[4775]],[[-1307,4776,4777,-1303,4778,-1301,4779,-1296,4780]],[[-1309,4781]],[[1311,-1312,4782]],[[-1325,4783,-1329,4784]],[[4785,4786,4787]],[[4788,4789,4790,4791]],[[-1335,4792]],[[4793,4794]],[[4795,-1340]],[[4796,4797,4798,4799,-1338,4800]],[[4801,4802]],[[4803,-1345]],[[4804,-1354,4805,4806,-1347]],[[4807,-4808,4808]],[[4809,-1355,4810,4811,4812,4813]],[[4814,4814,4814]],[[4815,4816,-1362]],[[4817,4818,-1368,4819]],[[4820,4821,-1366]],[[4822,4823]],[[-1370,4824,4825,4826]],[[4827,-1374]],[[4828,4829,4830,4831,4832,-1380,4833,-1382,4834,4835,4836,-1386,4837,-1393,4838,-1390,4839,4840,4841,4842,4843,4844,4845,4846,4847,-1405,4848,4849,4850,-1403,4851,4852,4853,4854,4855,4856,-1402,4857,-1400,4858,-1398,4859,4860,4861,-1378,4862,-1376,4863],[4864]],[[4865]],[[-1372,4866,4867,4868]],[[-1388,4869]],[[4870,4871,4872]],[[4873,-1409,4874]],[[4875,-1412,4876,4877]],[[-1397,4878,4879]],[[4880,4881,4882,4883,4884,4885]],[[4886,4887,4888]],[[287,4889,4890]],[[4891,4892,4893]],[[4894,4895,4896]],[[4897,4898,4899,289]],[[4900,-1418]],[[4901,-1422]],[[4902,4903,4904,4905,-1420]],[[4906,-1432,4907,-1428]],[[4908,4909,4910,4911]],[[4912,4913,4914]],[[4915,-1445,4916]],[[4917,4918,4919,4920]],[[4921,4922,4923]],[[4924,4925,-1451,4926]],[[4927,4928,-1462,4929,4930,4931]],[[4932,4933]],[[4934,-1455,4935,-1458]],[[4936,4937]],[[4938]],[[4939,4940,4941]],[[4942,300,4943]],[[4944,4945,-1468,4946]],[[-1470,4947]],[[4948,4949,4950,4951,4952]],[[4953,4954,4955]],[[4956,-1612,4957,-1638,4958,4959,4960,-1634,4961,4962,4963,-1629,4964,-1627,4965,-1625,4966,-1717,4967,4968,4969,4970,4971,4972,4973,-1708,4974,-1704,4975,4976,-1658,4977,-1687,4978,4979,4980,-1663,4981,4982,4983,4984,4985,-1656,4986,-1665,4987,4988,4989,4990,4991,4992,-1684,4993,-1680,4994,4995,4996,-1690,4997,4998,4999,5000,-1712,5001,5002,5003,5004,5005,-1732,5006,-1730,-367,-366,-2155,5007,-2154,5008,368,5009,-2164,5010,5011,-2162,5012,-2160,5013,-2173,5014,-2170,5015,5016,5017,5018,5019,-2180,5020,5021,5022,5023,-2342,5024,-2187,5025,-2190,5026,5027,5028,-2278,5029,5030,-2291,5031,5032,5033,-2295,5034,-2336,5035,-2334,5036,-2332,5037,5038,-2300,5039,-2299,5040,-2325,5041,5042,5043,5044,5045,-2328,5046,-2327,5047,5048,5049,5050,5051,-2348,5052,5053,5054,5055,5056,5057,5058,5059,5060,-2350,-2345,5061,-2343,-2349,5062,377,5063,5064,5065,381,5066,5067,-385,5068,5069,5070,5071,5072,5073,5074,5075,-1759,5076,5077,5078,-1753,5079,5080,-1748,5081,5082,-1751,5083,5084,5085,-1772,5086,-1771,5087,5088,5089,5090,5091,5092,5093,-1757,5094,5095,5096,5097,-1608,5098,5099,5100,5101,5102,5103,5104,5105,-1609,5106,-1783,5107,-1775,5108,5109,5110,5111,5112,-1604,5113,5114,5115,5116,-1603,5117,5118,5119,5120,5121,-1590,5122,-1584,5123,-1552,5124,-1550,5125,-1564,5126,5127,5128,5129,5130,5131,5132,5133,-1642,5134,5135,5136,-1557,5137,-1555,5138,5139,5140,5141,5142,-1546,5143,-1544,5144,-1542,5145,-1790,5146,-1801,5147,403,5148,-1536,5149,-1534,5150,5151,5152,-1518,5153,-1529,5154,5155,5156,5157,5158,5159,5160,-1511,5161,5162,5163,5164,5165,-1514,5166,-1516,5167,-1508,5168,5169,-1504,5170,5171,5172,5173,-1501,5174,-1490,5175,5176,5177,-1539,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,-1619,5189,5190,5191,-1495,5192,-1489],[5193],[5194],[5195],[5196],[5197],[5198],[5199],[-1561],[5200],[-1568],[5201],[5202],[5203],[-1773],[5204],[5205],[5206],[5207],[5208],[-1688],[-1689],[5209],[-1725],[5210],[5211],[5212],[5213],[5214],[5215],[-1569],[5216],[5217],[5218],[5219],[5220],[5221],[-1724,5222,-1722,5223,-1720,5224],[5225],[5226],[5227],[5228],[370,5229,-2167,5230],[5231],[-2168],[5232],[5233,5234,5235,5236,5237,5238,5239,5240,5241,5242],[5243],[5244,5245,5246,5247,5248,5249],[5250,5251],[5252],[374,375,5253,5254,-373,5255,5256,5257,-1734,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267],[5268],[-1744,5269],[5270],[5271],[5272],[5273],[-1760],[-1761],[5274,5275,5276,5277,5278,5279,5280,5281,5282,5283],[5284],[5285],[5286],[5287,-1768,5288,-1767],[5289],[5290],[5291,-1764,5292,5293],[-1577,5294,-1575,5295,-1579,5296],[5297],[5298],[5299],[-1601,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,-1738,5326,5327,-1572,5328,-1571,5329,5330,5331,5332,5333,5334]],[[5335,-1527]],[[-1566,5336]],[[5337]],[[5338,5339]],[[5340]],[[-1597,5341,5342,-1594,5343,5344]],[[1631,-1632,5345]],[[5346,5347,5348]],[[5349,5350,5351,348,5352,-347,-2823,5353,-2814,5354,5355,5356,5357,-2835,5358,5359,5360,-2858,-2842,5361,5362,5363,-2864,5364,5365,5366,-3064,5367,5368,5369,5370,5371,5372,-2451,-2855,5373,5374,5375,5376,-2848,5377,-2819,5378,-2817,5379,-2821,5380,-2853,5381,5382,5383,5384,5385,5386,-2828,5387,5388,5389,-2807,-2803,5390,-355,5391,5392,360,5393,-1682,5394,5395,5396,5397,-1676,5398,-1675,5399,5400,5401,5402,5403,-1644],[5404],[5405],[5406],[-2860],[5407,350,5408,-2825],[5409],[5410,5411,5412,352]],[[-1654,5413]],[[5414,345,5415,5416]],[[-1667,5417,5418,5419]],[[-1669,5420,5421]],[[-1678,5422,-1700,5423,-1694,5424,5425,5426]],[[5427,5428,5429,-1692,5430,5431,5432,5433]],[[5434,-1710]],[[5435,-1617,5436,5437,-1623]],[[5438,5439]],[[5440,-1742,5441]],[[-1740,5442,5443,5444]],[[5445,5446,5447,5448,5449]],[[-1755,5450]],[[5451,5452]],[[5453,5454]],[[5455]],[[5456]],[[5457,-1786,5458,-1779,5459]],[[-1789,5460]],[[5461,5462,-1809]],[[5463,391,-1810,5464,-4209]],[[5465,-1794,5466]],[[5467,-1797]],[[5468,5469,5470,-1807,395,5471,-4221]],[[5472,5473,5474,5475,5476,-1823,5477,-1825,5478,5479,-1817,5480,5481],[5482]],[[-1826,5483,5484,-1828,5485]],[[5486,5487,5488]],[[5489]],[[-1833,5490,5491]],[[5492,5493]],[[5494,5495,-1842,5496]],[[5497,5498,5499,5500]],[[5501,5502,-1845,5503]],[[5504,5505,5506,5507,-1849,5508,5509,5510]],[[5511,5512,-1875,5513,-1873,5514,5515,-1853]],[[5516,-1870,5517,5518,5519,5520,-1862,5521,-1858,5522,5523],[-1861]],[[-1878,5524,5525]],[[5526,5527,5528,5529,5530,5531,5532,5533,-1882,5534,5535,5536,5537,-1865],[5538]],[[5539,5540,5541,5542,-1886,5543]],[[5544,5545,5546,5547,-1900,5548,5549,-1888],[5550]],[[5551,5552]],[[5553,5554,5555,5556,5557,-1904,5558]],[[5559,5560,5561,5562,5563]],[[5564]],[[5565,-1908,5566]],[[5567,-1919]],[[5568,-1923,5569,5570,5571,5572,-1952,5573,-1942,5574,-1938,5575,5576,5577,-1914,5578,-1921,5579],[5580]],[[5581,-1932,5582,5583,5584]],[[5585,-1940]],[[-1943,5586,5587]],[[5588,-1956,5589,5590]],[[5591,5592,-1959,-1960,5593,-1955]],[[1956]],[[5594,5595,-1972]],[[5596,-1966,5597,5598,-1962]],[[-1964,5599]],[[5600,-1949,5601,-1983]],[[-1977,1976,5602]],[[-1975,5603,5604,5605]],[[5606,5607,-1986,5608]],[[5609,5610,-1992,5611]],[[5612,5613,-2000,5614]],[[-1997,5615]],[[5616,5617,-2003,5618]],[[-2006,5619,5620,5621]],[[5622,5623]],[[5624,5625,5626,5627,5628,5629,-2011,5630]],[[5631,-2022,5632,5633]],[[5634,5635,5636,-2034,5637,-2029,5638,-2031,5639,-2026,5640,-2020],[5641]],[[5642]],[[5643,5644]],[[-2041,5645,-2043,5646,-2036,5647]],[[5648,5649,5650]],[[5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,-2056,5662]],[[-2098,5663]],[[5664,5665]],[[5666]],[[5667,5668]],[[5669,5670,5671,5672]],[[5673,5674]],[[5675,-5676,5676]],[[-2067,5677]],[[5678,-2075,-2074,5679,-2073,5680,5681,5682,5683,5684]],[[-2086,5685,5686]],[[5687]],[[5688,-2084]],[[-2081,5689]],[[-2078,5690]],[[5691,5692,5693]],[[5694,5695,5696]],[[-2104,5697,-2114,5698,5699,5700,-2110,5701,-2108,5702,5703,-2106]],[[-2102,5704,5705,5706]],[[5707,5708,-2100,-2105]],[[5709,5710,503,5711,-3801,505,-3800,5712,-508,5713]],[[5714,-5715,5715]],[[-2140,5716]],[[5717,5718,5719,5720]],[[-2159,5721,5722,-2157,5723,5724,5725,-2171,5726]],[[5727,-2177,5728]],[[-2178,5729,-2195,5730,-2201,5731,-2340,5732]],[[5733,5734,-2198,5735,-2193,5736,-2182]],[[-2202,5737,5738,5739,5740,-2263,5741,-2259,5742,-2265,5743,-2250,5744,-2266,5745,-2253,5746,-2251,5747,-2318,5748,5749,-2304,5750,-2302,5751,-2275,5752,5753,5754,5755,5756,5757],[-2308],[5758],[5759]],[[5760,-2261]],[[-2248,5761,-2229,5762]],[[5763,-2205,5764,5765,5766,-2213,5767]],[[5768,5769]],[[5770,5771,5772]],[[5773,-2206]],[[-2241,564,5774,5775,5776,-2237,5777]],[[5778,5779]],[[5780,5781]],[[5782,5783,-2223,5784,5785]],[[-2234,2233,5786]],[[5787,-2221]],[[5788,5789]],[[5790,-5791,5791]],[[5792,5793,5794]],[[5795,-2269,5796,-2245,-2227]],[[5797,-2228,-2244]],[[5798]],[[-2255,5799,5800]],[[5801,-2242,5802]],[[-2273,5803,5804,5805]],[[-2279,5806,5807]],[[5808,5809,-2284]],[[5810,5811,5812,5813]],[[5814,5815,5816,5817,5818,5819]],[[5820,-2306,5821,5822,-2311,5823,5824,-2321,5825,-2297,5826,5827]],[[5828,5829]],[[5830,-2305,5831,5832]],[[5833,-2309]],[[-2323,5834]],[[-2339,5835,5836]],[[-2188,5837,5838]],[[5839,-383,5840,5841]],[[-2352,5842,5843,5844,-380,5845]],[[5846,5847]],[[5848,5849,5850]],[[5851,-1157]],[[5852,5853,-1158,-2358,-2362,5854,-2749,5855,5856,5857,-2744,5858,-2740,5859,-2742,5860,5861,5862,5863,-2698,5864,5865,5866,-2700,5867,-2696,5868,-2755,5869,-2761,5870,5871,-2763,5872,5873,5874,-2693,5875,5876,5877,5878,-2692,-2769,5879,-2777,5880,-2785,5881,-2775,5882,5883,-2778,5884,5885,-2783,5886,5887,5888,5889,5890,5891,5892,5893,5894,667,668,5895,672,-2682,674,5896,5897,5898,5899,-4257,5900,-2710,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,-2705,5911,-2703,679,5912,-2717,5913,5914,5915,5916,5917,-2723,5918,-2729,5919,-2732,5920,5921,5922,5923,-584,-583,5924,-579,5925,5926,5927,5928,5929,5930,5931,5932,-2385,5933,5934,5935,-2367,5936,5937,5938],[5939],[5940],[5941,-2688],[5942],[5943],[5944,-2684,5945,-2686],[5946],[5947],[5948],[5949],[5950],[5951],[5952],[5953],[5954],[5955,5956,-576,5957,574],[5958,5959],[5960]],[[5961,5962,5963,5964,5965]],[[5966]],[[-2374,5967,5968,5969]],[[5970,5971,-2372,5972,-2383,5973]],[[-2392,5974,5975]],[[5976]],[[5977,626,5978,-2491,5979,-2495,5980,5981,-2416,5982,5983,5984,5985,5986,5987,5988,-2471,5989,-2472,5990,5991,5992,-2468,5993,5994,5995,-2422,5996,5997,5998],[5999]],[[-2426,6000,-2418,6001,-2430,6002,6003,6004]],[[-2432,6005,6006]],[[6007,-2445,6008,6009,-2433,6010]],[[6011,-2443]],[[620,-2447,6012]],[[6013,6014,-2437,6015]],[[6016,615,6017,6018]],[[6019,6020,6021,6022,6023,-2458]],[[6024,6025],[6026]],[[6027,6028,6029]],[[6030]],[[6031,6032,-2493,6033,-2408,6034,6035,-2413]],[[6036,-2489,6037]],[[6038,6039,6040,6041,6042,6043,6044,6045,6046,-2670,6047,6048,6049,-2497,6050,6051],[6052],[6053]],[[628,629,630,6054,-2486,6055]],[[6056,6057,6058,-2503]],[[6059,6060,-2500]],[[6061,6062,-2506]],[[6063,-6064,6064]],[[-2509,6065,6066,6067]],[[-2529,6068,-2533,6069]],[[6070,6071]],[[6072,6073,-2536,6074]],[[6075,6076]],[[6077,6078,6079]],[[6080,-2514]],[[6081,6082,-2516,6083,6084]],[[-2548,6085,6086,6087]],[[6088]],[[6089]],[[-2675,-2550,6090]],[[6091,6092,6093,6094]],[[6095,-2544]],[[6096,6097,6098,6099,6100,6101]],[[6102,6103,6104,6105,6106,6107,6108]],[[-2524,-2551,-2674,6109]],[[6110,6111,-2566,6112,-2564,6113,-2562,6114,6115,-2570,6116,6117,6118,6119,6120,6121,-2555,6122,6123,-2560,6124,6125,6126]],[[-2922,-646,6127,-2572,643,6128]],[[6129,-2587,6130,6131,6132,6133,6134]],[[6135,6136,6137,-2589,6138,6139]],[[6140,6141,-2605,6142,6143]],[[6144,-2612,6145]],[[6146,6147,6148]],[[-2616,6149,6150,6151]],[[-2639,6152,6153,6154,6155,-2631,6156,6157]],[[6158,6159,6160]],[[6161,-2643,6162]],[[6163,6164,-2626]],[[6165]],[[6166,6167]],[[6168,-2665,6169,6170,6171,6172,6173,6174,-2672,6175,-2655,6176,-2661]],[[6177,-2659,6178,-2621]],[[6179,6180]],[[-2595,6181,6182]],[[6183,6184,6185]],[[6186]],[[6187,6188,6189,6190]],[[6191,6192,6193]],[[-2462,6194,-2460,6195]],[[6196,6197,6198]],[[6199,6200,-2540]],[[6201,-2677]],[[2689,-2690,6202]],[[6203,6204]],[[6205,-2715]],[[-2726,6206,6207,6208,6209]],[[6210,6211,6212,6213]],[[-1152,6214]],[[6215,-1148,6216,-1150]],[[6217,6218,6219,6220]],[[6221,6222]],[[6223]],[[-2757,6224]],[[6225,-2766]],[[6226,6227,6228,6229]],[[6230,6231,6232,6233,6234,6235]],[[6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247]],[[6248,-2805,6249,-2787]],[[6250,6251,6252,-2795,6253,6254,-2789,-2810]],[[6255]],[[6256,6257,6258]],[[6259,6260,-612,6261]],[[-2791,6262,6263]],[[-344,6264]],[[6265,-2829,6266,6267]],[[6268,6269,-2837,6270]],[[-2851,2850,6271]],[[6272,-622,6273,6274]],[[6275,6276,-2449]],[[6277,6278,-2839]],[[6279,-2453]],[[6280,6281]],[[6282,6283,6284,6285,6286,6287,-2867,6288,6289,6290,6291,-2873,6292,6293,6294,-2890,6295,6296,6297,6298,6299,6300,-2868,6301,-2862,6302],[6303],[6304],[6305]],[[6306]],[[-2875,-633,6307]],[[6308,6309,6310,6311,-2877,6312]],[[6313,6314,-3066,6315,6316,-2881]],[[6317,6318,6319,6320,-2884,6321,6322,6323]],[[-2905,6324,-2904,6325,-2902,6326,6327,-2919,6328,-2907,6329,-2912,6330,6331,-2893,6332,6333]],[[6334,-2899,6335]],[[6336,-2915,6337]],[[-2924,6338]],[[6339,6340]],[[6341,6342]],[[-2934,6343,6344,6345]],[[6346,6347,-2938]],[[6348,6349,6350]],[[6351,-2949,-2942,6352,-2947,6353]],[[6354,6355,-2961,6356,-2972]],[[6357,6358,-2983,6359]],[[-2981,6360]],[[6361,6362,6363]],[[-2979,6364]],[[-2977,6365]],[[6366,-2992]],[[-3000,6367,6368]],[[6369,6370,-2993]],[[6371,6372,6373]],[[-2989,6374]],[[-3013,6375]],[[6376,6377,-3034,6378,-3031]],[[-619,-2831,6379]],[[6380,-3083,6381,-3069,6382,-3126,6383,-3119,6384,-3168,6385,-3166,6386,6387,-3150,6388,6389,-3147,6390,6391,-3338,6392,6393,6394,6395,6396,6397,6398,6399,6400,-3087,-3074,6401,6402,6403,-3072],[6404],[6405],[6406],[6407],[6408],[6409],[-3070]],[[-3090,6410]],[[6411,6412,6413,-3100,6414,-3092,6415,6416,6417,6418,6419,6420,6421,-3124,6422,6423,6424,6425,-3077,6426,6427,-3085,6428]],[[-3094,6429]],[[6430,6431,-3098,6432,6433,6434]],[[6435,6436,-3106]],[[-3107,6437,6438,6439,-3104,6440]],[[-3224,6441,6442,6443,-3109,6444]],[[-3113,6445,6446,-3115,6447,-3204,6448,6449,6450,6451,6452,6453]],[[6454,6455,-3111]],[[3079,-3080,6456]],[[6457,6458]],[[6459]],[[6460]],[[-3133,6461,6462,6463,6464,6465,-3127,6466,6467,6468,6469,6470,6471,6472,6473]],[[6474,6475]],[[-3142,6476,-3140,6477,6478,6479,6480,6481,6482,6483,-3134,6484,6485,-3129,6486]],[[-3137,6487]],[[-3162,6488]],[[6489,-3144,6490]],[[-3149,6491,6492]],[[-3151,6493,6494,6495,-3184,6496,-3156,6497,-3154,6498,-3164,6499]],[[6500,-3173,6501,-3179,6502,-3170,6503,6504]],[[6505,-3176]],[[6506,6507,6508]],[[6509,-3191,6510]],[[6511,-3209,6512,-3200,6513,-3211]],[[6514,6515]],[[-3202,6516,6517,6518]],[[-3222,6519]],[[6520,6521]],[[-3189,6522,6523,6524,6525,-3226,6526],[6527]],[[6528,6529,-3228,6530,-3242,6531,-3252]],[[6532,6533,-3234,6534,-3236,-3102,6535]],[[6536,-3264,6537,6538,-3246,6539,6540]],[[-3254,6541,6542]],[[6543]],[[6544,-3259,6545,6546,6547,-3273,6548,6549,-3267,6550]],[[-3269,6551,6552]],[[-3257,-3261,6553,6554]],[[6555,-3248]],[[-3256,6556,-3262]],[[-3278,6557,-3301,6558,6559]],[[6560]],[[6561,-3291,6562,-3289,6563,-3305,6564,-3318,-3306,6565,-3302]],[[-3280,6566,6567,-3271,6568,-3276,6569]],[[6570,6571,6572,6573,6574,6575,6576,6577]],[[-3317,-3307]],[[-3316,6578,6579,-3308]],[[-3287,6580,-3311,6581,-3320,6582]],[[3313,-3314,6583]],[[-3250,6584]],[[6585,-3297,6586]],[[6587]],[[6588,6589,6590,6591,6592,-3327]],[[-3299,6593]],[[6594]],[[6595,6596,6597,6598,-3205,6599,-3219,6600,-3217,6601,6602,6603,6604,6605,6606,6607,6608]],[[-3323,3322,6609]],[[-3330,6610,6611,6612]],[[6613,6614,-3335]],[[6615,6616]],[[-3343,6617,-3349,6618,6619,6620,6621,6622,6623,702,6624,6625,704,6626,6627,-3465,6628,-3471,6629,6630,6631,-3525,6632,-3473,6633,6634,6635,-707,-3353,6636,6637,6638,6639,6640,-3350,6641],[6642],[-3340,6643],[6644],[-3354]],[[-3369,6645,-3367,6646,6647,6648,6649,6650,6651,6652,6653,-3362,6654,6655,6656,6657,6658,-3356,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670],[6671],[6672],[6673],[6674]],[[6675,-3360]],[[6676,6677,-3364,6678]],[[6679,6680,6681,-3375,6682,6683]],[[6684,721,6685]],[[6686,6687]],[[-3379,6688,-3387,6689,6690,6691,6692,6693,-3393,6694],[6695]],[[6696,6697]],[[6698,6699,6700,6701,6702,6703],[6704]],[[6705,6706,6707]],[[6708,6709,6710,6711,6712,6713,-3403]],[[6714,6715]],[[6716,-3420]],[[6717,6718,-3425]],[[6719,6720,6721,6722]],[[6723,6724,6725]],[[6726]],[[6727,6728]],[[6729,6730,-3434,6731]],[[6732,6733,6734]],[[-3451]],[[6735,6736,-3463]],[[6737,6738,-3458]],[[6739,-6740,6740]],[[6741]],[[6742,6743]],[[6744,-6745,6745]],[[6746,6747,6748]],[[-3519,6749,6750,6751,6752]],[[6753,6754,-3520,6755]],[[6756,6757,6758,6759,6760,6761,6762,-3541,6763,6764,6765,-3597,6766,6767,6768,6769,6770,-3527,6771]],[[6772,6773,-3535,6774,6775,-3532],[6776]],[[6777,6778]],[[6779,6780]],[[6781,-3546,6782,6783,6784,6785]],[[6786,-6787,6787]],[[-3553,3552,6788]],[[6789,6790,-3569]],[[-3579,6791,-735,-3577,6792,6793,-3574,6794,6795,-3567,6796,6797,6798,6799],[6800],[6801],[6802]],[[-738,6803]],[[-3587,6804,6805,-3605,6806,-3603,6807,-3601,6808]],[[6809,6810]],[[6811,6812,6813,6814]],[[6815,6816,-3585]],[[6817,6818,6819,6820,6821,6822]],[[6823,6824,-3596,6825,-3594,6826]],[[6827,-3592,6828,6829,6830]],[[6831,-6832,6832]],[[6833,-3613,6834]],[[6835,-3623]],[[6836,6837,6838]],[[6839,6840,6841,-3622]],[[-3632,6842,6843,6844]],[[6845]],[[-3666,6846,6847]],[[-3674,6848,-3669]],[[6849,6850,-3681,6851,6852,-3678,6853,6854,6855]],[[6856,-3725,6857,6858,6859,6860,-3690,6861,6862,6863,-3715,6864,6865]],[[6866,6867,6868,-3687,6869]],[[-479,-478,-3691,6870,-3693,6871,6872,6873,-3751,6874]],[[-3731,6875,-3729,6876,6877,-3736,6878,6879,6880,-3723,6881],[6882]],[[6883,-3742,6884,-3738]],[[-3747,6885,6886]],[[6887,-3765]],[[6888,-3778,6889,-3754]],[[-3756,6890,-3768,6891]],[[6892,6893,6894]],[[6895,6896]],[[-3784,6897,6898]],[[6899,6900,6901,-3782]],[[6902,-3791,6903,6904]],[[6905,6906,6907]],[[-3807,6908,6909,-114]],[[6910]],[[6911,6912,6913]],[[6914,-3825,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,-3820],[6929]],[[6930,6931,6932,6933]],[[6934,6935,6936,6937,-3829,6938,6939]],[[6940,6941,6942,-3832,6943,6944,6945]],[[6946,6947,6948,6949,6950,-3836]],[[-3839,6951,-3837,6952,6953]],[[-3843,-662,6954]],[[6955,-6956,6956]],[[6957,6958,6959,6960,6961]],[[6962,-3845,6963,6964,6965,6966]],[[6967,-6968,6968]],[[-3856,-3859,6969,6970,6971,6972,6973,6974,-3867,6975,-3861,6976,6977,-3854,6978],[6979]],[[-3874,6980,-3871,6981,-3884,6982,-3881,6983,-3888,6984,6985,-3893,6986]],[[6987,-3883]],[[-3906,6988,-3904,6989,6990,6991,6992,6993,6994,6995,6996,6997,-3895,6998,-3900,6999,7000,7001,7002,7003,7004,7005,7006,7007,-3919,7008],[7009],[-3923]],[[7010,7011,7012,7013,-3915]],[[-3931,7014,7015,-3926,7016]],[[7017,7018,-3913,7019,-3909,7020]],[[7021,-7022,7022]],[[-3940,7023]],[[-3938,7024]],[[7025,-7026,7026]],[[7027,7028,7029,7030]],[[7031,-3944,7032,7033,7034,7035,-3945]],[[-714,7036,7037,7038]],[[-716,7039,7040,-3948,7041,-3953]],[[7042,-3985,7043,-3983,7044,7045,-3973,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,-3960,7057,7058],[7059]],[[-3956,7060,-3966,7061]],[[-3969,7062,-3977,7063,7064,7065,-3989,7066,-3987,7067,7068,7069,7070,7071,-3971,7072]],[[3978]],[[7073,7074,-3988,7075]],[[7076,-3991,7077]],[[7078,7079,7080]],[[7081,7082]],[[-3996,7083,7084]],[[-4000,7085,7086,-4001,7087]],[[7088,7089,-4019,7090,7091,7092,-4014],[7093]],[[-4021,7094]],[[7095,7096,-4016,7097]],[[-4025,7098,-4027,7099,7100,7101,7102,-4032,7103,7104]],[[7105,7106,-4030,7107]],[[7108,7109]],[[7110,-4039,7111,7112]],[[-4046,4045,7113]],[[7114,-4058,7115,7116]],[[7117,7118,7119]],[[7120,7121,7122]],[[7123,7124,7125]],[[7126,7127,7128,-4073,7129,-4068]],[[7130,-4071,7131,-4079,7132]],[[7133,-4089,7134]],[[7135,-4086,7136]],[[7137,7138]],[[7139,7140,-4094,7141,7142,7143,7144,7145,7146,7147,7148,7149,-4077,7150,-4075]],[[7151,7152,-4097,7153,-4096,7154,7155,7156,7157,7158,7159,7160,-4105,7161,7162,7163,7164]],[[7165,7166,7167,-4100,7168]],[[-4108,7169]],[[-4114,7170,7171,-4121,7172,-4123,7173,7174,7175,7176,7177,-4116,7178]],[[7179,7180,7181,-4119]],[[7182,-7183,7183]],[[7184,7185,-4127]],[[7186]],[[7187,7188]],[[7189,7190,7191,7192]],[[7193,7194,7195,7196]],[[7197,-4144,7198,-4151]],[[7199,7200,-4163,7201,-4165,7202,7203,7204,7205,7206,7207,-4175,7208,-4168,7209,7210,7211,7212,7213,7214]],[[7215,7216,-4173,7217,-4172]],[[7218,7219,7220,-4187,7221,7222,-4183,7223,7224,7225,7226,7227,7228,7229,-4179,7230]],[[7231,7232,7233,7234]],[[7235,7236,7237,7238,7239,-4190]],[[-4201,7240,7241,7242]],[[7243,7244,7245,-4195]],[[-4211,7246,7247]],[[7248,7249,-4204]],[[7250,7251,7252]],[[7253,-7254,7254]],[[-4227,7255,-4225,7256,-4236,7257,7258,-4206,7259,-4216,7260,7261,7262,7263,-4229,7264]],[[7265,-4223,7266,-1805]],[[7267,7268,7269,7270,7271,-1523,7272,7273,7274,-4238,7275]],[[7276,-4240,7277,-4233]],[[-4251,7278,7279,-4247]],[[-4255,7280,7281]],[[7282,7283,7284,7285]],[[7286]],[[7287,7288,7289,7290]],[[7291,7292,7293,7294,7295,7296,-4263,-789,7297,7298,7299,7300,7301,7302,7303]],[[7304,7305,7306,7307,7308,7309,7310,7311,7312,7313]],[[7314,-4274,7315]],[[7316,7317,-4276,7318,7319]],[[7320,-7321,7321]],[[-4271,7322]],[[-4270,7323,7324,7325]],[[-4279,7326]],[[7327,-7328,7328]]]},{"type":"MultiPolygon","id":"7","properties":{"density":7},"arcs":[[[-4313,7329]],[[7330,-4311]],[[-809,8,-4335]],[[-820,-4301]],[[-814,-4339,7331,-827,7332,-828,-4282]],[[-825,7333,-830,7334]],[[-856,-4340,-847,7335,-4299]],[[7336,-832,7337,-838,-4284]],[[1,2,-4319,7338]],[[-4314,7339,7340]],[[-4336]],[[7341,-4303]],[[-4308,-819,-4306,7342,7343]],[[7344,7345,-4288,7346,7347]],[[-836,-4285]],[[-858,-4298,7348,7349]],[[859,-860,7350]],[[-4341,-854,-853,-852,7351,-849]],[[-865,7352,7353,-4291]],[[-4337]],[[-862,-4290]],[[-4296]],[[-867,-4293,7354,7355,-4358]],[[-4294,-869,-4357,7356]],[[-4355,7357]],[[7358,-4353]],[[-4360]],[[7359,-4344]],[[7360,7361,-4346]],[[-4348,7362,7363,-4364,-871]],[[7364,-4352,7365]],[[-874,7366,-4350]],[[18,-4477,7367,-4475,-884,7368,7369,-4482,7370,7371]],[[-4472,7372,-886,7373]],[[-4474,-881,-880,-879]],[[7374,-894,-4469]],[[-903,7375,-890,-4489]],[[7376,-4485,-909,-4495,-899,-4488]],[[7377,-4493,7378]],[[7379,-4491]],[[7380,-917,-4507]],[[-4508]],[[7381,-4503,7382]],[[-920,-930,-4496]],[[-919,7383,7384,-4513,7385,7386,-923,-4509,-926]],[[7387,7388,7389,-4499]],[[7390,7391,-4501]],[[-928,-4510,-921,-4497]],[[7392,-935,7393]],[[-941,7394,-943,7395]],[[7396,7397,-4517,-960]],[[-948,-4520,-956,7398,7399,-963,7400]],[[-954,-4519,-957,7401,7402,-4521,7403]],[[7404,7405,7406,7407,-4523]],[[7408,-4530,7409,7410]],[[-4534,7411,-4527,7412]],[[125,7413,-971,-4537,7414,-974,-4544,-980,-4543,7415,7416,-976,-4541,-4563,7417],[4541]],[[-982,7418,7419,7420,-4547]],[[4564,7421,-4560,7422]],[[7423,-4550]],[[121,7424,-4558,7425]],[[-4564]],[[-991,-4553]],[[7426,-1001,-4568]],[[7427,-4591,-1029,7428,-1068,-4574,-1008,7429,-4571,-1007,-4570]],[[7430,7431,-1097,-4578]],[[7432,-1062,7433,-1017,-4588,-1023,-4584,7434,-1027]],[[-4589,-1015,-4610,-1041]],[[7435,-4582]],[[-4586]],[[-4580,-1092,7436]],[[-4585,-1021,-4587]],[[-4592]],[[-4590,-1039,-4593,-1031]],[[-1055,-4617,-1089,7437,-22,-21,-4480]],[[7438,-1086,7439,7440,-4615,-1091,-4616,-4600,-1049,-4595,-1045,7441,-4601,-1058]],[[-1051,-4599,-1057,-4479,7442,-4596]],[[7443,-1047,-4598,7444,-17]],[[-1060,-4603,7445]],[[7446,-4604,-1033,-4594,-1044,-4608,7447,-1072]],[[7448,-1036,7449,-1070,7450,-1081]],[[-4611,-1013,-4609,-1043]],[[-1020,7451,-4606]],[[-1078,7452]],[[-4539,7453,7454]],[[-4555,7455,7456]],[[-1102,-4619,-1109,-4621,7457,-1094,-4579]],[[7458,-1104,-4618,-1100]],[[-1107,7459,-4620]],[[7460,7461,-4324,7462,7463,-4622,7464,-4636]],[[7465,-1114,7466,-4326]],[[7467,-4330]],[[-1120,-4322]],[[7468,-4332]],[[7469,7470,7471,-1128,-4640,-1126]],[[-4643,-1138]],[[-1142,7472,-4644,7473]],[[-1141,7474]],[[7475,7476,-1132,-4647,7477]],[[-4650,-1171,-1165]],[[7478,7479,-1177,7480,-1166,-1170,-4654,7481,-4652,-1174]],[[7482,-1183,7483,-1179]],[[7484,7485,7486,7487]],[[-4655,7488]],[[-4716,-4708,-1203,-4719,-1195,7489]],[[7490,-1199,-4707]],[[-4718,7491]],[[-4712]],[[7492,-4704,-1214]],[[7493,-4722,-1209,-4703]],[[7494,-1216,-4657]],[[-4710]],[[-4711]],[[7495,-4702]],[[7496,-4699]],[[-1236,-4667]],[[-4713]],[[-1218,7497,7498,-4658]],[[-4662,-1225,-4660,7499]],[[-1223,-4661]],[[-4668,-1234,-4666,-1228,-4665,7500,-4731],[-4734]],[[7501,-4732,7502,-4671,-4728,-1231]],[[-4729,-4670]],[[-4669,-4730]],[[-4714]],[[7503,7504,-4676]],[[7505,7506,7507,-4691,-4687,-1245,-4737,-1247,-4686,-4681,7508,-4736,7509,-4678]],[[7510,-4674]],[[-4685,-1240,-4682]],[[-4684,-1241]],[[-1243,-4683]],[[-4690,-4688]],[[-4689]],[[7511,-4696]],[[-4698,7512]],[[7513,-4740,7514,-4742]],[[7515,-1256,-4746,7516,198,-1261,-4751,-1259,7517]],[[7518,-4747,-4750]],[[-4756]],[[-4758,204,7519,7520,-1271,202]],[[7521,7522]],[[7523,7524]],[[7525,-4761,-1276,7526]],[[7527,-4763,7528]],[[7529,-4767,7530]],[[-4773,7531]],[[7532,-1294,7533,7534]],[[7535,-1297,-4780,-1300,7536]],[[-4779,-1302]],[[-4781,-1295,7537,7538,-1310,-4782,-1308]],[[-1315,7539,-1319,-4777]],[[-1318,7540,-1304,-4778]],[[-1324,7541,-1321,7542,7543,-1330,-4784]],[[7544,-1322,7545,7546]],[[7547,7548,7549,7550,-4788,7551,-1334]],[[7552,-4789,7553]],[[-4791,7554,7555,7556,7557]],[[7558,7559]],[[-4794,7560]],[[7561]],[[-1339,-4800,7562,-1341,-4796]],[[-4798,7563]],[[-4801,-1337,7564]],[[7565,-4803,7566,7567,7568]],[[-1344,7569,7570,-4804]],[[7571,7572]],[[-4808,7573,7574]],[[-1353,7575,7576,-4806]],[[7577,-4814]],[[7578,-1364]],[[-4822,7579,-4820,-1367]],[[7580,-4864,-1375,-4828,-1373,7581,-4824,7582,-4825,-1369,-4819]],[[-1410,-4876,7583,7584,-1371,-4827,7585]],[[7586,-4830]],[[-1383,-4834]],[[7587,-4831,7588]],[[7589,7590,7591,-4836],[-4866]],[[-1377,-4863]],[[-4865]],[[-4868,7592]],[[7593,-4861]],[[-4838,-1385,-1391]],[[-1401,-4858]],[[-4859,-1399]],[[7594,-1394,-4857]],[[-4855,7595]],[[-1392,-1384,-4839]],[[7596,-4841]],[[7597,-4850]],[[-1406,-4848,7598,-4852]],[[7599,-4844]],[[-4877,-1411,7600,-4879,-1396,7601,7602]],[[-4846,7603]],[[7604,7605,7606]],[[-1407,-4874,7607,7608,-4872,7609]],[[-4884,7610]],[[-4882,7611]],[[7612,-4886]],[[7613,7614]],[[7615,-4889,7616]],[[7617]],[[-4897,-4894,7618]],[[7619,7620]],[[-4901,-1417,7621,7622,-4903,-1419]],[[-1421,-4906,7623,-1413,-4902]],[[-1431,7624]],[[7625,7626,-4907,-1427]],[[-1439,7627,-4909,7628]],[[7629,-1444,7630]],[[7631,-4917,-1449,-4915,7632]],[[-1448,7633,-4913]],[[7634,7635,7636,-4921]],[[7637,-4919,7638,7639]],[[7640,-4925]],[[-1465,7641,-1459,-4936,-1454,7642,7643,-4930]],[[7644,-4934,7645,7646,-4932]],[[-1456,-4935,-1457,7647]],[[-4942,7648,-4941,7649,-4937,7650]],[[7651,7652,-1472,7653]],[[7654,7655,7656]],[[7657,7658,7659,7660,7661,7662,-1482]],[[7663,7664,-4950]],[[7665,-4952,7666,7667]],[[-1494,7668,-1486,-5193]],[[7669,7670,-5185]],[[-5308]],[[7671,7672,-5177]],[[7673,-5172]],[[7674,7675,-1502,-5174]],[[-5169,-1510,7676]],[[7677,7678,-5165]],[[7679,-5162,-1513,-5160,-5158]],[[-1526,7680,-5155,-1528,-5336]],[[-1517,-5167]],[[-1512,-5161]],[[-5159]],[[7681,-5151,-1533]],[[7682,-1531,407]],[[-1519,-5153,7683]],[[-5154,-1530]],[[-5318]],[[-5317]],[[-5319,7684]],[[-5316]],[[-5310]],[[7685,-5180]],[[-5315]],[[7686,-5182]],[[-5309]],[[-5314]],[[-5321]],[[-5150,-1535]],[[-5145,-1543]],[[-5307]],[[-1537,-5149,404]],[[-5147,-5461,-1802]],[[-1541,7687,-5146]],[[-5144,-1545]],[[7688,-5139,-1554,7689,-1580,7690,-1582,7691,-1547,-5143]],[[-1558,-5137,7692,-5135,-1641,7693,-1562,-5337,-1565,-5126,-1559,-1567],[-5338]],[[-1556,-5138]],[[7694,7695,-4963]],[[7696,-5306]],[[7697,-5132]],[[7698,-5130]],[[7699,-5128]],[[-5302]],[[-5201]],[[-5213]],[[-5215]],[[-5327,-1737,7700,7701]],[[7702,-5304]],[[-5216]],[[-5217]],[[-5329]],[[-1570,7703,-5330]],[[7704,7705,-5332]],[[-5286]],[[-1589,7706,-5340,7707,-1585,-5123]],[[7708,-5344,-1593,7709,-1591,-5122],[-5341]],[[-1595,-5343,7710]],[[-5299]],[[-1600,-5301]],[[-5200]],[[-1578,-5297]],[[7711,-5115]],[[-1602,-5117,7712,7713,-5118]],[[7714,-1746,-5083]],[[7715,7716,-5099,-1607]],[[7717,-5101]],[[7718,-5103]],[[-5194]],[[-1776,-5108,-1782,7719]],[[-5106,7720,-1610]],[[-1620,-5189,7721]],[[-1637,7722,-4959]],[[7723,-1635,-4961]],[[-5311,-5347,7724]],[[-5322]],[[7725,-5348,-5313]],[[7726,-1639,-5134]],[[7727,-1649,7728,-1645,-5404]],[[7729,-5417,-5351]],[[7730,-1651,-4986]],[[7731,-4983]],[[-1653,7732,-5402,7733,-4988,-1664,-4987,-1655,-5414]],[[7734,-4989,7735,-1672]],[[-1674,7736,-5400]],[[-5405]],[[-5352,-5416,346,-5353,-349]],[[-5410]],[[7737,-5418,-1666,-5399,-1677,-5398]],[[-5407]],[[356,-2806,-6249,-2786,7738,-359,-5392,354,-5391,-2802]],[[7739,-5421,-1668,-5420,7740,-5396,-1697,-5423,-1681,-4994,-1685,-4993]],[[-4980,7741]],[[-5000,7742,7743]],[[-5209]],[[-5208]],[[7744,7745,-4991]],[[7746,-4995,-1679,-5427]],[[7747,-1727,7748,-5433]],[[-5430,7749,-5425,-1693]],[[-1696,7750,-5431]],[[7751,-1659,-4977,7752]],[[7753,-1711,-5435,-1709,-4974,7754,-4971,7755]],[[-4973,7756]],[[-5207]],[[-5203]],[[-5206]],[[-5210]],[[-1715,7757,7758,-4969]],[[-1716,-4968]],[[-1616,7759,-5440,7760,-5437]],[[-1618,-5436,-1622,-4958]],[[-4966,-1626]],[[-5204]],[[-5223,-1723]],[[-1628,-4965]],[[-1721,-5224]],[[-5225,-1719]],[[-5205]],[[-5202]],[[-5212]],[[-5214]],[[-1731,-5007]],[[-5227]],[[7761,-5261]],[[-5324,7762,-5335,7763]],[[-5226]],[[7764,7765,-5263]],[[-5259,-1733,7766]],[[-5228]],[[-5229]],[[7767,7768,-5004]],[[-5211]],[[-1741,-5445,7769,-5442]],[[-1745,-5270]],[[-5285]],[[-5287]],[[7770,-5084,-1750,-5080,-1752,-5451,7771,-5448,7772,-5452]],[[-5081,-1749]],[[-5078]],[[7773,-5093,7774]],[[7775,-5446]],[[-5090,7776]],[[-5196]],[[-5222]],[[-5221]],[[-5220]],[[-5219]],[[-5218]],[[7777,-5266]],[[-5271]],[[7778,7779,-5268]],[[-5273]],[[-5272]],[[7780,-5278]],[[-5280,7781,-5282]],[[-5281]],[[7782,-5284]],[[-5075,7783,7784]],[[7785,-5276]],[[-5274]],[[7786,-5065]],[[384,-5068,7787,-5840,7788,-5069]],[[7789,-1763,7790,7791]],[[-5293,-1765,-5292]],[[-5294]],[[7792,-5455,7793,-5112]],[[-5198]],[[-1766,-5289,-1769,-5288]],[[-5290]],[[-5197]],[[-5291]],[[-5087]],[[-5195]],[[-1774,7794,-5460,-1778,7795,-1780,-5459,-1785,7796,-5109]],[[7797,-1788]],[[-1551,-5125]],[[-5298]],[[-5120,7798]],[[-1574,-5296]],[[-5295,-1576]],[[401,7799,-1799,7800,-1803]],[[-1808,-5471,-5467,7801,-5462]],[[397,-1795,-5466,-5470]],[[7802,-7803,7803]],[[7804,-5482]],[[7805,7806,-1818,-5480]],[[-5483]],[[7807,-5484,-1834,-5492,7808,-5501,7809,-5488,7810,-5476,7811,-5475]],[[-1827,-5486]],[[7812,-5494,7813,7814,-5497,-1841,7815,-5499]],[[-1846,-5503,7816]],[[7817,-5509,-1848,-5504]],[[7818,-5511]],[[7819,7820,-5507]],[[-1869,7821,7822,7823,7824,-5518]],[[7825,7826,-1854,-5516]],[[7827,-5524]],[[-1863,-5521,7828,7829]],[[-5514,-1874]],[[-1860,7830,-5535,-1881,7831,-5512]],[[7832,-1871,7833]],[[7834,-5529]],[[7835,-5537]],[[-5532]],[[-5539]],[[7836,-5542]],[[7837,7838,-5540]],[[-5550,7839,7840,-1889]],[[-1897,7841,-1892,7842]],[[-5551]],[[-5545,-1887,7843,-5552]],[[-5561,7844,-5559,-1903,7845,7846]],[[-1912,7847,-1906,7848,-5557,7849]],[[-5580,-1920,-5568,-1918,7850,-5567,-1907,7851,7852,7853],[5564]],[[7854,-7855,7855]],[[7856,-7857,7857]],[[-5579,-1922]],[[7858,7859,7860,-5570,-1927]],[[7861,-1925]],[[-5575,-1941,-5586,-1939]],[[-5581]],[[7862]],[[-5585,7863,7864]],[[-1915,-5578,7865,-5583,-1931,7866]],[[-5576,-1937,7867]],[[-1944,7868,7869]],[[-5574,-1951,-5589,-1946,7870,-5587]],[[-5591,-1947]],[[-1963,-5599,7871,-1984,-5602,-1948,-5590,-5594,-1965,-5600]],[[-1971,7872,-5595]],[[7873,-1969]],[[7874,7875,-1950,-5601,-1982]],[[7876,-1980]],[[-1977,-1976,-5606,7877,-1978]],[[7878,7879,7880,-1987,-5608]],[[7881,7882,7883,7884]],[[-1996,-5614,7885,-1993,-5611,7886,7887,7888,7889,-1998,-5616]],[[7890,-5612,-1991,7891]],[[7892,-5617,7893]],[[2003,-2004,7894]],[[7895,7896,7897,7898,-2007,-5622,7899]],[[-5631,-2010,7900,-5623,7901]],[[7902,-5629]],[[7903,7904,-5626]],[[7905,-2023,-5632,7906,7907]],[[-2025,7908,-5633,-2021,-5641]],[[-5642]],[[7909,7910,7911,-5636]],[[-5639,-2028]],[[7912,-5645]],[[-5648]],[[-2037,-5647,-2042,7913]],[[7914,7915,7916]],[[-5650,7917,7918,-2050,7919]],[[7920,-5653]],[[-5657,7921,7922]],[[-5659,7923,7924]],[[-5672,7925]],[[-5670,7926]],[[-5683,7927,-5686,-2085,-5689,-2083,7928,7929,-2068,-5678,-2066,7930,7931,7932],[-5688]],[[-5685,7933]],[[2073,-2074,7934]],[[7935,-2079,-5691,-2089,7936,7937,-5692]],[[7938,7939]],[[7940,-5655]],[[7941,7942]],[[-5709,7943,7944,7945,-5705,-2101]],[[-2109,-5702]],[[7946,-5699,-2113,7947]],[[7948,-2111,-5701,7949]],[[7950,-5710,7951]],[[5714,7952,7953,7954,7955]],[[7956,7957,-2118,7958]],[[-2125,7959,-2126,7960]],[[7961,7962]],[[-2132,-2137,7963]],[[7964,-2141,-5717,-2139,7965,-5719]],[[-5721,7966]],[[7967,7968,521,-2151]],[[-5199]],[[-5011,-2165,-5010,-369,-5009,-2153,-5008,-2158,-5723]],[[-2174,-5014,-5727]],[[-364,7969,-5724,-2156]],[[-5722,-2163,-5012]],[[-5232]],[[-5013,-2161]],[[-2172,-5726,7970,7971,7972,-5016,-2169,-5015]],[[7973,-5018]],[[7974,-5734,-2181,-5020,7975,7976,-5729,-2176,547,548,7977]],[[7978,-2179,-5733,-5024]],[[-5732,7979,-2184,-5025,-2341]],[[-2189,-5839,7980,-5028,-5836,-2338,-5837,-5027]],[[7981,-2191,-5026,-2186]],[[-2183,-5737,-2196,-5730]],[[-2194,-5736,-2197,-5731]],[[-5761,-2260,-5742,-2262]],[[-5762,-2247,-5744,-2264,-5741,7982,7983,-2230]],[[-5779,7984,-2239,7985,-5781,7986,-5786,7987,-5789,7988,7989,561,7990]],[[-5760]],[[-2203,-5758]],[[-5759]],[[7991,-2209,-5766,7992]],[[7993,-2215,7994,-2217,-5771]],[[7995,-5772,-2220,7996,7997]],[[-5813,7998,7999,-5756,8000]],[[-5738,-2208,8001,8002]],[[-5768,-2212,8003]],[[565,8004,-5775]],[[-5778,-2236]],[[-5784,8005,8006,-2224]],[[-2234,-2235]],[[-5800,-2254,-5746,-2271,8007,-2270,-5796,-2226,8008,5790,8009,-5793,8010]],[[-2268,-5803,-2246,-5797]],[[-2249,-5763,-5798,-2243,-5802,-2267,-5745]],[[-5747,-2252]],[[-5743,-2258]],[[8011,8012,-2286,-5031]],[[8013,-5809,-2283,8014,-5755]],[[8015,-5753,-2274,-5806]],[[-2335,-5036]],[[2292,-2293,8016]],[[-2296,-5034,-5827]],[[8017,8018,-5830,8019,-5816]],[[-2303,-5751]],[[-5033,8020,-5833,-5828]],[[-5832,-2307,-5821]],[[-2310,-5834,-2316,8021,-5043,8022,-5824]],[[8023,8024,-5045]],[[-2314,8025]],[[-5749,-2317,8026]],[[-2322,-5825,8027,-5835]],[[-2298,-5826,-2326,-5041]],[[-5047]],[[-5250]],[[-5040]],[[-5247,-5245,-5249]],[[-2331,8028,-5038]],[[-5246]],[[-2333,-5037]],[[-5244]],[[-5243,8029]],[[8030,-5235]],[[8031,-5237,8032,-5241]],[[-5233]],[[8033,-5239]],[[-5048,-2330,8034]],[[8035,-5050,8036]],[[-5252]],[[-2347,-5052,8037,-5053]],[[-5055,8038,8039,8040]],[[-5057,8041]],[[-5253]],[[-5251]],[[-2344,-5062]],[[-5845,8042,-5848,8043,-5059,8044,-5841,-382,-381]],[[-2351,-5061,8045,-5843]],[[-379,-378,-5063,-2353,-5846]],[[-376,8046,-5254]],[[-371,-5231,-2166,-5230]],[[-2396,8047,8048,8049,-2354,8050]],[[-2356,8051,8052,8053]],[[-5852,-1156,571,-2359]],[[8054,-5939]],[[-5961]],[[-5956,575,-5957]],[[-5970,8055,8056,8057,-1159,-5854,8058,8059,-5934,-2384,-5973,-2371,8060,-5968,-2375],[5966]],[[-2366,8061,-5937]],[[-582,-581,8062,-5926,578,-5925]],[[-5936,8063,-2363]],[[-2386,-5933,8064]],[[-2368,8065,-5965,-5930,8066]],[[8067,-5931,-5964]],[[8068,-2373,-5972]],[[-2382,8069,-5974]],[[-5975,-2391,8070,-2379]],[[8071,-2395,8072,8073],[5976]],[[8074,-2387,8075,-5962]],[[-2389]],[[8076,-2393,-5976,-2378,8077]],[[-6001,-2425,8078,-5999,8079,-2419]],[[-2421,8080,-5997]],[[8081,-6051,-2496,-5980,-2490,-6037]],[[-2417,-5982,8082,-6032,-2415,8083,8084,-5983]],[[8085,-5985]],[[-6000]],[[8086,-5988]],[[8087,-2427,-6005]],[[-6012,-2442,8088,-6003,-2429,-6007,-2439,-6009,-2444]],[[-6010,-2440,-6006,-2431,-6002,-2424,8089,-2434]],[[-6016,-2436,8090,-2465,8091,-6019,8092]],[[8093,-6011,-2438,-6015]],[[614,-6017,8094,613]],[[-6195,-2461]],[[8095,8096,-2463,-6196,-2459,-6024]],[[8097,-6023]],[[-2457,-5993,-6020]],[[8098,-5994,-2467]],[[-2470,8099,8100,-2473,-5990]],[[-6021,-5992,8101,-2478,8102,-551,8103,-6029,8104,-6026,8105],[-6031]],[[-6027]],[[8106,-2479,8107,-2482,8108,-2477]],[[8109,-2403]],[[8110,-6035,-2407]],[[-2412,8111]],[[-6039,8112]],[[632,633,8113,8114,-2487,-6055,-631,-2882,-6317,-6313,-2876,-6308]],[[627,-6056,-2485,-5979]],[[8115,8116,-6043,8117]],[[8118,8119,-6041]],[[-6048,-2669,8120]],[[-6053]],[[-6054]],[[8121,8122,-6044]],[[8123,8124,-6072,8125,-2530,-6070,-2532,-6074,-6062,-2505,8126,-6077]],[[8127,-6067,8128,6063,8129,-2520]],[[-2510,-6068,8130]],[[8131,-2526]],[[-6063,-6073,8132,8133]],[[8134,8135,-6058,8136,-6080,8137,-2537]],[[8138,8139,8140]],[[8141,8142,8143,-6082]],[[-2549,-6088,8144,-6200,-2539,-6096,-2543,8145,-6104,8146,-6103,8147,8148,8149,8150,8151,8152,8153,-6192,8154,8155,-2525,-6110,-2678,-6202,-2676,-6091],[-6089]],[[8156,-6093,8157]],[[-6095,8158,8159,8160,8161,-2541,8162]],[[8163,8164,-6106]],[[8165,-6098]],[[-6108,8166,8167,8168,8169,-6102]],[[8170,8171,8172,-6087,8173,8174]],[[8175,8176]],[[8177,-2556,-6124]],[[-2563,-6114]],[[8178,-2552,-6122]],[[-2565,-6113]],[[-6127,8179]],[[8180,-6115,-2561,-6112,8181,8182]],[[-2567,8183]],[[-2569,8184,-6117]],[[8185,-6119]],[[-2582,8186,8187,8188,-6135,8189]],[[8190,-6132,-2579,8191,8192]],[[-2586,-6140,-2575,-6131]],[[8193,-6137,8194,8195]],[[-6139,-2592,8196,-2576]],[[-6142,8197,-2611,8198,-2606]],[[8199,-6144,8200]],[[-6149,8201,-2613,-6145,8202,8203]],[[8204,-2679,8205,8206,-6150,-2615,8207,8208]],[[8209,-2640,-6158,8210,8211]],[[-2596,-6183,-2619,8212,-2618,8213,-2648,8214,-2635,8215,-2647,8216]],[[-6160,8217,-2633]],[[-2600,8218,-6162,8219]],[[8220,8221,-2645]],[[8222,-2627,-6165,8223,8224]],[[8225,-2624]],[[-2637,8226]],[[8227,-2651,8228,-6167,8229]],[[8230,-2666,-6169,-2660,-6178,-2620,-6182]],[[-6179,-2662,-6177,-2654,-2622]],[[-2664,8231,-6186,8232,8233,8234,-6170]],[[8235,-6172,8236]],[[8237,8238,-6188,8239]],[[-2512,8240]],[[8241,-2522]],[[-6050,8242,-2498]],[[8243,8244]],[[8245,8246,-6199,8247,8248,8249,-6046]],[[-6176,-2673,-6175,8250,-2656]],[[8251,-2593,8252]],[[-2629,8253]],[[-6156,-6161,-2632]],[[8254]],[[8255,-5906]],[[-4259,8256,-5898,-5897,-675,-674,-673,-5896,669,670]],[[-5903]],[[-5950]],[[8257,-5877]],[[-5949]],[[-5948]],[[-5947]],[[-2683,-5946]],[[-5940]],[[-2685,-5945]],[[-5959]],[[-5943]],[[-5960]],[[-5944]],[[-2687,-5942]],[[-5881,-2776,-5882,-2784]],[[8258,8259,8260,-5909]],[[-2699,-5864,8261,-2758,-6225,-2756,-5869,-2695,-5868],[-2701]],[[-5866]],[[-2697,-5867,-5865]],[[-5951]],[[-2733,-5920]],[[-2722,8262,-2730,-5919]],[[8263,-2724,-5918]],[[-5911,-6205,8264,-2706]],[[8265,-5916]],[[-2704,-5912]],[[8266,-5914,-2716,-6206,-2714,8267,8268,-6208]],[[-2712,8269]],[[8270,-2719,8271,-6212]],[[-6214,8272]],[[-5922,8273,8274]],[[-585,-5924,8275]],[[-5952]],[[-2748,-2746,-2737,8276,8277,-5871,-2760,8278,-5862]],[[-5954]],[[-2734,-5857]],[[-5858,-2738,-2745]],[[-2741,-5859,-2743,-2747,-5861]],[[-575,-5958]],[[-5955]],[[-5953]],[[-2739,-5860]],[[-569,-1153,-6215,-1151,-6217,-1147,-141,8279,-6221,8280,-2750,-5855,-2361,8281,-1154],[-2753]],[[-5856,-2752,8282,-2735]],[[-1149,-6216]],[[-6219,8283,8284,8285]],[[8286,8287]],[[-6222,8288,8289,8290]],[[-2767]],[[8291,-5874]],[[-5885,-2781,8292]],[[8293,-2773,-5880]],[[8294,-2772]],[[8295,8296,-6228]],[[-6235,8297,8298]],[[8299,689,8300,-6233]],[[-5941]],[[8301,-5890]],[[8302,-6248]],[[-6240]],[[8303,8304,-6241,-6239]],[[8305,8306,8307,-6243]],[[-6245,8308]],[[8309,8310]],[[-6255,-6263,-2790]],[[-5389,8311,-2801,8312,-6257,8313,-6251,-2809,8314],[6255]],[[-2799,-6260,8315]],[[-2792,-6264,-6254,-2794,8316]],[[-5408,-2824,-5409,-351]],[[-2804,-2811,-2788,-6250]],[[-353,-5413,-5411]],[[-2822,-345,-6265,-343,8317,-2815,-5354]],[[-5379,-2818]],[[-2816,-5380]],[[-5406]],[[-5382,-2852,-2851,-2850,8318]],[[8319,-5384]],[[-5412]],[[-5386,8320,-6268,8321]],[[-2847,8322,-5355,-2813,8323]],[[8324,-5356]],[[8325,-6271,-2836,-5358,8326]],[[-2854,-5381,-2820,-5378]],[[8327,8328]],[[-2844,8329,-5360,8330]],[[-5375,8331]],[[8332,-6276,-2448,-623,-6273]],[[8333,-5363,-2840,-6279]],[[-5362,-2841]],[[8334,8335,-2455,-5372]],[[8336,8337,-5370]],[[-5373,-2454,-6280,-2452]],[[8338,-6282,8339,-6286,8340,-6303]],[[-2870,8341,-5365,-2863,-6302],[-6307]],[[8342,-6284]],[[8343,-6291]],[[-6304]],[[-6306]],[[8344,8345,-6300]],[[-5367,8346,-6309,-6316,-3065]],[[8347,8348,-6324,8349]],[[8350,-2885,-6321]],[[-6311,8351,-6322,-2883,8352]],[[8353,-2896,8354,-6319]],[[-2872,8355,-6293]],[[8356,-2891,-6295]],[[-6296,-2889,8357,-2900,-6335,8358]],[[-6305]],[[8359,-6298]],[[8360,8361,-2906,-6334]],[[-6325]],[[-2894,-6332,8362,8363]],[[-6331,-2911,-6337,8364]],[[-2903,-6326]],[[-2918,-2908,-6329]],[[-6330,-2910,8365,8366,-2913]],[[-2929,8367,8368,-6341,8369,-6343,8370,-2923,-6129,-644,-643,8371,-2925,-6339,-2927,8372]],[[-6360,-2982,-6361,-2980,-6365,-2978,-6366,-2976,8373,-2990,-6375,-2988,8374,-6362,-6349,8375,-6344,-2933,8376]],[[8377,8378,8379]],[[-2941,-6353]],[[8380,-3004,8381,-2974]],[[-6357,-2960,8382,8383,-2952,8384]],[[-2954,8385,8386]],[[8387,-6355,-2971]],[[8388,-2956,-2969]],[[8389,-2963,-2986]],[[8390,-2966]],[[-2987]],[[8391,8392,-2984,-6359]],[[-6350,-6364,8393]],[[8394,-6374,8395,-2994,-6371,8396,-3006,8397,-3010,8398,-6372]],[[-2999,-6368]],[[8399,-3001,-6369,-2998]],[[8400,8401,-2996]],[[-3028,8402]],[[8403,-3040,8404,-3035,-6378,8405]],[[8406,8407,8408]],[[8409,-3049]],[[8410,8411,8412]],[[8413,8414]],[[-2946,8415,8416]],[[-5368,-3067,-6315,8417]],[[-6381,-3084]],[[-3125,-6383,-3068,-6382,-3082,-6424,8418,-6423,-3123,8419,-3120,-6384],[6460]],[[-6410]],[[-6488,-3136,8420,-6480,-6478,-3139,-6487,-3130,-6486,-6473,8421,-6393,-3337,-6392,8422,-3138]],[[-6406]],[[-6409]],[[-6404,8423,-6402,-3073]],[[-6408]],[[-3088,-6401,8424]],[[-3095,-6430,-3093,-6415,-3099,-6432,8425,8426,-6418,-6416]],[[-6412,8427]],[[8428,-6433,-3097]],[[-6533,8429,-6436,-3105,-6440,8430,8431]],[[-6438,-3114,-6454,8432,8433]],[[8434,-6435]],[[-6451,8435]],[[-6444,-6455,-3110]],[[-6417]],[[-6427,-3076,8436]],[[-3079,-6425,-3081,-3080]],[[-6426,-3078]],[[8437,8438,-6459,8439,-6420]],[[-6474,-6485]],[[8440,8441,-6464]],[[8442,-6468]],[[-6616,8443,-6395,8444,-6476,8445,8446]],[[-6484,8447,8448,-3131]],[[-6479]],[[-3141,-6477]],[[-6492,-3148,-6390]],[[-6500,-3163,-6489,-3161,8449,8450,-6491,-3143,-6493,-6389,-3152]],[[-6407]],[[-6405]],[[8451,-6494,-6388]],[[-3167,-6386]],[[-3153,-6499]],[[-3172,8452,-3185,-6496,8453,-3177,-6506,-3175,-6502]],[[-6505,8454]],[[8455]],[[-3183,8456,-6497]],[[-3155,-6498]],[[8457,-3192,-6510,-6521,-6442,-3223,-6520,-3221,8458,-3212,-6514,-3199,8459,-6516]],[[-3188,8460,8461,-6507,8462,-6523]],[[-6526,8463,8464,-6446,-3112,-6456,-6443,-6522,-6511,-3190,-6527,-3227]],[[-3194,8465]],[[-3117,8466,-6517,-3201,-6448]],[[-3203,-6519,8467,-6449]],[[-3210,-6512]],[[-6528]],[[-3231,8468,-3243,-6531]],[[-6542,-3253,-6532,-3241,-6539],[-6544]],[[8469,-3312,-6581,-3300,-6594,-3298,-6586,8470,-6529,-3251,-6585,-3249,-6556,-3247,-6555],[6594]],[[-6535,-3233,-6540,-3245,8471,8472,-3237]],[[-3232,8473,-6541]],[[-6538,-3263,-6557,-3255,-6543]],[[-3266,-6553,-6579,-3315,8474,-6551]],[[-6546,-3258,8475]],[[-6548,8476,8477,-3277,-6569,-3270]],[[-3279,-6560,8478,-6549,-3272,-6568,8479,-6567]],[[-3309,-6580,-6552,-3268,8480,-3303,-6566]],[[8481,-6573,8482]],[[8483,-6576]],[[8484,-6578]],[[-6558,-3286,8485,-3292,-6562]],[[8486,-3284]],[[-3290,-6563]],[[-3319,-6565,-3304,-6564,-3288,-6583]],[[8487,-6587,-3296,8488,-6592],[-6588]],[[-3326,8489,-6607,-6589]],[[8490,-6609]],[[-6606,8491,-6590]],[[-3218,-6601]],[[8492,-6604]],[[-3220,-6600]],[[-3206,-6599,8493,8494]],[[8495,-6612,8496,8497]],[[-3329,8498,8499,-6611]],[[8500,8501]],[[-1,0,8502]],[[3345,-3346,8503]],[[6620,-6621,8504]],[[8505,-6619,-3348]],[[8506]],[[437,-438,8507]],[[-6645]],[[-6644,-3339]],[[8508,8509,701,-6624]],[[8510,-6657]],[[-6669]],[[-3361,-6676,-3359,8511,8512,-6655]],[[-6659,8513,8514,-3357]],[[-3355,8515,-6660]],[[-6674]],[[-6675]],[[-3368,-6646]],[[-6650,8516,8517]],[[8518,-6652]],[[-6654,8519,-6679,-3363]],[[8520,8521,-6648]],[[-6673]],[[-6672]],[[8522,-6666]],[[8523,-3371,8524]],[[8525,-3373,8526,8527,-6670,-6668]],[[8528,-6663,8529,8530,8531]],[[8532,8533,8534,-6684]],[[8535,8536,-6681]],[[-3377,8537]],[[8538,8539,724,8540,-6687]],[[-6689,-3383,8541,-3388]],[[-3392,8542,8543,-3380,-6695]],[[-6690,-3386,8544]],[[8545,-6693]],[[-6696]],[[8546,-6708,8547,-6701]],[[-6705]],[[8548,8549,-6709,-3402,8550]],[[-3406,8551,8552]],[[8553,8554,-6711]],[[-3404,-6714,8555]],[[8556,8557,8558]],[[8559,-6716,-3418,8560]],[[8561,8562,8563,8564]],[[8565,-6720,8566,-6726,8567],[-6727]],[[-3430,8568,8569]],[[8570,-6735,8571,8572,-3432,8573,8574,8575,-3442,8576]],[[8577,-6730,8578,-3436]],[[-6736,-3462,8579,-3455]],[[8580,8581,-3460,8582,8583]],[[-705,-6626,8584,-6627]],[[-708,-6636,8585],[6741]],[[-6743,8586]],[[-3470,-4409,8587,-6630]],[[-4449]],[[8588,8589,-4411]],[[-3479,8590,-4407]],[[-4406,-3481]],[[8591,-3484,-4413]],[[-3475,-4405,8592],[-6745,6744,8593]],[[-4447]],[[8594,8595,-6749,8596,-3494,-4416]],[[-4403,-3488]],[[-4402,-3490]],[[-3496,8597,-4417]],[[-3508,8598,-4397,-3498,-4400]],[[-3514,741,-4420]],[[-4396,-3500]],[[8599,8600,8601,-6754,8602]],[[-6751,8603,8604]],[[-3506,-4399,8605]],[[8606,-3528,-6771]],[[8607,-6780,8608,-6764,-3544]],[[8609,-6775,-3534,8610,-6759]],[[8611,-6778,8612,-6758]],[[8613,8614,-3536,-6774,8615]],[[-6777]],[[8616,-6761]],[[-3542,-6763,8617,8618]],[[-3540]],[[-3539,8619,8620,8621]],[[8622,8623,6786,-6784]],[[-6786,8624,8625,8626]],[[8627,8628]],[[8629,-3564,8630,-6790,-3568,-6796]],[[-6802]],[[-6801]],[[-3580,-6800,8631]],[[8632,8633,8634]],[[8635,-6798,8636]],[[-6797,-3571,8637,8638]],[[8639,-3572,-6794]],[[-6803]],[[-3602,-6808]],[[-3604,-6807]],[[8640,-3588,-6809,-3600,8641]],[[-6810,8642,8643,-6813,8644]],[[8645,-6769,-6818]],[[-6768,8646,-6819]],[[-3595,-6826]],[[8647,8648,-6765]],[[8649,-4434,8650,-6832,8651,8652,8653,-4438]],[[-4432]],[[-4436,8654]],[[-4451]],[[-4457]],[[-3607,-4468]],[[-4465]],[[-3610,-4466,-4464]],[[-4467]],[[-4453]],[[8655,8656,-4369]],[[-4371,-6835,-3612]],[[8657,-4463]],[[-4452]],[[8658,-4366]],[[8659,-6839,-6841,8660]],[[-4460]],[[-4459]],[[8661,-4383,8662,8663]],[[8664,-3629,-4385]],[[-3636,-4386,-3633,-6845,8665,8666,8667]],[[-6843,-3631,8668]],[[-4455]],[[8669,-4387,-3634]],[[-4458]],[[-4427,8670,-4428,-3639]],[[8671,-3644,-4425]],[[8672,-4422]],[[-4450]],[[-4391,8673,-3647]],[[8674,-4389]],[[-4448]],[[8675,-4393]],[[-4381,-3653]],[[8676,-4377]],[[-4456]],[[-4454]],[[-3658,-4461]],[[8677,-4374]],[[-3667,-6848,8678]],[[-3679,-6853,8679,8680]],[[8681,-3682,-6851]],[[8682,-6856]],[[8683,-6858,-3724,-6881]],[[-6869,8684,-3688]],[[8685,-6863]],[[8686,-6860]],[[8687,-6874]],[[8688,-3701,8689,8690,-3695,8691]],[[-3720,8692,-3711,8693,-3705,8694]],[[8695]],[[-3714,8696,8697,-6865]],[[3725]],[[-6883]],[[-3735,8698,-6879]],[[-6876,-3730]],[[8699,-3746,8700,8701,8702,-3740,-6884,-3737,-6878,-3733,8703]],[[8704,8705,-3774,8706,8707,8708,-3758,-3766,-6888,-3764]],[[-3755,-6890,-3777,8709,8710,-6895,8711,8712,-3769,-6891]],[[-3771]],[[-3767,-3757,-6892]],[[8713,8714]],[[-3779,-6897,8715]],[[-3783,-6902,8716,8717,-6898]],[[8718,8719]],[[-4626]],[[-504,-503,8720,-4627,-4625,-3802,-5712]],[[8721,-6912,8722,-6914,8723,-6909,-3806,-4629,-3813]],[[-3809,-4630]],[[8724,-4633]],[[-509,-5713,-3799,8725]],[[-3816,-6929,8726,8727]],[[8728,-6915,-3819]],[[-6926]],[[-6930]],[[-6927,-6925]],[[-6922,8729,8730,8731]],[[-6917,8732,8733,-6919,8734]],[[-6933,8735]],[[-3828,8736,-6939]],[[8737,-6946,8738,-6948,-6937]],[[8739,8740,-6944,-3831]],[[-3833,-6943,8741,8742]],[[8743,8744,-6950,8745,8746]],[[-6952,-3838]],[[-6956,8747,8748,-6960,8749]],[[8750,8751,8752,8753,-6962]],[[-6965,8754]],[[8755,-3857,-6979,-3853]],[[-6980]],[[-6977,-3860,8756]],[[8757,-6971]],[[-6974,8758]],[[8759,-3862,-6976,-3866]],[[-3892,8760,-3875,-6987]],[[-6981,-3873,8761]],[[-6983,-6988,-3882]],[[8762,-3898,8763,-3886,-6984,-3880]],[[8764,-3889,-6986]],[[-3894,-6999]],[[8765,-6997]],[[8766,8767,8768,-6995]],[[8769,8770]],[[-7010]],[[-3918,8771,-3907,-7009]],[[-3905,-6989]],[[7011,-7012,8772]],[[-3911]],[[8773,8774,-3916,-7014]],[[-7008,8775,-3920]],[[-7005,8776]],[[-7002,8777,8778]],[[-7015,-3930]],[[7021,8779,-7018]],[[-3912,-3910,-7020]],[[8780,-3933,-7024,-3939,-7025,-3937]],[[8781,-7030,8782]],[[-7035,8783,8784]],[[-7033,-3943,8785,8786]],[[-715,-7039,8787,8788,-7040]],[[-7042,-3954]],[[8789,-3950,8790,-7059]],[[8791,-7055,-3963]],[[8792,-3961,-7057]],[[-7051,-7047,-3972,-7072,8793,8794,8795,-3967,-7053]],[[-7049]],[[-7052]],[[-3984,-7044]],[[-7060]],[[-7046,8796,-3974]],[[-7048,-7050]],[[-7070,8797]],[[-3970,-7073]],[[-7068,-3986,-7067,-7075,8798,8799]],[[-3978,-7063]],[[8800,8801,8802,-7078,-3990,-7066]],[[-3976,8803,8804,8805,8806,-7064]],[[-7080,8807,8808,8809]],[[8810,-4002,-7087]],[[8811,-463,-4007,8812]],[[8813,8814,-4011]],[[-4013,8815,-7096,-7089]],[[-4020,-7090,-7098,-4015,-7095]],[[-7092,8816]],[[8817,801,-4022,-7105]],[[8818,-7100,-4026,-7107]],[[-4033,-7103,8819]],[[8820,8821,8822,8823,8824,-4037,8825,-4040,-7111]],[[8826,8827,-4048]],[[-4052,-7115,8828]],[[8829,8830]],[[8831,-7118,8832,8833,-7121]],[[-4057,8834,-7116]],[[8835,8836,-4060]],[[8837,-4064,8838]],[[-7133,-4083,8839,8840]],[[-4080,-7132,-4078,-7150]],[[8841,-7128,8842,8843,-7135,-4088,-7141]],[[8844,-4087,-7136,8845,8846]],[[-7139,8847]],[[-4076,-7151]],[[-7143,8848,-7145]],[[-7144]],[[-7147,8849,8850]],[[8851,-4081,-7149]],[[-7164,8852]],[[8853,-7156]],[[8854,-7152]],[[-7154]],[[-7168,8855,-4101]],[[8856,-7169,-4099]],[[8857,8858,-7167]],[[-7160,8859]],[[8860,8861]],[[8862,-4117,-7178]],[[-7175,8863,8864]],[[-4115,-7179]],[[8865,-7180,-4118,-7172]],[[8866,7182,8867,8868,8869,-7173,-4120,-7182]],[[-292,8870]],[[8871,-7185,-4126,8872]],[[8873,-4134,8874,-4139,8875]],[[8876,8877,8878]],[[8879,-7192,8880]],[[8881,8882,-7194,8883]],[[8884,-4152,-7199,-4148,8885,-4157,8886,8887,8888]],[[-4178,8889,-7203,-4164,-7202,-4162,8890,8891,-7231]],[[-7215,8892]],[[8893,8894,-7212]],[[8895,-7210,-4167]],[[8896,-4169,-7209,-4174,-7217]],[[8897,-7205]],[[-7230,8898]],[[8899,-7228,-7235]],[[-4182,8900,-7224]],[[-7239,8901,8902]],[[8903,-7237]],[[-7244,-4194,8904,-4202,-7243,-7252,-7249,8905]],[[-4208,8906,-392,-5464]],[[8907,-7241,-4200]],[[-4205,-7250,-7251,8908,8909,8910,-4217,-7260]],[[-4230,-7264,8911]],[[-4228,-7265]],[[-7262,-7254]],[[-4235,8912,-7258]],[[-395,-1806,-7267,-4222,-5472,-396]],[[-7278,-4239,-7275,8913,8914,-4218]],[[-7256,-4226]],[[-7280,8915,8916,-4242]],[[8917,-7281,-4254,8918,8919,-4249]],[[-7269,8920]],[[-7284,8921,8922,-7271]],[[-7286,8923]],[[-4184,8924,-7220]],[[-7287,8925,8926,8927,-7289,8928]],[[8929,-7291]],[[-7298,-788,8930]],[[8931,-7302,8932]],[[8933,-7295]],[[8934,-7300]],[[8935,-7312]],[[8936,-7309]],[[8937,-7307]],[[-4264,8938]],[[8939,-785,-4265]],[[8940,8941]],[[8942,-7319,-4275,-7315]],[[8943,-7317,8944]],[[8945,8946,-4269],[-7321,7320,8947]],[[-4278,8948,-7325,8949,7327,8950,-7327]]]},{"type":"MultiPolygon","id":"2","properties":{"density":2},"arcs":[[[-7340,-7330,-4312,-7331,-4310,8951,8952,8953]],[[-833,-7337,-4283]],[[8954,8955,-887,-7373,-4471,8956,-892,8957,8958,31,32,8959,8960,8961,8962,8963]],[[8964,61,8965,8966,58,59,8967]],[[8968,-50,-49,8969,8970,8971,99,8972,8973,8974,8975,8976,102,8977,-4142,8978,8979,8980,8981,8982,8983,-445,8984,441,-471,8985,8986,8987,-469,-4017,-7097,-8816,-4012,-8815,8988,8989,-8809,8990,-794,8991,8992,8993,8994,-3981,8995,8996,-7037,-713,8997,-3946,-7036,-8785,8998,-8786,-3942,8999,9000,105,9001,9002,9003,53,9004,9005,9006,-52],[7186],[9007]],[[-4044,9008,-83,9009,9010,9011,9012,-78,9013,9014,-1292,-7533,9015,9016,9017,9018,-1290,9019,-226,9020,9021,9022,-8827,-4047,-4046,-4051,9023,80,9024],[4775]],[[-945,9025,9026,9027,9028,9029,-4514,-950,9030,-964,-7400,9031,9032,9033,9034,9035,9036,9037,9038,9039,-88,9040,538,539,9041,9042,9043,9044,9045,-537,9046,-535,-591,9047,-8946,-4268,9048,89,90,91,9049,9050,9051,9052,9053,9054,9055]],[[9056,9057,9058,-7386,-4512,9059,-7384,-918,-7381,-4506,9060,9061,83,84,9062,9063]],[[9064,9065,9066,9067,9068,-4023,805,806,-588,-587,-686,-685,795,9069,66,-798,9070,-7305,9071,-7313,-8936,-7311,9072,9073,68,9074,-7410,4529,-7409,9075,-4535,-7413,-4529,-967,-4528,-7412,-4533,9076,-65,96,9077,9078,-4524,-7408,9079,94,9080,9081,9082,9083],[-4526],[9084]],[[74,9085]],[[-1095,-7458,-7460,-1106,9086,9087,9088,9089,-984,-4548,-7421,9090,130,-25,-24,-23,-7438,-1088,-7441,9091,9092,9093,9094,9095]],[[9096,9097,9098,9099,9100]],[[9101,9102,134,9103]],[[9104,9105,9106,9107,9108,-1145,9109,9110,-46]],[[9111,-1162,142,143,144,9112,9113]],[[9114,9115,9116]],[[9117,9118,-1890,-7841,9119,9120,9121,-175,-174,-173,-172,-171,-170,-169,-168,-167,9122,9123,-1222,9124,9125,-210,9126,9127,-4922,9128,-212,9129,-1280,9130,9131,164,9132],[-4766,9133]],[[9134,9135,9136,-7126,9137,9138,9139,-8836,-4059,9140,9141,-4054,9142,-194,-193,9143,9144,9145,9146,9147,9148,9149,9150,9151,190]],[[9152,-182,9153,9154,9155,9156,9157,9158,9159,9160,9161,179,9162,9163,9164,9165,9166,9167,-426,-425,9168,9169,9170,427,9171,9172,9173,9174,9175,9176]],[[9177,9178,9179]],[[297,9180,9181,-8839,-4066,9182,9183,-7162,-4104,9184,9185,-301,-300,9186,9187,-1466,9188,9189,9190,-1460,-7642,-1464,9191,9192,-7646,-4933,-7645,-4931,-7644,9193,-208,-207,9194,9195,-7520,295,9196,-8831,9197]],[[213,214,215,216,9198,-7524,9199,-1278,-1273,9200,9201],[9202,9203]],[[9204,-465,9205,9206,160,-1282,-4771,-7532,-4772,-1285,-4775,9207,9208,9209,9210,157,158,9211,-7915,9212,-156,9213,-2039,9214,9215,9216,460,461,462,-8812,9217],[-7913,-5644]],[[9218,9219,235,9220,9221,9222,-7559,9223,9224,9225,-7556,9226,9227,-1316,-7540,-1314,9228],[-1336,-4793]],[[9229]],[[9230,9231,9232,9233],[-4795,-7561],[-7562]],[[9234,-7568,9235,9236,9237,9238]],[[9239,-7573,9240,-1350,9241,9242]],[[9243]],[[9244,9245,9246]],[[9247,9248]],[[9249,-7614,9250,9251,-7617,-4888,9252,9253,9254,9255,-7589,-7587,-4829,-7581,-4818,-7580,-4821,-1365,-7579,-1363,-7585,9256,9257,9258,9259,9260,9261,9262,9263,9264,-7633,-4914,-7634,9265,280,9266,-7608,-4875,-1408,-7610,-4871,9267],[9268],[9269],[9270]],[[9271,9272,9273]],[[9274]],[[-254,9275]],[[272,273,9276,9277,-271,-270,9278,9279,-5477,-7811,-5487,9280]],[[9281,-1423,9282,9283]],[[9284]],[[9285,264,9286,9287,9288]],[[9289,9290,9291,9292,-318,9293,9294,-7654,-1474,9295,9296,9297,-7659,9298,9299,306,307,9300,-1485,9301,9302,9303,9304,-310,9305,9306,9307,9308,-5703,-2107,9309,-7953,-5715,-7956,9310,9311,-7950,-5700,-7947,9312,-2116,9313,9314,510,-782,9315,-437,9316,-6972,-8758,-6970,-3858,-3855,-8756,-3852,9317,9318,9319,9320,-8753,9321,512,513,514,9322,9323,9324,9325,-3848,9326,516,9327,-6992,9328,9329,-3935,9330,9331,9332,9333,-453,9334,-7031,-8782,9335,9336,9337,312,9338,314,315,9339,9340,9341],[-2122,9342],[-7960,-2124,-7961,-2127],[9343,9344,-2120,9345,9346,9347,9348]],[[9349,9350,9351,9352,-72,9353,9354,9355,-7657]],[[9356,-7668,9357,9358,325,9359]],[[9360,9361,-4956,9362,9363,-7664,-4949,9364,9365]],[[9366,322,323,9367]],[[9368]],[[-1657,-4981,-7742,-4979,-1686,-4978]],[[9369,-7701,-1743,-5441,9370,-5333,-7706]],[[-4196,-7246,9371,-4213,9372,-7247,-4210,-389,9373,9374,9375,9376,9377,9378,-387,9379,9380,9381]],[[9382,9383,9384,9385,9386,9387,-1819,-7807]],[[9388,-1851,9389,-1839,9390,9391,9392]],[[9393,416,9394,9395,9396,9397,-7834,-1880,9398,9399,-415,9400],[9401]],[[9402,9403,-1499,-7676]],[[-7718,-5100,-7717,9404,-5095,-1756,-5076,-7785,9405,9406,9407]],[[9408,-1549,9409,-1587,-7710,-1592,-7711,-5342,-1596,9410,9411]],[[9412,-1487,-7669,-1493,9413]],[[9414,9415,9416,-1933,-5582,-7865,9417,-1935,-7870,9418,-7875,-1981,-7877,-1979,-7878,-5605,9419,9420,9421]],[[9422,9423,9424,-1928,9425,9426,9427]],[[9428,9429,433,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443]],[[9444,9445]],[[9446,9447,9448,9449,-1988,-7881,9450,9451,9452,9453,-7885,9454,9455,9456,9457,9458,9459]],[[9460,9461,9462]],[[9463,9464,9465,9466]],[[-7900,-5621,9467,9468,9469,9470]],[[9471,-2027,-5640,-2030,9472,9473,-421,-420,9474]],[[9475,-440,9476,9477,9478,9479],[-5643]],[[9480,-2051,-7919,9481,9482,-185,-432]],[[-2055,9483,9484,-485,9485,9486,9487,9488,9489,9490,9491,486,487,9492,9493,9494,-2070,9495,9496,-2064,9497,9498,9499,9500,9501,9502,9503,-2091,9504,9505,-7924,-5658,-7923,9506,-5663],[-5667],[9507],[-5666,9508]],[[9509,489,9510,9511,-5676,9512],[-5673,-7926,-5671,-7927]],[[-5706,-7946,9513,9514,500,501,502,-5711,-7951,9515,9516]],[[9517,9518,9519,525,526,9520,9521,9522]],[[-608,9523,9524,9525,560,-7990,9526,-2232,9527,9528,9529,-2210,-7992,9530,9531,-5811,9532,-2281,9533,9534,552,553,554,555,556,557,9535,9536,-6193,-8154,9537]],[[-8032,-5240,-8034,-5238]],[[9538,9539]],[[-520,-519,9540,9541,9542]],[[9543,9544,9545,9546,9547,9548]],[[9549,9550,9551]],[[9552,9553,9554,9555]],[[595,9556]],[[-329,-328,9557,9558,9559,9560,9561]],[[-2507,-8134,9562]],[[603,9563,-8169,9564,9565,-8161,9566,9567,9568,9569,9570,9571,602]],[[-2577,-8197,-2591,9572,9573,9574,9575,9576]],[[639,640,-2574,-2584,9577]],[[9578,-8206,-2681,9579,-8225,9580,9581]],[[-2603,9582,9583,-8244,9584,9585,9586,-6184,-8232,-2663,9587,-6181,9588,-8252,9589]],[[653,654,9590,9591,9592,9593,9594,9595]],[[-246,9596,9597],[-8238,9598,-6190,9599]],[[9600,9601,9602]],[[9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,-8290,9615,-2764,-5872,-8278,-8285,9616,-138,-137,9617,-8288,9618,-57,-56,-108,708],[9619]],[[9620,9621,-8298,-6234,-8301,690,9622]],[[-5895,9623,9624,-5892,9625,-5888,9626,-693,9627,-8532,9628,-128,-127,-126,-125,-124,-123,-122,-121,-120,-119,9629,9630,9631,-8731,9632,-6920,-8734,9633,9634,9635,9636,9637,9638,-3834,-8743,9639,9640,-3822,9641,9642,-498,-497,9643,9644,9645,9646,9647,9648,-7303,-8932,9649,786,787,788,789,790,9650,9651,-668],[-8939,-4266,783,784,-8940],[661,662,-3844,-6955],[9652,9653,-6953,-3842],[-665,9654,-695,9655,-666]],[[9656,-3656,9657,9658,9659,9660,9661,-3680,-8681,9662,9663,699,700,-458,9664,9665,9666,-8310,9667,-8306,-6242,-8305,9668,9669,9670,-698,758,759,9671,9672]],[[-8378,9673,9674,9675,9676,9677,-3008,9678,9679,9680,9681,9682,9683,-8411,9684,-3054,9685,-3062,9686,9687,9688,-2897,-8358,-2888,-8357,-6294,-8356,-2871,9689,-6289,-2866,9690,9691,-6269,-8326,9692,-2845,-8324,-2812,-8318,-342,-341,9693],[9694],[9695,-8409,9696,-3037,-8404,9697,9698,-3033,9699,9700,9701,-3044,9702,9703,-3050,-8410,-3048,9704,9705,-3042,-3046,9706]],[[9707,9708]],[[-3020,9709,9710,9711,-658,-657,9712,9713,9714,-3014,-6376,-3012,9715,9716,9717,9718,9719,9720,9721,9722,9723]],[[9724,9724,9724]],[[-3029,-8403,-3027,9725]],[[9726,9727,9728,9729]],[[9730,9731,-2944,9732]],[[9733,9734,9735,-2958,9736,9737]],[[9738,9739,9740]],[[-8424,-6403]],[[9741,9742,9743,9744,9745,9746]],[[9747,9748,9749,9750,9751]],[[9752]],[[9753,9754,9755,9756,9757,9758,9759,9760]],[[-238,9761,9762]],[[-6638,9763]],[[9764,-3998,-7088,-4005,9765,9766,-766,-30,-730,9767,9768,9769,9770,9771,-728,9772,9773,9774]],[[-492,-304,-283,9775,9776,9777,9778,9779,-8549,9780,-8552,9781,9782,9783,9784,9785,9786,-3400]],[[9787,9788,9789,9790,-6729,9791,-3426,-8570,9792,9793,9794,9795,9796,9797,-3423,-6719,9798,-3422,9799,9800,9801,-3452,9802,9803,9804,9805,-3456,-8580,-3461,-8582]],[[9806,9807,9808]],[[9809,9810,-6733,-8571,9811,9812,-3447,9813,9814,-3450,9815,734,735,9816,-3582,9817,-8635,9818,9819,9820,9821,9822,9823],[737,-6804]],[[9824,-3477,9825,-3485,9826,9827]],[[9828,9829,9830,9831,750,-765,-764,9832,752,9833,9834,9835,9836,-6870,-3686,9837,9838]],[[9839,-4170,-7218,-4177,9840,-758,9841,-8623,-6783,-3545,9842,-3548,9843,9844,755,9845,-4154,9846,-8889,9847]],[[-3573,-8640,9848,-3575,-733,9849,-3565,-8630,-6795]],[[9850,9851,9852,-6805,-3586,-6817,9853,9854]],[[-3625,9855,-8653,9856,-4430,9857]],[[-745,-4395,9858,-746]],[[9859,9860,9861,9862]],[[9863,9864,9865,9866,774]],[[9867,9868,9869]],[[9870]],[[-593,9871]],[[779,9872,9873,9874],[-3795,9875],[-6908,9876,9877]],[[-8799,-7074,9878,9879]],[[-8826,-4036,9880,9881,9882,9883,9884,9885,9886,9887,-4041]],[[9888,9889,-8822,9890]],[[9891,9892,9893]],[[9894,-231]],[[9895]],[[9896,9897,9898,9899]],[[9900,9901,-8858,9902,9903,9904,9905,9906,9907,9908,9909]],[[9910,9911,9912,-4111,9913,9914,-8864,-7174,-4125,9915,9916,9917,-8869,9918,9919,9920,9921,9922,-294,-293,-8871,-291,-290,-289,-288,-287,-286,-303,9923,9924,9925,9926,-8861,9927],[-4122],[-8873,-4129,9928]],[[9929,9930,-7188,9931]],[[9932,-8881,-7191,9933,-4159,9934,9935,-8887,-4156,9936,9937,9938,-8882,9939,9940]],[[9941,9942,9943,-7222,-4186]],[[9944,9945]]]},{"type":"MultiPolygon","id":"5","properties":{"density":5},"arcs":[[[-826,-7335,-829,-7333]],[[-4317,-841,-4316,9946]],[[-4307,-817]],[[-8953,9947,-7343,-4305,9948,0,9949]],[[9950,9951,-7355,-4292,-7354]],[[-4361]],[[9952,-8963,9953,-7361,-4345,-7360,-4343]],[[-7364,9954,-8961,9955,-4444,-4362]],[[-895,-7375,-897,-4476,-7368,-4481,21,22,9956,-7379,-4492,-7380,-4490,-893,-8957,-4470]],[[-7371,-4483,-7370,9957]],[[9958,9959,9960]],[[-9006,9961]],[[-7391,-4500,-7390,9962]],[[-7394,-934,9963,9964,-936,-7396,-942,9965,-9057,9966]],[[-938,9967,-9028,9968]],[[-944,-7395,-940,9969,-9026]],[[9970,9971]],[[9972,-7402,-959,-4518,-7398,9973,-9036,9974,9975]],[[9976,9977,-9034]],[[-949,-7401,-965,-9031]],[[9978,-9003,9979]],[[-4546,9980,-9089,9981,-7416]],[[124,-7418,-4562,9982]],[[-994,120,-7426,-4557]],[[-996,-4556,9983]],[[-1004,-4576,-7428,-4569]],[[-4583,-7436,-4581,-7437,-1096,-9096,-1025,-7435]],[[-7445,-4597,-7443,-4478,-19,-18]],[[-1085,-7439,-1066,9984,-9092,-7440]],[[-1035,-4605,-7447,-1071,-7450]],[[-7448,-4607,-7452,-1019,9985,9986,-1073]],[[-4612,-1075,9987,-14,9988]],[[9989,-1082,-7451,-1080,9990,-10,-9,-8]],[[9991,9992,-1037,-7449,-1084,9993]],[[-7454,-4538,-978,9994,9995]],[[-7462,9996,-1112,-7466,-4325]],[[-4328,9997,9998]],[[9999,-4320,-1125,-4639,10000]],[[10001,10002,-9102,10003,-7471]],[[10004]],[[10005,-9107,10006]],[[10007,-1146,-9109,10008]],[[10009,10010]],[[-9112,10011,10012,-4648,-1163]],[[-1167,10013,137,138]],[[-1173,10014,-7479]],[[10015,10016]],[[10017,-1180,-7484,-1182,10018,10019]],[[10020,-7488,-1184,-7483,-1178]],[[10021,-1185,-7487]],[[-1189,10022,10023]],[[-1191,10024,10025,10026,10027]],[[10028,10029,10030,-1192,-4641,-1136]],[[-1200,-7491,-4706,-4720,-1207,10031]],[[10032,-1265,10033,-4724]],[[10034,10035]],[[-4697,-7512,10036,-1211,-4721,-7494,-7496,-4701,-1238,-4700,-7497,-7513]],[[169,-1227,-4663,-7500,-4659,-7499,10037]],[[-4726,-1219,-9124,10038,-9125,-1221]],[[-4664,172,-1233,-4727,-7501]],[[175,10039,-4672,-7503,4731,-7502,-1230,174]],[[-4679,-7510,10040]],[[-1251,-4738,-7514,-4741,10041,10042]],[[-9144,192,-4745,10043]],[[206,10044,-9195]],[[-7523,10045]],[[10046,-7529,-4762,-7526,10047]],[[-4765,-9134]],[[-1283,162,10048,-9208,-4774]],[[10049,-4752,10050]],[[-9019,10051,-1291]],[[-7534,-1293,-9015,10052,10053]],[[-1326,-4785,-1328,10054]],[[10055,10056]],[[10057,-4786,-7551,10058]],[[-7548,-1333,10059,10060]],[[10061,-1306,10062]],[[-7557,-9226,10063]],[[-7571,10064,-1351,-4805,-1346]],[[10065,10066,240]],[[10067,-1359,10068]],[[10069,10070]],[[-7594,-4860,-4880,-7601,-7586,-4826,-7583,-4823,-7582,-4869,-7593,-4867,-1379,-4862]],[[-4833,10071,10072,-7590,-4835,-1381]],[[-1389,-4870,-1387,-4837,-7592,10073,10074,-7597,-4840]],[[-4851,-7598,-4849,-1404]],[[10075,10076,-7606]],[[-9268,-4873,-7609,10077]],[[-9270]],[[-4896,10078,-4892]],[[10079,10080,10081,-4899]],[[-7624,-4905,10082,260,10083,-1414]],[[-1433,-7627,10084]],[[10085,-4910,-7628,-1438,10086,-1442,-7630]],[[-7632,-9265,-1446,-4916]],[[-7635,-4920,-7638,10087]],[[10088,10089,-1452,-7648,-1461,-9191,10090]],[[-4929,10091,-9192,-1463]],[[10092,-4945,10093,-217]],[[-7652,-9295,10094,10095,-1479,10096]],[[-9356,10097,10098,-7655]],[[10099,10100,-7661,10101]],[[-1481,10102,-9299,-7658]],[[10103,-9351,10104,10105]],[[-9297,10106]],[[-7667,-4951,-7665,-9364,10107,-9358]],[[-4953,-7666,-9357,10108,-9365]],[[10109,-1496,-5192,10110,-7670,-5184]],[[-9404,10111,-1491,-5175,-1500]],[[-1506,10112,-7678,-5164,10113]],[[10114,-5141]],[[10115,-1630,-4964,-7696]],[[-5331,-7704,-1573,-5328,-7702,-9370,-7705]],[[-1560]],[[-7691,-1581,-7690,-1553,-5124,-1583]],[[-1548,-7692,-1586,-7708,-5339,-7707,-1588,-9410]],[[10116,-5091,-7777,-5089,10117,-5085,-7771,-5453,-7773,-5447]],[[-9413,10118,-1613,-4957,-1488]],[[10119,10120,-5190,-1621,-7722,-5188]],[[-4960,-7723,-1636,-7724]],[[10121,10122,-4984,-7732,-4982,-1662]],[[-5419,-7738,-5397,-7741]],[[-361,-5393,358,-7739,-2793,-8317,-2796,-6253,10123,-543,-542,-362]],[[-7746,-1670,-5422,-7740,-4992]],[[-7735,-1671,-7745,-4990]],[[10124,-4996,-7747,-5426,-7750,-5429]],[[10125,-7743,-4999,10126,-5434,-7749,-1726,-5006]],[[10127,-5424,-1699,10128,363,364,365,-1729]],[[10129,-7753,-4976,-1703]],[[10130,-1701,-4975,-1707]],[[-7755,-7757,-4972]],[[10131,-7756,-4970,-7759]],[[-5438,-7761,-5439,-7760,-1615,10132,10133,10134,-1718,-4967,-1624]],[[-7763,-5323]],[[-7762,-5260,-7767,-1736,10135,-7765,-5262]],[[10136,-7768,-5003]],[[-9371,-7770,-5444,10137,-5325,-7764,-5334]],[[10138,-5449,-7772,-1754,-5079,-5077,-1758,-5094,-7774]],[[10139,-5097]],[[-7795,-1777,-7720,-1781,-7798,-1787,-5458]],[[-5300]],[[-1791,-7688,-1540,-9409,10140]],[[402,-5148,-1800,-7800]],[[399,-1804,-7801,-1798,-5468,-1796]],[[-9377,10141,10142,-1812,10143,386,-9379,10144]],[[-9411,-1599,10145,10146]],[[10147,10148,-9386,10149,-1814]],[[-7805,-5481,-1821,10150,10151]],[[-7808,-5474,10152,-1829,-5485]],[[10153,10154,-1843,-5496,10155]],[[-5491,-1832,10156,-7814,-5493,-7813,-5498,-7809]],[[10157,-1835,10158,-1837,10159,-7820,-5506]],[[10160,10161,10162,10163,-7824]],[[-1857,10164,10165,-1867,-5517,-7828,-5523]],[[-7829,-5520,10166,10167]],[[-1879,-5526,10168,-9399]],[[-5530,-7835,-5528,10169,-1507,10170,10171]],[[-1876,-5513,-7832,-1883,-5534,10172]],[[-9174,10173,-9176,10174]],[[-7842,-1896,10175,-5546,-5553,-7844,-1891,-9119,10176,-1893]],[[-1901,-9121,10177]],[[10178,-5555]],[[10179,-5564,10180,10181]],[[-5562,-7847,10182,-9424,10183]],[[-1926,-7862,-1924,-5569,-7854,10184,7856,10185,-7855,10186,-7859]],[[-7861,10187,-5571]],[[10188,-1953,-5573]],[[10189,10190,-9416]],[[-7864,-5584,-7866,-5577,-7868,-1936,-9418]],[[10191,-1916,-7867,-1930]],[[-5588,-7871,-1945,-7876,-9419,-7869]],[[-1958,-5593,10192,-1967,-5597,-1961]],[[10193,-7879,-5607,10194]],[[10195,10196,-7883,10197]],[[-9291,10198,-7887,-5610,-7891,10199,10200,10201]],[[-7889,10202,-9342,10203]],[[-7903,-5628,10204,-2014,10205]],[[-7905,10206,-7908,10207,-5627]],[[-7912,10208,-2032,-5637]],[[10209,-9479,10210,-7910,-5635,-2019]],[[-7917,10211,-158,-157,-9213]],[[-2047,10212,10213,10214]],[[10215,10216,-5651,-7920,-2049]],[[10217,-2053,-5662]],[[-2096,10218,10219,10220,-2059,10221]],[[10222,-9503,10223,-2060]],[[-5675,10224,-9512,10225]],[[-2069,-7930,10226,-9496]],[[-2076,-5679,-7934,-5684,-7933,10227,10228]],[[-5682,10229,-2087,-5687,-7928]],[[-5697,10230,10231,-9505,-2090,10232]],[[10233,10234,10235,-2093,-7940,10236,-5693,-7938]],[[-9508]],[[10237,10238,-7944,-5708,-5704,-9309,10239]],[[-2115,-5698,10240,10241,-9314]],[[-7948,-2117,-9313]],[[-7955,10242,-9311]],[[-7958,10243,-9347,10244,-2119]],[[10245,-7959,-2121,-9345]],[[-2123,-9343]],[[-2131,10246,10247,10248]],[[10249,-2142,-7965,-5718,-7967,-5720,-7966,-2138,10250,10251,10252,-2129,10253,10254,10255,-9045]],[[10256,10257]],[[10258,-9523,10259,-2146]],[[10260,-2148,10261,10262,-2144,10263]],[[10264]],[[10265,10266]],[[10267,-7968,-2150,10268,10269,10270,10271]],[[-7974,-5017,-7973,10272,544,10273,-7976,-5019]],[[-5735,-7975,10274,10275,-2199]],[[-5767,-2211,-9530,10276,-2218,-7995,-2214]],[[-8003,10277,-5770,-7998,10278,-5739]],[[-5757,-8000,10279,-9531,-7993,-5765,-2204]],[[-8006,-5783,-7987,-5782,-7986,-2238,-5777,10280]],[[-5780,-7991,562,-2240,-7985]],[[-2222,-5788,-2233,-9527,-7989,-5790,-7988,-5785]],[[-8020,-5829,-8019,10281,-2256,-5801,-8011,-5795,10282,-5817]],[[10283,10284,-5807,-2285,-5810,-8014,-5754,-8016,-5805]],[[-9533,-5814,-8001,-8015,-2282]],[[-5820,10285]],[[-2289,10286,-2301,-5750,-8027,-2320,10287]],[[-5032,10288,-5822,-5831,-8021]],[[-8022,-2315,-8026,-2313,10289,10290,-8024,-5044]],[[-8028,-8023,-5042,-2324]],[[-5039,-8029,-2337,-5035,-2294,-2293,-2292]],[[-5054,-8038,-5051,-8036,10291,-8039]],[[-374,-5255,-8047,-375]],[[10292,10293]],[[10294,10295,10296,10297,-2397,-8051,-2357,-8054,10298]],[[10299,10300,-146,-145,10301,-8052,-2355,-8050]],[[10302,-1160,-8058]],[[-8060,-2364,-8064,-5935]],[[-8076,-8065,-5932,-8068,-5963]],[[-8070,-2381,10303,10304,-2377,-8056,-5969,-8061,-2370,-8069,-5971]],[[-8072,10305,10306,-8048]],[[10307,-532]],[[-529,10308,-9544,10309]],[[-5928,10310,-2400,583,10311]],[[10312,-2394,-8077,10313]],[[-9554,10314]],[[10315,-8084,-2414,-6036,-8111,-2406]],[[-8090,-2423,-5996,10316]],[[-2469,-5989,-8087,-5987,10317,-2404,-8110,-2402,10318,-8100]],[[624,625,-5978,-8079,-2428,-8088,-6004,-8089,-2441]],[[-5388,-2827,10319,-2832,617,618,619,-6013,-2446,-6008,-8094,-6014,-8093,-6018,-616,-615,10320,-2797,-8312]],[[-6258,-8313,-2800,-8316,-6262,611,612,-8095,-8092,-2464,-8097,10321,-6030,-8104,-550,-549,609,10322]],[[10323,10324,-8118,-6042,-8120]],[[-2410,10325,-2671,-6047,-8250,10326,-6060,-2499,-6059,-8136,10327]],[[-6078,-8137,-6057,-2502,10328,-2531,-8126,-6071,-8125,10329]],[[10330,-8177,10331,-2545,-2523,-8242,-2521,-8130,-6064,-8129,-6066,-2508,-9563,-8133,-6075,-2535,10332,-8171]],[[10333]],[[-558,10334,-6084,-2515,-6081,-2513,-8241,-2511,-8156,10335,-9536]],[[10336,10337,-2518,10338]],[[-8140,10339,10340,-8143,10341,-556,10342]],[[-6109,-6101,10343,-8148]],[[-8165,10344,10345,-8167,-6107]],[[10346,-8174,-6086,-2547]],[[10347,-8182,-6111,-8180,-6126,10348]],[[648,10349,-8188,10350]],[[-8187,-2581,10351]],[[-6133,-8191,10352]],[[-9575,10353]],[[10354,-8201,-6143,-2608,10355]],[[-6146,-2617,-6152,10356]],[[10357,-2601,-8220,-6163,-2642,-8216,-2634,-8218,-6159,-6155]],[[-2598,-8221,10358]],[[-8222,-2597,-8217,-2646]],[[-6185,-9587,10359,-8233]],[[10360]],[[10361]],[[-8239,-9600,-6189]],[[-8240,-6191,-9599]],[[-8123,10362,-8246,-6045]],[[-6198,10363,-8248]],[[-9589,-6180,-9588,-2667,-8231,-2594]],[[-8150,10364]],[[-8173,10365,-8158,-6092,-8163,-6201,-8145]],[[-8205,-8211,-6157,-2630,-8254,-2628,-8223,-9580,-2680]],[[-8202,-6148,10366,-8208,-2614]],[[-6153,-2641,-8210,10367]],[[-2709,10368,-5904,-5902,677]],[[-5908,-8259]],[[-8265,-6204,-5910,-8261,10369,-2707]],[[-6211,-8273,-6213,-8272,-2728,10370,685,-586,-8276,-5923,-8275,10371,-2720,-8271]],[[-5863,-8279,-2759,-5870,-2754,-8262]],[[-572,-571,-1155,-8282,-2360]],[[-2736,-8283,-2751,-8281,-6220,-8286,-8277]],[[-5884,10372,10373,-2779]],[[-9621,-6230,-6231,10374]],[[-5893,-9625,10375]],[[10376,10377,-9488]],[[10378,-8307,-9668,-8311,-9667,10379]],[[10380,-8321,-5385]],[[-2846,-9693,-8327,-5357,-8325,-8323]],[[-2834,-8331,-5359]],[[-5377,10381,-8329,10382,-2849]],[[-2859,-5361,-8330,-2843]],[[-2856,-2450,-6277,-8333,-6275,10383]],[[-5371,-8338,-8335]],[[-2865,-6288,10384,-9691]],[[-8343,-6283,-8341,-6285]],[[-9690,-2874,-6292,-8344,-6290]],[[-8342,-2869,-6301,-8346,10385,-8350,-6323,-8352,-6310,-8347,-5366]],[[-8353,-2887,10386,-2878,-6312]],[[-8362,10387,10388,-6297,-8359,-6336,-2898,-9689,10389,10390,-6327,-2901]],[[-8363,-8365,-6338,-2914,-8367,10391,-640,-639,10392]],[[-6342,-8370,-6340,-8369,10393,10394,10395,-2920,-8371]],[[10396,10397,-8392,-6358,-8377,-2932,10398,-6347,-2937]],[[10399,-6345,-8376,-6351,-8394,-6363,-8375,-3003,10400]],[[-2957,-8389,-2968,10401,10402,-9737]],[[-2962,-6356,-8388,-2970]],[[-2991,-8374,-2975,-8382,-3007,-8397,-6370,-6367]],[[10403,-3017,10404]],[[10405,-9716,-3019]],[[10406,-3024,10407]],[[10408,-9710,-3023]],[[-9698,-8406,-6377,10409]],[[-3041,10410,-9701,10411,-3038,-9697,-8408,10412,-9707,-3047]],[[-3056,10413,-3053,10414,10415]],[[-9686,-3058,10416,-3059]],[[-8412,-9684,10417,10418,10419,-8414,10420]],[[10421,-2951,10422,-9728]],[[10423,-6354,-8417,10424,10425]],[[3070]],[[-3213,-8459,-3225,-6445,-3108,-6441,-3103,-3240,10426]],[[-8433,-6453,10427]],[[-8438,-6419,-8427,10428]],[[10429,-3121,-8420,-3122,-6422]],[[-8449,10430,-6462,-3132]],[[-6470,10431,10432]],[[-6475,-8445,-6394,-8422,-6472,10433,-8446]],[[10434,-6397]],[[-6391,-3146,10435,-6481,-8421,-3135,-8423]],[[-3158,10436]],[[-3180,10437]],[[10438,-8461,-3187]],[[-6525,10439,-8464]],[[-3229,-6530,-8471,-8488,-6591,-8492,-6605,-8493,-6603,10440]],[[-6536,-3101,-6437,-8430]],[[10441,-3238,-8473]],[[-8479,-6559,-8481,-6550]],[[10442,-3281,-6570,-3275,10443,-6571,-8485,-6577,-8484,10444,10445,10446]],[[-9525,10447,-6574,-8482,10448]],[[-6582,-3310]],[[-3322,10449,-6596,-8491,-6608,-8490,-3325,10450,10451]],[[-3215,10452]],[[-3207,-8495,10453]],[[-3331,-6613,-8496,10454]],[[-8497,-8500,10455,10456,10457]],[[-3336,-6615,10458,-9754,10459]],[[10460,10461]],[[10462,-6640]],[[-8514,-6658,-8511,-6656,-8513,10463]],[[10464,-6677,-8520,-6653,-8519,-6651,-8518,10465,-6697,10466,-3384,10467]],[[10468,10469]],[[-8525,-3370,-8526,-6667,-8523,-6665,10470]],[[-8533,-6683,-3374,10471]],[[-8535,10472,-8536,-6680]],[[-9607,10473,10474]],[[-9620]],[[-6686,722,723,-8540,10475]],[[10476,-9769,10477,-6706,-8547,-6700]],[[-8555,10478,10479,-6712]],[[-3410,10480,-8557,10481,10482]],[[-3415,10483,10484]],[[10485,-8562,10486,-3413]],[[-6723,10487,-9790,10488,10489,-6724,-8567]],[[-8569,-3429,-8568,10490,10491,-9793]],[[-6721,-8566,-3428,10492]],[[-9795,10493,-3444,-8575,10494]],[[-3443,-8576]],[[-3441,10495,-9808,10496,10497,-9812,-8577]],[[-8572,-6734,-9811,10498]],[[-3446,10499,-9814]],[[-3459,-6737,-3454,10500,10501]],[[10502,-9805,10503,-9803,-6739]],[[-9783,10504,-8584,10505,10506]],[[10507,-6752,-8605,10508,-6634,-3472,-6633,-3524,-6632,10509],[-8587,-6744]],[[-8593,-4404,-3486,-9826,-3476]],[[-3507,-8606,-4398,-8599]],[[748,10510]],[[-3492,-4401,-3503,10511,10512]],[[-3517,10513,10514,-8600,10515]],[[-8602,10516,-9828,10517,-3521,-6755]],[[-8616,-6773,-3531,10518]],[[10519,-3537,-8615,10520,10521]],[[-8648,-8609,-6781,-8608,-3543,-8619,10522,10523]],[[-6787,-8624,-9842,757,10524,-8625,-6785]],[[-9843,-3547,-6782,-8627,10525,-3549]],[[10526,-3551,10527,-8621,10528]],[[-8628,10529,10530,-3554,-3553,-3552,10531]],[[10532,10533,-3563,10534,-3556]],[[-8634,10535,-8637,-8639,10536,-9819]],[[-6793,-3576,-9849]],[[-736,-6792,-3578,-9817]],[[10537,-6815,10538,-3589,-8641,10539,-9822]],[[10540,-9854,-6816,-3584]],[[10541,-6821,10542,-3590,-6825]],[[-6827,-3593,-6828,10543,10544]],[[-9857,-8652,6831,-8651,-4433,-4431]],[[-8657,10545,10546,-3614,-6834,-4370]],[[-4437,-8655,-4435,-8650]],[[10547,-6837,-8660,10548,-4441,10549,-4439,-8654,-9856,-3624]],[[-4382,-3651,10550,-8663]],[[-8666,-6844,-8669,-3630,-8665,-4384,-8662,10551,10552,10553]],[[-3649,10554,-3648,10555]],[[-9672,760,761,10556]],[[-3670,-6849,-3673,10557,-9660,10558]],[[10559,-3660,10560]],[[-3662,10561,10562]],[[10563,-6866,-8698]],[[-3716,-6864,-8686,-6862,-3689,-8685,-6868,10564]],[[-3700,10565,-3707,10566,-3710,10567,10568,-8690]],[[10569,10570,-3697,10571,10572]],[[-3719,10573,10574,10575,-3712,-8693]],[[10576,-3732,-6882,-3722]],[[10577,10578,10579,10580,-8702]],[[10581,-3752,-8688,-6873,10582,10583,10584,-6886,-3749]],[[-3772,-8706,10585]],[[10586,10587,-8710,-3776]],[[10588,10589,-6889,-3753,-8709,10590,-8714,10591],[-3780,-8716,-6896]],[[-6894,10592,10593,10594,-8712]],[[10595,-3781,10596]],[[10597,-8707,-3773,10598]],[[10599,10600,-8719,10601,10602,-3785,-6899,-8718]],[[-3760,10603,10604]],[[-3790,10605]],[[10606,-6905,10607]],[[-3796,-9876]],[[-3814,10608,10609,10610]],[[-8727,-6928,-6924,10611,10612]],[[-9642,-3821,-8729,-3818,10613]],[[10614,-9634,-8733,-6916,-3824,10615,-6935],[-6932,10616,-6934,-8736]],[[-6921,-9633,-8730]],[[-8735,-6918]],[[10617,10618,-9637,10619,-8744]],[[-8742,-6942,10620,-9640]],[[-8746,-6949,-8739,-6945,-8741,10621]],[[10622,-9653,-3841]],[[10623,10624,-6961,-8749]],[[-9324,10625,-6966,10626,10627]],[[-3863,-8760,-3865,10628,10629]],[[10630,-3885,-6982,-3870,10631]],[[-3876,-8761,-3891,10632,-9319,10633,10634,10635]],[[-7000,-3899,-8763,-3879,10636,10637]],[[10638,-8767,-6994]],[[-8775,10639,-3908,-8772,-3917]],[[10640,-3921,-8776,-7007,10641]],[[10642,-7003,-8779,10643]],[[10644,-3932,-7017,-3925,10645,10646,10647,10648]],[[-3927,-7016,-3929,10649]],[[10650,-9440,10651,10652]],[[10653,10654]],[[10655,10656]],[[-8787,-8999,-8784,-7034]],[[-718,-3952,10657]],[[10658,-8790,-7058,-3959]],[[-3964,-7054,-3968,-8796,10659]],[[-8802,10660,-3997,-7085,10661,10662]],[[10663,-8800,-9880,10664,-9775]],[[-7086,-3999,10665,-4003,-8811]],[[-7099,-4024,-9069,10666]],[[10667,-4034,-8820,-7102,10668,-9065]],[[10669,-7108,-4029,10670,-9067]],[[-95,-94,10671,-7109,10672,-9081]],[[-9085]],[[10673,-8823,-9890]],[[-8825,10674,-9881,-4038]],[[-7112,-4042,10675]],[[10676,10677]],[[-7119,-8832,-7123,10678,10679]],[[-7124,-9137,10680]],[[-4061,-8837,-9140,10681]],[[-4065,-8838,-9182,10682,-4069,-7130,-4072,-7131,-8841,10683,-9183]],[[10684,-4090,-7134,-8844]],[[10685,-8846,-7137,-4085,10686]],[[-8849,-7142,-4093,10687,10688,10689,-8850,-7146]],[[-4102,-8856,-8859,-9902,10690]],[[10691,-4112,-8863,-7177,10692]],[[-9926,10693]],[[-7186,-8872,-9929,-4128]],[[-4131,10694,-4135,-8874,10695]],[[10696,10697,10698,10699,10700,10701]],[[10702,-8879,10703]],[[10704,10705,10706,-4137]],[[10707,-8979,-4141]],[[-9402]],[[-4150,10708,-9940,-8884,-7197,10709,-4145,-7198]],[[-4153,-8885,-9847]],[[-8888,-9936,10710,-9848]],[[-8886,-4147,10711,-9937,-4155]],[[-7200,-8893,-7214,10712,10713]],[[10714,10715,-7207]],[[-7227,10716,-7232]],[[-9942,-4185,-7219,-8892,10717,10718,-4192,10719]],[[-4243,-8917,10720,-4231,-8912,-7263,7253,-7261,-4215,-8911,10721]],[[-4212,-7248,-9373]],[[-8906,-4214,-9372,-7245]],[[-7266,-1811,-393,-8907,-4207,-7259,-8913,-4234,-7257,-4224]],[[10722,-8914,-7274]],[[-8919,-4253,10723,-7276,-4237,10724]],[[-413,-1524,-7272,-8923,10725]],[[-8925,-4188,-7221]],[[10726,-5899,-8257,-4261,10727,-7288,-8930,-7290,-8928]],[[-8933,-7301,-8935,-7299,-8931,-787,-9650]],[[-7293,10728]],[[-9072,-7314]],[[10729,-4281,10730,10731]]]},{"type":"MultiPolygon","id":"0","properties":{"density":0},"arcs":[[[-843,-822,-4300,-7336,-851,10732]],[[-4494,-907,10733,-901]],[[10734,38,10735]],[[10736,10737]],[[-48,42,10738,10739,39,40,98,-8972,10740,-8970]],[[10741,-9552,10742,10743,10744,10745,10746,-9105,-45,-64,10747,10748,-9116,10749,-150,10750,10751,10752,-9547]],[[10753,10754,10755,-10294,10756,10757,10758,-5850,10759,10760,10761,-1134,10762,10763]],[[-7508,10764,-4692]],[[10765,10766,10767,-9739,10768,10769,-9603,10770,-9597,245,10771,-9245,10772,10773,10774,10775,-9233,10776,243,10777,-9586,10778,10779,10780,657,-9712,10781,-9722,10782,-9708,10783,-263,-262,-261,10784,10785,250,251,252,253,254,-295,-9923,10786,-9897,10787,189,-9152,10788,-9158,10789,-9156,10790,-9178,10791,183,184,185,186,10792,-10071,10793,-248,10794],[-8255],[-3026,-9726],[-257,10795,-9249,10796],[10797]],[[-218,-10094,-4947,-1471,-4948,-1469,-4946,-10093,-216,10798,-284,303,304]],[[331,332,10799,334,10800,10801,-9361,10802]],[[-7693,-5136]],[[10803,-1647,10804]],[[-1660,-7752,-10130,-1702,-10131,-1706,10805]],[[-10134,10806]],[[-7778,-5265,10807,-5257,10808,-7779,-5267]],[[-5082,-1747,-7715]],[[-5279,-7781,-5277,-7786,-5275,-7783,-5283,-7782]],[[10809,-9407,10810,-5073,10811]],[[10812,-9393,10813,10814]],[[-7725,-5349,-7726,-5312]],[[-10140,-5096,-9405,-7716,-1606,-5098]],[[-269,10815,-9384,10816,-9279]],[[-10151,-1820,-9388,10817,-10155]],[[-10118,-5088,-1770,-5086]],[[-7787,-5064,378,379,380,-5066]],[[-5067,382,-7788]],[[-1640,-7727,-5133,-7698,-5131,-7699,-5129,-7700,-5127,-1563,-7694]],[[-5116,-7712,-5114,-1605,-5113,-7794,-5454,-7793,-5111,10818,-7713],[-5456]],[[-7671,-10111,-5191,-10121,10819,-5186]],[[-1498,10820,-7672,-5176]],[[-1505,-5170,-7677,-1509,-5168,-1515,-5166,-7679,-10113]],[[-7776,-5450,-10139,-7775,-5092,-10117]],[[10821,-773,-808,449,-223,-320,10822,447,10823,-233],[10824]],[[-2094,10825]],[[-10275,-7978,549,550,551,-9535,10826]],[[-7984,10827,-9528,-2231]],[[-323,-322,591,592,593,10828,10829,10830,10831,10832]],[[-8083,-5981,-2494,-6033]],[[-6209,-8269,10833,10834]],[[-9665,-457,-220,-491,-490,-489,-488,10835]],[[-9720,10836,10837]],[[-6299,-8360,-10389,10838,-8348,-10386,-8345]],[[-6643]],[[10839,-3509,-4419,10840]],[[-3468,10841,-8589,-4410]],[[10842,739,-3513]],[[3510,-3511,10843]],[[-9845,10844,10845,10846,10847,10848,10849,-731,-279,-278,-277,-418,-417,-9394,10850,-9930,10851,-9941,-10709,-4149,-9846,-756]],[[10852,-6829]],[[10853]],[[10854]],[[10855]],[[10856]],[[-4462,-8658]],[[-4440,-10550]],[[-6838,-10548,-6836,-6842]],[[10857,10858,10859,-228,-133]],[[-6931,-10617]],[[10860,10861,-474,-430,-446,-8984,10862,-8982]],[[10863]]]},{"type":"MultiPolygon","id":"4","properties":{"density":4},"arcs":[[[-7348,10864,16,17,-7372,-9958,-7369,-883,-4473,-7374,-888,-8956,10865]],[[-4289,-7346,10866,-864]],[[-7356,-9952,10867,-8964,-9953,-4359]],[[-9954,-8962,-9955,-7363,-4347,-7362]],[[-9956,-8960,33,34,-4445]],[[10868,-7366,-4351,-7367,-877,10869,10870]],[[10871,-9959,10872]],[[10873]],[[-915,-4504,-7382,10874]],[[-924,-7387,-9059,10875,-9055,10876,-7388,-4498]],[[10877,-9061,-911,-4505,-913,10878,-9011]],[[10879,-9053,10880]],[[-9060,-4511,-7385]],[[10881,-931,-7393,-9967,-9064]],[[-9964,-933,10882]],[[-939,-9969,-9027,-9970]],[[10883,-9037,-9974,-7397,-962,-4516,-952,-4515,-9030,10884,-9039,10885,-9972]],[[-9976,10886,-9977,-9033,10887]],[[-9051,10888,-7406,10889,10890]],[[10891,10892]],[[10893,-8976]],[[-9980,10894]],[[-9008]],[[-51,-8969]],[[-8974,10895]],[[10896]],[[-4536,-969,10897,-985,-9090,-9981,-4545,-972,-7415]],[[-977,-7417,-9982,-9088,10898,-9995]],[[10899,129,-9091,-7420]],[[122,123,-9983,-4561,-7422,-4565,-7423,-4559,-7425]],[[-7456,-4554,-992,-4552,-986,10900,-1098,-7432,10901]],[[10902,-10609,-3815,-10611,10903,-9630,-118,10904,-1002,-7427,-4567,-999,-116,-998,-4573,10905,-4634,-7465,-4623,-7464,10906,108,-1111,-4631,111,112,113,-6910,-8724,-6913,10907,-3811,-4628,-8721,-502]],[[-1018,-7434,-1061,-7446,-4602,-7442,-1048,-7444,-16,10908,-9986]],[[-1026,-9095,10909,-1063,-7433]],[[-9093,-9985,-1065,10910]],[[-1010,-4575,-1069,-7429,-1028,-9993,10911]],[[-9991,-1079,-7453,-1077,-4613,-9989,-13,-12,-11]],[[-9994,-1083,-9990,-7,-6,10912]],[[-7468,-4329,-9999,10913,-4333,-7469,-4331]],[[-1117,-4637,-1115,-4321,-10000,10914]],[[-1130,10915,10916,-10002,-7470]],[[10917,-9099]],[[-7478,-4646,-1143,-7474,-4645,-7473,-7475,-1140,-4642,-1193,-10031,10918,-10011,10919,-9110,-1144,-10008,10920]],[[146,10921,-9113,145]],[[-10020,-10026,10922,-10016,10923,-1176,-7480,-10015,-1172,-4651,-7482,-4653,-1168,-4649,-10013,10924]],[[-10023,-1188,10925,-10027,-10019,-1186,-10022,-7486,10926]],[[-7495,-4656,-7489,-4709,-4715,-7492,-4717,-7490,-1198,10927]],[[-10035,10928,-4725,-10034,10929]],[[167,10930]],[[176,10931,-7504,-4675,-7511,-4673,-10040]],[[-7509,-4680,-10041,-4735]],[[-10765,-7507,10932,-9161,10933,-1212,-10037,-4695,10934,-4693]],[[-9149,10935,-10042,-4743,-7515,-4739,-1249]],[[10936,-10679,-7122,-8834,10937,197,-7517,-4748,-7519,-4749,-1253,10938,-9147,10939,-9145,-10044,-4744,195]],[[10940,-1257,-7516,10941,-4753,-10050]],[[-9201,-1275,-4764,-7528,-10047,10942]],[[-9210,10943,-7531,-4770,10944]],[[10945,-1288,10946,10947]],[[-9016,-7535,-10054,10948]],[[-9229,-1313,-1312,-1311,-7539,10949]],[[-7543,-1320,10950,10951]],[[10952,-10057,10953,10954]],[[-7537,-1299,-10062,10955]],[[10956,-9227,-7555,-4790,-7553]],[[-9222,10957]],[[-9236,-7567,-4802,-7566,10958]],[[10959,-1348,-4807,-7577]],[[10960,-9238,10961,-10775,10962,-4812,10963]],[[241,10964,-9231,10965,-10066]],[[-9256,10966,-10072,-4832,-7588]],[[10967,-9259,10968,-10074]],[[-4853,-7599,-4847,-7604,-4845,-7600,-4843,10969]],[[-9269]],[[-7584,-4878,-7603,10970,-9257]],[[-9253,-4887,-7616,-9252,10971]],[[10972]],[[286,-4891,-4890,288,-4900,-10082,10973],[-7618]],[[10974,-9272,10975]],[[10976,10977,10978,10979]],[[10980,-7621,10981,10982]],[[10983,259,-10083,-4904,-7623]],[[10984,10985]],[[-4908,-1435,10986,269,10987,-1429]],[[10988,10989]],[[-1440,-7629,-4912,10990,10991]],[[10992,-9262]],[[-7639,-4918,-7637,10993]],[[-10089,10994]],[[-9193,-10092,-4928,-7647]],[[-1477,10995,-9352,-10104,10996]],[[-10098,-9355,10997,-7662,-10101,10998]],[[-9302,-1484,10999]],[[11000,-9304]],[[11001,327]],[[-10171,-10114,-5163,-7680,-5157,11002]],[[-7673,-10821,-1497,-10110,-5183,-7687,-5181,-7686,-5179,-1538,-5178]],[[-1633,-1632,-1631,-10116,-7695,-4962]],[[-10820,-10120,-5187]],[[-10804,11003,341,342,343,344,-5415,-7730,-5350,-1643,-7729,-1648]],[[-1650,-7728,-5403,-7733,-1652,-7731,-4985,-10123,11004]],[[-10129,-1698,-5395,-1683,-5394,361,541,11005,-7971,-5725,-7970]],[[-1691,-4997,-10125,-5428,-10127,-4998]],[[-10137,-5002,-1713,-5001,-7744,-10126,-5005,-7769]],[[-7748,-5432,-7751,-1695,-10128,-1728]],[[-10136,-1735,-5258,-10808,-5264,-7766]],[[-5256,372,373,-7780,-10809]],[[-10138,-5443,-1739,-5326]],[[388,389,-5465,-5463,-7802,-1793,11006,-9374]],[[-10142,-9376,11007,11008]],[[-10148,-1816,11009,11010]],[[-5473,-10152,-10154,-1830,-10153]],[[-1831,-10156,-5495,-7815,-10157]],[[-1850,-5508,-7821,-10160,-1840,-9390]],[[-10164,11011,-10815,11012,-10167,-5519,-7825]],[[11013,-7822,-1868,-10166]],[[11014,-7826,-5515,-1872,-7833,-9398]],[[-1859,-5522,-1866,-5538,-7836,-5536,-7831]],[[-7719,-5102,-9408,-10810,11015,-5104]],[[11016,425,-9168,11017,-9166]],[[-10175,-9175]],[[11018,11019]],[[11020,11021,-5547,-10176,-1895,11022]],[[-5541,-7839,11023,-1884,-5543,-7837]],[[-10179,-5554,-7845,-5560,-10180,11024,436,11025,-1913,-7850,-5556]],[[-10183,-7846,-1905,-5558,-7849,-1909,-5566,-7851,-1917,-10192,-1929,-9425]],[[-7848,-1911,11026,-7852]],[[-9427,11027,-10190,-9415,11028]],[[11029,11030]],[[11031,11032]],[[11033]],[[11034,-10195,-5609,-1985,11035]],[[11036,-10198,-7882,-9454,11037]],[[-10197,11038,-9455,-7884]],[[11039,11040,-9459]],[[11041,-9448,11042]],[[-1989,-9450,11043,11044]],[[-1994,-7886,-5613,11045]],[[11046,-7894,-5619,-2002,11047,-7897,11048,467]],[[11049,11050,-9468,-5620,-2005,-2004,-2008,-7899]],[[-2012,-5630,-10206,-2017,11051,11052]],[[-10205,-10208,-7907,-5634,-7909,-2024,-9472,11053,-2015]],[[-9216,11054]],[[-7916,-9212,-159,-10212]],[[11055,-2048,-10215,11056]],[[-9484,-2054,-10218,-5661,11057]],[[11058,-10220,11059,-7943,11060,11061,475,476,477,-2057,480,481,11062,-9486,-484]],[[11063,-9501]],[[-9499,11064,-2062,11065]],[[-10228,-7932,11066]],[[11067,-10235,11068,11069,-10231,-5696]],[[-5656,-7941,-5654,-7921,-5652,-9507,-7922]],[[-5665,-9509]],[[-2103,-5707,-9517,11070,-10241]],[[11071,-10240,-9308]],[[11072,-9514,-7945,-10239]],[[11073,-9349]],[[11074,-530,-10310,-9549,11075,-10300,-8049,-10307,11076,11077,-7963],[-10308,531]],[[-10254,-2128,-10249,11078]],[[-2135,11079,-10256,11080,-10257,11081]],[[-2147,-10260,-9522,11082,-10251]],[[11083,-10247,-2130,-10253]],[[-10263,11084,-9518,-10259,-2145]],[[-10264,-2143,-10250,-9044,11085]],[[11086,11087,-10271],[-10265]],[[11088,-10269,-2152,523,11089]],[[11090,-5022]],[[-10274,545,-2175,-5728,-7977]],[[-2277,-5029,-7981,-5838,-2192,-7982,-2185,-7980,-2200,-10276,-10827,-9534,-2280,-5808,-10285,11091,-8012,-5030]],[[-2207,-5774,-5764,-8004,-2216,-7994,-5773,-7996,-5769,-10278,-8002]],[[-5812,-9532,-10280,-7999]],[[-2276,-5752,-10287,-2288,11092]],[[-5815,-10286,-5819,11093,-10290,-2312,-5823,-10289,-2290,-10288,-2319,-5748,-2257,-10282,-8018]],[[-8033,-5236,-8031,-5234,-8030,-5242]],[[-10758,11094]],[[-9542,11095,-10760,-5849,11096]],[[11097,-10752]],[[-10296,11098]],[[-8057,-2376,-10305,11099,-10299,-8053,-10302,-144,566,-1161,-10303]],[[-8062,-2365,-8059,-5853,-8055,-5938]],[[-5927,-8063,580,-2399,-10311]],[[11100,-2388,-8075,-5966,-8066,-2369,-8067,-5929,-10312,584,585,586]],[[-8073,-2398,-10298,11101]],[[-10755,11102,11103]],[[11104]],[[11105,-10831]],[[-9561,11106]],[[-8080,-5998,-8081,-2420]],[[-5986,-8086,-5984,-8085,-10316,-2405,-10318]],[[-2435,-10317,-5995,-8099,-2466,-8091]],[[-8096,-8098,-6022,-8106,-6025,-8105,-6028,-10322]],[[-8108,-2481,11107,-8141,-10343,-555,-2483]],[[-2411,-10328,-8135,-2538,-8138,-6079,-10330,-8124,-6076,-8127,-2504,-8131,-8128,-2519,-10338,11108,-2474,-8101,-10319,-2401,-8112]],[[-6052,-8082,-6038,-2488,-8115,11109,635,11110,-10324,-8119,-6040,-8113]],[[-6125,-2559,11111,-9568,11112,-2527,-8132,-10329,-2501,-6061,-10327,-8249,-10364,-6197,-8247,-10363,-8122,-8117,11113,-10349],[-10334]],[[11114,-10339,-2517,-6083,-8144,-10341]],[[-8142,-6085,-10335,-557,-10342]],[[11115,-8159,-6094,-8157,-10366,-8172]],[[-2542,-8162,-9566,11116,-10345,-8164,-6105,-8146]],[[-6099,-8166,-6097,-8170,-9564,604,11117]],[[-8152,11118]],[[-6123,-2554,11119,-2557,-8178]],[[-8192,-2578,-9577,11120,11121,-6120,-8186,-6118,-8185,-2568,-8184,-2571,-6116,-8181,11122]],[[-10350,649,11123,-2588,-6130,-8189]],[[-2573,-6128,645,646,647,-10351,-10352,-2580]],[[11124,-9595,11125,11126]],[[11127,-10780,11128,-2609,-8198,-6141,-8200,-10355]],[[-10368,-8212,-8209,-10367,-6147,-8204,11129,-9592,11130,-9583,-2602,-10358,-6154]],[[-2599,-10359,-2644,-8219]],[[-2652,-8228,11131]],[[-2658,11132,-6174,11133],[-10362]],[[-10336,-8155,-6194,-9537]],[[-8103,-8109,-2484,-553,-552]],[[-8235,11134,-8237,-6171]],[[-5876,-2694,11135,-5878,-8258]],[[-2708,-10370,-8260,-5907,-8256,-5905,-10369]],[[-2718,-5913,680]],[[-8267,-6207,-2725,-8264,-5917,-8266,-5915]],[[-2721,-10372,-8274,-5921,-2731,-8263]],[[-8280,-140,-139,-9617,-8284,-6218]],[[-8287,-9618,-136,-59,-58,-9619]],[[-2771,11136,-9614,11137,-10373,-5883,-2774,-8294,-2768,-8295]],[[-9612,11138]],[[-8297,11139,11140,688,-8300,-6232,-6229]],[[-10375,-6236,-8299,-9622]],[[-5894,-10376,-9624]],[[11141,-9489,-10378]],[[-9670,11142,-6237,-8303,-6247,11143]],[[11144,-6246,-8309,-6244,-8308,-10379,11145,-9491]],[[-5390,-8315,-2808]],[[-2798,-10321,-614,-613,-6261]],[[-5387,-8322,-6267,-2833,-10320,-2826]],[[-6270,-9692,-10385,-6287,-8340,-6281,-8339,-2861,-5364,-8334,-6278,-2838]],[[-2456,-8336,-8337,-5369,-8418,-6314,-2880,-629,-628,-627,-626]],[[-2886,-8351,-6320,-8355,-2895,-8364,-10393,-638,-2879,-10387]],[[-10388,-8361,-6333,-2892,-8354,-6318,-8349,-10839]],[[-2917,11146,-2930,-8373,-2926,-8372,-642,-641,-10392,-8366,-2909]],[[11147,-10401,-3002,-8400,-2997,-8402,11148,-9677,11149,-9675,11150,-338]],[[-2939,-6348,-10399,-2931,11151]],[[-8379,-9694,-340,11152]],[[-2943,-2948,-10422,-9727,11153,-9733]],[[-2973,-8385,-2955,-8387,11154,-9679,-8398,-3005,-8381]],[[-9736,11155,-8383,-2959]],[[11156,-10402,-2967,-8391,-2965]],[[-9724,11157,-3021]],[[-9714,11158,11159]],[[-10410,-3030,-9699]],[[-6379,-3036,-8405,-3039,-10412,-9700,-3032]],[[-10413,-8407,-9696]],[[-9706,11160,-9703,-3043]],[[-3045,-9702,-10411]],[[-10415,-3052,-10414,-3055,-9685,-8413,-10421,-8415,-10420,11161]],[[-3061,11162,-9687]],[[-6428,-8437,-3075,-3086]],[[-10440,-6524,-8463,-6509,11163,-3174,-6501,-8455,-6504,-3169,-6385,-3118,-10430,-6421,-8440,-6458,-8439,-10429,-8426,-6431,-8435,-6434,-8429,-3096,-6414,11164,-8431,-6439,-8434,-10428,-6452,-8436,-6450,-8468,-6518,-8467,-3116,-6447,-8465]],[[-6399,11165]],[[-6469,-8443,-6467,-3128,-6466,11166,-10432]],[[-3157,-8457,-3182,11167,-3333,-10460,-9761,11168,-3159,-10437],[-8456]],[[-3178,-8454,-6495,-8452,-6387,-3165,-6503]],[[-6515,-8460,-3198,11169,-3195,-8466,-3193,-8458]],[[-6602,-3216,-10453,-3214,-10427,-3239,-10442,-8472,-3244,-8469,-3230,-10441]],[[11170,-3293,-8486,-3285,-8487,-3283,11171,-10447]],[[-607,11172,-10445,-6575,-10448,-9524]],[[-9747,11173,-6597,-10450,-3321,-10452,11174,-9743,11175]],[[11176,-10451,-3324,-3323,-3328,-6593,-8489,-3295]],[[-9752,11177,11178,-10457,11179,-8502,11180]],[[-6482,-10436,-3145,-6490,-8451,11181,-10462,11182]],[[-6545,-8475,-3314,-3313,-8470,-6554,-3260]],[[11183,-8509,-6623]],[[-8530,-6662,11184]],[[-9605,11185,-8521,-6647,-3366,-6671,-8528,11186,-10470,11187]],[[-9608,-10475,11188]],[[-8544,11189,719,720,-6685,-10476,-8539,-6688,-8541,725,11190,-3381]],[[-3394,-6694,-8546,-6692,11191]],[[11192,-6704,11193,-3398]],[[11194,-3390,11195,-9771]],[[-9780,11196,-10479,-8554,-6710,-8550]],[[-9777,11197]],[[-8558,-10481,-3409,11198,11199]],[[11200,-3411,-10483,11201]],[[-6715,-8560,11202,-8564,11203,-9800,-3421,-6717,-3419]],[[11204,-3416,-9799,-6718,-3424,-9798]],[[-10490,11205,11206,-10491,-6725]],[[-6728,-9791,-10488,-6722,-10493,-3427,-9792]],[[11207,3437,11208,-9796,-10495,-8574,-3431,-6731,-8578,-3435]],[[-9813,-10498,11209,-3448,-9815,-10500,-3445]],[[-10504,-9804]],[[-10501,11210]],[[-10507,11211,-9784]],[[-9806,-10503,-6738,-3457]],[[-8585,-6625,-703,-702,11212,-3466,-6629,-3464,-6628],[-6740,6739,11213]],[[-4415,11214,-8595]],[[-8597,-6748,11215,-10841,-4418,-8598,-3495]],[[749,-9832,11216,-9830,11217,-10512,-3502,747,-10511]],[[11218,-10514,-3516,-6753,-10508]],[[11219,11220,-3529,-8607,-6770,-8646,-6823,11221]],[[-3530,-6776,-8610,-8613,-6779,-8612,-6757,11222,-10846,11223,-10521,-8614,-10519]],[[-10520,11224,-10529,-8620,-3538]],[[-3560,11225,-10533,-3555,-10531,11226]],[[11227,-10541,-3583,-10539,-6814,-8644]],[[11228,-6824,-10545,11229,11230]],[[-3598,-6766,-8649,-10524,11231,11232]],[[11233,-10546,-8656,-4368,-3618,-4367,-8659,-4365,11234]],[[-3641,-8672,-4424,11235]],[[-3626,-9858,-4429,-8671]],[[-10552,-8664,-10551,-3657,-9657]],[[-3637,-8668,11236]],[[11237,-10553,-9673,-10557,762,763]],[[-3655,-4380,11238,-9658]],[[-4376,11239,-4378,-8677]],[[-3616,11240,-4372],[6845]],[[-10558,-3675,-3668,-8679,-6847,-3665,11241,-9661]],[[-10563,11242,-6854,-3677,11243,-3663]],[[-8680,-6852,-3684,11244,-9663]],[[11245,-10572,-3699,11246,-8692,-3696,-8691,-10569,11247,-9835]],[[11248,-10570]],[[11249]],[[-3708,-10567,-3706,-8694,-3717,-10565,-6867,-9837]],[[-10574,-3718,-8695,-3704,11250]],[[-3721,-6857,-10564,-8697,-3713,-10576,11251,-761,-760,11252,-3727,-10577],[-8696]],[[-3743,-8700,11253]],[[-10580,11254,11255]],[[-10584,11256,-10578,-8701,-3745,11257]],[[-9865,11258,11259,-3762,11260]],[[-10588,11261,-10593,-6893,-8711]],[[11262,11263,-10592,-8715,-10591,-8708,-10598,11264]],[[-3775,-10590,11265,-9862,11266,11267,-10587]],[[-10595,11268,-10597,-3786,-10603,11269,-10604,-3759,-3770,-8713]],[[11270,-9870,11271,11272,11273]],[[-6901,11274,11275,-10600,-8717]],[[11276]],[[-10859,11277]],[[-9878,11278,-6906]],[[-3797,11279]],[[-10612,-6923,-8732,-9632,11280]],[[11281,-10618,-8747,-10622,-8740,-3830,-9639]],[[-3835,-6951,-8745,-10620,-9636,11282,-3826,-6938,-6947]],[[-9641,-10621,-6941,-8738,-6936,-10616,-3823]],[[-10623,-3840,-6954,-9654]],[[-8752,11283,-513,-9322]],[[-9323,-515,11284,-10624,-8748,6955,-8750,-6959,-6967,-10626]],[[11285,-3846,-6963,-6958,-8754,-9321]],[[-9325,-10628,6967,11286]],[[-10634,-9318,-3851,-6978,-8757,-3864,-10630,11287]],[[11288,-3868,-6975,-8759,-6973,-9317,-436]],[[-10648,11289,-3872,-8762,-3877,-10636,11290]],[[-3896,-6998,-8766,-6996,-8769,11291,-8771,11292,-3850,11293]],[[-9329,-6991,11294]],[[11295,-9332,11296,-10642,-7006,-8777,-7004,-10643,11297,-10646,-3924,-10650,-3928,-10645,11298,-9429,11299,-9443,11300,-10657,11301,-9441,-10651,11302,-10654]],[[-10637,-3878,-10631,11303]],[[-10652,-9439,11304]],[[-8783,-7029,11305,7025,11306,-9336]],[[11307,-3947,-8998,-712]],[[-8997,11308,-8788,-7038]],[[-8794,-7071,-8798,-7069,-10664,-9774,11309]],[[-8994,11310,-7082,-8805]],[[-7065,-8807,11311,-3994,-10661,-8801]],[[-3992,-7077,-8803,-10663,11312]],[[-8813,-4006,11313]],[[11314,-8989,-8814,-4010]],[[-7094]],[[-10669,-7101,-8819,-7106,-10670,-9066]],[[11315,-4035,-10668,-9084]],[[-10673,-7110,-10672,-93,-92,798,11316,-9082]],[[-9886,11317,11318]],[[-8828,-9023,11319,-10678,11320,-4049]],[[-9893,11321,11322]],[[-9142,11323,-4055]],[[-4091,-10685,-8843,-7127,-4067,11324,-4062,-10682,-9139,11325,-8847,-10686,11326],[-7138,-8848]],[[-8842,-7140,-4074,-7129]],[[11327,-9910,11328,-7157]],[[11329,-4095,11330,-10689]],[[11331,11332,-9903,-7166,-8857,-4098]],[[-9921,11333]],[[-8860,-7159,11334,-4106,-7161]],[[-9908,11335,-9912]],[[-4124,-8870,-9918,11336,-9916]],[[11337,-10693,-7176,-8865,-9915,11338,-9906]],[[-10702,11339,11340,-10705,-4136,-8875,-4133,-10695,-4132,-10696,-8876,-4138,-10707,11341,-8980,-10708,-4140,11342]],[[11343,11344,-10699]],[[11345,-8877,-10703,11346,11347]],[[-9934,-7190,11348,-4160]],[[-10710,-7196,11349,-9938,-10712,-4146]],[[-10713,-7213,-8895,11350]],[[-10715,-7206,-8898,-7204,-8890,-4180,-8899,-7229,-8900,-7234,11351]],[[-8901,-4181,-7223,-9944,11352,-9381,11353,-7225]],[[-10719,11354,-9945,11355,-4244,-10722,-8910,11356,-4198,11357,-8902,-7238,-8904,-7236,-4189]],[[-7273,-1522,11358,-407,11359,-4219,-8915,-10723]],[[-4252,-4246,11360]],[[-4250,-8920,-10725,-4241,-7277,-4232,-10721,-8916,-7279]],[[-8926,-8929,-10728,-4260,-670,-669,-9652,11361]],[[11362,-7304,-9649]],[[-8942,11363,-9645,11364]],[[11365,11366,-8945,-7320,-8943,-7316,-4273,11367,-803,-802,-801]],[[-805,11368,-10732,11369,-806]]]},{"type":"MultiPolygon","id":"3","properties":{"density":3},"arcs":[[[-1074,-9987,-10909,15,-10865,-7347,-4287,-845,-4286,-839,-7338,-831,-7334,-824,-7332,-4338,-812,12,13,-9988]],[[-10868,-9951,-7353,-10867,-7345,-10866,-8955]],[[-7349,-4297,-4295,-7357,-4356,-7358,-4354,-7359,-7365,-10869,11370]],[[-742,-741,-740,11371,-39,-10735,11372,-10738,11373,-10870,-876,-4349,-872,-4363,-4443,36,-4442,-10549,-8661,-6840,-3621,-4426,-3642,-11236,-4423,-8673,-4421,-743]],[[-7376,-902,-10734,-906,-4486,-7377,-4487,-7378,-9957,23,11374,-8958,-891]],[[-4309,-7344,-9948,-8952]],[[11375,49,50,51,-9007,-9962,-9005,-54,-9004,-9979,-10895,-9002,106,107,55,56,57,-8967,11376,-10873,-9961],[-10874]],[[-9012,-10879,-912,-10875,-7383,-4502,-7392,-9963,-7389,-10877,-9054,-10880,11377]],[[82,-9062,-10878,-9010]],[[-9058,-9966,-946,-9056,-10876]],[[-9038,-10884,-9971,-10886]],[[-7399,-955,-7404,-4522,-7403,-9973,-10888,-9032]],[[-9978,-10887,-9975,-9035]],[[-10889,-9050,92,93,-9080,-7407]],[[-10892,11378,-10890,-7405,-4525,-9079,11379]],[[-10896,-8973,100,11380,-10697,-11343,-4143,-8978,-103,-8977,-10894,-8975]],[[-968,-7414,126,127,128,-10900,-7419,-981,-10898],[-10897]],[[-1003,-10905,117,118,-997,-9984,-7457,-10902,-7431,-4577]],[[-10910,-9094,-10911,-1064]],[[-10901,-990,-989,-988,-4551,-7424,-4549,-4540,-7455,-9996,-10899,-9087,-1105,-7459,-1099]],[[-9998,-4327,-7467,-1113,-9997,-7461,-4635,-10906,-4572,-7430,-1011,-10912,-9992,-10913,-5,-4334,-10914]],[[11381,-9100,-10918,-9098,11382,-10917],[10004]],[[-7476,-10921,-10009,-9108,-10006,11383]],[[-10920,-10010,-10919,-10030,11384,-47,-9111]],[[-9548,-10753,-11098,-10751,-149,11385,-9117,-10749,11386,-8968,-60,135,136,-10014,-7481,-10924,-10017,-10923,-10025,-1190,-10028,-10926,-1187,-10024,-10927,-7485,-10021,-1181,-10018,-10925,-10012,-9114,-10922,-147,-10301,-11076]],[[-10764,-153,11387,-10746,-10745,11388]],[[-10934,-9160,11389,-9150,-1252,-10043,-10936,-9148,-10939,-1258,-10941,-10051,-4754,-10942,-7518,-1262,-200,-199,-198,-10938,-8833,-7120,-10680,-10937,-196,-195,-9143,-4053,-8829,-7117,-8835,-4056,-11324,-9141,-4063,-11325,-4070,-10683,-9181,-298,-9198,-8830,-9197,-296,-205,-204,-203,-202,-1270,-7521,-9196,-10045,207,-9194,-7643,-1453,-10090,-10995,-10091,-9190,11390,-9127,209,-9126,-10039,-9123,166,-10931,168,-10038,-7498,-1217,-10928,-1197,-1201,-10032,-1206,-4705,-7493,-1213],[-7522,-10046],[-1272],[-1263],[-4926,-7641,-4927,-1450],[-10036,-10930,-1264,-4757,-1268,-4755,-1266,-10033,-4723,-10929]],[[-7505,-10932,-177,-176,-9122,-1902,-10178,-9120,-7840,-5549,-1899,-5548,-11022,11391,178,-9162,-10933,-7506,-4677]],[[-10935,-4694]],[[-9146,-10940]],[[-9179,-10791,-9155,11392]],[[-10790,-9157]],[[-10049,163,-9132,11393,-4768,-7530,-10944,-9209]],[[224,225,-9020,-1289,-10946,11394]],[[-10947,-1287,-10052,-9018,11395]],[[-7541,-1317,-9228,-10957,-7554,-4792,-7558,-10064,-9225,11396,11397,-7549,-10061,-7546,-1327,-10055,-1331,-7544,-10952,11398,-9219,-10950,-7538,-1298,-7536,-10956,-10063,-1305]],[[-10955,11399,-7547,-10060,-1332,-7552,-4787,-10058,11400,11401]],[[-1349,-10960,-7576,-1352,-10065,-7570,-1343,-9241,-7572,-9240,11402,-9239,-10961,11403,-7574,4807,11404,-9242]],[[-9247,11405,-10773]],[[-1360,-10068,11406]],[[-9255,11407,-10968,-7591,-10073,-10967]],[[-10971,-7602,-1395,-7595,-4856,-7596,-4854,-10970,-4842,-10075,-10969,-9258],[-7636,-10088,-7640,-10994]],[[11408,-7607,-10077,11409,275,276]],[[-9271],[-4881,-7613,-4885,-7611,-4883,-7612]],[[290,291,292,11410,-10080,-4898]],[[-9273,-10975,11411]],[[11412,-10978]],[[-10982,-7620,-10981,11413,-10980,11414]],[[11415,-10986,11416,-1415,-10084,261,11417]],[[11418]],[[11419,-1425,-7625,-1430,-10988,270,-9278]],[[-9283,-1424,-9282,11420,-9289,11421]],[[-9287,265,11422]],[[11423,-10989]],[[-9261,11424,-1441,-10992,11425,-9263,-10993],[-1436]],[[-9129,-4924,11426,-214,-213]],[[299,-4943,11427,-9187],[-7650,-4940,-7651,-4938]],[[-1475,-10096,11428]],[[-9350,-7656,-10099,-10999,-10100,-10105]],[[-1473,-7653,-10097,-1478,-10997,-10106,-10102,-7660,-9298,-10107,-9296]],[[-9339,313]],[[-9359,-10108,-9363,-4955,11429,-9368,324]],[[-7734,-5401,-7737,-1673,-7736]],[[-5269]],[[-7784,-5074,-10811,-9406]],[[-11007,-1792,-10141,-9412,-10147,11430,-7803,11431,-11008,-9375]],[[-10145,-9378]],[[-10817,-9383,-7806,-5479,-1824,-5478,-1822,-9280]],[[-10813,-11012,-10163,11432,-9396,11433,-273,-9281,-5489,-7810,-5500,-7816,-1847,-7817,-5502,-1852,-9389]],[[-1838,-10159,-1836,-10158,-5505,-7819,-5510,-7818,-1844,-10818,-9387,-10149,-11011,11434,-9391]],[[11435,-10161,-7823,-11014,-10165,-1856]],[[-10852,-9932,-7189,-9931,-10851,-9401,414,-9400,-10169,-5525,-1877,-10173,-5533,-5531,-10172,-11003,-5156,-7681,-1525,411,412,-10726,-8922,-7283,-8924,-7285,-7270,-8921,-7268,-10724,-4256,-7282,-8918,-4248,-11361,-4245,-11356,-9946,-11355,-10718,-8891,-4161,-11349,-7193,-8880,-9933]],[[-7685,-5320]],[[-7697,-5305,-7703,-5303]],[[-10115,-5140,-7689,-5142]],[[-11018,-9167]],[[-9173,11436,-9177,-10174]],[[11437,-9164,11438,-11019]],[[11439,420,421,11440,-11023,-1898,-7843,-1894,-10177,-9118],[-7838,-5544,-1885,-11024]],[[11441,-10181,-5563,-10184,-9423]],[[-11028,-9426,-1934,-9417,-10191],[-7863]],[[11442,-9421,11443]],[[-11030,11444,-11033,11445]],[[-9170,11446,-9445,11447]],[[-10825]],[[-11035,11448,-9451,-7880,-10194]],[[-11037,11449,-9456,-11039,-10196]],[[11450,-9292,-10202,11451,-11040,-9458]],[[-11044,-9449,-11042,11452]],[[11453,-9462,11454,454,11455,-9436,11456]],[[11457,-9466]],[[-7890,-10204,-9341,11458,-9464,11459,-10200,-7892,-1995,-11046,-5615,-1999]],[[-9290,-10203,-7888,-10199]],[[11460]],[[-8988,-11050,-7898,-11048,-2001,-5618,-7893,-11047,468]],[[11461,-9766,-4004,-10666,-9765,-10665,-9879,-7076,-3993,-11313,-10662,-7084,-3995,-11312,-8806,-7083,-11311,-8993,11462,-7081,-8810,-8990,-11315,-4009,-7093,-8817,-7091,-4018,466,-11049,-7896,-9471,11463,-9206,464,-9205],[-2009]],[[-10207,-7904,-5625,-7902,-5624,-7901,-2013,-11053,11464,-9469,-11051,-8987,11465,-9480,-10210,-2018,-7906]],[[11466,-2044,-5646,-2040]],[[-2033,-10209,-7911,-10211,-9478,11467,-9473,-5638]],[[11468,-10213,-2046,-11056]],[[-9482,-7918,-5649,-10217,11469]],[[-5664,-2097,-10222,-2058,-10221,-11059,483,484,-9485,-11058,-5660,-7925,-9506,-10232,-11070,11470,-11061,-7942,-11060,-10219,-2099]],[[-9497,-10227,-7929,-2082,-5690,-2080,-7936,-5694,-10237,-7939,-2092,-9504,-10223,-2061,-10224,-9502,-11064,-9500,-11066,-2065]],[[-2063,-11065,-9498]],[[488,-9510,11471,-5668,11472,-9493]],[[-11068,-5695,-10233,-2095,-10826,-10236]],[[-9315,-10242,-11071,-9516,-7952,-5714,507,508,-8726,-3804,-4624,-8725,-4632,-109,11473,781,-511]],[[-10243,-7954,-9310,-2112,-7949,-9312]],[[-10903,-501,-9515,-11073,-10238,-11072,-9307,11474,-499,-9643,-10614,-3817,-8728,-10613,-11281,-9631,-10904,-10610]],[[-9346,-10245]],[[-11074,-9348,-10244,-7957,-10246,-9344]],[[-9521,-527,11475,-9545,-10309,528,529,-11075,-7962,-11078,-11077,-10306,-8074,-11102,-10297,-11099,-10295,-11100,-10304,-2380,-8071,-2390,-10313,-9540,11476,-589,-807,-11370,-10731,-4280,-8951,-7328,-8950,-7324,-8947,-9048,590,534,-9047,536,-9046,-11080,-2134,-2133,-7964,-2136,-11082,-10258,-11081,-10255,-11079,-10248,-11084,-10252,-11083]],[[-10261,-11086,-9043,11477,-9519,-11085,-10262,-2149]],[[-11087,-10270,-11089,11478]],[[11479,-10267,11480,519,-9543,-11097,-5851,-10759,-11095,-10757,-10293,-10756,-11104,11481,-10743,-9551,11482,-523,-522,-7969,-10268]],[[-5021,-7979,-5023,-11091]],[[-10273,-7972,-11006,542,-10124,-6252,-8314,-6259,-10323,-610,-548,-547,-546,-545]],[[-10279,-7997,-2219,-10277,-9529,-10828,-7983,-5740]],[[-11092,-10284,-5804,-2272,-11093,-2287,-8013]],[[-7789,-5842,-8045,-5058,-8042,-5056,-8041,11483,-5070]],[[-8046,-5060,-8044,-5847,-8043,-5844]],[[-9553,11484,-9555,-10315],[-11105]],[[-10832,-11106,-10830,11485]],[[11486]],[[-9559,11487]],[[-8107,-2476,-8102,-5991,-2475,-11109,-10337,-11115,-10340,-8139,-11108,-2480]],[[634,-11110,-8114]],[[-8116,-10325,-11111,636,637,638,-9578,-2583,-8190,-6134,-10353,-8193,-11123,-8183,-10348,-11114]],[[-2528,-11113,-9567,-8160,-11116,-10333,-2534,-6069]],[[-9565,-8168,-10346,-11117]],[[-11177,-3294,-11171,-10446,-11173,606,607,-9538,-8153,-11119,-8151,-10365,-8149,-10344,-6100,-11118,-605,-604,11488,-9744,-11175]],[[-10331,-8175,-10347,-2546,-10332,-8176]],[[-11120,-2553,-8179,-6121,-11122,11489,-9569,-11112,-2558]],[[-2590,-6138,-8194,11490,-11127,11491,-9573]],[[11492,651,11493,-8195,-6136,-2585,-11124,-650,-649,-648,-2921,-10396]],[[-9571,11494]],[[-9590,-8253,-2604]],[[-9713,656,-10781,-11128,-10356,-2607,-8199,-2610,-11129,-10779,-9585,-8245,-9584,-11131,-9591,-655,11495,-11159]],[[-9593,-11130,-8203,-10357,-6151,-8207,-9579,11496]],[[-10360,-10778,-244,-243,-242,-241,-240,600,11497,-9581,-8224,-6164,-2625,-8226,-2638,-8227,-2636,-8215,-2649,-8214,-2623,-2653,-11132,-8230,-6168,-8229,-2650,-11134,-6173,-8236,-11135,-8234],[-6187],[-10361]],[[-2657,-8251,-11133]],[[-2492,-8243,-6049,-8121,-2668,-10326,-2409,-6034]],[[-11362,-9651,-791,-4262,-7297,11498,-9647,11499,-9073,-7310,-8937,-7308,-8938,-7306,-9071,-797,-796,-684,11500,-10834,-8268,-2713,-8270,-2711,-682,-681,-2702,-5901,-4258,-5900,-10727,-8927]],[[-11136,-5875,-8292,-5873,-2762,-6226,-2765,-9616,-8289,-6223,-8291,-9615,-11137,-2770,-2691,-2690,-2689,-5879],[-6224]],[[-9611,-11140,-8296,-6227,-9623,-691,-690,-689,-11141,-9610,-9609,-11189,-10474,-9606,-11188,-10469,-11187,-8527,-3372,-8524,-10471,-6664,-8529,-9628,692,-9627,-5887,-2782,-5886,-8293,-2780,-10374,-11138,-9613,-11139],[-3376,-6682,-8537,-10473,-8534,-10472]],[[665,-9656,694,-9655,664]],[[-8304,-6238,-11143,-9669]],[[-10585,-11258,-3744,-11254,-8704,-3734,-6877,-3728,-11253,-759,697,-9671,-11144,-11145,-9490,-11142,-10377,-9487,-11063,-482,-481,-480,-6875,-3750,-10582,-3748,-6887]],[[-6380,-2830,-6266,-10381,-8320,-5383,-8319,-10383,-8328,-10382,-5376,-8332,-5374,-2857,-10384,-6274,-621,-620]],[[-10391,11501,-10394,-8368,-2928,-11147,-2916,-6328]],[[-251,-10786,11502]],[[-2940,-11152,-2935,-6346,-10400,-11148,-337,11503]],[[-11150,-9676]],[[-11151,-9674,-8380,-11153,-339]],[[-11155,-8386,-2953,-8384,-11156,-9735,11504,-9680]],[[-11149,-8401,-2995,-8396,-6373,-8399,-3009,-9678]],[[-3022,-11158,-9723,-10782,-9711,-10409]],[[-3018,-10404,-10408,-3025,-10407,-10405,-3016,11505,-9717,-10406]],[[-11161,-9705,-3051,-9704]],[[-9695]],[[-10418,-9683,11506]],[[-9729,-10423,-2950,-6352,-10424,11507]],[[-8416,-2945,-9732,11508,-10425]],[[-9738,-10403,-11157,-2964,-8390,-2985,-8393,-10398,11509]],[[-10769,-9741,11510,-660]],[[-10461,-11182,-8450,-3160,-11169,-9760,11511,-8441,-6463,-10431,-8448,-6483,-11183]],[[-8462,-10439,-3196,-11170,-3197,-6513,-3208,-10454,-8494,-6598,-11174,-9746,11512,-9748,-11181,-8501,-11180,-10456,-8499,-3332,-10455,-8498,-10458,-11179,11513,-9755,-10459,-6614,-3334,-11168,-3181,-10438,-3186,-8453,-3171,-11164,-6508]],[[-11172,-3282,-10443]],[[-566,-565,-564,-563,-562,-561,-9526,-10449,-8483,-6572,-10444,-3274,-8478,11514]],[[-9742,-11176]],[[11515,-9757]],[[11516,-9750]],[[-3342,11517,-3344,-6618]],[[709,11518,-9000,-3941,-7032,-11308,711,712,713,714,715,716,717,-10658,-3951,-10659,-3958,-8793,-7056,-8792,-3962,-7061,-3955,-720,-11190,-8543,-3395,-11192,-6691,-8545,-3385,-10467,-6698,-10466,-8517,-6649,-8522,-11186,-9604],[-8538,-3378]],[[727,-9772,-11196,-3389,-8542,-3382,-11191,-726,-725,-724,-3957,-7062,-3965,-10660,-8795,-11310,-9773]],[[11519,-10468,-3391,-11195,-9770,-10477,-6699,-11193,-3397]],[[-3399,-11194,-6703,11520,-28]],[[-494,-3401,-9787,11521]],[[-8551,-3407,-8553,-9781]],[[-10505,-9782,-3405,-8556,-6713,-10480,-11197,-9779,11522,-9788,-8581]],[[-10492,-11207,11523,-9809,-10496,-3440,-10494,-9794]],[[-9785,-11212,-10506,-8583,-10502,-11211,-3453,-9802,11524]],[[-3522,-10518,-9827,-3493,-10513,-11218,-9829,11525]],[[-6631,-8588,-4408,-8591,-3478,-9825,-10517,-8601,-10515,-11219,-10510]],[[-11217,-9831]],[[-10847,-11223,-6772,-3526,-11221,11526]],[[-10845,-9844,-10527,-11225,-10522,-11224]],[[-9852,11527]],[[-10535,-3562,-10534,-11226,-3559,11528,-10849,11529,-3557]],[[-3581,-8632,-6799,-8636,-10536,-8633,-9818]],[[-9821,11530,-9855,-11228,-8643,-6811,-8645,-6812,-10538]],[[-11222,-6822,-10542,-11229,11531]],[[-34,-33,11532,-11235,-4446]],[[-749,-748,-747,-9859,-4394,-8676,-4392,-3645,-10555,-3650,-10556,-8674,-4390,-8675,-4388,-8670,-3638,-11237,-8667,-10554,-11238,764,-751,-750]],[[-11239,-4379,-11240,-4375,-8678,-4373,11533,-3671,-10559,-9659]],[[-11242,-3664,-11244,-3676,-9662]],[[-9664,-11245,-3683,-8682,-6850,-8683,-6855,-11243,-10562,-3661,-10560,11534,-700]],[[-11248,-10568,-3709,-9836]],[[-753,-9833,-763,-762,-11252,-10575,-11251,-3703,-10566,-3702,-8689,-11247,-3698,-10571,-11249,-10573,-11246,-9834],[-11250]],[[-10583,-6872,-3694,-6871,-3692,-476,11535,-11255,-10579,-11257]],[[-11265,-10599,-10586,-8705,-3763,-11260,11536]],[[-8720,-10601,-11276,-11273,11537,768,11538,-9882,-10675,-8824,-10674,-9889,11539,770,11540,-9866,-11261,-3761,-10605,-11270,-10602],[-11277]],[[-11268,-11274,-11275,-6900,-10596,-11269,-10594,-11262]],[[-9861,11541,-9868,-11271,-11267]],[[11542,-9863,-11266,-10589,-11264]],[[11543]],[[-3788,11544]],[[-3792,-6903,-10607,11545,-9874,11546]],[[-6907,-11279,-9877]],[[-8722,-3812,-10908]],[[-10619,-11282,-9638]],[[-8737,-3827,-11283,-9635,-10615,-6940]],[[-11285,-514,-11284,-8751,-10625]],[[-8764,-3897,-11294,-3849,-9326,-11287,-6968,-10627,-8755,-6964,-3847,-11286,-9320,-10633,-3890,-8765,-6985,-3887]],[[-10635,-11288,-10629,-3869,-11289,-435,-434,-9430,-11299,-10649,-11291]],[[-6993,-9328,-517,-9327,-11293,-8770,-11292,-8768,-10639],[-3901,3900,11547]],[[-11295,-6990,-3903,-10640,-8774,-7013,-7012,-7011,-3914,-7019,-8780,-7022,-7021,-3922,-10641,-11297,-9331,-3934,-8781,-3936,-9330]],[[-11298,-10644,-8778,-7001,-10638,-11304,-10632,-11290,-10647]],[[-9333,-11296,-10655,-11303,-10653,-11305,-9438,11548]],[[-11302,-10656,-11301,-9442]],[[11549,-9337,-11307,-7026,-11306,-7028,-9335,-452]],[[-11300,-9444]],[[9433,-9434,11550]],[[-3949,-7041,-8789,-11309,-8996,-3980,-7043,-8791]],[[-7045,-3982,-8995,-8804,-3975,-8797]],[[-10671,-4028,-10667,-9068]],[[-9083,-11317,799,800,-8818,-7104,-4031,-11316]],[[11551,-9884]],[[-11321,-10677,-11320,-9022,11552,-9887,-11319,11553,-4045,-9025,-81,-9024,-4050]],[[-11322,-9892,11554]],[[11555,-11332,-4103,-10691,-9901,-11328,-8854,-7155,-11330,-10688,-4092,-11327,-10687,-4084,-8845,-11326,-9138,-7125,-10681,-9136,11556,-9899]],[[-10684,-8840,-4082,-8852,-7148,-8851,-10690,-11331,-7153,-8855,-7165,-8853,-7163,-9184]],[[-4107,-11335,-7158,-11329,-9909,-9911,-9185]],[[-4110,-9913,-11336,-9907,-11339,-9914]],[[-10692,-11338,-9905,11557,-9919,-8868,-7183,-8867,-7181,-8866,-7171,-4113],[-7170,-4109]],[[11558,-10694,-9925]],[[-11337,-9917],[-4130]],[[-11345,11559,-11348,11560,-10700]],[[-11342,-10706,-11341,11561,-10861,-8981]],[[-8983,-10863]],[[-8883,-9939,-11350,-7195]],[[-4166,-8897,-7216,-4171,-9840,-10711,-9935,-4158,-7201,-10714,-11351,-8894,-7211,-8896]],[[-9382,-11353,-9943,-10720,-4191,-7240,-8903,-11358,-4203,-8905,-4197],[-4193]],[[-11357,-8909,-7253,-7242,-8908,-4199]],[[-11360,-406,-405,-404,-403,-402,-401,-400,-399,-398,-5469,-4220]],[[-1521,-410,-409,-408,-11359]],[[-11368,-4272,-7323,-7326,-8949,-4277,-10730,-11369,-804]],[[-90,-9049,-4267,-7318,-8944,-11367,11562]]]},{"type":"MultiPolygon","id":"1","properties":{"density":1},"arcs":[[[-3396,26,27,-11521,-6702,-8548,-6707,-10478,-9768,729,29,765,-9767,-11462,-9218,-11314,-4008,-461,-9217,-11055,-9215,-2038,-7914,-2045,-11467,-9214,155,156,-9211,-10945,-4769,-11394,-9131,-1281,-9130,211,212,-9202,-10943,-10048,-7527,-1279,-9200,-7525,-9199,217,-305,491,492,493,-11522,-9786,-11525,-9801,-11204,-8563,-10486,-3412,-10485,11563,-11199,-3408,-11201,11564,11565,-9494,-11473,-5669,-11472,-9513,5675,-10225,-5674,-10226,-9511,490,219,456,457,-701,-11535,-10561,-3672,-11534,-11241,-3615,-10547,-11234,-11533,-32,-8959,-11375,24,-131,-130,-129,-9629,-8531,-11185,-6661,-8516,-3358,-8515,-10464,-8512,-3365,-6678,-10465,-11520]],[[-11387,-10748,63,44,45,46,11566,-10739,-43,47,48,-11376,-9960,-10872,-11377,-8966,-62,-8965]],[[-97,64,-9077,-4532,-9076,-7411,-9075,-69,-9074,-11500,-9646,-11364,-8941,-11365,-9644,496,497,498,-11475,-9306,309,-9305,-11001,-9303,-11000,-1483,-9301,-308,-307,-9300,-10103,-1480,-7663,-10998,-9354,71,-9353,-10996,-1476,-11429,-10095,-9294,317,-9293,-11451,-9457,-11450,-11038,-9453,11567,11568,-11397,-9224,-7560,-9223,-10958,-9221,-236,-9220,-11399,-10951,-7542,-1323,-7545,-11400,-10954,-10056,-10953,-11402,11569,-135,-9103,-10003,-11383,-9097,11570,11571,11572,-335,-10800,-333,-332,-10803,-9366,-10109,-9360,-326,-325,-324,-10833,-11486,-10829,-594,-9872,-592,321,-9367,-11430,-4954,-9362,-10802,11573,11574,11575,518,-11481,-10266,-11480,-10272,-11088,-11479,-11090,-524,-11483,-9550,-10742,-9546,-11476,-526,-9520,-11478,-9042,-540,-539,-9041,87,-9040,-10885,-9029,-9968,-937,-9965,-10883,-932,-10882,-9063,-85,-84,-9009,-4043,-11554,-11318,-9885,-11552,-9883,-11539,-769,-11538,-11272,-9869,-11542,-9860,-11543,-11263,-11537,-11259,-9864,-775,-9867,-11541,-771,-11540,-9891,-8821,-7113,-10676,-9888,-11553,-9021,-225,-11395,-10948,-11396,-9017,-10949,-10053,-9014,77,-9013,-11378,-10881,-9052,-10891,-11379,-10893,-11380,-9078],[-9896],[-596,-9557],[-9369],[-11487],[-11485,-9556],[-11544],[-3787,-10606,-3789,-11545],[-9871],[-10214,-11469,-11057],[-3794],[-9560,-11488,-9558,-11002,328,-9562,-11107],[-11280,-3798],[-9875,-11546,-10608,-6904,-3793,-11547,-9873,-780],[-11323,-11555,-9894],[-9230],[-9895,230],[-11034],[-11278,-10858,132,227,-10860],[-75,-9086],[-450,807,772,-10822,232,-10824,-448,-10823,319,222]],[[-10741,-8971]],[[148,149,-10750,-9115,-11386]],[[-11388,152,-10763,-1133,-7477,-11384,-10007,-9106,-10747]],[[-11448,-9446,-11447,-9169,424,-11017,-9165,-11438,-11020,-11439,-9163,-180,-179,-11392,-11021,-11441,-422,-9474,-11468,-9477,439,-9476,-11466,-8986,470,-442,-8985,444,445,429,473,-10862,-11562,-11340,-10701,-11561,-11347,-10704,-8878,-11346,-11560,-11344,-10698,-11381,-101,-100,-99,-41,-40,11576,-10795,247,-10794,-10070,-10793,-187,-186,-9483,-11470,-10216,-2052,-9481,431,-184,-10792,-9180,-11393,-9154,181,-9153,-11437,-9172,-428,-9171],[4814,4814,4814],[-2035],[-10069,-1358,-4817,-4816,-1361,-11407]],[[-9159,-10789,-9151,-11390]],[[-9243,-11405,-7575,-11404,-10964,-4811,-1357,11577,237,-9763,11578,-9758,-11516,-9756,-11514,-11178,-9751,-11517,-9749,-11513,-9745,-11489,-603,-9572,-11495,-9570,-11490,-11121,-9576,-10354,-9574,-11492,-11126,-9594,-11497,-9582,-11498,-601,239,-10067,-10966,-9234,-10776,-10962,-9237,-10959,-7569,-9235,-11403],[-9244],[-7563,-4799,-7564,-4797,-7565,-1342],[-9753]],[[242,-10777,-9232,-10965]],[[-10797,-9248,-10796,256]],[[-11227,-10530,-8629,-10532,-3558,-11530,-10848,-11527,-11220,-11532,-11231,11579,-9823,-10540,-8642,-3606,-6806,-9853,-11528,-9851,-11531,-9820,-10537,-8638,-3570,-6791,-8631,-3566,-9850,732,733,-9816,-3449,-11210,-10497,-9807,-11524,-11206,-10489,-9789,-11523,-9778,-11198,-9776,282,283,-10799,-215,-11427,-4923,-9128,-11391,-9189,-1467,-9188,-11428,-4944,-9186,-9928,-8862,-9927,-11559,-9924,302,285,-10974,-10081,-11411,293,294,-255,-9276,-253,-252,-11503,-10785,-260,-10984,-7622,-1416,-11417,-10985,-11416,-11418,262,-10784,-9709,-10783,-9721,-10838,-9681,-11505,-9734,-11510,-10397,-2936,-11504,336,337,338,339,340,-11004,-10805,-1646,-11005,-10122,-1661,-10806,-1705,-7754,-10132,-7758,-1714,-10135,-10807,-10133,-1614,-10119,-9414,-1492,-10112,-9403,-7675,-5173,-7674,-5171,-1503,-10170,-5527,-1864,-7830,-10168,-11013,-10814,-9392,-11435,-11010,-1815,-10150,-9385,-10816,268,-10987,-1434,-10085,-7626,-1426,-11420,-9277,-274,-11434,-9395,417,-276,-11410,-10076,-7605,-11409,277,278,730,-10850,-11529,-3561],[-10973],[-9275],[-4893,-10079,-4895,-7619],[-9285],[-3063],[-11424,-10990],[-11422,-9288,-11423,-266,-265,-9286,-11421,-9284],[-10976,-9274,-11412],[-11415,-10979,-11413,-10977,-11414,-10983],[-11154,-9730,-11508,-10426,-11509,-9731],[-9266,-1447,-9264,-11426,-10991,-4911,-10086,-7631,-1443,-10087,-1437,-11425,-9260,-11408,-9254,-10972,-9251,-7615,-9250,-10078,-9267,-281]],[[-11419]],[[11580]],[[-7791,-1762,-7790,11581]],[[-9397,-11433,-10162,-11436,-1855,-7827,-11015]],[[-7683,408,-1520,-7684,-5152,-7682,-1532]],[[-9470,-11465,-11052,-2016,-11054,-9475,419,-11440,-9133,-165,-164,-163,-162,-161,-9207,-11464]],[[437,11582]],[[-11029,-9422,-11443,11583,-9431,434,435,-11025,-10182,-11442,-9428],[-11031,-11446,-11032,-11445]],[[451,452,-9334,-11549,-9437,-11456,-455,-11455,-9461,11584,-9460,-11041,-11452,-10201,-11460,-9467,-11458,-9465,-11459,-9340,-316,-315,-314,-313,-9338,-11550],[-11461]],[[588,-11477,-9539,-10314,-8078,-11101,587]],[[-11482,-11103,-10754,-11389,-10744]],[[-10837,-9719,-9718,-11506,-3015,-9715,-11160,-11496,-654,-9596,-11125,-11491,-8196,-11494,-652,-11493,-10395,-11502,-10390,-9688,-11163,-3060,-10417,-3057,-10416,-11162,-10419,-11507,-9682]],[[659,11585,-9601,-10770]],[[684,-10371,-2727,-6210,-10835,-11501,683]],[[-5891,-8302,-5889,-9626]],[[-9492,-11146,-10380,-9666,-10836,-487]],[[9724,9724,9724]],[[-10798]],[[-10543,-6820,-8647,-6767,-3599,-11233,11586,-6830,-10853,-3591]],[[-107,-106,-9001,-11519,-710,-709]],[[793,-8991,-8808,-7079,-11463,-8992]],[[-9070,796,797,-67]],[[-191,-190,-10788,-9900,-11557,-9135]],[[-9898,-10787,-9922,-11334,-9920,-11558,-9904,-11333,-11556]],[[11587]],[[-11499,-7296,-8934,-7294,-10729,-7292,-11363,-9648]],[[-91,-11563,-11366,-800,-799]]]}]},"counties":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","properties":{},"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,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]]}]}},"arcs":[[[18499,44899],[-38,-67]],[[18657,43678],[36,-8]],[[18693,43670],[20,-2],[4,-1]],[[18717,43667],[31,-3],[39,-1],[53,-3],[34,7],[26,6],[17,-3],[12,-6],[9,-3],[77,-44],[30,-12],[46,3],[24,1]],[[19115,43609],[66,50],[110,91]],[[19291,43750],[18,62]],[[19309,43812],[219,79],[97,221]],[[19625,44112],[8,4]],[[19633,44116],[110,104],[50,51]],[[19793,44271],[60,56]],[[19853,44327],[42,29],[-16,39],[-8,46],[-1,35]],[[19870,44476],[83,77]],[[19953,44553],[197,-13],[179,147]],[[20329,44687],[308,29]],[[20637,44716],[429,39]],[[21066,44755],[155,15],[298,194],[92,109]],[[21611,45073],[60,73],[-132,93]],[[21539,45239],[-6,71],[206,149],[167,57]],[[21906,45516],[110,106],[178,-42],[21,-5]],[[22215,45575],[31,-8],[74,-18],[34,-8]],[[22354,45541],[83,-20],[67,-14]],[[22504,45507],[279,-68],[105,-28]],[[22888,45411],[563,-139]],[[23451,45272],[710,-177],[408,-106],[259,-67]],[[24828,44922],[446,-95],[630,-200],[21,19]],[[25925,44646],[-1,12]],[[25924,44658],[-14,769]],[[25910,45427],[-8,416]],[[25902,45843],[-30,1696],[141,134],[187,60],[202,0],[75,239],[108,12],[121,129],[-27,79]],[[26679,48192],[-7,-4]],[[26672,48188],[-1910,-33]],[[24762,48155],[-1791,-48]],[[22971,48107],[-116,14]],[[22855,48121],[-226,154]],[[22629,48275],[-128,35]],[[22501,48310],[-85,39]],[[22416,48349],[-45,23],[-52,30]],[[22319,48402],[-234,-130],[-48,62],[-224,5],[-207,-73],[-383,16],[-82,44]],[[21141,48326],[-19,12]],[[44840,35301],[57,68],[-117,175],[-70,210],[-146,46],[-1,293],[-57,250],[19,115],[184,106],[101,208],[19,161],[186,217],[71,164],[40,215],[131,20],[5,201],[-127,110],[-5,240],[-126,133],[75,254],[-52,60],[-237,67],[-85,-68],[-198,121],[141,289],[-268,133],[70,44],[-84,230],[-19,11]],[[44347,39374],[-291,-225],[-292,-177],[61,-145],[-69,-355],[-117,-61],[-387,19],[-163,106],[-297,57],[-126,147],[-215,53],[-480,258],[-1261,-795]],[[40710,38256],[-321,-233],[-181,89],[1,-661]],[[40209,37451],[1,-676]],[[40210,36775],[2,-1357]],[[40212,35418],[377,-285]],[[40589,35133],[826,-610],[34,-162],[192,-189],[-8,-94],[135,-47],[16,-214],[141,-28],[134,-116],[-104,-112],[87,-80],[-3,-136],[-111,-197]],[[41928,33148],[-122,-160]],[[40209,37451],[-502,147],[-523,2],[-245,-58],[-335,165],[-131,-25],[-143,105],[-231,3],[-122,51]],[[37977,37841],[-234,76],[-296,-16],[-164,58],[-68,-52],[-350,-79],[-199,125],[-167,160],[-282,-2]],[[36217,38111],[-70,20],[-305,267]],[[35842,38398],[-107,-43]],[[35735,38355],[-296,108],[-13,104],[-340,60],[-55,77],[40,184],[-89,150],[-82,24],[-26,150],[-245,106],[-123,1],[-221,134],[-268,54]],[[34017,39507],[-172,50],[-113,106]],[[33732,39663],[-43,97],[-123,-21],[-298,48],[-94,-23],[-133,128],[-237,116],[-32,74]],[[32772,40082],[-71,104],[-227,87],[-125,185],[-180,-88],[-235,90],[-154,-60],[-180,87],[-223,-81]],[[31377,40406],[-193,-518],[-99,-274]],[[31085,39614],[10,-908],[1,-119],[11,-876]],[[31107,37711],[0,-5]],[[31107,37706],[1,-284]],[[31108,37422],[213,-117],[98,63],[405,-74],[86,-68],[157,134],[153,-57],[79,-110],[168,64],[112,-183],[100,70],[129,-154],[30,-35],[94,27],[150,-83]],[[33082,36899],[103,-22],[256,115],[221,-41],[396,141],[305,150],[82,102],[174,28],[292,132],[459,0],[253,-87],[411,6],[243,-104],[406,-76]],[[36683,37243],[24,0]],[[36707,37243],[257,-24],[348,-142],[212,-34],[355,32],[172,-115],[235,-35],[114,-202],[222,-76],[236,-452]],[[38858,36195],[342,-51],[196,6],[167,-52],[52,-172],[175,-266],[-48,-172],[104,-101],[316,-34],[50,65]],[[22911,28928],[-123,232],[-156,142],[-114,283],[75,130],[103,317],[-84,48]],[[22612,30080],[-82,137],[95,202],[137,97],[8,113],[-167,-24],[-25,85],[158,145],[93,-12],[55,209],[108,87],[44,251],[181,61],[207,-38],[91,84],[-10,188],[157,237]],[[23662,31902],[-44,128],[284,152],[-63,72],[-165,13],[-23,145],[-100,33],[-83,174],[94,171],[-54,146]],[[23508,32936],[-755,-22],[-808,-16]],[[21945,32898],[-575,-14],[-1898,-18]],[[19472,32866],[-587,-13],[-159,-5]],[[18726,32848],[-306,-171],[-336,-251],[12,-106],[-99,-172],[101,-231]],[[18098,31917],[-36,-95],[-225,-17],[-285,-253],[-216,-92],[57,-310],[-19,-163],[-107,-246],[45,-203],[151,25],[61,-65],[-43,-141],[26,-168],[-157,-47],[-38,-138],[-142,-55],[-11,-139],[-184,-29],[-63,47],[-303,21],[-42,-53]],[[16567,29796],[-534,-158],[-144,92],[-143,-41],[-139,-227],[-477,-361],[-235,-148],[2,-90],[-153,-201],[104,-315],[126,-35],[102,-130],[-13,-97],[-182,-107],[-105,28],[-100,-87],[434,8]],[[15110,27927],[609,0],[1181,24],[1234,39],[1514,23]],[[19648,28013],[609,8]],[[20257,28021],[530,8],[7,-305],[1198,32],[43,175],[-59,138],[1127,20]],[[23103,28089],[136,-572],[59,-104],[3,-447],[-48,-199],[201,-250],[1,-35],[-834,-5],[-272,71],[-195,-78]],[[22154,26470],[-71,-248],[108,-33],[-106,-114],[80,-94],[-1,-219],[155,-120],[-115,-154]],[[22204,25488],[52,-154],[178,-44],[-85,-169],[-185,-32],[352,-108],[33,-101],[147,-109],[-84,-180],[42,-164],[-100,120],[-98,-36],[35,-203],[-76,105],[-106,-42],[-117,-167],[-256,-182],[-70,-131],[85,-182],[-142,48],[-70,-52]],[[21739,23705],[-160,-140],[59,-128]],[[21638,23437],[-103,-188],[98,-92],[29,-132],[152,-185],[-37,-42]],[[21777,22798],[1174,26]],[[22951,22824],[426,1]],[[23377,22825],[652,7],[-19,-41],[271,1],[252,-188],[48,-334],[205,-303],[219,-173],[324,17],[198,10],[5,-153],[97,4],[-1,-305],[94,4],[3,-147],[164,-74],[2,-87],[122,-26],[8,-377],[87,-73],[707,10],[1,-78],[184,2],[95,-150],[262,6],[94,-78],[4,-200],[56,-33]],[[27511,20066],[302,6],[-10,380],[177,-1],[47,77]],[[28027,20528],[33,238],[89,89],[-92,62],[-55,209],[-168,-5],[-4,227],[-87,-2],[-2,157],[-92,-2],[-9,297],[89,4],[-5,303],[-89,-2],[-12,305],[88,3],[-2,151],[-155,1],[-24,152],[177,1],[-14,306],[121,3],[94,90],[79,79],[178,2],[3,155],[89,5],[-1,154],[93,1],[81,1],[-3,155],[130,3],[12,149],[171,81],[126,82],[-11,147],[165,-10],[0,153],[159,4],[24,148],[174,0],[0,153],[174,2],[16,267],[170,6],[0,154],[180,-1],[-2,153],[76,2],[72,150],[175,2],[-7,301],[189,3],[2,74],[176,3],[79,187],[113,64]],[[30790,25944],[-28,126],[-262,-2],[2,190],[-322,49],[-83,72],[-4,304],[-90,71],[-245,-4],[3,-73],[-520,-5],[1,143],[-325,-1]],[[28917,26814],[-18,-79],[-266,4],[-2,67]],[[28631,26806],[-5,162],[-91,230],[-223,112],[-57,239],[90,175],[-238,173],[-52,255],[-78,180]],[[27977,28332],[-271,183],[-68,106],[-258,21],[-116,71],[-211,-33]],[[27053,28680],[-52,1],[-113,166],[-142,7],[-272,-22],[-317,136],[-95,-60],[-189,26],[-158,-123],[-124,247]],[[25591,29058],[-58,-107]],[[25533,28951],[-280,1]],[[25253,28952],[-123,0]],[[25130,28952],[-138,-2]],[[24992,28950],[-1045,-2],[-1036,-20]],[[22911,28928],[32,-198],[108,-191],[-47,-138],[68,-81]],[[23072,28320],[85,-125],[-54,-106]],[[40710,38256],[-96,93],[-362,96],[-191,128],[-449,72],[-394,236],[-278,468],[-167,103],[-112,162]],[[38661,39614],[-27,63],[-325,296],[-186,278],[-9,104],[-157,100],[-232,359]],[[37725,40814],[-89,197],[-92,19],[-247,285],[-114,289],[-196,118],[-22,169],[-133,155]],[[36832,42046],[-83,143],[-92,8],[-111,216],[-152,229],[66,48],[-281,6],[-78,75],[-87,132],[-67,-133],[-174,154],[58,76],[-125,39]],[[35706,43039],[123,28],[102,112],[25,126],[-85,45]],[[35871,43350],[-111,48],[-24,185],[-243,151],[-99,193],[-139,-13],[-209,236],[-239,127],[-35,125],[-149,181]],[[34623,44583],[-6,-4]],[[34617,44579],[-870,-857],[-77,-114],[-761,-748],[-188,-165],[-224,-208],[-404,-445]],[[32093,42042],[-73,-71]],[[32020,41971],[-118,-115],[-337,-947],[-104,-283],[-84,-220]],[[19142,41964],[233,-33],[181,34]],[[19556,41965],[12,1]],[[19568,41966],[110,17],[114,18]],[[19792,42001],[66,18]],[[19858,42019],[188,110]],[[20046,42129],[50,77],[18,27],[18,14],[56,22]],[[20188,42269],[123,20]],[[20311,42289],[161,-28]],[[20472,42261],[334,-137]],[[20806,42124],[335,-139],[102,22]],[[21243,42007],[211,15],[393,-74]],[[21847,41948],[97,2],[251,141],[214,76]],[[22409,42167],[190,24]],[[22599,42191],[225,-23]],[[22824,42168],[151,-69],[71,-121]],[[23046,41978],[196,151],[129,256],[101,69],[150,1]],[[23622,42455],[119,36],[358,-56]],[[24099,42435],[184,-47]],[[24283,42388],[318,-166],[179,-166],[27,-295],[168,-64],[226,103],[105,-127],[216,-13],[237,61]],[[25759,41721],[64,214]],[[25823,41935],[-90,60],[-28,341],[119,-55],[135,258],[-146,0],[-60,132],[92,17],[-132,197],[23,83],[139,173],[-35,112],[111,275],[-89,52]],[[25862,43580],[-70,142],[23,146]],[[25815,43868],[-95,194],[157,202],[93,-79],[179,119],[-81,173],[-68,-3],[-75,172]],[[8963,196],[-189,188],[29,287],[-203,258],[-2,167],[-111,112],[-244,-30],[-206,249],[-93,-82],[-161,-19],[-97,111],[6,204],[-195,146],[1,100],[-110,-21],[-192,74],[44,131],[68,149],[154,81],[-15,101],[-134,49],[42,302]],[[7355,2753],[29,149],[108,71],[45,192],[-98,251],[-191,209],[3,176],[64,199],[-148,-4],[-140,194],[-83,205],[336,18],[-65,147],[61,91],[-120,153],[93,148],[118,-5],[197,102],[114,651],[183,126],[-11,138],[-96,168],[-248,116],[82,145],[-162,121],[-56,137]],[[7370,6651],[-997,-19],[38,-877],[-865,-28]],[[5546,5727],[-434,-34],[-512,-14],[-670,-18],[-215,-8]],[[31108,37422],[-128,-343]],[[30980,37079],[-287,-776]],[[30693,36303],[-61,-199]],[[30632,36104],[-56,-158]],[[30576,35946],[-1,-3]],[[30575,35943],[-37,-86],[-80,-192],[-63,-150],[-3,-8]],[[30392,35507],[-49,-117],[-73,-177]],[[30270,35213],[-138,121],[-75,-69]],[[30057,35265],[61,0],[169,-481],[-16,-84],[157,-207],[53,-229],[-28,-85],[155,-10],[-36,-147],[143,-127],[145,-47],[-31,-135]],[[30829,33713],[83,-88],[-81,-139],[170,-97],[-82,-99],[120,-161]],[[31039,33129],[28,-1]],[[31067,33128],[337,-21],[96,-97],[247,-54],[79,-68],[136,37]],[[31962,32925],[45,2],[41,-297],[123,46],[184,69]],[[32355,32745],[111,-67],[298,79],[93,-258],[143,53],[44,-162],[166,-134],[225,8]],[[33435,32264],[237,-89],[260,81],[62,-35],[124,183],[112,59],[188,-84],[7,227],[103,97],[286,151],[280,15],[55,83],[119,-8],[146,206],[138,32],[173,-73],[7,-63],[313,-46],[196,-147],[54,-129]],[[36295,32724],[144,-84],[164,-309],[111,-293],[67,-57],[1014,64],[830,-11],[2,-76],[528,0]],[[39155,31958],[8,-78],[175,-1],[115,-77],[-1,-153],[89,-73],[171,0]],[[39712,31576],[35,0]],[[39747,31576],[1130,-1]],[[33327,54869],[912,-786]],[[34239,54083],[300,-238]],[[34539,53845],[207,1]],[[34746,53846],[56,1]],[[34802,53847],[352,3],[3,-306],[50,-101],[-128,-78]],[[35079,53365],[557,-481]],[[35636,52884],[36,110],[-75,68],[354,212],[90,271],[153,117],[82,335],[125,123],[115,174],[-161,199],[126,121],[-52,44]],[[36429,54658],[85,57],[12,135]],[[36526,54850],[260,193]],[[36786,55043],[114,2],[94,186],[114,-21],[189,149],[-45,106],[49,164]],[[37301,55629],[241,-16],[-64,-96],[496,193],[-59,74],[325,-39],[175,42],[250,5],[-42,-95],[156,-105],[149,-14],[130,144],[197,-285]],[[39255,55437],[130,49],[183,-110],[217,-50],[176,-34]],[[39961,55292],[164,-85],[85,71],[127,-45]],[[40337,55233],[151,78],[172,-11]],[[40660,55300],[110,-123],[220,-25],[108,-96],[127,76],[225,-16]],[[41450,55116],[109,-98]],[[41559,55018],[257,-72]],[[41816,54946],[194,-72]],[[42010,54874],[197,94],[89,-43],[157,-94],[37,76],[176,59]],[[42666,54966],[61,-48]],[[42727,54918],[27,-105],[163,-144]],[[42917,54669],[0,0]],[[42917,54669],[77,-90],[-43,-126],[161,-231],[136,-18],[112,-192]],[[43360,54012],[131,-84],[-89,-80],[22,-171],[265,-226]],[[43689,53451],[76,-86]],[[43765,53365],[141,-129],[193,28],[120,-43],[-9,-270],[53,-24],[142,-23],[100,91],[-68,116],[150,-36],[99,-197],[-29,-54],[81,-213],[408,71],[37,-253],[93,-63],[109,-135],[-104,-105],[-179,10],[32,-236],[154,-57],[237,150],[62,-188],[129,-7]],[[45716,51798],[133,96],[-28,144],[88,148],[125,3],[81,-356],[269,-30],[17,-154],[237,2],[87,120],[128,2],[115,-157],[135,-56]],[[47103,51560],[0,-115],[168,-91],[121,-177],[-34,-215]],[[47358,50962],[22,-143],[79,-56],[-15,-215],[-72,-85],[46,-202],[-81,-201],[189,-149],[-86,-118],[118,-29],[-30,-87]],[[47528,49677],[274,-286],[2530,-2241]],[[50332,47150],[196,152],[169,38],[77,110],[234,-97],[224,176],[120,-16]],[[51352,47513],[158,200],[170,115],[21,104],[203,90],[37,232],[66,39],[336,-131],[190,-8],[205,265]],[[52738,48419],[115,67],[39,221],[-75,127],[-118,22],[-95,292],[217,344],[-97,31],[-80,159],[78,95],[204,55],[174,141],[231,-139],[304,394],[32,105],[168,203],[-186,194],[-15,161],[108,144],[-57,91],[146,159],[27,125],[-77,102],[50,137],[127,142],[143,47],[254,-64],[220,65],[80,148],[137,-4],[7,77],[228,-1],[137,40]],[[55164,52099],[188,191],[85,-27],[164,186],[189,110],[188,-24],[118,119],[-33,180],[168,150],[-48,147],[156,141],[-75,95],[109,92],[60,221],[66,22],[363,729],[-84,187],[76,91],[10,169],[-95,98],[-178,20],[0,154],[174,264],[-70,131],[113,335],[87,57]],[[56895,55937],[-1902,27],[6,59],[-1911,20],[-1389,0]],[[51699,56043],[-871,1],[-11,890],[-290,1]],[[50527,56935],[-520,-5]],[[50007,56930],[-1047,2],[-488,-12],[-780,2]],[[47692,56922],[1,306]],[[47693,57228],[1,111]],[[47694,57339],[0,34],[0,7]],[[47694,57380],[1,458],[-131,-1],[-396,-3]],[[47168,57834],[-176,-2],[-364,-3]],[[46628,57829],[-161,1]],[[46467,57830],[-4,1],[-173,-1]],[[46290,57830],[-88,0]],[[46202,57830],[-83,1],[-230,196],[-282,259]],[[45607,58286],[-182,153],[-15,0]],[[45410,58439],[-87,92],[-19,15]],[[45304,58546],[-9,7]],[[45295,58553],[-217,193]],[[45078,58746],[-614,503],[-294,237],[-52,-128]],[[44118,59358],[-151,56],[-211,7]],[[43756,59421],[-32,60],[-345,34],[-59,153]],[[43320,59668],[-443,-1],[-519,2]],[[42358,59669],[-617,5]],[[41741,59674],[-442,6]],[[41299,59680],[1,155]],[[41300,59835],[-8,76],[11,1277]],[[41303,61188],[0,26]],[[41303,61214],[1,780],[-1370,1125]],[[39934,63119],[-53,44]],[[39881,63163],[-616,501]],[[39265,63664],[-1473,1216]],[[37792,64880],[-91,-18],[-119,-150],[6,-148],[-203,-116],[-38,-172],[-280,-52],[-194,-72],[-242,73],[-163,-206],[-272,-132],[-12,-98],[-400,-181],[-102,30],[28,-120],[-132,-11],[-49,-100],[-208,-73],[-249,-195],[24,-193],[-106,-126],[-115,66],[-291,-65],[-67,-72],[-67,-251],[-89,-90],[-29,-214],[50,-111],[82,37],[99,-123],[66,-191],[110,-59],[-534,-511],[87,-66],[-55,-102]],[[34237,61068],[60,-138],[-98,-148],[237,-228],[282,-5],[329,-121],[0,-662],[7,-1021],[-64,-1],[-1092,-957],[-1356,-1184],[-606,-538]],[[31936,56065],[1391,-1196]],[[15110,27927],[-7,-548],[91,-162],[17,-462],[-34,-147],[34,-759],[-346,4],[-1059,-34]],[[13806,25819],[19,-323],[-51,-129],[3,-231],[8,-675],[-189,-3],[18,-415],[-243,-6],[26,-527]],[[13397,23510],[415,1],[5362,126]],[[19174,23637],[426,9]],[[19600,23646],[899,37],[507,10]],[[21006,23693],[733,12]],[[7370,6651],[1438,43],[96,56]],[[8904,6750],[174,124],[-83,130],[34,273],[124,109],[62,264],[-61,109],[133,70],[26,281],[-121,128],[158,114],[15,139],[160,177],[73,182]],[[9598,8850],[-94,155],[-133,21],[27,111],[-19,358],[-170,301],[-148,-62],[-20,189],[163,159],[203,44],[21,243],[115,51],[3,187],[-130,29],[-76,223],[-113,174],[-137,72],[77,109],[-37,107],[-208,91]],[[8922,11412],[-114,202],[-277,-65],[-159,-158],[-273,-171],[-118,137],[-182,94],[-281,-55],[52,188],[85,100],[-23,89],[141,307],[100,-1],[57,259],[83,16],[34,135],[-56,149]],[[7991,12638],[80,70],[-8,158],[-85,-30],[136,221],[-30,285],[65,168],[-10,141],[-59,1335]],[[8080,14986],[-40,987],[-10,227]],[[8030,16200],[-64,1429],[-41,1077],[-113,2493]],[[7812,21199],[-687,-23],[-831,-26]],[[6294,21150],[-710,-27]],[[5584,21123],[-1014,-30],[-341,-12],[-885,-30]],[[80948,98789],[-9,-272]],[[80939,98517],[-40,-861],[26,-1],[-45,-812],[-64,-1505],[-66,-1339],[226,-10],[-90,-1683],[-35,-468],[-57,-776],[-36,-761]],[[80758,90301],[256,-9]],[[81014,90292],[341,-16],[500,-21]],[[81855,90255],[463,-16]],[[82318,90239],[2532,-107]],[[84850,90132],[55,-1]],[[84905,90131],[2136,-83],[-1,-15],[1269,-49],[1032,-49],[1812,-76],[1304,-78],[1057,-51],[-2,-38],[654,-32]],[[94166,89660],[1417,-66]],[[52738,48419],[432,-5],[2651,-34]],[[55821,48380],[1029,-12],[4038,-87],[142,-10]],[[61030,48271],[813,-12]],[[83871,65061],[-865,40],[7,163],[-3176,115],[-125,10],[-2088,73],[-6490,179],[-2036,54],[-2074,55]],[[67024,65750],[-603,11]],[[66421,65761],[-2140,30]],[[64281,65791],[-2142,36]],[[62139,65827],[-529,9]],[[61610,65836],[-208,4],[16,119],[-839,-9]],[[60579,65950],[6,-775],[70,-66],[170,17],[-79,-134],[58,-170],[-80,-211],[64,-113],[-90,-180],[-148,-26],[-116,-151],[139,-242],[-87,-152],[-215,-108],[-45,-219],[-146,-311],[14,-182],[-80,-155],[-96,-18],[19,-178],[-93,-301],[128,-115],[-22,-258],[-119,-158],[-282,-200],[-76,-174],[38,-86],[-145,-229],[16,-165],[-98,-88],[-3,-216],[160,-105],[-39,-98],[159,-128],[-30,-158],[-202,-39],[-106,-215],[-218,-89],[-71,-149],[191,-106],[20,-153],[-190,-151],[-173,65],[-184,5],[-206,-78],[45,-83],[-131,-215]],[[58306,58889],[-76,-18],[-188,-229],[135,-78],[-64,-66],[18,-249],[-77,24],[-55,-217],[-132,-97],[-248,-69],[-39,-187],[47,-153],[139,-72],[-221,-102],[-50,-113],[-187,-91],[-47,-211],[-123,-79]],[[57138,56882],[78,-125],[-178,-58],[-60,-122],[-127,-80],[189,-53],[115,-97],[-53,-247],[-207,-163]],[[64281,65791],[14,920],[-175,4],[5,307],[358,-8],[7,306],[-172,12]],[[64318,67332],[-2,300]],[[64316,67632],[7,307]],[[64323,67939],[11,308],[46,0],[32,1121]],[[64412,69368],[-32,71],[54,1037],[35,1107]],[[64469,71583],[34,1249]],[[64503,72832],[-12,329],[20,538]],[[64511,73699],[20,503],[6,162]],[[64537,74364],[51,1695],[-353,5]],[[64235,76064],[-1071,14]],[[63164,76078],[-2491,60],[-1166,35]],[[59507,76173],[-302,7]],[[59205,76180],[-498,13]],[[58707,76193],[-176,2]],[[58531,76195],[-887,19]],[[57644,76214],[-2613,54]],[[55031,76268],[-2668,34],[-1,155],[-227,1],[-47,-154],[-128,0]],[[51960,76304],[136,287]],[[52096,76591],[-955,9],[-3,-227],[-470,3],[-2200,-2],[-5,-457],[-347,5],[7,-158]],[[48123,75764],[5,-78],[-1054,6],[1,-223],[-602,-1]],[[46473,75468],[-304,3]],[[46169,75471],[-1,-387]],[[46168,75084],[-10,-1464],[-180,-4],[0,-152],[-701,46],[68,-972],[-231,1]],[[45114,72539],[-898,57],[0,-924],[-1421,-8],[-1,-919],[-703,-3],[-1,-926],[-333,-1],[-831,-2],[0,-308],[-181,-4],[10,-154],[-186,0],[1,-158],[-176,0],[-2,-148],[-175,-1],[2,-142],[-178,-3],[8,-927],[-1069,0],[3,-1181]],[[38983,66787],[-1,-661]],[[38982,66126],[1870,6],[1342,-5]],[[42194,66127],[1493,-15],[1776,2]],[[45463,66114],[1807,-16]],[[47270,66098],[336,-2]],[[47606,66096],[173,-2]],[[47779,66094],[444,-4]],[[48223,66090],[58,0],[37,-1],[81,0],[44,-1],[132,-1]],[[48575,66087],[1068,-11]],[[49643,66076],[257,-2]],[[49900,66074],[352,-3]],[[50252,66071],[2467,-20]],[[52719,66051],[1716,-12],[1213,-17],[575,-35],[722,11],[1782,-32],[1429,-29],[423,13]],[[45078,58746],[451,-2]],[[45529,58744],[-11,306]],[[45518,59050],[0,615],[529,3],[-1,111]],[[46046,59779],[1,662],[12,314],[-1,304],[-537,-7],[4,620],[2,157],[3,462],[1,152],[-71,1]],[[45460,62444],[5,765]],[[45465,63209],[2,153]],[[45467,63362],[3,458]],[[45470,63820],[-11,764],[4,1530]],[[38982,66126],[-196,-1]],[[38786,66125],[-65,-319],[-236,-47],[-129,-206],[18,-129],[155,-107],[-30,-124],[-319,-298],[-388,-15]],[[18726,32848],[-603,-24]],[[18123,32824],[-180,253],[145,220],[141,134],[-41,38]],[[18188,33469],[-81,84],[195,239],[76,179],[-61,156],[-176,-24],[-141,189],[85,137],[-124,49]],[[17961,34478],[-476,652]],[[17485,35130],[-1229,281]],[[16256,35411],[-337,80]],[[15919,35491],[20,-72],[-128,-158],[-61,-182],[-245,-7],[-184,-53],[-80,-191],[-89,-36],[-27,-205]],[[15125,34587],[-180,-218]],[[14945,34369],[-132,-173],[1,-173],[-430,-341]],[[14384,33682],[-127,-15],[-118,-146]],[[14139,33521],[5,-81],[-178,-6],[4,-84],[-175,-3],[10,-78],[-178,-3],[-19,-82],[-150,-4],[12,-154],[-165,-1],[2,-67],[-356,4],[-1,-165],[9,-100],[-195,-82],[21,-145],[-89,-5],[16,-381],[-85,-65],[4,-89],[-392,-3],[-257,-266],[12,-303],[-84,-37]],[[11910,31321],[2,-63]],[[11912,31258],[-258,-142],[-2,-246],[87,2],[-7,-454],[89,-1],[17,-369],[302,11],[60,-187]],[[12200,29872],[156,-161],[38,-142],[79,-1],[4,-160],[168,7],[12,-219],[-86,-9],[-1,-219],[-142,-2],[16,-461],[-85,-3],[6,-156],[-85,2],[9,-291],[-101,-5],[16,-153],[-90,-3],[19,-304],[-177,-6],[37,-474],[95,5],[18,-537],[170,4]],[[12276,26584],[9,-80],[179,5],[5,-79],[831,47],[5,-151],[435,29],[66,-536]],[[40888,24676],[-136,0],[0,144],[-1034,-2],[-198,12]],[[39520,24830],[6,-303],[177,3],[1,-156],[80,-1],[-4,-153],[84,-1],[26,-300],[-1,-917],[82,1],[-2,-307],[-87,0],[1,-307],[-166,-1],[-1,-86],[-171,-153],[-174,-68],[3,-159],[-92,-1],[2,-152],[-88,-2],[0,-156],[-175,-2],[0,-308],[-89,0],[13,-443],[-348,-11],[2,-233],[-176,1],[-88,-74],[-618,-7],[0,-77],[-179,0],[3,-74],[-177,0],[3,-116],[-179,-2],[-90,-71],[4,-156],[-86,-77],[-181,-2],[-89,-77],[7,-153],[-83,0],[-60,-152]],[[36610,19577],[-206,-1],[5,-151],[-72,-2]],[[36337,19423],[-14,-153],[-176,1],[-1,-150],[-98,-2]],[[36048,19119],[-77,-76],[-176,-1],[0,-77],[-261,-4],[1,-228],[-428,-5],[2,-77],[-184,-19]],[[34925,18632],[-89,-136],[-690,-13],[-1,-79],[-184,-1],[-168,-2],[-89,153],[-209,-1]],[[33495,18553],[1,249],[-174,-3],[-4,75],[-175,-1],[-4,153],[-179,150],[-173,0],[-5,445],[-176,-2],[-1,77],[-353,-1],[7,-153],[-178,-2],[11,-150],[-536,-7],[0,-147],[-239,-1],[-111,0],[3,-229],[-186,-1],[9,-397]],[[31032,18608],[4,-216]],[[31036,18392],[14,-1388],[-1749,-13]],[[29301,16991],[-723,-1]],[[28578,16990],[19,-550],[34,1],[16,-919],[21,-737]],[[28668,14785],[25,-1090],[22,-1369],[14,-181],[-114,4],[13,-161],[22,-1312],[17,-1456]],[[28667,9220],[84,1]],[[28751,9221],[1691,14]],[[30442,9235],[2351,25],[920,7],[5268,23],[1920,3]],[[64235,76064],[27,928],[55,1857],[67,0],[21,623]],[[64405,79472],[13,380]],[[64418,79852],[5,115],[61,571],[0,3]],[[64484,80541],[43,396]],[[64527,80937],[23,213]],[[64550,81150],[56,524],[-279,1311]],[[64327,82985],[-41,115]],[[64286,83100],[-10,41]],[[64276,83141],[-21,85]],[[64255,83226],[-34,107],[-41,114]],[[64180,83447],[-56,157]],[[64124,83604],[-44,125]],[[64080,83729],[-4,11]],[[64076,83740],[-6,15]],[[64070,83755],[-30,78],[-8,22],[-5,13],[-11,26],[-10,24],[-5,14],[-7,18],[-15,38],[-15,40],[-13,39]],[[63951,84067],[-14,37],[-1,2]],[[63936,84106],[-25,78],[-12,39],[-8,38]],[[63891,84261],[-33,119],[0,1]],[[63858,84381],[-5,39]],[[63853,84420],[-7,50]],[[63846,84470],[-21,48]],[[63825,84518],[-138,9]],[[63687,84527],[-1,0],[-226,-32]],[[63460,84495],[8,104],[-25,95]],[[63443,84694],[-99,1]],[[63344,84695],[-112,108],[-110,203]],[[63122,85006],[2,58],[93,126],[108,119]],[[63325,85309],[-861,22]],[[62464,85331],[-18,2]],[[62446,85333],[-310,3]],[[62136,85336],[-150,-7],[-93,13],[-69,0]],[[61824,85342],[-103,2],[-43,1],[-44,1],[-77,1],[-68,1],[-31,1]],[[61458,85349],[-29,1],[-57,63],[0,2],[1,30],[0,8],[1,47],[1,38],[0,1],[1,37],[2,76]],[[61378,85652],[1,65],[1,51]],[[61380,85768],[-86,40],[-3,1],[3,74]],[[61294,85883],[-24,2]],[[61270,85885],[-65,1],[1,31],[-51,47],[-1,0],[-33,58]],[[61121,86022],[1,19],[-86,80]],[[61036,86121],[-176,4]],[[60860,86125],[3,75]],[[60863,86200],[-90,4],[-85,78],[0,10],[2,44]],[[60690,86336],[-43,31],[-42,48],[-40,2],[-3,0],[1,77],[-21,58],[-21,19],[2,77],[0,1],[-42,70]],[[60481,86719],[-12,0],[-30,23],[-96,98]],[[60343,86840],[-28,31]],[[60315,86871],[-28,86]],[[60287,86957],[-58,98],[-2,6]],[[60227,87061],[-37,120]],[[60190,87181],[58,151]],[[60248,87332],[-138,94]],[[60110,87426],[-72,42],[-19,14]],[[60019,87482],[-15,21]],[[51561,84442],[4,-12]],[[51565,84430],[33,-299],[487,-319]],[[52085,83812],[357,-235]],[[52442,83577],[231,-151]],[[52673,83426],[70,-46]],[[52743,83380],[55,-36],[60,-40]],[[52858,83304],[85,-55]],[[52943,83249],[175,-115],[1,0]],[[53119,83134],[133,-1]],[[53252,83133],[16,0],[156,-1]],[[53424,83132],[1,0],[29,-1]],[[53454,83131],[156,0]],[[53610,83131],[115,-1]],[[53725,83130],[180,-10]],[[53905,83120],[75,0]],[[53980,83120],[280,0]],[[54260,83120],[75,-90]],[[54335,83030],[-2,-78]],[[54333,82952],[-1,-76],[0,-38]],[[54332,82838],[1,-124]],[[54333,82714],[-3,-176],[-1,-139]],[[54329,82399],[-1,-39],[355,-5]],[[54683,82355],[-1,-16]],[[54682,82339],[-3,-137],[-9,-141]],[[54670,82061],[-2,-12]],[[54668,82049],[0,-3]],[[54668,82046],[-37,-231],[-162,-331]],[[54469,81484],[-191,-390]],[[54278,81094],[-232,-475],[-349,-717]],[[53697,79902],[-126,-256]],[[53571,79646],[-853,-1747]],[[52718,77899],[-622,-1308]],[[35636,52884],[481,-414]],[[36117,52470],[153,-130],[680,-150],[59,-72]],[[37009,52118],[154,-72],[210,52],[214,-50],[163,-124],[186,-47],[144,-121]],[[38080,51756],[160,3],[406,-81],[49,-37],[315,4],[238,-30],[620,-11]],[[39868,51604],[113,-57],[414,-111]],[[40395,51436],[1702,-1500]],[[42097,49936],[1106,-969],[309,-8]],[[43512,48959],[371,-1]],[[43883,48958],[390,-2],[-1,-296]],[[44272,48660],[-1,-162],[143,-1]],[[44414,48497],[202,-2],[2,-350],[298,-1],[3,-692],[1270,-1116],[1361,-1192]],[[47550,45144],[151,105],[50,241],[188,60]],[[47939,45550],[108,153],[179,-31],[90,106],[132,33],[170,-238],[265,-17],[222,54],[233,-8],[136,90],[162,221],[212,155],[60,44],[106,414],[214,152],[12,140]],[[50240,46818],[-26,145],[118,187]],[[12206,39316],[79,-107],[250,-43],[30,-65],[183,66],[113,-26]],[[12861,39141],[127,60],[56,-121],[90,5],[603,477],[278,219]],[[14015,39781],[232,187],[440,348],[161,3],[175,96]],[[15023,40415],[378,123],[146,73],[226,-9],[210,21],[26,-45]],[[16009,40578],[80,-36],[261,76],[58,214],[139,45],[231,198],[99,231],[162,92]],[[17636,44009],[4,35]],[[40395,51436],[-98,-156],[-301,-261],[-490,-175],[-268,-185],[-119,-146],[11,-220],[-201,-231],[-164,-303]],[[38765,49759],[-239,-364],[-199,-255],[-177,-328],[92,-126],[-87,-203]],[[38155,48483],[-145,-274],[-119,-89],[-74,-254],[-22,-32]],[[37795,47834],[-633,-1151]],[[37162,46683],[0,-4]],[[37162,46679],[121,-194],[-193,-212],[33,-119],[247,30],[105,56],[283,281],[155,-74],[34,-103],[-304,-458],[-70,-165],[125,-50],[112,36],[129,-99],[205,62],[37,-164],[230,103]],[[38411,45609],[50,-159],[77,2],[72,-155],[105,52],[249,-29],[170,-124],[-50,-56],[112,-165],[147,90],[336,59],[364,-320],[-3,-112]],[[40040,44692],[91,-62],[216,51],[21,113],[186,56],[90,-42],[271,165],[322,141],[194,189],[285,24],[79,49],[213,-29],[198,-120],[115,146],[139,-127],[275,160],[224,-115],[337,-79],[48,-102],[348,-112],[115,41],[62,-105],[233,-19],[127,-97],[29,-110],[-66,-140],[110,-134],[346,-68],[228,-202],[-2,-188],[197,-123],[306,-14],[99,170],[82,24],[103,156],[198,53],[95,93],[110,-136],[200,9],[-7,81],[153,-74],[47,95],[141,29],[26,186],[202,7],[303,105],[-25,153],[321,186],[92,-2],[33,170]],[[7812,21199],[-13,262],[908,27]],[[8707,21488],[992,29]],[[9699,21517],[3800,100]],[[13499,21617],[64,74],[-9,276],[124,101],[-76,201],[-279,84],[16,144],[-73,414],[-61,98],[121,127],[17,336],[54,38]],[[14139,33521],[-1146,-33],[-822,-47]],[[12171,33441],[-490,-10],[-3,54]],[[11678,33485],[-5,94],[-525,-26],[-9,319],[-974,-22],[-283,-6]],[[9882,33844],[-946,-11],[-11,312],[-1242,-52]],[[7683,34093],[2,2]],[[7685,34095],[-218,199],[-115,-107]],[[31936,56065],[-145,-122],[-2015,-913],[-66,-181]],[[29710,54849],[-40,-125],[-104,-40],[-55,-170],[-143,-118],[6,-123],[-139,-67],[-226,40],[-127,-177],[51,-138],[177,-178],[-35,-44]],[[29075,53709],[-161,-82],[-132,-151],[9,-104],[118,-66],[0,-131],[-121,-147],[211,-147],[14,-187],[100,26],[35,-138],[-128,-60],[-192,-201],[123,-44],[2,-84],[129,-189],[-90,-125]],[[28992,51879],[42,-38]],[[29034,51841],[1692,-1438]],[[30726,50403],[333,-285],[3,-2]],[[31062,50116],[76,-73]],[[31138,50043],[346,-289]],[[31484,49754],[83,-74],[-113,-38],[-56,-383],[-110,-27],[90,-118]],[[31378,49114],[605,-271],[354,-154],[608,-237]],[[32945,48452],[2,-1]],[[32947,48451],[71,-36]],[[33018,48415],[552,-226]],[[33570,48189],[748,-310]],[[34318,47879],[799,-337],[2045,-859]],[[28667,9220],[-1053,-9]],[[27614,9211],[44,-2581],[-13,-461],[38,-1934],[18,-1256],[-72,0],[30,-1824],[88,-6],[8,-489]],[[47939,45550],[137,-79],[109,-238],[209,-106],[190,-267],[-152,-151],[123,-118],[-28,-84],[102,-66],[-186,-31],[11,-258],[120,-175],[-371,-248],[-248,-19],[14,-134],[-230,-67],[-198,-144],[-139,-255],[119,-318],[49,-240],[-77,-229],[-102,-62],[-260,-356],[-292,-72],[-162,-150],[-258,-5],[-47,-85],[-109,113],[-1,97],[-223,-27],[15,-114],[-95,-73],[23,-128],[-183,-41],[-7,-118],[-122,-167],[-44,234],[-236,-77],[-156,6],[18,-95],[-297,-48],[-98,-286],[-113,34]],[[44744,40903],[-111,-92],[-218,-88],[60,-61],[18,-253],[193,-67],[-171,-188],[83,-91],[-366,-265],[85,-76],[-23,-293],[53,-55]],[[23260,54795],[88,-61],[-15,-115],[164,-182],[141,15]],[[23638,54452],[213,-222]],[[23851,54230],[1,-1]],[[23852,54229],[56,-42]],[[23908,54187],[194,-50],[68,41]],[[24170,54178],[409,60],[149,-89],[164,215]],[[24892,54364],[3,23]],[[24895,54387],[7,191]],[[24902,54578],[117,177],[1,2]],[[25020,54757],[75,114],[236,96],[355,341]],[[25686,55308],[526,499],[223,-62]],[[26435,55745],[109,208],[110,49],[82,172],[-101,74],[-225,45],[143,237],[242,189],[126,-57],[78,45]],[[26999,56707],[77,16],[80,181],[280,37],[118,-38],[127,77],[199,309],[134,111],[-54,80],[-1,258],[-103,35],[48,208],[148,53],[118,131]],[[28170,58165],[55,111],[-117,107],[-48,148],[292,4],[372,-40],[198,365]],[[28922,58860],[63,-16],[185,202],[40,99],[707,617]],[[29917,59762],[772,682],[-3,557],[129,-41],[2,162],[112,-85],[223,-19],[101,-223],[91,11],[196,165],[141,-91],[61,-172],[132,-117],[203,110],[95,110],[103,-52],[134,30],[242,170],[103,205],[184,60],[-15,69],[224,109],[165,157],[107,178],[172,46],[122,-46],[127,72],[121,-72],[-1,-253],[-107,-341],[-139,-163],[-107,-240],[-149,-112],[115,-16],[235,187],[243,104],[186,165]],[[38786,66125],[-366,2],[-4653,-43]],[[33767,66084],[-93,0]],[[33674,66084],[-1216,-17]],[[32458,66067],[-2568,-38],[-697,-17],[-1594,-29]],[[18188,33469],[90,126],[342,180],[215,-99],[101,70],[260,1],[124,324],[130,208],[81,367],[137,161],[126,476],[113,0],[82,131],[-37,64],[186,215],[141,22],[29,136]],[[20308,35851],[-56,134],[39,127],[140,-77],[190,372],[163,632],[75,183]],[[20859,37222],[-2,13],[-19,225],[-190,451],[-32,197],[76,157],[267,316],[144,253],[107,332],[-37,144]],[[21173,39310],[-659,-10],[-441,-11],[-166,-1]],[[19907,39288],[-82,-2],[59,150]],[[19884,39436],[-42,90],[138,228],[-228,-18],[-47,110],[212,91]],[[19917,39937],[-159,17],[138,232],[14,178],[-113,54],[4,103],[-102,196],[123,123],[58,141],[-184,-3]],[[19696,40978],[-62,-1]],[[19634,40977],[-165,-4]],[[19469,40973],[-35,-1],[-103,-2]],[[19331,40970],[-9,1]],[[19322,40971],[-49,-3],[-22,0],[-31,-1],[-3,-1]],[[19217,40966],[-46,-1]],[[19171,40965],[-215,-4]],[[18956,40961],[-28,-2]],[[18928,40959],[-1071,-27]],[[17857,40932],[28,-50],[314,36],[56,-87],[-7,-188],[79,22],[-12,-160],[92,49],[-78,-185],[-1,-216],[-60,-175],[-116,-42]],[[18152,39936],[-101,-107],[29,-132],[-93,10],[-72,-104],[25,-197]],[[17940,39406],[77,-40],[-154,-314],[-121,-120]],[[17742,38932],[-231,-173],[-75,-70],[45,-156]],[[17481,38533],[-115,-87],[-57,-161],[-234,-203],[173,-194],[-25,-102],[-132,-34]],[[17091,37752],[-122,-30],[-58,-135],[-127,11],[-136,-278],[90,-62],[-124,-107],[27,-101]],[[16641,37050],[-217,-94],[-154,-235],[-159,-79],[-166,-20],[-102,-98],[-25,-145],[-86,-207],[163,-213],[-50,-147],[98,-134],[-24,-187]],[[40850,28952],[-296,1]],[[40554,28953],[-1042,-1]],[[39512,28952],[-47,1]],[[39465,28953],[-266,-1]],[[39199,28952],[-225,0]],[[38974,28952],[-1113,-4]],[[37861,28948],[-2189,0],[-859,0],[-120,76],[-196,13]],[[34497,29037],[-219,69],[-242,122],[-381,324]],[[33655,29552],[-344,248],[-450,221],[-60,153]],[[32801,30174],[-106,175],[-380,108],[3,68],[-370,212],[-112,126]],[[31836,30863],[-193,218],[-76,-9]],[[31567,31072],[-19,0],[28,95],[-54,264],[-108,151]],[[31414,31582],[-112,159],[-138,94],[-78,220]],[[31086,32055],[-84,44],[-187,69]],[[30815,32168],[-181,-50],[-185,-9]],[[30449,32109],[-178,-135],[-17,-84],[-135,-56],[-121,110],[-340,149],[-102,-53],[-179,51],[-142,-129],[-79,32],[-363,-143]],[[28793,31851],[2,-128]],[[28795,31723],[9,-665]],[[28804,31058],[17,-993],[5,-278],[103,-101],[-3,-126],[96,-44],[-71,-161],[255,-127],[191,12],[99,-138]],[[29496,29102],[90,-64],[-50,-106],[97,-180],[158,-93],[201,67],[29,-170],[92,-8],[79,-195]],[[30192,28353],[85,-122],[257,-16],[156,-133],[214,29],[127,-33],[62,72],[89,-79],[94,45]],[[31276,28116],[284,-238],[192,-46],[138,35],[133,-41],[268,0],[285,-97],[351,-66]],[[32927,27663],[96,-47],[101,57],[327,-63],[150,-99],[184,-16],[120,-145],[171,-69],[112,-103],[-32,-64],[155,-144],[138,-48],[77,-109],[229,-93],[296,55],[422,-15],[201,153],[63,151],[137,113],[-1,201],[251,120],[20,77],[3853,21],[874,1]],[[63325,85309],[14,11]],[[63339,85320],[141,98]],[[63480,85418],[208,147]],[[63688,85565],[107,68],[23,15]],[[63818,85648],[260,169]],[[64078,85817],[31,19],[310,213]],[[64419,86049],[36,32]],[[64455,86081],[7,6]],[[64462,86087],[3,4]],[[64465,86091],[3,4]],[[64468,86095],[-14,122],[123,2],[266,284]],[[64843,86503],[585,624],[119,49]],[[65547,87176],[213,42]],[[65760,87218],[121,23],[18,228],[20,246],[372,65],[235,14],[154,123]],[[66680,87917],[40,29]],[[66720,87946],[331,223]],[[67051,88169],[106,96],[-429,594]],[[66728,88859],[-509,729],[76,141],[-62,163]],[[66233,89892],[9,221]],[[66242,90113],[14,151],[-299,154],[-198,47],[-157,-15]],[[65602,90450],[-52,-5]],[[65550,90445],[-46,196]],[[65504,90641],[-44,197]],[[65460,90838],[-19,98],[-28,113]],[[65413,91049],[-23,102]],[[30057,35265],[-41,1],[-238,-15]],[[29778,35251],[-40,-3],[-70,-6]],[[29668,35242],[-63,-7]],[[29605,35235],[-91,-8]],[[29514,35227],[-99,-8]],[[29415,35219],[-164,-14]],[[29251,35205],[-161,-17]],[[29090,35188],[-108,-8],[-33,-4]],[[28949,35176],[-28,-2],[-107,-10]],[[28814,35164],[-89,-8]],[[28725,35156],[-87,-7]],[[28638,35149],[-35,-1],[-45,-6],[-67,-7]],[[28491,35135],[-27,-2]],[[28464,35133],[-22,-2]],[[28442,35131],[-245,-21]],[[28197,35110],[-91,-8]],[[28106,35102],[-171,-14]],[[27935,35088],[-162,-16],[-103,-10]],[[27670,35062],[-47,-4]],[[27623,35058],[-727,-63],[-98,-8]],[[26798,34987],[3,-176],[139,-4],[16,-992],[3,-145]],[[26959,33670],[18,-697],[166,1],[355,3],[9,-740]],[[27507,32237],[78,-35]],[[27585,32202],[1,-4],[282,-215],[515,-226],[69,-71]],[[28452,31686],[108,-26],[133,166],[100,25]],[[39520,24830],[-960,-5]],[[38560,24825],[-529,-2]],[[38031,24823],[-1316,-10],[-390,19]],[[36325,24832],[-1084,-5]],[[35241,24827],[-474,1],[-57,211],[-195,97],[-132,-158],[-66,5],[-172,-176],[-231,-78]],[[33914,24729],[-44,-48],[-193,18],[-207,83],[-20,-91],[-127,-17],[-67,-285],[-202,13],[-158,-152],[-47,-112],[-132,-58],[-204,167],[-175,27],[-194,192],[-4,392],[-145,304],[-138,78],[-213,213],[-217,53]],[[31427,25506],[-637,438]],[[27511,20066],[-86,-43],[14,-230],[85,-43],[-26,-139],[296,42],[211,-196],[155,-18],[65,-140],[-47,-211],[155,-177],[6,-140],[-242,-236],[188,8],[105,-159],[-215,-139],[-117,-158],[-281,-27],[-159,-82],[-381,-4],[-96,-174],[71,-82],[-77,-75],[-19,-158],[48,-241],[53,-44],[-220,-90],[5,-143]],[[27002,16967],[1220,12],[183,-37],[173,48]],[[80758,90301],[-280,10]],[[80478,90311],[-866,-1],[-724,33],[-2539,97],[-1011,26],[-54,3]],[[75284,90469],[-598,19],[-1578,50],[-1102,24],[-873,30],[-219,-28]],[[70914,90564],[-375,9]],[[70539,90573],[-99,3],[-429,-13]],[[70011,90563],[-29,0]],[[69982,90563],[-826,28]],[[69156,90591],[-167,4],[-15,-179],[-86,-25],[-342,-105],[-821,-250],[-76,-24],[63,-154]],[[67712,89858],[-1479,34]],[[64455,86081],[45,-107],[-62,-74]],[[64438,85900],[203,-12],[-15,-343]],[[64626,85545],[-1,-31]],[[64625,85514],[449,-17],[-6,-220]],[[65068,85277],[-4,-148]],[[65064,85129],[2,-122],[171,-66]],[[65237,84941],[349,-122]],[[65586,84819],[-3,-91]],[[65583,84728],[-5,-230]],[[65578,84498],[-2,-53]],[[65576,84445],[-3,-100],[343,-8],[89,-2]],[[66005,84335],[87,-2]],[[66092,84333],[74,-1],[66,-2],[120,-4]],[[66352,84326],[100,-3]],[[66452,84323],[59,-2]],[[66511,84321],[327,-10],[191,-8],[393,-5]],[[67422,84298],[69,159]],[[67491,84457],[64,-11]],[[67555,84446],[151,-3]],[[67706,84443],[78,-2]],[[67784,84441],[4,1]],[[67788,84442],[63,-2]],[[67851,84440],[110,-2]],[[67961,84438],[88,-2],[44,-1]],[[68093,84435],[38,-1]],[[68131,84434],[94,-3],[131,1]],[[68356,84432],[128,0]],[[68484,84432],[1,0]],[[68485,84432],[457,-12],[5,152],[131,-2],[446,-12]],[[69524,84558],[4,0]],[[69528,84558],[435,-8]],[[69963,84550],[594,-12]],[[70557,84538],[14,-1]],[[70571,84537],[107,-8],[65,-4]],[[70743,84525],[88,-6]],[[70831,84519],[133,-4]],[[70964,84515],[45,0]],[[71009,84515],[344,-11]],[[71353,84504],[242,-8]],[[71595,84496],[171,-4]],[[71766,84492],[170,-6]],[[71936,84486],[-12,-307]],[[71924,84179],[237,-7],[295,-7]],[[72456,84165],[1588,-44]],[[74044,84121],[1176,-23]],[[75220,84098],[119,-4]],[[75339,84094],[800,-28]],[[76139,84066],[551,-18]],[[76690,84048],[1587,-48],[-1,-20],[1057,-28],[1509,-60]],[[80842,83892],[3838,-156],[3535,-132],[-25,-460],[1247,-53],[-1,-18],[3660,-168],[794,-35],[2718,-138],[314,-15]],[[96922,82717],[148,-8]],[[23046,41978],[9,-41],[178,-68],[144,112],[301,62],[516,-270],[108,50],[172,-17],[54,-73],[23,-214],[143,-222],[45,-144]],[[24739,41153],[23,-135]],[[24762,41018],[91,-73]],[[24853,40945],[91,-107],[339,-178],[158,-11],[133,-272],[-5,-90]],[[25569,40287],[29,-518],[-38,-177],[117,-177]],[[25677,39415],[93,-195],[82,49],[155,-160],[215,-52]],[[26222,39057],[149,-128],[-12,-216],[100,-171],[-180,-360],[250,-65],[56,-134],[-27,-174]],[[26558,37809],[-44,-66],[-284,-24],[-82,-70]],[[26148,37649],[-3,-5],[-70,-116],[-35,-57],[117,-180],[148,-19],[60,-61]],[[26365,37211],[-48,-52]],[[26317,37159],[169,-133]],[[26486,37026],[6,-9]],[[26492,37017],[-34,-172]],[[26458,36845],[-18,-36],[-3,-78]],[[26437,36731],[72,-65]],[[26509,36666],[32,-58]],[[26541,36608],[20,-61]],[[26561,36547],[-21,-111]],[[26540,36436],[-96,-69],[-57,-11]],[[26387,36356],[-219,54]],[[26168,36410],[-97,-101],[-40,-199]],[[26031,36110],[-18,-161],[-103,-68]],[[25910,35881],[-173,45],[-298,-313]],[[25439,35613],[-73,-174],[53,-95],[222,-201],[31,-185]],[[25672,34958],[771,6],[307,19]],[[26750,34983],[48,4]],[[31085,39614],[-197,95],[-164,-90],[-295,185],[-310,41],[-186,141],[-240,85]],[[29693,40071],[-211,-4],[-133,72],[-141,45],[-212,-11]],[[28996,40173],[-225,-77],[-188,66],[-2,2]],[[28581,40164],[-121,92]],[[28460,40256],[-416,84],[-430,-57],[-89,60],[-121,-49],[-153,-138],[-16,-104],[-103,-11]],[[27132,40041],[-76,4]],[[27056,40045],[-3,1]],[[27053,40046],[-217,-55],[-89,66],[-116,271],[-141,31]],[[26490,40359],[-6,11]],[[26484,40370],[23,120],[-241,190],[40,201],[-117,243],[-220,78],[13,76],[-173,73],[-83,97],[29,98],[143,62],[-139,113]],[[24892,54364],[145,-185],[213,133],[253,6]],[[25503,54318],[179,34]],[[25682,54352],[46,-150],[103,-71]],[[25831,54131],[338,-288],[126,-280],[124,-117],[172,57]],[[26591,53503],[202,-113],[30,63],[279,240],[337,3],[299,9],[1337,4]],[[17867,45649],[-36,-1]],[[17831,45648],[-98,-1]],[[17733,45647],[-3,0],[-66,-2],[-37,-1],[-37,0],[-36,-1]],[[17554,45643],[-72,-2]],[[17482,45641],[-20,0],[-19,1],[-65,-3],[-36,-1],[-37,0],[-24,0],[-17,-2],[-44,0],[-5,-1],[-95,-2],[-3,0],[-20,-1]],[[17097,45632],[-142,-2]],[[16955,45630],[-158,-3]],[[32020,41971],[-2,46],[-13,1352],[-7,612]],[[31998,43981],[6,315]],[[32004,44296],[13,668]],[[32017,44964],[-1,366]],[[32016,45330],[19,215],[-53,0]],[[31982,45545],[-124,-39]],[[31858,45506],[-28,-3]],[[31830,45503],[-162,7]],[[31668,45510],[-60,-25],[-159,-133],[-134,-43]],[[31315,45309],[-84,81],[-126,-32],[-34,80]],[[31071,45438],[-77,74],[-158,12],[-146,-107],[-82,104]],[[30608,45521],[-181,-22],[-70,84]],[[30357,45583],[-146,-93]],[[30211,45490],[1,123]],[[30212,45613],[-4,3]],[[30208,45616],[-176,60]],[[30032,45676],[-86,0]],[[29946,45676],[-178,44],[-35,162],[-94,55],[-91,-69]],[[29548,45868],[-82,190],[-150,-91],[-62,101],[-129,37],[-1,130]],[[29124,46235],[-176,55]],[[28948,46290],[-37,31],[-407,342],[-2,2],[-375,312]],[[28127,46977],[-1448,1215]],[[46169,75471],[-176,40],[-455,-1],[-425,-253],[-378,-301],[-286,-32],[-290,-208],[-269,-32],[-168,52],[-282,-19],[-348,-179],[-89,22],[-117,-107],[-298,-73],[-133,-102],[-104,-175],[-237,-79],[-236,41],[-264,-253],[-143,57],[-373,-33],[-218,-165],[-116,-25],[-191,-129],[-112,20],[-232,-114],[-51,-84],[-232,-84],[-309,217],[-92,-61],[-92,109],[-225,128],[-172,283],[45,96],[-81,94],[-147,17],[-65,76]],[[38808,74214],[-310,-10],[-114,-70],[-215,86],[-50,97],[-115,-41],[-197,65],[-139,-86],[-107,116],[73,209],[126,53],[-3,81],[128,110],[96,349],[-98,260],[-103,17]],[[37780,75450],[-160,-231],[-270,-164]],[[37350,75055],[-479,-301]],[[36871,74754],[-52,-29],[-241,-134],[-113,-40]],[[36465,74551],[-519,-48],[-177,40]],[[35769,74543],[-246,57],[-164,104],[-159,-40]],[[35200,74664],[-236,115]],[[34964,74779],[-77,-66],[-320,137],[-151,-160]],[[20523,48256],[-24,-1]],[[20499,48255],[-44,1]],[[20455,48256],[-64,119]],[[20391,48375],[-57,20]],[[20334,48395],[-85,-19],[-50,-37],[-28,-5],[-83,14],[-87,28],[-3,0],[-75,69],[-48,43],[-47,37],[-100,110]],[[19728,48635],[1,7]],[[19729,48642],[-11,40]],[[19718,48682],[-18,110]],[[19700,48792],[-20,52],[20,120],[-16,156]],[[19684,49120],[-80,120]],[[19604,49240],[-8,138],[246,346],[-133,48],[-37,22]],[[19672,49794],[96,99],[112,-23],[80,81],[-46,96],[138,100]],[[20052,50147],[-18,646]],[[20034,50793],[-29,97],[-597,-9]],[[19408,50881],[-251,-5],[-8,265],[-446,25],[-282,-8],[5,50],[40,367],[207,363],[-36,65]],[[46473,75468],[21,1644],[9,2677]],[[46503,79789],[23,517],[-138,250],[90,97],[-59,114]],[[46419,80767],[-119,80]],[[46300,80847],[-133,174]],[[25503,54318],[6,-211],[-88,-74],[-164,-2],[-168,-150],[-206,79],[-77,-194],[-89,-15],[-13,-125],[-276,-52],[-16,-179],[-217,-113],[-204,56],[198,-182],[-167,-85],[82,-77],[-108,-48],[-175,-240],[-148,-34],[-124,-100],[-223,-81],[-79,-142],[-255,-161],[-417,-85],[-355,-179],[-220,-72]],[[22000,51852],[-250,-153]],[[21750,51699],[-115,-17]],[[21635,51682],[0,0]],[[21635,51682],[-273,-211],[-119,-44]],[[21243,51427],[-39,-246],[-127,-113]],[[21077,51068],[-103,-128],[-106,20],[-123,-136],[-105,-4],[-299,-378],[-68,-10],[-207,-181],[-14,-104]],[[26672,48188],[-138,67],[23,102],[203,156],[8,134],[-107,161],[154,177],[61,153]],[[26876,49138],[133,-38],[227,73],[-113,321],[25,149],[110,150],[29,208],[-304,196],[-65,-50],[-103,132],[-24,364],[133,195],[187,99],[122,435],[37,263],[107,84],[97,-34],[-8,-148],[211,-187],[84,-3],[250,192],[164,-41],[126,44],[161,-185],[190,258],[244,26],[96,238]],[[27002,16967],[-626,-11],[-231,150],[-177,-77],[-351,30],[-84,-74],[-276,-123],[-318,44],[-139,133],[-384,-27],[-281,-81],[-297,73],[-115,-56],[-245,56],[-222,164],[-189,-29],[-188,82],[-424,-103],[-215,-27],[-321,79],[-474,81],[-25,-47],[-293,159],[-597,56]],[[20530,17419],[-56,150]],[[20474,17569],[-280,-122],[-200,15],[-47,76],[-269,32],[-9,-7],[-77,-38],[-142,95],[-181,-22],[-397,-6]],[[18872,17592],[-218,1],[-252,-81]],[[18402,17512],[-213,57],[-167,-29],[-66,-87],[-291,-1],[-202,-122],[-99,155],[-291,142],[-126,-30],[-300,221],[-140,-15],[28,75],[-267,118],[-361,-108],[-186,-112],[-205,7],[17,-120],[-177,-76],[-359,97],[-620,112],[-157,-62],[-188,156],[-262,272],[-155,-71],[-330,19],[-57,-50],[-206,74],[-248,34],[-154,130],[-226,36]],[[12394,18334],[2,-52]],[[12396,18282],[38,-217],[-53,-208],[117,-176],[119,26],[70,-181],[167,-72],[17,-122],[205,-132],[-7,-230],[149,3],[197,-75],[51,51],[161,-76],[74,-174],[127,-41],[151,48],[175,-302],[253,-77],[93,-83],[-44,-108],[305,-98],[200,-11]],[[14961,16027],[153,-200],[-24,-96],[246,-158],[141,32],[28,-108],[181,-113],[215,69],[53,-89]],[[15954,15364],[-60,-85],[-76,-483],[-241,-61],[89,-132],[-124,-171],[-8,-141],[-82,-74],[62,-89],[212,-8],[156,-314],[-117,-147],[192,-205],[275,-135],[119,-154],[29,-233],[-83,-144],[98,-189],[148,-35],[145,-359],[91,-13],[143,-193],[-106,-229],[94,-201],[-15,-89],[69,-278],[274,-92],[142,-193],[143,19],[106,-127],[34,-511],[-126,-103],[249,-159],[183,28],[235,-109],[101,4],[86,-225],[-10,-302],[46,-129],[-286,-195],[-122,14],[-65,-76]],[[17954,9046],[2776,41],[1132,36],[2437,41],[819,12],[2496,35]],[[31276,28116],[-99,-1295],[-142,-37],[-72,-235],[314,-197],[150,-846]],[[17954,9046],[13,-135],[-192,-148]],[[17775,8763],[65,-180],[-43,-141],[86,-56],[-49,-106],[15,-299],[142,-123],[-29,-142],[215,-110],[-228,-159],[6,-87],[-310,-7],[-122,-200],[-187,-71]],[[17336,7082],[-121,92],[23,238],[-85,109],[-248,-23],[-86,-49],[-170,75],[-6,207],[-79,162],[-89,-28],[-213,104],[-237,62],[-121,142],[-11,143],[-262,52],[-219,110],[-43,133],[-282,158],[-124,-83],[-161,93],[-398,-56],[-365,184],[-102,97],[-141,-92],[-94,41],[77,322],[-130,131],[44,152],[-128,122],[48,317],[224,132],[173,-15],[144,376],[79,80],[-44,151],[-107,61],[-48,153],[-212,12],[-101,-151],[-113,-62],[-300,-22],[-255,90],[-116,-4],[-88,-219],[19,-89],[-82,-144],[-223,-120],[-144,-21],[-118,-175],[-216,-40],[-194,34],[-359,-37],[-95,57],[-332,-52],[-156,-175],[-136,-330],[-95,-41],[-173,-186],[-198,17],[-38,-107],[-212,-127],[-262,116],[-105,-208],[-132,-101]],[[17936,41069],[-79,-137]],[[20859,37222],[332,-1],[106,-33],[268,260],[164,45],[248,-155]],[[21977,37338],[174,-163]],[[22151,37175],[142,-56]],[[22293,37119],[54,-14],[70,-65],[297,45],[198,-83],[354,17],[279,94]],[[23545,37113],[341,61],[165,-81]],[[24051,37093],[33,54],[155,-51]],[[24239,37096],[100,-69],[240,3]],[[24579,37030],[176,115]],[[24755,37145],[-19,416],[12,373],[-7,307]],[[24741,38241],[-26,1145],[962,29]],[[34623,44583],[780,631],[120,95]],[[35523,45309],[1123,943]],[[36646,46252],[516,427]],[[25672,34958],[104,-283],[-66,-127],[-196,-99]],[[25514,34449],[-151,176],[-243,43]],[[25120,34668],[23,88],[-174,49],[71,-103],[-151,-45],[-64,-280],[27,-61],[-143,-63],[-166,-27],[5,-231],[-70,-102],[74,-179],[-244,-203],[-331,148],[-159,-82],[-126,-133],[109,-263],[109,-47],[-211,-48],[97,-40],[-238,-52],[-50,-58]],[[25591,29058],[-71,38],[82,309],[-128,4],[-6,125],[99,240],[99,-10],[-69,238],[-75,13],[148,151],[-49,87]],[[25621,30253],[26,142]],[[25647,30395],[23,55]],[[25670,30450],[39,213],[35,68]],[[25744,30731],[63,89]],[[25807,30820],[-4,10],[-62,129],[9,161],[144,-13],[12,126],[-138,186]],[[25768,31419],[-99,156]],[[25669,31575],[39,256],[102,96],[-53,121],[150,29],[45,22],[-99,180],[15,179],[84,282],[-42,116],[45,169],[59,-202],[96,-151],[75,-3],[100,-195],[177,12],[150,-117],[201,-80]],[[26813,32289],[301,-75],[117,52],[276,-29]],[[13499,21617],[-12,-64],[-145,-152],[26,-146],[-62,-84],[67,-126],[-19,-291],[-183,-193],[122,-233],[-106,-320],[51,-92],[-192,-68],[62,-284],[134,-147],[-82,-301],[53,-187],[-123,-188],[-270,-141],[-168,11],[-132,-72],[-126,-205]],[[19633,44116],[-210,45],[-1,0]],[[19422,44161],[-71,-51],[-6,-4],[-16,-34],[-10,-55],[2,-39],[-48,3],[-8,0],[-34,-1],[-45,5],[-22,3],[-43,5],[-1,-48],[8,-19],[68,-10],[28,-51],[61,-6],[27,-3],[-3,-44]],[[19258,44320],[124,-37],[137,44],[48,44],[-58,27],[-121,-9],[-60,7],[-69,-39],[-17,-10],[16,-27]],[[19953,44553],[-15,120]],[[19938,44673],[-148,-65]],[[19790,44608],[-30,2]],[[19760,44610],[-18,-17],[-71,-101],[84,-89],[-2,62],[117,11]],[[19020,44798],[54,36],[70,-59],[127,36],[8,7],[58,38],[49,33],[-6,71],[-4,52]],[[19376,45012],[-80,-121],[-112,-31],[49,81]],[[19233,44941],[-61,21],[-50,-19],[-74,-19],[-48,-102]],[[19000,44822],[15,-27],[5,3]],[[19486,45090],[76,-62]],[[19562,45028],[23,-19],[39,21],[35,20],[40,134],[13,12]],[[19712,45196],[-130,-72],[-85,70]],[[19497,45194],[-11,-104]],[[20018,44725],[55,-52],[288,290]],[[20361,44963],[-71,-37]],[[20290,44926],[-251,-78]],[[20039,44848],[-72,-67],[51,-56]],[[20132,45010],[16,15],[82,8]],[[20230,45033],[110,18]],[[20340,45051],[12,-5],[61,9]],[[20413,45055],[68,131]],[[20481,45186],[-59,29]],[[20422,45215],[-139,-35]],[[20283,45180],[6,-56],[-65,23],[3,19],[-106,-31],[-51,-17],[29,-25],[32,-25],[1,-58]],[[20914,45580],[14,42],[-88,14],[-14,52],[-45,0],[-27,0],[-67,-33],[-45,-17],[-13,0],[-164,-17],[-9,79],[-17,-14],[-40,-26],[-23,-25]],[[20376,45635],[45,-137],[-7,-23],[-108,-14]],[[20306,45461],[-2,0],[-8,-38],[-3,-17],[-8,-18]],[[20285,45388],[199,-83],[48,-25]],[[20532,45280],[-45,173],[126,103],[117,-58],[133,-56],[51,138]],[[18718,43834],[110,-12],[14,51],[-44,48],[18,65]],[[18816,43986],[-60,12],[-38,-164]],[[19152,45364],[65,1],[46,10],[0,43],[37,23],[45,-71],[12,-57],[14,-57],[115,-45],[8,-14],[3,-3]],[[19497,45194],[-33,96],[-7,188],[-92,81],[-117,-87]],[[19248,45472],[-96,-108]],[[21007,45588],[70,-342],[71,228],[-47,288]],[[21101,45762],[-37,-2],[-38,-80],[-1,-1],[-18,-91]],[[19745,45521],[119,-17],[36,224]],[[19900,45728],[-73,83]],[[19827,45811],[-59,25]],[[19768,45836],[-97,-184],[-49,16]],[[19622,45668],[196,-80],[-73,-67]],[[19855,45878],[108,-4],[-2,-10]],[[19961,45864],[-57,-35]],[[19904,45829],[-23,-26]],[[19881,45803],[140,-61]],[[20021,45742],[17,35]],[[20038,45777],[15,34],[9,67],[5,18],[-50,-22],[40,70],[45,59],[35,42],[22,28]],[[20159,46073],[-92,49],[-45,-53]],[[20022,46069],[-49,-66]],[[19973,46003],[-53,-24]],[[19920,45979],[-65,-101]],[[21101,46080],[54,-35]],[[21155,46045],[44,23]],[[21199,46068],[106,-11],[52,97],[35,62]],[[21392,46216],[-34,54],[-320,-108]],[[21038,46162],[26,-15],[33,-6],[-12,-34],[16,-27]],[[21279,46765],[-5,32],[-163,-4]],[[21111,46793],[-75,21],[-59,-12],[-29,-8]],[[20948,46794],[-26,-81],[-22,-36]],[[20900,46677],[21,-83],[58,-8],[34,86],[94,-79],[9,-8],[115,133],[48,47]],[[22155,47603],[15,172]],[[22170,47775],[-57,19]],[[22113,47794],[-58,-128],[-27,-86],[9,-2],[4,0],[92,-10],[68,10],[-46,25]],[[21469,47753],[44,-98]],[[21513,47655],[123,120]],[[21636,47775],[-58,199],[-55,-1]],[[21523,47973],[-58,-20],[4,-200]],[[22609,45808],[192,5],[0,10],[-116,168]],[[22685,45991],[-126,45],[12,11]],[[22571,46047],[21,15]],[[22592,46062],[15,11]],[[22607,46073],[-123,54],[-56,-166],[-8,0],[-118,-19]],[[22302,45942],[-42,-103]],[[22260,45839],[120,-26],[-7,-18],[155,11],[81,2]],[[22561,45917],[-69,62],[64,40],[3,-66],[2,-36]],[[22735,46462],[27,-48]],[[22762,46414],[136,35],[-10,90],[-154,-41]],[[22734,46498],[1,-36]],[[23496,46309],[68,0],[150,3]],[[23714,46312],[143,25]],[[23857,46337],[-2,91],[-151,-31],[-150,113],[-41,87]],[[23513,46597],[-49,33],[-148,-175],[5,-145]],[[23321,46310],[173,38],[2,-39]],[[23036,45900],[49,2]],[[23085,45902],[211,215],[-301,30]],[[22995,46147],[-183,-168],[-5,-19],[139,33],[90,-93]],[[22870,45658],[125,-18],[-10,-114],[224,-42],[130,151],[-3,194],[-252,-6]],[[23084,45823],[-23,-96],[-192,3],[1,-72]],[[24053,46064],[147,3]],[[24200,46067],[65,1],[73,2]],[[24338,46070],[0,1]],[[24338,46071],[-5,156],[-226,-7],[-69,-51]],[[24038,46169],[-40,-29]],[[23998,46140],[55,-76]],[[24136,45826],[159,-65]],[[24295,45761],[53,129]],[[24348,45890],[-5,27]],[[24343,45917],[-29,-4],[-105,71],[-56,3]],[[24153,45987],[-85,-76],[68,-85]],[[23632,23956],[-1,11],[-145,-1],[-55,0],[-53,0],[-24,12],[-110,-104]],[[23244,23874],[48,-18],[340,100]],[[23068,24204],[-94,-47]],[[22974,24157],[243,-273]],[[23217,23884],[103,116],[76,90],[-49,103],[-82,108]],[[23265,24301],[-197,-97]],[[23808,24351],[39,-32],[86,-81]],[[23933,24238],[89,-101],[67,-18]],[[24089,24119],[17,7]],[[24106,24126],[-96,122],[-189,113]],[[23821,24361],[-13,-10]],[[23858,24519],[85,-22]],[[23943,24497],[73,-11]],[[24016,24486],[32,1],[90,141]],[[24138,24628],[-21,94],[-178,-43],[-115,-104]],[[23824,24575],[-15,-9],[49,-47]],[[23821,24361],[24,22]],[[23845,24383],[8,8],[22,18]],[[23875,24409],[-66,41]],[[23809,24450],[-75,-11],[-7,-8]],[[23727,24431],[-23,-14],[117,-56]],[[25896,23281],[-79,-5],[-12,-245]],[[25805,23031],[31,-30]],[[25836,23001],[41,202],[54,-4],[104,-99],[110,141],[-95,253],[43,93]],[[26093,23587],[-28,14],[-70,-2],[-134,-5]],[[25861,23594],[102,-168],[-15,-73],[-52,-72]],[[26107,24067],[9,13],[132,39]],[[26248,24119],[-32,174]],[[26216,24293],[-49,11]],[[26167,24304],[-42,-33],[-70,22]],[[26055,24293],[-13,0]],[[26042,24293],[14,-77],[-42,-39],[4,-115],[26,1],[63,4]],[[25652,24221],[35,-48]],[[25687,24173],[17,-31],[94,-82],[137,1],[-86,114],[-12,76]],[[25837,24251],[-50,180]],[[25787,24431],[-131,-65],[-207,40]],[[25449,24406],[172,-151],[20,-23],[11,-11]],[[26191,26864],[51,-73],[-67,24]],[[26175,26815],[-55,-27],[0,-83],[-222,84]],[[25898,26789],[-42,5],[-314,7]],[[25542,26801],[183,-49],[19,-108],[314,-62]],[[26058,26582],[56,77],[87,1],[131,67]],[[26332,26727],[2,19]],[[26334,26746],[7,6],[8,107]],[[26349,26859],[-42,16]],[[26307,26875],[-123,41]],[[26184,26916],[7,-52]],[[26508,27047],[-78,-135],[1,-23],[-62,-44]],[[26369,26845],[34,-39],[77,0]],[[26480,26806],[164,58],[142,18],[-75,97],[7,86],[-210,-18]],[[26519,26656],[-42,73]],[[26477,26729],[-54,9]],[[26423,26738],[96,-82]],[[25896,26839],[146,-38],[15,76],[-8,55]],[[26049,26932],[-155,-2]],[[25894,26930],[2,-91]],[[21850,29933],[114,67],[31,10]],[[21995,30010],[72,258],[-154,-91],[-152,-176],[89,-68]],[[24286,42389],[198,69],[143,-34],[115,126]],[[24742,42550],[-49,3],[-70,235]],[[24623,42788],[-147,-68],[-70,-27]],[[24406,42693],[1,-80],[-125,-75],[4,-149]],[[24617,43201],[176,-20],[-5,154]],[[24788,43335],[-176,0]],[[24612,43335],[5,-134]],[[23832,43134],[172,34],[1,-75],[176,3]],[[24181,43096],[-13,154],[89,231]],[[24257,43481],[-435,-7]],[[23822,43474],[41,-223],[-31,-117]],[[24565,43366],[34,42],[-90,0],[-36,-1]],[[24473,43407],[41,-106],[51,65]],[[25136,43563],[338,36]],[[25474,43599],[-111,118]],[[25363,43717],[-39,158]],[[25324,43875],[-197,0],[3,-76]],[[25130,43799],[6,-236]],[[22677,42848],[18,-133]],[[22695,42715],[7,-27],[74,3],[91,75],[42,-73],[10,0],[174,3],[48,1],[33,30],[68,57],[103,73]],[[23345,42857],[-18,-1]],[[23327,42856],[-121,-15]],[[23206,42841],[-95,-13],[-79,97],[-41,210],[-163,-26],[-151,-261]],[[22535,42528],[65,52]],[[22600,42580],[-5,92],[-124,-32],[-56,-106]],[[22415,42534],[24,-27],[96,21]],[[22409,42167],[-28,213]],[[22381,42380],[-29,0],[-77,-2],[-81,-1],[35,-87],[-129,-38],[0,15],[-83,30],[-106,-1]],[[21911,42296],[-74,-24]],[[21837,42272],[10,-324]],[[20370,42465],[-59,-176]],[[20472,42261],[13,120],[101,-17],[-2,113]],[[20584,42477],[-26,6],[-57,1],[-13,8],[-41,-37],[-44,25],[-33,-15]],[[20735,42577],[186,3]],[[20921,42580],[175,-156]],[[21096,42424],[109,204]],[[21205,42628],[-168,67]],[[21037,42695],[-62,26],[-98,7],[-105,-71],[-24,1],[-13,-81]],[[20493,42717],[63,-37]],[[20556,42680],[148,135],[-141,-27],[-70,-71]],[[20500,42799],[40,5],[185,147],[55,74]],[[20780,43025],[-132,31]],[[20648,43056],[-156,-78]],[[20492,42978],[2,-119],[6,-60]],[[20993,44085],[-4,-7]],[[20989,44078],[-26,-43]],[[20963,44035],[28,-98]],[[20991,43937],[47,12],[161,-52]],[[21199,43897],[7,12]],[[21206,43909],[89,123],[-31,14],[140,255]],[[21404,44301],[-106,48],[-131,-48]],[[21167,44301],[-1,-110]],[[21166,44191],[-1,-66],[-64,-73],[-108,33]],[[21286,43390],[169,-98]],[[21455,43292],[38,47],[45,56],[13,17]],[[21551,43412],[-87,30]],[[21464,43442],[-103,37],[-57,-67],[-18,-22]],[[21615,43552],[95,16],[65,142]],[[21775,43710],[-152,87],[-186,105]],[[21437,43902],[-28,15],[-83,-71],[23,-68],[75,-89],[93,32],[55,-170],[43,1]],[[20172,43489],[263,138],[295,47],[-206,-116],[198,40]],[[20722,43598],[60,47],[229,36]],[[21011,43681],[-5,47]],[[21006,43728],[-98,-5]],[[20908,43723],[-115,-11]],[[20793,43712],[-173,16],[-13,6]],[[20607,43734],[-86,14],[-49,11],[-23,6]],[[20449,43765],[-153,7]],[[20296,43772],[-96,-10]],[[20200,43762],[18,-153],[-46,-120]],[[20807,43785],[106,7]],[[20913,43792],[22,56]],[[20935,43848],[12,39]],[[20947,43887],[3,6]],[[20950,43893],[-44,-4],[-88,-4],[51,121]],[[20869,44006],[24,49]],[[20893,44055],[-95,-53],[-33,-89],[-24,-76],[66,-52]],[[21714,44664],[18,-25],[8,0],[12,55],[126,2],[26,60]],[[21904,44756],[-127,5],[37,61],[61,152],[-153,73]],[[21722,45047],[-30,0]],[[21692,45047],[68,-59],[-94,-86],[-8,-116],[124,-8],[-68,-114]],[[22018,44949],[102,-42],[52,-15]],[[22172,44892],[-2,178],[1,1],[-58,56],[-20,15]],[[22093,45142],[-110,43]],[[21983,45185],[-64,-122],[-26,-60],[80,-34],[45,-20]],[[22218,45211],[11,-31],[45,-114],[100,-18]],[[22374,45048],[101,258]],[[22475,45306],[-3,102],[-110,20],[-50,-69]],[[22312,45359],[-73,-101]],[[22239,45258],[-21,-47]],[[22221,44706],[-8,18],[-87,-49],[-158,-80],[-181,-92],[3,-63],[-130,4]],[[21660,44444],[-78,-56]],[[21582,44388],[-69,-48]],[[21513,44340],[-83,-67]],[[21430,44273],[-33,-63],[118,-6],[-6,-146]],[[21509,44058],[137,-120]],[[21646,43938],[128,101],[-36,230],[59,21],[81,-4]],[[21878,44286],[220,-73],[36,183]],[[22134,44396],[-4,34],[-253,-38],[-34,24],[132,64],[84,-38],[162,264]],[[20752,43183],[81,2]],[[20833,43185],[0,68],[-82,215],[-15,111],[-2,4]],[[20734,43583],[-152,-201],[72,6],[98,-205]],[[20057,44072],[59,-71],[64,-9],[24,62],[217,147],[49,-26],[10,-74],[-2,-33],[8,-100]],[[20486,43968],[52,-105]],[[20538,43863],[185,124],[-43,165]],[[20680,44152],[-111,135],[177,70]],[[20746,44357],[-196,44],[-5,186]],[[20545,44587],[-14,-13]],[[20531,44574],[-114,-170]],[[20417,44404],[25,-28]],[[20442,44376],[14,-46],[3,-87],[-169,48]],[[20290,44291],[-85,-68],[-16,18]],[[20189,44241],[-32,-122],[-100,-47]],[[20039,43763],[141,54],[-35,121],[-215,-57],[-5,8]],[[19925,43889],[-8,9]],[[19917,43898],[-95,-84],[-10,-25]],[[19812,43789],[48,-145],[89,-48],[102,100],[-12,67]],[[22408,44639],[190,-39]],[[22598,44600],[-67,184],[-34,5],[-83,-9],[-6,-141]],[[22631,44971],[151,-186]],[[22782,44785],[176,51],[26,200],[-101,276]],[[22883,45312],[-176,27],[26,-146],[-160,-30]],[[22573,45163],[-7,-29]],[[22566,45134],[65,-163]],[[21726,43255],[46,-46]],[[21772,43209],[134,-8],[75,20],[10,3],[121,53]],[[22112,43277],[-1,37]],[[22111,43314],[-203,239]],[[21908,43553],[-118,-260],[-64,-38]],[[22134,43142],[33,-27],[52,-31]],[[22219,43084],[166,-31],[178,-123]],[[22563,42930],[-140,202]],[[22423,43132],[-157,45]],[[22266,43177],[-88,-9]],[[22178,43168],[-44,-26]],[[22334,43288],[46,-8]],[[22380,43280],[137,-14]],[[22517,43266],[-3,190]],[[22514,43456],[-61,-26]],[[22453,43430],[-75,-71]],[[22378,43359],[-24,-8]],[[22354,43351],[-20,-63]],[[19568,41966],[47,92]],[[19615,42058],[31,167],[-207,-95],[117,-165]],[[19148,42799],[222,111]],[[19370,42910],[-40,74],[-206,64]],[[19124,43048],[9,-176],[-96,-96],[111,23]],[[18242,43105],[-35,-10]],[[18207,43095],[-21,-38],[-155,7]],[[18031,43064],[-142,-84]],[[17889,42980],[-35,-75],[187,-30],[137,-65],[58,-123],[-61,-191],[42,-51],[325,115]],[[18542,42560],[13,23],[-19,4],[-10,88],[-4,4],[-6,5]],[[18516,42684],[-26,51]],[[18490,42735],[-30,46],[-145,28],[-33,119],[-1,5],[-12,60],[-2,24],[-5,42],[-20,46]],[[18178,43368],[56,2],[68,1],[43,1],[8,1],[88,2],[96,81],[156,214]],[[18657,43678],[-106,-12],[-69,-115]],[[18482,43551],[52,-90],[-149,-15],[-165,62]],[[18220,43508],[-42,-140]],[[2486,2367],[34,154]],[[2520,2521],[7,70]],[[2527,2591],[-31,2]],[[2496,2593],[-241,-222]],[[2255,2371],[231,-4]],[[40937,33142],[-35,-36],[-22,23]],[[40880,33129],[-122,-4],[-21,-4],[-54,-14]],[[40683,33107],[0,-64],[45,-91],[-1,-16]],[[40727,32936],[554,-150],[80,-137]],[[41361,32649],[16,13]],[[41377,32662],[-75,166]],[[41302,32828],[-39,58]],[[41263,32886],[-27,111]],[[41236,32997],[91,53]],[[41327,33050],[-35,74],[-113,-87],[39,-176],[-101,26]],[[41117,32887],[-94,-12],[-86,20],[-10,69],[151,33],[22,7]],[[41100,33004],[-105,95]],[[40995,33099],[-7,5],[-51,38]],[[40847,33610],[106,41]],[[40953,33651],[-5,97],[-163,18]],[[40785,33766],[62,-156]],[[30392,35507],[-81,28]],[[30311,35535],[-48,10],[-49,10],[-12,-72],[-158,-15]],[[30044,35468],[-8,-11]],[[30036,35457],[-129,-149],[-98,77],[-8,138]],[[29801,35523],[-80,49],[-21,-48],[55,-85]],[[29755,35439],[28,-114],[-112,-46]],[[29671,35279],[-3,-37]],[[29605,35235],[-41,154],[-3,137],[-27,10],[-102,-75],[-45,-2]],[[29387,35459],[0,-172],[127,-60]],[[29415,35219],[-71,-58]],[[29344,35161],[64,-24],[-48,-60],[-108,-22]],[[29252,35055],[0,-135]],[[29252,34920],[-1,-45]],[[29251,34875],[24,-43],[10,-54],[296,-96],[264,1],[70,-5]],[[29915,34678],[104,6],[-17,249],[-214,129],[-10,189]],[[30270,35213],[61,-183],[184,-18],[83,-107]],[[30598,34905],[57,227],[-111,-13],[41,178]],[[30585,35297],[32,175]],[[30617,35472],[-67,-3],[26,309],[90,-48],[41,87],[78,-104]],[[30785,35713],[63,136]],[[30848,35849],[-129,46],[-143,51]],[[30702,35459],[170,29],[100,0],[114,116]],[[31086,35604],[-140,-1]],[[30946,35603],[-16,4],[-145,106]],[[30785,35713],[-83,-254]],[[31437,35415],[98,-16],[22,78],[157,12],[55,133]],[[31769,35622],[-60,110],[-101,16]],[[31608,35748],[-6,-34],[-83,23],[-20,-15],[-44,-102]],[[31455,35620],[74,-51],[-92,-154]],[[31406,35862],[-300,11]],[[31106,35873],[-28,-119],[107,-45],[155,69],[64,60],[2,24]],[[33125,34847],[114,238]],[[33239,35085],[-175,-27]],[[33064,35058],[-270,-52]],[[32794,35006],[331,-159]],[[32980,35194],[164,-94]],[[33144,35100],[126,15]],[[33270,35115],[38,-15]],[[33308,35100],[13,48]],[[33321,35148],[-194,-14],[-147,60]],[[35171,34820],[92,-120],[169,87]],[[35432,34787],[-396,134]],[[35036,34921],[135,-101]],[[32847,35604],[-219,20]],[[32628,35624],[310,-316],[133,89],[1,96],[-78,42],[-147,69]],[[41378,32847],[103,92],[-80,40]],[[41401,32979],[-48,-73]],[[41353,32906],[21,-46],[4,-13]],[[42677,56456],[177,-1]],[[42854,56455],[89,76]],[[42943,56531],[0,115],[-265,1],[0,-38]],[[42678,56609],[-1,-153]],[[42942,56377],[166,-1]],[[43108,56376],[80,78]],[[43188,56454],[-69,76],[-176,1]],[[42943,56531],[-1,-77]],[[42942,56454],[0,-77]],[[43383,56453],[0,-76]],[[43383,56377],[89,-1],[1,153]],[[43473,56529],[-2,201],[-127,-124]],[[43344,56606],[39,-153]],[[43828,56196],[174,-19],[0,-42],[0,-76]],[[44002,56059],[0,-34]],[[44002,56025],[1,-32]],[[44003,55993],[175,0]],[[44178,55993],[177,0],[0,142]],[[44355,56135],[1,232],[-177,0],[2,155],[-176,-1]],[[44005,56521],[-3,-231],[-173,0],[-1,-94]],[[42068,55848],[176,-1]],[[42244,55847],[1,77],[174,-2],[0,116]],[[42419,56038],[-174,1],[-178,1]],[[42067,56040],[1,-192]],[[39959,56239],[304,-1]],[[40263,56238],[48,73]],[[40311,56311],[-2,157]],[[40309,56468],[-354,1],[4,-230]],[[42098,55387],[141,-1]],[[42239,55386],[89,44],[2,39],[88,71],[0,76],[23,76],[77,77],[-29,0],[-61,-59],[-115,-113],[-56,-55],[-79,-78]],[[42178,55464],[-80,-77]],[[41816,54946],[198,138],[-37,0],[-253,27]],[[41724,55111],[-165,-93]],[[42417,55310],[132,0],[6,76],[-106,1]],[[42449,55387],[-33,-23],[1,-54]],[[42727,54918],[104,8]],[[42831,54926],[0,156]],[[42831,55082],[-109,1],[-47,-41],[-7,-44]],[[42668,54998],[-2,-32]],[[42965,55535],[31,0]],[[42996,55535],[5,76],[-4,76]],[[42997,55687],[-11,0]],[[42986,55687],[-43,0],[0,-47],[0,-48],[22,-57]],[[43516,55532],[-44,155]],[[43472,55687],[-89,0],[-87,-58],[0,-19],[0,-76],[89,-3],[131,1]],[[43472,55152],[69,76]],[[43541,55228],[18,35]],[[43559,55263],[-1,42]],[[43558,55305],[-58,76]],[[43500,55381],[-116,0],[-88,0],[0,-38],[0,-38],[0,-77],[2,-74],[-2,-1],[88,-1],[88,0]],[[43911,55075],[68,0],[20,73]],[[43999,55148],[1,44],[-88,-2]],[[43912,55190],[0,-40]],[[43912,55150],[-1,-75]],[[45230,56143],[-1,153]],[[45229,56296],[-229,153]],[[45000,56449],[-119,2]],[[44881,56451],[3,-153],[84,0],[0,-153],[262,-2]],[[46200,57407],[44,41]],[[46244,57448],[44,77]],[[46288,57525],[1,38],[-89,3]],[[46200,57566],[-80,-51]],[[46120,57515],[-22,-109]],[[46098,57406],[102,1]],[[46115,57733],[87,1]],[[46202,57734],[87,20]],[[46289,57754],[1,76]],[[46202,57830],[-113,2],[26,-99]],[[44705,56910],[242,-1],[-52,152],[-191,-2],[1,-149]],[[44531,57835],[-174,-171],[-1,-69],[-77,-75]],[[44279,57520],[76,0]],[[44355,57520],[351,0],[1,154]],[[44707,57674],[-88,0],[-86,94],[59,58],[79,77],[25,25],[97,95]],[[44793,58023],[115,111],[-59,0],[-143,-115]],[[44706,58019],[-72,-85],[-14,-13],[-89,-86]],[[45323,58286],[284,0]],[[45410,58439],[-86,0],[0,-23],[-1,-130]],[[42487,58138],[-71,-152],[89,-1],[1,153],[88,0],[0,114],[0,38],[-180,1],[-176,1],[1,-153],[248,-1]],[[37414,62158],[174,8],[-1,134],[-92,159]],[[37495,62459],[-33,1],[-47,-153]],[[37415,62307],[-1,-149]],[[37257,62537],[67,-75]],[[37324,62462],[22,-2],[149,-1]],[[37495,62459],[23,1]],[[37518,62460],[2,156],[-281,-1],[18,-78]],[[38453,57026],[90,103],[-172,-1]],[[38371,57128],[82,-102]],[[36429,54694],[0,-36]],[[36526,54850],[-62,23]],[[36464,54873],[-16,-7]],[[36448,54866],[-50,-52]],[[36398,54814],[31,-120]],[[20397,24438],[-80,-3],[-92,-3]],[[20225,24432],[10,-263]],[[20235,24169],[11,-206],[103,52],[205,109],[157,-43]],[[20711,24081],[7,138]],[[20718,24219],[-314,-10],[-7,229]],[[20290,26404],[162,3],[98,152],[-166,1],[-97,132]],[[20287,26692],[-8,-28]],[[20279,26664],[1,-40],[1,-67],[9,-153]],[[2555,12522],[-90,76]],[[2465,12598],[-50,6],[-33,87],[-29,-2],[-30,-1]],[[2323,12688],[-118,4]],[[2205,12692],[210,-317],[140,147]],[[2024,13233],[167,-172],[-65,-112],[39,-108]],[[2165,12841],[38,9]],[[2203,12850],[65,28],[29,1],[47,-8],[-7,57]],[[2337,12928],[-58,116],[128,-32]],[[2407,13012],[31,-1],[11,-4]],[[2449,13007],[89,99]],[[2538,13106],[-255,83],[-71,-128],[-19,3],[2,157]],[[2195,13221],[-171,12]],[[2546,12814],[3,-60]],[[2549,12754],[83,4]],[[2632,12758],[44,2],[6,-112]],[[2682,12648],[7,3]],[[2689,12651],[21,14]],[[2710,12665],[46,104]],[[2756,12769],[95,10]],[[2851,12779],[-82,117]],[[2769,12896],[-96,-79],[-117,-3],[-10,0]],[[2740,12907],[0,71]],[[2740,12978],[-147,98]],[[2593,13076],[18,-88],[-112,-46]],[[2499,12942],[49,-52],[192,17]],[[3477,11915],[-8,163],[-116,-5],[-109,27]],[[3244,12100],[-2,-167],[46,7],[144,-40],[45,15]],[[3226,11533],[29,76]],[[3255,11609],[23,59]],[[3278,11668],[6,49]],[[3284,11717],[-20,0]],[[3264,11717],[-217,-119]],[[3047,11598],[7,-116],[172,51]],[[3015,11750],[131,41]],[[3146,11791],[27,38],[2,48]],[[3175,11877],[-23,57]],[[3152,11934],[-164,-70],[27,-114]],[[3288,11249],[12,162],[-141,-37]],[[3159,11374],[-33,-20]],[[3126,11354],[-13,-159],[175,54]],[[2909,15858],[-103,-142]],[[2806,15716],[-112,-38],[170,-1],[125,78],[-80,103]],[[86409,94880],[118,-33]],[[86527,94847],[41,23]],[[86568,94870],[51,76],[25,-79]],[[86644,94867],[83,-3],[61,-85]],[[86788,94779],[87,-4]],[[86875,94775],[8,235],[-282,16],[-158,5],[-295,89],[140,-209],[121,-31]],[[86114,96961],[-11,-200],[-18,-343],[-20,-381],[253,-11],[17,86]],[[86335,96112],[-10,0]],[[86325,96112],[-85,69],[64,-2]],[[86304,96179],[38,228],[8,153]],[[86350,96560],[-85,81],[1,40],[5,74],[3,43],[5,76],[3,43],[3,38],[92,-4],[84,-3],[92,-3],[92,-3]],[[86645,96942],[97,219]],[[86742,97161],[-615,24]],[[86127,97185],[-13,-224]],[[86503,96630],[202,-8]],[[86705,96622],[4,79]],[[86709,96701],[-134,84]],[[86575,96785],[-20,-42],[-9,-21],[-17,-36],[-26,-56]],[[86903,97933],[47,40],[86,-3],[124,99]],[[87160,98069],[-326,38]],[[86834,98107],[69,-174]],[[56519,49461],[-86,135],[-90,3]],[[56343,49599],[-55,-154],[-213,76],[-5,-226]],[[56070,49295],[112,-1]],[[56182,49294],[20,0],[152,-3],[154,-56],[9,184]],[[56517,49419],[-50,23],[52,19]],[[49734,69756],[176,-1],[77,0],[95,-1],[-2,-343],[368,220]],[[50448,69631],[-10,122],[167,-8]],[[50605,69745],[6,20]],[[50611,69765],[4,98]],[[50615,69863],[1,41]],[[50616,69904],[-89,7],[-87,72],[-196,-5]],[[50244,69978],[-24,-14],[-31,-42],[-102,61]],[[50087,69983],[-175,1]],[[49912,69984],[-176,0],[-2,-228]],[[50587,70282],[-62,-48]],[[50525,70234],[108,-75],[11,45]],[[50644,70204],[1,81],[141,-1]],[[50786,70284],[17,2]],[[50803,70286],[0,20],[0,53]],[[50803,70359],[4,36],[-2,121]],[[50805,70516],[-89,1]],[[50716,70517],[-59,-185],[-70,-50]],[[51372,70218],[45,-2],[109,-4]],[[51526,70212],[-1,141]],[[51525,70353],[-105,2],[-33,0]],[[51387,70355],[-15,-137]],[[50808,70826],[0,-4]],[[50808,70822],[87,-1]],[[50895,70821],[87,-1]],[[50982,70820],[68,29],[-66,124]],[[50984,70973],[-87,1]],[[50897,70974],[-88,1]],[[50809,70975],[-1,-85],[0,-64]],[[50806,70686],[2,136]],[[50808,70822],[-88,0]],[[50720,70822],[-1,-76],[-1,-60],[88,0]],[[49876,70827],[-93,0],[-81,0],[-7,-141],[-123,47]],[[49572,70733],[-54,-31]],[[49518,70702],[168,-46]],[[49686,70656],[237,-84]],[[49923,70572],[-4,100]],[[49919,70672],[2,106],[93,-106]],[[50014,70672],[90,-1]],[[50104,70671],[-3,99],[-4,32]],[[50097,70802],[-42,2],[-59,42],[-75,-20],[-45,1]],[[49925,71132],[-1,-69],[0,-10],[87,-1],[89,0]],[[50100,71052],[2,127]],[[50102,71179],[0,30],[-52,-8],[-120,8],[-4,0]],[[49926,71209],[-1,-77]],[[46229,72989],[89,-1],[80,-1]],[[46398,72987],[11,34],[107,119],[-180,-4],[-177,0]],[[46159,73136],[70,-147]],[[49739,70290],[1,77]],[[49740,70367],[-178,1],[-2,0]],[[49560,70368],[1,-76],[178,-2]],[[63966,67794],[4,0]],[[63970,67794],[1,152]],[[63971,67946],[-177,4],[-173,4],[-1,-153],[-4,-154],[-3,-154],[-34,-156]],[[63579,67337],[117,-1]],[[63696,67336],[91,77]],[[63787,67413],[3,76]],[[63790,67489],[2,155],[89,-3],[87,-1]],[[63968,67640],[0,38]],[[63968,67678],[0,38]],[[63968,67716],[-175,-34],[2,117],[171,-5]],[[60964,72703],[181,72],[220,-4],[119,74],[-67,66],[58,112]],[[61475,73023],[-241,58],[-348,8],[-2,-154],[88,-2],[-8,-230]],[[58872,75731],[-6,-153]],[[58866,75578],[208,-38],[150,31]],[[59224,75571],[-43,148]],[[59181,75719],[0,1],[5,152]],[[59186,75872],[15,155]],[[59201,76027],[-147,4],[-2,-153],[-89,-36]],[[58963,75842],[-4,-115],[-87,4]],[[59230,75871],[34,-155]],[[59264,75716],[48,-82],[180,27]],[[59492,75661],[8,356]],[[59500,76017],[-266,8],[-4,-154]],[[54923,73052],[354,-6],[45,151],[-42,116],[-176,1],[-2,-112],[-180,-74],[1,-76]],[[56101,72674],[46,100]],[[56147,72774],[-129,56]],[[56018,72830],[-122,-9]],[[55896,72821],[-1,-26],[-57,87],[-138,-11]],[[55700,72871],[-10,-127],[204,-24],[207,-46]],[[56363,72976],[366,8]],[[56729,72984],[1,3],[-28,185],[-355,7]],[[56347,73179],[-1,-155],[17,-48]],[[52516,72217],[88,-40]],[[52604,72177],[179,-3]],[[52783,72174],[4,154],[-179,2]],[[52608,72330],[-91,-75]],[[52517,72255],[-1,-38]],[[43228,60671],[-3,137],[-174,23]],[[43051,60831],[0,-71],[-1,-59],[178,-30]],[[43933,60586],[-2,-142]],[[43931,60444],[0,-153]],[[43931,60291],[270,0],[5,154],[77,-1],[0,71]],[[44283,60515],[-98,17]],[[44185,60532],[-77,13],[-175,41]],[[43932,60597],[178,1]],[[44110,60598],[0,82],[176,1]],[[44286,60681],[2,76]],[[44288,60757],[-358,1]],[[43930,60758],[2,-161]],[[44338,60598],[123,1]],[[44461,60599],[2,153]],[[44463,60752],[-99,3]],[[44364,60755],[-26,-157]],[[42659,61808],[56,178],[-175,0]],[[42540,61986],[119,-178]],[[39551,63902],[79,-26],[90,-52]],[[39720,63824],[87,61],[-3,353]],[[39804,64238],[-67,-101]],[[39737,64137],[-186,-235]],[[13183,31490],[214,53]],[[13397,31543],[-31,92],[89,170]],[[13455,31805],[-71,-3],[-201,-312]],[[13949,30531],[276,163]],[[14225,30694],[118,71],[239,154]],[[14582,30919],[-363,169],[-80,193]],[[14139,31281],[-235,-157]],[[13904,31124],[144,-458],[-179,-48],[80,-87]],[[16145,32320],[101,77],[-9,172]],[[16237,32569],[-186,-5]],[[16051,32564],[2,-27],[92,-217]],[[16715,33891],[115,8],[0,211]],[[16830,34110],[-286,80]],[[16544,34190],[-88,-99],[-4,-194],[263,-6]],[[58251,82143],[6,-43]],[[58257,82100],[124,77]],[[58381,82177],[0,21]],[[58381,82198],[-5,68],[0,38],[-7,-5],[-23,-14],[-33,-52],[-49,-62],[-13,-28]],[[57291,81967],[0,-7],[21,-80]],[[57312,81880],[104,-60]],[[57416,81820],[88,86]],[[57504,81906],[349,1]],[[57853,81907],[22,48],[-6,39]],[[57869,81994],[-64,114],[-78,2]],[[57727,82110],[-110,6],[-67,115],[-97,16],[-89,44],[-44,-82]],[[57320,82209],[-51,-61]],[[57269,82148],[100,-99],[113,-1],[186,-1],[-95,-54],[-282,-26]],[[56941,81832],[137,-124],[109,49]],[[57187,81757],[-30,97]],[[57157,81854],[-23,-5],[-125,41],[-10,8],[-64,-62]],[[56935,81836],[6,-4]],[[55959,81320],[115,67],[238,2]],[[56312,81389],[-14,70],[-189,68],[-63,-37]],[[56046,81490],[-4,-2]],[[56042,81488],[-126,-133]],[[55916,81355],[43,-35]],[[56250,81692],[112,33],[-51,50]],[[56311,81775],[-99,-103]],[[56212,81672],[38,20]],[[55650,81792],[80,50],[-4,-100],[105,38],[13,110],[52,-11],[4,22],[1,46],[-44,1]],[[55857,81948],[-118,-2]],[[55739,81946],[-89,-154]],[[56317,81927],[14,-69]],[[56331,81858],[0,-64]],[[56331,81794],[124,118],[6,10],[53,53],[1,2],[-89,26],[-74,26]],[[56352,82029],[-35,-102]],[[55086,82402],[-50,1],[-74,1]],[[54962,82404],[-16,-76],[-140,2]],[[54806,82330],[-124,9]],[[54670,82061],[-106,51]],[[54564,82112],[-170,30]],[[54394,82142],[-13,-30],[-1,-83],[-2,-78]],[[54378,81951],[223,130],[67,-35]],[[54668,82049],[168,-75],[207,18]],[[55043,81992],[47,10]],[[55090,82002],[-29,95],[-72,1],[-44,1],[-63,77],[-66,77],[154,-2],[54,-1],[78,-1],[66,-1],[89,-1],[110,75]],[[55367,82322],[25,91]],[[55392,82413],[-89,-17]],[[55303,82396],[-235,-54],[18,60]],[[54329,82399],[201,15]],[[54530,82414],[15,135],[127,-29]],[[54672,82520],[18,58]],[[54690,82578],[-117,2],[15,77],[1,12],[-43,1]],[[54546,82670],[-181,41],[89,47]],[[54454,82758],[-6,60]],[[54448,82818],[-116,20]],[[56994,82240],[47,44]],[[57041,82284],[-112,115],[-63,-58],[27,-21],[33,-25],[32,-26],[36,-29]],[[55380,83505],[-125,-48]],[[55255,83457],[-20,-236]],[[55235,83221],[90,-55]],[[55325,83166],[44,-12],[37,7],[84,-9]],[[55490,83152],[38,-9]],[[55528,83143],[-63,190],[154,44],[75,-211],[14,1]],[[55708,83167],[51,35],[88,5],[89,16]],[[55936,83223],[55,56],[74,43],[3,97],[-50,76]],[[56018,83495],[-114,17],[-56,1]],[[55848,83513],[-108,-2],[-134,25],[-213,-40],[-13,9]],[[57099,83900],[62,34],[1,25]],[[57162,83959],[-119,30],[-25,-28],[-76,56]],[[56942,84017],[-68,78],[23,55],[-92,-8],[-35,12],[-101,-99],[-8,-19]],[[56661,84036],[113,-18],[54,-2],[-15,-33],[-27,-5],[-2,-68],[-106,-144],[2,-285]],[[56680,83481],[84,-5],[55,-70]],[[56819,83406],[-24,-61],[113,-5]],[[56908,83340],[0,22],[211,47]],[[57119,83409],[120,59]],[[57239,83468],[60,82]],[[57299,83550],[-229,39],[-9,91],[-36,182],[-5,45],[79,-7]],[[56979,83498],[-6,-6],[-122,21],[-29,96],[28,256],[65,-1],[-39,-143],[103,-223]],[[58531,83521],[146,-21],[71,12],[21,39],[-51,37],[-14,-10],[-44,-30],[-36,9],[-93,-36]],[[57670,83453],[116,21]],[[57786,83474],[15,45]],[[57801,83519],[6,56],[-56,82],[-17,18],[-34,-16]],[[57700,83659],[-62,-112]],[[57638,83547],[-8,-7],[40,-87]],[[57299,83550],[36,-75],[131,61],[-21,13],[-138,82],[-8,-81]],[[59020,83821],[48,-65],[43,-17],[43,-5],[10,-7],[15,60],[-4,11],[-33,121],[-22,8],[-74,-17],[-11,-55],[-11,-6],[-4,-28]],[[57696,84119],[24,0],[0,-23],[-1,-54],[88,-2],[3,77],[-33,39],[-24,35],[-4,11],[-50,5],[-3,-88]],[[58695,84570],[-131,-27]],[[58564,84543],[-80,-38]],[[58484,84505],[27,-37],[30,-65],[37,-28],[31,22],[6,5],[30,20],[54,39]],[[58699,84461],[-3,77],[-1,32]],[[57193,84770],[152,-46],[3,-69]],[[57348,84655],[6,2],[61,-2],[109,57],[-21,165]],[[57503,84877],[-1,1],[-76,-12],[-41,3],[-94,97]],[[57291,84966],[-13,27]],[[57278,84993],[-139,-45]],[[57139,84948],[16,-11],[72,-48],[-60,-56],[13,-30],[13,-33]],[[56447,83489],[164,0],[12,-7]],[[56623,83482],[-7,329],[-91,-58],[-58,-50],[-20,-214]],[[56250,83571],[39,-36],[72,-35]],[[56361,83500],[47,79],[-1,265],[49,132],[45,76],[7,4]],[[56508,84056],[-8,7],[-111,34],[-35,82],[-16,14],[-42,37]],[[56296,84230],[-43,-258]],[[56253,83972],[39,-77],[-13,-46],[-62,-155],[33,-123]],[[55946,84332],[58,-153],[-54,-100]],[[55950,84079],[151,154],[12,-2]],[[56113,84231],[15,24],[-11,85],[-100,100]],[[56017,84440],[-47,81],[-39,-1]],[[55931,84520],[28,-138],[-13,-50]],[[55675,84204],[94,85]],[[55769,84289],[-9,60],[-1,-1]],[[55759,84348],[-40,11],[-125,-9],[-64,-159]],[[55530,84191],[145,13]],[[55346,84333],[178,47]],[[55524,84380],[7,28],[-38,66]],[[55493,84474],[-115,-33]],[[55378,84441],[-32,-108]],[[56943,84338],[15,-9]],[[56958,84329],[53,65],[14,36],[-44,35],[-59,-25],[-30,-36],[-18,-23],[1,-1],[36,-22],[32,-20]],[[56628,85264],[113,-135],[14,-8]],[[56755,85121],[65,95],[44,33],[-73,-10],[-77,38],[-82,-10],[-4,-3]],[[57228,85350],[53,-77],[17,0],[11,-1],[-7,77],[1,74]],[[57303,85423],[-75,-73]],[[58568,86941],[110,-7]],[[58678,86934],[5,68]],[[58683,87002],[-54,29],[-21,-4],[-9,-1],[-27,-46],[-4,-39]],[[57933,87814],[83,-59],[33,14],[3,49],[-9,11]],[[58043,87829],[-11,26]],[[58032,87855],[-99,-41]],[[58869,82479],[-67,-37],[-36,99],[-26,-13],[-10,-5],[42,-105],[-8,-39],[-74,-41],[-6,-35],[-100,-66]],[[58584,82237],[64,-63]],[[58648,82174],[173,5],[2,92],[0,93],[145,-37],[93,3]],[[59061,82330],[147,216]],[[59208,82546],[-148,9],[-14,0]],[[59046,82555],[-108,-58]],[[58938,82497],[-15,-31],[-54,13]],[[58650,82671],[118,144],[12,40],[-59,47],[-25,35],[-4,36]],[[58692,82973],[-23,-1]],[[58669,82972],[-196,-196],[141,36],[36,-141]],[[58894,82600],[42,20]],[[58936,82620],[67,30],[11,5],[36,101],[88,38]],[[59138,82794],[3,69],[108,-6],[52,13],[6,1],[46,9]],[[59353,82880],[76,27],[33,-1],[2,78],[-69,36],[35,4],[12,120],[51,50]],[[59493,83194],[17,45]],[[59510,83239],[5,42],[-55,1]],[[59460,83282],[-40,1],[-20,122],[-9,108]],[[59391,83513],[17,-24],[-79,-40],[31,-139],[-98,24]],[[59262,83334],[-37,-83]],[[59225,83251],[-50,-174],[-205,87]],[[58970,83164],[-146,65]],[[58824,83229],[-10,-3]],[[58814,83226],[5,-36]],[[58819,83190],[206,-154],[125,-26],[19,-62],[-66,-22],[-66,-37],[-43,-33]],[[58994,82856],[-66,-61]],[[58928,82795],[-60,-133]],[[58868,82662],[6,-19],[20,-43]],[[57768,83178],[29,49]],[[57797,83227],[-71,61]],[[57726,83288],[-84,26]],[[57642,83314],[10,-79],[-3,-6],[-3,-6],[122,-45]],[[63555,83229],[129,-1],[35,229]],[[63719,83457],[-116,12],[-110,-8],[-43,1]],[[63450,83462],[105,-233]],[[63353,83160],[70,-5]],[[63423,83155],[175,-4]],[[63598,83151],[-63,75]],[[63535,83226],[-142,6],[-57,42]],[[63336,83274],[17,-114]],[[62804,83322],[78,-2],[-7,-126]],[[62875,83194],[105,-26],[6,263]],[[62986,83431],[-86,-13]],[[62900,83418],[-88,-15]],[[62812,83403],[-42,-6]],[[62770,83397],[34,-75]],[[61797,83369],[-1,-73],[-151,31]],[[61645,83327],[62,-48],[47,-51]],[[61754,83228],[-93,-75],[-3,-115]],[[61658,83038],[177,-4]],[[61835,83034],[331,-4],[108,-1]],[[62274,83029],[-91,188]],[[62183,83217],[-51,159],[-38,-12],[-25,1],[-1,-78],[-50,-61],[-37,-126],[19,127],[-72,62],[-54,78],[-77,2]],[[62622,83404],[18,118]],[[62640,83522],[-88,1],[-95,-2],[4,-42],[72,-73],[38,-1],[51,-1]],[[63144,84064],[7,11]],[[63151,84075],[-242,147],[-62,122]],[[62847,84344],[-63,-17],[-80,16],[-55,-37]],[[62649,84306],[-142,-85]],[[62507,84221],[-15,-7]],[[62492,84214],[367,-117],[-9,-19],[-128,-44],[26,-16]],[[62748,84018],[151,-78],[80,-9]],[[62979,83931],[152,-47],[193,29],[72,-144]],[[63396,83769],[21,-35]],[[63417,83734],[141,59],[-34,125],[-93,70],[-93,-10],[-93,3],[-152,66],[51,17]],[[63207,84085],[42,12],[110,-2],[89,-5],[3,38],[-20,40],[-27,40],[-54,7],[-74,-74]],[[63276,84141],[-69,-56]],[[62439,84901],[-6,-98]],[[62433,84803],[-16,-72]],[[62417,84731],[82,-46],[45,-28],[90,-64],[33,-22],[60,-27],[46,-77]],[[62773,84467],[130,180],[-74,70],[-141,35],[5,7],[-147,76],[-107,66]],[[62773,85023],[29,-31],[116,-38]],[[62918,84954],[52,142],[-123,81],[-74,-154]],[[62726,84471],[-78,27],[-41,9],[-95,-59]],[[62512,84448],[19,-32],[104,-39],[91,94]],[[61667,83650],[144,-21]],[[61811,83629],[34,19],[2,78],[0,3],[-44,36],[-43,31],[0,12],[-26,0],[-122,-3],[-44,21],[-16,-19],[-2,-76],[42,-2],[75,-79]],[[61745,84014],[97,0],[49,-1],[18,0],[-47,45],[-32,33],[-2,1],[-81,23],[-32,-52],[30,-49]],[[61675,84496],[62,-76],[-31,-7],[2,-20],[0,-1],[62,3],[82,37],[-3,49],[96,31],[-22,65],[-7,16],[-120,10],[-44,-13],[-78,-81],[1,-13]],[[61171,84435],[29,-31],[26,-87],[27,-23],[42,28],[48,36],[49,36]],[[61392,84394],[-84,84],[-137,-43]],[[61707,84958],[100,8]],[[61807,84966],[131,11]],[[61938,84977],[82,93],[-35,36]],[[61985,85106],[-275,-59]],[[61710,85047],[-3,-89]],[[62310,85017],[168,48],[81,-46],[32,5],[65,67]],[[62656,85091],[-90,99]],[[62566,85190],[-395,-31]],[[62171,85159],[29,-110],[64,-24],[29,-5],[17,-3]],[[61109,83085],[69,-134],[126,-37]],[[61304,82914],[-1,132]],[[61303,83046],[-76,144]],[[61227,83190],[-52,2],[-65,-88],[-1,-19]],[[60411,82912],[181,-3],[177,-4],[89,-2]],[[60858,82903],[37,-1]],[[60895,82902],[-30,263]],[[60865,83165],[3,36],[-44,2],[-24,-94],[-23,-72],[-23,0],[-66,1]],[[60688,83038],[-65,2]],[[60623,83040],[-33,1],[0,-21],[0,-5],[-10,-2],[-120,31],[-71,2],[-2,-48]],[[60387,82998],[24,-86]],[[60350,84373],[27,-119],[123,-1],[44,-1],[44,-1],[0,38],[15,77]],[[60603,84366],[-253,7]],[[59272,82502],[431,57],[103,59],[251,183]],[[60057,82801],[-100,-17],[-130,22]],[[59827,82806],[-79,-78],[1,-65],[-54,45]],[[59695,82708],[-74,-32],[21,-48],[-100,56],[-77,45],[-12,-4]],[[59453,82725],[-37,-174],[-144,-49]],[[59841,83569],[-67,14]],[[59774,83583],[-5,-7]],[[59769,83576],[1,-82]],[[59770,83494],[-9,-49],[96,-25],[21,-5],[24,-3],[72,-48],[15,-2]],[[59989,83362],[18,135]],[[60007,83497],[2,28],[-131,11],[10,16],[-47,17]],[[59808,84330],[11,2],[97,23],[116,26],[133,48],[-182,58],[-65,-33],[-28,-29],[-80,-82],[-2,-13]],[[60816,84918],[259,-62]],[[61075,84856],[224,172],[62,17],[102,22]],[[61463,85067],[91,176],[173,-52],[127,-12]],[[61854,85179],[-30,163]],[[61458,85349],[-1,-5]],[[61457,85344],[-141,-82],[-110,55],[117,-91],[-162,45],[-54,-10],[2,-72],[-86,-17]],[[61023,85172],[-21,-11],[-40,-52],[-81,-37],[-86,-30],[-1,-29],[24,-19],[0,-19],[-2,-38],[0,-19]],[[60525,85328],[139,80]],[[60664,85408],[20,31],[30,21],[-3,20],[-68,34],[-65,2]],[[60578,85516],[-64,-105]],[[60514,85411],[11,-83]],[[59174,84685],[-2,-38]],[[59172,84647],[62,6],[49,0],[55,45],[179,13]],[[59517,84711],[-3,11]],[[59514,84722],[-1,2]],[[59513,84724],[-1,0]],[[59512,84724],[-92,9],[-62,70]],[[59358,84803],[-184,-118]],[[59381,85299],[27,1],[65,8],[53,13],[-80,202],[-10,32],[-73,-7],[-9,-1]],[[59354,85547],[27,-248]],[[58279,85920],[9,-52]],[[58288,85868],[83,-2]],[[58371,85866],[51,-1]],[[58422,85865],[22,92],[19,76]],[[58463,86033],[-177,8]],[[58286,86041],[-7,-121]],[[58458,86168],[13,-97]],[[58471,86071],[74,-19],[37,13],[48,-7],[2,31]],[[58632,86089],[3,75]],[[58635,86164],[-177,4]],[[58884,86663],[-17,-43]],[[58867,86620],[3,-8],[7,2],[84,12],[6,-39],[7,-19]],[[58974,86568],[83,-54]],[[59057,86514],[1,7],[149,-56],[12,31],[24,66],[-22,13],[-87,71],[-3,1],[-52,5],[-16,-2],[-84,13],[-95,0]],[[59936,87131],[-1,-21],[73,62],[-60,1],[-12,-42]],[[59741,87119],[-1,-19],[91,-2],[102,75],[-59,1],[-89,2],[-44,-38],[0,-19]],[[58059,91780],[-160,65]],[[57899,91845],[50,-82],[110,17]],[[57647,85149],[47,-25],[42,-11],[23,37],[67,37],[0,19],[-82,30],[-4,28],[-89,4],[-1,-20],[0,-30]],[[57650,85218],[-3,-69]],[[57835,85620],[2,102]],[[57837,85722],[-88,1],[-11,0],[-33,1],[-44,0],[-1,-37],[-1,-39],[73,-24],[73,1],[30,-5]],[[58011,85567],[43,-1],[45,0],[36,-1],[8,0],[-43,73],[-89,1]],[[58011,85639],[0,-72]],[[57588,86339],[147,109],[94,2]],[[57829,86450],[2,83],[-51,33],[-112,-11]],[[57668,86555],[0,-60],[-91,-55],[-1,-36],[-1,-37],[1,-28],[12,0]],[[57610,86784],[33,-28],[76,-42],[124,99],[1,31],[2,31],[0,10],[0,81],[18,91],[-68,-26],[-117,-92],[-67,-41],[-2,-114]],[[57670,87186],[-53,-67],[90,-39]],[[57707,87080],[75,64],[69,-51],[53,6],[39,10],[7,97],[1,54],[1,115]],[[57952,87375],[-118,3]],[[57834,87378],[-30,-134],[-134,-58]],[[56967,87163],[101,-143],[83,-6],[47,135]],[[57198,87149],[-115,6]],[[57083,87155],[-116,8]],[[57773,87495],[62,-115]],[[57835,87380],[49,99],[-9,211],[-30,20]],[[57845,87710],[-31,57]],[[57814,87767],[-196,-55],[-88,-95],[-216,-61],[-167,72],[-163,-116]],[[56984,87512],[93,-17],[42,38],[78,-40],[-5,-126]],[[57192,87367],[149,16],[131,-35]],[[57472,87348],[102,65],[-12,101]],[[57562,87514],[-30,68],[234,107],[65,-105],[-58,-89]],[[54722,83449],[182,-126]],[[54904,83323],[65,25]],[[54969,83348],[20,66],[-100,172],[-210,-16]],[[54679,83570],[-231,-1],[-34,144],[-15,-56],[-261,-1],[-173,-87],[-5,5],[-181,4],[1,-66],[-375,-86]],[[53405,83426],[-4,-61]],[[53401,83365],[234,28],[-164,-106]],[[53471,83287],[139,16],[0,-172]],[[53725,83130],[-80,265],[218,38]],[[53863,83433],[122,89],[51,-142],[4,-48]],[[54040,83332],[0,-3]],[[54040,83329],[195,-27]],[[54235,83302],[152,8],[222,-88]],[[54609,83222],[0,2],[21,6]],[[54630,83230],[-146,169],[210,69],[28,-19]],[[53980,83120],[42,115]],[[54022,83235],[-128,21],[11,-136]],[[53142,82977],[-11,79]],[[53131,83056],[-12,78]],[[53252,83133],[3,8]],[[53255,83141],[-40,54]],[[53215,83195],[-97,81],[-22,-1],[-128,63]],[[52968,83338],[-110,-34]],[[52943,83249],[-30,-96],[33,-227],[196,51]],[[52812,84761],[103,-76],[248,-35],[-4,48]],[[53159,84698],[-71,129],[-120,77],[-156,-143]],[[62696,78266],[176,-5]],[[62872,78261],[11,309]],[[62883,78570],[-177,4],[-3,-114],[-7,-194]],[[59764,77704],[55,-2],[89,-1],[89,-2],[3,76],[178,-4]],[[60178,77771],[179,-3]],[[60357,77768],[2,77]],[[60359,77845],[-535,11]],[[59824,77856],[-60,-152]],[[59538,77248],[271,-7]],[[59809,77241],[0,154],[0,1],[-133,3],[-111,3],[-15,-84],[-12,-70]],[[59983,77239],[178,-6],[7,230]],[[60168,77463],[-89,3],[-6,-152],[-88,2],[-2,-77]],[[58927,77720],[2,77],[2,77],[90,-2]],[[59021,77872],[45,-1]],[[59066,77871],[44,-1],[1,0],[89,-2],[89,-2],[0,-38],[88,-16]],[[59377,77812],[91,52]],[[59468,77864],[4,152]],[[59472,78016],[-179,4],[-44,0]],[[59249,78020],[-131,3],[-181,-10]],[[58937,78013],[-6,-139],[-87,20],[-87,1]],[[58757,77895],[-5,-173],[175,-2]],[[61199,78911],[15,-230]],[[61214,78681],[63,-1],[223,-5],[132,-4],[5,232],[-134,2],[-304,6]],[[60949,79302],[153,-230]],[[61102,79072],[130,-3],[168,-4],[6,230],[-169,3],[-88,2]],[[61149,79300],[-176,4],[-18,72]],[[60955,79376],[-6,-74]],[[59308,78637],[3,0]],[[59311,78637],[177,-3],[-4,-132],[-1,-22]],[[59483,78480],[268,-5]],[[59751,78475],[26,154]],[[59777,78629],[-54,0],[-96,3],[3,62]],[[59630,78694],[-139,18],[84,118],[-17,110]],[[59558,78940],[-271,2],[21,-305]],[[59818,78935],[241,-5]],[[60059,78930],[37,-1],[28,0],[-9,33],[37,178]],[[60152,79140],[-28,32]],[[60124,79172],[-67,74]],[[60057,79246],[-55,-16],[-184,-295]],[[55609,80377],[56,-64],[71,-15],[70,-36],[50,-51],[41,-14],[94,-59],[-21,-17],[-80,-96],[2,-71]],[[55892,79954],[-18,-158]],[[55874,79796],[347,4],[1,-82],[146,-37]],[[56368,79681],[-69,195]],[[56299,79876],[-302,256],[70,19]],[[56067,80151],[-122,233],[1,7],[14,55]],[[55960,80446],[-141,56],[-247,-76]],[[55572,80426],[11,-16],[26,-33]],[[56236,80547],[20,-21],[156,-6],[-1,3],[-22,33],[-50,39],[-103,-48]],[[55962,80522],[167,21],[2,75],[53,61]],[[56184,80679],[-134,209]],[[56050,80888],[-61,65]],[[55989,80953],[-39,-19],[-75,-39],[-131,-24],[-42,-19],[-24,-30],[-28,-37],[-26,-35]],[[55624,80750],[157,41],[228,10],[-47,-279]],[[56407,80376],[237,-276]],[[56644,80100],[91,35]],[[56735,80135],[-136,164]],[[56599,80299],[-125,107],[-22,26],[-37,-27],[-8,-29]],[[54678,79728],[100,6]],[[54778,79734],[210,-3],[-105,146],[367,52],[51,-78],[189,95]],[[55490,79946],[-36,62]],[[55454,80008],[-143,53],[-67,164],[115,74]],[[55359,80299],[-227,104]],[[55132,80403],[-213,-185]],[[54919,80218],[-79,-68],[-23,-39]],[[54817,80111],[-5,-28],[-5,-149],[-140,-21]],[[54667,79913],[-284,-19]],[[54383,79894],[115,-194],[180,28]],[[55217,80581],[116,-28]],[[55333,80553],[28,53],[14,82],[5,34],[-110,8]],[[55270,80730],[-53,-149]],[[38400,52136],[7,115]],[[38407,52251],[-174,76],[-38,-76]],[[38195,52251],[71,-89],[134,-26]],[[40003,53939],[88,-95]],[[40091,53844],[87,-2],[2,22],[87,-1],[0,29],[88,48]],[[40355,53940],[-1,229]],[[40354,54169],[-177,0]],[[40177,54169],[2,-153],[-170,-1],[-6,-76]],[[40068,53310],[109,18]],[[40177,53328],[1,176],[-112,36],[-200,-179]],[[39866,53361],[202,-51]],[[40177,53060],[176,-62],[0,295]],[[40353,53293],[-176,-17]],[[40177,53276],[0,-134]],[[40177,53142],[0,-82]],[[40534,53865],[176,1],[0,-77],[154,231],[-307,-1]],[[40557,54019],[-23,-154]],[[41929,54177],[2,-153]],[[41931,54024],[175,0],[176,1],[1,152],[-177,0],[-177,0]],[[16113,41632],[105,-69]],[[16218,41563],[99,118],[-32,66]],[[16285,41747],[-167,-42],[-5,-73]],[[16420,41958],[217,-26],[-62,183]],[[16575,42115],[-16,-17],[-94,169],[-49,-11]],[[16416,42256],[7,-29]],[[16423,42227],[43,-79],[-174,10],[-63,-100],[19,-10],[172,-90]],[[17074,41835],[-72,171]],[[17002,42006],[-25,45],[-241,-8]],[[16736,42043],[-152,-205]],[[16584,41838],[68,-93],[277,166],[40,-107],[105,31]],[[16339,42702],[-56,46],[-59,-42],[-45,-87]],[[16179,42619],[10,-78]],[[16189,42541],[22,-136],[-146,-153]],[[16065,42252],[145,21]],[[16210,42273],[175,143],[-35,34]],[[16350,42450],[-91,12],[25,38]],[[16284,42500],[41,55],[132,12]],[[16457,42567],[167,84],[-25,11],[66,92],[-37,53],[-14,1],[-59,-7],[-49,-55]],[[16506,42746],[36,-67],[-182,-69],[-21,92]],[[16717,42807],[-12,15],[-5,-81],[-67,-96]],[[16633,42645],[245,-75],[83,19],[116,-4]],[[17077,42585],[82,170]],[[17159,42755],[-215,59]],[[16944,42814],[-8,-60],[-219,53]],[[15803,42319],[10,-6]],[[15813,42313],[27,-20]],[[15840,42293],[163,154]],[[16003,42447],[-11,133]],[[15992,42580],[-20,2]],[[15972,42582],[-152,-98]],[[15820,42484],[-17,-165]],[[16267,43000],[-138,-106]],[[16129,42894],[4,-38]],[[16133,42856],[162,12]],[[16295,42868],[25,-8]],[[16320,42860],[3,-1],[94,-26],[98,91],[-59,25]],[[16456,42949],[-59,19],[112,65]],[[16509,43033],[24,6]],[[16533,43039],[42,27],[-3,5],[-45,57]],[[16527,43128],[-105,-68]],[[16422,43060],[-32,-90],[-123,30]],[[16382,43320],[15,-79]],[[16397,43241],[177,10],[11,55]],[[16585,43306],[-76,58],[131,56]],[[16640,43420],[-33,175]],[[16607,43595],[-36,-14],[-42,-23],[-28,-64]],[[16501,43494],[-83,-149],[-36,-25]],[[16743,43177],[7,-27]],[[16750,43150],[58,-93]],[[16808,43057],[284,101]],[[17092,43158],[-100,64],[-144,-68],[46,174]],[[16894,43328],[-76,70],[-66,-69]],[[16752,43329],[-9,-152]],[[16953,43184],[0,0]],[[17024,43397],[-127,85]],[[16897,43482],[-35,-79],[162,-6]],[[16751,43512],[146,-30]],[[16897,43482],[116,48]],[[17013,43530],[-144,89],[-3,0]],[[16866,43619],[-29,-6]],[[16837,43613],[-103,-40]],[[16734,43573],[17,-61]],[[17030,43705],[-32,-75],[63,-45]],[[17061,43585],[67,-16]],[[17128,43569],[17,12]],[[17145,43581],[94,93],[116,46],[67,112]],[[17422,43832],[-15,27]],[[17407,43859],[-92,-12]],[[17315,43847],[-90,-9],[-92,-52]],[[17133,43786],[-13,-25],[-90,-56]],[[16889,43861],[34,101],[153,101]],[[17076,44063],[-53,-19],[-51,-28],[-42,-7],[-110,-116],[-15,10]],[[16805,43903],[-22,1]],[[16783,43904],[-36,-50]],[[16747,43854],[-69,59],[110,124]],[[16788,44037],[-170,89],[-132,-218],[-44,9],[-85,-104],[4,-53],[-30,-98]],[[16331,43662],[-9,-91],[-176,-88]],[[16146,43483],[40,-36]],[[16186,43447],[179,94],[-9,36],[94,17]],[[16450,43594],[63,40],[15,16],[-68,80],[59,15],[-8,60],[126,-16],[83,21],[-2,-17]],[[16718,43793],[0,-24],[171,92]],[[5064,27162],[27,-55]],[[5091,27107],[14,1]],[[5105,27108],[163,-7]],[[5268,27101],[-202,156]],[[5066,27257],[-66,11]],[[5000,27268],[64,-106]],[[10446,30127],[99,32]],[[10545,30159],[8,41],[-36,62]],[[10517,30262],[-9,22]],[[10508,30284],[-136,-16]],[[10372,30268],[-97,-63],[171,-78]],[[10612,30335],[41,-10]],[[10653,30325],[58,90]],[[10711,30415],[1,35]],[[10712,30450],[-50,167],[-36,-132]],[[10626,30485],[-14,-150]],[[33378,48767],[156,153]],[[33534,48920],[-151,-2]],[[33383,48918],[-5,-98],[0,-53]],[[33989,49161],[92,77]],[[34081,49238],[-4,94]],[[34077,49332],[-173,-71]],[[33904,49261],[-45,-18]],[[33859,49243],[3,-82],[127,0]],[[32505,48917],[176,4],[193,93],[-95,60],[44,114],[-149,38],[-176,-3],[7,-306]],[[34840,49511],[119,0],[0,19]],[[34959,49530],[-36,82],[-102,6]],[[34821,49618],[-39,-3]],[[34782,49615],[-88,-65],[146,-39]],[[35127,49935],[182,0]],[[35309,49935],[-3,230]],[[35306,50165],[-182,1]],[[35124,50166],[3,-231]],[[35792,49851],[53,-147],[179,-1],[4,-153],[337,0]],[[36365,49550],[-6,305]],[[36359,49855],[-91,0],[-76,0],[-6,77],[-175,59]],[[36011,49991],[0,11],[-174,-116]],[[35837,49886],[-46,-32]],[[35791,49854],[1,-3]],[[35834,50163],[1,-122]],[[35835,50041],[125,68],[113,-28]],[[36073,50081],[148,60],[-39,72],[-73,-29],[-58,-24],[-47,38],[-3,88],[-1,31],[-6,155]],[[35994,50472],[-171,2],[11,-311]],[[36232,50318],[243,-2]],[[36475,50316],[179,141]],[[36654,50457],[-480,13]],[[36174,50470],[4,-153],[54,1]],[[36612,50247],[89,0]],[[36701,50247],[-1,77]],[[36700,50324],[-206,-4],[5,-75],[113,2]],[[38303,50812],[235,42],[-1,179],[-88,-78],[-131,0],[-15,-143]],[[32536,52610],[28,68]],[[32564,52678],[-72,55],[-127,0]],[[32365,52733],[21,-197],[-8,-256]],[[32378,52280],[238,2],[177,3]],[[32793,52285],[-2,151]],[[32791,52436],[-3,122],[-64,-1],[-43,0],[-244,4],[99,49]],[[32778,52889],[5,-154]],[[32783,52735],[283,7],[22,2]],[[33088,52744],[-4,5]],[[33084,52749],[-132,69],[-4,152],[-173,-3],[3,-78]],[[35740,6015],[198,1]],[[35938,6016],[40,101],[-150,9]],[[35828,6126],[-88,-111]],[[50574,46616],[164,-40]],[[50738,46576],[79,72]],[[50817,46648],[-323,63]],[[50494,46711],[80,-95]],[[25054,56248],[76,-134]],[[25130,56114],[36,-29]],[[25166,56085],[-45,170]],[[25121,56255],[-107,82],[40,-89]],[[24170,54178],[-4,105],[-166,29],[-117,21],[-31,-104]],[[24906,55057],[102,74],[-22,31]],[[24986,55162],[-192,147],[112,-252]],[[24355,57291],[-3,85]],[[24352,57376],[-217,254],[120,-287],[100,-52]],[[23708,58490],[180,186],[154,55]],[[24042,58731],[-67,41]],[[23975,58772],[-108,-27],[-283,-359]],[[23584,58386],[-2,-5],[126,109]],[[22001,57990],[28,2],[121,40],[21,-102],[2,-37],[11,-60]],[[22184,57833],[9,-3]],[[22193,57830],[7,-40]],[[22200,57790],[82,67],[-69,202]],[[22213,58059],[-163,121]],[[22050,58180],[-49,-190]],[[22117,57078],[19,32]],[[22136,57110],[-14,12],[-5,-44]],[[22106,57058],[-42,84]],[[22064,57142],[-25,47],[-22,32],[-35,25]],[[21982,57246],[-57,-21]],[[21925,57225],[34,-167],[147,0]],[[22691,57469],[80,-12],[32,-11]],[[22803,57446],[167,99],[10,81]],[[22980,57626],[-166,-27],[-75,104],[-163,-21]],[[22576,57682],[-56,-163]],[[22520,57519],[-4,-5]],[[22516,57514],[32,-19]],[[22548,57495],[-1,-3],[-49,-2]],[[22498,57490],[-61,-14],[-48,23],[-55,-33]],[[22334,57466],[32,-89]],[[22366,57377],[54,-47]],[[22420,57330],[37,79],[152,-30]],[[22609,57379],[-4,98],[2,2],[84,-10]],[[23420,56788],[228,-98],[95,51]],[[23743,56741],[243,120]],[[23986,56861],[-534,4],[-18,114],[-183,-5]],[[23251,56974],[-25,-95]],[[23226,56879],[65,-30],[-63,-21],[1,-38]],[[23229,56790],[189,74],[2,-76]],[[24085,55378],[9,72],[-140,127],[68,58]],[[24022,55635],[-159,51]],[[23863,55686],[-1,-4]],[[23862,55682],[-61,-311],[284,7]],[[19080,39456],[133,10]],[[19213,39466],[21,88]],[[19234,39554],[-22,5],[-81,80]],[[19131,39639],[-73,-10]],[[19058,39629],[25,-84],[14,-33],[-17,-56]],[[19137,39327],[-13,84],[-44,45]],[[19080,39456],[-9,3],[-63,-46],[10,-77],[49,-8],[70,-1]],[[18639,38867],[181,-94],[84,142],[124,223]],[[19028,39138],[-170,-54]],[[18858,39084],[-15,-134],[-59,33]],[[18784,38983],[-83,28]],[[18701,39011],[-23,-49]],[[18678,38962],[-39,-95]],[[18702,39388],[57,17]],[[18759,39405],[27,9],[3,51],[35,30],[-1,29],[-1,36]],[[18822,39560],[-129,32]],[[18693,39592],[-37,1]],[[18656,39593],[46,-205]],[[17345,37199],[50,56]],[[17395,37255],[-3,2],[120,119]],[[17512,37376],[-259,37]],[[17253,37413],[84,-108],[-55,-79],[63,-27]],[[17569,36445],[95,-134],[189,246],[-201,51]],[[17652,36608],[-83,-163]],[[16368,36329],[135,76],[-47,92]],[[16456,36497],[-86,-90],[-2,-78]],[[16175,36324],[140,142],[127,54]],[[16442,36520],[-22,33],[-306,-138],[16,-47],[45,-44]],[[30830,31022],[-142,-20],[92,-252],[76,-157]],[[30856,30593],[167,-137]],[[31023,30456],[77,187]],[[31100,30643],[-188,41],[107,29],[8,198],[-135,65],[-62,46]],[[29697,29708],[-286,23]],[[29411,29731],[-3,-74],[186,-115],[99,45],[4,121]],[[29697,29708],[26,151]],[[29723,29859],[-44,108],[-112,-7]],[[29567,29960],[-29,-92]],[[29538,29868],[-30,-116],[188,64],[1,-108]],[[31299,29996],[-351,-30]],[[30948,29966],[-61,-8],[55,-41],[12,-23]],[[30954,29894],[-45,-91]],[[30909,29803],[-15,-38]],[[30894,29765],[12,-27]],[[30906,29738],[293,-116]],[[31199,29622],[33,3]],[[31232,29625],[-63,66],[3,4]],[[31172,29695],[180,159]],[[31352,29854],[-108,81],[55,61]],[[31426,29482],[-221,-61]],[[31205,29421],[62,-77],[100,21],[59,117]],[[38962,28937],[206,-103],[62,13]],[[39230,28847],[-31,105]],[[38974,28952],[-12,-15]],[[61992,85565],[2,76]],[[61994,85641],[-133,2],[-43,1],[-4,-152],[88,-2],[90,75]],[[62113,85409],[23,-73]],[[62446,85333],[-186,54],[-51,95]],[[62209,85482],[-16,0],[-67,3]],[[62126,85485],[-13,-76]],[[62212,85834],[28,8]],[[62240,85842],[20,103]],[[62260,85945],[0,1]],[[62260,85946],[-82,82],[0,-12]],[[62178,86016],[-38,-130],[72,-52]],[[61612,85908],[-26,-92]],[[61586,85816],[-13,-52],[98,-23],[70,45],[102,-59],[18,79],[-117,15],[-35,77],[-97,10]],[[61474,86125],[9,-60]],[[61483,86065],[83,9],[89,82],[-3,7],[-88,1],[-88,3],[-2,-18],[0,-24]],[[62338,86241],[-10,43],[-7,23],[-43,-6],[-177,7],[-45,1],[-41,-151],[81,12],[88,-3],[88,-2],[87,-4],[95,-15],[63,-2],[-10,49],[-169,48]],[[63012,86096],[-1,-86],[72,-3],[62,-12],[30,13]],[[63175,86008],[-18,51],[-10,16],[-8,10],[-140,39],[13,-28]],[[62346,85628],[106,-5],[66,-2]],[[62518,85621],[161,-4],[-43,93]],[[62636,85710],[-116,-12],[-198,7]],[[62322,85705],[24,-77]],[[63931,85948],[147,-131]],[[64419,86049],[-315,-18]],[[64104,86031],[-29,-46],[-108,28],[-36,-65]],[[63479,86241],[-35,-44],[-167,83]],[[63277,86280],[0,-27]],[[63277,86253],[162,-66],[249,-129]],[[63688,86058],[3,0],[66,70]],[[63757,86128],[-106,-3],[-3,92],[-36,117]],[[63612,86334],[-39,-20],[-94,-73]],[[63041,86834],[101,-88],[63,-31]],[[63205,86715],[12,28]],[[63217,86743],[-33,124]],[[63184,86867],[-132,2],[-11,-35]],[[63591,86925],[-56,-15]],[[63535,86910],[-47,-12],[-108,3],[-38,26]],[[63342,86927],[-58,-52]],[[63284,86875],[-43,-144]],[[63241,86731],[119,-24],[90,-17],[56,113],[85,122]],[[63613,86345],[100,27]],[[63713,86372],[-160,57]],[[63553,86429],[-95,-15]],[[63458,86414],[155,-69]],[[63717,86461],[7,-6]],[[63724,86455],[23,38]],[[63747,86493],[44,100]],[[63791,86593],[-272,-46]],[[63519,86547],[68,-27],[130,-59]],[[64922,89076],[-96,-34],[-27,9],[21,-39],[114,-122],[6,-39]],[[64940,88851],[46,16],[81,-328],[42,-19]],[[65109,88520],[122,-52]],[[65231,88468],[53,135]],[[65284,88603],[-119,100],[-57,-10],[-18,117],[20,-6],[54,-99],[109,-68]],[[65273,88637],[-126,242]],[[65147,88879],[-88,36],[50,-100],[-131,79],[-56,182]],[[65617,88451],[43,-16]],[[65660,88435],[77,153],[-80,101]],[[65657,88689],[-73,-122],[33,-116]],[[65412,88535],[81,-77]],[[65493,88458],[5,2]],[[65498,88460],[88,313]],[[65586,88773],[-84,-12],[-90,-115]],[[65412,88646],[0,-111]],[[65435,89155],[62,21],[-10,-200],[48,-41]],[[65535,88935],[13,371]],[[65548,89306],[-122,24]],[[65426,89330],[9,-175]],[[64838,90282],[-145,-39],[-16,66]],[[64677,90309],[-60,17]],[[64617,90326],[-33,35],[67,6],[-19,49]],[[64632,90416],[3,39]],[[64635,90455],[-164,-70],[-71,84],[-225,-58]],[[64175,90411],[56,-59]],[[64231,90352],[11,-2],[85,-19],[45,5],[35,8],[29,7],[43,8],[37,-108],[8,-42],[19,-55],[105,-61],[-1,-91]],[[64647,90002],[56,-43],[-27,-121],[-78,-149]],[[64598,89689],[58,-100]],[[64656,89589],[5,-10],[167,60],[-1,37]],[[64827,89676],[172,124]],[[64999,89800],[-187,93],[51,13],[245,81],[38,61]],[[65146,90048],[-160,21],[-6,72],[-142,141]],[[64773,90114],[75,-88]],[[64848,90026],[12,-9],[-38,-70],[-119,102],[-13,19],[28,35],[55,11]],[[65283,90645],[-109,29]],[[65174,90674],[-50,-53]],[[65124,90621],[-16,-9]],[[65108,90612],[67,-40]],[[65175,90572],[209,120],[120,-51]],[[65460,90838],[-83,18],[-33,-167],[-61,-44]],[[64519,89889],[-13,-69]],[[64506,89820],[53,-51],[25,-1]],[[64584,89768],[63,234]],[[64647,90002],[-9,1],[-81,12]],[[64557,90015],[-113,27],[75,-153]],[[64432,89587],[42,-104],[88,0],[-7,51]],[[64555,89534],[-10,67]],[[64545,89601],[-103,10]],[[64442,89611],[-10,-24]],[[63790,89172],[79,2],[55,68],[-14,26],[15,69],[18,21],[71,119],[55,-75],[27,5]],[[64096,89407],[86,-2]],[[64182,89405],[49,58],[23,91],[-20,110]],[[64234,89664],[-58,48],[-35,30]],[[64141,89742],[-18,-25],[9,-34],[-20,-222]],[[64112,89461],[-24,3],[-214,135]],[[63874,89599],[-53,-179],[-31,-248]],[[64273,89222],[99,-21],[148,85],[17,-150],[-85,7],[-110,-16],[67,-92]],[[64409,89035],[93,-73],[8,-12]],[[64510,88950],[51,68]],[[64561,89018],[4,120]],[[64565,89138],[0,74]],[[64565,89212],[0,31],[-8,116]],[[64557,89359],[-69,27]],[[64488,89386],[-118,-33],[-94,-90],[-30,-28],[27,-13]],[[64215,89898],[146,-52],[21,1]],[[64382,89847],[41,79]],[[64423,89926],[-31,18]],[[64392,89944],[-45,-14],[-135,17],[-24,152]],[[64188,90099],[-56,-48]],[[64132,90051],[83,-153]],[[64033,88420],[153,-152],[37,89]],[[64223,88357],[23,8],[53,17],[63,26]],[[64362,88408],[9,4]],[[64371,88412],[-189,-1],[-39,54],[-15,20]],[[64128,88485],[-95,-65]],[[63823,87690],[8,21],[-110,105]],[[63721,87816],[-69,-47],[-1,-50],[23,-33],[10,-16],[139,20]],[[64584,88053],[-34,-46]],[[64550,88007],[-34,-25],[159,-193],[152,34]],[[64827,87823],[36,57],[17,5]],[[64880,87885],[-77,235],[52,135]],[[64855,88255],[-110,-43]],[[64745,88212],[-36,-208],[-77,104]],[[64632,88108],[-39,-42],[-9,-13]],[[63529,88271],[128,-142],[49,103]],[[63706,88232],[103,127]],[[63809,88359],[94,115]],[[63903,88474],[-271,-68]],[[63632,88406],[-172,-60]],[[63460,88346],[69,-75]],[[62497,88053],[216,73]],[[62713,88126],[76,33]],[[62789,88159],[78,29]],[[62867,88188],[2,33]],[[62869,88221],[-91,164]],[[62778,88385],[-166,46],[-37,-40]],[[62575,88391],[-48,-33],[-56,-38]],[[62471,88320],[-130,-102]],[[62341,88218],[18,-16],[88,-92],[50,-57]],[[63956,88632],[100,11]],[[64056,88643],[57,61]],[[64113,88704],[-168,16]],[[63945,88720],[-1,0],[12,-88]],[[63090,88523],[67,-33],[42,36]],[[63199,88526],[-107,86],[-8,0]],[[63084,88612],[6,-89]],[[63937,89074],[43,-70],[64,-17],[88,48],[-62,39],[-69,26],[-64,-26]],[[62854,88845],[19,33],[78,-8]],[[62951,88870],[37,2],[-26,-155]],[[62962,88717],[68,32]],[[63030,88749],[210,150]],[[63240,88899],[-123,-11]],[[63117,88888],[-142,14]],[[62975,88902],[-233,12]],[[62742,88914],[-5,-25],[87,-37],[30,-7]],[[63678,88867],[104,103]],[[63782,88970],[-32,71],[-28,29]],[[63722,89070],[-71,60],[4,-137]],[[63655,88993],[23,-126]],[[62562,88432],[-1,43]],[[62561,88475],[-39,23]],[[62522,88498],[-149,46],[9,101],[60,62]],[[62442,88707],[-113,134]],[[62329,88841],[-105,-35],[-35,-5]],[[62189,88801],[179,-126],[-41,-75],[44,-123],[191,-45]],[[61595,88533],[39,-22],[47,-57],[22,0]],[[61703,88454],[-22,78],[87,-3],[15,0],[79,113],[38,56],[-67,45],[-88,-27],[-92,-53],[-2,-1],[-5,13]],[[61646,88675],[-78,-44]],[[61568,88631],[27,-98]],[[62768,87750],[-121,-2]],[[62647,87748],[0,-38],[-1,-29],[-1,-48],[20,-71],[-1,-46],[-1,-48],[5,0]],[[62668,87468],[90,1]],[[62758,87469],[27,89],[31,-1],[36,-1],[24,0],[0,9],[-6,55],[80,55],[95,65]],[[63045,87740],[141,97]],[[63186,87837],[40,28],[-15,17],[-11,14],[-100,90],[-36,-37]],[[63064,87949],[-108,24],[-171,-118],[-17,-105]],[[63384,87123],[107,-100],[79,93],[-74,73],[-87,-55]],[[63409,87134],[-25,-11]],[[62928,86615],[44,-32]],[[62972,86583],[95,6],[-1,9],[-10,70],[-87,42]],[[62969,86710],[-41,-95]],[[61058,86863],[92,-1],[27,-1],[3,77],[3,76],[3,77],[3,77]],[[61189,87168],[-87,2]],[[61102,87170],[0,-7],[-36,-37],[-4,-32],[-1,-77],[-1,-58],[-1,-19],[-1,-77]],[[61829,87760],[-88,3],[-34,1],[-52,1],[-93,-73],[-1,-75],[88,-1],[87,-4],[87,-4],[3,75],[3,77]],[[61219,87931],[-89,3]],[[61130,87934],[-3,-77],[0,-39],[-2,-36],[88,-2],[3,75],[3,76]],[[60528,86794],[88,-1],[88,-1],[89,-1],[91,2],[87,-2],[88,-3],[2,39],[-3,36]],[[61058,86863],[-88,1],[-86,1]],[[60884,86865],[-266,3]],[[60618,86868],[-45,1],[-44,1]],[[60529,86870],[-1,-76]],[[30667,33325],[111,-63],[16,-12]],[[30794,33250],[-43,137]],[[30751,33387],[-129,107]],[[30622,33494],[-71,-88],[116,-81]],[[29090,35188],[0,-4],[52,-114],[40,-32],[33,-20],[37,37]],[[29252,35055],[-1,150]],[[29251,35205],[1,251]],[[29252,35456],[-133,-80]],[[29119,35376],[-46,-1],[1,-170],[16,-17]],[[28560,34643],[172,30],[114,-33]],[[28846,34640],[101,76]],[[28947,34716],[-21,35]],[[28926,34751],[-125,30]],[[28801,34781],[-99,-25],[-40,19],[-52,-47],[-18,-15],[-55,-63],[-2,-10],[25,3]],[[28002,34476],[123,-5],[-3,58],[-47,28],[-74,0]],[[28001,34557],[1,-81]],[[29004,34322],[98,-56],[44,77]],[[29146,34343],[-117,132]],[[29029,34475],[-22,-9]],[[29007,34466],[-3,-144]],[[29207,34446],[-145,116]],[[29062,34562],[45,-38],[60,-98],[40,20]],[[29506,33915],[1,-77],[175,1],[51,78],[80,58],[-101,92],[-253,231]],[[29459,34298],[-30,-77],[163,-153],[-88,-1],[2,-152]],[[28193,33514],[248,-80]],[[28441,33434],[101,117],[53,-10],[34,-90],[108,-79]],[[28737,33372],[21,1],[114,39],[291,4],[59,201],[61,33]],[[29283,33650],[-167,264],[-2,2]],[[29114,33916],[-44,33],[-25,32],[-163,7],[-318,9],[-4,141],[130,27],[38,54]],[[28728,34219],[26,15],[-115,139]],[[28639,34373],[-52,0]],[[28587,34373],[-74,-5]],[[28513,34368],[-28,0]],[[28485,34368],[0,-19]],[[28485,34349],[10,-211],[6,-230],[-402,-3],[5,-308],[88,1],[1,-84]],[[28652,33591],[65,153],[150,73],[203,-48],[-52,-116],[-99,-30],[-78,-15],[-23,-24],[-166,7]],[[28559,33237],[3,2],[210,-74],[-1,93]],[[28771,33258],[-127,110]],[[28644,33368],[-1,-42],[-94,-31],[-94,-1]],[[28455,33294],[-203,-2]],[[28252,33292],[307,-55]],[[30361,32845],[146,0]],[[30507,32845],[97,156],[44,79]],[[30648,33080],[-40,108]],[[30608,33188],[-190,-80],[-103,-132],[46,-131]],[[28199,34984],[-2,126]],[[27935,35088],[1,-110],[263,6]],[[68150,86200],[-136,-67],[-84,82],[-96,-76],[-387,4]],[[67447,86143],[-38,-64]],[[67409,86079],[157,-163],[-132,-23],[-263,-12]],[[67171,85881],[-54,-30]],[[67117,85851],[269,-6],[-1,-154],[-7,-191]],[[67378,85500],[47,113],[132,-3],[2,76],[-85,2],[90,152],[176,-6]],[[67740,85834],[2,77],[177,-6]],[[67919,85905],[88,-3],[88,-3]],[[68095,85899],[5,153],[222,-8],[313,-10]],[[68635,86034],[81,180],[47,117],[-124,6]],[[68639,86337],[-263,8]],[[68376,86345],[-44,2],[-5,-154],[-3,-72],[-174,79]],[[67820,85429],[34,23],[38,42],[12,29]],[[67904,85523],[-165,3],[-121,-97],[-154,-35]],[[67464,85394],[11,-14],[75,-149],[142,65],[37,71],[91,62]],[[67497,85055],[93,7],[137,16],[13,32]],[[67740,85110],[2,61],[-15,25],[-38,29],[-57,-100],[-135,-70]],[[66682,84930],[108,-52],[115,14]],[[66905,84892],[9,107]],[[66914,84999],[342,-97]],[[67256,84902],[35,-10]],[[67291,84892],[-49,75],[-96,25],[-29,19],[-83,54],[-133,-5]],[[66901,85060],[-70,-58],[-119,19]],[[66712,85021],[-30,-91]],[[67276,84603],[-26,1]],[[67250,84604],[-71,7]],[[67179,84611],[-52,-16]],[[67127,84595],[34,-117],[137,-69],[57,138],[-79,56]],[[66750,84773],[105,20]],[[66855,84793],[-65,71],[-119,35]],[[66671,84899],[-18,-41]],[[66653,84858],[97,-85]],[[66116,84762],[87,-19]],[[66203,84743],[26,89],[3,108],[191,-7],[104,117]],[[66527,85050],[-402,-65]],[[66125,84985],[-3,-41],[-3,-77]],[[66119,84867],[-2,-77]],[[66117,84790],[-1,-28]],[[66322,84711],[100,-28],[174,-47],[5,55]],[[66601,84691],[-138,196],[51,45],[-70,0],[-60,-110],[-62,-111]],[[66511,84321],[29,181]],[[66540,84502],[-176,-26]],[[66364,84476],[-136,2],[3,111]],[[66231,84589],[-36,54]],[[66195,84643],[-52,-24]],[[66143,84619],[-222,-123],[109,-48]],[[66030,84448],[63,-63],[-1,-52]],[[66452,84323],[40,-58]],[[66492,84265],[93,-41],[39,-21],[96,-40]],[[66720,84163],[89,-3],[-3,-79],[-185,5],[-3,-118]],[[66618,83968],[183,-9],[264,-10],[4,126]],[[67069,84075],[5,151]],[[67074,84226],[-1,10],[135,21],[-5,-108]],[[67203,84149],[-2,-78]],[[67201,84071],[264,-7]],[[67465,84064],[37,185],[-80,49]],[[65764,85766],[-166,-2]],[[65598,85764],[-29,6],[-36,47],[-48,-82],[-58,-64]],[[65427,85671],[-25,-63]],[[65402,85608],[190,-34]],[[65592,85574],[165,-3],[66,-155],[130,-35],[-13,-121],[-122,4],[-89,-25],[6,179],[-125,3],[-46,0]],[[65564,85421],[-145,5]],[[65419,85426],[-20,1],[-151,124],[-39,-42]],[[65209,85509],[0,-1]],[[65209,85508],[140,-141],[160,-59],[15,50],[86,-2],[-7,-49],[-3,-40],[123,-92],[155,-35],[13,-5]],[[65891,85135],[56,42],[185,58]],[[66132,85235],[42,30],[8,16]],[[66182,85281],[28,188],[-85,-10],[45,83],[38,46],[14,104],[-104,22],[-21,7],[-38,-88],[-245,93],[2,40],[-52,0]],[[66681,85710],[8,76]],[[66689,85786],[-111,69]],[[66578,85855],[-27,-33],[-53,-64],[183,-48]],[[66053,86025],[68,-47],[75,-44],[70,-50]],[[66266,85884],[132,126],[286,85],[6,74]],[[66690,86169],[-79,108]],[[66611,86277],[-149,-160],[-122,74],[-67,-160],[-220,-6]],[[65845,86168],[123,-8],[140,107],[36,230],[52,24]],[[66196,86521],[-71,19],[-81,32]],[[66044,86572],[-164,-188],[17,-29],[-41,-31],[-11,-156]],[[66218,87041],[172,-97]],[[66390,86944],[118,26],[21,211]],[[66529,87181],[-13,4],[-138,-49],[-139,39],[-21,-134]],[[66196,86786],[20,189]],[[66216,86975],[-317,132],[-139,111]],[[65547,87176],[205,13],[105,-118],[-5,-218],[344,-67]],[[67667,84634],[71,-117]],[[67738,84517],[132,30]],[[67870,84547],[78,2]],[[67948,84549],[-46,120]],[[67902,84669],[-66,2],[-40,115]],[[67796,84786],[-88,-36],[-6,-77]],[[67702,84673],[-35,-39]],[[68351,85508],[-47,2],[-86,3]],[[68218,85513],[-244,9],[-43,-77],[18,-63]],[[67949,85382],[129,19],[5,80],[218,-7],[-180,-107],[-5,-203]],[[68116,85164],[2,0],[62,38],[19,-22]],[[68199,85180],[73,31],[155,22]],[[68427,85233],[5,119],[3,76],[-41,79]],[[68394,85507],[-43,1]],[[69093,86402],[-4,-152],[83,-2]],[[69172,86248],[50,150],[251,-13]],[[69473,86385],[123,26],[163,-129],[155,-10],[-304,421]],[[69610,86693],[-244,7],[3,153],[-220,6]],[[69149,86859],[-2,-82],[-3,-71],[45,-1],[25,-1],[-6,-153],[-48,-151],[-67,2]],[[68662,87629],[49,-190],[145,-51],[199,-157],[14,241]],[[69069,87472],[-49,61],[51,75],[173,8],[2,40],[5,114],[3,60]],[[69254,87830],[3,95]],[[69257,87925],[-175,5]],[[69082,87930],[-125,3]],[[68957,87933],[-65,-54]],[[68892,87879],[56,-191],[-36,-61],[-250,2]],[[68417,88492],[-1,-12],[-9,-76]],[[68407,88404],[76,-6],[-159,-209],[-10,16]],[[68314,88205],[-96,-79]],[[68218,88126],[-153,-89],[-23,60],[-198,-25]],[[67844,88072],[-179,-86]],[[67665,87986],[-76,-40]],[[67589,87946],[234,-130]],[[67823,87816],[95,70],[142,-155]],[[68060,87731],[230,-110],[77,29],[36,125],[99,39]],[[68502,87814],[-48,208],[140,57],[-26,87],[108,-52]],[[68676,88114],[101,76],[-137,257]],[[68640,88447],[-112,32],[2,77],[66,-2]],[[68596,88554],[135,149]],[[68731,88703],[-124,94]],[[68607,88797],[-111,-67],[34,-43],[-101,-53],[-12,-142]],[[69941,87295],[3,77]],[[69944,87372],[15,138],[127,85],[339,10],[135,-55],[9,184]],[[70569,87734],[-613,20],[-88,-16]],[[69868,87738],[-92,-83]],[[69776,87655],[-5,-126]],[[69771,87529],[-8,-228],[178,-6]],[[69786,87911],[1,0]],[[69787,87911],[87,-2]],[[69874,87909],[88,-2],[4,153]],[[69966,88060],[-219,6]],[[69747,88066],[39,-155]],[[68573,86874],[5,114],[169,53]],[[68747,87041],[-5,57],[-393,36],[-35,-113],[-3,-62],[-2,-77],[229,-7],[35,-1]],[[69986,89214],[18,-86]],[[70004,89128],[17,-75],[17,-68]],[[70038,88985],[321,-22]],[[70359,88963],[-89,312],[137,22],[-152,92]],[[70255,89389],[-66,11],[-150,51],[0,-5]],[[70039,89446],[74,-96],[35,-52],[-176,2],[14,-86]],[[68731,88703],[199,-5],[58,-73],[165,-22]],[[69153,88603],[94,123]],[[69247,88726],[-21,44]],[[69226,88770],[-27,75]],[[69199,88845],[-112,2]],[[69087,88847],[-195,28]],[[68892,88875],[-161,-172]],[[72017,87421],[126,-49]],[[72143,87372],[52,147],[-119,46]],[[72076,87565],[-143,-27],[-93,-111]],[[71840,87427],[44,-8],[133,2]],[[71445,87470],[3,59],[177,25]],[[71625,87554],[6,119]],[[71631,87673],[0,1]],[[71631,87674],[-356,-104],[-8,-74]],[[71267,87496],[-4,-90],[91,-3],[91,67]],[[71693,87087],[121,-74]],[[71814,87013],[182,-6],[60,108]],[[72056,87115],[-7,28]],[[72049,87143],[-44,26],[-89,-17],[-133,-29],[-44,1]],[[71739,87124],[-44,2]],[[71695,87126],[-2,-39]],[[71585,86634],[177,3],[-5,-125]],[[71757,86512],[135,80],[89,194]],[[71981,86786],[-123,29]],[[71858,86815],[-134,-50],[-138,-110]],[[71586,86655],[-1,-21]],[[70743,84525],[2,51],[132,-3]],[[70877,84573],[68,101],[-217,117]],[[70728,84791],[-87,-142],[-84,-111]],[[71792,85310],[355,15]],[[72147,85325],[4,70]],[[72151,85395],[-178,5]],[[71973,85400],[-174,54]],[[71799,85454],[-7,-144]],[[70728,84791],[149,110]],[[70877,84901],[118,75]],[[70995,84976],[92,60],[23,16],[108,85]],[[71218,85137],[-383,34],[-121,-47],[-298,-236]],[[70416,84888],[107,-100],[205,3]],[[71960,85092],[190,-6],[-6,157]],[[72144,85243],[-355,6]],[[71789,85249],[-7,-144]],[[71782,85105],[178,-13]],[[72502,85318],[175,-9]],[[72677,85309],[9,214]],[[72686,85523],[-149,-28],[-32,-111]],[[72505,85384],[-3,-66]],[[78373,86775],[102,-65],[70,15]],[[78545,86725],[8,195]],[[78553,86920],[-166,-31]],[[78387,86889],[-189,1]],[[78198,86890],[-177,8]],[[78021,86898],[-5,-154],[-176,7]],[[77840,86751],[-150,5]],[[77690,86756],[-179,7]],[[77511,86763],[-4,-154],[-9,-190],[-183,-104]],[[77315,86315],[46,-9],[-50,-63],[-9,-240]],[[77302,86003],[177,-10],[9,200],[168,-43],[8,145]],[[77664,86295],[93,36],[-79,190],[495,280],[221,70],[-21,-96]],[[76200,84970],[88,-2]],[[76288,84968],[88,74],[4,152]],[[76380,85194],[-348,12]],[[76032,85206],[-7,-229],[175,-7]],[[76550,84852],[75,-49],[105,140]],[[76730,84943],[5,237],[-177,9]],[[76558,85189],[-7,-307],[-1,-30]],[[75889,86130],[88,-3]],[[75977,86127],[88,-2]],[[76065,86125],[3,76]],[[76068,86201],[4,76]],[[76072,86277],[-88,3],[-88,3]],[[75896,86283],[-3,-77],[-4,-76]],[[77863,87364],[-3,-74]],[[77860,87290],[177,-6],[8,-66],[212,45],[20,-221],[104,-3]],[[78381,87039],[7,153]],[[78388,87192],[66,74]],[[78454,87266],[30,41],[2,29]],[[78486,87336],[-456,30],[-167,-2]],[[77099,86933],[-137,-151],[-48,2]],[[76914,86784],[-112,-47]],[[76802,86737],[1,-8],[-87,61]],[[76716,86790],[-88,1]],[[76628,86791],[-5,-151]],[[76623,86640],[-6,-113]],[[76617,86527],[-3,-38]],[[76614,86489],[45,-2],[45,-1]],[[76704,86486],[6,152],[88,-3]],[[76798,86635],[1,25],[177,41],[-2,-73]],[[76974,86628],[181,-6],[171,-6],[-11,154],[3,154],[5,134],[132,31]],[[77455,87089],[-48,171]],[[77407,87260],[-79,-103]],[[77328,87157],[-133,-119]],[[77195,87038],[17,-15],[-113,-90]],[[76601,86183],[45,-2],[3,77],[-18,1],[-87,9]],[[76544,86268],[-50,-80]],[[76494,86188],[107,-5]],[[77497,87093],[-5,-118]],[[77492,86975],[177,-6],[-3,-58]],[[77666,86911],[177,-6]],[[77843,86905],[5,115]],[[77848,87020],[6,132]],[[77854,87152],[-179,-33],[-178,-26]],[[77429,87570],[92,0],[164,-75],[7,-15]],[[77692,87480],[-70,186],[-217,-24],[24,-72]],[[78773,87791],[-268,-26]],[[78505,87765],[-4,-117]],[[78501,87648],[-5,-106]],[[78496,87542],[-3,-47],[-7,-159]],[[78486,87336],[93,69],[176,4]],[[78755,87409],[3,78],[219,-9],[4,0]],[[78981,87478],[5,154]],[[78986,87632],[-44,1]],[[78942,87633],[-176,6],[7,152]],[[78747,87254],[-4,-76]],[[78743,87178],[140,-6]],[[78883,87172],[43,76],[-49,2],[-125,130]],[[78752,87380],[-1,-49],[-4,-77]],[[78904,86862],[176,-5]],[[79080,86857],[12,199]],[[79092,87056],[-211,-11],[-6,12]],[[78875,87057],[-79,-24],[-15,-12]],[[78781,87021],[-54,-149],[174,-7],[3,-3]],[[68811,86106],[-1,-79]],[[68810,86027],[179,-6],[-6,-153]],[[68983,85868],[87,-1],[54,222]],[[69124,86089],[-313,17]],[[79112,87472],[176,-8],[4,75]],[[79292,87539],[-178,-26],[-2,-41]],[[68873,88890],[19,-15]],[[68892,88875],[227,184]],[[69119,89059],[-33,16]],[[69086,89075],[-126,-1]],[[68960,89074],[-137,-131],[50,-53]],[[76259,86500],[181,-7]],[[76440,86493],[2,92],[-181,-46]],[[76261,86539],[-2,-39]],[[26437,36731],[111,34],[-31,82],[-59,-2]],[[26698,36996],[-18,60]],[[26680,37056],[-8,27],[-2,5],[-93,-26]],[[26577,37062],[-24,-15]],[[26553,37047],[-35,-17],[13,-45],[10,-27],[70,18],[87,20]],[[26842,37352],[79,1]],[[26921,37353],[51,109],[20,43],[-110,0],[-25,-96],[-15,-57]],[[27587,37512],[60,0]],[[27647,37512],[77,1]],[[27724,37513],[97,1],[0,153]],[[27821,37667],[-58,-1],[-116,-2],[-12,0],[-48,-152]],[[27575,36974],[64,-2],[103,-53],[-56,-22],[-59,10],[1,-23],[-2,-17],[29,-3],[108,-12],[41,61],[26,64],[11,88]],[[27841,37065],[-266,-91]],[[27734,36616],[-2,76],[-95,-2],[-81,-3]],[[27556,36687],[1,-38],[1,-38],[88,2],[88,3]],[[27738,36386],[85,30]],[[27823,36416],[90,-7],[-1,59]],[[27912,36468],[-83,-3]],[[27829,36465],[-50,-1],[-43,-1],[2,-77]],[[27862,36643],[47,-23],[119,-77],[35,50],[-188,103],[-13,-53]],[[26242,36415],[-74,-5]],[[26387,36356],[1,-15],[8,-26],[67,-65],[44,-5]],[[26507,36245],[41,92],[97,-18]],[[26645,36319],[142,-43],[71,12]],[[26858,36288],[23,141]],[[26881,36429],[-34,19]],[[26847,36448],[-2,-3]],[[26845,36445],[-98,-60],[-171,15],[-36,36]],[[26561,36547],[-63,-14],[-59,-85],[-65,-9],[-71,10],[-61,-34]],[[25910,35881],[-4,-81],[157,2]],[[26063,35802],[192,9]],[[26255,35811],[63,1]],[[26318,35812],[33,70]],[[26351,35882],[-97,63],[0,7],[72,-6],[56,1]],[[26382,35947],[71,162]],[[26453,36109],[-145,0]],[[26308,36109],[-258,-78],[-19,79]],[[27139,35574],[38,-46]],[[27177,35528],[136,4],[-2,152],[109,3]],[[27420,35687],[-39,152]],[[27381,35839],[-73,-2],[-88,-2],[-85,-4],[-4,2]],[[27131,35833],[-87,-3],[-88,-3]],[[26956,35827],[-78,-3],[-17,1]],[[26861,35825],[-180,-13]],[[26681,35812],[-8,-43],[0,-59],[6,-52],[33,-151]],[[26712,35507],[118,1]],[[26830,35508],[25,161],[197,12],[87,-107]],[[27872,35981],[-128,46],[-88,36],[-88,36],[-89,37],[-45,20],[-11,0],[-32,-8],[66,-65],[12,-12]],[[27469,36071],[54,-53],[9,-9]],[[27532,36009],[201,-79],[15,-82]],[[27748,35848],[88,2],[53,2],[122,3],[7,0],[37,2],[89,-17],[31,0],[-77,103]],[[28098,35943],[-107,16],[-76,0],[-43,22]],[[29244,35875],[206,-32]],[[29450,35843],[107,69]],[[29557,35912],[-131,101]],[[29426,36013],[-179,43]],[[29247,36056],[-3,-105],[0,-76]],[[28762,35758],[41,0]],[[28803,35758],[-4,116],[-1,0],[2,86]],[[28800,35960],[-101,-1]],[[28699,35959],[1,-84],[87,-1],[-175,-40],[-1,-49],[0,-27],[73,0],[78,0]],[[28828,36080],[124,-52],[6,-76],[5,-77]],[[28963,35875],[64,0]],[[29027,35875],[40,0],[10,81],[-8,128],[178,-28]],[[29247,36056],[-134,127],[-129,-70],[-130,24],[-26,-57]],[[28611,36046],[193,-38],[24,72]],[[28828,36080],[-184,102],[-31,-72],[-2,-64]],[[29522,35686],[9,-65]],[[29531,35621],[5,-2],[73,8],[-14,110]],[[29595,35737],[-8,25]],[[29587,35762],[-65,-76]],[[30371,35834],[62,42],[29,77],[-167,-14],[-64,-60],[140,-45]],[[28279,36404],[78,-5]],[[28357,36399],[-1,96],[-25,79],[13,50]],[[28344,36624],[-81,43]],[[28263,36667],[-7,-33]],[[28256,36634],[-8,-112],[31,-118]],[[28383,36379],[116,-101],[-2,-109]],[[28497,36169],[56,109]],[[28553,36278],[-17,121],[-4,5],[-52,65],[-50,-45],[-47,-45]],[[28544,36700],[-6,0]],[[28538,36700],[1,-44],[0,-63],[25,-17],[68,-105],[96,-51],[91,-49]],[[28819,36371],[36,166],[132,238]],[[28987,36775],[-355,1],[-70,-74]],[[28562,36702],[57,-43],[7,-11],[-59,4],[-23,48]],[[28757,36606],[-86,16],[-12,99],[107,24],[67,-90],[-76,-49]],[[28171,37977],[-177,-3]],[[27994,37974],[1,-29],[55,-82],[-63,-9],[-25,-69],[-142,15],[0,-57],[1,-76]],[[27821,37667],[354,4],[354,5],[-1,119]],[[28528,37795],[-178,67]],[[28350,37862],[-120,-3],[-56,-70],[-1,70],[-2,118]],[[27816,38126],[176,2]],[[27992,38128],[-3,153]],[[27989,38281],[-158,-1],[-16,0]],[[27815,38280],[1,-93]],[[27816,38187],[0,-61]],[[27989,38434],[40,1],[134,62]],[[28163,38497],[-1,40]],[[28162,38537],[-45,45]],[[28117,38582],[-129,-30],[1,-118]],[[27369,38583],[4,78]],[[27373,38661],[-45,0],[-116,-28],[21,-49],[14,0],[77,-1],[45,0]],[[27376,38151],[182,51],[27,71]],[[27585,38273],[-66,16],[-37,5],[-108,-94],[2,-49]],[[63560,84786],[126,-80]],[[63686,84706],[133,4],[89,15]],[[63908,84725],[86,115]],[[63994,84840],[-168,2],[-37,15]],[[63789,84857],[-147,-116],[-63,63],[41,53]],[[63620,84857],[-19,14],[-171,31]],[[63430,84902],[-44,32]],[[63386,84934],[-112,4],[37,-171],[249,19]],[[63634,85085],[109,-150]],[[63743,84935],[45,-5],[-14,88],[15,70]],[[63789,85088],[-155,-3]],[[64661,85048],[7,160]],[[64668,85208],[-87,241]],[[64581,85449],[-158,-177],[-54,10]],[[64369,85282],[-144,-159]],[[64225,85123],[-7,-106],[53,-53],[90,95],[300,-11]],[[63825,84518],[164,14]],[[63989,84532],[4,77]],[[63993,84609],[-188,5]],[[63805,84614],[-104,-72]],[[63701,84542],[-14,-15]],[[63993,84609],[87,-3],[44,-1],[44,-1]],[[64168,84604],[13,305]],[[64181,84909],[-89,2]],[[64092,84911],[-28,1],[-70,-72]],[[63994,84840],[-1,-231]],[[64514,83058],[227,-18]],[[64741,83040],[7,90],[32,76]],[[64780,83206],[55,86],[-148,30]],[[64687,83322],[-83,2],[-1,-22],[-3,-92],[-3,-77],[-83,-75]],[[64840,83484],[48,-52]],[[64888,83432],[29,0]],[[64917,83432],[6,137],[72,-35]],[[64995,83534],[10,13],[13,40],[-28,0]],[[64990,83587],[-60,21]],[[64930,83608],[-89,-18],[-6,-80],[5,-26]],[[64180,83447],[128,-2]],[[64308,83445],[1,39],[110,74],[1,38],[-107,3],[-189,5]],[[64327,84094],[-1,-36]],[[64326,84058],[109,-2],[95,-3],[48,-1],[0,24],[-45,61],[-27,-6],[-67,1],[-111,3],[-1,-41]],[[64870,84508],[9,229]],[[64879,84737],[-229,6]],[[64650,84743],[-82,-74],[-3,-76],[79,-79],[138,-4],[88,-2]],[[65228,84580],[84,-78],[89,-2]],[[65401,84500],[87,-1]],[[65488,84499],[90,-1]],[[65583,84728],[-351,6]],[[65232,84734],[-4,-154]],[[66244,83184],[-105,95]],[[66139,83279],[-247,-19],[-106,2],[-27,11],[-1,-59]],[[65758,83214],[42,-105],[444,-12]],[[66244,83097],[17,0],[19,-37],[94,-4],[209,-194]],[[66583,82862],[1,14],[134,-84],[89,25]],[[66807,82817],[0,76],[48,114],[88,-2],[89,-3]],[[67032,83002],[91,75]],[[67123,83077],[2,77]],[[67125,83154],[3,73]],[[67128,83227],[-307,7]],[[66821,83234],[-224,5],[-4,-148],[-275,6],[-74,87]],[[65011,82971],[347,-9]],[[65358,82962],[2,116]],[[65360,83078],[-321,0],[-28,-107]],[[65200,83737],[44,-1],[45,-1],[51,-155],[33,1],[305,-6]],[[65678,83575],[16,307]],[[65694,83882],[-311,4]],[[65383,83886],[-36,1]],[[65347,83887],[-142,2]],[[65205,83889],[-5,-149]],[[65200,83740],[0,-3]],[[66260,83867],[90,-3],[91,74],[88,-2],[88,-2],[1,34]],[[66618,83968],[-354,17]],[[66264,83985],[-4,-118]],[[67128,83227],[87,3],[89,-4],[5,154],[-110,2],[-66,2]],[[67133,83384],[-5,-157]],[[67138,83538],[88,-3],[90,44],[4,107],[-88,2],[-88,2],[-3,-76],[-1,-20],[-2,-56]],[[67534,83221],[129,-4]],[[67663,83217],[130,151]],[[67793,83368],[-132,3]],[[67661,83371],[-88,2],[-49,-137],[10,-15]],[[67602,82474],[10,-18]],[[67612,82456],[199,2],[65,139],[150,0],[120,99]],[[68146,82696],[-43,65],[-112,-5],[-70,20],[-61,-14],[-40,27],[-46,-21],[-110,-56],[20,-105],[-82,-133]],[[68261,83514],[80,57],[32,-1],[3,91]],[[68376,83661],[-155,4]],[[68221,83665],[-77,2],[-10,-148],[127,-5]],[[68571,82869],[136,90]],[[68707,82959],[0,5]],[[68707,82964],[-88,2],[-46,-38]],[[68573,82928],[-2,-59]],[[68093,84435],[-7,-77],[64,-79],[-73,1],[54,-27]],[[68131,84253],[42,-87]],[[68173,84166],[77,-42],[16,-5],[8,142],[64,-41]],[[68338,84220],[136,191]],[[68474,84411],[11,21]],[[67784,84441],[77,-250]],[[67861,84191],[162,7]],[[68023,84198],[-92,87],[-143,157]],[[68400,84085],[37,-1]],[[68437,84084],[133,34],[179,84]],[[68749,84202],[1,5]],[[68750,84207],[-266,69]],[[68484,84276],[-84,-191]],[[69059,83033],[101,38]],[[69160,83071],[-10,85]],[[69150,83156],[-85,-50]],[[69065,83106],[-6,-73]],[[68920,84031],[85,-78],[177,18]],[[69182,83971],[4,93],[-42,58],[-137,-15]],[[69007,84107],[-8,1]],[[68999,84108],[-77,2]],[[68922,84110],[-2,-79]],[[69259,83030],[156,-1],[93,150],[263,1],[6,189]],[[69777,83369],[-220,-42]],[[69557,83327],[-57,1],[-14,0],[-61,1],[-4,-153],[-119,21],[73,134],[-56,1]],[[69319,83332],[-93,2],[28,-154],[-16,1],[21,-151]],[[69441,83694],[121,18],[238,-71],[42,139]],[[69842,83780],[-48,1]],[[69794,83781],[-176,5]],[[69618,83786],[-176,5]],[[69442,83791],[-1,-38]],[[69441,83753],[0,-59]],[[69534,84133],[94,-55]],[[69628,84078],[176,8]],[[69804,84086],[7,158]],[[69811,84244],[-277,-111]],[[69385,84255],[19,-43]],[[69404,84212],[36,-22],[36,-22]],[[69476,84168],[158,145],[89,-48]],[[69723,84265],[-65,167],[-121,-108],[-116,8],[-48,-69]],[[69373,84263],[12,-8]],[[69974,83929],[7,154]],[[69981,84083],[-177,3]],[[69804,84086],[-4,-75]],[[69800,84011],[-2,-77],[176,-5]],[[71049,84400],[144,-2]],[[71193,84398],[160,106]],[[71009,84515],[-25,-60]],[[70984,84455],[65,-55]],[[70407,84317],[111,44]],[[70518,84361],[25,83],[-34,13]],[[70509,84457],[-273,-61]],[[70236,84396],[19,-15],[81,-24],[71,-40]],[[70172,84162],[88,-83],[335,-12],[81,-137]],[[70676,83930],[55,131],[-256,159],[-138,4],[-88,3]],[[70249,84227],[-77,-65]],[[66653,78802],[337,-23]],[[66990,78779],[22,319]],[[67012,79098],[3,76]],[[67015,79174],[-177,6],[-2,-76],[-178,3]],[[66658,79107],[-5,-305]],[[66443,78342],[178,-3],[166,3],[187,-8]],[[66974,78334],[6,154]],[[66980,78488],[-86,79]],[[66894,78567],[-91,-35],[-177,-38]],[[66626,78494],[-42,-77],[-141,2],[0,-77]],[[70761,75240],[184,-17],[-67,-49],[-45,-29]],[[70833,75145],[-148,17],[-71,7]],[[70614,75169],[40,-143],[223,-30],[53,134]],[[70930,75130],[315,123]],[[71245,75253],[-5,54]],[[71240,75307],[-403,-51],[-75,2]],[[70762,75258],[-1,-18]],[[70307,75191],[227,-69],[80,47]],[[70614,75169],[-59,74]],[[70555,75243],[-234,15]],[[70321,75258],[-14,-67]],[[68963,79804],[263,-8]],[[69226,79796],[3,76]],[[69229,79872],[-264,8]],[[68965,79880],[-2,-76]],[[69122,79341],[176,-5]],[[69298,79336],[176,-4]],[[69474,79332],[88,68]],[[69562,79400],[-170,95],[2,66],[-263,9],[2,77]],[[69133,79647],[-95,3]],[[69038,79650],[-6,-147],[96,-8],[0,-1],[-5,-150]],[[69123,79344],[-1,-3]],[[68513,79121],[-20,-151],[-111,-24]],[[68382,78946],[430,-194],[108,1]],[[68920,78753],[6,136]],[[68926,78889],[-164,5],[-9,75],[3,63],[176,9]],[[68932,79041],[177,-5]],[[69109,79036],[3,76]],[[69112,79112],[3,76],[7,153]],[[69122,79341],[-276,-238],[-89,-56],[-25,72],[38,233],[99,-3]],[[68869,79349],[22,158],[61,-1]],[[68952,79506],[5,146]],[[68957,79652],[-348,12]],[[68609,79664],[-123,5],[78,182]],[[68564,79851],[-236,-13],[-180,-3]],[[68148,79835],[87,-163],[24,-1],[-6,-146],[94,2],[-6,-73]],[[68341,79454],[73,-100],[-79,-61],[-87,75]],[[68248,79368],[-265,8]],[[67983,79376],[-3,-65],[-4,-88],[-87,13]],[[67889,79236],[-87,5]],[[67802,79241],[18,-81]],[[67820,79160],[34,-86]],[[67854,79074],[129,-4],[133,-52]],[[68116,79018],[16,2],[3,-1]],[[68135,79019],[58,-31],[91,-42]],[[68284,78946],[229,175]],[[68513,79121],[-90,163],[15,75],[159,-1],[-58,-215],[-26,-22]],[[67568,79697],[74,-2],[3,76],[264,-9],[-1,-76]],[[67908,79686],[86,-4]],[[67994,79682],[10,231],[68,3],[13,4]],[[68085,79920],[-14,39],[-19,116]],[[68052,80075],[-141,-18],[-11,64],[-10,61],[141,19]],[[68031,80201],[-14,78]],[[68017,80279],[-14,83],[-7,39],[-55,183]],[[67941,80584],[-2,4]],[[67939,80588],[-76,22],[-94,-7],[-8,-146],[-170,6],[5,153]],[[67596,80616],[-690,13],[334,-464]],[[67240,80165],[110,-2],[102,86],[49,216],[90,-2],[-12,-307],[80,-3],[-3,-82]],[[67656,80071],[156,-3],[16,-149],[-177,5]],[[67651,79924],[-123,81]],[[67528,80005],[-179,4]],[[67349,80009],[110,-156]],[[67459,79853],[109,-156]],[[68632,80028],[13,18]],[[68645,80046],[58,217]],[[68703,80263],[-254,-108]],[[68449,80155],[-56,-178],[239,51]],[[68703,80268],[-23,107]],[[68680,80375],[-40,11]],[[68640,80386],[-224,3],[30,-55],[-5,-81],[262,15]],[[68272,80492],[-207,61],[90,-97],[51,-57],[66,93]],[[77017,83432],[-129,34],[-56,-180],[-2,-57]],[[76830,83229],[4,-110],[-64,15],[-119,36]],[[76651,83170],[-174,58]],[[76477,83228],[-54,-48],[327,-135]],[[76750,83045],[339,-16]],[[77089,83029],[0,52],[266,-111]],[[77355,82970],[-15,157]],[[77340,83127],[-63,65],[-271,11],[1,38],[10,191]],[[80462,82998],[-177,3],[-73,-151],[-40,-151]],[[80172,82699],[356,-14],[355,-18]],[[80883,82667],[6,153]],[[80889,82820],[-355,17],[-72,161]],[[78031,82929],[-147,5]],[[77884,82934],[-5,-93],[264,-23],[5,107],[-117,4]],[[94745,74759],[226,132],[97,151]],[[95068,75042],[-106,15],[-126,-182]],[[94836,74875],[-78,-89]],[[94758,74786],[-13,-27]],[[67844,82016],[154,14],[145,39],[79,20]],[[68222,82089],[4,12]],[[68226,82101],[-59,42]],[[68167,82143],[-286,15],[-37,-139],[0,-3]],[[68234,82108],[178,20]],[[68412,82128],[79,70]],[[68491,82198],[-257,-90]],[[68532,82043],[184,77]],[[68716,82120],[-106,-20],[-2,112]],[[68608,82212],[-93,-25]],[[68515,82187],[-6,-122],[23,-22]],[[69038,82010],[227,-98]],[[69265,81912],[148,-105]],[[69413,81807],[-35,128],[-45,38],[-107,162]],[[69226,82135],[-69,14]],[[69157,82149],[63,-156],[-182,17]],[[69252,81717],[13,195]],[[69265,81912],[-171,-71],[158,-124]],[[69917,82335],[59,44]],[[69976,82379],[140,51]],[[70116,82430],[-403,19]],[[69713,82449],[204,-114]],[[72359,81900],[115,7],[24,66]],[[72498,81973],[-103,3],[-36,-76]],[[72048,81932],[75,-12]],[[72123,81920],[94,47]],[[72217,81967],[-50,80]],[[72167,82047],[-123,3]],[[72044,82050],[4,-118]],[[71934,81973],[-22,77]],[[71912,82050],[-140,-19]],[[71772,82031],[-1,-25]],[[71771,82006],[-64,-103],[146,-4],[81,74]],[[67616,76817],[-103,201],[-241,-67],[6,-180],[338,46]],[[67889,83945],[34,1]],[[67923,83946],[-9,209]],[[67914,84155],[-46,8]],[[67868,84163],[21,-218]],[[70548,97445],[-6,-16],[118,-9],[44,69]],[[70704,97489],[-2,91],[-75,8],[0,-18],[-27,0],[-21,18],[-31,-143]],[[70074,97838],[29,-4],[33,-1],[75,-3],[84,0],[44,-1],[2,37],[0,82],[2,65],[1,42],[-44,1],[-22,1],[-22,1],[-52,18],[-64,-15],[-29,-4],[-28,0],[-1,-34],[-3,-43],[-1,-43],[0,-11],[-2,-44],[-2,-44]],[[70164,98011],[0,0]],[[70046,97649],[-61,-2],[-35,6],[-81,13],[-137,-13]],[[69732,97653],[-124,-2],[36,55],[57,90]],[[69701,97796],[-32,7],[-77,-46],[-94,-24],[-45,-27],[-50,-29]],[[69403,97677],[205,-28],[-7,-23]],[[69601,97626],[70,-10]],[[69671,97616],[84,-23]],[[69755,97593],[278,-37],[9,-40]],[[70042,97516],[77,-36]],[[70119,97480],[122,-38]],[[70241,97442],[53,0]],[[70294,97442],[56,73]],[[70350,97515],[-79,35],[-41,14]],[[70230,97564],[-184,85]],[[69081,97432],[23,-53],[42,-49],[88,52],[37,65]],[[69271,97447],[-58,54],[190,176]],[[69403,97677],[-111,17]],[[69292,97694],[-181,28]],[[69111,97722],[-9,-51]],[[69102,97671],[45,-94],[-38,3],[-16,2]],[[69093,97582],[-12,-150]],[[68892,96901],[-14,-81],[52,-49],[17,-32],[100,-25],[30,-4]],[[69077,96710],[55,21],[72,52],[61,53],[49,156],[-25,16],[-8,4]],[[69281,97012],[-73,-55]],[[69208,96957],[-85,-86],[3,-36],[-71,-26],[-48,86],[-115,6]],[[69075,96566],[87,-123],[28,-171],[132,47]],[[69322,96319],[-9,157]],[[69313,96476],[-91,6]],[[69222,96482],[-30,17],[-14,1],[-8,42]],[[69170,96542],[-103,76],[8,-52]],[[69008,95611],[-18,-254]],[[68990,95357],[37,-8]],[[69027,95349],[107,314]],[[69134,95663],[-37,13]],[[69097,95676],[-23,1]],[[69074,95677],[-103,5],[37,-71]],[[69422,95732],[16,-14],[116,-60],[49,-126],[-87,-4],[-76,66],[-82,-3],[-110,-170]],[[69248,95421],[16,-28],[151,2],[99,-66],[58,69],[223,34],[114,0]],[[69909,95432],[-1,36]],[[69908,95468],[0,289],[219,-18],[52,-79]],[[70179,95660],[122,37]],[[70301,95697],[13,39]],[[70314,95736],[-164,24]],[[70150,95760],[-222,52],[-21,-36],[-114,-19],[-314,39],[-57,-64]],[[70921,95979],[73,-51]],[[70994,95928],[-14,138],[-117,-4]],[[70863,96062],[58,-83]],[[71036,96961],[41,47]],[[71077,97008],[-6,2],[-83,81],[-68,19]],[[70920,97110],[-45,13],[-6,-12]],[[70869,97111],[167,-150]],[[70812,97052],[45,46]],[[70857,97098],[-124,-12],[-118,116]],[[70615,97202],[7,-114],[-1,-132],[56,19],[42,37],[93,40]],[[71095,97339],[24,-36],[4,-20],[48,-15]],[[71171,97268],[40,-6],[68,-92],[46,32],[-17,70],[27,51],[-49,76],[-116,19],[-75,-79]],[[71140,99745],[-1,-21],[85,34],[92,37],[-1,2],[-16,62],[-104,-69],[-54,-22]],[[71141,99768],[-1,-23]],[[70758,98793],[4,9],[6,70],[-32,50],[9,-2],[15,36],[74,17],[15,36],[-49,56],[8,77]],[[70808,99142],[-60,22],[-196,62],[-47,-237],[-32,-169],[285,-27]],[[72051,98931],[5,149],[72,140],[-5,145]],[[72123,99365],[-298,31],[-111,-41]],[[71714,99355],[-317,24]],[[71397,99379],[-1,-42],[79,-143],[6,-2],[289,-106],[281,-155]],[[71570,98496],[157,-49],[119,152]],[[71846,98599],[-44,45]],[[71802,98644],[-79,-131],[-104,8]],[[71619,98521],[-64,21],[-52,16],[67,-62]],[[71115,98786],[210,-111],[95,-37],[175,93]],[[71595,98731],[-9,43]],[[71586,98774],[-206,36]],[[71380,98810],[-170,44],[-28,9],[-64,-76],[-3,-1]],[[72163,97672],[10,0],[128,-3]],[[72301,97669],[55,41],[30,41]],[[72386,97751],[-87,40],[-45,194],[-168,168]],[[72086,98153],[-143,-19]],[[71943,98134],[9,-76],[27,-34],[57,-80]],[[72036,97944],[85,-53],[89,-101],[-67,-58]],[[72143,97732],[20,-60]],[[71725,97388],[94,0]],[[71819,97388],[0,7],[130,52],[172,-31]],[[72121,97416],[9,57],[185,6],[-48,75],[-165,-22],[-94,-11],[27,109],[-62,36],[-31,-99],[18,-26],[28,-21],[-90,-79],[-122,48],[-12,7],[-39,-108]],[[72438,97150],[90,-3],[-20,-78]],[[72508,97069],[24,-45]],[[72532,97024],[78,-106],[59,-54]],[[72669,96864],[215,-195]],[[72884,96669],[57,232],[-149,16],[-17,119]],[[72775,97036],[10,70]],[[72785,97106],[13,191],[42,-28]],[[72840,97269],[67,192],[-206,131]],[[72701,97592],[-62,-40]],[[72639,97552],[-63,-6],[77,-124],[-213,31]],[[72440,97453],[-3,-73]],[[72437,97380],[1,-10],[166,-77],[-67,-13],[-33,-54],[-3,-37],[-63,-39]],[[71844,96878],[47,112]],[[71891,96990],[-103,44]],[[71788,97034],[-106,-40],[-54,101]],[[71628,97095],[-10,-60],[-76,-48],[-31,-17]],[[71511,96970],[-193,-118]],[[71318,96852],[96,-23],[49,1],[205,-13],[18,154],[158,-93]],[[71689,96271],[108,-7],[192,37]],[[71989,96301],[-33,95]],[[71956,96396],[-46,76],[-37,41],[-86,4],[-20,88],[-29,6],[-134,-49],[19,83],[-27,6],[-37,-84]],[[71559,96567],[-4,-71],[134,-225]],[[72010,96760],[73,-58]],[[72083,96702],[-13,22]],[[72070,96724],[-2,112]],[[72068,96836],[-122,1]],[[71946,96837],[-2,-76],[66,-1]],[[72150,96345],[128,-35],[66,-81]],[[72344,96229],[103,184],[305,-15]],[[72752,96398],[-67,117]],[[72685,96515],[-50,30],[-28,5]],[[72607,96550],[-12,-50],[-139,-10],[-8,12],[-24,19],[-61,22],[-152,39]],[[72211,96582],[-5,-61]],[[72206,96521],[44,-19],[-100,-157]],[[71363,95000],[19,308]],[[71382,95308],[-45,0],[-75,-122],[-87,105]],[[71175,95291],[-86,6],[-69,-141]],[[71020,95156],[-5,-89]],[[71015,95067],[5,-23]],[[71020,95044],[53,-1],[42,-155]],[[71115,94888],[27,-1]],[[71142,94887],[55,-1],[27,0]],[[71224,94886],[135,26]],[[71359,94912],[4,88]],[[70904,94534],[281,-5],[95,-86]],[[71280,94443],[-144,247]],[[71136,94690],[-159,0],[-26,-53]],[[70951,94637],[-47,-103]],[[70503,95976],[127,51]],[[70630,96027],[17,35],[-29,42],[-34,-9]],[[70584,96095],[-131,23]],[[70453,96118],[-2,-144],[52,2]],[[71075,93799],[20,-38]],[[71095,93761],[71,-8]],[[71166,93753],[-58,201],[32,100],[-74,212],[-71,4],[-13,40]],[[70982,94310],[-109,52],[-1,103],[-15,38]],[[70857,94503],[-3,6]],[[70854,94509],[-55,153]],[[70799,94662],[-30,-14],[-92,4],[-2,126],[-15,64]],[[70660,94842],[-281,50],[-11,186]],[[70368,95078],[-473,-66],[-59,-24],[-55,-70],[252,-256]],[[70033,94662],[188,20],[138,-85],[30,-156]],[[70389,94441],[179,19],[119,73],[66,-62],[-22,-172],[-122,-8],[-103,-56],[-98,-73]],[[70408,94162],[34,-89]],[[70442,94073],[41,-34],[36,-25],[110,92],[42,6],[56,9]],[[70727,94121],[134,180],[-19,-232]],[[70842,94069],[7,-42]],[[70849,94027],[137,144],[-21,-106],[89,-109],[21,-157]],[[70608,95249],[68,-31]],[[70676,95218],[2,44]],[[70678,95262],[-14,40]],[[70664,95302],[-20,56],[2,56],[-115,91]],[[70531,95505],[77,-256]],[[70983,95404],[5,137],[2,54]],[[70990,95595],[-131,38],[-87,-10],[-9,-156],[177,-3],[-2,-72],[45,12]],[[69142,94500],[165,-16],[-13,-122]],[[69294,94362],[94,102],[-25,112]],[[69363,94576],[-85,49],[-95,150],[-28,-31]],[[69155,94744],[60,-169],[-73,-75]],[[68715,94982],[40,24]],[[68755,95006],[65,172]],[[68820,95178],[18,51],[-42,13]],[[68796,95242],[-81,-260]],[[69027,95349],[-42,-166]],[[68985,95183],[18,1],[167,-6]],[[69170,95178],[128,-52]],[[69298,95126],[-1,183]],[[69297,95309],[-39,6],[-83,21],[-148,13]],[[68873,94762],[73,-26]],[[68946,94736],[26,42],[39,-69]],[[69011,94709],[71,163]],[[69082,94872],[-76,38],[-30,107]],[[68976,95017],[-72,21]],[[68904,95038],[-6,-5],[-59,-50],[36,-107],[-2,-76],[0,-38]],[[68569,94030],[152,69]],[[68721,94099],[4,15],[113,35],[10,-81]],[[68848,94068],[83,12]],[[68931,94080],[7,83],[134,-51]],[[69072,94112],[44,25],[-36,27]],[[69080,94164],[-254,53],[7,28],[33,73],[32,55],[6,58]],[[68904,94431],[-55,-9],[-179,41]],[[68670,94463],[-5,0]],[[68665,94463],[-24,-230],[-92,26],[-64,-60]],[[68485,94199],[-89,-131]],[[68396,94068],[24,-6],[32,-8],[89,73],[28,-97]],[[68032,93644],[14,-11]],[[68046,93633],[67,15],[33,-6]],[[68146,93642],[125,230]],[[68271,93872],[78,125],[47,71]],[[68396,94068],[15,159]],[[68411,94227],[-27,8]],[[68384,94235],[-15,2]],[[68369,94237],[-160,-360],[-177,-233]],[[68123,93144],[-200,57],[6,-90]],[[67929,93111],[90,-59],[34,-11],[11,-1],[78,-2]],[[68142,93038],[46,82],[61,122],[-46,7]],[[68203,93249],[-15,-116],[-65,11]],[[67674,92941],[136,-39],[202,-101],[9,-78]],[[68021,92723],[22,50],[37,67]],[[68080,92840],[-56,43]],[[68024,92883],[-160,91],[-50,46],[-29,17],[-2,-24],[-112,-50],[3,-22]],[[67980,92632],[485,-407]],[[68465,92225],[22,50]],[[68487,92275],[-157,170],[-108,80],[-45,59],[-162,133]],[[68015,92717],[-35,-85]],[[68756,92624],[-51,-19],[-60,-42],[-84,24],[-16,-34],[-69,-31]],[[68476,92522],[-24,-7]],[[68452,92515],[7,-43],[93,-15]],[[68552,92457],[265,-49]],[[68817,92408],[202,-79]],[[69019,92329],[83,76],[-12,19]],[[69090,92424],[-278,75],[226,45],[125,-46]],[[69163,92498],[48,136]],[[69211,92634],[-153,2],[-99,40],[-109,-14],[-94,-38]],[[69432,93747],[49,-95],[42,-93],[5,-11],[28,-32],[3,-1],[-48,-108],[-57,19],[-35,-120]],[[69419,93306],[103,-134],[-68,-46],[-145,84],[-50,-22]],[[69259,93188],[20,-57]],[[69279,93131],[16,-78]],[[69295,93053],[5,-77]],[[69300,92976],[-1,-9],[109,-15],[-1,-16]],[[69407,92936],[204,6],[47,63]],[[69658,93005],[-35,121],[102,72],[224,-5]],[[69949,93193],[-7,18]],[[69942,93211],[-41,318]],[[69901,93529],[-186,-82],[-128,-47],[31,112],[5,54],[160,28],[-5,69],[-24,8]],[[69754,93671],[-159,94]],[[69595,93765],[-75,-6]],[[69520,93759],[-88,-12]],[[68623,92969],[97,-61],[46,-42],[115,-47]],[[68881,92819],[34,55],[-236,119],[-55,9]],[[68624,93002],[-1,-33]],[[68941,93095],[153,53],[-141,37]],[[68953,93185],[-4,-21],[-8,-69]],[[68524,93256],[16,16],[11,26]],[[68551,93298],[-74,95]],[[68477,93393],[-53,8],[-103,-45]],[[68321,93356],[-11,-85],[214,-15]],[[69082,93513],[17,94],[165,-121]],[[69264,93486],[42,-49],[107,6],[22,26],[-19,42],[-98,135],[-89,105],[-31,7],[-142,11]],[[69056,93769],[-77,5],[-143,7]],[[68836,93781],[-99,-114],[-141,-60]],[[68596,93607],[-74,-26]],[[68522,93581],[-162,-46]],[[68360,93535],[21,-17],[96,-125]],[[68477,93393],[50,-8],[24,-87]],[[68551,93298],[72,1],[51,11],[80,-28]],[[68754,93282],[24,172],[2,84],[120,-73]],[[68900,93465],[20,-35],[157,8],[5,75]],[[70616,92903],[39,-20],[37,371]],[[70692,93254],[-34,11],[-63,-83],[21,-279]],[[70136,93380],[23,-73]],[[70159,93307],[179,-115],[53,75]],[[70391,93267],[58,89]],[[70449,93356],[11,26],[-179,75]],[[70281,93457],[-33,6],[-14,-6]],[[70234,93457],[-98,-77]],[[73178,94489],[-239,103]],[[72939,94592],[-116,73]],[[72823,94665],[-66,-133],[-89,-22]],[[72668,94510],[-28,-42],[263,-49],[-30,-75],[21,-77],[273,31],[11,191]],[[73980,96944],[-334,-266],[14,-67]],[[73660,96611],[272,75]],[[73932,96686],[47,50],[223,53]],[[74202,96789],[-48,117],[-174,38]],[[70675,98596],[-222,-121]],[[70453,98475],[142,-37],[12,-3],[8,18],[8,17],[15,36],[15,36],[15,36],[7,18]],[[17755,44999],[3,53]],[[17758,45052],[-6,1],[-32,1],[-44,3],[7,-69],[72,11]],[[17990,45027],[14,148]],[[18004,45175],[-30,3]],[[17974,45178],[-102,-77],[0,-27],[-12,-26],[130,-21]],[[17970,45337],[82,-79]],[[18052,45258],[39,43]],[[18091,45301],[6,37]],[[18097,45338],[-46,21]],[[18051,45359],[-26,11]],[[18025,45370],[-40,17],[-15,-50]],[[17350,44594],[3,60],[2,23],[2,10],[2,20],[2,20],[3,30],[-62,8],[-65,12],[-40,8],[-12,3],[-20,4],[-53,8],[-110,-8],[-18,-30]],[[16984,44762],[80,-212],[136,68],[150,-24]],[[16797,45627],[-46,-289]],[[16751,45338],[13,-1],[55,4],[18,10],[25,6],[28,46],[66,2],[15,58],[-4,58],[131,64],[-1,47]],[[17533,45534],[16,-37],[29,-22],[19,-5],[71,23],[52,29],[3,9],[-6,14],[-31,15],[-9,21],[-43,16],[-56,5],[-8,9],[-21,12],[-25,-60],[9,-29]],[[27762,43086],[122,-15]],[[27884,43071],[112,40],[6,69],[-102,15]],[[27900,43195],[-3,4]],[[27897,43199],[-135,-113]],[[28174,43522],[39,0]],[[28213,43522],[90,60],[27,2],[79,-23],[30,-36]],[[28439,43525],[30,-1]],[[28469,43524],[32,103]],[[28501,43627],[-1,43]],[[28500,43670],[-9,1],[-256,-82]],[[28235,43589],[-61,-67]],[[28904,42947],[250,125]],[[29154,43072],[-77,27],[-110,31]],[[28967,43130],[-48,-120]],[[28919,43010],[-15,-63]],[[28833,42363],[0,-56]],[[28833,42307],[155,-1]],[[28988,42306],[2,122],[1,83]],[[28991,42511],[-159,-9],[1,-78],[0,-61]],[[28121,41059],[261,36],[46,69]],[[28428,41164],[-122,51],[81,1],[-2,92],[0,72],[0,52],[0,102]],[[28385,41534],[-265,-4],[2,-318],[-1,-153]],[[31274,44840],[35,76],[178,36]],[[31487,44952],[89,2],[1,195],[-266,-109],[-1,-18],[-174,-3],[-3,-246],[141,67]],[[29307,44897],[66,0],[67,0]],[[29440,44897],[110,241]],[[29550,45138],[1,17]],[[29551,45155],[-42,-28]],[[29509,45127],[-210,-144],[8,-86]],[[28338,45010],[36,-33]],[[28374,44977],[307,-85],[171,1]],[[28852,44893],[167,1]],[[29019,44894],[4,81],[-172,-7],[0,71]],[[28851,45039],[-1,82]],[[28850,45121],[-449,-18]],[[28401,45103],[-16,-30]],[[28385,45073],[-47,-63]],[[29543,44669],[-313,-2],[-24,-29]],[[29206,44638],[-12,-49]],[[29194,44589],[0,-2]],[[29194,44587],[0,-74],[301,2],[48,154]],[[25924,44658],[211,115],[200,175],[130,33]],[[26465,44981],[3,197]],[[26468,45178],[66,98],[-200,-3],[-3,177]],[[26331,45450],[-421,-23]],[[33767,66084],[127,159],[158,84],[94,165],[-9,111],[-150,76],[8,-257],[-132,-169]],[[33863,66253],[-189,-169]],[[33977,67768],[147,32]],[[34124,67800],[-5,141]],[[34119,67941],[-51,60]],[[34068,68001],[-16,-3]],[[34052,67998],[3,-179],[-98,14]],[[33957,67833],[20,-65]],[[30251,68429],[29,154]],[[30280,68583],[-106,-44]],[[30174,68539],[-124,-58]],[[30050,68481],[201,-52]],[[32046,69653],[50,36]],[[32096,69689],[-15,147]],[[32081,69836],[-111,-108]],[[31970,69728],[76,-75]],[[32532,70820],[-99,-213],[-76,-117],[-98,44]],[[32259,70534],[57,-90]],[[32316,70444],[92,-18]],[[32408,70426],[154,116]],[[32562,70542],[-72,13],[10,40],[127,-38]],[[32627,70557],[250,42]],[[32877,70599],[-203,78],[-142,143]],[[32717,70882],[151,215],[-38,92],[-120,72]],[[32710,71261],[-94,-101]],[[32616,71160],[1,-27],[45,6],[10,-125],[45,-132]],[[33874,71566],[-95,-224],[-129,-113],[160,88]],[[33810,71317],[102,106]],[[33912,71423],[225,244],[55,41]],[[34192,71708],[-1,1]],[[34191,71709],[-78,136],[-86,-127],[-74,-73],[-79,-79]],[[34379,72832],[182,123]],[[34561,72955],[39,92],[-64,18]],[[34536,73065],[-160,-218]],[[34376,72847],[3,-15]],[[33847,72583],[99,-19],[86,101]],[[34032,72665],[-28,14]],[[34004,72679],[-157,-96]],[[33787,72565],[-26,15]],[[33787,72565],[0,0]],[[34920,72935],[112,-71],[177,143]],[[35209,73007],[7,5]],[[35216,73012],[-135,1]],[[35081,73013],[-212,2]],[[34869,73015],[51,-80]],[[35080,73528],[133,44],[-57,77],[164,60],[-61,129]],[[35259,73838],[-308,-15]],[[34951,73823],[33,-275],[96,-20]],[[35671,73951],[124,18],[128,-97],[-53,-62]],[[35870,73810],[57,-49],[119,116],[106,-82],[152,222]],[[36304,74017],[-70,43],[71,214],[-191,95],[-222,-42],[-315,-14],[56,-176],[38,-186]],[[36136,74112],[-69,-69],[-141,128],[90,42],[120,-101]],[[34566,69751],[-43,21],[-191,-176],[-129,-49]],[[34203,69547],[-107,-76],[-103,-130]],[[33993,69341],[74,21],[179,-88]],[[34246,69274],[57,35],[-111,99],[-30,2],[139,88],[115,-14],[-46,-81],[125,-179]],[[34495,69224],[60,52]],[[34555,69276],[-35,106],[-6,195]],[[34514,69577],[-23,10],[75,164]],[[34127,69185],[-202,-236],[-15,-88]],[[33910,68861],[8,-38]],[[33918,68823],[209,99],[114,0],[130,224]],[[34371,69146],[-40,-1],[-172,-146],[94,72]],[[34253,69071],[-129,89],[3,25]],[[17251,45804],[242,113]],[[17493,45917],[-47,122],[-16,-10],[-89,60],[-68,-40],[-80,24],[-98,-165],[116,-27],[30,-35],[10,-42]],[[17775,46113],[180,-77]],[[17955,46036],[62,102],[-60,152],[-108,11],[100,119]],[[17949,46420],[-223,-7]],[[17726,46413],[-23,4],[-102,-47]],[[17601,46370],[-65,-15]],[[17536,46355],[-14,-21],[-23,-37],[-18,-28],[-46,-68],[7,-5],[93,5],[34,9],[118,11],[19,-39],[24,-38],[45,-31]],[[17060,46417],[-149,80]],[[16911,46497],[-11,-18],[-4,-47],[-1,-8],[-13,-145],[6,-1],[65,16],[136,90],[-29,33]],[[18316,47302],[70,18],[29,31],[-7,74]],[[18408,47425],[-139,59],[-50,-57],[-5,66],[95,138],[18,15],[66,82]],[[18393,47728],[-84,52]],[[18309,47780],[-60,-44]],[[18249,47736],[-99,-128],[-46,-88],[-106,-170],[-169,-203]],[[17829,47147],[98,-117]],[[17927,47030],[88,-34]],[[18015,46996],[93,102],[14,30],[33,145],[-91,98],[134,-51],[101,-19],[17,1]],[[18819,47070],[142,55],[108,-31]],[[19069,47094],[-56,85],[-11,44],[-24,28],[-59,44],[-61,63],[-15,-57],[56,-61],[2,-27],[-83,-90]],[[18818,47123],[1,-53]],[[18749,48197],[-100,-269],[-81,-28]],[[18568,47900],[-64,-127]],[[18504,47773],[211,29],[49,72]],[[18764,47874],[-53,32],[87,100]],[[18798,48006],[36,46]],[[18834,48052],[13,12],[21,71],[189,-38]],[[19057,48097],[10,67],[-33,42],[-136,93]],[[18898,48299],[-37,75]],[[18861,48374],[-112,-177]],[[18958,47672],[104,-21],[67,50],[57,-2]],[[19186,47699],[96,196]],[[19282,47895],[-25,2]],[[19257,47897],[-35,40],[-42,-40],[-34,-33],[-57,-59],[-28,-29],[-57,-56],[-46,-48]],[[19585,48251],[51,29],[46,27]],[[19682,48307],[76,44],[-41,50]],[[19717,48401],[-43,53],[-41,51]],[[19633,48505],[-18,23],[-99,17],[-55,95],[1,4],[197,35],[44,-13],[23,-27],[3,3]],[[19700,48792],[-69,31],[-283,-148]],[[19348,48675],[-43,-87],[88,-120]],[[19393,48468],[33,-42],[20,-26],[25,-33],[-46,-38],[36,-54],[64,-73],[2,3],[58,46]],[[19742,48183],[9,-16],[33,-35],[84,8],[85,47]],[[19953,48187],[-5,11]],[[19948,48198],[-207,29]],[[19741,48227],[1,-44]],[[20122,48098],[228,-199]],[[20350,47899],[50,170]],[[20400,48069],[4,24]],[[20404,48093],[83,137]],[[20487,48230],[12,25]],[[20455,48256],[-63,-107],[-91,32]],[[20301,48181],[-32,12],[-116,-22],[-62,-12],[8,-15],[23,-46]],[[17003,47755],[101,21],[72,-159]],[[17176,47617],[84,100],[-53,136],[-100,27]],[[17107,47880],[-41,-31]],[[17066,47849],[-63,-94]],[[17267,48315],[133,9]],[[17400,48324],[15,34]],[[17415,48358],[26,241],[-136,-21]],[[17305,48578],[-38,-263]],[[17240,46579],[-74,-5],[-89,-122]],[[17077,46452],[145,-15],[18,142]],[[43159,80026],[129,191]],[[43288,80217],[-97,10]],[[43191,80227],[-176,-9]],[[43015,80218],[144,-192]],[[43842,80330],[166,-29]],[[44008,80301],[2,65]],[[44010,80366],[-24,-2],[-107,-5],[-37,-29]],[[44770,80534],[-238,56],[-203,-11],[-275,69]],[[44054,80648],[-66,-49],[8,-12]],[[43996,80587],[33,-38],[116,-8],[102,-7],[-23,-32],[-13,-9]],[[44211,80493],[14,-82]],[[44225,80411],[252,-34],[4,1],[118,-13]],[[44599,80365],[2,45]],[[44601,80410],[5,108],[164,16]],[[44508,80443],[-114,77],[127,8],[-13,-85]],[[43657,80572],[23,20],[-41,62],[-16,54],[-6,13],[-4,-1]],[[43613,80720],[-90,-16]],[[43523,80704],[-10,-87]],[[43513,80617],[-11,-50],[28,-17],[127,22]],[[45542,80588],[122,16]],[[45664,80604],[-25,106],[-110,-21]],[[45529,80689],[13,-101]],[[45155,80371],[77,151]],[[45232,80522],[25,76]],[[45257,80598],[-99,22]],[[45158,80620],[-3,-249]],[[39383,78773],[19,-6]],[[39402,78767],[114,-70]],[[39516,78697],[39,-1],[9,-102]],[[39564,78594],[48,32],[76,-163]],[[39688,78463],[-8,163]],[[39680,78626],[-58,37],[-94,147]],[[39528,78810],[-145,-37]],[[39880,78042],[-144,53]],[[39736,78095],[-67,-153]],[[39669,77942],[0,-3],[211,103]],[[39918,78279],[88,1],[65,0],[276,265],[-351,20],[-81,20]],[[39915,78585],[3,-306]],[[36712,75935],[1,-48],[200,30],[144,79]],[[37057,75996],[59,72]],[[37116,76068],[-227,-22],[-177,-111]],[[36430,75817],[105,38]],[[36535,75855],[-1,9]],[[36534,75864],[-18,49]],[[36516,75913],[-135,71],[-50,-118]],[[36331,75866],[99,-49]],[[36589,75081],[139,3]],[[36728,75084],[-2,155]],[[36726,75239],[-135,10],[-4,-93],[2,-75]],[[37350,75055],[-183,-41]],[[37167,75014],[-97,-79],[-256,-3]],[[36814,74932],[2,-77],[0,-32],[55,-69]],[[36010,74902],[359,22]],[[36369,74924],[-1,39],[0,38],[0,29],[41,48],[46,1],[2,0],[42,75],[0,27],[-1,91]],[[36498,75272],[-45,-1]],[[36453,75271],[-288,-5],[-158,123]],[[36007,75389],[3,-487]],[[36328,77824],[84,-131]],[[36412,77693],[110,-18]],[[36522,77675],[-7,78]],[[36515,77753],[-49,184]],[[36466,77937],[-66,108],[0,39],[-64,0],[-25,-1]],[[36311,78083],[2,-153]],[[36313,77930],[1,-24],[14,-82]],[[42200,80405],[310,-46]],[[42510,80359],[-198,79],[-2,66]],[[42310,80504],[-54,54],[-46,0]],[[42210,80558],[0,-34]],[[42210,80524],[0,-19]],[[42210,80505],[1,-63]],[[42211,80442],[-11,-37]],[[42603,80379],[40,2],[61,1],[28,5],[47,-57],[78,-4],[-15,64],[-34,108]],[[42808,80498],[-192,46]],[[42616,80544],[-3,-4],[-10,-161]],[[36043,78231],[88,2]],[[36131,78233],[89,52]],[[36220,78285],[48,33]],[[36268,78318],[23,1],[28,-5]],[[36319,78314],[164,-26]],[[36483,78288],[1,-33],[0,-18],[45,-26]],[[36529,78211],[26,69],[-138,129],[-119,-2],[-250,38],[-5,-214]],[[22873,49822],[71,48]],[[22944,49870],[100,75]],[[23044,49945],[-36,24],[-106,76]],[[22902,50045],[-27,-31],[-107,81]],[[22768,50095],[-43,-66],[81,-93],[-52,-60],[119,-54]],[[23611,50105],[107,128],[176,145],[106,-24],[-56,-52],[-91,-55],[-34,-38],[132,48],[55,-63]],[[24006,50194],[122,-24]],[[24128,50170],[209,-2]],[[24337,50168],[-176,283],[-60,167]],[[24101,50618],[-459,-339],[-270,-64]],[[23372,50215],[-1,-5],[-3,-93],[73,-54],[21,2],[149,40]],[[23325,49088],[131,15],[106,157],[-225,-58]],[[23337,49202],[-13,-16],[1,-98]],[[21679,49098],[0,-5],[1,-47],[7,-197]],[[21687,48849],[184,-70]],[[21871,48779],[32,50],[42,48]],[[21945,48877],[-14,16],[-16,76],[21,36],[17,31],[34,57],[78,-37],[64,-27]],[[22129,49029],[46,115],[-61,86]],[[22114,49230],[-56,-13]],[[22058,49217],[-159,-46],[-220,-73]],[[21900,50424],[48,-63],[22,-32],[11,-16],[32,-73],[1,-67],[126,2],[-106,170],[-67,131],[-78,-37],[11,-15]],[[21585,50346],[-1,-6],[29,15],[-26,157]],[[21587,50512],[-26,39],[-69,93]],[[21492,50644],[-109,-47],[-61,-50],[-13,-13]],[[21309,50534],[-12,-132]],[[21297,50402],[64,-60]],[[21361,50342],[22,-16],[3,126],[163,-75],[36,-31]],[[20691,49863],[107,40],[27,-120]],[[20825,49783],[46,1],[1,0],[-63,162],[105,-67],[33,-6],[17,22],[79,106],[69,8],[15,43],[14,34],[72,58]],[[21213,50144],[-1,70],[-58,27]],[[21154,50241],[-94,-77],[-289,-4]],[[20771,50160],[-32,-98],[-140,-62],[92,-137]],[[21590,49096],[-5,189]],[[21585,49285],[-169,-34],[-64,-20],[-76,-29],[18,-54],[93,-23],[22,-36],[67,6],[49,0],[65,1]],[[21107,48934],[88,23]],[[21195,48957],[14,3]],[[21209,48960],[78,21],[-29,95],[-17,58],[-15,49],[-107,-40],[-7,-3],[8,-116]],[[21120,49024],[-13,-90]],[[20170,49005],[83,-43]],[[20253,48962],[47,-20],[53,-4],[-2,143]],[[20351,49081],[6,68],[73,166],[59,46],[15,90]],[[20504,49451],[-122,-91],[-216,-108],[54,-120],[-50,-127]],[[19971,49053],[41,248],[-84,8]],[[19928,49309],[-43,-17],[36,-264],[50,25]],[[22358,50918],[87,-96]],[[22445,50822],[2,4],[100,48],[106,-1],[75,125]],[[22728,50998],[141,63]],[[22869,51061],[12,81]],[[22881,51142],[-223,-33]],[[22658,51109],[-301,-155]],[[22357,50954],[1,-36]],[[23542,50802],[47,-168]],[[23589,50634],[78,52],[47,32],[-39,117],[-34,-22],[-81,57],[-18,-68]],[[25063,51504],[29,81],[2,76],[137,126],[78,-28],[87,3],[123,-116]],[[25519,51646],[20,159],[-178,88],[51,97]],[[25412,51990],[-239,87]],[[25173,52077],[-88,30],[120,135]],[[25205,52242],[-6,1],[-107,83],[-111,-37]],[[24981,52289],[-69,-36]],[[24912,52253],[110,-139],[-52,-37]],[[24970,52077],[-1,-29],[-165,79]],[[24804,52127],[-37,-117]],[[24767,52010],[153,-47],[168,-21],[-43,-82],[-70,-101],[-117,98],[-95,-104]],[[24763,51753],[-162,-183]],[[24601,51570],[121,-87]],[[24722,51483],[40,49],[112,-67],[189,39]],[[24661,51820],[58,-41]],[[24719,51779],[46,64],[1,71],[30,39],[-29,57]],[[24767,52010],[-112,-4],[6,-186]],[[24834,52767],[539,89]],[[25373,52856],[2,23]],[[25375,52879],[-8,79]],[[25367,52958],[-66,78],[-150,-29],[-81,60]],[[25070,53067],[-85,-112],[-183,-26],[32,-162]],[[25340,53167],[131,2],[20,94],[-6,8],[226,76]],[[25711,53347],[34,51]],[[25745,53398],[27,115]],[[25772,53513],[-71,22],[-242,-147],[-119,-221]],[[20984,53708],[-190,14],[-114,-48]],[[20680,53674],[-54,-101],[96,-128],[60,-226]],[[20782,53219],[-6,45],[143,-72]],[[20919,53192],[62,147]],[[20981,53339],[-27,81]],[[20954,53420],[-29,0],[-21,-4],[29,180],[30,0],[11,-4],[43,-16],[2,13],[6,53],[-55,6],[14,60]],[[23600,54297],[185,-113],[27,28],[39,18]],[[23638,54452],[-38,-155]],[[23408,53799],[30,15],[160,62],[-28,30],[-48,25],[-113,89]],[[23409,54020],[-36,-24],[-14,-9],[-66,-172],[115,-16]],[[20605,52269],[49,170]],[[20654,52439],[-159,-76],[110,-94]],[[20207,51822],[89,16]],[[20296,51838],[154,61]],[[20450,51899],[-60,77],[-183,-154]],[[20899,52552],[-206,-171]],[[20693,52381],[-11,-90]],[[20682,52291],[36,-43],[121,30],[97,118],[-37,156]],[[20880,52591],[144,-4]],[[21024,52587],[82,64]],[[21106,52651],[-105,86]],[[21001,52737],[-160,-66]],[[20841,52671],[39,-80]],[[20756,52712],[97,122],[-361,47]],[[20492,52881],[-34,-36]],[[20458,52845],[18,-63],[174,15],[106,-85]],[[21052,52794],[168,-65]],[[21220,52729],[37,81]],[[21257,52810],[-60,196],[49,88]],[[21246,53094],[-9,198]],[[21237,53292],[-28,39]],[[21209,53331],[-20,-30]],[[21189,53301],[-65,-242],[-72,-265]],[[21297,52528],[124,-251]],[[21421,52277],[-8,250],[-178,192]],[[21235,52719],[62,-191]],[[21574,53241],[90,-153],[92,38]],[[21756,53126],[-10,199]],[[21746,53325],[-27,-4],[-81,-13],[-55,20]],[[21583,53328],[-27,-5]],[[21556,53323],[18,-82]],[[21682,53176],[0,0]],[[21873,53247],[172,-86],[133,-137]],[[22178,53024],[51,17],[-154,275]],[[22075,53316],[-26,11]],[[22049,53327],[21,-152],[-83,57],[-13,96]],[[21974,53328],[-49,5],[-60,-11]],[[21865,53322],[8,-75]],[[22397,53448],[-185,-114]],[[22212,53334],[157,-150],[28,264]],[[22036,53431],[7,-15]],[[22043,53416],[14,-27],[59,-16],[84,14]],[[22200,53387],[59,15]],[[22259,53402],[-4,47],[61,66]],[[22316,53515],[-280,-84]],[[22452,53511],[2,0],[182,207],[87,154]],[[22723,53872],[-354,-330]],[[22369,53542],[39,-1],[44,-30]],[[22498,53426],[244,-115],[-13,-60]],[[22729,53251],[30,2],[83,-26],[181,118]],[[23023,53345],[-212,12],[-115,149]],[[22696,53506],[-198,-80]],[[23730,53609],[78,-93]],[[23808,53516],[145,-33],[-69,97],[32,124]],[[23916,53704],[-187,-10],[1,-85]],[[24093,53697],[95,105],[-166,204]],[[24022,54006],[-87,-90]],[[23935,53916],[158,-219]],[[19019,15072],[127,-24]],[[19146,15048],[40,136],[-61,95],[-3,69]],[[19122,15348],[-59,11],[-2,71],[227,20],[-30,63]],[[19258,15513],[-83,-3]],[[19175,15510],[-142,-3],[-115,-13]],[[18918,15494],[87,-41],[-36,-103],[67,6],[4,-141],[-21,-143]],[[19049,15847],[-25,267],[-58,45],[-14,36]],[[18952,16195],[-115,-5],[-89,133]],[[18748,16323],[-103,-133],[101,-12],[7,-248],[-146,-15]],[[18607,15915],[0,-103],[-310,-163]],[[18297,15649],[10,-4]],[[18307,15645],[37,-25],[22,-51],[223,-34],[-93,-74],[92,-114]],[[18588,15347],[78,60],[-14,105],[105,27],[3,-4],[-4,-28]],[[18756,15507],[22,0],[85,-33],[55,20]],[[18918,15494],[-20,119],[115,-11],[57,90]],[[19070,15692],[12,45]],[[19082,15737],[31,127]],[[19113,15864],[-64,-17]],[[19049,15847],[-150,-85],[-64,-28],[60,184],[40,-14],[114,-57]],[[18677,15266],[-34,-163],[-222,-90]],[[18421,15013],[135,-95],[83,5]],[[18639,14923],[150,114],[107,62],[-54,84],[51,101],[-107,4],[-36,-9],[-73,-13]],[[19175,15043],[113,-21]],[[19288,15022],[82,217]],[[19370,15239],[-142,33]],[[19228,15272],[-53,-229]],[[19075,14358],[-116,-11]],[[18959,14347],[-28,-8],[123,-153],[21,172]],[[19459,16557],[159,5]],[[19618,16562],[-15,66]],[[19603,16628],[-58,159]],[[19545,16787],[-51,-41]],[[19494,16746],[-72,-58]],[[19422,16688],[-96,-79],[69,-75],[64,23]],[[25574,12349],[106,-106]],[[25680,12243],[99,-72]],[[25779,12171],[-23,199],[-109,109],[-148,3]],[[25499,12482],[75,-133]],[[16778,3271],[89,11]],[[16867,3282],[-49,172]],[[16818,3454],[-231,-62],[191,-121]],[[14478,6030],[-86,74],[-81,-13],[57,-128],[110,67]],[[19665,7665],[-11,-72],[181,-22],[98,79],[88,71],[-174,4],[50,139],[-189,-35]],[[19708,7829],[-21,-144],[-22,-20]],[[20008,8695],[65,80],[98,-88]],[[20171,8687],[-100,221],[-108,-70],[45,-143]],[[19076,41113],[142,-47]],[[19218,41066],[4,5],[30,7],[70,-107]],[[19331,40970],[1,11],[9,123]],[[19341,41104],[-174,168]],[[19167,41272],[-47,34],[-18,8],[-55,19]],[[19047,41333],[29,-220]],[[19850,41779],[33,-8]],[[19883,41771],[69,95],[184,137]],[[20136,42003],[-90,126]],[[19858,42019],[11,-92]],[[19869,41927],[-19,-148]],[[19843,41636],[-5,-43],[98,31],[-40,-147],[37,-71]],[[19933,41406],[225,155],[19,-7],[19,9]],[[20196,41563],[211,56],[46,126],[-104,75]],[[20349,41820],[-76,-39],[-61,-43],[-88,-11],[-68,-57],[-138,87],[-28,3],[-47,-124]],[[20433,40351],[15,-7],[-11,277]],[[20437,40621],[-140,199],[-95,-213],[-172,56],[65,-23],[338,-289]],[[21049,39799],[-153,-33]],[[20896,39766],[-10,-48],[4,-72],[243,-111],[66,42]],[[21199,39577],[109,28]],[[21308,39605],[-42,83]],[[21266,39688],[-199,89],[-9,22],[-9,0]],[[21463,39535],[17,-192]],[[21480,39343],[87,-123]],[[21567,39220],[131,12],[0,146]],[[21698,39378],[-150,221]],[[21548,39599],[-85,-64]],[[22210,38764],[233,-191]],[[22443,38573],[-4,146]],[[22439,38719],[-30,4],[-162,86]],[[22247,38809],[-37,-45]],[[21576,38640],[189,13]],[[21765,38653],[-3,108]],[[21762,38761],[-86,-3]],[[21676,38758],[-103,-52]],[[21573,38706],[3,-66]],[[22119,38691],[-3,52]],[[22116,38743],[-88,-24],[-8,-91],[99,63]],[[23264,37902],[81,2],[-3,76]],[[23342,37980],[-6,193],[102,-121]],[[23438,38052],[81,-97]],[[23519,37955],[-1,30]],[[23518,37985],[-8,305]],[[23510,38290],[-267,-6],[-86,-2],[18,-306],[89,-74]],[[24762,41018],[-117,-20]],[[24645,40998],[-106,-97],[126,-106],[188,150]],[[17064,39344],[29,71],[28,74]],[[17121,39489],[-41,41]],[[17080,39530],[-100,-42],[84,-144]],[[16484,38034],[137,84],[22,132]],[[16643,38250],[-86,25]],[[16557,38275],[-118,-156],[45,-85]],[[15567,39631],[107,-123]],[[15674,39508],[290,190]],[[15964,39698],[-106,124]],[[15858,39822],[-57,-38],[-41,-26],[-74,-50],[-28,-18],[-72,-47],[-19,-12]],[[16184,39843],[63,41],[-107,123]],[[16140,40007],[-62,-40]],[[16078,39967],[106,-124]],[[16140,40007],[175,114],[-34,39],[-189,-101]],[[16092,40059],[48,-52]],[[15479,39738],[147,96]],[[15626,39834],[27,152],[0,4],[-69,13],[-8,-20]],[[15576,39983],[-15,-45],[-42,-133]],[[15519,39805],[-55,-28]],[[15464,39777],[15,-39]],[[15362,40026],[7,-133],[93,23]],[[15462,39916],[40,11],[-43,67]],[[15459,39994],[12,50],[2,41]],[[15473,40085],[-51,35]],[[15422,40120],[-129,-3],[69,-91]],[[14725,38787],[266,94]],[[14991,38881],[0,7],[-1,64],[-2,61]],[[14988,39013],[-241,-40],[-33,-11],[11,-175]],[[14968,39153],[101,-63]],[[15069,39090],[19,31]],[[15088,39121],[71,75]],[[15159,39196],[-137,110]],[[15022,39306],[-54,-153]],[[14995,38706],[9,-54],[-3,-44]],[[15001,38608],[-1,-101],[253,5]],[[15253,38512],[-32,77]],[[15221,38589],[-90,-3]],[[15131,38586],[6,65]],[[15137,38651],[-85,37],[124,5]],[[15176,38693],[6,18],[-7,56],[-15,32],[-1,14],[-71,-2],[-96,-2]],[[14992,38809],[3,-103]],[[15259,38664],[179,6]],[[15438,38670],[-3,102],[-3,136]],[[15432,38908],[-178,-15],[1,-25],[1,-53],[0,-46],[2,-71],[1,-34]],[[15337,39084],[88,44]],[[15425,39128],[-1,75]],[[15424,39203],[-139,-4]],[[15285,39199],[-38,-84]],[[15247,39115],[-54,-103],[35,-24],[13,61],[96,35]],[[15144,38022],[10,-84]],[[15154,37938],[113,-28],[17,44]],[[15284,37954],[115,352]],[[15399,38306],[78,162],[-190,33]],[[15287,38501],[-20,-15]],[[15267,38486],[-16,-26],[-227,5],[-19,-117]],[[15005,38348],[4,-118],[91,-36],[15,2],[-14,-78],[-16,-49],[59,-47]],[[15891,37746],[158,118]],[[15891,37746],[0,0]],[[15153,37214],[147,19],[83,199]],[[15383,37432],[-34,115]],[[15349,37547],[-24,-6],[-174,-2],[-22,0],[-108,55]],[[15021,37594],[-48,8]],[[14973,37602],[-85,-104]],[[14888,37498],[174,-116],[19,-57],[72,-111]],[[13986,36710],[89,3]],[[14075,36713],[170,230],[75,2]],[[14320,36945],[188,160],[-84,-156],[-104,-4]],[[14320,36945],[-36,-46]],[[14284,36899],[5,-1],[66,-41],[67,-62]],[[14422,36795],[53,2],[87,150],[38,118]],[[14600,37065],[-32,40],[42,52],[4,24],[86,57]],[[14700,37238],[70,35]],[[14770,37273],[100,216]],[[14870,37489],[0,27]],[[14870,37516],[-7,-20],[5,26],[-85,8],[-69,-88]],[[14714,37442],[-191,-123]],[[14523,37319],[-45,-61]],[[14478,37258],[-116,-157],[-143,-2],[5,-156],[-158,7],[-92,144],[-134,-4],[6,-150],[135,-40],[5,-190]],[[14748,37959],[149,-22],[8,27],[-33,32],[-33,7],[-29,7],[-57,8],[-5,-59]],[[13730,37986],[156,-3]],[[13886,37983],[36,200],[-50,21]],[[13872,38204],[-5,0],[-30,-1],[-61,-79]],[[13776,38124],[-46,-138]],[[13843,38480],[-140,-92],[-10,-98],[28,-7]],[[13721,38283],[83,-5]],[[13804,38278],[38,118],[99,-2]],[[13941,38394],[91,-16]],[[14032,38378],[20,26],[-64,82],[-125,-7],[-20,1]],[[13707,35930],[91,-30]],[[13798,35900],[41,133],[6,23],[-120,56],[1,78],[-21,-13]],[[13705,36177],[-144,-110]],[[13561,36067],[-42,-201],[72,-269],[11,79],[132,4],[0,171]],[[13734,35851],[-78,0]],[[13656,35851],[-84,16]],[[13572,35867],[-14,0],[28,110]],[[13586,35977],[18,38],[64,49],[14,-33],[-11,-16],[-13,-36],[49,-49]],[[32815,45096],[213,-88],[88,38],[442,-12]],[[33558,45034],[-118,119],[-403,3],[-12,2]],[[33025,45158],[-193,62]],[[32832,45220],[-25,-43],[8,-81]],[[32681,45126],[25,52],[-45,49],[-89,38],[-28,38],[-131,-2]],[[32413,45301],[-54,-138]],[[32359,45163],[194,23],[1,-79],[127,19]],[[31762,45680],[149,154]],[[31911,45834],[-242,-2]],[[31669,45832],[-176,-2],[-176,-2]],[[31317,45828],[-1,-230]],[[31316,45598],[-1,-289]],[[31668,45510],[0,18],[0,75]],[[31668,45603],[-110,-2],[111,65],[93,14]],[[30357,45583],[163,4],[0,157]],[[30520,45744],[-148,25]],[[30372,45769],[-164,-153]],[[31142,45825],[87,1]],[[31229,45826],[3,188]],[[31232,46014],[-88,9]],[[31144,46023],[-2,-198]],[[30516,45904],[33,33]],[[30549,45937],[194,182]],[[30743,46119],[-135,11]],[[30608,46130],[-175,-2]],[[30433,46128],[-1,-198],[84,-26]],[[30914,46278],[168,157],[-209,-1],[-44,-77]],[[30829,46357],[85,-79]],[[31316,46694],[-35,-70]],[[31281,46624],[-63,-61]],[[31218,46563],[-53,-50]],[[31165,46513],[9,-1]],[[31174,46512],[146,5],[47,2]],[[31367,46519],[45,82],[40,-5],[0,78],[217,-14]],[[31669,46660],[176,164]],[[31845,46824],[-123,-67],[-139,9]],[[31583,46766],[-89,-24]],[[31494,46742],[-109,-56],[-69,8]],[[31276,46573],[0,0]],[[32020,46142],[39,0]],[[32059,46142],[57,155],[126,14],[220,73],[0,65],[-176,4],[1,149]],[[32287,46602],[-100,0],[-166,-1]],[[32021,46601],[0,-123],[-1,-25]],[[32020,46453],[0,-45]],[[32020,46408],[35,-7],[-35,-101],[0,-158]],[[31289,46727],[-76,128],[-102,40]],[[31111,46895],[30,-39],[1,-5],[67,-71],[0,-76],[78,15],[2,8]],[[31314,47052],[2,-61],[0,-15],[0,-77]],[[31316,46899],[153,3]],[[31469,46902],[25,24],[-2,128]],[[31492,47054],[-89,-1],[-3,153]],[[31400,47206],[-88,-1]],[[31312,47205],[2,-153]],[[32018,47289],[180,2]],[[32198,47291],[-4,229]],[[32194,47520],[-90,-124],[-90,-12]],[[32014,47384],[4,-95]],[[29909,48199],[155,-76],[86,133]],[[30150,48256],[-87,43]],[[30063,48299],[-111,-35],[-43,-65]],[[29696,48411],[178,3]],[[29874,48414],[177,3]],[[30051,48417],[71,116]],[[30122,48533],[25,38]],[[30147,48571],[-277,-5],[-2,82],[-166,-9],[-138,-229],[132,1]],[[30740,49961],[263,-16]],[[31003,49945],[32,96],[27,75]],[[30726,50403],[13,-367],[1,-75]],[[32885,47680],[15,-153],[63,0]],[[32963,47527],[218,235]],[[33181,47762],[69,77]],[[33250,47839],[-18,0]],[[33232,47839],[-264,-2]],[[32968,47837],[-91,-2],[4,-77],[4,-78]],[[32864,48142],[55,1]],[[32919,48143],[89,1]],[[33008,48144],[-45,154],[-82,-16],[137,133]],[[32945,48452],[-251,-4],[3,-154]],[[32697,48294],[128,2]],[[32825,48296],[51,-20]],[[32876,48276],[-12,-134]],[[25646,30768],[98,-37]],[[25669,31575],[-8,-87]],[[25661,31488],[49,-198],[-84,-178]],[[25626,31112],[-7,-72],[-6,-55],[9,-69],[22,-18],[79,-96],[-95,10],[18,-44]],[[25363,30982],[87,1]],[[25450,30983],[-1,114],[-1,38]],[[25448,31135],[-84,-1]],[[25364,31134],[-1,-56]],[[25363,31078],[0,-96]],[[25203,30293],[122,77]],[[25325,30370],[-20,138],[65,102],[-1,61]],[[25369,30671],[-147,-61]],[[25222,30610],[-25,-58]],[[25197,30552],[6,-259]],[[20414,19591],[-6,154],[-180,-7],[-31,61]],[[20197,19799],[-50,-64],[-37,-63]],[[20110,19672],[186,-85],[118,4]],[[20052,19846],[92,-21]],[[20144,19825],[42,54]],[[20186,19879],[102,177],[-262,10]],[[20026,20066],[26,-220]],[[21134,21183],[215,-98]],[[21349,21085],[11,173],[88,87],[-155,-3],[-35,-72],[-141,-1]],[[21117,21269],[17,-86]],[[20335,22265],[73,-35]],[[20408,22230],[43,2]],[[20451,22232],[-2,76],[89,2]],[[20538,22310],[-9,114]],[[20529,22424],[-1,341]],[[20528,22765],[-87,-154],[-114,-4],[7,-303],[1,-39]],[[47876,58142],[1,0],[-3,-115]],[[47874,58027],[176,2]],[[48050,58029],[3,36]],[[48053,58065],[-1,79],[2,152]],[[48054,58296],[-90,-1]],[[47964,58295],[-86,0]],[[47878,58295],[-1,-96],[-1,-57]],[[48421,59670],[123,-1]],[[48544,59669],[45,152]],[[48589,59821],[-91,-1]],[[48498,59820],[-88,0]],[[48410,59820],[11,-150]],[[46576,60184],[66,106]],[[46642,60290],[-53,0]],[[46589,60290],[-102,1],[19,-147],[70,40]],[[47448,59944],[233,35],[112,64]],[[47793,60043],[1,86],[-85,0],[-259,0]],[[47450,60129],[-1,-153]],[[47449,59976],[-1,-32]],[[47454,60367],[-1,-51]],[[47453,60316],[0,0]],[[47453,60316],[174,31],[54,11],[3,1],[125,8],[77,-1]],[[47886,60366],[1,72]],[[47887,60438],[-44,1],[-39,0]],[[47804,60439],[-90,0]],[[47714,60439],[-84,0]],[[47630,60439],[30,-53],[-206,-11],[0,-8]],[[47278,60362],[79,-1]],[[47357,60361],[9,76]],[[47366,60437],[-67,1]],[[47299,60438],[-19,0]],[[47280,60438],[-2,-76]],[[49251,60589],[311,1],[-1,153]],[[49561,60743],[-182,-1]],[[49379,60742],[-72,3]],[[49307,60745],[-56,-156]],[[48068,60588],[88,-2],[-4,-156]],[[48152,60430],[175,5]],[[48327,60435],[179,4]],[[48506,60439],[2,147],[-176,0],[-3,153]],[[48329,60739],[2,152],[-350,-18]],[[47981,60873],[-88,5],[0,-136]],[[47893,60742],[-2,-79],[-2,-77],[3,0],[86,2],[90,0]],[[47326,61356],[144,-2],[1,77],[177,0],[1,74]],[[47649,61505],[-87,1],[-120,17]],[[47442,61523],[-116,-167]],[[49702,61508],[33,0],[89,66]],[[49824,61574],[1,76]],[[49825,61650],[-48,1]],[[49777,61651],[-34,77]],[[49743,61728],[-175,-1]],[[49568,61727],[-9,-220],[143,1]],[[46954,61974],[42,-230]],[[46996,61744],[127,-2],[3,77],[74,-1],[65,-1],[63,-1]],[[47328,61816],[34,152]],[[47362,61968],[-234,4],[-174,2]],[[50091,62257],[158,74]],[[50249,62331],[-77,78],[-98,1],[17,-153]],[[49158,63182],[177,-3],[176,-1],[1,154],[-352,3]],[[49160,63335],[-2,-153]],[[50347,62830],[47,0]],[[50394,62830],[260,15],[2,134]],[[50656,62979],[-108,40]],[[50548,63019],[-34,-3]],[[50514,63016],[-159,-74],[-1,-39]],[[50354,62903],[-7,-73]],[[50662,63131],[84,0]],[[50746,63131],[1,0],[3,114]],[[50750,63245],[-81,1]],[[50669,63246],[-6,-70],[-1,-45]],[[50837,63437],[130,-40],[-2,115],[-128,-75]],[[50363,63320],[124,0],[93,5],[86,-2]],[[50666,63323],[-2,113],[-265,3],[-40,39]],[[50359,63478],[4,-158]],[[47946,65126],[136,-23]],[[48082,65103],[16,71]],[[48098,65174],[14,156]],[[48112,65330],[-78,0],[0,-155],[-88,-49]],[[50319,64242],[172,-1],[-88,78],[0,77],[-132,0],[48,-154]],[[37028,42747],[73,147],[-146,13]],[[36955,42907],[73,-160]],[[37203,42777],[38,-37],[107,191]],[[37348,42931],[-124,47],[-14,-55]],[[37210,42923],[-7,-146]],[[37377,42971],[225,13]],[[37602,42984],[-105,93]],[[37497,43077],[-120,52],[-17,-48]],[[37360,43081],[17,-110]],[[36842,43281],[125,-67]],[[36967,43214],[83,52],[-106,126]],[[36944,43392],[-55,77],[-159,-22]],[[36730,43447],[112,-166]],[[48175,80226],[5,-44]],[[48180,80182],[155,115]],[[48335,80297],[-35,73]],[[48300,80370],[-161,27]],[[48139,80397],[-53,-92],[89,-79]],[[48038,80041],[53,26]],[[48091,80067],[63,75]],[[48154,80142],[-88,59]],[[48066,80201],[-60,226],[-92,48]],[[47914,80475],[-3,0]],[[47911,80475],[121,-327],[6,-107]],[[47987,80623],[89,112]],[[48076,80735],[-156,155]],[[47920,80890],[23,-154],[44,-113]],[[49112,81871],[188,-93],[204,-157]],[[49504,81621],[13,-17]],[[49517,81604],[81,160]],[[49598,81764],[74,134],[-98,127]],[[49574,82025],[-96,-57]],[[49478,81968],[-79,-77],[-78,49],[-96,61],[-50,-57],[-63,-73]],[[49191,82181],[-79,51]],[[49112,82232],[-72,-46],[-14,-66],[50,-8],[92,-15],[23,84]],[[48136,81897],[141,-120],[14,100]],[[48291,81877],[-59,73]],[[48232,81950],[-58,51],[-6,-2],[-29,-7]],[[48139,81992],[-3,-95]],[[47931,81781],[75,-156]],[[48006,81625],[173,-30],[3,80]],[[48182,81675],[-159,30],[-24,87],[-1,4],[-29,-7],[-24,-4],[-14,-4]],[[47864,81981],[52,7],[28,3],[18,2]],[[47962,81993],[75,0]],[[48037,81993],[73,81],[-12,17]],[[48098,82091],[-222,-33]],[[47876,82058],[-12,-77]],[[49090,82400],[143,101]],[[49233,82501],[-40,56],[-90,-118],[-27,-19]],[[49076,82420],[14,-20]],[[49461,83235],[-14,8]],[[49447,83243],[-66,34]],[[49381,83277],[0,-46],[-2,-60],[-6,-56],[26,2],[61,36],[1,82]],[[49373,82941],[0,-76]],[[49373,82865],[177,1]],[[49550,82866],[0,248]],[[49550,83114],[-46,1],[-73,-48],[-59,-49]],[[49372,83018],[1,-77]],[[50364,82239],[35,50],[178,-40],[286,24],[38,66],[-14,21]],[[50887,82360],[-133,36],[-64,17],[-18,-68],[-172,-6],[-53,28],[-25,68],[-145,85],[1,1],[0,57],[1,48]],[[50279,82626],[-404,-26]],[[49875,82600],[211,-164],[148,9],[130,-206]],[[50487,83090],[205,-19],[-13,140],[-85,35],[-203,5],[96,-161]],[[51010,83121],[93,101],[168,-32],[152,30]],[[51423,83220],[-6,24]],[[51417,83244],[-307,35]],[[51110,83279],[-29,-24],[-71,-134]],[[51399,82814],[6,1]],[[51405,82815],[2,1]],[[51407,82816],[42,145]],[[51449,82961],[-69,75]],[[51380,83036],[-200,32],[-89,-43]],[[51091,83025],[46,-83],[103,54],[159,-182]],[[51883,83060],[77,-6],[3,-1],[116,-69]],[[52079,82984],[62,31],[92,33]],[[52233,83048],[81,5],[69,5],[154,46],[125,84],[91,62]],[[52753,83250],[-7,10]],[[52746,83260],[-32,47]],[[52714,83307],[-98,29],[57,90]],[[52442,83577],[68,-168]],[[52510,83409],[64,-47]],[[52574,83362],[3,-1],[-145,-155],[-140,10],[-109,-9]],[[52183,83207],[-38,1],[-185,12],[-161,-6]],[[51799,83214],[142,-88],[-58,-66]],[[51723,82686],[62,-31],[348,42]],[[52133,82697],[-4,48]],[[52129,82745],[-74,137],[25,92],[-169,-85],[-188,-203]],[[53018,82211],[101,138],[-89,-75],[-146,56],[80,132]],[[52964,82462],[-102,62],[18,23],[335,113],[87,8]],[[53302,82668],[-4,99],[24,215]],[[53322,82982],[-8,12]],[[53314,82994],[-47,15],[-15,7]],[[53252,83016],[-106,-59]],[[53146,82957],[33,-208],[-272,-28],[-187,41],[-108,-22]],[[52612,82740],[154,-88],[-35,4]],[[52731,82656],[46,-97],[-192,41]],[[52585,82600],[-7,-1],[-56,-84]],[[52522,82515],[-196,-22]],[[52326,82493],[-33,24]],[[52293,82517],[95,-102],[-58,-93]],[[52330,82322],[-1,-40]],[[52329,82282],[258,-3],[119,-1]],[[52706,82278],[-25,51],[105,7],[89,-76],[143,-49]],[[52601,82743],[-32,122]],[[52569,82865],[-106,16],[-87,27]],[[52376,82908],[-4,1],[55,-102],[58,-61],[116,-3]],[[52843,82023],[184,22]],[[53027,82045],[1,77]],[[53028,82122],[-11,86]],[[53017,82208],[-148,22],[-128,42]],[[52741,82272],[-33,-152],[161,35],[-26,-132]],[[52013,82092],[72,129]],[[52085,82221],[-330,19]],[[51755,82240],[-102,-33],[80,-149],[-59,17]],[[51674,82075],[0,-42]],[[51674,82033],[140,-65],[347,-52]],[[52161,81916],[1,63],[-140,1],[-20,48],[-28,15],[39,49]],[[52185,81674],[125,-2],[60,161]],[[52370,81833],[-37,57]],[[52333,81890],[-49,24]],[[52284,81914],[-123,2]],[[52161,81916],[24,-242]],[[52867,81841],[-134,38]],[[52733,81879],[-196,-85]],[[52537,81794],[-34,-48]],[[52503,81746],[151,-77],[122,40],[-2,122],[95,-41],[-2,51]],[[26179,36535],[-23,81],[0,43]],[[26156,36659],[-327,13],[-4,-54],[354,-83]],[[26274,36947],[212,79]],[[26317,37159],[-127,-45]],[[26190,37114],[84,-167]],[[24761,36938],[147,-9],[20,71],[-169,6],[-4,139]],[[24579,37030],[0,-14],[1,-46],[65,-43],[116,11]],[[21945,37186],[180,-63]],[[22125,37123],[26,52]],[[21977,37338],[-32,-152]],[[26164,30460],[51,21]],[[26215,30481],[-149,121],[-127,141],[78,70],[216,-49]],[[26233,30764],[-33,73],[-94,56],[73,96]],[[26179,30989],[-56,0]],[[26123,30989],[-127,-121],[-81,-57]],[[25915,30811],[-35,-51]],[[25880,30760],[-9,-72]],[[25871,30688],[-4,-35]],[[25867,30653],[40,-39]],[[25907,30614],[77,-6],[-5,-59],[21,-1],[65,-4],[56,-34],[43,-50]],[[26133,31447],[2,-77]],[[26135,31370],[90,0]],[[26225,31370],[99,-1]],[[26324,31369],[-26,227],[-154,3]],[[26144,31599],[-11,-152]],[[19760,44610],[35,34],[81,96],[9,13],[-13,14],[12,46],[33,80],[-68,-5],[-8,-1],[4,70],[27,24],[11,-9],[14,-9],[73,-28],[47,10],[39,22],[76,43]],[[20283,45180],[-91,39],[22,90]],[[20214,45309],[20,28],[51,51]],[[20306,45461],[3,12],[25,79],[-55,-7],[-41,12],[4,11],[37,49],[59,-58],[30,60],[8,16]],[[20914,45580],[93,8]],[[21101,45762],[8,24]],[[21109,45786],[-55,83],[143,-20],[12,95],[28,75]],[[21237,46019],[-38,49]],[[21155,46045],[-14,-18],[-133,5],[-17,3],[110,45]],[[21038,46162],[-46,17],[48,41],[-64,94],[22,32]],[[20998,46346],[42,61],[54,66],[70,72],[62,8]],[[21226,46553],[-41,12],[59,59],[97,96],[45,46],[-75,0],[-32,-1]],[[20900,46677],[-54,-86],[-29,-1],[-76,43],[18,35]],[[20759,46668],[-105,-39],[-92,-112],[-7,-12],[-3,-6],[-88,-121],[93,-92]],[[20557,46286],[29,55],[-65,28],[43,68],[70,-6],[28,-67],[-54,-97],[-20,8],[-31,11]],[[20557,46286],[-30,-55],[-41,-78],[-18,-33],[-5,-10],[-100,47],[-96,18],[-29,-4]],[[20238,46171],[43,-72],[-56,-10],[-47,-25],[-19,9]],[[20038,45777],[90,6],[46,44],[24,-23],[77,-36],[7,0],[-19,-19],[-45,-45],[71,-59],[-27,-21],[-80,-18],[-43,19],[-108,47],[-36,-30],[-58,-62],[-60,-69],[-10,-12],[-43,-56],[-73,-86]],[[19751,45357],[4,-117],[-14,-15],[-29,-29]],[[19562,45028],[-104,-29],[-22,43],[50,48]],[[19152,45364],[66,-101],[36,-14],[-18,-54],[-61,-25],[-72,-29],[-67,-27]],[[19036,45114],[0,-27],[-11,-56],[-20,-23],[-17,0],[-14,-1],[-17,34],[1,6]],[[18958,45047],[-111,-21]],[[18847,45026],[6,-75],[-2,-37]],[[18851,44914],[34,1],[32,0],[76,5],[7,-98]],[[19233,44941],[141,74],[3,-3],[-1,0]],[[19020,44798],[40,-54],[-47,-20],[-42,-23],[-2,2]],[[18969,44703],[-34,-16],[-51,-12]],[[18884,44675],[-24,2]],[[18860,44677],[-24,-28],[-44,-11],[-39,-12],[-24,-9]],[[18729,44617],[105,-120]],[[18834,44497],[44,27],[13,-13],[22,-30],[12,-16],[13,-17],[25,-32],[-94,-30],[-23,-6]],[[18846,44380],[-19,-47],[-49,-114]],[[18778,44219],[-1,-17]],[[18777,44202],[22,-7],[36,-8],[27,-4],[35,-6],[24,-5],[-5,-18],[-12,-49],[-5,-18],[-8,-27],[-68,-46],[-7,-28]],[[18718,43834],[-43,8]],[[18675,43842],[-133,-91]],[[18542,43751],[240,27],[-11,-42],[-54,-69]],[[18178,43368],[-86,-66],[-28,-1]],[[18064,43301],[60,-56],[44,-59],[74,-81]],[[18490,42735],[119,44],[-93,-95]],[[18542,42560],[175,-89],[115,5],[52,-41],[94,-76]],[[18978,42359],[124,72],[29,9],[-33,38],[-69,78],[19,51]],[[19048,42607],[28,139]],[[19076,42746],[-62,12],[-49,-132],[-17,11],[-137,26],[-131,79],[120,27],[53,-12],[2,12],[15,67],[19,-5],[79,72],[-25,5],[60,92],[102,62]],[[19105,43062],[-16,31]],[[19089,43093],[-107,-75],[-121,-43],[-2,7]],[[18859,42982],[-87,-38],[-39,4]],[[18733,42948],[20,-36],[17,-15],[-21,-61],[-101,4],[-41,104],[-66,42],[-8,67],[37,11],[54,-54]],[[18624,43010],[20,55],[60,87],[76,92]],[[18780,43244],[-49,-6],[-33,-9],[0,33],[0,42],[8,9],[-19,38],[46,32],[12,12],[9,12],[33,31],[28,47],[41,-18],[45,-14],[54,15],[-32,24],[1,39],[69,34],[4,-25],[-39,-71],[41,-4]],[[18999,43465],[72,63]],[[19071,43528],[42,57],[2,24]],[[19422,44161],[-75,5],[-20,17],[2,18],[-17,29],[111,27],[23,8],[63,12],[91,11],[44,23],[-4,10],[126,-21],[27,-29]],[[19458,44483],[-28,61],[67,18],[1,-45],[126,-8],[-93,-79],[-13,1],[-21,62],[-39,-10]],[[20848,46126],[27,-21],[-48,-64],[-21,-34],[-37,37],[-12,8],[83,85],[8,-11]],[[19938,44673],[9,11]],[[19947,44684],[-157,-76]],[[19900,45728],[91,-39],[30,53]],[[19881,45803],[-54,8]],[[19904,45829],[0,0]],[[21994,47219],[-23,16]],[[21971,47235],[-50,36],[-45,29],[-14,107],[67,44],[44,36],[61,0],[-4,-89],[-4,-101]],[[22026,47297],[91,64]],[[22117,47361],[58,43],[-47,50],[-35,39],[39,17],[102,50],[88,-56]],[[22322,47504],[41,77],[18,77]],[[22381,47658],[-25,5],[-77,20],[-52,-86],[-72,6]],[[22113,47794],[-56,7],[-114,27],[-187,-110],[-50,-33],[-70,90]],[[21513,47655],[-173,-43],[-40,51],[1,1]],[[21301,47664],[-147,19],[31,-98],[-25,-24],[-32,25]],[[21128,47586],[-57,-147],[-9,-50]],[[21062,47389],[31,-24],[107,65],[56,-42],[-71,-55],[-23,-14],[65,-74],[-30,-32],[-23,39],[-54,4],[-76,19],[4,27]],[[21048,47302],[-13,-78],[-7,-46],[-34,-20],[-68,79],[-193,12],[36,-46]],[[20769,47203],[98,-34],[-45,-83],[-1,-104],[-93,-17]],[[20728,46965],[-9,-39]],[[20719,46926],[104,14],[34,0],[24,-8],[-65,-120],[73,73],[59,-91]],[[21111,46793],[-3,111],[42,13],[33,11],[40,13],[49,16],[53,-111],[32,-48],[59,-2]],[[21416,46796],[26,26],[16,17],[134,136],[104,96],[180,47],[88,-36],[30,137]],[[21802,47262],[30,-33],[31,-18],[47,-53],[-9,-10],[-148,58],[5,16],[8,29],[36,11]],[[21425,47132],[39,26],[145,69],[103,-31],[-86,-75],[-85,-75],[0,1],[-116,85]],[[22360,47912],[1,17],[-37,51]],[[22324,47980],[-109,-115],[-45,-90]],[[22170,47775],[12,-3],[69,9],[26,73],[83,9],[0,49]],[[22962,48805],[9,14],[53,76],[-8,59],[21,48],[14,34]],[[23051,49036],[28,65],[79,-21],[8,-3]],[[23166,49077],[208,-13],[-49,24]],[[23337,49202],[80,135],[20,11],[-6,122],[10,6],[24,-1],[63,15],[1,13],[-1,41],[41,31],[50,81],[122,53],[15,18]],[[23756,49727],[46,36],[-156,38],[17,47],[48,44]],[[23711,49892],[27,53],[105,-15],[-23,83],[-54,-22],[-83,10],[62,71]],[[23745,50072],[-3,2],[-131,31]],[[23372,50215],[36,87],[127,240],[103,64],[111,70],[211,136]],[[23960,50812],[-36,32]],[[23924,50844],[-168,-98],[11,121],[82,67]],[[23849,50934],[-118,2],[-79,-75],[-34,38],[1,27]],[[23619,50926],[-62,-50],[-143,-21],[-131,-38],[-121,17],[-108,-55],[-97,-65],[-26,1]],[[22931,50715],[-82,-49],[-48,-11],[-73,-1],[41,141],[33,4]],[[22802,50799],[68,59],[170,77],[85,46],[87,58]],[[23212,51039],[-48,56],[40,93]],[[23204,51188],[-149,-125],[-51,-45],[-24,-4],[23,130],[-122,-2]],[[22869,51061],[17,-64],[-90,-49],[-35,20],[-33,30]],[[22445,50822],[-4,-15],[-63,-63],[-131,-31],[-11,0],[-90,-1],[-92,-6],[-35,6],[-59,152]],[[21960,50864],[-102,-56],[-53,13],[-51,-15],[-67,52]],[[21687,50858],[-23,-103]],[[21664,50755],[22,-36],[112,3],[90,-115],[23,-40],[-76,-41],[32,-54],[-45,-14],[-90,-46],[-21,38],[-37,15],[-87,47]],[[21585,50346],[-156,-59],[21,-17],[134,63],[-4,-52],[-83,-57],[34,-35],[73,-72],[-108,-17],[-13,-1],[-10,60],[-13,19],[-48,-20],[-33,50],[-102,-121],[-20,0],[-44,57]],[[20825,49783],[-60,-8]],[[20765,49775],[109,-114],[2,-6]],[[20876,49655],[-36,-75],[-52,-45],[-46,94]],[[20742,49629],[-87,-56],[-23,-22]],[[20632,49551],[65,-94],[5,-74],[3,-18],[-88,-2],[2,-58],[1,-41],[-133,-12],[-13,15],[-96,-118],[70,1],[1,-39],[1,-51],[1,-30],[0,-43],[-68,-2],[-32,96]],[[20253,48962],[10,-103],[-38,-23],[36,-88],[-73,-43],[-35,-21],[-49,60]],[[20104,48744],[-65,13],[-36,80]],[[20003,48837],[-155,-112],[-48,-16]],[[19800,48709],[90,-33],[78,-175],[-95,116],[-145,18]],[[19633,48505],[44,27],[109,-34],[-39,-53],[14,-18],[-44,-26]],[[19682,48307],[21,-20]],[[19703,48287],[78,34],[85,-1],[25,-6],[8,-16]],[[19899,48298],[136,-12],[13,-14],[12,-26],[-107,-59]],[[19742,48183],[-79,-12],[-19,26],[-59,54]],[[19393,48468],[-14,-11],[-48,-40],[-83,-68],[-195,68],[-70,-84],[-85,-34]],[[19057,48097],[13,-12],[-33,-16],[-100,-70],[-103,53]],[[18798,48006],[207,-70],[-19,-52],[-158,-91],[-11,3],[-53,78]],[[18504,47773],[0,-34]],[[18504,47739],[145,-7],[1,-6],[-46,-19],[-58,-49],[33,-55],[-10,-52],[-19,-5],[-85,-28],[114,-57],[-28,-34],[17,-29],[-90,-36],[-70,63]],[[18316,47302],[35,-32],[26,-24],[30,-28],[1,-22],[-54,-52],[-90,33],[-70,34],[11,-96],[-5,-75],[-27,-12],[-6,-4],[-71,-23],[-65,8],[-16,-13]],[[17927,47030],[-17,-41],[30,-57],[-44,-14],[-38,-23],[-46,101],[-102,-14],[-29,-27]],[[17681,46955],[-41,-38],[-15,-17],[-19,-22],[-45,-52],[-81,-93],[-129,-146]],[[17351,46587],[106,-16],[25,-46],[51,-18],[35,-14],[31,-12],[29,-56],[-27,-55]],[[17726,46413],[6,45],[56,196]],[[17788,46654],[-25,8],[24,28],[112,127],[51,37],[54,63],[13,9],[22,15],[32,21],[21,14],[11,-17],[16,-26],[101,50],[58,-43],[88,4],[10,1],[0,-2],[83,54],[42,44],[14,14],[81,-7],[2,41],[10,-7],[35,-2],[23,-13]],[[18666,47067],[72,1]],[[18738,47068],[22,51],[58,4]],[[19069,47094],[127,104],[58,72]],[[19254,47270],[-2,24]],[[19252,47294],[-64,61],[-27,92],[-74,-1],[-54,62],[-7,3],[-106,-4],[-6,13],[22,27],[17,74],[-26,29],[23,15],[8,7]],[[19257,47897],[10,75],[-13,12],[73,56],[16,12],[41,34],[15,-39],[12,-18],[73,-32],[-35,51],[17,21],[52,-14],[114,10],[23,-41]],[[19655,48024],[156,31]],[[19811,48055],[9,17],[-40,45],[129,-7],[146,-8],[67,-4]],[[20301,48181],[14,45],[0,56],[0,26],[54,39],[22,28]],[[20334,48395],[45,42],[19,21],[69,74],[30,33],[48,52],[38,41]],[[20583,48658],[-21,126],[22,13],[137,12],[1,-27]],[[20722,48782],[82,52],[78,37],[52,16]],[[20934,48887],[26,6],[52,14]],[[21012,48907],[-66,22],[-4,14],[-14,36],[51,14],[-52,119],[57,-11],[63,11],[47,-21],[26,-67]],[[21209,48960],[151,-37],[73,-16],[167,-37],[87,-21]],[[21679,49098],[-86,-30],[-3,28]],[[21585,49285],[1,0],[86,2]],[[21672,49287],[101,4],[110,47],[56,53],[14,1],[110,56],[34,6],[106,47]],[[22203,49501],[86,50],[9,5]],[[22298,49556],[81,58],[91,94],[45,-2],[10,-66]],[[22525,49640],[55,156],[17,-3],[37,-8],[35,-12],[-17,-27],[-10,-15],[-43,-66],[-30,-47],[-44,22]],[[22525,49640],[-38,-69],[-20,-22]],[[22467,49549],[73,-37],[-30,-46],[91,-45],[-4,-38]],[[22597,49383],[53,7],[82,15]],[[22732,49405],[35,15],[72,60],[-72,40],[-5,64],[61,-29],[58,-28],[-29,-33],[41,-54],[-25,-29],[-56,-65],[-51,35]],[[22761,49381],[-59,-50],[-61,-38],[-11,-11],[-46,25]],[[22584,49307],[-23,-80],[-2,-54],[-19,-32],[-43,-197],[68,8],[14,160],[35,41],[41,-27],[45,-12],[-85,-157],[27,-38],[-12,-8],[90,-63],[-2,-7],[-31,-119],[-43,-95],[-41,10],[-67,14],[-63,6],[-29,15],[17,69],[15,84],[-2,24],[6,94],[-42,28]],[[22438,48971],[-13,-67],[-23,-79]],[[22402,48825],[21,-3],[-9,-63],[-28,9]],[[22386,48768],[-14,-50]],[[22372,48718],[-31,-153],[-24,-143],[2,-20]],[[22416,48349],[-52,-101],[-26,-51],[-33,-65],[-19,-40],[-11,-23],[49,-89]],[[22324,47980],[43,49],[48,86]],[[22415,48115],[86,195]],[[22629,48275],[-60,92],[86,122],[110,41],[31,62],[83,71],[10,42],[16,60],[57,40]],[[18737,47302],[-61,-75],[-56,-60],[-29,21],[16,16],[47,33],[-39,73],[122,-8]],[[20111,48581],[72,-78],[-123,38],[-3,1],[54,39]],[[17628,46658],[28,-15],[-33,-44],[-1,1],[-63,37],[-52,86],[25,-15],[69,-34],[27,-16]],[[20706,49327],[88,0],[0,-7],[2,-61],[0,-20],[-88,-2],[-72,69],[70,21]],[[22277,50224],[88,-41],[1,-49],[-89,9],[0,38],[0,43]],[[23238,49328],[-32,-41],[-29,31],[35,46],[26,-36]],[[23352,49731],[-13,-19],[-32,-52],[-24,-32],[-62,42],[-18,12],[-9,7],[-40,28],[-13,11],[25,30],[69,-49],[7,40],[15,47],[95,-65]],[[23158,50415],[-96,-2],[-37,-1],[-36,111],[113,51],[56,-86],[1,-28],[-1,-45]],[[21311,49857],[-90,0],[2,-76],[-89,-1],[-43,-1],[-66,-1],[29,77],[79,1],[88,2],[0,35],[33,8],[55,18],[2,-62]],[[22721,50515],[98,2],[-27,-99],[-39,10],[-27,8],[-10,3],[2,42],[3,34]],[[22721,50515],[-58,21],[-12,26],[6,29],[69,-24],[-5,-52]],[[21527,49786],[51,0],[5,-87],[0,-70],[-111,-1],[-69,-1],[-3,78],[0,79],[74,0],[53,2]],[[22019,49791],[-71,-1],[-32,72],[102,-2],[1,-69]],[[22019,49791],[93,1],[-1,-41],[3,-32],[-31,0],[-63,2],[0,31],[-1,39]],[[23589,50634],[-60,-41],[-96,-65],[-4,3],[-12,41],[-1,58],[-1,31],[0,63],[27,1],[72,74],[28,3]],[[23005,49676],[65,73],[15,18],[6,-6],[-24,-28],[-21,-43],[-11,-40]],[[23035,49650],[24,-17],[-30,-35],[-28,-33],[-58,36],[31,34],[31,41]],[[22768,50095],[57,143],[10,25]],[[22835,50263],[-64,17],[-63,-5],[10,30],[62,5],[72,10],[-17,-57]],[[22835,50263],[102,-2],[119,36],[45,-30],[-41,-45],[-34,-36],[-28,-31],[-41,-46],[-55,-64]],[[23044,49945],[185,128],[8,-3],[-27,-32],[-23,-61],[-113,-53],[-30,21]],[[22944,49870],[50,-49],[-13,-16],[-44,-85],[19,-13],[-34,-37],[-109,69],[4,10],[19,31],[37,42]],[[23084,45823],[-151,-4],[-1,82],[104,-1]],[[22995,46147],[16,65],[37,-5],[63,1]],[[23111,46208],[-78,119],[-61,-15],[-90,24],[-114,37]],[[22768,46373],[34,-80],[-57,-118],[-129,22],[-90,34],[-30,-68],[-8,-23],[-83,23]],[[22405,46163],[-11,-46],[-24,-79],[-41,-36],[-27,-60]],[[22607,46073],[12,9],[36,-7],[78,-31],[37,-34],[-50,-34],[-35,15]],[[22609,45808],[-49,-41]],[[22560,45767],[104,-32],[5,-74],[169,-67],[34,-16],[-2,80]],[[22501,45717],[-58,-63],[-104,63],[-88,-93],[-36,-49]],[[22215,45575],[-95,-145],[-63,-110]],[[22057,45320],[14,-10],[18,-21],[38,-24],[29,-10],[83,3]],[[22312,45359],[-69,33],[-3,1],[80,106],[34,42]],[[22504,45507],[0,117],[-3,93]],[[22154,45773],[15,-90],[51,-7],[33,125]],[[22253,45801],[-98,-17],[-1,-11]],[[22571,46047],[0,0]],[[24136,45826],[-3,-25],[-68,-121]],[[24065,45680],[135,-4],[13,0],[2,-53],[81,-50],[-1,48],[0,1],[0,139]],[[23694,45850],[117,-11]],[[23811,45839],[6,105],[196,5],[-94,48],[11,19],[58,-18],[35,-10],[30,76]],[[23998,46140],[-29,-21],[-114,1],[4,26],[1,66],[-2,69],[-118,-19],[-26,50]],[[23496,46309],[7,-214],[38,-3],[59,-6]],[[23600,46086],[-1,47],[97,35],[46,-34],[3,-12],[-86,-42]],[[23659,46080],[11,-11],[-7,-6],[-20,-36],[-93,-66]],[[23550,45961],[96,1],[66,-67],[-18,-45]],[[24343,45917],[-4,140],[-1,13]],[[24200,46067],[-47,-80]],[[23808,24351],[-69,-60],[-28,22],[-106,55],[20,35],[13,27],[-61,31],[-17,22],[39,42],[47,-22],[-7,-7],[88,-65]],[[23809,24450],[5,39],[44,30]],[[23824,24575],[-72,-8],[-14,16],[-61,24]],[[23677,24607],[-42,-41],[-15,-19],[-20,2],[-35,35]],[[23565,24584],[-27,-15]],[[23538,24569],[13,-10],[-2,-65],[-67,-10],[-38,-8],[-8,1]],[[23436,24477],[-84,20]],[[23352,24497],[30,-61],[-5,0],[7,-53]],[[23384,24383],[11,-17],[-100,-50],[-30,-15]],[[23217,23884],[27,-10]],[[23632,23956],[145,4]],[[23777,23960],[-13,78],[0,35],[87,53],[-44,54],[-2,36],[-4,22],[-8,8],[44,27],[70,-59],[26,24]],[[23517,24131],[-46,-42],[-48,31],[13,16],[26,30],[55,-35]],[[23845,24383],[142,-25],[29,128]],[[23943,24497],[-68,-88]],[[24088,24237],[90,-88],[57,150]],[[24235,24299],[-125,34]],[[24110,24333],[-22,-96]],[[26058,26582],[192,78],[118,-45]],[[26368,26615],[-36,112]],[[26334,26746],[89,-8]],[[26477,26729],[24,54]],[[26501,26783],[-21,23]],[[26369,26845],[-20,14]],[[26191,26864],[-16,-49]],[[26319,26937],[35,-8],[52,-17],[-1,67],[-34,0],[-52,38]],[[26319,27017],[0,-80]],[[24914,28259],[21,70],[-35,8],[-27,11],[-22,66]],[[24851,28414],[-60,0]],[[24791,28414],[0,-66],[34,-51],[1,-22],[88,-16]],[[21478,31897],[-39,71],[-131,-1],[59,-158],[111,88]],[[21857,29915],[127,35]],[[21984,29950],[11,60]],[[21850,29933],[7,-18]],[[20484,30478],[111,-20]],[[20484,30478],[0,0]],[[21849,29828],[83,35],[76,21]],[[22008,29884],[-14,38]],[[21994,29922],[-76,-21],[-87,-24]],[[21831,29877],[18,-49]],[[24623,42788],[177,134],[-3,108],[-177,-2]],[[24620,43028],[1,-26],[-8,-204],[-160,-2],[-2,40],[-176,32],[2,-74],[5,-75],[10,-6],[-13,-69],[127,49]],[[23832,43134],[-181,-26]],[[23651,43108],[2,-106],[3,-17],[-81,-94]],[[23575,42891],[-4,-25]],[[23571,42866],[73,-15],[-7,-19],[3,-56],[77,-57],[58,21],[77,112],[31,13],[27,0],[41,17],[30,85],[25,52],[265,4],[-90,73]],[[24274,42871],[-1,75],[1,-75]],[[24476,43483],[-132,-1],[3,-77],[5,-132],[3,-173],[63,80],[76,96],[-56,-1],[-3,131],[38,1]],[[24565,43366],[47,-31]],[[24788,43335],[-2,76],[-5,228]],[[24781,43639],[-122,-155],[-183,-1]],[[25363,43717],[144,37],[-3,117]],[[25504,43871],[-180,4]],[[23571,42866],[-59,29]],[[23512,42895],[-55,-100],[-49,-6],[-11,101]],[[23397,42890],[-52,-33]],[[22695,42715],[-46,-100],[8,-34],[-57,-1]],[[22600,42580],[4,-60],[5,-66],[-108,-3],[-97,9],[-93,-1],[-2,0],[226,69]],[[22415,42534],[-143,-1]],[[22272,42533],[0,-35],[1,-39],[-226,-46]],[[22047,42413],[34,-24],[-170,-93]],[[22381,42380],[23,39],[98,0],[3,-45],[104,-23]],[[22609,42351],[217,7]],[[22826,42358],[55,41],[44,67],[130,51],[39,58],[5,2],[101,33],[83,16],[9,-8],[19,-17]],[[23311,42601],[128,31],[61,-57],[0,-12]],[[23500,42563],[24,1],[118,-35]],[[23642,42529],[71,18]],[[23713,42547],[37,94],[10,64],[-137,-28],[-51,-12],[-40,35],[-1,48],[22,21],[9,46],[9,51]],[[22837,42506],[-31,48],[83,76],[41,12],[64,-95],[-157,-41]],[[23354,42547],[146,1]],[[23354,42547],[0,0]],[[20584,42477],[13,22],[54,1]],[[20651,42500],[-27,122],[111,-45]],[[21037,42695],[34,118],[11,82],[11,43]],[[21093,42938],[-98,1],[-15,-53],[-141,-10],[-65,-14],[-62,-40],[45,-28],[32,-63],[-47,-15],[-186,-36]],[[20493,42717],[-32,7]],[[20461,42724],[-45,9]],[[20416,42733],[36,-193],[-82,-75]],[[20780,43025],[18,28],[26,38],[32,27],[-23,67]],[[20752,43183],[-79,-88],[-25,-39]],[[21108,43036],[89,36],[51,-126],[42,-82],[12,-21],[-99,-153],[4,-40],[-2,-22]],[[21205,42628],[148,-38],[144,-49],[-1,30],[-8,146],[46,78],[22,26],[33,-19],[89,-72],[80,63],[33,26],[90,81],[110,53]],[[21991,42953],[-30,27],[38,32],[42,35],[-25,36],[118,59]],[[22134,43142],[-26,20],[67,41],[-1,60],[5,15],[-67,-1]],[[21772,43209],[-28,-21],[-23,-25],[-6,-8]],[[21715,43155],[-31,-35]],[[21684,43120],[-22,-27],[-38,-40],[-19,-7],[-90,-30],[-37,-12],[-4,-86],[-41,-13],[-47,20],[3,9],[2,36],[13,8],[5,43],[54,36],[36,41],[0,3],[66,114]],[[21565,43215],[32,61],[59,104],[-13,95],[-37,64]],[[21606,43539],[-21,-64],[-34,-63]],[[21455,43292],[-37,-46],[-2,-2]],[[21416,43244],[37,-87],[-5,-13],[-77,43],[2,3],[43,54]],[[21416,43244],[-172,93],[42,53]],[[21464,43442],[37,102],[-61,-12],[-44,56],[-128,-31],[-69,41],[-14,2],[174,65],[-153,27],[19,23],[-81,-9],[14,55],[43,89],[6,22],[-1,37]],[[21199,43897],[-84,-101],[-92,65],[-76,26]],[[20935,43848],[93,-70],[14,-21],[-36,-29]],[[21011,43681],[1,-5],[-91,-123],[-14,-63],[-55,-5],[89,-35],[-1,-37],[-77,1],[35,-83],[11,-71],[-1,-29],[-13,-78],[-3,-6],[160,-24],[55,-8],[8,0],[0,-37],[-7,-42]],[[21019,43340],[-32,49],[123,-30],[-91,-19]],[[20908,43723],[5,69]],[[20807,43785],[-14,-73]],[[21904,44756],[91,82],[23,111]],[[21983,45185],[50,88]],[[22033,45273],[-226,-64],[29,-45],[-21,-21]],[[21815,45143],[59,-64],[-152,-32]],[[22218,45211],[-14,-10],[-111,-59]],[[22172,44892],[26,26],[176,-10],[0,140]],[[21660,44444],[67,73],[-89,46]],[[21638,44563],[-35,-55]],[[21603,44508],[-21,-120]],[[20607,43734],[87,59],[-149,-6],[1,46],[-2,8]],[[20544,43841],[-95,-76]],[[20993,44085],[31,47],[108,61]],[[21132,44193],[-110,-22],[-90,-6],[-8,-19]],[[20924,44146],[-31,-91]],[[20893,44055],[96,23]],[[20950,43893],[41,44]],[[20963,44035],[-52,-47],[-42,18]],[[20531,44574],[-129,-131]],[[20402,44443],[15,-39]],[[23206,42841],[0,0]],[[22631,44971],[-10,-4],[12,-189],[27,0],[122,7]],[[22374,45048],[192,86]],[[22573,45163],[-98,143]],[[22266,43177],[114,103]],[[22334,43288],[-33,-12],[-123,-108]],[[22378,43359],[15,125]],[[22393,43484],[-39,-133]],[[19244,42413],[-44,-50],[-82,-97],[-32,-34]],[[19086,42232],[70,-41],[59,54],[40,24],[14,17],[51,73],[-58,42],[-18,12]],[[19160,41498],[-25,-78],[-88,-87]],[[19167,41272],[70,49],[14,22],[47,-3],[63,2],[-5,-28],[-5,-59],[-6,-88],[91,47],[113,18],[54,-26],[-17,27],[66,3],[100,94]],[[19752,41330],[-26,14],[-39,41],[-32,70],[69,7],[75,-92],[-47,-40]],[[19752,41330],[89,-122]],[[19841,41208],[42,187],[50,11]],[[19843,41636],[-107,-9],[0,-8],[-88,-46],[-27,12],[16,53],[-24,35],[102,36],[4,0],[164,62]],[[19850,41779],[-143,-10],[-9,-40],[-71,33],[-7,14],[23,84],[50,2],[57,-33],[119,98]],[[19792,42001],[-177,57]],[[19556,41965],[-1,-41],[-10,-53],[-27,-49],[-7,-11],[-54,-29],[-95,-79]],[[19362,41703],[30,-18],[9,-5],[101,29],[22,-65],[-146,-66],[-70,1],[-57,-4],[60,-58],[1,-20],[-15,-1],[-137,2]],[[19278,42474],[15,-7]],[[19293,42467],[162,101],[-92,17],[30,19]],[[19393,42604],[-48,43],[-7,-5],[-6,-5],[-127,-78],[-46,56],[-33,-106],[-1,-5],[40,-1],[113,-29]],[[18207,43095],[-65,-31],[-111,0]],[[18482,43551],[-261,-1]],[[18221,43550],[-1,-42]],[[2520,2521],[54,2],[-47,68]],[[41302,32828],[38,-19],[69,-36],[-31,74]],[[41353,32906],[-26,144]],[[41236,32997],[63,-99],[-36,-12]],[[41022,33106],[29,-13],[84,21]],[[41135,33114],[-36,28],[-77,-36]],[[40937,33142],[-66,48]],[[40871,33190],[-19,2],[-41,-31],[69,-32]],[[30585,35297],[65,-6]],[[30650,35291],[52,168]],[[30702,35459],[-84,17],[-1,-4]],[[31320,35525],[1,-106],[40,6],[76,-10]],[[31455,35620],[-69,-98],[-62,5],[-4,-2]],[[31086,35604],[17,25]],[[31103,35629],[-73,74],[-84,-100]],[[42725,56116],[83,86],[51,-1],[48,-37],[-64,-63],[-35,-34]],[[42808,56067],[-12,-7],[-26,-64],[-50,0]],[[42720,55996],[-77,-75],[-77,-76],[-147,1],[-1,-77],[-87,1],[-87,1],[-1,-1],[1,77]],[[42068,55848],[0,-77],[-1,-77],[88,0],[88,0],[-1,-77],[-176,1],[-175,1]],[[41891,55619],[-1,-155]],[[41890,55464],[44,0],[132,0],[112,0]],[[42239,55386],[1,-37],[-40,-71],[-102,109]],[[42098,55387],[-94,-72]],[[42004,55315],[-85,-62],[-195,-142]],[[42010,54874],[69,209],[162,-2],[59,0]],[[42300,55081],[29,0],[58,-1],[30,77],[87,0],[0,76],[-87,1],[0,76]],[[42449,55387],[36,25],[108,75],[85,60],[1,-9],[87,-1],[0,74],[60,78],[3,0],[-2,-153],[27,0],[88,-1],[23,0]],[[42986,55687],[1,39],[0,39],[-106,0],[-1,0],[55,76],[52,-9],[44,9],[43,0],[-43,-76],[-34,-78]],[[42996,55535],[35,0],[0,-77],[-88,1],[0,-76],[0,-152]],[[42943,55231],[88,-1],[0,-76],[1,-76]],[[43032,55078],[88,1],[63,0],[25,0],[87,-3],[-25,-76],[0,-76],[-88,1],[-86,0],[-1,76],[-88,1]],[[43007,55002],[0,-77],[-2,-26]],[[43005,54899],[11,-64],[32,-62],[5,-64],[1,-10]],[[43054,54699],[12,-123],[115,-22]],[[43181,54554],[-47,105],[58,51],[34,-16],[43,-76],[-88,-76]],[[43181,54542],[-1,-73],[181,-5]],[[43361,54464],[-2,153],[172,-4]],[[43531,54613],[1,154],[182,2],[264,0],[89,0],[87,0]],[[44154,54769],[0,153],[-26,0]],[[44128,54922],[-62,-119]],[[44066,54803],[1,-6],[-88,-1],[1,1],[-94,-16],[-95,141]],[[43791,54922],[-77,0],[1,77],[-88,-1],[-93,1],[1,76]],[[43535,55075],[-64,0],[1,77]],[[43500,55381],[15,0],[77,1],[40,-77],[-7,0],[-67,0]],[[43559,55263],[87,34],[47,-42],[0,-27],[-152,0]],[[43541,55228],[-4,-76],[-2,-77]],[[43535,55075],[155,0],[2,77],[45,76],[87,-10],[89,0],[-1,-28]],[[43999,55148],[88,3]],[[44087,55151],[1,76]],[[44088,55227],[-88,1],[0,75],[88,1],[0,-77]],[[44088,55227],[89,1],[-2,-77],[-88,0]],[[44087,55151],[-21,-76],[24,1]],[[44090,55076],[84,0],[71,-1]],[[44245,55075],[18,153],[88,-1],[0,154],[1,76]],[[44352,55457],[0,146]],[[44352,55603],[-176,-21]],[[44176,55582],[1,-125],[-178,0],[0,77],[0,14]],[[43999,55548],[0,43],[0,54],[-83,42],[-16,0]],[[43900,55687],[9,-112],[-1,-41],[-81,8]],[[43827,55542],[0,-69],[-92,-15],[1,34],[0,37]],[[43736,55529],[-88,5],[-44,-1],[-46,0],[-42,-1]],[[43472,55687],[44,77],[0,74],[132,0]],[[43648,55838],[0,42],[0,39],[89,74],[88,1]],[[43825,55994],[2,75],[0,28],[61,-22],[114,-16]],[[43828,56196],[-1,-49],[-91,0],[-88,0],[0,38],[0,38],[-88,0],[0,72],[2,229],[-55,4]],[[43507,56528],[-34,1]],[[43383,56377],[0,-77],[-55,0],[-34,0],[-87,1],[-44,-1]],[[43163,56300],[-11,-76],[-96,-63],[5,-4],[10,-7],[1,-80],[-45,0],[-48,0],[-3,-74],[-32,-1],[-14,0],[-47,72],[0,3],[66,135],[22,21],[-87,68],[13,7],[37,7],[8,69]],[[42942,56377],[-44,1],[-44,0],[-15,-77],[-1,0],[-35,-76],[-78,0]],[[42725,56225],[0,-22],[0,-87]],[[43031,55918],[1,77],[50,0],[38,0],[-1,-77],[-88,0]],[[43362,55994],[22,0],[22,0],[22,0],[0,-156],[-45,1],[-21,155]],[[43328,56224],[55,0],[44,-1],[1,-76],[-45,0],[-55,1],[0,76]],[[42793,55842],[18,0],[0,-66],[-45,0],[0,-48],[-87,1],[0,9],[0,29],[0,20],[88,-2],[-88,39],[0,5],[0,15],[22,0],[66,-1],[26,-1]],[[43186,55305],[66,0],[7,-77],[-51,1],[0,-76],[-88,1],[0,75],[0,77],[66,-1]],[[42636,56226],[89,-1]],[[42725,56225],[-3,77],[-44,0]],[[42678,56302],[-43,0]],[[42635,56302],[1,-76]],[[42854,56455],[88,-1]],[[43383,56453],[-64,0],[-106,1],[117,-77],[53,0]],[[43883,55993],[120,0]],[[44002,56025],[-119,-32]],[[43966,57215],[150,-1]],[[44116,57214],[-94,55]],[[44022,57269],[-56,-54]],[[40263,56238],[49,-1],[86,0],[-87,74]],[[42592,55004],[76,-6]],[[42831,55082],[25,-4],[19,0],[0,-75],[132,-1]],[[43007,55002],[25,76]],[[43032,55078],[-88,2],[0,75],[-1,76]],[[42943,55231],[-87,0],[-88,1],[-88,1],[0,-76],[-88,0],[0,-76],[0,-77]],[[42973,54928],[-91,-2]],[[42973,54928],[0,0]],[[42592,55386],[88,-1],[-1,76],[-87,-75]],[[43891,54922],[87,0],[88,0]],[[44066,54922],[0,76],[-174,1],[-1,-77]],[[43912,55150],[-90,0],[2,-73],[87,-2]],[[45143,56602],[-87,-57],[-1,-58],[1,-38],[-56,0]],[[45229,56296],[131,-1],[-63,119],[21,39]],[[45318,56453],[-70,24],[-95,10],[0,65],[-10,50]],[[45272,56602],[-85,0]],[[45187,56602],[71,-77],[59,0]],[[45317,56525],[-45,77]],[[47694,57380],[-141,-1],[-34,-124]],[[47519,57255],[25,16],[149,-43]],[[46463,57639],[-87,0],[-43,0],[-21,38],[-110,1],[-2,-112]],[[46288,57525],[88,0],[-1,-76]],[[46375,57449],[88,0],[0,76],[0,38],[0,38],[0,38]],[[46244,57448],[44,0]],[[46288,57448],[0,77]],[[46202,57734],[0,-37],[87,57]],[[45232,57444],[88,0],[87,1],[88,7]],[[45495,57452],[53,1],[34,71]],[[45582,57524],[-50,-1],[-37,0],[-87,-1],[-88,-1],[-88,-48],[0,-29]],[[44707,57674],[147,0],[-53,92],[-25,61],[19,77],[-2,119]],[[44707,57769],[0,-44],[-88,11],[0,90],[88,1],[0,-58]],[[44706,58019],[-87,0],[-88,-38],[0,-146]],[[45295,58553],[-103,0],[-21,-131],[20,18],[113,106]],[[39883,61765],[-1,-76],[176,6],[-175,70]],[[39883,61765],[1,77],[-192,1],[191,-78]],[[37324,62462],[-36,-1]],[[37288,62461],[-15,-77]],[[37273,62384],[51,-14]],[[37324,62370],[82,0],[9,-63]],[[39154,57544],[-184,4]],[[38970,57548],[0,-118],[183,1],[1,113]],[[37126,55994],[104,-46],[-61,-58],[-15,-13]],[[37154,55877],[92,10],[44,117]],[[37290,56004],[-164,-1]],[[37126,56003],[0,-9]],[[36386,54709],[43,-15]],[[36398,54814],[-33,-34]],[[36365,54780],[21,-71]],[[36464,54873],[90,48],[-17,150]],[[36537,55071],[-89,-205]],[[22074,24241],[-95,28],[95,-28]],[[2546,12814],[-73,-3],[26,131]],[[2499,12942],[-50,65]],[[2407,13012],[-70,-84]],[[2203,12850],[66,-49],[30,1],[50,3],[26,1],[-25,-61],[-27,-57]],[[2465,12598],[41,-5],[67,-8],[-16,63],[-42,5],[-41,5],[6,38],[-3,54],[72,4]],[[2632,12758],[16,-124],[34,14]],[[2710,12665],[0,0]],[[3284,11717],[-24,75],[-3,7],[-6,73],[-7,25],[-69,-20]],[[3146,11791],[118,-74]],[[3036,10980],[88,4]],[[3124,10984],[-8,148]],[[3116,11132],[-90,1],[10,-153]],[[2426,14802],[75,-64]],[[2501,14738],[71,52]],[[2572,14790],[-138,26]],[[2434,14816],[-8,-14]],[[2909,15858],[-26,10],[-77,-152]],[[86602,93238],[137,-6],[0,82]],[[86739,93314],[-133,1],[-4,-77]],[[86644,94867],[23,-83],[22,-84],[29,-2],[70,81]],[[86374,94793],[41,-80]],[[86415,94713],[106,28],[-12,-150]],[[86509,94591],[87,-31]],[[86596,94560],[13,168],[1,11],[16,46],[-58,85]],[[86527,94847],[-4,-58],[-149,4]],[[88316,96402],[78,35],[-12,20],[-86,43]],[[88296,96500],[-2,-39],[25,-1],[-3,-58]],[[86325,96112],[-21,67]],[[86350,96560],[4,75],[149,-5]],[[86575,96785],[34,76]],[[86609,96861],[36,81]],[[86814,97311],[-54,78]],[[86814,97311],[0,0]],[[87185,98066],[-25,3]],[[86903,97933],[69,-80],[86,-10]],[[87058,97843],[120,-5],[36,-1],[190,-9],[90,-3],[14,202]],[[87508,98027],[-178,21],[-80,10]],[[87250,98058],[-6,-48],[-1,-17],[-119,-12],[61,85]],[[56607,49478],[0,0]],[[56517,49419],[90,59]],[[56607,49478],[-88,-17]],[[50700,69980],[1,39],[5,54]],[[50706,70073],[-87,21],[-43,1],[-45,0],[-70,1],[1,-27],[-20,4],[-1,-15],[-1,-53],[-196,-27]],[[50616,69904],[1,47],[0,30],[83,-1]],[[50611,69765],[92,71]],[[50703,69836],[-88,27]],[[50503,70216],[-85,-51]],[[50418,70165],[159,-50],[-74,101]],[[50087,69983],[1,76]],[[50088,70059],[3,115]],[[50091,70174],[-88,1],[-89,0],[-1,-115],[-1,-76]],[[50644,70204],[83,81],[59,-1]],[[50974,70087],[88,-12]],[[51062,70075],[1,38],[1,45],[1,30],[87,-24],[-2,-118]],[[51150,70046],[44,4],[44,-1],[122,17],[73,28],[90,53]],[[51523,70147],[159,-5],[0,66]],[[51682,70208],[-156,4]],[[51372,70218],[-43,1],[-176,21],[2,81],[0,15],[5,0],[170,-56],[1,23],[1,53],[55,-1]],[[51525,70353],[159,-4],[1,77]],[[51685,70426],[-110,2],[-66,78],[5,67],[-92,-23],[-89,-22],[1,134],[-88,1],[-1,-115],[-88,2],[-122,1],[-17,39],[-36,95],[87,-1]],[[51069,70684],[-87,40],[0,96]],[[50895,70821],[-1,-85],[0,-51],[-88,1]],[[50720,70822],[88,4]],[[50809,70975],[1,76],[1,77],[0,19],[88,18]],[[50899,71165],[-87,39],[1,77],[176,-2]],[[50989,71279],[1,153]],[[50990,71432],[-175,2]],[[50815,71434],[-88,0],[-149,1],[21,81],[18,72]],[[50617,71588],[-158,1]],[[50459,71589],[-1,-153],[-88,1],[-89,0]],[[50281,71437],[-1,-152],[-89,0],[-88,0],[-88,0],[-88,1]],[[49927,71286],[-1,-77]],[[50102,71179],[120,29],[57,0],[-1,-76]],[[50278,71132],[88,1],[1,75],[89,76],[82,0],[-10,-39],[-29,-115],[-20,-76],[-114,0],[-88,-2]],[[50277,71052],[-123,0],[-54,0]],[[49925,71132],[-177,0],[3,155]],[[49751,71287],[-182,0]],[[49569,71287],[-1,-154]],[[49568,71133],[93,0],[-1,-75],[-92,3]],[[49568,71061],[0,-79]],[[49568,70982],[92,-1],[93,0],[-15,-47],[44,-35],[93,36],[1,-108]],[[50097,70802],[1,76],[85,-18],[50,-20],[-4,-64],[0,-28],[-1,-77],[-80,0],[-44,0]],[[50014,70672],[-95,0]],[[49923,70572],[17,1],[154,35],[134,41],[175,-124],[14,-4]],[[50417,70521],[25,149],[0,17],[40,0],[55,0],[44,0],[67,-1],[-1,-68],[-65,11],[-39,20],[0,-56],[-56,1],[0,-20],[-38,-56]],[[50449,70518],[46,-1],[47,0],[39,0],[66,0],[69,0]],[[50805,70516],[35,0],[-12,72],[0,9],[65,-4],[1,-78],[14,0],[26,-81],[7,-21],[7,-22],[-102,-33],[-43,1]],[[50803,70286],[-1,-55],[88,11],[0,-33],[-2,-41],[88,-2],[-1,-34],[-1,-45]],[[51156,70485],[-160,-36],[-38,66],[90,-2],[108,-2],[0,-26]],[[51686,70464],[89,-1],[0,115],[-88,1],[-1,-115]],[[50587,70282],[-25,28],[25,76]],[[50587,70386],[-81,0],[1,50]],[[50507,70436],[-79,-59],[97,-143]],[[50984,70973],[1,38],[-88,-37]],[[46346,72685],[54,149]],[[46400,72834],[-46,0],[-50,1]],[[46304,72835],[42,-150]],[[46053,72981],[176,8]],[[46159,73136],[-96,-32],[-10,-123]],[[49384,70064],[176,-1],[-1,-76],[61,-78],[103,149],[13,7],[1,72],[1,76],[1,77]],[[49560,70368],[-86,0],[-87,1]],[[49387,70369],[-2,-169],[-1,-136]],[[49686,70656],[51,-134]],[[49737,70522],[65,-1],[116,-1],[2,26],[3,26]],[[48233,69153],[0,76],[-176,1]],[[48057,69230],[-88,0],[-89,0]],[[47880,69230],[1,-153]],[[47881,69077],[88,0],[78,0]],[[48047,69077],[10,10]],[[48057,69087],[0,66],[88,0],[88,0]],[[47345,68086],[110,0],[99,-1]],[[47554,68085],[-35,153],[-64,77],[-22,0],[-176,1],[0,-76]],[[47257,68240],[88,-1],[0,-77],[0,-76]],[[47779,66094],[3,152],[-172,2]],[[47610,66248],[-4,-152]],[[48554,67323],[35,140]],[[48589,67463],[-90,1]],[[48499,67464],[55,-141]],[[48519,67156],[67,1]],[[48586,67157],[0,115],[-32,51]],[[48554,67323],[-12,-51],[-23,-116]],[[48575,66087],[1,38],[0,39],[0,77],[1,76],[0,38],[2,39]],[[48579,66394],[-176,-31],[-52,32],[35,153]],[[48386,66548],[-155,1],[-2,-153],[-1,-74],[-1,-78],[-4,-154]],[[63787,67413],[88,-1],[3,75],[-88,2]],[[63968,67716],[-2,78]],[[63968,67640],[0,-14]],[[63968,67626],[174,-51],[3,62]],[[64145,67637],[1,37]],[[64146,67674],[-178,4]],[[59181,75719],[83,-3]],[[59230,75871],[-44,1]],[[55897,72929],[45,14]],[[55942,72943],[46,86]],[[55988,73029],[-90,2]],[[55898,73031],[-1,-102]],[[52517,72255],[1,77]],[[52518,72332],[-89,1]],[[52429,72333],[88,-78]],[[52515,72178],[44,0],[45,-1]],[[52516,72217],[-1,-39]],[[51746,71730],[-46,0]],[[51700,71730],[-44,1],[-42,-9],[41,-68],[-14,-77]],[[51641,71577],[57,0],[91,-2]],[[51789,71575],[1,35],[0,42],[-44,78]],[[42175,61180],[-8,35]],[[42167,61215],[-334,0]],[[41833,61215],[-1,-82],[249,-7],[94,54]],[[42919,60601],[131,0],[1,-31],[93,30],[19,0],[64,0]],[[43227,60600],[1,71]],[[43051,60831],[-88,16],[-89,42],[-89,42],[2,-169],[0,-17],[-4,-143],[91,0],[45,-1]],[[44593,60322],[1,121]],[[44594,60443],[-133,-72],[0,114],[0,114]],[[44338,60598],[-18,-89],[18,-3],[15,-3],[19,-132],[-45,1],[-3,0],[-42,28],[0,5],[-64,-114],[-22,-155],[87,58],[-1,-57],[0,-155]],[[44282,59982],[88,-1]],[[44370,59981],[0,53],[1,101],[0,1],[88,-1],[0,78],[1,76],[1,61],[132,-28]],[[44470,60040],[151,95]],[[44621,60135],[-117,0],[-34,-95]],[[44110,60598],[72,1],[3,-67]],[[44283,60515],[1,83],[2,83]],[[45022,62750],[0,67],[1,86]],[[45023,62903],[-87,1],[-2,-154],[88,0]],[[45182,62865],[50,38],[-55,38],[5,-76]],[[45110,62788],[66,0]],[[45176,62788],[6,77]],[[45182,62865],[-71,0],[-1,-48],[0,-29]],[[45114,63212],[351,-3]],[[45467,63362],[-352,1],[-1,-151]],[[39459,63830],[171,18],[78,-31]],[[39708,63817],[12,7]],[[39551,63902],[-92,-72]],[[39804,64238],[-174,41],[3,-143],[104,1]],[[34846,17272],[64,33]],[[34910,17305],[-21,60]],[[34889,17365],[-31,-9]],[[34858,17356],[-20,-5],[-95,-27]],[[34743,17324],[103,-52]],[[36016,17403],[306,4],[45,144],[-309,29]],[[36058,17580],[-43,-2]],[[36015,17578],[1,-175]],[[58381,82198],[38,39],[67,60],[22,14],[44,6],[32,-80]],[[58869,82479],[1,109],[24,12]],[[58868,82662],[-69,0],[-18,33],[-23,45],[-4,19],[20,43],[102,63],[3,0],[0,5]],[[58879,82870],[-69,228]],[[58810,83098],[9,92]],[[58814,83226],[-7,27]],[[58807,83253],[-24,25],[-8,14],[57,38],[69,27],[67,1],[8,-1],[-14,-59]],[[58962,83298],[121,0],[56,67],[23,8],[48,14],[50,-50],[2,-3]],[[59391,83513],[49,-2],[53,-1],[-5,-45],[80,-18],[-1,-62],[-87,2],[-20,-105]],[[59510,83239],[51,-22],[0,-8],[-2,-55],[-66,40]],[[59353,82880],[22,-105],[21,-42],[57,-8]],[[59695,82708],[-20,30],[17,27],[55,23],[-1,21],[81,-3]],[[59827,82806],[1,48],[3,77],[17,0],[56,-1],[46,-79],[67,44],[99,66],[20,9]],[[60136,82970],[38,134],[85,-3]],[[60259,83101],[-11,122],[-59,-59],[-104,7],[1,27],[0,70],[82,-3],[36,-1],[48,-20],[88,-7],[0,-17],[56,-2],[1,15],[0,10],[78,93],[10,10],[55,-2]],[[60540,83344],[-5,68],[50,-1],[185,5],[0,-5],[-3,-57],[-1,-23]],[[60766,83331],[64,-2],[47,12],[-2,-54],[-1,-28],[-79,2],[-32,1]],[[60763,83262],[-1,-23],[-1,-26],[-70,-73],[-1,-50],[-2,-52]],[[60865,83165],[87,-9],[5,-2],[152,-69]],[[61227,83190],[54,48],[49,33],[89,-2],[66,-1],[46,-1],[40,-1]],[[61571,83266],[84,-15],[4,-1],[50,-23],[45,1]],[[61645,83327],[-4,-3],[-117,23],[-28,1],[-101,42],[-131,60],[-81,51],[-9,25],[-57,23],[-66,4],[-3,34],[-3,32],[-27,59],[-7,15],[162,93],[-66,83],[-23,110],[58,-16],[24,-6],[42,-11],[64,-16],[1,-114],[43,-78],[85,-78],[45,-2],[99,-2],[44,-2],[78,-4]],[[61811,83629],[0,-58]],[[61811,83571],[78,-1],[44,-40],[0,-86],[-57,-24],[-78,-21]],[[61798,83399],[-1,-30]],[[62183,83217],[96,2]],[[62279,83219],[2,76],[89,-2],[-1,-38],[-1,-38]],[[62368,83217],[133,-3],[44,-1],[87,-2]],[[62632,83211],[1,19],[88,-21]],[[62721,83209],[-12,115],[95,-2]],[[62770,83397],[-134,6],[-14,1]],[[62640,83522],[0,37],[88,-2],[2,76],[0,2],[164,-4],[2,5],[23,70],[0,65]],[[62919,83771],[-8,16],[-176,38],[-153,65],[-87,3],[-59,59]],[[62436,83952],[-22,13],[38,51],[-62,-7]],[[62390,84009],[-90,0],[-90,1],[1,31],[1,46],[0,39],[1,37],[-89,2],[0,38],[49,76],[22,56],[-186,-21],[-2,4],[-35,124],[49,21],[72,30],[73,-15],[61,-23]],[[62227,84455],[5,-4],[35,-31]],[[62267,84420],[75,60],[48,22],[41,-17],[12,12],[69,-49]],[[62726,84471],[31,-30],[16,26]],[[62417,84731],[-13,4],[-83,10],[-67,-9]],[[62254,84736],[-109,-16],[-35,-18],[-75,-16],[-77,-32],[-22,-7],[-45,-9],[-52,35],[-11,-1]],[[61828,84672],[-26,-4],[-58,-9],[-166,-91],[-37,-65],[-51,-38],[-65,-47],[-33,-24]],[[61171,84435],[-40,41]],[[61131,84476],[-282,-25]],[[60849,84451],[279,-96],[-71,-49],[30,-83],[92,63],[111,-34],[37,-41],[-1,-1],[-50,-34],[-38,-49],[100,-21],[49,-28],[-23,-16],[-80,13],[-45,51],[-207,34],[-7,33],[-24,69],[-79,75],[-97,45],[-101,47]],[[60724,84429],[-3,-27],[-81,-69],[-37,33]],[[60350,84373],[25,102]],[[60375,84475],[-81,-87],[-32,13],[-91,26],[-118,161],[67,13],[104,-35]],[[60224,84566],[-18,27],[-28,61],[4,1],[87,-64]],[[60269,84591],[87,-4],[51,-6],[155,7]],[[60562,84588],[-48,28],[-13,114],[49,29],[12,49],[134,73],[1,20],[47,-1],[72,18]],[[61023,85172],[-24,33],[-47,64],[19,10],[54,30],[42,19],[11,4],[47,14],[65,23],[3,-21],[264,-4]],[[62113,85409],[-125,4],[2,75],[2,77]],[[61994,85641],[0,10],[1,43],[-159,6],[-16,-28],[-55,12],[-97,52],[9,-44],[-122,1],[-2,-43],[-88,1],[-87,1]],[[61380,85768],[94,-2],[-50,115],[41,-2],[27,-5],[94,-58]],[[61612,85908],[22,45],[37,34],[-26,40],[24,3],[68,-4],[44,6],[45,-7],[38,-68],[-12,-42],[15,-42],[195,-44]],[[62062,85829],[-72,72],[83,39],[0,4],[17,74],[88,-2]],[[62260,85946],[7,106],[57,36],[40,0],[-3,-91],[-3,-66],[-52,2],[-46,12]],[[62240,85842],[64,46],[21,-108],[-3,-75]],[[62636,85710],[105,55],[2,52],[3,43],[134,-8],[-2,-25],[0,-14],[132,-3],[42,-1],[94,111],[-89,2],[-21,1],[-132,4],[5,86],[3,86],[100,-3]],[[63175,86008],[100,-40],[-7,-52],[66,-153]],[[63334,85763],[126,-9]],[[63460,85754],[-55,77],[111,16]],[[63516,85847],[1,39]],[[63517,85886],[-26,4],[-30,74],[6,125],[59,-24],[-3,-55],[107,-27],[17,55],[1,2],[40,18]],[[63277,86253],[-1,-61],[-72,-8],[-70,-11],[-143,-18],[-76,-5],[-111,50]],[[62804,86200],[-23,-56],[-34,1],[-55,-4],[-13,4],[-133,37],[-129,117],[-1,47],[45,20],[44,12],[293,-55]],[[62798,86323],[35,22],[174,-72]],[[63007,86273],[15,28],[16,21],[-65,50],[-98,44],[-42,-6],[-98,12],[-18,60],[103,10],[9,0],[39,125],[60,-2]],[[62969,86710],[2,12],[1,26],[1,24],[2,61],[2,0],[64,1]],[[63184,86867],[1,39],[0,14],[1,19],[71,6],[27,-70]],[[63342,86927],[-22,69],[-60,-15],[-17,1],[-24,106],[-92,-71],[-23,-7],[0,12],[1,39],[1,73],[44,-1],[41,-2],[64,70]],[[63255,87201],[-67,87],[-7,9],[70,49],[-27,30],[69,47],[15,15],[13,19],[28,-15],[12,-3],[100,-30],[42,-18],[33,-62],[46,-61],[5,-6]],[[63587,87262],[-40,205],[40,128],[236,95]],[[63721,87816],[69,48],[66,46]],[[63856,87910],[-108,119],[-66,-45],[-70,-49],[-116,-55],[-19,14],[42,63],[31,46],[-48,52],[-41,45],[-14,16],[-28,30],[-31,34],[141,91]],[[63460,88346],[-173,-56],[-64,52],[-61,2]],[[63162,88344],[-68,5],[-39,-3],[-99,13]],[[62956,88359],[11,-89],[-19,-13],[-79,-36]],[[62867,88188],[7,-55],[28,-37],[36,-40],[55,-58],[71,-49]],[[63186,87837],[0,-68],[-96,-95],[-45,66]],[[62758,87469],[15,3],[40,-1],[22,-1],[-59,-63],[-90,3],[-37,1],[19,57]],[[62647,87748],[-71,1],[-44,1],[-90,1],[0,38],[1,30],[81,8],[9,63],[0,29],[2,62],[6,24]],[[62541,88005],[-44,48]],[[62341,88218],[-133,-38],[-2,-22],[-69,2],[0,17],[3,92],[2,37],[105,6],[27,-30],[67,-64]],[[62471,88320],[-90,36],[-27,31],[-55,59],[-41,106],[59,45],[-103,48],[-25,67],[-22,32],[-10,34],[-107,1],[-17,-12],[-19,-25],[-83,27],[0,2],[13,6],[224,89],[21,-65]],[[62329,88841],[168,84],[3,3]],[[62500,88928],[29,18],[40,27],[15,11],[24,16],[7,3]],[[62615,89003],[38,39]],[[62653,89042],[-26,20],[-42,41]],[[62585,89103],[-122,-55],[-9,-3],[-151,-52],[-58,-19],[-280,-64],[-319,-235]],[[61703,88454],[50,-17],[62,-42],[81,-17],[0,-3],[131,-7],[-2,-53],[-2,-55],[0,-7],[-182,5],[0,18],[-96,8],[-28,115],[-14,55]],[[61595,88533],[-44,1],[-47,0],[0,-75],[-88,2],[-71,-17],[-16,0],[4,54]],[[61333,88498],[-133,-75],[-49,-37],[-28,-21],[-2,-2],[-107,-81]],[[61014,88282],[65,-56],[58,-64],[0,-39],[-123,74],[-123,-50]],[[60891,88147],[92,-43],[66,-16]],[[61049,88088],[87,-3],[45,0],[41,-74],[-3,-80]],[[61130,87934],[2,38],[-88,6],[0,1]],[[61044,87979],[-138,-30],[-42,-85],[-1,-24]],[[60863,87840],[57,-53],[-59,1],[-89,3],[-101,37],[-89,4],[-27,1],[-113,-93],[-91,-78]],[[60351,87662],[84,21],[95,-40],[103,-2],[45,-2],[88,-2]],[[60766,87637],[88,-2],[3,0],[87,-2],[-4,-77],[-3,-75],[-3,-68],[-3,-85],[-54,0],[-56,47],[-63,48]],[[60758,87423],[-9,-90],[0,-7],[-2,-80],[-5,-74]],[[60742,87172],[0,-5],[0,-5],[10,-65]],[[60752,87097],[0,-37],[87,-117]],[[60839,86943],[45,-1],[0,-77]],[[61102,87170],[1,19],[51,56],[40,-1],[-3,-77],[-2,1]],[[60528,86794],[-1,-49],[0,-26],[-46,0]],[[60343,86840],[-3,-119],[-4,-79],[-2,-60],[0,-4],[-24,-1],[-92,2],[22,131],[7,88]],[[60247,86798],[-13,0],[-60,1],[-39,1],[1,38],[1,38],[-12,38],[5,43],[36,-1],[92,-5]],[[60258,86951],[-39,98],[8,12]],[[60190,87181],[-64,1],[-113,119]],[[60013,87301],[-57,28],[47,108],[-10,11],[26,34]],[[60110,87426],[0,16],[23,46],[84,42]],[[60217,87530],[-29,35],[3,4],[34,35]],[[60225,87604],[-221,-101]],[[60004,87503],[-166,-95],[-44,-14],[-99,-30],[-104,-32],[-32,-7],[-67,-16],[-99,-3],[-1,0],[-32,47],[-3,2],[-46,48]],[[59311,87403],[-20,-8],[-16,36],[-48,-18],[-133,-165],[-1,-78],[-1,-60]],[[59092,87110],[-3,-79],[-49,4],[-62,1]],[[58978,87036],[11,-38],[-1,-39],[-45,-37],[-1,-38],[-27,0]],[[58915,86884],[-2,-79],[-29,-142]],[[59057,86514],[16,-77],[-7,1],[43,-132],[-37,-119],[-1,-27],[0,-14],[-26,-1],[-86,13],[-13,-83]],[[58946,86075],[2,0],[73,-36],[43,-5],[-12,-39],[-41,1],[-78,2],[13,77]],[[58946,86075],[-34,0],[-27,-32],[-44,2],[-86,38],[-40,2],[-34,1],[-49,3]],[[58471,86071],[-8,-38]],[[58463,86033],[40,-2],[7,-65],[-6,-21],[19,-12],[-31,-74],[-32,4],[-38,2]],[[58371,85866],[-1,-49],[-1,-103],[-45,1],[-39,0],[1,76]],[[58286,85791],[-50,1],[-3,77],[-40,46],[0,35],[57,-21],[29,-9]],[[58286,86041],[3,38],[12,97]],[[58301,86176],[-33,0],[-62,1],[-83,24],[-1,50],[-1,40],[92,24],[-189,-2],[1,17]],[[58025,86330],[-245,4],[-105,2],[-87,3]],[[57668,86555],[-46,0],[-42,1],[-36,0],[-47,44],[6,33],[15,43],[1,0],[90,6],[40,3],[21,1],[-1,-64],[-1,-16],[0,-17],[0,-34]],[[57829,86450],[198,-4]],[[58027,86446],[0,6],[1,22],[53,28],[48,-1],[0,-18],[133,-29]],[[58262,86454],[1,44],[-10,110],[1,76],[12,0],[0,-75],[67,-50],[-8,-62],[-6,-119]],[[58319,86378],[174,144],[41,42],[23,0]],[[58557,86564],[132,-3]],[[58689,86561],[1,40],[185,-6],[3,-6],[8,-24],[8,-23],[5,-16]],[[58899,86526],[84,15],[-8,23],[-1,4]],[[58867,86620],[-14,42]],[[58853,86662],[-136,-1],[-7,18]],[[58710,86679],[-85,2],[-131,2],[-1,0],[1,52],[0,43],[0,3],[38,68],[51,-1]],[[58583,86848],[-13,38],[-19,56],[17,-1]],[[58683,87002],[3,26],[46,-3]],[[58732,87025],[-23,69],[-56,90]],[[58653,87184],[-8,-76],[-9,1],[-31,3],[-61,3],[-23,93],[13,60]],[[58534,87268],[-76,-24],[-52,4],[-81,29],[-12,-115],[-24,-125],[-73,-1],[-56,95],[-104,32],[-26,137],[86,-2]],[[58116,87298],[15,91],[39,-3],[61,42]],[[58231,87428],[1,10],[39,17],[63,15],[15,57],[1,9],[0,20],[-8,38],[1,38],[0,29],[-5,28],[-33,55],[12,157]],[[58317,87901],[-24,13],[-20,18],[-50,7]],[[58223,87939],[0,-19],[-97,-62],[-83,-29]],[[57933,87814],[-119,-47]],[[57845,87710],[88,15],[99,-13],[-75,-81],[-1,-28],[-1,-57],[0,-30],[0,-11],[-1,-94],[-2,-36]],[[57707,87080],[-95,-79],[-43,-38],[-127,-54],[-67,1],[-38,1],[-50,0],[-75,1],[-39,0]],[[57173,86912],[27,-118],[2,-95],[2,-46],[-5,-104],[-88,-135],[-36,-103],[-72,-161],[-32,-73],[-21,-39],[-10,-19],[-7,-12],[-13,-26],[-20,-37],[-17,-33],[-27,-51]],[[56856,85860],[16,-7],[37,17],[27,21],[33,-3],[101,-2],[65,0]],[[57135,85886],[0,16],[3,60],[62,-1],[69,27],[45,0],[-1,-29],[86,-1],[2,76],[3,39],[0,38],[36,-1],[51,-37],[0,-10],[-1,-30],[0,-47],[-1,-30],[-51,1],[-29,-23],[79,-49],[0,-14],[-1,-10],[-58,-15],[-35,-44],[2,-72],[-44,1]],[[57352,85731],[-42,-77],[-2,-57],[41,0],[61,-21],[-19,-76],[-1,-52],[0,-24],[-85,0],[-2,-1]],[[57228,85350],[1,-28],[-105,22]],[[57124,85344],[-2,-68],[-82,2],[-94,1],[-56,1],[58,55]],[[56948,85335],[-136,3],[-47,-20],[-27,22],[-58,14],[-65,12]],[[56615,85366],[-7,-11],[20,-91]],[[56755,85121],[-97,-86],[-47,-9],[-89,-21],[-13,8],[-20,14],[103,110],[-38,86],[7,10],[-42,22]],[[56519,85255],[-133,-164],[-46,-53],[-36,-42],[-71,-82],[-42,-46],[-58,-59]],[[56133,84809],[50,-38],[31,-22],[21,-13],[-35,-30],[45,-10],[47,-41],[50,-22],[-49,-42],[-37,33],[-38,32],[-38,33],[-37,34],[-93,-32],[-17,14]],[[56033,84705],[-69,-50],[-75,-54],[-29,-21]],[[55860,84580],[3,-7],[68,-53]],[[56017,84440],[1,11],[107,-30],[43,-36],[53,45],[37,-33],[56,1],[34,-29],[-51,-46],[-71,16],[-27,-75],[63,-11],[11,-4],[23,-19]],[[56508,84056],[153,-20]],[[56942,84017],[82,83],[30,-22],[30,-23],[78,-57],[0,-39]],[[57099,83900],[0,-5],[94,-1],[20,-28],[11,-1],[36,10],[25,-16],[84,-39],[30,7],[4,-49],[40,4],[34,-5],[10,0],[33,0],[39,-19],[42,-4],[20,-4],[55,-1],[23,-12],[1,-78]],[[57801,83519],[95,61]],[[57896,83580],[-7,80],[3,41],[95,-46],[-1,-9]],[[57986,83646],[83,-29]],[[58069,83617],[18,63],[58,-12],[-8,-70]],[[58137,83598],[63,-9],[129,0],[15,19],[48,44],[11,-5],[8,-10],[-49,-88]],[[58362,83549],[16,-15],[9,-6],[-10,-51],[10,-86],[-9,-17],[-18,-34],[-26,-50],[-38,-67],[2,-6],[-7,-10],[-53,-108],[-46,-33],[-72,73],[39,59]],[[58159,83198],[-63,-31],[-73,3],[-53,-27],[-22,5],[-97,52]],[[57851,83200],[-1,-6],[-20,-39],[-28,-32],[-51,19],[17,36]],[[57642,83314],[-42,29],[-31,-71],[-17,-41],[-31,5],[-65,67],[-44,1],[5,9],[16,25],[4,8]],[[57437,83346],[-10,42]],[[57427,83388],[-6,12],[-59,-2],[-119,-5],[44,29],[-48,46]],[[57119,83409],[-31,-83],[-3,-7],[-91,25],[-88,-32],[2,28]],[[56819,83406],[-98,-72],[-34,8],[-74,-9],[-38,-5],[-31,-13],[-98,4],[-9,9],[-20,139],[-36,-167],[-34,1],[-147,-49],[0,-20],[-44,-2],[-44,20],[-42,-23],[6,-85],[34,-15]],[[56110,83127],[47,1],[41,-1],[87,1],[57,52],[-1,-51],[18,-77],[-66,-141],[-2,-11],[-75,1],[-88,1],[-22,1],[-89,1]],[[56017,82904],[0,-28],[-1,-48],[-44,0],[-44,1],[1,48],[0,28]],[[55929,82905],[-87,2],[1,17],[28,50],[9,0],[91,39],[50,62]],[[56021,83075],[2,91],[-87,52],[0,5]],[[55708,83167],[5,-39],[-95,-14],[-38,-53],[-17,96],[-35,-14]],[[55490,83152],[2,-102],[-2,-81],[0,-13],[-1,-35],[-88,2],[1,16],[-89,-31],[0,15],[-88,-27],[-89,2],[-91,1],[-1,-57],[-15,0],[-69,1],[-17,76],[0,39],[104,-1],[1,38],[0,62],[1,42],[93,94],[1,-81],[111,-107],[60,-24],[2,85],[9,100]],[[55235,83221],[-92,-12],[-26,2],[-82,16],[13,127],[-69,-61],[-10,55]],[[54904,83323],[-4,-47],[-76,-80],[-20,5],[-146,15],[-21,12],[-7,2]],[[54609,83222],[-177,-137],[-97,-55]],[[54333,82952],[122,13],[1,-11],[-3,-69],[-6,-65],[1,-2]],[[54454,82758],[92,-88]],[[54690,82578],[37,-1],[51,-2],[-21,-71]],[[54757,82504],[113,-2],[60,-97],[6,-1]],[[54936,82404],[26,0]],[[55086,82402],[42,51],[0,25],[44,-1],[133,-1],[-1,-39],[-1,-41]],[[55392,82413],[88,17],[-3,-186],[-2,-76],[87,-78],[-116,-15],[-9,-66],[-127,-8],[19,-228]],[[55329,81773],[10,-5],[152,-17],[104,-22]],[[55595,81729],[9,16]],[[55604,81745],[-12,86],[-138,-46],[-37,47],[110,78],[134,-4],[-14,73]],[[55647,81979],[-99,10],[59,100],[42,-44],[-2,-66]],[[55647,81979],[53,-21],[39,-12]],[[55739,81946],[2,61],[95,-1],[22,0],[-1,-58]],[[55650,81792],[-37,-36]],[[55613,81756],[219,-63],[90,-3]],[[55922,81690],[74,-17]],[[55996,81673],[-10,110],[4,47],[125,19],[50,74]],[[56165,81923],[0,5],[44,-1],[122,-69]],[[56317,81927],[-11,33],[-11,43],[0,63],[48,0],[9,-37]],[[56331,81794],[-20,-19]],[[56250,81692],[64,-63],[106,83],[33,-32],[-72,-55],[23,-85],[-35,-28],[-92,88],[-82,-36],[-85,-14]],[[56110,81550],[-64,-60]],[[56312,81389],[95,0]],[[56407,81389],[23,69],[108,16],[71,56],[79,-76],[17,-68]],[[56705,81386],[131,50]],[[56836,81436],[-19,19],[41,23],[-62,59],[-30,29],[48,61],[27,104],[-10,8],[25,24],[79,73]],[[57157,81854],[32,7],[123,19]],[[57291,81967],[-163,-30],[-86,40],[-26,21],[-14,71],[30,29]],[[57032,82098],[-50,39],[14,102]],[[56996,82239],[-2,1]],[[57041,82284],[51,49]],[[57092,82333],[-3,2],[-41,90],[49,17],[54,-53]],[[57151,82389],[82,74]],[[57233,82463],[-81,2],[2,117],[88,-2],[44,0],[57,-36],[1,-2],[23,-31],[-53,-14],[-38,-28]],[[57276,82469],[40,-88]],[[57316,82381],[37,-29],[6,32],[7,45],[12,13],[222,26]],[[57600,82468],[-130,68],[14,16],[33,30],[34,30],[43,-50]],[[57594,82562],[86,-9],[67,-40]],[[57747,82513],[15,76],[40,104],[21,16],[39,28],[64,3],[40,31],[54,-3]],[[58020,82768],[29,22],[31,22],[41,30],[43,25],[50,11],[33,-47],[32,107],[84,58],[79,58],[2,0],[58,23],[40,-1]],[[58542,83076],[23,5],[41,13],[48,9],[71,-19],[58,-92],[-91,-19]],[[58650,82671],[-50,-66],[-41,-45],[-95,-87],[-93,-67]],[[58371,82406],[-1,-6],[-57,-13]],[[58313,82387],[-41,-132],[-125,-35],[-15,-7],[-127,-30],[-45,0],[-9,0],[-145,32],[-79,-105]],[[57869,81994],[1,37],[17,0],[70,-1],[44,0],[48,0],[1,38],[67,3],[28,0],[37,72],[69,0]],[[58047,87475],[-3,29],[0,36],[11,0],[21,-38],[77,-17],[21,-35],[-127,25]],[[58034,86699],[-1,-24],[-1,-49],[-2,-74],[-1,-8],[-88,19],[-45,54],[47,-2],[49,79],[42,11],[0,-6]],[[58265,86964],[2,1],[114,-12],[-4,-97],[-1,-42],[0,-16],[-121,49],[-10,49],[20,68]],[[57668,86030],[0,30],[1,28],[1,50],[87,-32],[87,-30],[-1,-49],[-44,-67],[-85,69],[-46,1]],[[57926,85789],[-1,-29],[-60,1],[61,28]],[[61710,85647],[73,-2],[-56,-113],[-44,1],[1,38],[26,76]],[[56546,84640],[-69,42],[-33,47],[14,17],[22,26],[-53,30],[-48,28],[-13,8],[23,11],[92,-36],[55,-17],[-28,-39],[91,-50],[33,-21],[-54,-68],[-32,22]],[[57931,83928],[0,-4],[-23,-38],[-22,0],[-44,1],[1,38],[1,38],[27,0],[17,0],[44,-1],[-1,-34]],[[59413,83678],[-118,46],[1,22],[87,33],[10,0],[63,-1],[20,-1],[-63,-99]],[[60623,83455],[2,38],[148,-8],[-3,-55],[-147,25]],[[59653,83213],[-46,1],[2,65],[45,-1],[-1,-65]],[[60173,83686],[-2,-76],[-2,-20],[-87,21],[3,77],[88,-2]],[[60698,83882],[24,-60],[-30,5],[-90,15],[-46,8],[-16,7],[-16,45],[6,2],[51,16],[60,20],[2,-10],[55,-48]],[[60706,83676],[-4,-82],[75,-2],[-1,-20],[-149,-21],[-87,3],[7,32],[82,-2],[4,105],[75,-3],[-2,-10]],[[62148,83822],[2,38],[79,-1],[66,0],[-2,-63],[-88,2],[-57,24]],[[62034,84012],[-4,-74],[-44,1],[1,37],[-44,37],[91,-1]],[[60418,84138],[104,-61],[61,22],[28,-20],[11,-21],[-21,-12],[-28,-12],[-15,-2],[-21,0],[-5,3],[-11,1],[-71,2],[-86,2],[36,96],[18,2]],[[59699,84548],[70,13],[27,-104],[-41,1],[-38,1],[-18,89]],[[59587,84003],[54,-4],[-1,-21],[-4,-16],[-3,-70],[-71,-2],[4,115],[21,-2]],[[59357,84064],[109,-33],[13,-8],[-1,-33],[-109,-20],[-16,15],[6,59],[-42,48],[40,-28]],[[59394,84352],[26,-1],[52,0],[0,-13],[109,-85],[62,-56],[-5,-16],[-78,-22],[-102,2],[-25,0],[-40,1],[1,8],[0,6],[13,138],[-13,38]],[[58797,84270],[58,-2],[16,3],[73,2],[-1,-29],[111,8],[16,-28],[33,-58],[10,-24],[-107,-4],[-36,26],[-37,27],[-10,-33],[-110,14],[-16,98]],[[58603,84271],[22,15],[23,14],[53,-9],[1,-32],[-53,-33],[-59,-53],[-45,41],[24,35],[34,22]],[[57451,84095],[24,3],[38,5],[21,3],[-2,-61],[-31,1],[-21,0],[-31,1],[2,48]],[[59960,85681],[54,-1],[23,-112],[-52,-30],[-30,-15],[2,44],[1,37],[2,77]],[[59783,85684],[89,-1],[-2,-77],[-1,-37],[-2,-58],[-39,56],[-33,48],[-23,34],[-25,36],[36,-1]],[[59669,85225],[-142,97],[2,36],[96,10],[1,0],[5,-7],[18,-27],[6,-10],[20,-28],[34,-51],[-39,-21],[-1,1]],[[59822,85257],[22,-33],[-35,-18],[-36,27],[-18,36],[18,9],[26,12],[23,-33]],[[60121,85368],[-30,-10],[-49,50],[22,11],[16,8],[40,21],[17,-55],[-16,-25]],[[60007,83497],[38,-40],[28,44],[95,-32],[35,-11],[63,-18],[81,-12],[-3,-78],[-107,1],[-104,30],[10,35],[-83,7],[-1,-57],[-14,0],[-56,-4]],[[59770,83494],[-71,-3],[-84,-20],[-2,41],[40,42],[50,12],[66,10]],[[59774,83583],[25,58],[64,63],[6,-3],[33,-60],[-61,-72]],[[60187,85326],[-48,70],[17,32],[61,-54],[44,-5],[3,-11],[-36,-14],[-41,-18]],[[60346,84949],[39,-106],[15,-120],[-55,-17],[-20,73],[23,43],[-15,-7],[-27,46],[-5,9],[24,70],[21,9]],[[60873,85436],[-68,28],[86,34],[28,-31],[-46,-31]],[[61200,85726],[-2,-68],[-148,4],[-29,0],[1,29],[3,108],[0,15],[85,-2],[91,-2],[-1,-84]],[[61270,85885],[-10,123],[38,-26],[-17,89],[6,22],[102,17],[85,15]],[[61483,86065],[-39,-42],[-13,-31],[-46,-29],[-3,-81],[-88,1]],[[62006,86097],[41,-1],[-25,-127],[-64,31],[-8,-36],[-40,40],[7,59],[23,36],[23,-1],[43,-1]],[[61312,86397],[44,-1],[44,-1],[-3,-97],[-1,-16],[-49,-3],[-37,63],[2,55]],[[62657,86698],[20,-77]],[[62677,86621],[17,-1],[49,-1],[83,2],[0,-2],[-4,-77],[-123,2],[-4,14]],[[62695,86558],[-44,-2],[-89,-59],[-16,-4],[-1,-1],[-67,199]],[[62478,86691],[-102,-12],[-88,1],[-110,2],[-81,2],[13,33],[9,83]],[[62119,86800],[-121,-114],[-107,2],[2,79],[1,9],[2,68],[44,-1]],[[61940,86843],[3,76],[89,-2],[-2,-32],[-2,-44]],[[62028,86841],[88,-2],[48,-1]],[[62164,86838],[79,74],[49,-103],[121,35]],[[62413,86844],[33,9],[124,-13]],[[62570,86840],[88,-2],[0,-70],[-1,-70]],[[62225,87099],[77,-7],[-22,-105],[-68,2],[1,38],[1,38],[11,34]],[[61813,88068],[46,-88],[157,63],[118,12],[93,1],[66,0],[-91,-92],[-31,1],[-158,10],[-2,-67],[159,19],[-1,-41],[-2,-53],[-219,2],[36,-59]],[[61984,87776],[142,-9],[63,-86],[13,-43],[-24,0],[-38,0],[-94,1],[-50,115],[-12,22]],[[61984,87776],[-66,-18],[-89,2]],[[61829,87760],[-3,-77],[-3,-75],[-87,4],[-87,4],[-88,1],[1,75],[93,73],[52,-1],[34,-1],[88,-3]],[[61829,87760],[3,76],[-85,79],[1,20],[2,59],[4,77],[59,-3]],[[61813,88068],[-53,156],[98,-3],[42,-83],[9,-72],[-79,2],[-17,0]],[[61207,87627],[36,-1],[55,-2],[36,-2],[-39,-74],[-90,2],[2,77]],[[61207,87627],[-87,1],[2,77],[89,-2],[-4,-76]],[[61202,87474],[90,-3],[42,0],[-3,-78],[-42,-1],[-89,9],[2,73]],[[60690,86336],[11,0],[76,-30],[89,-28]],[[60866,86278],[88,-2],[89,-1],[87,-3],[-1,-31],[-88,-34],[-4,-85],[-1,-1]],[[61121,86022],[-91,-86],[-2,-35],[-69,21],[-51,-24],[-57,-30]],[[60851,85868],[-2,-50],[-89,-24],[-2,-84],[13,-43],[-18,1],[-85,2],[-86,-1]],[[60582,85669],[-2,-77],[-1,-38],[-1,-38]],[[60664,85408],[6,-90],[29,-32],[-30,-20],[-75,-13]],[[60594,85253],[21,-24],[-43,-97],[-52,-11],[-42,-9],[-66,104],[-76,-33],[-19,-6]],[[60317,85177],[58,-88],[-57,-13],[-39,90]],[[60279,85166],[-3,62],[76,69],[-16,37],[3,55]],[[60339,85389],[-23,-10],[-9,56],[-6,48],[-19,20],[28,18],[26,-1],[65,-1]],[[60401,85519],[2,23],[0,15],[87,-20],[5,134],[32,0]],[[60527,85671],[54,47],[22,106],[43,-1]],[[60646,85823],[-17,39],[-48,2]],[[60581,85864],[-57,-37],[-27,0],[1,72],[89,81]],[[60587,85980],[-88,6],[3,71],[2,54],[1,23],[176,-5],[-1,-33],[89,32],[91,-3]],[[59503,85565],[-59,70],[5,2],[58,27],[49,-72],[21,-31],[-60,-30],[-14,34]],[[59381,85299],[-67,-37],[-44,26],[-35,-18],[-56,-45],[-39,-4],[-7,55],[-4,36],[111,10],[31,3],[8,1],[23,59],[30,55],[-22,72],[-2,33],[46,2]],[[59378,85985],[61,-1],[21,0],[-2,-76],[68,-2],[-2,-76],[-46,-20],[-45,-70],[-33,-40],[-48,-20],[-29,59],[59,94],[55,75],[-53,1],[-13,0],[7,76]],[[59803,86424],[-2,-112],[-87,2],[0,27],[2,80],[0,5],[87,-2]],[[60112,86297],[35,-1],[88,-2],[45,-1],[-37,-30],[-11,-46],[-2,-77],[89,-2],[22,0],[3,-36],[-28,-41],[-55,1],[-33,1],[-47,-74],[-44,1],[-47,5],[-37,1],[4,107],[-4,43],[3,75],[3,76],[53,0]],[[59985,86955],[93,-7],[-70,-70],[68,-1],[0,-21],[-1,-55],[-60,1],[-8,0],[1,63],[-31,-63],[-41,1],[-37,0],[0,40],[1,37],[0,6],[0,5],[1,33],[49,31],[35,0]],[[59339,86879],[44,-1],[44,-1],[44,-1],[88,-3],[77,-1]],[[59636,86872],[1,77],[32,10],[72,-39],[71,-29],[0,-5]],[[59812,86886],[-1,-41],[-1,-41],[0,-49],[-1,-37],[-1,-36],[-1,-30],[1,0],[-2,-77]],[[59806,86575],[88,-1],[2,-1],[0,-18],[-57,-20],[-89,1],[21,40]],[[59771,86576],[-52,1],[-53,0]],[[59666,86577],[5,-89],[-95,27],[-6,64],[-28,-16],[-43,17]],[[59499,86580],[-4,-154],[-34,1],[-46,35],[14,54],[34,21],[1,43],[35,0]],[[59499,86580],[-31,60],[2,69]],[[59470,86709],[-47,17]],[[59423,86726],[-11,0],[-55,1],[-62,1],[1,35],[1,39],[-72,1],[-20,0],[1,38],[25,19],[-132,-17],[-1,-38],[-13,0],[4,76],[29,0],[88,-2],[25,0],[19,0],[44,-1],[5,1],[29,0],[11,0]],[[58943,85581],[72,31],[-3,-12],[-14,-45],[-2,-6],[-48,-1],[-68,1],[-31,-12],[1,3],[5,27],[88,14]],[[58644,85505],[46,-1],[-8,-21],[3,-56],[-12,0],[-30,0],[1,46],[0,32]],[[58456,85713],[110,-2],[1,-10],[-2,-61],[-71,2],[-38,0],[0,71]],[[57837,85722],[88,-2],[77,-1],[11,0],[1,40],[176,12],[0,-54],[-89,1],[-87,1],[-1,-40],[-2,-40]],[[58011,85567],[-45,1],[0,2],[-43,74],[0,-25],[-41,-49],[-5,0],[-42,50]],[[57928,85873],[44,9],[44,0],[88,-12],[43,-38],[-4,-38],[-128,1],[-50,1],[-39,1],[1,38],[1,38]],[[57150,86399],[-18,6],[91,35],[-18,-55],[-1,-6],[-30,11],[-24,9]],[[57554,85207],[1,14],[95,-3]],[[57647,85149],[-32,12],[-61,46]],[[57554,85207],[-23,-33],[-19,-25],[-37,2],[-12,3],[-63,71],[69,-22],[85,4]],[[57291,84966],[7,1],[81,11],[77,1],[86,-15],[-10,-61],[6,-6],[50,-45],[19,-55],[-65,25],[-39,55]],[[57348,84655],[-54,-36],[-1,-1],[9,-48],[-37,-4],[-72,-20],[-37,23],[131,52],[-33,9],[-83,115],[22,25]],[[57139,84948],[-47,32],[4,50],[7,12],[-103,63],[7,49],[65,-18],[49,14],[12,1],[-4,18],[26,5],[97,3],[15,6],[30,-29],[12,-11],[-1,-1],[-92,-45],[-62,-31],[103,-29],[21,-44]],[[56324,84565],[36,30],[45,2],[31,-10],[58,-38],[-46,-37],[-32,-27],[-37,32],[-55,48]],[[56579,84459],[-47,30],[30,63],[66,-35],[-49,-58]],[[56526,84188],[-16,-29],[-54,15],[-31,11],[-59,-15],[35,81],[39,46],[11,13],[16,18],[22,25],[49,13],[13,-8],[26,-17],[26,-63],[-21,-25],[-56,-65]],[[56958,84329],[22,-14],[-25,-83],[-30,-44],[-8,-9],[-70,52],[54,65],[42,42]],[[58148,83804],[1,28],[77,-4],[-31,-25],[-48,-31],[1,32]],[[58797,83952],[-164,-129],[-22,84],[-38,55],[-11,41],[12,52],[46,28],[88,23]],[[58708,84106],[-23,15],[53,47],[96,-53],[-4,-46]],[[58830,84069],[-27,-97],[-4,-19]],[[58799,83953],[11,-64],[-42,-54],[-36,-43],[-16,-19],[-17,-20],[-11,-23],[-3,-4],[-60,-88],[-83,-42],[-20,46],[-21,50],[72,-2],[94,123],[122,88],[8,51]],[[54703,82923],[1,56],[-117,-3],[-3,90],[141,10],[62,-47],[49,-31],[-50,1],[0,-20],[-1,-57],[-82,1]],[[56766,82026],[32,31],[2,-2],[6,-5],[-2,-55],[33,-25],[-39,-37],[-66,57],[-2,1],[36,35]],[[57158,82773],[1,38],[1,38],[33,0],[54,-39],[-1,-42],[-88,-17],[0,22]],[[57065,82530],[22,-25],[-16,-15],[-16,-15],[-131,-18],[5,65],[70,24],[67,-1],[-1,-15]],[[57659,82846],[25,5],[149,31],[-188,-134],[-94,-65]],[[57551,82683],[-18,-12],[-127,1],[4,21],[-76,39],[1,51],[93,19]],[[57428,82802],[16,100],[107,0],[55,0],[53,-38],[0,-18]],[[57074,82944],[44,20],[-1,-38],[-1,-76],[-44,0],[-54,1],[56,93]],[[56765,82740],[86,-1],[44,-1],[-1,-38],[45,9],[51,10],[-16,-37],[-6,-19],[-81,-39],[-1,-40],[-118,74],[-4,17],[1,65]],[[56720,82667],[0,-26],[-82,-58],[-71,-55],[-29,1],[1,38],[2,64],[0,2],[85,16],[94,18]],[[56169,82310],[0,37],[1,39],[88,-1],[-2,-152],[-55,0],[-33,0],[1,77]],[[55994,82463],[0,-76],[-1,-76],[0,-38],[-1,-39],[-88,1],[-88,1],[1,76],[-34,0],[-39,81],[0,38],[1,34],[73,0],[176,-2]],[[56233,82671],[44,0],[17,-85],[-1,-52],[0,-73],[-12,0],[-110,1],[-120,1],[-20,73]],[[56031,82536],[-36,4],[17,58],[0,27],[40,49],[51,77],[1,75],[22,0],[44,-1],[-1,-38],[0,-37],[-1,-39],[65,-40]],[[57361,83220],[-18,-30],[-4,-6],[-67,42],[10,13],[90,-1],[-11,-18]],[[57953,82889],[-30,-22],[-39,14],[-36,15],[-62,22],[18,36],[17,35],[-20,8],[17,36],[64,-18],[48,-49],[-30,-24],[41,-40],[12,-13]],[[60059,84938],[60,-33],[17,-23],[50,-49],[5,-9],[31,-56],[-46,-20],[-32,-14],[-74,84],[-76,76]],[[59994,84894],[-31,39],[-79,146]],[[59884,85079],[-109,-132]],[[59775,84947],[49,14],[-8,-141],[12,-95],[-107,-7],[-91,-7],[6,-88],[-75,-15],[-22,41],[-26,54],[4,8]],[[59172,84647],[-1,-24],[-107,2],[2,31],[-75,-52],[-99,-47],[2,-27],[9,-15],[-5,-75],[15,-68],[-12,0],[-43,3],[-60,15]],[[58798,84390],[-97,19],[-2,52]],[[58484,84505],[-97,-50],[-45,-21],[-3,28],[0,49],[-1,34],[23,11],[108,-34],[15,-17]],[[58564,84543],[-26,35],[29,12],[54,25],[71,24]],[[58692,84639],[1,18]],[[58693,84657],[-72,8],[-16,31],[31,46],[22,46],[3,0],[39,0]],[[58700,84788],[10,101],[6,51],[1,1],[77,0],[77,-26],[32,-1],[70,77],[22,4],[66,6],[-3,-62],[5,-81],[38,3],[87,13],[54,10],[27,3]],[[59269,84887],[-2,6],[51,36],[43,36],[74,67],[0,2],[41,4],[133,38],[-2,9],[34,3],[48,5],[199,-10]],[[59888,85083],[11,10],[35,36],[23,26],[108,-43],[15,-35],[21,-33],[20,-30],[21,-31],[-33,-19],[-50,-26]],[[55090,82002],[124,0],[-5,93],[2,76],[49,0],[83,-2],[82,-1],[-31,77],[-27,77]],[[57638,83547],[-51,54],[-6,-18],[4,-93],[85,-37]],[[57137,83669],[127,-20],[-43,80],[-88,5],[4,-65]],[[56191,84087],[24,-17]],[[56215,84070],[54,174],[-101,-104],[23,-53]],[[55791,84392],[-7,-26],[101,-1],[-5,68],[-7,3],[-6,103],[-76,-147]],[[55524,84380],[-3,-196]],[[55521,84184],[9,7]],[[55759,84348],[-66,154]],[[55693,84502],[-200,-28]],[[58970,83164],[0,0]],[[57553,82823],[87,-76],[19,99]],[[57659,82846],[-110,-21]],[[57549,82825],[4,-2]],[[63719,83457],[8,0],[182,-94]],[[63909,83363],[90,88],[-87,2],[-165,3],[1,153],[79,-1],[89,-1],[71,-2],[61,0]],[[64048,83605],[-76,109],[1,29],[103,-3]],[[64070,83755],[21,78],[-10,34],[64,-5],[43,-16],[43,-21],[87,-20],[-1,-27],[0,-26],[-1,-16],[-236,-7]],[[64308,83445],[44,-1],[-5,-130],[64,-8],[2,61],[95,-2],[2,76],[99,-2],[-1,-38],[95,-3],[-6,-36],[-10,-40]],[[64780,83206],[82,-6],[91,-3],[91,-2],[92,41],[1,36],[49,1],[0,-38],[-3,-114],[177,-4]],[[65360,83117],[2,83],[1,31],[126,28],[-1,3],[50,0],[-2,-74]],[[65536,83188],[102,-1],[67,-1]],[[65705,83186],[53,28]],[[66139,83279],[-143,130],[88,-2],[165,-4]],[[66249,83403],[133,-2],[-5,-151],[87,-4],[90,-2],[48,152],[135,-3],[2,79],[44,-2],[-3,-78],[38,-154],[3,0]],[[66821,83238],[47,152],[1,0],[132,-3],[90,75],[45,-1],[0,-1],[-3,-76]],[[67125,83154],[88,-2],[-90,-75]],[[67123,83077],[18,-57]],[[67141,83020],[114,68],[127,17],[85,115],[67,1]],[[67661,83371],[2,41],[0,12],[106,54],[11,43],[47,1],[0,59],[132,91],[13,2],[4,1],[49,71],[46,-2],[29,56]],[[68100,83800],[19,58],[-34,93]],[[68085,83951],[-145,-2],[-17,-3]],[[67889,83945],[-13,0],[-67,-11]],[[67809,83934],[-129,-12]],[[67680,83922],[-2,-54],[-1,-38],[-2,-76],[0,-1],[-88,2],[2,76],[-44,2],[-46,-75],[-45,1],[3,76]],[[67457,83835],[-44,1],[-88,3]],[[67325,83839],[-88,2],[17,97],[-54,0],[1,133]],[[67201,84071],[-132,4]],[[66260,83867],[-2,-77],[-2,-76]],[[66256,83714],[90,-3],[88,-2],[0,-10],[45,-1],[88,-3],[43,-9],[0,-9],[-1,-49],[-1,-26],[-2,-50],[-23,1],[-46,-79],[-44,0],[-41,82],[-23,1],[2,76],[-89,2],[-88,1]],[[66254,83636],[-176,6],[-80,3]],[[65998,83645],[-2,-77],[-5,0],[-92,3],[-221,4]],[[65200,83737],[-3,-77],[-2,-77],[-89,2],[2,77],[-55,1],[-63,-76]],[[64995,83534],[-33,-103],[-32,0],[-13,1]],[[64888,83432],[-14,-20],[-169,25],[1,38],[134,9]],[[64930,83608],[1,57],[2,77],[88,-2],[24,0],[66,0],[89,0]],[[65205,83889],[-104,-74],[-78,1],[4,77],[0,70],[0,1]],[[65027,83964],[3,21],[0,18],[-175,42],[-24,1],[-64,2]],[[64767,84048],[-42,1],[-48,1],[-23,24],[2,64],[119,-2]],[[64775,84136],[-2,37],[1,147],[3,75],[88,-2],[51,-1],[125,-4]],[[65041,84388],[2,38],[3,77]],[[65046,84503],[-44,1],[-44,1],[-44,1],[-44,2]],[[64650,84743],[-79,2],[-44,1]],[[64527,84746],[-43,2],[-4,-76],[-3,-77],[-88,3]],[[64389,84598],[-44,-1],[-76,3],[-101,4]],[[63989,84532],[-2,-76],[-1,-30],[-140,44]],[[63853,84420],[-119,2],[-83,73],[-11,-10],[-122,-114],[-59,19],[1,105]],[[63460,84495],[-32,-3],[-110,-17],[-146,-18],[5,20],[55,111],[112,107]],[[63122,85006],[47,-121],[-169,-10],[-82,79]],[[62773,85023],[-21,27],[-96,41]],[[62656,85091],[55,-74],[3,-95],[-1,-62],[135,75],[50,-43],[-83,-74],[120,6],[57,-99],[-73,-42],[139,-33],[-29,90],[134,51],[70,-83],[-66,-131],[-105,56],[7,-31],[-51,-96],[-15,10],[-12,13],[28,-81],[5,-6]],[[63024,84442],[88,-144]],[[63112,84298],[36,24],[35,28],[23,7],[108,116],[51,-68],[-40,-42],[75,-27],[24,-52],[-29,-27],[-194,-45],[30,-16],[45,-55]],[[63207,84085],[-24,-8],[-39,-13]],[[63417,83734],[0,-59],[-41,-11],[-38,-9],[-166,19],[-75,10],[70,61]],[[63167,83745],[-137,-22]],[[63030,83723],[10,-38],[-2,-57],[-130,4],[129,-57],[-2,-62],[-1,-74]],[[63034,83439],[133,21],[0,-1],[104,-112]],[[63271,83347],[-58,122],[126,-5],[14,-129],[75,127],[22,0]],[[63341,83511],[-66,-22],[-22,66],[-10,75],[73,20],[25,-139]],[[64714,83722],[-1,-18],[0,-19],[-1,-19],[-96,2],[1,18],[1,20],[0,18],[96,-2]],[[63891,84106],[0,-36],[-51,2],[-77,4],[-4,36],[132,-6]],[[64326,84058],[-1,-37],[-88,2],[-88,21],[-88,2],[-110,21]],[[63936,84106],[51,-2],[76,-3],[175,-4],[89,-3]],[[63708,83888],[-113,2],[4,23],[3,50],[106,-49],[10,-22],[-10,-4]],[[63858,84381],[126,-1],[-3,-77],[132,-3],[47,75],[44,-1],[-3,-77],[132,-3]],[[64333,84294],[3,76],[118,-3],[-11,-77],[-110,4]],[[64333,84294],[-2,-79],[-88,8],[-132,11],[-43,4],[-87,8],[-90,15]],[[62900,83418],[3,71],[-87,-6],[-4,-80]],[[64131,83448],[49,-1]],[[64124,83604],[-76,1]],[[64048,83605],[-5,-155],[88,-2]],[[63151,84075],[17,28],[-81,51],[-81,88]],[[63006,84242],[-126,126]],[[62880,84368],[-33,-24]],[[62649,84306],[-122,55]],[[62527,84361],[-20,-140]],[[62439,84901],[-1,1],[31,41],[-159,74]],[[62171,85159],[-123,-35],[-63,-18]],[[61938,84977],[114,7],[5,-24],[0,-21],[-58,-9],[-112,-56]],[[61887,84874],[131,12],[58,6],[0,-1],[50,-60],[121,-2]],[[62247,84829],[-6,69],[46,2],[42,1],[104,-98]],[[61214,84523],[124,49],[22,53],[163,51],[37,12],[77,65],[55,16],[125,35]],[[61817,84804],[-6,67]],[[61811,84871],[-1,8],[-3,87]],[[61707,84958],[-32,-76],[-87,46],[39,124]],[[61627,85052],[-47,9]],[[61580,85061],[-74,-85],[-108,5],[-77,-80],[-70,-62],[0,-13],[11,-1],[139,-101],[9,-35],[-73,-22],[-16,31],[-123,-50]],[[61198,84648],[35,-66],[-19,-59]],[[60623,83040],[1,51],[41,49],[-121,4],[-36,1],[-82,3],[-33,1],[-2,-52],[-33,1],[-14,1],[-56,1],[69,-101],[30,-1]],[[58936,82620],[0,-52],[2,-71]],[[59046,82555],[0,29],[2,87],[45,21],[44,20]],[[59137,82712],[1,82]],[[59262,82770],[-74,-35],[-28,-13]],[[59160,82722],[-3,-92],[62,70],[43,70]],[[59382,84814],[-24,-11]],[[59512,84724],[-62,41],[-68,49]],[[59514,84722],[202,203]],[[59716,84925],[-213,-71]],[[59503,84854],[10,-130]],[[58642,86443],[-1,-71],[-44,2],[-6,70]],[[58591,86444],[-113,-6],[-2,0],[-16,-110]],[[58460,86328],[68,-4],[111,3],[138,-6]],[[58777,86321],[3,23],[2,24],[7,73]],[[58789,86441],[-99,1],[-48,1]],[[58635,86164],[-178,68],[1,-64]],[[58383,86241],[8,-3],[66,-5],[1,41],[2,42]],[[58460,86316],[-77,-75]],[[57310,85834],[0,-31]],[[57310,85803],[45,16],[14,63],[-14,-49],[-45,1]],[[57129,85657],[5,76],[-90,1],[-64,1],[-84,2],[-28,0],[-46,-75],[-23,-78],[129,-6],[46,-1],[75,-1],[80,4],[-1,41],[1,36]],[[56967,87163],[-16,70],[-44,-81],[60,11]],[[57494,87277],[-11,9],[-11,62]],[[57192,87367],[8,-13],[-113,-36],[-2,-70],[-2,-93]],[[57198,87149],[14,28],[123,18],[7,5],[86,-47],[41,-49],[22,74],[3,99]],[[54722,83449],[13,-114],[169,-12]],[[53215,83195],[-29,70],[78,10],[97,-9],[-66,86]],[[53295,83352],[-94,6],[-233,-20]],[[52714,83307],[-38,22],[67,51]],[[52968,83338],[-112,90],[-69,92],[-114,-94]],[[53442,83281],[29,6]],[[53401,83365],[41,-84]],[[53863,83433],[177,-101]],[[53322,82982],[93,-93],[33,145],[6,97]],[[53454,83131],[-15,63],[3,87]],[[53442,83281],[-81,-15],[-28,-61],[-78,-64]],[[53424,83132],[-14,-89],[-96,-49]],[[59617,77707],[-4,0],[-62,1],[-85,78]],[[59466,77786],[-3,-76],[-75,1]],[[59388,77711],[-15,-76],[88,-2],[-3,-75],[-88,1],[-87,2]],[[59283,77561],[-5,-78],[-3,-76]],[[59275,77407],[-2,-74],[85,-82],[90,0],[90,-3]],[[59809,77241],[88,-1],[86,-1]],[[60168,77463],[2,77]],[[60170,77540],[-177,6],[1,76],[0,1],[89,-3],[88,-41],[7,192]],[[59764,77704],[-56,1]],[[59708,77705],[-3,-80],[-48,-72],[-66,2],[26,152]],[[59691,77553],[61,-2],[61,0],[-2,-78],[-89,2],[-31,78]],[[58927,77720],[178,-4],[91,-2],[90,-1],[44,-1]],[[59330,77712],[47,100]],[[59066,77871],[42,-78],[-1,-38],[-85,40],[-1,77]],[[58567,77418],[175,-4]],[[58742,77414],[4,155],[-175,3]],[[58571,77572],[-4,-154]],[[59283,77561],[1,75],[-90,2],[-91,2],[-3,-76],[136,-3],[8,0],[39,0]],[[58937,78013],[-63,16]],[[58874,78029],[-48,-2],[-63,3],[-6,-135]],[[59125,78447],[89,-1]],[[59214,78446],[5,116],[-88,1],[-6,-116]],[[59393,78442],[87,-40]],[[59480,78402],[3,78]],[[59311,78637],[-1,-24],[-2,-53],[85,-118]],[[58853,78259],[265,-5],[5,155]],[[59123,78409],[-88,15],[-157,-93],[-16,58]],[[58862,78389],[-179,-49]],[[58683,78340],[40,-56],[126,40],[4,-65]],[[59818,78935],[-51,2]],[[59767,78937],[-93,-152],[-40,7],[-4,-98]],[[59777,78629],[15,80],[12,73],[6,31],[8,122]],[[60022,78622],[136,-3],[93,-2],[133,74],[102,-1],[165,0],[89,-1],[180,-1]],[[60920,78688],[4,146],[-104,85],[-162,2],[-92,0],[-45,1]],[[60521,78922],[-132,2],[-1,0],[3,108],[1,54]],[[60392,79086],[-150,13],[-90,41]],[[60059,78930],[-27,-38],[-114,-36],[-19,-1],[-15,-37],[0,-38],[-34,1],[-3,-74],[-3,-81]],[[59844,78626],[44,-1]],[[59888,78625],[4,81],[2,74],[45,-1],[87,-77],[-4,-80]],[[55609,80377],[-29,-11],[-60,-62],[-56,8],[-110,147],[-210,-33]],[[55144,80426],[-12,-23]],[[55359,80299],[22,-101],[73,-190]],[[55490,79946],[8,4]],[[55498,79950],[65,72],[27,7],[40,2],[1,-1],[17,-87],[33,-1],[211,12]],[[56305,80362],[102,14]],[[56599,80299],[-28,68],[125,6],[54,-9],[1,19]],[[56751,80383],[7,69]],[[56758,80452],[-231,92],[-86,82],[-52,31],[-124,78]],[[56265,80735],[41,-92],[-10,-16],[-112,52]],[[55962,80522],[-1,-74],[-1,-2]],[[56067,80151],[185,55],[-14,98]],[[56238,80304],[-45,-12],[28,71],[84,-2],[0,1]],[[54817,80111],[-107,42],[-80,-45]],[[54630,80108],[73,-89],[-36,-106]],[[55989,80953],[-58,65]],[[55931,81018],[-86,-50],[-56,-32],[-31,-13],[-58,-25],[-61,64]],[[55639,80962],[-68,-17],[-49,-35],[-105,27],[17,56],[104,55]],[[55538,81048],[-75,-6],[-25,21]],[[55438,81063],[-108,-172]],[[55330,80891],[47,2],[29,-3],[17,-45],[-10,-38],[-9,-18],[-114,12],[40,90]],[[55330,80891],[-180,-2],[-217,-22],[-174,-98]],[[54759,80769],[202,5],[59,-63],[165,92],[85,-73]],[[55333,80553],[52,-25],[18,28],[146,19],[27,-12]],[[55576,80563],[10,54]],[[55586,80617],[7,38],[0,59],[6,-2]],[[55599,80712],[25,38]],[[55574,80859],[9,18],[77,-6],[-30,-39],[-20,-24],[-46,-54],[-41,29],[51,76]],[[38380,52023],[-30,67]],[[38350,52090],[-26,22]],[[38324,52112],[-76,-25],[51,46],[43,-5]],[[38342,52128],[58,8]],[[38195,52251],[-8,-176],[193,-52]],[[40091,53844],[0,-58],[-94,0]],[[39997,53786],[7,-75],[-1,-77],[153,0],[19,-5],[110,-82],[69,-42]],[[40354,53505],[45,54],[149,1]],[[40548,53560],[-80,75],[6,3],[59,152],[1,75]],[[40557,54019],[-8,0]],[[40549,54019],[-72,-76],[-122,-3]],[[40259,53763],[-25,-27],[-102,50],[90,0],[37,-23]],[[39997,53786],[6,77]],[[40003,53863],[-176,0],[0,-77],[170,0]],[[16194,41261],[117,29],[20,8]],[[16331,41298],[28,165],[-3,56],[79,109],[64,70]],[[16499,41698],[22,25]],[[16521,41723],[-119,-1],[25,92]],[[16427,41814],[-142,-67]],[[16218,41563],[53,-45],[-111,-56],[-43,-86],[33,17],[55,-23],[-3,-26],[-8,-83]],[[16130,41243],[12,9]],[[16142,41252],[-34,81],[-19,28],[-10,-5],[-80,115]],[[15999,41471],[-85,-50],[-72,12]],[[15842,41433],[113,-112],[-54,-36]],[[15901,41285],[7,-10],[167,-49],[55,17]],[[16605,42429],[0,0]],[[16192,42238],[70,-1],[161,-10]],[[16416,42256],[-152,15],[-72,-33]],[[16350,42450],[-66,50]],[[16622,42632],[11,13]],[[16717,42807],[98,-17],[-1,108],[101,-27]],[[16915,42871],[-8,19],[76,28]],[[16983,42918],[12,47]],[[16995,42965],[-113,-21],[-48,-29],[-58,-32],[-79,-21],[120,142],[-9,53]],[[16750,43150],[-7,8],[-22,0],[-194,-30]],[[16533,43039],[54,-70],[-2,-65],[-31,-66],[-44,-23],[-92,-26],[1,8],[-127,-35],[-33,11],[61,87]],[[16295,42868],[-53,-86],[-113,68]],[[16129,42850],[1,-133],[19,-42]],[[16149,42675],[5,0],[25,-56]],[[16339,42702],[20,11],[118,37],[29,-4]],[[16457,42567],[-5,-10],[-4,-116],[72,27],[22,41],[14,18],[66,105]],[[16645,42913],[-28,68],[51,31],[135,42],[-99,-111],[-59,-30]],[[15920,42567],[52,15]],[[15992,42580],[44,66]],[[16036,42646],[-17,69]],[[16019,42715],[-99,-148]],[[16456,42949],[53,84]],[[16527,43128],[-17,15],[-59,19]],[[16451,43162],[-29,-102]],[[16585,43306],[46,-15],[59,-85],[53,-29]],[[16752,43329],[-60,6],[-19,33],[23,50],[-56,2]],[[16640,43420],[-38,-96],[-17,-18]],[[16894,43328],[136,59]],[[17030,43387],[-6,10]],[[16751,43512],[1,-183]],[[17315,43847],[-57,21],[0,18],[-125,-56]],[[17133,43830],[0,-44]],[[17013,43530],[48,55]],[[17030,43705],[-148,-32]],[[16882,43673],[-16,-54]],[[16837,43613],[-9,26],[31,136],[-112,-78],[-27,12],[2,-15],[12,-121]],[[16450,43594],[-37,-59],[21,-17],[-21,-39],[88,15]],[[16607,43595],[-31,89],[142,109]],[[16747,43854],[0,0]],[[17076,44063],[-1,20],[-7,62],[13,39]],[[17081,44184],[-120,-63],[-30,-37],[-84,-64],[-25,-16]],[[16822,44004],[-17,-101]],[[5102,26932],[47,29]],[[5149,26961],[-3,53],[26,1],[-2,57],[-65,36]],[[5091,27107],[7,-95],[4,-80]],[[10540,30078],[36,-2]],[[10576,30076],[24,144],[-47,30],[2,7],[-38,5]],[[10545,30159],[-5,-81]],[[10540,30468],[-6,-64],[-7,-76]],[[10527,30328],[40,-10],[3,24],[42,-7]],[[10626,30485],[-41,0],[-45,-17]],[[10653,30325],[10,-1],[-10,-68],[35,66],[20,-2],[3,95]],[[33211,48818],[90,-55],[36,-36]],[[33337,48727],[41,40]],[[33383,48918],[-175,-3],[3,-77],[0,-20]],[[34077,49332],[1,0]],[[34078,49332],[0,2]],[[34078,49334],[-176,-21],[2,-52]],[[34793,49168],[120,76],[-35,1]],[[34878,49245],[-85,-77]],[[35138,49402],[94,65],[124,84]],[[35356,49551],[-60,0],[-27,0],[-38,0],[-53,0],[30,113],[110,3]],[[35318,49667],[-6,154],[-1,9]],[[35311,49830],[-159,-65]],[[35152,49765],[-21,-47],[-170,-70],[2,70]],[[34963,49718],[-142,-100]],[[34959,49530],[0,20],[97,1],[78,0],[1,-26],[2,-112],[1,-11]],[[35787,49933],[4,-79]],[[35837,49886],[-2,151]],[[35835,50037],[-48,-104]],[[36359,49855],[88,1],[88,0]],[[36535,49856],[-2,72],[-2,72],[-1,29],[-1,64],[66,1]],[[36595,50094],[-5,62],[-108,40],[130,51]],[[36700,50324],[-46,133]],[[36475,50316],[-110,-67],[-94,-4],[-15,29],[-24,44]],[[36174,50470],[-180,2]],[[36073,50081],[30,-39],[141,57],[20,-44],[-85,-3],[8,-61],[-80,0],[-96,0]],[[36355,50033],[-2,58],[77,19],[2,-79],[-77,2]],[[37903,50327],[-150,62],[0,-115],[61,-36],[89,89]],[[31174,50731],[-91,-1],[4,-76],[89,-75],[36,1],[51,75]],[[31263,50655],[-88,0],[-1,76]],[[32791,52436],[107,14],[190,294]],[[32783,52735],[-65,0],[-154,-57]],[[32536,52610],[149,74],[98,50],[1,-50],[2,-53],[-70,6],[-37,-31],[-143,4]],[[50765,46481],[31,3],[67,88]],[[50863,46572],[-58,0],[-40,1]],[[50765,46573],[0,-92]],[[25048,56826],[-49,-63],[-108,-47],[-14,-36]],[[24877,56680],[22,3],[6,-33],[3,-19],[144,-76],[-21,-24],[114,-75],[52,-44],[-11,-6],[-8,10],[-109,-8],[-97,-28],[-28,29],[-38,39],[29,8],[-131,113],[67,74]],[[24871,56643],[-83,-7],[13,92],[91,115]],[[24892,56843],[-82,-16],[-50,66]],[[24760,56893],[-77,-20]],[[24683,56873],[-114,-70],[-59,-22],[-68,-29]],[[24442,56752],[48,-58],[36,-43],[32,-39],[27,-32],[-40,-16]],[[24545,56564],[83,-89],[-13,-49]],[[24615,56426],[34,2],[45,-103],[56,-59],[-6,-38],[-8,-48],[-9,-140]],[[24727,56040],[12,4],[79,25],[67,21]],[[24885,56090],[-54,67],[-46,41],[72,31],[100,14],[97,5]],[[25121,56255],[-20,27],[2,1],[146,86],[29,43],[43,56],[50,65],[108,90],[-195,103],[-21,-27],[-121,3],[-51,3],[-34,107],[-9,14]],[[23863,55686],[38,163],[-117,-94],[-44,-51],[-55,-31],[-3,-29],[59,-59],[114,102],[7,-5]],[[26768,58337],[62,68],[93,204]],[[26923,58609],[-153,-159],[-2,-113]],[[27273,58899],[227,-228],[58,156],[-158,162],[-127,-90]],[[27797,59277],[40,-140],[93,0],[-42,145],[160,-11],[-12,66],[12,68],[-85,83]],[[27963,59488],[-70,-122],[-96,-89]],[[28643,60536],[-15,-38],[-49,-63]],[[28579,60435],[55,-32]],[[28634,60403],[24,32],[18,-11],[53,-29],[112,-67]],[[28841,60328],[49,64],[-114,67],[-2,1],[-131,76]],[[29794,61437],[33,95],[84,119],[-148,1]],[[29763,61652],[15,-12],[-27,-38],[-69,-89],[112,-76]],[[29856,61716],[-152,-12]],[[29856,61716],[0,0]],[[22184,57833],[-103,-2],[112,-1]],[[22068,57278],[-86,-32]],[[22106,57058],[11,20]],[[22136,57110],[187,115],[97,105]],[[22420,57330],[-89,4],[-46,-1],[-67,4],[-61,29],[-87,42]],[[22070,57408],[-7,5],[-97,-16]],[[21966,57397],[69,-55]],[[22035,57342],[12,17],[78,-35],[58,-33],[14,-7],[-18,-9],[-70,-23],[-41,26]],[[22334,57466],[-6,-17],[-20,-15],[-53,-20],[-31,-17]],[[22224,57397],[94,-24],[26,1],[22,3]],[[22246,57569],[77,0],[-27,40],[-91,-20],[41,-20]],[[22548,57495],[-50,-5]],[[22576,57682],[-166,-23],[110,-140]],[[22691,57469],[7,-60],[105,37]],[[23015,57467],[-83,-3],[-116,-31],[14,-30],[17,-38],[20,-41],[15,-31],[20,-38],[11,-27],[-2,-22]],[[22911,57206],[229,4]],[[23140,57210],[-24,50],[-41,83],[-32,68],[-28,56]],[[23406,56682],[-70,-36],[-80,-46],[-8,6]],[[23248,56606],[30,-189],[75,35],[97,86]],[[23450,56538],[86,91],[-26,36],[-43,51],[-61,-34]],[[19058,39629],[-37,-2],[-43,-3],[-66,-1],[-65,-62],[-25,-1]],[[18759,39405],[37,-24],[-74,-47],[-13,-55],[-45,-39]],[[18664,39240],[4,-1],[-45,-53],[-37,-44]],[[18586,39142],[76,-39],[-16,-21],[79,-34],[-24,-37]],[[18784,38983],[48,58],[21,42],[5,1]],[[19028,39138],[8,36],[35,0],[13,0]],[[19084,39174],[20,63],[33,90]],[[19234,39554],[31,24],[81,76]],[[19346,39654],[-5,0]],[[19341,39654],[-78,-3],[-52,-3],[-80,-9]],[[19137,39327],[85,64],[27,85]],[[19249,39476],[-36,-10]],[[19318,40715],[11,84],[4,59],[107,11],[17,4]],[[19457,40873],[177,104]],[[19469,40973],[0,3],[3,33],[122,32],[-15,79],[-59,-3],[-162,-15],[-17,2]],[[19218,41066],[-1,-26],[-37,-1],[-7,-63],[-2,-11]],[[19217,40966],[0,-44],[-33,-70],[-1,-39],[20,-52],[110,-46],[5,0]],[[18414,38307],[2,111]],[[18414,38307],[0,0]],[[30954,29894],[-91,-15],[46,-76]],[[30824,29916],[5,3]],[[30829,29919],[31,10],[19,33],[-62,67]],[[30817,30029],[-20,-46]],[[30797,29983],[27,-67]],[[62212,85834],[-150,-5]],[[62062,85829],[17,-39],[-84,-21],[7,-33],[147,-89],[0,1],[10,-19],[16,-34],[17,-36],[-41,2],[-69,2],[44,-78]],[[62209,85482],[143,68]],[[62352,85550],[49,-2],[115,21]],[[62516,85569],[2,52]],[[62346,85628],[6,-29],[-128,-6],[-3,40],[34,54],[22,8],[-18,34],[-1,20],[1,33],[-19,60]],[[63843,85975],[88,-27]],[[64104,86031],[-144,30],[-117,-86]],[[63479,86241],[-83,42],[19,84],[-2,14],[45,33]],[[63553,86429],[8,16],[156,16]],[[63519,86547],[-283,-71],[-1,1],[-1,2],[-200,73],[-62,31]],[[62928,86615],[35,-155],[125,-38],[87,-37],[-13,-70],[116,-3],[-1,-32]],[[63757,86128],[206,115]],[[63963,86243],[-36,2],[-89,15],[-17,47],[-74,186]],[[63724,86455],[49,-66],[-60,-17]],[[63613,86345],[-1,-11]],[[64922,89076],[58,15]],[[64980,89091],[16,164]],[[64996,89255],[5,27],[-14,58],[11,89],[8,67]],[[65006,89496],[-116,6],[-1,-1],[-67,-137],[-42,-49],[-17,1],[-1,2],[-55,-6],[-150,47]],[[64565,89212],[136,-4],[1,-53],[-16,-62],[-6,-79],[15,-55],[1,-1],[-51,-20],[-72,-13],[-47,6],[-7,6],[-9,13]],[[64409,89035],[-133,-5],[-44,48],[7,65],[15,43],[19,36]],[[64488,89386],[-53,33],[-67,114],[64,54]],[[64442,89611],[0,21],[1,41],[-4,51],[-2,26],[22,41],[-15,12],[-62,44]],[[64215,89898],[27,-109],[25,-5],[36,-65],[10,-56],[-37,-31],[-42,32]],[[64182,89405],[18,-83],[0,-64],[12,-47],[-68,-26],[-41,48],[-7,174]],[[63790,89172],[-68,-102]],[[63782,88970],[9,-15],[28,-28],[-23,-38],[5,-10],[-81,-65]],[[63720,88814],[79,-17],[24,-8],[18,-85],[115,-72]],[[63945,88720],[4,40],[-72,13],[16,24],[45,50],[74,-13],[68,-27],[1,0],[-4,-18],[-27,-24],[53,-18],[31,-21],[-21,-22]],[[64056,88643],[60,-30],[45,-34],[28,-50],[-61,-44]],[[64371,88412],[132,-159]],[[64503,88253],[40,31],[36,-5],[15,-23]],[[64594,88256],[-17,86],[-16,39],[20,96],[76,-81],[14,-43],[62,-56],[106,-13],[3,0],[42,-13]],[[64884,88271],[118,69],[16,5],[30,-88],[98,118],[58,41]],[[65204,88416],[-95,104]],[[65109,88520],[-26,-7],[-77,69],[-77,33],[-70,48],[-66,-12],[-15,190],[54,-19],[86,-73],[47,2],[-25,100]],[[64753,89189],[-27,20],[63,92],[91,-115],[-127,3]],[[64594,88711],[-30,-64],[-173,68],[65,76],[31,-19],[63,-56],[44,-5]],[[64561,89018],[99,-2],[-35,102],[-60,20]],[[64555,89534],[101,55]],[[64598,89689],[-53,-88]],[[65346,88561],[-62,42]],[[65231,88468],[55,-12],[4,-18],[124,-99],[33,-17],[-14,-19]],[[65433,88303],[71,46],[114,43],[-1,59]],[[65617,88451],[-119,9]],[[65493,88458],[2,-16],[-35,-13],[-46,46],[-31,33],[-37,53]],[[65360,88962],[26,224]],[[65386,89186],[-90,-162],[64,-62]],[[65421,88900],[26,7],[-12,248]],[[65435,89155],[-22,-6]],[[65413,89149],[8,-249]],[[65284,88603],[-11,34]],[[65413,91049],[-83,-153],[-4,32],[-53,35]],[[65273,90963],[-136,-146],[-122,-114],[-22,-17]],[[64993,90686],[25,-7],[106,-58]],[[65174,90674],[17,19],[41,42],[7,-8],[44,-82]],[[65266,90565],[113,-34]],[[65379,90531],[25,81],[-90,-17],[-48,-30]],[[64987,90531],[148,-146],[17,47],[-136,116]],[[65016,90548],[-29,-17]],[[64893,90571],[-9,3]],[[64884,90574],[-100,-62],[-47,-76],[10,-13],[-115,-7]],[[64617,90326],[2,2],[31,0]],[[64650,90328],[108,81],[128,62],[7,100]],[[64848,90026],[0,0]],[[64838,90282],[-161,27]],[[65033,90206],[-48,92],[-27,14]],[[64958,90312],[75,-106]],[[63956,90144],[-29,-29]],[[63956,90144],[0,0]],[[63761,89881],[145,147],[-78,-39]],[[63828,89989],[-78,-101]],[[63750,89888],[11,-7]],[[64231,90352],[-58,-53],[-37,-54],[29,-39],[23,-107]],[[64392,89944],[-65,138],[44,16],[68,20],[41,0],[77,-103]],[[64584,89768],[14,-79]],[[64132,90051],[-48,130],[-10,-9],[-48,-40],[70,-84],[36,3]],[[64141,89742],[-41,120],[-89,-19],[2,-3]],[[64013,89840],[78,-116],[-44,-94],[65,-169]],[[64423,89926],[55,-111],[28,5]],[[64519,89889],[-96,37]],[[64223,88357],[48,-59]],[[64271,88298],[112,-47]],[[64383,88251],[0,60],[-11,73],[-10,24]],[[64584,88053],[-58,-29]],[[64526,88024],[24,-17]],[[64745,88212],[-96,-38]],[[64649,88174],[-17,-66]],[[64991,87967],[60,76]],[[65051,88043],[-5,15],[-19,74]],[[65027,88132],[-28,50]],[[64999,88182],[-90,-60],[22,-42],[12,-11],[37,-62],[11,-40]],[[63450,89517],[8,15]],[[63458,89532],[38,30],[55,-14],[1,44],[9,31],[12,14],[19,14],[14,13],[60,98]],[[63666,89762],[-15,40]],[[63651,89802],[-113,-107],[-59,-61],[-32,-38],[-66,-39],[-39,-11],[-124,-39]],[[63218,89507],[31,-31]],[[63249,89476],[91,26],[3,-3],[100,27],[7,-9]],[[63053,88441],[-11,83],[42,88]],[[63199,88526],[6,62],[10,26]],[[63215,88614],[-118,26],[-67,109]],[[62962,88717],[-3,-2],[-139,-77],[-42,20],[-44,26],[-13,63],[-134,97],[-17,-28]],[[62570,88816],[55,-67],[-16,-88],[0,-2],[-120,-15],[44,-85],[28,-84]],[[62562,88432],[13,-41]],[[62778,88385],[6,3],[60,-29],[112,0]],[[62956,88359],[11,38],[24,38],[62,6]],[[63739,89677],[-4,35]],[[63735,89712],[-100,-64],[104,29]],[[63172,88358],[27,168]],[[63090,88523],[-37,-82]],[[63053,88441],[29,-2],[90,-81]],[[62854,88845],[53,-11],[44,36]],[[62522,88498],[-48,61],[15,85],[-32,43],[-15,20]],[[63409,87134],[-7,35],[-103,63],[-44,-31]],[[63255,87201],[79,-83],[50,5]],[[63591,86925],[30,76]],[[63621,87001],[-28,0],[-63,-74],[5,-17]],[[60392,87331],[-104,1],[-40,0]],[[60190,87181],[25,-1],[201,-4]],[[60416,87176],[-22,25],[-4,49],[1,52],[1,29]],[[60618,86868],[0,40]],[[60618,86908],[-44,0],[-32,1],[-51,153]],[[60491,87062],[-47,0],[1,49],[-165,27],[38,-18],[-2,-60],[19,-93],[-48,-10]],[[60315,86871],[87,1],[38,-38],[0,37],[28,0],[61,-1]],[[60607,87100],[34,-1],[53,-1]],[[60694,87098],[0,1],[-14,48],[-55,8],[-18,-55]],[[40612,29723],[107,50],[15,80]],[[40734,29853],[-131,-55]],[[40603,29798],[-1,-19],[10,-56]],[[29344,35161],[-92,-106]],[[29055,34914],[59,1],[46,1]],[[29160,34916],[92,4]],[[29119,35376],[-3,116],[-2,98],[0,16],[44,1],[89,3],[89,2],[3,-77],[89,2],[-3,77],[0,81],[106,-74]],[[29522,35686],[-13,12],[-44,74],[-15,71]],[[29450,35843],[-4,-8],[-97,-77],[-105,5],[0,112]],[[29244,35875],[-89,0],[1,-116],[-88,-2],[0,-48],[1,-104],[-52,0],[-118,0],[0,5],[-1,99],[77,48],[-77,0],[-1,41],[130,77]],[[28963,35875],[-88,0],[0,85],[-75,0]],[[28803,35758],[4,-61],[3,-92],[-42,0],[-33,62],[27,91]],[[28699,35959],[-87,0],[-1,87]],[[28611,36046],[-80,-1],[-88,-3],[-110,-4],[-5,115],[-66,-3],[-1,18],[-80,-3],[-1,77],[78,2],[2,-55],[105,3]],[[28365,36192],[-41,56],[-71,112]],[[28253,36360],[-5,0],[-70,21],[-79,80],[-10,10],[-85,-1],[-92,-2]],[[27823,36416],[20,-105],[-10,0],[-95,-3],[1,-39],[103,2],[57,-36],[-71,-2],[-88,-2],[1,-39],[88,3],[88,2],[1,-37],[-133,20],[-44,6],[1,-32],[-88,-2],[-87,-2],[-2,76]],[[27565,36226],[-88,-2],[-1,78],[-44,-1],[-1,76],[43,1],[88,2],[2,-76],[0,-37],[1,-41]],[[27565,36226],[95,2],[15,1],[-2,77],[-22,0],[-33,76],[32,1],[88,1],[0,2]],[[27829,36465],[26,95],[-48,0],[-73,-21],[1,52],[-1,25]],[[27556,36687],[-16,58],[-59,67],[-1,20],[152,-36],[101,-27],[170,-27],[56,-23],[64,42],[28,61],[124,-41],[179,-87],[71,-30],[21,-11],[-15,-75],[-32,17],[-55,29]],[[28357,36399],[26,-20]],[[28553,36278],[44,52],[15,-17],[28,-28],[39,-18],[-21,-29],[108,-33],[43,30],[1,6],[23,-3],[-9,30],[42,44],[-4,37]],[[28862,36349],[-43,22]],[[28538,36700],[-24,6],[-64,75],[-94,56],[-181,42],[0,22],[10,114]],[[28185,37015],[-87,-17],[-44,-19],[-66,62],[-17,66]],[[27971,37107],[-82,-26],[-48,-16]],[[27575,36974],[-3,-40],[-37,1],[-57,-33],[-118,28]],[[27360,36930],[-88,-143],[-52,31],[-57,-22],[-19,66],[74,24],[0,24],[22,63],[-38,0],[-5,76],[39,0],[15,0],[1,-76],[155,24]],[[27407,36997],[32,54],[27,78],[9,76]],[[27475,37205],[-2,94],[0,59],[-1,72],[-1,81],[87,1],[29,0]],[[27994,37974],[-67,0],[-110,76],[-1,76]],[[27816,38187],[-275,-28],[-12,-34],[-62,-157],[-19,-44],[-6,-14],[-31,-75],[-39,-97],[-31,-77],[-14,-35],[-11,-27],[-5,-13],[-150,-80],[-44,-1],[72,78],[72,77],[72,78],[-39,0],[-1,37],[-1,24],[-21,89],[7,15],[7,40],[16,54],[0,47],[182,-17],[30,97],[-136,-3],[-1,30]],[[27585,38273],[123,6],[107,1]],[[27989,38281],[94,1],[84,1]],[[28167,38283],[-2,96],[-1,57],[-1,61]],[[27989,38434],[0,-145],[-139,50],[30,94],[15,47],[26,80],[-111,18],[1,-69],[1,-15],[0,-62],[2,-89],[-28,7],[-153,44],[15,36]],[[27648,38430],[-156,-2],[-119,-1],[-4,156]],[[27373,38661],[-3,77]],[[27370,38738],[-135,-1],[-69,0],[-119,-1]],[[27047,38736],[-11,-132]],[[27036,38604],[3,-21],[115,-59],[-3,-72],[-127,16]],[[27024,38468],[-4,-42],[-30,-1],[-112,131],[-102,80]],[[26776,38636],[-36,-215],[-13,-76],[-18,-108]],[[26709,38237],[64,-16],[102,0],[130,45],[81,7],[8,-56],[10,-59],[18,-137],[0,-17],[-1,-35],[-14,-91],[-1,-26],[-135,16]],[[26971,37868],[-30,-137],[-145,10],[-178,52]],[[26618,37793],[-50,10],[-10,6]],[[26365,37211],[36,-1],[46,-114],[61,-70],[-16,-9]],[[26509,36666],[72,19],[24,-58],[-64,-19]],[[26541,36608],[-172,-54],[-2,50],[13,35],[-65,84],[27,85]],[[26342,36808],[-80,-2]],[[26262,36806],[-5,-19],[7,-126],[-108,-2]],[[26179,36535],[88,-15],[4,-1],[1,-21],[-30,-83]],[[26561,36547],[93,30]],[[26654,36577],[-24,58],[-24,58],[63,19],[10,-23],[67,-18],[24,-58],[-53,-16],[-63,-20]],[[26654,36577],[14,-34],[77,-15]],[[26745,36528],[116,36],[63,18],[62,17]],[[26986,36599],[1,5],[89,52],[47,-21],[22,-33],[-41,-20]],[[27104,36582],[20,-42]],[[27124,36540],[88,61],[141,-15],[13,82],[-11,73],[37,-21],[33,-33],[0,-41],[1,-38],[1,-39],[0,-18],[1,-20],[-59,-73]],[[27369,36458],[-14,-19],[-71,-41],[103,-75],[1,-24],[-66,-4],[-82,3],[-25,-3],[-55,-1],[-44,-1],[-1,50]],[[27115,36343],[-97,-1]],[[27018,36342],[-6,-50],[-66,-2],[-6,0],[-82,-2]],[[26645,36319],[1,-49],[-58,-2],[-10,0],[-71,-23]],[[26168,36410],[173,-203],[57,-33],[-90,-65]],[[26453,36109],[2,5]],[[26455,36114],[8,24],[47,-27],[115,-64]],[[26625,36047],[24,68],[47,0],[85,1],[1,-132]],[[26782,35984],[61,-7]],[[26843,35977],[19,117],[-2,127],[74,4],[2,-25],[-17,-108],[11,13],[109,3],[1,-55],[1,-81],[2,-65],[-87,-80]],[[27131,35833],[-1,76],[-1,65],[89,-15],[88,1],[87,42],[-1,28],[0,39],[77,2]],[[27872,35981],[19,81],[90,-12],[115,-1],[0,-39],[1,-38],[1,-29]],[[27748,35848],[1,-55],[1,-97],[-34,-77],[-89,-79],[3,-77]],[[27630,35463],[194,-15],[37,-18],[-36,-26],[-68,-83],[-175,-6]],[[27582,35315],[-1,-104]],[[27581,35211],[88,2],[1,-1],[0,-104],[0,-46]],[[28106,35102],[0,18],[73,137],[6,76],[25,5],[96,-43],[40,0],[33,0],[36,-116],[49,-46]],[[28491,35135],[60,-70],[89,-44],[-27,-95],[-85,80]],[[28528,35006],[26,-96],[-89,1],[-44,-85],[-142,-2],[-78,0]],[[28201,34824],[-146,-2],[-58,0]],[[27997,34822],[1,-103]],[[27998,34719],[83,38],[143,-2],[72,24],[44,-79],[-75,-6],[6,-47]],[[28271,34647],[129,-33]],[[28400,34614],[34,-6],[86,-12],[0,-1]],[[28520,34595],[97,-17],[-65,-125],[2,-54],[-41,-31]],[[28587,34373],[295,191]],[[28882,34564],[-87,36]],[[28795,34600],[-235,43]],[[28801,34781],[-73,49],[16,22],[-38,61],[122,0]],[[28828,34913],[44,0],[115,0]],[[28987,34913],[2,68],[0,48],[175,-17],[-109,-98]],[[27127,37129],[35,-3],[3,-77],[-19,0],[-55,-1],[21,45],[15,36]],[[27179,38303],[-99,7],[-6,39],[-9,77],[184,1],[-2,-26],[8,-71],[-76,-27]],[[26921,37353],[-43,-154],[-76,-1],[10,38],[30,116]],[[26396,37357],[39,84],[13,-68],[5,-94],[-57,5],[0,73]],[[26342,37384],[-98,24],[28,59],[37,14],[21,5],[16,-103],[-4,1]],[[26553,37047],[-50,78],[-22,105],[72,-1],[4,-81],[20,-86]],[[26680,37056],[55,-9],[26,-5],[52,-9],[-7,-99],[-17,0],[-63,-30],[0,1],[-4,14],[-24,77]],[[26597,36716],[-36,53],[70,22],[24,-44],[-58,-31]],[[26911,36788],[-12,-4],[-77,14],[-19,46],[42,14],[14,4],[19,8],[12,-31],[21,-51]],[[26991,36857],[7,8],[55,106],[94,2],[46,0],[0,-43],[-64,-29],[-138,-44]],[[26959,36672],[-63,-19],[-24,57],[63,20],[7,-17],[17,-41]],[[28003,36315],[1,-52],[0,-26],[-88,-2],[-1,77],[-2,77],[88,2],[2,-76]],[[28104,35679],[86,-16],[1,-30],[-87,46]],[[28685,35605],[0,-47],[16,-60],[0,-8],[66,0],[-21,-115],[-23,12],[-89,46],[1,37],[-1,18],[-101,24],[3,56],[-29,36],[27,0],[78,-1],[21,1],[52,1]],[[28413,35910],[43,1],[1,-62],[0,-10],[-67,-11],[-43,6],[16,75],[50,1]],[[28451,35295],[-139,137],[-2,2],[-118,116],[31,19],[62,2],[32,-133],[85,54],[60,-179],[15,-17],[-26,-1]],[[28814,35164],[0,-98],[-127,0],[-48,47],[-1,36]],[[28638,35149],[-1,75],[-96,72],[34,0],[61,10],[0,-9],[87,0],[2,-141]],[[28814,35164],[-1,133],[-1,41],[85,-42],[12,-6],[40,-114]],[[26546,37503],[26,0],[115,1],[36,-38],[-6,-6],[51,-70],[0,-38],[1,-115],[-41,1],[-105,-1],[-1,5],[-67,166],[-8,55],[-1,40]],[[26546,37503],[-101,0],[54,151],[60,65],[-2,-18],[-5,-47],[-6,-151]],[[28844,34940],[-12,-18],[-17,96],[44,20],[-15,-98]],[[28272,34217],[17,108],[-2,41]],[[28287,34366],[-22,95]],[[28265,34461],[-30,81],[36,105]],[[28271,34647],[-80,6],[-14,-92],[1,-43],[-64,-128],[-2,-3],[-47,15]],[[28065,34402],[27,-115],[90,1],[90,-71]],[[29118,34470],[0,0]],[[29207,34446],[25,4]],[[29232,34450],[59,0]],[[29291,34450],[-234,183],[5,-71]],[[28996,34255],[7,68]],[[29003,34323],[-100,54],[23,25],[81,64]],[[29029,34475],[23,12],[-33,106],[-79,-66],[-57,-11],[0,-19],[-16,-112],[-228,-12]],[[28728,34219],[168,-47],[74,-106],[1,-1],[32,54],[-40,55],[27,15],[-10,60],[16,6]],[[28644,33368],[-96,-2],[-1,43],[0,31],[-106,-6]],[[28441,33434],[8,-28],[0,-54],[6,-58]],[[30434,32799],[0,0]],[[67380,84580],[111,-123]],[[67555,84446],[-7,135],[119,53]],[[67702,84673],[-87,47],[-23,34],[-9,8],[-49,55],[52,60],[37,-15],[87,-36],[1,39],[1,27],[1,52],[2,39],[4,74],[174,-11],[0,20],[2,15],[90,-45],[92,16],[37,18],[85,110]],[[68116,85164],[-86,-59],[-47,13]],[[67983,85118],[-66,-1],[-12,42],[-98,-45],[-67,-4]],[[67497,85055],[-75,-16],[-60,105],[-41,2],[-2,-78],[-90,3],[38,-62],[-38,-21],[-5,9],[-30,49],[-8,24],[1,41],[1,39],[1,38],[2,38],[43,-1],[50,-1],[30,-1],[-86,66],[33,39],[73,-46],[78,-63],[54,-78],[33,-1],[2,76],[-41,83],[-34,26],[-37,23],[-73,46]],[[67316,85394],[-148,92]],[[67168,85486],[-27,-33],[73,-46],[-59,-71],[-74,45],[-73,47],[59,71],[-73,46],[27,33]],[[67021,85578],[-74,46],[-73,46]],[[66874,85670],[-97,22]],[[66777,85692],[98,-154],[-15,-18],[-74,46],[-73,46],[61,73]],[[66774,85685],[-106,7],[13,18]],[[66578,85855],[-111,0],[-126,-17],[-75,46]],[[66053,86025],[-13,-10],[-5,-5],[-89,-7]],[[65946,86003],[35,-57],[68,-38],[-21,-25],[-126,29],[-158,15],[-26,11],[4,-16],[-23,-26]],[[65699,85896],[65,-130]],[[66182,85281],[58,113],[85,-36],[20,-2],[12,-111],[59,-4],[-8,-81]],[[66408,85160],[-9,-20],[136,-69]],[[66535,85071],[42,39],[79,133],[84,-2],[109,-4],[30,-1],[42,-77],[-2,-77],[9,0],[-27,-22]],[[67291,84892],[3,-5],[26,32],[35,27],[26,14],[51,20],[30,-50],[29,-66],[-38,-4],[-6,10],[-60,-27],[-60,25],[43,-72],[-34,-15]],[[67336,84781],[-16,-6]],[[67320,84775],[104,6],[54,-15],[-43,-120],[-10,-14],[-45,-52]],[[66820,85337],[-94,-15],[-20,13],[53,64],[74,-46],[-13,-16]],[[67250,84604],[-51,76],[18,66],[-126,-1],[-84,-51],[-39,33],[-63,165]],[[66682,84930],[-11,-31]],[[66855,84793],[26,-118],[-78,-96],[35,-35],[-76,-14]],[[66762,84530],[73,-77],[149,65],[6,37]],[[66990,84555],[-9,31],[156,30],[42,-5]],[[66653,84858],[-52,-167]],[[66601,84691],[108,-51],[41,133]],[[66105,84634],[38,-15]],[[66195,84643],[127,68]],[[66322,84711],[-119,32]],[[66116,84762],[-2,-39],[-9,-89]],[[66364,84476],[9,18],[141,58],[-95,79],[-100,-75],[-88,33]],[[66030,84448],[-25,-113]],[[65875,84717],[56,-22]],[[65931,84695],[7,33],[2,66],[177,-4]],[[66119,84867],[-176,4],[-87,-19],[19,-135]],[[65250,85269],[-6,-152],[-4,-153],[-3,-23]],[[65586,84819],[5,137],[95,-1]],[[65686,84955],[2,113],[-91,41],[-89,2],[3,95],[-88,2],[-88,2],[-85,59]],[[65598,85764],[101,132]],[[65699,85896],[-185,-65],[-3,5]],[[65511,85836],[-184,-34]],[[65327,85802],[57,-65],[-20,-59],[-123,72]],[[65241,85750],[61,-155],[69,76],[56,0]],[[65067,85963],[120,0],[24,-5],[108,-18],[57,4],[57,6]],[[65433,85950],[62,6],[52,4],[51,4],[-8,61],[-5,40],[2,-2],[24,-25],[118,15],[48,59],[-12,7],[3,164],[-18,105],[93,83],[-163,29],[-79,-27],[-49,-15],[-61,-18],[-158,-95],[-60,-17],[17,-138],[-8,0],[-148,62],[43,-69],[-31,-5],[-32,-76],[-15,-15],[30,-30],[-62,-94]],[[65504,86324],[61,0],[33,-100],[0,-1],[-81,-12],[-57,-5],[44,118]],[[64754,85926],[77,1]],[[64831,85927],[-316,90]],[[64515,86017],[86,-104],[153,13]],[[64847,86021],[-35,-21],[-28,-31],[150,-17],[97,79],[-47,46],[-139,42],[2,-98]],[[67820,85429],[35,-98],[47,38]],[[67902,85369],[47,13]],[[68218,85513],[-133,49],[-53,109],[56,36],[220,-64],[6,173],[-102,4],[-120,-4],[3,83]],[[67919,85905],[-3,-75],[-4,-154]],[[67912,85676],[-8,-153]],[[68107,84894],[-87,2],[-23,-42],[-59,-33],[-53,2],[2,38],[-87,62],[-2,-60],[-1,-38],[-1,-39]],[[67902,84669],[-31,78],[191,72],[45,75]],[[68594,84964],[-3,-81]],[[68591,84883],[62,19],[133,53]],[[68786,84955],[-13,39],[112,-40]],[[68885,84954],[27,43],[40,72],[134,30],[3,76],[44,-1]],[[69133,85174],[64,76],[115,-4]],[[69312,85246],[3,80],[0,75],[-173,5],[2,77]],[[69144,85483],[1,38],[1,38]],[[69146,85559],[2,38],[2,38],[175,-3],[4,77],[-156,50],[-1,92],[-5,246]],[[69167,86097],[-43,-8]],[[68983,85868],[-3,-77],[-3,-75],[-2,-34],[-88,3],[0,9],[1,24],[-84,79]],[[68804,85797],[-2,-76],[-1,-33],[-2,-43],[-2,-39],[-1,-39],[-89,2],[-88,2]],[[68619,85571],[-4,-113],[-89,29],[-132,20]],[[68427,85233],[-2,-53]],[[68425,85180],[177,-24],[9,-26],[-14,-95],[-3,-71]],[[68694,85272],[4,70],[89,-3],[-1,-19],[-92,-54],[0,6]],[[69049,85294],[-1,-40],[-88,-3],[-89,-13],[2,61],[176,-5]],[[67851,84440],[19,107]],[[67738,84517],[-32,-74]],[[69149,86859],[-43,1]],[[69106,86860],[-47,-75],[-47,-76]],[[69012,86709],[-3,-76],[-5,-153],[89,-78]],[[69172,86248],[40,-2]],[[69212,86246],[145,26],[116,113]],[[69254,87830],[81,2],[96,12],[140,7],[38,65]],[[69609,87916],[-220,6],[-132,3]],[[68953,88010],[-182,50]],[[68953,88010],[0,0]],[[68957,87933],[8,43],[0,27]],[[68965,88003],[-217,-20],[-165,-17],[32,-165]],[[68615,87801],[126,149],[151,-71]],[[69868,87738],[6,171]],[[69787,87911],[-14,-136],[3,-120]],[[69420,87604],[175,-30]],[[69595,87574],[-60,42],[0,173],[-5,2],[-110,-187]],[[69619,88070],[-10,-154]],[[69609,87916],[177,-5]],[[69747,88066],[48,151],[-173,4],[-3,-151]],[[69239,87465],[94,-1]],[[69333,87464],[43,72],[-134,7],[-3,-78]],[[69062,86894],[2,43],[28,76]],[[69092,87013],[-319,9]],[[68773,87022],[58,-78],[99,-46],[132,-4]],[[68218,88126],[-194,20],[-180,-74]],[[67351,87945],[35,-75],[84,14]],[[67470,87884],[5,19],[114,43]],[[67665,87986],[-78,34],[-32,39],[-36,44],[-56,97],[-79,-48]],[[67384,88152],[44,-70],[-121,-31],[44,-106]],[[69226,88770],[98,51]],[[69324,88821],[-14,41],[67,2],[79,-9],[29,-5],[125,-23]],[[69610,88827],[-60,159],[4,111],[-34,26],[-77,71],[-55,-69],[-24,-38],[-20,-7],[18,-44],[-132,-108],[-12,10],[28,-93],[-47,0]],[[69635,89086],[60,54],[26,94],[-32,27],[0,27],[-96,-18],[23,-64],[19,-120]],[[70348,89696],[-200,69],[46,64],[-186,14],[-101,-17],[84,-52],[-9,-41],[-86,-38],[161,-63],[30,15],[86,-58],[55,-62],[95,23],[-56,23],[81,123]],[[69087,88847],[79,135],[78,71],[75,62],[-14,31],[-16,38],[-136,-100],[-34,-25]],[[70113,88881],[65,-64]],[[70178,88817],[1,-2],[119,-155]],[[70298,88660],[48,-60]],[[70346,88600],[8,211],[4,77],[-245,-7]],[[70039,89446],[-98,-36],[-72,121],[-4,-57],[-86,-51],[-117,6],[4,-15],[44,-125],[91,-25],[36,1],[0,-10],[149,-41]],[[70461,90364],[-123,-94]],[[70338,90270],[18,-19],[-69,-94],[-55,36],[55,40]],[[70287,90233],[-166,-53]],[[70121,90180],[15,-51],[-21,-22]],[[70115,90107],[176,-26],[103,-31]],[[70394,90050],[13,18],[49,26],[87,-19],[64,-12],[54,-27],[43,30],[90,61],[-76,63],[-64,-40],[-135,69],[-58,145]],[[70241,89869],[91,-37],[106,-57],[-90,-79]],[[70348,89696],[104,-57]],[[70452,89639],[50,115]],[[70502,89754],[42,120],[63,72]],[[70607,89946],[-134,81]],[[70473,90027],[-79,23]],[[70394,90050],[-16,-39],[-25,-35],[-112,-107]],[[68873,88890],[-194,-46],[-72,-47]],[[71256,87216],[0,-38]],[[71256,87178],[-4,-76],[-5,-114],[89,-3],[1,38],[91,73],[89,-3],[109,-3],[67,-3]],[[71695,87126],[-44,1],[7,153],[88,-3],[-2,-39],[-1,-38],[-4,-76]],[[72049,87143],[2,47],[88,-2],[-3,-77],[-80,4]],[[71814,87013],[-83,-80],[-2,-50],[-1,-26],[-45,1],[-87,3],[-4,-98],[2,-51]],[[71594,86712],[-8,-57]],[[71858,86815],[-51,66],[130,-4],[94,75],[147,82],[68,-3]],[[72246,87031],[124,73],[33,-1]],[[72403,87103],[5,115]],[[72408,87218],[-23,0]],[[72385,87218],[-245,8],[2,38]],[[72142,87264],[-88,3],[-44,1],[2,47],[5,106]],[[71840,87427],[-44,1],[-43,1],[-89,3]],[[71664,87432],[-3,-76],[-44,1],[-85,80],[-88,10],[1,23]],[[71267,87496],[-87,35],[-176,6],[-3,-77]],[[71001,87460],[117,-50],[143,-59]],[[71261,87351],[176,-74],[-91,-63],[-90,2]],[[70964,84515],[-87,58]],[[70831,84519],[-2,-59],[155,-5]],[[71606,85081],[90,10],[86,14]],[[71789,85249],[3,61]],[[71792,85310],[-83,0],[-112,1]],[[71597,85311],[-204,-32]],[[71393,85279],[20,-11],[-3,-53]],[[71410,85215],[127,-4],[-4,-104],[73,-2],[0,-24]],[[72144,85243],[354,-11]],[[72498,85232],[176,-25]],[[72674,85207],[3,102]],[[72502,85318],[-88,3],[-267,4]],[[72147,85325],[-2,-46],[-1,-36]],[[76363,84719],[18,92]],[[76381,84811],[-11,0],[5,115],[-88,3],[1,39]],[[76200,84970],[-7,-154],[-153,5]],[[76040,84821],[105,-80],[218,-22]],[[75886,86054],[44,-2],[47,75]],[[75889,86130],[-3,-76]],[[76237,85966],[3,76]],[[76240,86042],[-178,6]],[[76062,86048],[-2,-77],[177,-5]],[[76072,86277],[3,75],[3,77],[-176,6]],[[75902,86435],[-3,-76]],[[75899,86359],[-3,-76]],[[76601,86183],[-5,-76],[-4,-76]],[[76592,86031],[91,-4],[85,-3],[5,77],[5,72],[175,-3],[5,77],[4,77]],[[76962,86324],[-178,6],[5,76],[3,76]],[[76792,86482],[-88,4]],[[76614,86489],[-6,-153],[-31,1]],[[76577,86337],[-33,-69]],[[76792,86482],[88,-3]],[[76880,86479],[3,76],[3,77],[-88,3]],[[76798,86635],[-3,-77],[-3,-76]],[[77490,86918],[119,-5],[57,-2]],[[77492,86975],[-2,-57]],[[76802,86737],[-51,52]],[[76751,86789],[-35,1]],[[77860,87290],[-177,7],[-89,1],[-89,3],[86,-80],[88,-4],[177,-6],[4,79]],[[78372,87750],[45,35]],[[78417,87785],[1,20],[4,77],[1,38],[-4,40],[-130,79],[-25,-75],[1,-39],[16,-37],[-25,-77],[116,-61]],[[78883,87172],[-8,-115]],[[79092,87056],[177,10],[4,53],[-91,42],[-80,-13],[0,11],[133,63],[226,141]],[[79461,87363],[0,16],[4,78],[177,-6],[8,156],[31,-4]],[[79681,87603],[68,82],[61,66]],[[79810,87751],[68,74],[69,75]],[[79947,87900],[-286,12],[-177,6],[-9,-228],[-3,-76],[-89,3],[-88,2]],[[79295,87619],[-3,-80]],[[79112,87472],[-131,6]],[[78755,87409],[-3,-29]],[[78388,87192],[178,-7],[177,-7]],[[78747,87254],[-88,4],[-89,4],[-116,4]],[[78839,86714],[-220,8]],[[78619,86722],[-2,-78],[222,70]],[[78553,86920],[6,111],[-178,8]],[[78381,87039],[6,-150]],[[79259,86881],[180,108]],[[79439,86989],[1,11]],[[79440,87000],[-175,4],[-6,-123]],[[80924,88786],[-88,3],[-80,-23],[-12,-50],[-2,-78],[176,-6],[6,154]],[[95857,87716],[-88,6],[-7,-76]],[[95762,87646],[88,-6],[176,-12]],[[96026,87628],[7,76]],[[96033,87704],[-176,12]],[[67777,88424],[178,74]],[[67955,88498],[-62,17]],[[67893,88515],[-116,-91]],[[65564,85421],[28,153]],[[65402,85608],[17,-182]],[[69503,85626],[-49,81]],[[69454,85707],[-38,0]],[[69416,85707],[87,-81]],[[70004,89128],[-174,7],[-4,-44]],[[69826,89091],[71,-31],[141,-75]],[[69086,89075],[-79,41],[-47,-42]],[[27647,37512],[0,0]],[[27018,36342],[-125,82]],[[26893,36424],[14,-20],[111,-62]],[[26351,35882],[31,65]],[[26681,35812],[-118,0]],[[26563,35812],[1,-37],[2,-119],[-3,0],[-155,44],[-6,0],[-7,0],[30,112],[-33,0]],[[26392,35812],[-79,-97],[-57,-101]],[[26256,35614],[1,-117],[86,2],[145,5],[81,1],[143,2]],[[27051,35448],[2,-76],[30,1]],[[27083,35373],[57,154]],[[27140,35527],[-90,-2]],[[27050,35525],[1,-77]],[[29755,35439],[-90,-29],[6,-131]],[[30036,35457],[-169,113],[195,4],[-2,-7],[-16,-99]],[[30311,35535],[24,63],[-132,91],[-99,54],[-14,23],[-103,-41],[-16,-3],[131,-43],[-10,-36],[-2,-7],[-13,3],[-148,74],[-71,-28],[13,-22],[-35,-78],[12,-5],[-47,-57]],[[30065,35822],[-60,9],[-96,89],[-69,1]],[[29840,35921],[-54,-73]],[[29786,35848],[-4,-16],[-107,-120]],[[29675,35712],[25,-16],[52,-32],[9,11],[60,21],[67,106],[15,-6],[24,7],[69,27],[92,-60],[-23,52]],[[29062,36891],[39,88],[-39,-1]],[[29062,36978],[0,-87]],[[28630,37070],[92,-133],[83,141],[-175,-8]],[[28263,36667],[-88,47],[2,-15],[1,-44],[-3,-12],[81,-9]],[[28562,36702],[-18,-2]],[[28357,39682],[139,1]],[[28496,39683],[46,131],[45,74]],[[28587,39888],[-120,71]],[[28467,39959],[-46,-143],[-64,-134]],[[28374,39989],[71,-17],[22,-13]],[[28467,39959],[63,112]],[[28530,40071],[-62,-5],[-69,-1],[19,62],[30,92]],[[28448,40219],[-70,-76],[-67,-1]],[[28311,40142],[23,-77],[-114,0]],[[28220,40065],[2,-77],[152,1]],[[27243,54790],[7,-98]],[[27250,54692],[49,101],[52,3]],[[27351,54796],[3,45],[132,51]],[[27486,54892],[-70,-3],[-8,88],[75,5],[3,-90]],[[27486,54892],[127,8]],[[27613,54900],[-1,78]],[[27612,54978],[-11,0],[-82,46],[-92,83]],[[27427,55107],[0,-1]],[[27427,55106],[-10,-13],[-74,-119],[-2,0],[-76,-5],[-13,0]],[[27252,54969],[-18,-1],[-35,-2],[-19,-1],[-50,-3],[-170,-121]],[[26960,54841],[27,-14],[21,-4],[51,-42],[108,5]],[[27167,54786],[2,45],[34,45],[17,1],[18,1],[46,2],[9,0],[-23,-45],[0,-1],[-27,-44]],[[63686,84706],[-25,-37],[-95,-78],[108,-36],[27,-13]],[[63805,84614],[3,3],[100,108]],[[64092,84911],[3,77],[-28,12],[-56,80],[-2,10]],[[64009,85090],[-54,7],[-91,46]],[[63864,85143],[-23,-23],[-52,-32]],[[63743,84935],[-50,-32]],[[63693,84903],[96,-46]],[[64095,84988],[118,35],[-118,-35]],[[64138,85171],[60,-15]],[[64198,85156],[-56,49]],[[64142,85205],[-4,-34]],[[64452,85411],[129,38]],[[64581,85449],[44,65]],[[64626,85545],[-173,-30],[-1,-104]],[[63620,84857],[73,46]],[[63693,84903],[-36,23],[-59,-46],[-168,22]],[[64276,83141],[130,35],[95,-2],[2,38],[1,38],[-95,3],[-1,-39],[-153,12]],[[65221,84384],[88,-2],[96,81],[-4,37]],[[65228,84580],[-3,-77]],[[65225,84503],[-4,-119]],[[66234,82926],[88,-21],[322,-119]],[[66644,82786],[-61,76]],[[66244,83097],[-10,-171]],[[65347,83887],[0,0]],[[66356,84174],[-61,78],[45,36],[12,38]],[[66092,84333],[0,-21],[-2,-56],[-2,-77]],[[66088,84179],[92,-2],[88,-2],[88,-1]],[[66492,84265],[2,-43],[-46,-49]],[[66448,84173],[87,-3],[88,-4],[97,-3]],[[66807,82817],[154,94],[71,43]],[[67032,82954],[0,48]],[[67074,84226],[129,-77]],[[67516,82914],[135,-128]],[[67651,82786],[69,139],[-196,-12],[-8,1]],[[67950,83118],[30,48],[13,-7],[-29,-53],[-18,-40]],[[67946,83066],[134,15],[30,-28],[90,-65],[0,17],[67,-2],[-1,-38],[-17,-65],[-12,1],[-61,2],[-88,3],[-11,1],[-106,-48],[-8,12]],[[67963,82871],[-143,-52],[1,21],[-19,73]],[[67802,82913],[-64,-73],[-61,-69]],[[67677,82771],[-27,-31],[-140,-100]],[[67510,82640],[48,-87],[44,-79]],[[68146,82696],[69,31],[45,21],[90,35]],[[68350,82783],[-1,45],[2,67]],[[68351,82895],[3,66],[-22,0],[2,41],[1,57],[84,-2],[82,-2],[-2,-53],[-4,-73]],[[68495,82929],[78,-1]],[[68707,82964],[2,57],[1,29],[88,-2],[3,85],[82,-59]],[[68883,83074],[6,0]],[[68889,83074],[1,19],[0,25],[133,67],[44,-1],[-1,-61],[-1,-17]],[[69150,83156],[-8,27],[59,-2],[2,77],[3,76]],[[69206,83334],[-90,2],[-39,160]],[[69077,83496],[-3,-120],[-88,9],[1,33],[1,76]],[[68988,83494],[-86,0],[-177,5]],[[68725,83499],[-1,-36],[-175,4],[-2,-59],[-1,-58],[-46,1],[-42,1],[-30,1],[-61,30],[1,29],[2,59],[34,-1],[130,-3],[1,59],[-42,0],[-33,133]],[[68460,83659],[-84,2]],[[68261,83514],[0,-20],[-2,-40],[-129,4],[2,39],[-67,2],[-48,1],[-93,2],[-2,-39],[4,-40],[-101,-56],[-32,1]],[[67663,83217],[44,-2],[34,-115],[44,-1],[44,2],[121,17]],[[68203,83096],[0,6],[1,34],[45,-1],[46,-1],[-2,-37],[-90,-1]],[[68982,83263],[88,-2],[-1,-38],[-177,2],[2,40],[88,-2]],[[68496,83274],[67,-2],[45,-1],[19,-76],[-88,2],[-115,2],[-18,1],[90,74]],[[68019,83579],[66,89],[-63,2],[-3,-91]],[[67961,84438],[87,-41],[-1,-38],[-90,-36],[-1,-38],[88,-2],[87,-30]],[[68102,84138],[64,-52],[22,-32],[22,-96]],[[68210,83958],[89,11],[88,-2],[89,-2]],[[68476,83965],[-78,120]],[[68398,84085],[-7,0],[-73,18],[-36,10],[56,107]],[[68173,84166],[-64,-26],[-7,-2]],[[67861,84191],[2,-28]],[[67863,84163],[5,0]],[[67914,84155],[188,-17]],[[68102,84138],[-79,60]],[[68736,83823],[3,97],[2,39]],[[68741,83959],[3,76],[2,78],[93,-5]],[[68839,84108],[43,78]],[[68882,84186],[-134,-17],[1,33]],[[68437,84084],[130,-30],[-3,-91]],[[68564,83963],[-3,-73]],[[68561,83890],[89,-3],[86,-64]],[[69442,83791],[-88,2],[2,57],[45,18],[43,-1],[-1,-38],[-1,-38]],[[69618,83786],[-43,39],[-65,40],[112,36],[42,-40],[132,-4],[-2,-76]],[[69842,83780],[1,0],[26,0],[99,-1],[4,113]],[[69972,83892],[2,37]],[[69800,84011],[-87,1],[-88,2],[3,64]],[[69534,84133],[-58,35]],[[69404,84212],[-51,-62],[-72,44]],[[69281,84194],[-50,-62],[-26,-31],[-9,5],[-28,14],[-161,-13]],[[69182,83971],[-1,-3]],[[69181,83968],[89,19],[7,70],[98,-13],[71,-4],[31,34],[26,31],[37,-88],[-91,3],[-2,-36],[177,-4],[-2,-41],[-175,4],[-89,-24],[-90,-48],[66,-1],[19,-115],[88,-2]],[[69342,83467],[3,-88],[-26,-47]],[[69557,83327],[3,118],[-86,-1],[-40,4],[-92,19]],[[69307,84225],[78,30]],[[69373,84263],[-66,-38]],[[70407,84317],[106,-83],[3,81],[2,46]],[[70856,83981],[3,76]],[[70859,84057],[-106,3],[103,-79]],[[70949,84130],[4,66]],[[70953,84196],[-89,14],[3,77],[-44,1],[3,71],[1,43],[23,15],[-88,4],[-24,-59],[-88,7],[-3,-77],[-2,-76],[88,-2],[129,-80],[87,-4]],[[67015,79174],[3,155]],[[67018,79329],[-353,8]],[[66665,79337],[-3,-115],[-4,-115]],[[66980,78488],[2,76]],[[66982,78564],[-88,3]],[[67026,79557],[239,-5]],[[67265,79552],[-49,76]],[[67216,79628],[-186,44],[-4,-115]],[[70586,75243],[-31,0]],[[70833,75145],[-100,10],[3,22],[25,63]],[[70762,75258],[-104,78],[-3,-95],[-69,2]],[[68952,79506],[3,-160]],[[68955,79346],[168,-2]],[[69038,79650],[-81,2]],[[67625,78992],[50,-78],[256,30]],[[67931,78944],[-52,73],[136,-9],[9,22],[92,-12]],[[67854,79074],[-27,1],[-13,-75],[-189,-8]],[[67802,79241],[-13,57],[-11,-68],[-232,9],[-42,77],[-89,3],[125,-191],[280,32]],[[67265,79552],[50,-78],[238,-6],[3,77],[-48,154]],[[67508,79699],[-54,1],[-70,1],[-87,3]],[[67297,79704],[-6,-153],[-26,1]],[[67983,79376],[-89,3],[-33,1],[30,-77],[-2,-67]],[[68341,79454],[-17,-34],[-74,20],[-2,-72]],[[68052,80075],[-11,65],[-10,61]],[[67651,79924],[5,147]],[[67656,80071],[-128,-66]],[[68031,80201],[188,24]],[[68219,80225],[-14,78],[-188,-24]],[[68272,80492],[151,-41],[38,100]],[[68461,80551],[-154,40]],[[68307,80591],[-35,-99]],[[67908,79686],[-7,-153],[174,-6],[8,152],[-89,3]],[[76830,83229],[-176,6],[-3,-65]],[[68222,82089],[203,-51]],[[68425,82038],[37,18],[-50,72]],[[68234,82108],[-8,-7]],[[65488,84499],[88,-54]],[[70046,97649],[6,6],[20,-2],[130,-31],[28,-58]],[[70350,97515],[43,80],[10,-3],[4,-22],[68,-21],[10,-82],[63,-22]],[[70704,97489],[76,27],[37,-5],[67,-13],[4,1],[95,0],[18,-64],[14,-27],[-101,2],[-120,-10],[10,-24],[245,-34],[46,-3]],[[71171,97268],[12,-86],[-8,-15],[-69,-47],[83,-2],[-53,-63],[-49,-36],[-80,93],[1,29],[-5,31],[27,57],[-34,28],[-180,100],[27,-64],[-35,40],[-78,-5],[-40,1],[-6,-40],[7,-16],[38,-45],[13,10],[90,-21],[54,-41],[16,-2],[18,-64]],[[71077,97008],[121,-12],[42,67],[57,76],[65,12],[149,-181]],[[71628,97095],[1,52],[1,16],[0,71],[38,-12],[52,0],[32,-86],[36,-102]],[[71891,96990],[3,99],[25,130]],[[71919,97219],[-95,5],[14,44],[-43,103],[24,17]],[[71725,97388],[-68,20],[20,99],[-17,90],[22,-2],[10,98],[43,8],[79,28],[24,-14],[13,-62],[29,61],[44,0],[45,32],[107,-5]],[[72076,97741],[17,119],[-87,8],[-12,-77],[-89,-1],[-60,80],[-20,0],[-29,-68],[-71,6],[-71,10],[-7,27],[100,70],[-1,7],[2,68],[62,37],[41,37],[30,0],[43,-38],[-38,-94],[43,-46],[78,3],[29,55]],[[71943,98134],[-99,122],[-193,64],[24,-90],[-67,-8],[-54,93],[0,143]],[[71554,98458],[-130,-34],[-91,90],[-38,32],[-12,7],[-132,65],[88,29],[-204,9],[-44,21],[19,-127],[-62,20],[-71,85],[-3,1],[-62,39],[-80,35],[-19,-44],[-15,-36],[-11,-27],[-12,-27]],[[70453,98475],[-11,2],[-47,39],[149,724],[104,23],[-71,44]],[[70577,99307],[-45,-56],[-88,-407]],[[70444,98844],[-77,-332],[-314,-172],[-3,49],[-54,-35],[-29,25],[-33,55],[-50,-14],[-47,-19],[-42,-17],[12,58]],[[69807,98442],[-67,-21]],[[69740,98421],[99,-128],[25,-47],[-1,-13],[-143,-115],[-196,37],[-109,98],[20,208]],[[69435,98461],[-125,126]],[[69310,98587],[-39,-188],[19,-197],[-56,0],[-72,6],[-66,5]],[[69096,98213],[-8,-60],[-7,-253],[2,-32],[1,-13],[8,-54],[2,-7],[20,-60]],[[69114,97734],[10,6],[46,9],[50,4],[50,-34],[22,-25]],[[69701,97796],[118,52]],[[69819,97848],[-76,67],[-121,-37],[-13,100],[-85,41],[260,4],[101,-39],[47,-24]],[[69932,97960],[32,-11],[11,-4],[-2,-26],[-94,-64],[-33,-35],[-27,-26],[-34,-9],[-30,-126],[-23,-6]],[[71509,97408],[-47,-4],[-56,22],[12,20],[5,27],[38,19],[123,-55],[-75,-29]],[[70758,98023],[-28,-36],[-38,-40],[-34,34],[-73,80],[78,-11],[96,5],[-1,-32]],[[71470,97656],[-38,-20],[-75,31],[-44,36],[43,52],[75,-20],[39,-79]],[[69323,98097],[56,-40],[-71,-17],[33,-42],[-87,-4],[37,35],[-8,36],[40,32]],[[69942,98061],[-4,0],[-19,92],[153,72],[10,-3],[-60,-75],[-10,1],[-46,1],[-24,-88]],[[71032,97987],[-49,-30],[171,-126],[-40,8],[-173,23],[-22,7],[6,85],[10,40],[17,-14],[-1,95],[71,-16],[10,-72]],[[69102,97671],[-9,-89]],[[68895,97105],[24,-5],[-26,-39],[-55,-97],[-26,7],[-18,1]],[[68794,96972],[-11,-109],[78,-158],[89,23],[100,-153]],[[69050,96575],[25,-9]],[[69170,96542],[-22,150],[-71,18]],[[68892,96901],[-19,56],[46,53],[8,10],[86,89],[0,2],[3,11],[41,0],[62,6],[21,7],[2,-9],[67,-43],[13,38],[60,7],[12,39],[10,29],[63,3],[23,-18],[-79,-60],[7,-2],[97,-26],[55,67],[20,-5],[107,51],[29,-39],[-3,-38],[-1,-25]],[[69622,97104],[50,-11],[78,-48],[3,-86],[-54,-30],[-4,-5],[-17,-45],[-44,30],[-24,28],[-35,0],[-11,0],[38,97],[20,70]],[[69622,97104],[-97,42],[-11,-24],[-64,-125],[-20,-1],[-95,-12],[93,-60],[27,-22],[8,0],[-4,-55],[79,-36],[71,37],[68,6],[-13,-25],[91,-10],[0,-14],[73,38],[14,8],[0,9],[32,-1],[64,9]],[[69938,96868],[77,121],[21,34],[72,81],[139,5],[107,-5],[110,10],[48,-19],[-32,-137],[-25,-99]],[[70455,96859],[162,34],[78,22],[120,-15]],[[70815,96900],[53,26]],[[70868,96926],[-12,20],[-44,106]],[[70615,97202],[-76,56],[-16,69]],[[70523,97327],[-29,7],[-34,11],[-107,54],[-59,43]],[[70294,97442],[-86,-163],[-42,47],[-17,-117],[-10,-34],[-47,21],[-34,108],[-15,47],[-1,165]],[[70042,97516],[-14,8],[-211,53],[-33,5],[-29,11]],[[69671,97616],[0,-13],[-53,-88],[10,-34],[161,-3],[13,-71],[107,-19],[-22,-56],[56,-48],[-39,-87],[-152,102],[-8,-55],[-20,49],[-20,1],[46,100],[-94,2],[-22,77],[-77,-44]],[[69557,97429],[7,-45],[3,-35],[-26,-82],[-160,-6],[-51,13],[-9,3],[-13,54],[-13,35],[-24,81]],[[69081,97432],[-4,-49],[-14,-41],[-23,-56],[-20,-50],[-24,-43],[-101,-88]],[[69281,97012],[-76,33],[3,-88]],[[69534,96451],[20,-4],[61,-10],[48,57],[53,53]],[[69716,96547],[-211,33],[65,74],[54,8],[85,9],[3,71],[-111,-3],[-73,5],[-87,48],[-22,-46],[-25,-8],[-9,-3],[61,-45],[-41,-63],[-140,94],[-6,-5],[-17,-134],[0,-20],[-20,-80]],[[69313,96476],[110,4],[42,-65]],[[69465,96415],[1,53]],[[69466,96468],[7,60],[52,13],[9,-90]],[[69074,95677],[-69,34],[-45,-23],[-79,-220]],[[68881,95468],[29,77],[98,66]],[[69422,95732],[-133,59],[-77,35],[-45,31]],[[69167,95857],[-1,-10],[-61,16]],[[69105,95863],[-8,-187]],[[69134,95663],[45,-20],[50,-110],[19,-112]],[[70664,95302],[32,30],[36,-15],[-85,151]],[[70647,95468],[-186,69],[41,23],[25,48],[-79,1],[-52,-9],[-95,65]],[[70301,95665],[-4,-75],[-169,-9],[-220,-113]],[[69909,95432],[135,-15],[154,-92],[80,-34],[-2,83],[53,118],[69,-26],[37,-26],[57,74],[39,-9]],[[70314,95736],[205,-51],[-26,81],[40,2],[117,-5],[75,17],[47,6],[197,63],[30,61]],[[70999,95910],[-5,18]],[[70921,95979],[-4,-8],[-84,2],[-25,15],[13,-95],[-17,-2],[-115,-17],[-72,22],[-114,80]],[[70453,96118],[16,107]],[[70469,96225],[-46,-5]],[[70423,96220],[-45,-93],[-2,-27],[-73,0],[-18,0],[-113,41]],[[70172,96141],[-9,-13],[-56,13],[-69,-2]],[[70038,96139],[27,-46],[-63,8],[-110,-12],[-37,-68],[72,-99]],[[69927,95922],[122,-44],[108,-54],[-7,-64]],[[70179,95660],[122,5]],[[70301,95665],[0,32]],[[70119,97480],[0,0]],[[70675,96765],[133,-29],[-8,111]],[[70800,96847],[-5,-41],[-157,40],[30,-53],[7,-28]],[[70523,97327],[53,-13],[75,-12],[-90,59],[-30,36],[-13,-48],[5,-22]],[[71006,97270],[30,57],[-30,-57]],[[71714,99355],[96,252]],[[71810,99607],[-449,13],[-15,103],[29,97]],[[71375,99820],[-28,-12],[30,91]],[[71377,99899],[-233,23]],[[71144,99922],[-86,-26],[83,-128]],[[71140,99745],[-175,-76],[-51,7]],[[70914,99676],[0,-11],[-2,-45],[-45,0],[-44,12],[4,106]],[[70827,99738],[-89,1]],[[70738,99739],[-4,-114],[-42,2],[-69,0],[-68,1],[-41,-75],[-19,0],[-54,-22],[-39,-11]],[[70402,99520],[-1,-42],[0,-17]],[[70401,99461],[120,-19],[44,-46]],[[70565,99396],[54,20],[66,56],[16,-1],[47,-1],[70,-2],[53,0],[-7,-60],[152,-21]],[[71016,99387],[24,76],[94,-2],[32,-1],[87,-1],[52,-2],[38,-1],[50,-2],[4,-75]],[[70320,98898],[106,151],[-65,64],[-77,-191]],[[70284,98922],[36,-24]],[[71380,98810],[-73,69],[63,3],[81,21],[88,0],[98,-30],[2,-55],[-1,-6],[-4,-22],[-48,-16]],[[71595,98731],[100,38],[19,11],[46,23]],[[71760,98803],[-69,37],[36,53],[7,67],[115,-97],[-89,-60]],[[71760,98803],[113,-40],[27,-35],[44,-38],[36,-47],[62,66],[3,40],[3,31],[55,-23],[43,-16],[-110,-125]],[[72036,98616],[60,-5]],[[72096,98611],[288,28]],[[72384,98639],[79,114]],[[72463,98753],[-210,9],[-41,54],[1,25],[45,53],[-139,79],[-68,-42]],[[71397,99379],[-101,39],[33,-78],[-91,3],[-68,2],[-66,1],[23,38],[-111,3]],[[71016,99387],[-39,-77],[-22,-50],[-69,-4],[-51,-121],[-27,7]],[[70758,98793],[100,-27],[67,-25],[-37,-63],[108,22],[119,86]],[[71802,98644],[-13,16],[-66,-67],[-104,-72]],[[72639,97552],[-94,70],[3,-75],[-105,3],[-2,-71],[-1,-26]],[[72492,97751],[-57,-19],[-49,19]],[[72301,97669],[152,-23],[1,31],[27,-8],[11,82]],[[72143,97732],[-67,9]],[[72076,97741],[5,-10],[17,-58],[65,-1]],[[71819,97388],[67,-35],[20,-10],[45,-48],[50,-57],[30,-22],[-108,3]],[[71923,97219],[150,-90],[3,-48],[0,-59],[10,-62],[-14,-63]],[[72072,96897],[57,-1],[68,14],[51,22],[3,84],[92,-2],[9,-79],[9,-34],[-1,-19],[0,-22],[-5,-109],[0,-1],[-80,-172],[-64,4]],[[72607,96550],[-39,6],[-75,13],[73,159],[-149,-102],[-40,40],[-21,80],[118,102],[92,-119],[54,38],[39,-73],[113,22],[103,-63],[9,16]],[[72669,96864],[-24,-58],[-47,56],[-62,131],[-17,27],[13,4]],[[72508,97069],[-71,48],[1,33]],[[72437,97380],[-123,-95],[-29,1],[-58,78],[-28,0],[-27,1],[-43,2],[-8,49]],[[71432,96736],[122,-84],[5,-85]],[[71956,96396],[4,75],[1,37],[116,-15],[2,50],[-112,73],[43,144]],[[71946,96837],[-103,1],[1,40]],[[71318,96852],[-33,1],[115,-62]],[[71400,96791],[15,2],[50,3],[201,-29],[51,-2],[-29,-73],[-37,11],[-91,19],[-128,14]],[[72083,96702],[108,-105],[43,103],[-164,24]],[[71382,95535],[9,-71],[70,-71]],[[71461,95393],[99,-38],[-93,90],[26,90]],[[71493,95535],[-18,1],[-46,1],[-47,-2]],[[70701,95464],[87,-107],[51,-87],[38,-83],[-119,-71],[-35,-23],[-58,-50],[121,-78],[34,-33],[58,13],[120,-21],[31,85],[-9,35]],[[71015,95067],[-1,4],[-78,152],[2,126],[-14,17],[-32,25],[-64,3],[-37,19],[-90,51]],[[70799,94662],[-24,79],[24,5],[55,-237]],[[70857,94503],[47,31]],[[70951,94637],[-24,126],[10,124],[-95,-36],[-49,-2],[-31,-6],[-102,-1]],[[71110,94745],[-56,144]],[[71054,94889],[-73,2],[11,-106],[118,-40]],[[70630,96027],[105,-9],[14,34],[-25,2],[-83,65],[-3,38]],[[70638,96157],[-39,17]],[[70599,96174],[-15,-79]],[[70676,95218],[-13,-44],[81,26],[-66,62]],[[70647,95468],[54,-4]],[[70701,95464],[7,196],[64,5],[0,26],[-122,-36],[-106,-12],[103,-175]],[[71175,95291],[28,57],[4,38],[4,154]],[[71211,95540],[0,28],[-17,51]],[[71194,95619],[-205,22]],[[70989,95641],[2,-16],[-1,-30]],[[70983,95404],[1,-142],[36,-106]],[[71059,95314],[-33,211],[57,-63],[7,-145],[-31,-3]],[[69080,94164],[52,66],[18,40],[8,8],[64,55]],[[69222,94333],[-34,15],[14,55],[92,-41]],[[69142,94500],[-4,-2],[-35,50],[-27,33],[19,115],[-44,-32],[-16,-3],[-26,-2],[2,50]],[[68946,94736],[-7,-78],[-15,-62],[-22,-69],[65,-11],[48,3],[-37,-85],[-74,-3]],[[68864,95351],[-37,-2]],[[68827,95349],[-31,-107]],[[68820,95178],[63,20],[42,-16],[60,1]],[[68990,95357],[-2,0],[-75,-9],[-42,2],[-7,1]],[[68622,94818],[-86,-173],[-19,-43],[-56,-128],[-92,-237]],[[68384,94235],[53,66],[63,71],[18,52],[16,44],[62,168],[58,3]],[[68654,94639],[16,51],[136,35],[44,-1],[0,38],[23,0]],[[68904,95038],[5,4],[-154,-36]],[[68755,95006],[-32,-64],[41,-68],[24,-6],[-72,-103],[-86,30],[-8,23]],[[68670,94463],[2,177],[-18,-1]],[[68654,94639],[-58,-174],[12,-1],[57,-1]],[[68844,94609],[20,48],[-15,6],[-113,-16],[108,-38]],[[68386,93667],[-240,-25]],[[68046,93633],[-62,-75],[-3,-68],[-59,-76],[-14,-17],[-29,45]],[[67879,93442],[-74,-91],[-34,-38],[-159,-184],[-38,-44]],[[67574,93085],[20,-12],[-24,-42],[33,-28],[71,-62]],[[68024,92883],[-1,82],[70,-24],[35,25]],[[68128,92966],[14,72]],[[67929,93111],[-16,12],[-76,44],[2,1],[48,57],[40,46],[16,20],[1,1],[32,39],[29,38],[114,32],[57,60],[-97,37],[36,63],[61,-30],[210,136]],[[68203,93249],[0,4],[48,99]],[[68251,93352],[-103,34],[-83,-107],[58,-135]],[[68271,93872],[32,1],[179,-26]],[[68482,93847],[52,116],[15,32],[20,35]],[[68721,94099],[127,-31]],[[68485,94199],[-11,7],[-63,21]],[[68756,92624],[57,148],[28,20],[40,27]],[[68623,92969],[-21,-61],[-8,-44],[-54,-82],[-62,56],[-14,15],[-179,46]],[[68285,92899],[-16,-51],[1,-115],[49,3],[79,9],[65,-96],[12,-10],[27,-109],[-26,-8]],[[68147,92784],[71,112],[-82,-9],[11,-103]],[[68881,92819],[145,-6],[-34,-84],[54,0],[169,-8],[1,47],[2,20],[43,-1],[25,75],[-22,-4],[-46,-9],[-57,66],[-30,17],[-17,42],[14,33],[82,-25],[90,-6]],[[69295,93053],[-55,7],[-96,-9],[-8,59],[143,21]],[[69259,93188],[-6,9],[-142,-67],[-35,-62],[-80,-8],[-60,25],[5,10]],[[68953,93185],[3,9],[-3,77],[-199,-50],[0,60],[0,1]],[[68524,93256],[-10,-30],[-152,38],[28,-118],[-11,-19],[155,-35],[56,-39],[34,-51]],[[68452,92515],[-9,16],[-76,43],[-60,2],[-25,1],[-57,1],[3,77],[-29,74],[-3,34],[-49,21]],[[68147,92784],[-67,56]],[[68021,92723],[-6,-6]],[[68487,92275],[-13,91],[78,91]],[[68951,91371],[-67,4]],[[68884,91375],[-68,-117],[6,-77],[6,-57]],[[68828,91124],[53,-1],[11,-27],[0,-29]],[[68892,91067],[119,-23],[129,-23]],[[69140,91021],[1,27]],[[69141,91048],[-130,15],[-24,30],[-16,29],[173,-5]],[[69144,91117],[2,58]],[[69146,91175],[-197,4],[-18,116],[0,19],[1,19],[19,38]],[[68360,93535],[-79,-105],[-30,-78]],[[68251,93352],[70,4]],[[69432,93747],[-52,50],[-89,82],[-28,127],[-43,-48],[-164,-189]],[[69264,93486],[-182,27]],[[68900,93465],[-98,-50],[94,-54],[45,-18],[30,-8],[15,23],[53,47],[76,-81],[120,25],[-56,-120],[9,0],[166,145],[52,-73],[13,5]],[[68596,93607],[0,0]],[[68931,94080],[93,-61],[103,-36],[-41,117],[-14,12]],[[69887,93676],[-133,-5]],[[69901,93529],[-4,45],[-7,41],[-1,2],[-6,17],[4,42]],[[70027,93474],[1,62],[-106,39],[38,-137],[67,36]],[[70281,93457],[204,-7],[1,107]],[[70486,93557],[-42,-3],[-37,63],[-39,32],[-49,68]],[[70319,93717],[-72,-25],[-79,-17]],[[70168,93675],[-52,-21],[20,-33],[17,-57],[-41,-76],[12,-5]],[[70124,93483],[110,-26]],[[69595,93765],[23,58],[-143,67],[-6,-71],[51,-60]],[[69740,93797],[61,-17],[-61,17]],[[70861,93466],[40,43],[77,-17]],[[70978,93492],[28,11],[59,40],[151,-36]],[[71216,93507],[-2,5]],[[71214,93512],[-23,35],[-37,52],[-26,37],[-20,29],[-9,28],[-4,68]],[[71075,93799],[-19,-16],[-97,-18],[-32,16],[-5,127],[13,45],[11,37],[-97,37]],[[70842,94069],[-43,-63],[-83,105],[11,10]],[[70442,94073],[9,-112],[-24,-9]],[[70427,93952],[98,-41]],[[70525,93911],[-13,25],[40,17],[40,6],[73,-3],[13,-7],[-61,-84]],[[70617,93865],[63,-21],[-36,-63],[-18,-34],[-13,-25],[-10,3],[-49,17],[-64,24]],[[70490,93766],[-4,-209]],[[70486,93557],[20,6],[68,29],[20,30],[10,7],[-95,-192],[92,-32]],[[70601,93405],[52,-17]],[[70653,93388],[81,160],[127,-82]],[[70159,93307],[0,0]],[[72939,94592],[37,45]],[[72976,94637],[-143,87],[-13,-57]],[[72820,94667],[3,-2]],[[73932,96686],[500,44]],[[74432,96730],[-204,6],[-26,53]],[[69905,98502],[49,-41],[89,25],[-64,63]],[[69979,98549],[-74,-47]],[[17974,45178],[-87,4],[-38,1],[-87,30],[-35,119],[105,5],[63,-9],[40,-14],[35,23]],[[18025,45370],[6,-2]],[[18031,45368],[1,7]],[[18032,45375],[21,11]],[[18053,45386],[28,12]],[[18081,45398],[-96,50],[-48,49],[16,11]],[[17953,45508],[-104,33],[-30,-19],[-18,27],[1,15],[29,84]],[[17733,45647],[-137,93]],[[17596,45740],[11,-29],[-53,-68]],[[17482,45641],[-105,42],[-44,13],[-22,13]],[[17311,45709],[-74,82],[14,13]],[[17493,45917],[230,183],[52,13]],[[17536,46355],[-157,43],[43,63],[-120,61],[12,20]],[[17314,46542],[-53,49]],[[17261,46591],[-21,-12]],[[17077,46452],[-17,-35]],[[16911,46497],[-70,-45]],[[16841,46452],[3,-29],[13,-119],[-6,-214]],[[16851,46090],[34,22],[31,-100],[-8,-122],[7,1],[-31,-76],[-19,-84],[14,-4],[64,-16],[9,-3],[13,-4],[-10,-74]],[[16751,45338],[-13,-141],[-16,-157]],[[16722,45040],[22,-4],[66,-1],[67,-2],[26,-1],[62,-1],[21,-1],[72,-2],[63,-2],[62,0],[31,-1],[31,2],[47,-3],[-3,-20],[27,-33],[48,-6],[48,-5],[-2,-10],[-32,4],[-31,4],[-32,3],[-37,-26],[-36,4],[-21,3],[-30,3],[-31,2],[-46,2],[-69,2],[-31,0],[-62,2],[-62,2],[-31,1],[-72,2],[-72,6]],[[16715,44964],[36,-145]],[[16751,44819],[-2,42],[45,-3],[31,-1],[31,-1],[51,-1],[1,-20],[5,-47]],[[16913,44788],[71,-26]],[[17350,44594],[83,-13],[142,-21],[42,-1],[201,53],[48,57],[44,58],[10,14],[27,36],[18,86],[25,164]],[[17729,44848],[22,33],[8,-6],[22,-18],[-32,-27],[-13,12],[-7,6]],[[17758,45052],[56,-2],[-27,-72],[-32,21]],[[17278,45122],[-15,34],[29,3],[24,71],[4,3],[27,-104],[-9,-11],[-33,-11],[-27,15]],[[28919,43010],[-100,49],[38,101],[110,-30]],[[29154,43072],[57,28]],[[29211,43100],[-49,13],[-4,94],[17,46]],[[29175,43253],[-76,25],[-23,100],[-31,15],[5,63]],[[29050,43456],[-85,-47],[-85,33],[-30,-97],[-8,-8],[78,-45],[-26,-13],[-79,-3],[-108,7],[19,83],[24,-5],[57,102],[73,-20],[35,98],[-75,18]],[[28840,43559],[-15,-10],[-65,14]],[[28760,43563],[-20,-61],[-40,-132],[-38,7],[3,82],[-5,183]],[[28660,43642],[-2,84],[-14,-36]],[[28644,43690],[-35,-106],[-48,2],[-60,41]],[[28469,43524],[-11,-36],[113,-11],[0,-1],[-34,-77],[-37,7],[-59,11],[-9,-64]],[[28432,43353],[-13,-60]],[[28419,43293],[31,8],[83,19],[-9,-38],[50,-9],[-24,-105],[-50,9],[-38,7],[39,54],[-139,5]],[[28362,43243],[-29,-1]],[[28333,43242],[-30,-31],[1,-32],[-65,2],[-63,12],[-37,6],[-239,-4]],[[27884,43071],[94,-69],[34,104],[59,-15],[-6,-16],[-16,-49],[-21,-63],[-3,-11],[-16,-43],[-51,-151],[-14,21],[-50,137],[-163,81]],[[27731,42997],[13,-227],[6,-61],[2,-114]],[[27752,42595],[56,1],[2,-76],[7,-120],[-17,-50],[-17,-62]],[[27783,42288],[191,5],[-35,-156]],[[27939,42137],[252,6],[3,0]],[[28194,42143],[76,156]],[[28270,42299],[75,154],[42,0],[-1,-4],[59,-67],[35,1],[0,-20]],[[28480,42363],[91,0],[42,1],[25,0]],[[28638,42364],[-6,77],[-7,90],[-6,80],[-8,95],[-9,106]],[[28602,42812],[-54,12],[-40,0],[14,42],[21,64],[-76,21],[46,137],[-33,6],[12,52],[70,20],[51,-8],[-20,-83],[38,-7],[-29,-256]],[[28602,42812],[17,-1]],[[28619,42811],[114,56],[87,40],[59,28],[25,12]],[[28289,42845],[14,-4],[70,-51],[-2,-26],[-9,-41],[-16,-49],[-91,27],[4,12],[11,30],[-87,26],[-79,49],[40,65],[70,-18],[75,-20]],[[28231,42632],[-10,-28],[-13,-78],[-20,0],[-94,-1],[-10,-2],[-36,86],[-95,-9],[-28,-1],[-23,0],[34,96],[120,-9],[13,68],[57,-20],[21,-76],[12,41],[85,-27],[-13,-40]],[[28699,42931],[-43,133],[79,-36],[-36,-97]],[[28690,43209],[103,-31],[-29,-65],[-94,13],[5,21],[15,62]],[[28213,43522],[85,1],[141,2]],[[28532,43725],[25,112],[-180,-2],[-167,5],[-44,-65]],[[28166,43775],[69,-186]],[[28500,43670],[32,55]],[[28948,41304],[-122,72],[-1,60],[-44,59],[0,37],[69,-1]],[[28850,41531],[-113,3],[-31,1],[-6,80],[-6,73]],[[28694,41688],[-46,2],[-22,-1],[-69,-1],[-174,-3],[2,-151]],[[28428,41164],[5,11]],[[28433,41175],[41,46],[87,-3],[96,1],[75,0],[-7,84],[56,-1],[43,1],[124,1]],[[30077,45440],[134,50]],[[30212,45613],[-135,-173]],[[29946,45515],[0,121]],[[29946,45636],[-43,1],[-1,-123],[44,1]],[[29307,44897],[-111,-1],[-2,-77],[-44,0],[9,76],[38,26],[1,60],[0,18],[-173,42],[-174,-2]],[[29019,44894],[-1,-77],[-168,-3]],[[28850,44814],[-3,-75],[-5,-154]],[[28842,44585],[85,1],[87,1]],[[29014,44587],[2,70],[54,0],[33,9],[-3,-78]],[[29100,44588],[94,1]],[[29206,44638],[-14,60],[0,44],[122,2],[48,43],[8,8],[34,31],[36,71]],[[29133,44895],[3,86],[30,0],[-10,-86],[-23,0]],[[28439,44735],[17,-58],[38,-95],[47,-171]],[[28541,44411],[7,0],[95,1],[-5,172],[-2,108],[-82,44],[-115,-1]],[[26997,45247],[89,-12],[88,1],[59,-5],[49,-7],[0,103]],[[27282,45327],[-20,0],[0,77],[-2,76],[1,27],[-2,127]],[[27259,45634],[-88,-1],[-89,153],[-3,150]],[[27079,45936],[-175,-3]],[[26904,45933],[2,-150],[1,-116],[-1,-16],[0,-14],[-227,29],[18,-287],[-3,-2]],[[26694,45377],[115,-53],[101,-40],[87,-37]],[[27002,45422],[81,19],[1,-46],[-82,-6],[0,33]],[[27257,45789],[-2,150]],[[27255,45939],[-87,-2]],[[27168,45937],[23,-150],[66,2]],[[34124,67800],[105,14],[94,40]],[[34323,67854],[15,3],[35,79],[1,0]],[[34374,67936],[1,77]],[[34375,68013],[2,110]],[[34377,68123],[-83,-48]],[[34294,68075],[-20,-140],[-111,7],[-44,-1]],[[32340,70215],[73,70],[41,91],[-46,50]],[[32408,70426],[-40,-125],[-28,-86]],[[32562,70542],[65,15]],[[32616,71160],[-146,-43],[-39,-1],[126,-85],[29,-108],[121,-64]],[[32707,70859],[10,23]],[[34384,71523],[-58,-48],[23,-14],[-47,-57],[-46,43]],[[34256,71447],[-35,-123],[-63,-1],[-65,0]],[[34093,71323],[37,-11],[48,-64]],[[34178,71248],[81,77],[37,-9],[54,-118],[56,107],[74,45],[1,0],[-81,90],[-16,83]],[[34399,71574],[73,-40]],[[34472,71534],[78,63],[31,79],[-62,37]],[[34519,71713],[-32,-43],[-88,-96]],[[34289,71584],[-56,-1],[5,-28],[60,-62],[53,63],[20,28],[41,56],[-123,-56]],[[34014,71079],[-120,-31]],[[33894,71048],[158,-64],[-38,95]],[[34170,72805],[32,-49]],[[34202,72756],[177,76]],[[34376,72847],[-206,-42]],[[34845,73420],[-14,1]],[[34831,73421],[-126,-107],[-77,-174]],[[34628,73140],[29,1],[24,14],[49,2],[1,-11],[27,-60],[42,-39],[53,15],[-24,90],[10,0],[77,4],[88,21],[0,62],[-1,67],[-89,-1],[-42,-2],[-9,0],[-18,89],[0,28]],[[34253,69071],[-29,35],[32,153],[-10,15]],[[34246,69274],[-119,-89]],[[34514,69577],[116,41]],[[34630,69618],[-64,133]],[[17754,45895],[19,77]],[[17754,45895],[0,0]],[[16862,45823],[0,0]],[[16785,46772],[38,66],[40,0],[106,-9],[-16,-48],[10,1]],[[16963,46782],[122,65],[23,43],[-78,58],[-23,28],[-167,-85],[-46,49],[-6,-49],[-40,-82],[37,-37]],[[18438,47510],[17,1]],[[18438,47510],[0,0]],[[19437,47392],[3,2]],[[19440,47394],[-226,253]],[[19214,47647],[-44,-50],[-42,-35],[84,-76],[2,1],[82,-38],[27,-17],[114,-40]],[[17066,47849],[-64,-20]],[[17002,47829],[-120,-43]],[[16882,47786],[-11,-68]],[[16871,47718],[132,37]],[[17253,48198],[124,15]],[[17377,48213],[23,111]],[[17267,48315],[-14,-117]],[[43563,80234],[18,4],[52,15],[35,12]],[[43668,80265],[-1,40],[121,25]],[[43788,80330],[-116,27],[33,27],[38,29],[26,20],[13,9],[12,10],[26,20],[-11,11],[39,30],[38,29],[39,30],[52,39],[-47,22],[-26,54],[37,45]],[[43941,80732],[-32,22],[-70,46],[-61,2]],[[43778,80802],[-10,-55],[-73,-6],[-10,60]],[[43685,80801],[-46,0],[-36,-10]],[[43603,80791],[10,-71]],[[43657,80572],[12,-18],[-33,-40],[12,-17],[-78,-15],[7,-14],[1,-81],[-6,-54],[-59,-1],[-52,0],[-58,0],[-12,43]],[[43391,80375],[-140,-36],[-200,92],[-89,38],[-3,1]],[[42959,80470],[-72,19],[-79,9]],[[42603,80379],[0,-31]],[[42603,80348],[30,-3],[65,-7],[48,-5],[9,-57]],[[42755,80276],[186,-5],[-1,-54]],[[42940,80217],[9,0],[61,2]],[[43010,80219],[9,102],[-60,2],[-9,63],[124,-24],[124,-34],[-50,-9],[43,-92]],[[43288,80217],[110,-41],[62,6],[74,44],[29,8]],[[44010,80366],[97,48],[35,33]],[[44142,80447],[56,36],[13,10]],[[43996,80587],[-55,-122],[-13,-10],[-12,-10],[-84,15],[45,-44],[-50,-19],[-39,-64]],[[43788,80333],[54,-3]],[[44013,80440],[-34,34],[77,58],[34,-33],[-77,-59]],[[43809,80266],[-126,1]],[[43683,80267],[125,-71],[1,70]],[[43420,80396],[73,50],[-80,28]],[[43413,80474],[7,-78]],[[45634,80739],[-105,-50]],[[45664,80604],[115,63]],[[45779,80667],[-15,70],[67,72]],[[45831,80809],[-10,71]],[[45821,80880],[-116,-85],[-39,-40],[-32,-16]],[[45900,80780],[-69,29]],[[45900,80780],[0,0]],[[39516,78697],[0,0]],[[36534,75864],[74,69]],[[36608,75933],[-92,-20]],[[36369,74924],[1,-38],[1,-38],[1,-76],[53,-76],[38,0],[-1,-75],[3,-70]],[[36814,74932],[-81,-3],[-1,22],[-3,55]],[[36729,75006],[-72,0],[-68,75]],[[36726,75239],[-2,141],[11,216],[91,116],[69,85],[45,55]],[[36940,75852],[-133,4],[-94,0],[0,-37],[1,-65],[1,-49],[-114,0],[3,112],[-69,-1],[0,39]],[[36430,75817],[9,-41]],[[36439,75776],[96,3],[1,-86],[0,-28]],[[36536,75665],[5,0],[-2,-74],[2,-46],[-3,-1]],[[36538,75544],[5,-52],[2,-142],[-1,-38],[0,-45],[-46,5]],[[36672,75546],[-22,0],[3,56],[4,64],[58,0],[-43,-120]],[[36563,75386],[62,84],[62,3],[-22,-86],[-35,0],[-67,-1]],[[36593,74630],[-13,-35],[-72,30],[-2,72],[45,1],[42,-68]],[[35200,74664],[-35,69],[45,20],[-10,123],[-59,-2],[-147,-2],[-30,-93]],[[36466,77937],[64,183],[45,63]],[[36575,78183],[-46,28]],[[36483,78288],[-176,-1],[12,27]],[[36268,78318],[2,-84],[-52,0],[2,51]],[[36131,78233],[1,-51],[1,-34],[0,-34],[-43,-34],[44,1],[1,-79],[86,80],[90,1]],[[36216,77426],[0,77],[-39,-33]],[[36177,77470],[39,-44]],[[36153,77560],[18,13]],[[36171,77573],[133,126]],[[36304,77699],[-2,12]],[[36302,77711],[-197,-2],[48,-149]],[[36522,77675],[62,19]],[[36584,77694],[-69,59]],[[42830,80199],[-55,2],[-20,75]],[[42755,80276],[-79,-1],[-73,31],[0,15],[-17,29]],[[42586,80350],[-48,5]],[[42538,80355],[-25,-68],[-159,-11]],[[42354,80276],[163,-55],[87,-4]],[[42604,80217],[101,1],[125,-19]],[[41901,80426],[83,-104],[69,0],[109,8]],[[42162,80330],[32,61],[6,14]],[[42211,80442],[-140,3],[4,59],[135,1]],[[42210,80524],[-133,-19],[-20,27],[-8,-10],[-9,-4],[-139,-92]],[[42095,80659],[116,-83],[-1,-18]],[[42310,80504],[0,24],[83,7]],[[42393,80535],[130,70]],[[42523,80605],[-59,110],[-93,-39],[-51,-2],[-38,-2],[-187,-13]],[[22422,49511],[25,25]],[[22422,49511],[0,0]],[[23745,50072],[262,67],[121,31]],[[24006,50194],[-37,-38],[-153,9],[-15,-4],[-36,-57],[-20,-32]],[[21945,48877],[148,95],[36,57]],[[22173,48872],[20,64],[-51,27]],[[22142,48963],[-50,-77]],[[22092,48886],[81,-14]],[[21871,48779],[85,0]],[[21956,48779],[35,33],[101,74]],[[22092,48886],[-147,-9]],[[21297,50402],[-87,49]],[[21210,50451],[0,-9]],[[21210,50442],[2,-49],[0,-73],[0,-81],[111,15],[-37,68],[75,20]],[[23780,50640],[0,0]],[[24912,52253],[-35,-54]],[[24877,52199],[93,-122]],[[24719,51779],[44,-26]],[[25673,53022],[64,133]],[[25737,53155],[-27,10],[-63,21],[-4,20],[8,21],[11,31],[49,89]],[[25340,53167],[9,-53]],[[25349,53114],[5,-48],[13,-108]],[[25375,52879],[79,-17],[46,-10]],[[25500,52852],[42,92]],[[25542,52944],[49,108],[22,51],[10,21],[50,-102]],[[21533,53172],[41,69]],[[21556,53323],[-4,-1],[-91,-7],[-29,70],[-30,-2],[-10,87],[27,56],[-51,7],[9,57]],[[21377,53590],[-57,-15]],[[21320,53575],[2,-30],[-60,-22],[-64,59],[-6,22],[3,7]],[[21195,53611],[-116,75],[-45,0],[-50,22]],[[20954,53420],[168,-4],[8,18]],[[21130,53434],[-29,40],[27,6],[80,-66],[-27,-72]],[[21181,53342],[28,-11]],[[21237,53292],[84,16]],[[21321,53308],[23,1],[73,4],[147,-40],[-31,-101]],[[20744,53142],[214,21]],[[20958,53163],[1,32]],[[20959,53195],[-40,-3]],[[20782,53219],[-38,-77]],[[23600,54297],[-25,-44],[-28,-50],[-75,-133],[-63,-50]],[[23408,53799],[71,-50]],[[23479,53749],[145,102],[48,18],[83,50]],[[23755,53919],[-61,47],[3,3],[41,50],[76,-21],[96,6],[25,-88]],[[24022,54006],[-70,107],[-41,40],[-3,34]],[[21974,53328],[32,-1],[43,0]],[[22075,53316],[137,18]],[[22212,53334],[-12,53]],[[22043,53416],[-113,42],[-27,30],[10,13]],[[21913,53501],[-128,109],[-96,67],[-112,-51],[-139,-21]],[[21438,53605],[0,-14],[-10,-66],[-7,0],[63,-141],[7,-13],[137,8],[28,-29],[-73,-22]],[[21746,53325],[88,0],[31,-3]],[[21745,53374],[-15,-3],[1,2],[-9,98],[66,1],[7,-94],[-50,-4]],[[22259,53402],[136,66],[4,1],[-18,14],[40,50],[31,-22]],[[22369,53542],[-16,-10],[-37,-17]],[[23730,53609],[-8,-58]],[[23722,53551],[14,-33],[72,-2]],[[18588,15347],[-3,-9],[101,1],[19,57],[37,-9],[14,120]],[[19146,15048],[29,-5]],[[19228,15272],[31,63],[-53,1],[-84,12]],[[19258,15513],[-10,75],[47,1],[18,0],[-4,111],[75,43],[-79,116],[4,-137],[-58,-1],[-23,-102],[-29,77],[-10,2],[-92,40],[-15,-1]],[[19070,15692],[-26,-109],[56,1],[72,2],[3,-76]],[[19415,15525],[171,99]],[[19586,15624],[-179,-33]],[[19407,15591],[-51,-1],[16,-90],[43,25]],[[19075,14358],[102,12],[-89,76],[-5,-29]],[[19083,14417],[-8,-59]],[[19545,16787],[30,25],[-49,64]],[[19526,16876],[-95,-54],[63,-76]],[[19618,16562],[91,28]],[[19709,16590],[-69,70]],[[19640,16660],[-37,-32]],[[16871,3196],[9,53],[-13,33]],[[16778,3271],[2,-26],[-41,0]],[[16739,3245],[132,-49]],[[18959,6503],[86,-25],[89,100]],[[19134,6578],[-171,-42]],[[18963,6536],[-4,-33]],[[20136,42003],[77,42],[39,20]],[[20252,42065],[20,10],[-84,194]],[[20150,41939],[-145,-36],[17,-30],[113,12],[23,-47],[44,-11],[-31,81],[-21,31]],[[20150,41939],[139,73]],[[20289,42012],[-25,36]],[[20264,42048],[-114,-109]],[[21266,39688],[132,-38],[65,-115]],[[21548,39599],[37,-7],[128,31],[12,0],[3,82],[-9,72],[122,14],[55,0]],[[21896,39791],[-3,70]],[[21893,39861],[-159,-4],[-51,123],[84,1],[25,1],[48,2],[49,2]],[[21889,39986],[0,43],[-1,58],[-166,25]],[[21722,40112],[0,-27],[-51,-2],[-40,-2],[-52,-3]],[[21579,40078],[-105,-12]],[[21474,40066],[-94,9]],[[21380,40075],[-1,1],[-89,24],[-149,-46],[1,-42],[-31,-6]],[[21111,40006],[6,-8],[65,-81]],[[21182,39917],[111,3],[8,0],[1,-77],[46,-73],[24,-3]],[[21372,39767],[84,0],[2,-77],[-56,-31],[-30,108]],[[21372,39767],[-65,-5],[-125,155]],[[21182,39917],[-54,-3]],[[21128,39914],[-16,-15],[-63,-100]],[[21403,39922],[-2,71],[-102,-1],[0,23],[-1,35],[103,-33],[47,-16],[3,-78],[-48,-1]],[[22249,39743],[1,-51]],[[22250,39692],[3,-5],[78,-12]],[[22331,39675],[50,40],[2,15]],[[22383,39730],[-50,63],[-60,-52],[-24,2]],[[22431,38960],[-157,63],[116,20],[39,69],[120,-1],[-80,95],[-213,-20],[-79,36],[11,29],[-22,34],[-26,52],[-4,-1],[-61,-48],[-34,39]],[[22041,39327],[-154,-6],[-57,-96],[91,-86],[-24,-59],[-69,-78]],[[21828,39002],[112,-46],[-11,89],[117,-39],[-17,-29],[1,-52],[57,10],[99,-24],[-2,-22],[-35,-76]],[[22149,38813],[61,-49]],[[22247,38809],[42,30],[-5,21],[67,-40],[85,-12]],[[22436,38808],[-3,81],[-2,71]],[[21792,39016],[-7,3]],[[21785,39019],[-55,-117]],[[21730,38902],[-54,-144]],[[21762,38761],[55,1],[58,2]],[[21875,38764],[35,105],[54,3]],[[21964,38872],[-43,22],[-43,-1],[-29,73],[-14,12],[-43,38]],[[22116,38743],[33,70]],[[22149,38813],[-50,33],[-78,17],[-44,9]],[[21977,38872],[10,-40],[17,-94],[-39,-165],[25,-81]],[[21990,38492],[29,19],[7,40],[110,102]],[[22136,38653],[-17,38]],[[23438,38052],[-9,-70],[-87,-2]],[[23264,37902],[82,-67],[168,-138]],[[23514,37697],[11,53],[-3,123],[0,7],[-3,75]],[[24739,41153],[-94,-155]],[[17329,39379],[-87,65]],[[17329,39379],[0,0]],[[17272,39636],[-42,-175]],[[17230,39461],[10,2]],[[17240,39463],[74,10],[87,11]],[[17401,39484],[86,11]],[[17487,39495],[-9,76],[-79,-11],[-11,-1],[-87,-11],[-29,88]],[[17230,39461],[-109,28]],[[17064,39344],[-26,-59]],[[17038,39285],[99,-34],[-66,-101]],[[17071,39150],[60,-27]],[[17131,39123],[89,108],[-9,61],[15,43],[-57,34],[61,92]],[[16952,38969],[-76,-87]],[[16952,38969],[0,0]],[[16092,40059],[-105,9],[-73,4],[-52,-4]],[[15862,40068],[-32,-73],[-58,-72],[-30,31],[-51,59],[-16,13],[-69,22],[-12,3],[20,15],[8,7],[28,50],[38,-15],[5,-57],[189,65]],[[15882,40116],[4,8]],[[15886,40124],[-124,28],[3,29]],[[15765,40181],[-52,13]],[[15713,40194],[-8,-23],[-83,-1],[17,-29],[-58,-33],[-64,-10],[-44,-13]],[[15459,39994],[83,0],[34,-11]],[[15626,39834],[84,51],[23,-25],[-58,-39],[-53,-35],[-121,-79]],[[15501,39707],[23,-26],[43,-50]],[[15858,39822],[76,49],[3,2],[60,40],[-27,47],[66,53],[41,-46],[1,0]],[[15898,39912],[-23,-14],[-30,35],[4,38],[19,-23],[30,-36]],[[15069,39090],[-8,-11],[-73,-66]],[[14991,38881],[1,-72]],[[15176,38693],[-45,-107]],[[15221,38589],[38,75]],[[15432,38908],[-2,65]],[[15430,38973],[-108,-2],[14,40],[-32,37],[33,36]],[[15247,39115],[-21,-1],[-135,6],[-3,1]],[[15137,38651],[39,42]],[[15021,37594],[35,53],[18,25],[43,61],[19,1],[40,-43],[1,67],[-9,14],[3,1],[92,4],[108,-32],[-30,-25],[8,-172],[0,-1]],[[15383,37432],[40,1],[4,0],[120,-40]],[[15547,37393],[27,67],[7,11],[81,51],[102,35],[-64,93],[82,45]],[[15782,37695],[-21,19]],[[15761,37714],[-20,-11],[-94,-8]],[[15647,37695],[-42,-43],[-63,-2],[-113,45],[-8,22],[32,58],[49,67]],[[15502,37842],[3,5],[25,43],[-3,77],[-1,20]],[[15526,37987],[-27,9],[51,158],[-159,-117]],[[15391,38037],[70,-12],[-59,-56],[-37,25]],[[15365,37994],[-81,-40]],[[15154,37938],[-63,10],[-51,14],[26,77],[78,-17]],[[15005,38348],[-27,-1],[-64,-80],[-173,-4]],[[14741,38263],[0,-17]],[[14741,38246],[4,-91],[9,-119],[-179,-26],[-90,58]],[[14485,38068],[1,-82],[-2,-16],[-28,-95]],[[14456,37875],[22,0]],[[14478,37875],[33,0],[83,14],[48,17],[38,0],[60,-17],[-1,-12],[-15,-21],[-62,-52],[-80,-3],[-94,-3]],[[14488,37798],[1,-33],[1,-43],[1,-25],[3,-128]],[[14494,37569],[91,-60],[40,-14],[29,0],[-41,-55]],[[14613,37440],[101,2]],[[14870,37516],[33,98],[2,41],[0,61],[16,87],[22,38],[-29,5],[-39,44],[2,12],[54,10],[51,0],[86,-30],[-85,-75],[-47,-2],[50,-45],[0,-6],[2,-28],[4,-57],[1,-23],[-20,-44]],[[15420,37882],[-30,-45],[-55,17],[-63,9],[-2,26],[47,12],[103,-19]],[[14600,37065],[26,1]],[[14626,37066],[59,67]],[[14685,37133],[-34,23],[59,32]],[[14710,37188],[-10,50]],[[13941,38394],[0,-67],[-58,-47],[-79,-2]],[[13804,38278],[-4,-43],[-24,-111]],[[13872,38204],[66,41],[27,25],[17,36],[50,72]],[[14258,36596],[-91,23],[3,105],[17,9],[67,-20]],[[14254,36713],[21,72],[19,9],[128,1]],[[14284,36899],[-129,-182],[-80,-4]],[[13986,36710],[-102,-99],[60,-71],[46,60],[29,-42],[85,1],[65,0],[31,1],[58,36]],[[14258,36596],[-4,81]],[[14258,36596],[0,0]],[[13586,35977],[69,-49],[52,2]],[[13656,35851],[0,39],[-84,-23]],[[12273,33992],[-8,123]],[[12273,33992],[0,0]],[[12216,33812],[105,115],[-43,35]],[[12278,33962],[-10,-17]],[[12268,33945],[-46,-77]],[[12222,33868],[-6,-56]],[[32681,45126],[134,-30]],[[32832,45220],[-9,4]],[[32823,45224],[-76,29],[34,57]],[[32781,45310],[-44,20],[-134,-11],[-56,25],[-134,32]],[[32413,45376],[0,-75]],[[31982,45545],[38,16]],[[32020,45561],[0,42],[0,41],[1,67]],[[32021,45711],[-89,-68],[0,-38],[-43,-1],[-31,-98]],[[31830,45503],[11,43],[19,58],[85,230]],[[31945,45834],[-34,0]],[[31762,45680],[7,0],[-13,-77],[-88,0]],[[31670,46063],[351,3],[-1,76]],[[32020,46408],[0,-12],[-109,-63],[-65,0],[-87,115],[-88,-6],[0,6],[0,21],[88,56],[0,37],[88,-37],[86,-39],[87,-33]],[[32021,46601],[-55,-1],[-32,0],[-87,0],[-88,0],[-88,-1]],[[31671,46599],[-59,-1],[-84,-1],[-1,0],[-100,-57],[-16,0],[94,-50],[35,-21],[-20,-105],[-24,-10],[0,43],[-83,65],[-13,0],[0,44],[-33,13]],[[31174,46512],[58,-58],[88,-13],[0,-48],[0,-18],[0,-48],[-88,-3]],[[31232,46324],[0,-68]],[[31232,46256],[88,-1],[0,-7],[0,-74],[88,1],[88,2],[0,-38],[-66,-1],[-18,-77],[-92,-2],[0,77],[-88,-3],[-88,-2],[0,52],[88,-21],[0,94]],[[31232,46256],[-87,-2],[-1,68],[88,2]],[[31232,46324],[-1,38],[0,48],[-87,12],[0,-20],[-95,-6],[0,-77],[-109,-38]],[[30940,46281],[21,-14],[0,-48],[0,-26],[-88,-19],[67,107]],[[30940,46281],[-26,-3]],[[30914,46278],[-171,-159]],[[30743,46119],[32,-20],[9,-4],[0,-44],[0,-77],[-83,1],[-99,-38]],[[30602,45937],[99,-1],[83,0],[1,-116],[131,2]],[[30916,45822],[132,77],[1,80],[0,74],[96,2],[-1,-32]],[[31232,46014],[88,2]],[[31320,46016],[92,14],[83,-24],[0,-20],[110,76],[-54,1],[28,76],[91,17],[0,-93]],[[31584,46329],[-1,36],[0,23],[88,1],[0,-58],[-87,-2]],[[30520,45744],[-53,114],[49,46]],[[30433,46128],[-89,-1],[1,-230],[79,-76],[3,0],[-55,-52]],[[31316,46694],[72,129],[15,14],[91,-51],[0,-44]],[[31583,46766],[-1,17],[87,79],[0,42],[88,4],[89,-57],[-1,58],[24,80],[46,70]],[[31915,47059],[-52,-1],[2,77]],[[31865,47135],[-110,-1],[1,-77],[-88,0],[-28,2],[-59,-87],[0,-69],[-89,-1],[-23,0]],[[31316,46899],[2,-96],[-29,-76]],[[31111,46895],[-150,8]],[[30961,46903],[0,-48],[2,-117],[0,-74]],[[30963,46664],[102,1],[31,-88],[-131,-11]],[[30965,46566],[2,-56]],[[30967,46510],[177,2],[19,-1],[2,2]],[[31218,46563],[-32,103],[9,-7],[86,-35]],[[31138,47049],[1,-9],[-24,-62],[22,-3]],[[31137,46975],[0,-1],[105,-67],[74,-8]],[[31314,47052],[-74,-1],[-102,-2]],[[31785,47211],[-118,-2],[-88,-1],[-89,-2],[-90,0]],[[31492,47054],[-2,76],[90,2],[88,-33],[0,-3],[117,115]],[[33482,46503],[132,-4]],[[33614,46499],[-37,114],[-178,-1]],[[33399,46612],[83,-109]],[[32366,46909],[231,2],[-2,110],[-1,43]],[[32594,47064],[-87,-35],[-141,-120]],[[32194,47520],[48,0],[-101,38]],[[32141,47558],[-127,-174]],[[30063,48299],[-68,33]],[[29995,48332],[-18,5],[-100,-79],[-3,130],[0,26]],[[29696,48411],[11,-305],[144,3],[58,90]],[[32968,47837],[-1,77],[-1,76]],[[32966,47990],[-135,51],[-27,21],[-53,-1],[-50,0],[-47,-1],[67,66],[-23,14],[0,37],[0,8],[127,111]],[[32697,48294],[-104,-1],[-100,-154],[-36,-77],[-37,-77]],[[32420,47985],[151,1],[8,0],[-80,-77],[-80,-79],[-73,-71],[-45,-45]],[[32301,47714],[-43,-42],[454,5],[173,3]],[[32649,47833],[54,-1],[0,-28],[-133,28],[79,1]],[[32876,48276],[-138,-134],[49,-1],[16,-78],[48,0],[-1,79],[14,0]],[[32966,47990],[44,1]],[[33010,47991],[0,74],[-2,79]],[[32919,48143],[1,-79],[45,1],[1,-75]],[[25626,31112],[-89,24],[-89,-1]],[[25450,30983],[0,-19],[95,-80],[2,-52],[-93,-2],[-3,96],[-86,-21],[-49,0]],[[25316,30905],[-38,-77]],[[25278,30828],[0,-73],[1,-77]],[[25279,30678],[103,-1],[-13,-6]],[[25325,30370],[49,0],[82,0]],[[25456,30370],[-3,120],[49,50],[-1,32],[-45,1],[1,103],[0,1],[84,4],[-1,-108],[51,0],[80,99],[-86,12],[53,63],[8,21]],[[25252,30981],[54,-76]],[[25306,30905],[41,77],[16,0]],[[25363,31078],[-110,2],[-1,-99]],[[25149,29258],[72,0]],[[25221,29258],[4,150],[-76,-150]],[[19877,19819],[178,-79],[35,10],[54,75]],[[20052,19846],[-175,-6]],[[19877,19840],[0,-21]],[[20408,22230],[0,0]],[[47699,58140],[177,2]],[[47878,58295],[0,60],[2,58]],[[47880,58413],[-89,-79],[0,-39],[-90,-1],[-1,-71],[-1,-83]],[[46643,58007],[139,129]],[[46782,58136],[-138,-1]],[[46644,58135],[-1,-128]],[[46817,58136],[67,2],[-1,-76],[-67,-2],[0,-76]],[[46816,57984],[178,5],[1,114],[0,37]],[[46995,58140],[1,76],[-88,75],[-88,-1],[-2,-120],[-1,-34]],[[49819,59509],[-89,1],[-103,0]],[[49627,59510],[1,-76],[98,-76]],[[49726,59358],[3,37],[89,76],[1,38]],[[47793,60043],[83,-31],[95,154]],[[47971,60166],[2,114]],[[47973,60280],[-85,1],[-3,28],[1,57]],[[47453,60316],[-1,-109],[-2,-78]],[[47277,60285],[176,31]],[[47454,60367],[-97,-6]],[[47278,60362],[-1,-77]],[[48152,60376],[176,-18],[-1,77]],[[48152,60430],[0,-54]],[[49202,60741],[62,0],[43,4]],[[49379,60742],[0,76],[-115,0],[-62,-77]],[[48800,60700],[-120,69],[-60,-28]],[[48620,60741],[0,-18],[60,-56],[0,31],[120,2]],[[47887,60438],[89,2]],[[47976,60440],[0,5],[89,-3],[3,146]],[[47893,60742],[-84,-1],[-90,0]],[[47719,60741],[0,-78],[-85,0]],[[47634,60663],[-1,-76],[-88,1],[1,46],[1,31],[87,-2]],[[47634,60663],[2,77]],[[47636,60740],[0,38],[-120,-37],[-55,1],[-88,2],[-88,0]],[[47285,60744],[-2,-153],[-44,1]],[[47239,60592],[41,-145]],[[47280,60447],[1,68],[49,-1],[36,-77]],[[47366,60437],[90,2],[59,-1],[24,74],[92,-2],[-1,-71]],[[47714,60439],[1,71],[0,1],[93,-1],[-4,-71]],[[47266,61510],[33,133],[41,-7],[2,-127],[-45,0],[-3,-153]],[[47294,61356],[32,0]],[[47442,61523],[-28,-16],[-7,117],[82,-5],[-47,-96]],[[47649,61505],[1,52]],[[47650,61557],[-88,54],[-71,14],[6,42],[65,-8],[88,-1]],[[47650,61658],[0,154],[-32,125]],[[47618,61937],[-78,29],[-42,0]],[[47498,61966],[0,-152]],[[47498,61814],[-1,-68],[0,-6],[-109,16]],[[47388,61756],[-10,-70],[-66,10],[-3,29],[19,91]],[[46996,61744],[-46,2]],[[46950,61746],[-1,-77]],[[46949,61669],[173,-3],[0,-77],[-175,1]],[[46947,61590],[-2,-78],[176,-2],[145,0]],[[50001,61609],[2,38],[1,74]],[[50004,61721],[-88,2],[-75,-19],[-31,12]],[[49810,61716],[-33,-65]],[[49825,61650],[34,-1],[54,-1],[29,-1],[59,-38]],[[50091,62257],[23,0],[135,74]],[[50656,62979],[3,76]],[[50659,63055],[3,76]],[[50669,63246],[-3,77]],[[50363,63320],[-4,-93]],[[50359,63227],[-1,-58],[-54,2],[-82,-76],[0,77],[-87,2],[-88,0]],[[50047,63174],[-1,-77],[-1,-76],[-1,-191]],[[50044,62830],[171,0]],[[50215,62830],[7,113],[132,-40]],[[50514,63016],[-157,1],[-1,43],[64,-5],[74,0],[50,21],[3,100],[36,0],[20,0],[2,-120],[-34,-4],[-23,-33]],[[50746,63131],[0,-38]],[[50746,63093],[133,-3],[2,77]],[[50881,63167],[-45,1],[46,87],[-132,-10]],[[51100,63202],[-79,76]],[[51100,63202],[0,0]],[[48082,65103],[61,-5]],[[48143,65098],[-45,76]],[[35693,43989],[0,0]],[[51553,80778],[106,-127],[74,-128]],[[51733,80523],[37,145],[153,38],[-137,42],[-47,7],[-47,7],[-139,16]],[[50134,81385],[-24,-34],[-2,-1],[-38,-47],[-36,-42]],[[50034,81261],[93,-13],[38,-17],[4,-2]],[[50169,81229],[57,-19],[33,-11],[90,-65],[-1,-7],[-29,-90],[61,-63]],[[50380,80974],[77,156],[14,31],[8,31],[-100,55],[-103,49],[-142,89]],[[48523,80170],[134,-8]],[[48657,80162],[0,57]],[[48657,80219],[-212,16]],[[48445,80235],[78,-65]],[[48154,80142],[26,40]],[[48175,80226],[-109,-25]],[[48981,81909],[14,2]],[[48995,81911],[117,-40]],[[49478,81968],[-135,113],[-53,35],[-99,65]],[[49112,82232],[-117,61],[41,86]],[[49036,82379],[-186,-94],[-201,-102],[-66,-26],[-62,7]],[[48521,82164],[30,-11],[-17,-91],[-55,9],[-93,15],[-5,0],[39,26],[47,33]],[[48467,82145],[-79,30],[-35,-14],[-74,-50],[-18,47],[107,126]],[[48368,82284],[-62,2],[-40,38]],[[48266,82324],[-47,-100],[-121,-133]],[[48037,81993],[102,-1]],[[48232,81950],[32,73],[38,13],[17,-23]],[[48319,82013],[117,-28]],[[48436,81985],[11,52],[24,-4],[66,-11],[6,-52]],[[48543,81970],[136,-22],[101,-4]],[[48780,81944],[3,0],[14,-1]],[[48797,81943],[15,74],[11,70],[168,-27],[-18,-69],[8,-82]],[[48182,81675],[-69,140],[-43,55]],[[48070,81870],[-107,103],[-1,20]],[[47864,81981],[67,-200]],[[49416,82483],[-35,87],[5,65],[135,0],[-15,133],[-133,-1],[0,16],[0,57],[0,25]],[[49373,82865],[-177,-5],[0,81]],[[49196,82941],[71,59],[107,95],[-2,-77]],[[49550,83114],[13,68],[15,53]],[[49578,83235],[-43,-38],[-74,38]],[[49381,83277],[-69,34],[-67,62],[-16,16]],[[49229,83389],[-32,-1],[-62,1],[-23,-1],[-24,90]],[[49088,83478],[-147,-57]],[[48941,83421],[38,-34],[41,-74],[1,-66],[0,-49],[0,-52],[0,-23],[0,-30],[-96,0],[-39,0],[-45,0],[-87,0]],[[48754,83093],[0,-58],[0,-44],[0,-51],[0,-76]],[[48754,82864],[134,0],[133,-3],[0,-113],[-41,-114],[-35,0]],[[48945,82634],[75,-78],[0,-28],[56,-108]],[[49233,82501],[69,-99],[114,81]],[[48754,83093],[57,313]],[[48811,83406],[-94,-128],[-122,-184],[-118,-226]],[[48477,82868],[63,-5]],[[48540,82863],[40,77],[155,154],[19,-1]],[[50887,82360],[117,70],[87,-19]],[[51091,82411],[23,123],[137,-65]],[[51251,82469],[-120,162],[-38,42]],[[51093,82673],[-57,-67],[53,-57],[-50,20],[-30,-52],[-97,92],[-126,-114],[-1,1],[-98,101],[-43,52],[259,29]],[[50903,82678],[-73,87],[-195,2],[1,-120],[-47,-5],[-116,-2],[-194,-14]],[[51449,82961],[149,-37]],[[51598,82924],[129,53],[9,1]],[[51736,82978],[-97,59],[-89,-4],[-11,34],[-95,48],[-32,-12],[-10,-63],[-22,-4]],[[51423,83220],[112,0]],[[51535,83220],[-43,75]],[[51492,83295],[-75,-51]],[[52510,83409],[-83,-8]],[[52427,83401],[147,-39]],[[51883,83060],[1,-83]],[[51884,82977],[78,-1],[117,8]],[[51882,82935],[2,42]],[[51884,82977],[-101,2],[-47,-1]],[[51736,82978],[91,-44],[33,0],[22,1]],[[52109,82634],[15,48]],[[52109,82634],[0,0]],[[52585,82600],[146,56]],[[52612,82740],[-11,3]],[[52376,82908],[-1,29],[17,63],[93,-12],[40,2]],[[52525,82990],[2,1],[62,31],[92,79],[120,9],[-48,140]],[[52233,83048],[6,-43],[5,-29],[-147,-78],[117,-50],[32,-56],[-69,-51],[-48,4]],[[52133,82697],[-9,-15]],[[52124,82682],[92,-5],[96,39],[-2,-99],[-73,-6],[-128,23]],[[52109,82634],[-13,-44]],[[52096,82590],[139,-54],[58,-19]],[[52326,82493],[47,24],[51,57],[72,41],[26,-100]],[[53142,82977],[4,-20]],[[53252,83016],[-121,40]],[[53201,81931],[177,-3]],[[53378,81928],[176,-2],[0,-41],[-2,-37]],[[53552,81848],[159,-78],[17,113],[88,-1]],[[53816,81882],[1,47],[89,0],[1,106],[73,-3],[104,1],[-1,-77],[0,-29],[87,-1],[41,0]],[[54211,81926],[71,5],[96,20]],[[54394,82142],[-157,-45],[-155,-25],[-76,-40],[-175,48],[-139,41],[-16,109],[6,30]],[[53682,82260],[-124,-41],[-176,-15],[-38,22],[-31,21]],[[53313,82247],[-15,-49],[-96,-2],[-8,31],[-78,-106],[-88,1]],[[53027,82045],[88,-1],[89,17],[-1,-6],[-1,-57],[0,-8],[-1,-24],[0,-35]],[[52706,82278],[35,-6]],[[53017,82208],[1,3]],[[52284,81914],[-12,62],[-35,20],[60,54],[46,93]],[[52343,82143],[-144,-2],[-51,2],[-135,-51]],[[52537,81794],[-119,-2]],[[52418,81792],[85,-46]],[[53972,81791],[43,90]],[[54015,81881],[-23,0],[-87,1],[-89,0]],[[53816,81882],[0,-75]],[[53816,81807],[88,-1],[62,28],[6,-43]],[[25886,37077],[82,-19],[23,21],[-105,-2]],[[26139,37035],[-66,75]],[[26073,37110],[-77,-31],[58,-180]],[[26054,36899],[182,24],[-31,37]],[[26205,36960],[-122,3],[56,72]],[[24267,36649],[11,40],[24,95],[75,2],[40,1],[-1,-20]],[[24416,36767],[98,-6],[77,-6],[132,-10]],[[24723,36745],[44,66]],[[24767,36811],[-120,35],[-59,-21],[-43,-6],[-15,101],[81,-18],[152,-35]],[[24763,36867],[0,2]],[[24763,36869],[-1,30],[-1,39]],[[24239,37096],[90,-109],[-60,4]],[[24269,36991],[-15,-55]],[[24254,36936],[22,-1],[-8,-46],[17,-106],[-53,-1],[-18,-1],[-8,154]],[[24206,36935],[-57,-2],[-29,-1],[-61,-2],[-22,-1],[-66,-5],[-42,2],[-71,-2]],[[23858,36924],[18,-37],[0,-53],[16,-61]],[[23892,36773],[64,2],[65,2],[44,1],[2,-83]],[[24067,36695],[9,12],[90,-37],[101,-21]],[[24292,35556],[174,39]],[[24466,35595],[-3,52],[-131,61],[-46,-1]],[[24286,35707],[-89,-2],[-87,-1],[-3,76]],[[24107,35780],[-88,-4],[-88,-1]],[[23931,35775],[3,-76],[-89,-2],[-2,75]],[[23843,35772],[-87,-2],[2,-75],[1,-34],[4,-119],[2,-76],[2,-77]],[[23767,35389],[137,4]],[[23904,35393],[-95,74],[44,1],[88,2],[3,-76]],[[23944,35394],[88,2],[88,2]],[[24120,35398],[-24,76],[20,76],[88,3],[88,3]],[[25806,30598],[60,47],[1,8]],[[25871,30688],[-90,-38],[25,-52]],[[25892,30516],[102,-25],[72,-4],[-8,-50]],[[26058,30437],[106,23]],[[25907,30614],[-7,-61]],[[25900,30553],[-1,-10],[-7,-27]],[[26243,30837],[81,-1]],[[26243,30837],[0,0]],[[26123,30989],[-105,-25],[-86,27],[-17,-180]],[[26179,30989],[72,98]],[[26251,31087],[-14,28],[-87,-45]],[[26150,31070],[-27,-81]],[[26225,31370],[2,-70],[90,-80],[20,6],[-13,143]],[[26426,31369],[-66,0]],[[26426,31369],[0,0]],[[18834,44497],[12,-117]],[[18860,44677],[-131,-60]],[[19947,44684],[71,41]],[[20039,44848],[191,185]],[[20361,44963],[52,92]],[[20340,45051],[-50,-125]],[[19745,45521],[-47,-26],[53,-138]],[[20214,45309],[208,-94]],[[20481,45186],[51,94]],[[18542,43751],[115,-73]],[[18846,44380],[-35,-7]],[[18811,44373],[-179,-63],[146,-91]],[[19036,45114],[-78,-67]],[[18851,44914],[-29,-133]],[[18822,44781],[101,-11],[46,-67]],[[21287,45784],[-9,3],[137,142]],[[21415,45929],[-178,90]],[[21109,45786],[104,-18],[40,-109]],[[21253,45659],[140,-24],[-110,149],[4,0]],[[20238,46171],[-171,-11]],[[20067,46160],[-11,-33],[-34,-58]],[[19973,46003],[0,0]],[[19855,45878],[-87,-42]],[[21392,46216],[62,75],[-160,-14],[-21,103]],[[21273,46380],[-275,-34]],[[21226,46553],[100,3]],[[21326,46556],[114,134],[-24,106]],[[20719,46926],[48,-162],[34,-17],[-42,-79]],[[20769,47203],[-41,-238]],[[21062,47389],[-14,-87]],[[21971,47235],[55,62]],[[22117,47361],[117,61],[151,-28]],[[22385,47394],[-63,110]],[[22381,47658],[0,57],[189,-23],[-72,198]],[[22498,47890],[-138,22]],[[20943,47484],[119,-95]],[[21128,47586],[-154,7],[-31,-109]],[[21469,47753],[-168,-89]],[[22501,45717],[59,50]],[[22260,45839],[-4,-19]],[[22256,45820],[-3,-19]],[[22154,45773],[-126,-58],[-127,-195]],[[21901,45520],[5,-4]],[[22768,46373],[-6,41]],[[22735,46462],[-3,2],[-65,27],[-122,-110],[-140,-218]],[[23084,45823],[1,79]],[[24038,46169],[-6,141],[-174,-3],[-1,30]],[[23811,45839],[141,-19],[113,-140]],[[23480,45833],[214,17]],[[23550,45961],[-70,-128]],[[23600,46086],[59,-6]],[[23777,23960],[122,6],[118,135],[72,18]],[[23265,24435],[50,-15],[69,-37]],[[23352,24497],[-87,-62]],[[24106,24126],[84,-40]],[[24190,24086],[-102,151]],[[24110,24333],[-76,16],[114,19]],[[24148,24368],[0,131],[-10,129]],[[23677,24607],[88,88]],[[23765,24695],[-70,23]],[[23695,24718],[-5,-83],[-125,-51]],[[23538,24569],[-86,12]],[[23452,24581],[-16,-104]],[[25814,23503],[82,-222]],[[25861,23594],[-47,-91]],[[26042,24293],[-75,-1],[-64,-40],[-66,-1]],[[25687,24173],[-106,-54],[51,-63],[123,-73],[177,-74],[122,-130],[7,22],[47,90],[-2,95],[1,81]],[[26519,26656],[28,80]],[[26547,26736],[-46,47]],[[26184,26916],[-130,16]],[[26054,26932],[-5,0]],[[25896,26839],[2,-50]],[[26508,27047],[-3,115],[-15,-38],[-136,-1],[-13,9]],[[26341,27132],[-22,-115]],[[26319,26937],[-12,-62]],[[24914,28259],[89,6]],[[25003,28265],[-4,206]],[[24999,28471],[0,18]],[[24999,28489],[-19,1],[-129,-76]],[[20556,30349],[39,109]],[[20484,30478],[-41,0]],[[20443,30478],[-75,-12],[188,-117]],[[21994,29922],[-10,28]],[[21857,29915],[-26,-38]],[[24283,42388],[3,1]],[[24620,43028],[-4,155],[1,18]],[[24476,43483],[-57,228]],[[24419,43711],[-164,-83],[2,-147]],[[23713,42547],[182,23],[-2,66],[31,103],[178,73],[-1,-98],[3,-118],[-5,-161]],[[25474,43599],[67,-6]],[[25541,43593],[20,5],[14,113],[79,3],[-3,159]],[[25651,43873],[-147,-2]],[[23500,42548],[0,15]],[[23311,42601],[43,-54]],[[23512,42895],[-115,-5]],[[22824,42168],[2,190]],[[22609,42351],[66,-95],[-76,-65]],[[20651,42500],[213,19],[57,61]],[[21093,42938],[8,48],[7,50]],[[20722,43598],[12,-15]],[[20500,42799],[-39,-75]],[[21991,42953],[104,42],[99,53]],[[22194,43048],[25,36]],[[21437,43902],[36,152],[36,4]],[[21430,44273],[-26,28]],[[21606,43539],[9,13]],[[21684,43120],[-119,95]],[[21726,43255],[-11,-100]],[[22883,45312],[5,99]],[[22221,44706],[111,2],[-23,-119],[115,0],[-16,50]],[[22598,44600],[53,40],[101,16],[37,115]],[[22789,44771],[-7,14]],[[21714,44664],[-76,-101]],[[22057,45320],[-24,-47]],[[21611,45073],[81,-26]],[[21815,45143],[-276,96]],[[21603,44508],[-106,-19],[16,-149]],[[20538,43863],[6,-22]],[[20924,44146],[-244,6]],[[20039,43763],[161,-1]],[[20296,43772],[-119,101],[36,126],[91,33],[67,-97],[115,33]],[[20057,44072],[-85,-101],[-47,-82]],[[21166,44191],[-34,2]],[[20442,44376],[-152,-85]],[[23651,43108],[-61,79],[-318,79]],[[23272,43266],[142,-84],[-8,-137],[164,-35],[5,-119]],[[22272,42533],[-65,179]],[[22207,42712],[-108,-26],[-52,-273]],[[22393,43484],[-117,-125],[-24,2],[-141,-47]],[[22423,43132],[96,6],[-2,128]],[[22453,43430],[-60,54]],[[19393,42604],[120,70],[69,99]],[[19582,42773],[-140,9],[-131,-95],[-65,-5],[-198,-75]],[[18978,42359],[99,-135]],[[19077,42224],[9,8]],[[19244,42413],[34,61]],[[19076,42746],[72,53]],[[19124,43048],[-19,14]],[[18733,42948],[-52,14],[-57,48]],[[18780,43244],[49,54],[30,20],[140,147]],[[2486,2367],[161,6],[44,-132],[123,82],[-140,150],[44,112]],[[2718,2585],[-25,171]],[[2693,2756],[-197,-163]],[[41100,33004],[35,110]],[[41022,33106],[-27,-7]],[[41117,32887],[-1,23],[-16,94]],[[40776,33272],[-57,-65],[-35,-16]],[[40684,33191],[-1,-84]],[[40871,33190],[19,72],[-111,3],[-3,7]],[[31608,35748],[76,76],[0,11]],[[31684,35835],[-278,27]],[[31106,35873],[-258,-24]],[[31103,35629],[15,19],[95,17],[107,-140]],[[33239,35085],[31,30]],[[33144,35100],[-80,-42]],[[33296,35001],[127,-81],[128,138],[171,-6]],[[33722,35052],[90,33]],[[33812,35085],[-275,-23],[-229,38]],[[33308,35100],[-12,-99]],[[42725,56116],[83,-49]],[[42677,56456],[0,-77],[1,-77]],[[43163,56300],[-133,0],[78,76]],[[42635,56302],[-88,1],[89,-77]],[[44005,56521],[-175,0],[-323,7]],[[43825,55994],[58,-1]],[[42720,55996],[-5,0],[-211,42],[-85,0]],[[43648,55838],[176,-2],[1,158]],[[43827,55542],[-91,-13]],[[42067,56040],[-175,2],[1,-193]],[[41893,55849],[-2,-230]],[[41890,55464],[114,-149]],[[42300,55081],[-3,-64],[88,-11],[207,-2]],[[42831,54926],[51,0]],[[42973,54928],[32,-29]],[[43361,54464],[169,-5]],[[43530,54459],[1,154]],[[44154,54769],[89,0],[91,0],[251,1]],[[44585,54770],[-251,152],[-114,70]],[[44220,54992],[-130,84]],[[43791,54922],[100,0]],[[44066,54922],[62,0]],[[43181,54554],[0,-12]],[[44176,55582],[-177,-34]],[[43900,55687],[-74,0],[1,-145]],[[45187,56602],[-44,0]],[[45318,56453],[59,71],[-60,1]],[[46113,57528],[7,-13]],[[46463,57639],[4,191]],[[46115,57733],[-2,-205]],[[46288,57448],[87,1]],[[45078,58746],[-19,0]],[[45059,58746],[-4,-426],[-2,-45],[1,-1],[269,12]],[[42358,59364],[79,121],[-80,4]],[[42357,59489],[-87,-124],[88,-1]],[[38400,62459],[181,-2]],[[38581,62457],[0,151],[-181,2],[0,-151]],[[37170,62462],[118,-1]],[[37257,62537],[-87,-75]],[[37238,62310],[86,60]],[[37273,62384],[-35,-74]],[[37127,55852],[27,25]],[[37126,55994],[1,-142]],[[36365,54780],[-253,-189],[274,118]],[[20159,26401],[131,3]],[[20279,26664],[-140,-2]],[[20139,26662],[1,-40],[1,-68],[14,1],[4,-154]],[[2108,12827],[97,-135]],[[2165,12841],[-57,-14]],[[2555,12522],[59,-27]],[[2614,12495],[73,60],[2,96]],[[2769,12896],[-29,11]],[[2593,13076],[-55,30]],[[3278,11668],[151,35],[48,212]],[[3244,12100],[-19,-11]],[[3225,12089],[-73,-155]],[[3459,11479],[-204,130]],[[3226,11533],[-51,-133]],[[3175,11400],[135,93],[149,-14]],[[3126,11354],[-129,-91],[-21,-132],[-125,77]],[[2851,11208],[22,-231]],[[2873,10977],[25,-78]],[[2898,10899],[138,81]],[[3116,11132],[-1,15],[255,25],[-82,77]],[[2386,14725],[97,8],[18,5]],[[2426,14802],[-40,-77]],[[2572,14790],[49,36]],[[2621,14826],[35,116],[25,90]],[[2681,15032],[-68,-2],[20,77],[-141,-6]],[[2492,15101],[-5,-111],[-18,-78],[-35,-96]],[[1489,14799],[-97,120]],[[1392,14919],[9,-124],[88,4]],[[86602,93238],[-4,-76],[137,-6],[64,-2],[70,150],[-129,49],[-1,-39]],[[85609,94285],[-6,-154],[86,-2],[8,152],[-88,4]],[[86596,94560],[133,-15],[133,-5],[13,235]],[[86415,94713],[94,-122]],[[86409,94880],[-35,-87]],[[88135,96468],[67,-23],[114,-43]],[[88296,96500],[-34,19]],[[88262,96519],[-46,-1]],[[88216,96518],[-81,-50]],[[86335,96112],[81,62]],[[86416,96174],[-112,5]],[[85122,96761],[164,-6],[-161,76]],[[85125,96831],[-3,-70]],[[86814,97311],[122,70]],[[86936,97381],[5,78],[-176,7],[-5,-77]],[[86709,96701],[3,36]],[[86712,96737],[9,119],[-112,5]],[[87250,98058],[-65,8]],[[50448,69631],[157,114]],[[50703,69836],[-3,144]],[[50706,70073],[27,33],[68,96],[82,-90],[91,-25]],[[50525,70234],[-22,-18]],[[50418,70165],[-138,-107],[-192,1]],[[49384,70064],[-2,-153],[-88,-152]],[[49294,69759],[314,-2],[126,-1]],[[50091,70174],[4,191],[-178,1],[-89,1],[-88,0]],[[51062,70075],[88,-29]],[[51334,69950],[189,197]],[[51150,70046],[184,-96]],[[51685,70426],[208,-118]],[[51893,70308],[-29,347],[-177,-43],[0,3],[2,65]],[[51689,70680],[-178,1],[-353,-4],[-89,7]],[[50587,70386],[12,80],[-92,-30]],[[50417,70521],[32,-3]],[[49568,70982],[4,-249]],[[49568,71133],[0,-72]],[[50899,71165],[87,-39],[3,153]],[[50278,71132],[-1,-80]],[[49927,71286],[-176,1]],[[50815,71434],[1,76],[1,77],[-200,1]],[[49740,70367],[-4,75],[1,80]],[[49518,70702],[-12,-8],[-291,63],[-1,-80],[-176,2]],[[49038,70679],[-4,-307],[176,-1],[177,-2]],[[50459,71589],[-176,1],[-2,-153]],[[51207,76277],[131,-28],[90,-96],[75,94]],[[51503,76247],[-53,34]],[[51450,76281],[-243,-4]],[[46053,72981],[0,-166]],[[46053,72815],[175,22],[76,-2]],[[46400,72834],[172,-15],[-174,168]],[[47881,69077],[1,-142],[165,142]],[[48057,69230],[0,76],[-177,1],[0,-77]],[[48057,69087],[0,-10],[0,-77],[177,0],[-1,153]],[[46818,68090],[0,230],[-180,0]],[[46638,68320],[-1,-229],[181,-1]],[[47257,68087],[88,-1]],[[47257,68240],[0,-153]],[[47610,66248],[91,75],[0,78],[-176,1],[-4,-153],[89,-1]],[[48499,67464],[-264,3],[0,-153],[-1,-153],[285,-5]],[[55966,67843],[90,-1],[-50,144],[-167,69]],[[55839,68055],[127,-212]],[[63696,67336],[177,-4],[87,1]],[[63960,67333],[3,77],[2,75],[3,141]],[[64146,67674],[0,114],[-176,6]],[[58963,75842],[-91,-111]],[[59224,75571],[18,1]],[[59242,75572],[22,144]],[[56018,72830],[-76,113]],[[55897,72929],[-1,-108]],[[56169,73027],[3,-118],[191,67]],[[56347,73179],[-176,4],[-2,-156]],[[52246,72183],[269,-5]],[[52429,72333],[-180,3],[-3,-153]],[[52608,72330],[-90,2]],[[51789,71575],[42,0]],[[51831,71575],[48,153]],[[51879,71728],[-133,2]],[[51522,71579],[119,-2]],[[51700,71730],[-174,156]],[[51526,71886],[-2,-154],[-2,-153]],[[42919,60601],[-1,-153],[133,0],[176,-1],[0,153]],[[44364,60755],[-76,2]],[[43931,60291],[-1,-153]],[[43930,60138],[179,-2],[-3,-152],[176,-2]],[[44370,59981],[89,0],[11,59]],[[44621,60135],[20,11],[174,143]],[[44815,60289],[-222,1],[0,32]],[[43932,60597],[1,-11]],[[45182,62865],[-5,76],[55,-38],[-50,-38]],[[45176,62788],[110,0],[0,114],[2,154],[-175,0],[-1,-115],[-1,-38],[-88,0]],[[45022,62750],[87,-77],[1,115]],[[13179,31294],[309,-7]],[[13488,31287],[-42,62],[-14,49],[-35,145]],[[13183,31490],[-9,-101],[5,-95]],[[15683,31690],[-7,152]],[[15676,31842],[-286,-27]],[[15390,31815],[0,-54],[294,-90],[-1,19]],[[16051,32564],[51,189],[24,26]],[[16126,32779],[-238,-68],[-18,-146],[-44,-32]],[[15826,32533],[-241,-159]],[[15585,32374],[188,-32]],[[15773,32342],[137,46],[71,2],[166,-72]],[[16147,32318],[-2,2]],[[34910,17305],[71,98]],[[34981,17403],[-92,-38]],[[34723,17339],[20,-15]],[[34858,17356],[-52,72]],[[34806,17428],[-83,-89]],[[57853,81907],[203,-3],[70,81],[131,115]],[[57600,82468],[54,37]],[[57654,82505],[-60,57]],[[57032,82098],[82,47]],[[57114,82145],[-118,94]],[[56407,81389],[298,-3]],[[56836,81436],[183,-101],[-16,190],[0,7],[0,59]],[[57003,81591],[-62,241]],[[56212,81672],[-102,-122]],[[55996,81673],[1,-8]],[[55997,81665],[178,183],[-10,75]],[[55604,81745],[9,11]],[[55043,81992],[48,-245],[58,-62],[180,88]],[[54672,82520],[85,-16]],[[54683,82355],[-153,59]],[[54936,82404],[-130,-74]],[[56233,82671],[-46,-135],[-16,1],[-140,-1]],[[57092,82333],[59,56]],[[57233,82463],[43,6]],[[55255,83457],[-129,-49],[-157,-60]],[[56021,83075],[89,52]],[[56680,83481],[-57,1]],[[56447,83489],[-11,2],[-75,9]],[[56250,83571],[-14,-72],[-218,-4]],[[57427,83388],[139,75],[29,-116],[-158,-1]],[[57726,83288],[-45,66],[105,120]],[[58807,83253],[161,30]],[[58968,83283],[-6,15]],[[58799,83953],[-2,-1]],[[58362,83549],[-90,-326],[-113,-25]],[[58069,83617],[68,-19]],[[57896,83580],[90,66]],[[59174,84685],[-108,-9],[-174,-8],[-28,1]],[[58864,84669],[-66,-279]],[[58708,84106],[122,-37]],[[58695,84570],[-3,69]],[[58693,84657],[0,17]],[[58693,84674],[7,114]],[[56113,84231],[-16,-130],[94,-14]],[[56215,84070],[38,-98]],[[55860,84580],[-167,-78]],[[55769,84289],[171,46],[6,-3]],[[55521,84184],[-188,-189],[164,71],[52,-48],[126,186]],[[57124,85344],[-176,-9]],[[56615,85366],[-17,9]],[[56598,85375],[-79,-120]],[[58286,85791],[2,77]],[[58678,86934],[85,-6]],[[58763,86928],[-31,97]],[[58653,87184],[-119,84]],[[58116,87298],[203,-8],[-88,138]],[[57835,87380],[-1,-2]],[[58223,87939],[-191,-84]],[[58542,83076],[127,-104]],[[58928,82795],[-49,75]],[[58810,83098],[118,-37],[44,-183],[22,-22]],[[57553,82823],[-2,-140]],[[57428,82802],[121,23]],[[57851,83200],[-54,27]],[[63271,83347],[65,-73]],[[63535,83226],[20,3]],[[63909,83363],[-45,-62],[174,-2],[93,149]],[[62721,83209],[154,-15]],[[62279,83219],[89,-2]],[[62986,83431],[48,8]],[[63030,83723],[-111,48]],[[62748,84018],[-107,-21],[-205,-45]],[[62919,83771],[60,160]],[[63396,83769],[-229,-24]],[[63112,84298],[-106,-56]],[[63560,84786],[-117,-92]],[[62267,84420],[107,-28],[153,-31]],[[62880,84368],[-3,28],[147,46]],[[61811,83571],[-13,-172]],[[60849,84451],[-117,57],[-5,-69]],[[60727,84439],[-3,-10]],[[62390,84009],[62,157],[40,48]],[[62492,84214],[-175,71],[-87,28],[-3,142]],[[62247,84829],[7,-93]],[[61580,85061],[-117,6]],[[61075,84856],[31,-18],[109,-75],[-17,-115]],[[61811,84871],[76,3]],[[61710,85047],[-83,5]],[[61483,83042],[162,-4],[13,0]],[[61571,83266],[-84,-86],[-4,-138]],[[60288,82918],[123,-6]],[[60763,83262],[-109,-9],[-114,91]],[[60259,83101],[29,-183]],[[60766,83331],[-3,-69]],[[60057,82801],[1,7]],[[60058,82808],[78,162]],[[59208,82546],[171,142],[-103,88],[-14,-6]],[[59160,82722],[-23,-10]],[[60317,85177],[-38,-11]],[[59994,84894],[65,44]],[[59888,85083],[-4,-4]],[[60339,85389],[60,24]],[[60399,85413],[2,106]],[[60525,85328],[69,-75]],[[60224,84566],[149,-89]],[[60373,84477],[-104,114]],[[59503,84854],[-121,-40]],[[58383,86241],[-80,38],[-2,-103]],[[58635,86164],[127,-6],[15,163]],[[58460,86328],[0,-12]],[[58902,86518],[-3,8]],[[58689,86561],[213,-43]],[[58642,86443],[-51,1]],[[58262,86454],[-38,-136],[45,-23],[50,83]],[[60646,85823],[-65,41]],[[60587,85980],[90,-3],[180,51]],[[60857,86028],[3,97]],[[59806,86575],[-35,1]],[[59666,86577],[-18,1],[-46,51],[-132,80]],[[59423,86726],[-84,153]],[[58978,87036],[-111,-3]],[[58867,87033],[48,-149]],[[59636,86872],[176,14]],[[60247,86798],[4,66],[7,87]],[[60013,87301],[91,109],[144,-78]],[[60392,87331],[-175,199]],[[58062,91775],[-3,5]],[[57899,91845],[-111,-60],[60,-71],[60,-95]],[[57908,91619],[99,120],[55,36]],[[57135,85886],[176,-3],[-1,-49]],[[57310,85803],[42,-72]],[[57670,87186],[-176,91]],[[56967,87163],[-60,-11],[44,81],[16,-70]],[[56984,87512],[-68,-149],[-82,-135],[82,-112],[127,-88],[130,-116]],[[57562,87514],[110,43],[101,-62]],[[56133,84809],[-100,-104]],[[54260,83120],[-25,182]],[[54040,83329],[-18,-94]],[[53401,83365],[-106,-13]],[[54872,84488],[333,-4]],[[54872,84488],[0,0]],[[59708,77705],[-91,2]],[[60170,77540],[178,-4]],[[60348,77536],[9,232]],[[59388,77711],[-58,1]],[[58874,78029],[-25,77],[2,77],[2,76]],[[58683,78340],[-65,-43],[-31,-108],[0,-79],[-1,-77],[-88,1],[-101,2],[7,-154],[-8,-307],[175,-3]],[[58742,77414],[355,-5],[139,-2],[39,0]],[[59283,77561],[-39,0],[-8,0],[-136,3],[3,76],[91,-2],[90,-2],[-1,-75]],[[59123,78409],[2,38]],[[59214,78446],[45,-1]],[[59259,78445],[134,-3]],[[59308,78637],[-185,37],[-49,-73],[-212,-212]],[[59767,78937],[-118,2],[-91,1]],[[59777,78629],[67,-3]],[[59888,78625],[134,-3]],[[60521,78922],[4,162]],[[60525,79084],[-133,2]],[[56735,80135],[11,-12],[32,-48]],[[56778,80075],[9,-15]],[[56787,80060],[167,-5],[25,67],[7,18],[117,-23]],[[57103,80117],[-42,159],[-70,45],[-156,33],[-84,29]],[[55498,79950],[49,-166]],[[55547,79784],[162,19],[165,-7]],[[56238,80304],[67,58]],[[56265,80735],[-208,158]],[[56057,80893],[-7,-5]],[[55572,80426],[-28,88],[32,49]],[[55217,80581],[-73,-155]],[[54724,79666],[54,68]],[[54678,79728],[46,-62]],[[55639,80962],[-60,78],[-41,8]],[[55586,80617],[232,-6],[-219,101]],[[38324,52112],[18,16]],[[38380,52023],[34,-24],[35,27]],[[38449,52026],[-99,64]],[[40549,54019],[152,152]],[[40701,54171],[-347,-2]],[[40177,53276],[0,52]],[[40068,53310],[50,-212],[59,44]],[[40003,53939],[0,-76]],[[16142,41252],[52,9]],[[16113,41632],[-33,-3]],[[16080,41629],[-81,-158]],[[16736,42043],[-11,100],[-150,-28]],[[16420,41958],[7,-144]],[[16521,41723],[62,121],[1,1],[0,-7]],[[16210,42273],[-18,-35]],[[16575,42115],[-28,205],[120,40],[119,-24],[172,37]],[[16958,42373],[193,118]],[[17151,42491],[-258,-87],[-158,80],[-113,148]],[[17336,42593],[-93,-76]],[[17336,42593],[0,0]],[[17164,42495],[77,21]],[[17164,42495],[0,0]],[[16944,42814],[9,50]],[[16953,42864],[-2,0]],[[16951,42864],[-36,7]],[[17077,42585],[80,-40],[174,53],[-172,157]],[[15482,42412],[172,25],[-52,89],[-120,-114]],[[16019,42715],[-62,86]],[[15957,42801],[-149,-31],[133,-44],[-100,-172],[79,13]],[[16149,42675],[-24,0],[-89,-29]],[[16003,42447],[76,23],[110,71]],[[16133,42856],[-4,-6]],[[16422,43060],[-158,22],[-4,83]],[[16260,43165],[7,-165]],[[16397,43241],[54,-79]],[[16882,43673],[7,188]],[[17407,43859],[-117,58],[-16,101],[-141,-188]],[[17145,43581],[231,105],[46,146]],[[16186,43447],[104,-67],[22,-97],[22,-10]],[[16334,43273],[48,47]],[[16331,43662],[-185,-179]],[[16822,44004],[-34,33]],[[5149,26961],[181,-13]],[[5330,26948],[-4,73],[25,68]],[[5351,27089],[-83,12]],[[9235,27529],[68,-1],[27,-93]],[[9330,27435],[39,57],[26,51]],[[9395,27543],[1,2],[10,176]],[[9406,27721],[-47,-72],[-195,-21],[69,-66],[2,-33]],[[10527,30328],[-19,-44]],[[10576,30076],[174,77]],[[10750,30153],[36,12]],[[10786,30165],[-79,85],[121,-36],[19,94]],[[10847,30308],[-101,9],[-34,133]],[[10426,30067],[114,11]],[[10446,30127],[-20,-60]],[[33232,48624],[105,103]],[[33211,48818],[21,-194]],[[33989,49161],[0,0]],[[33897,49467],[-175,-1],[4,-154],[-13,-179]],[[33713,49133],[8,-4]],[[33721,49129],[12,-2]],[[33733,49127],[126,116]],[[34078,49334],[-1,23],[-3,111],[-177,-1]],[[34840,49511],[35,-114],[3,-152]],[[34793,49168],[-115,-78],[291,2],[176,0],[-3,153],[-4,157]],[[35152,49765],[-189,-47]],[[35356,49551],[168,116]],[[35524,49667],[-206,0]],[[35669,49766],[123,85]],[[35787,49933],[-125,0]],[[35662,49933],[7,-167]],[[35835,50041],[0,-4]],[[36535,49856],[307,1]],[[36842,49857],[-48,151],[-1,78]],[[36793,50086],[-198,8]],[[31263,50655],[-89,76]],[[32778,52889],[-49,-1],[-127,-1],[-355,0],[2,-156],[116,2]],[[34631,53386],[176,2]],[[34807,53388],[-1,108],[-2,197]],[[34804,53693],[-176,-2],[2,-197],[1,-108]],[[50863,46572],[2,46]],[[50865,46618],[-48,30]],[[50738,46576],[27,-3]],[[24877,56680],[-6,-37]],[[24683,56873],[-30,86]],[[24653,56959],[-279,-123],[68,-84]],[[24545,56564],[-65,-17]],[[24480,56547],[50,-154],[85,33]],[[28634,60403],[2,-93],[132,-77],[73,95]],[[28643,60536],[-137,79],[-73,-95],[146,-85]],[[22070,57408],[53,60],[101,-71]],[[22516,57514],[-69,80],[-187,49],[-67,62],[3,46]],[[22196,57751],[4,39]],[[22001,57990],[4,-119],[-1,-7]],[[22004,57864],[30,-14],[161,-165],[-78,-200],[-108,111],[-109,-42],[-145,-42]],[[21755,57512],[128,-70],[83,-45]],[[22035,57342],[33,-64]],[[22106,57058],[0,0]],[[23015,57467],[-17,35],[-18,124]],[[22609,57379],[122,-83],[168,-181]],[[22899,57115],[12,91]],[[23251,56974],[-34,71]],[[23217,57045],[-157,12],[65,-86],[126,3]],[[24892,56843],[-132,50]],[[23949,54641],[-40,-75]],[[23909,54566],[80,-80],[133,102],[-4,79],[-169,-26]],[[19249,39476],[123,17]],[[19372,39493],[15,-2]],[[19387,39491],[-98,59],[57,104]],[[18527,39455],[-67,-147],[148,-35],[56,-33]],[[18702,39388],[-55,-12],[-95,-8],[-25,87]],[[18461,38998],[217,-36]],[[18586,39142],[-66,-79],[-59,-65]],[[19313,40607],[102,-94],[42,360]],[[19318,40715],[-5,-108]],[[18416,38418],[17,20]],[[18433,38438],[-5,3]],[[18428,38441],[-53,-44]],[[18375,38397],[-92,-119],[131,29]],[[17342,37072],[136,100]],[[17478,37172],[-83,83]],[[17345,37199],[-3,-127]],[[16456,36497],[-14,23]],[[16175,36324],[32,-21],[107,-71],[54,97]],[[30685,31789],[192,-62]],[[30877,31727],[-5,26],[87,60],[-39,124],[-107,16],[-5,6],[-123,-170]],[[29538,29868],[-127,-137]],[[30829,29919],[-56,-127],[121,-27]],[[30948,29966],[102,81],[-233,-18]],[[30797,29983],[-120,-10],[-13,-142],[160,85]],[[39230,28847],[200,81]],[[39430,28928],[35,25]],[[62464,85331],[-112,219]],[[62516,85569],[164,-12],[207,32]],[[62887,85589],[249,83]],[[63136,85672],[-181,23],[253,56],[126,12]],[[63460,85754],[82,-51],[-26,144]],[[64023,86172],[-60,71]],[[63517,85886],[27,4],[24,17],[50,50],[101,-102]],[[63719,85855],[-27,170],[151,-50]],[[64462,86087],[-129,-43],[-272,56],[-38,72]],[[63007,86273],[270,-20]],[[63519,86547],[-287,91],[3,28],[-52,-4],[22,53]],[[63621,87001],[2,31],[-36,230]],[[63217,86743],[24,-12]],[[65006,89496],[42,88]],[[65048,89584],[-111,100],[-110,-8]],[[65266,90565],[-71,-12],[-20,19]],[[65108,90612],[-92,-64]],[[64987,90531],[-94,40]],[[64650,90328],[268,11],[2,-2],[38,-25]],[[65033,90206],[137,-114]],[[65170,90092],[18,45],[184,1],[152,-80],[68,76],[23,287],[-13,29]],[[65550,90445],[-197,-34],[-31,16],[57,104]],[[65413,88289],[193,-93],[124,141],[-70,98]],[[65433,88303],[-20,-14]],[[65421,88900],[-9,-254]],[[65586,88773],[-51,162]],[[65386,89186],[27,-37]],[[65426,89330],[-158,-73]],[[65268,89257],[118,-71]],[[65027,88132],[14,96],[109,-68],[105,212]],[[65255,88372],[-51,44]],[[64884,88271],[115,-89]],[[65147,88879],[31,177]],[[65178,89056],[-198,35]],[[65412,88535],[-66,26]],[[65390,91151],[-117,-188]],[[64884,90574],[-13,25]],[[64871,90599],[-236,-144]],[[64132,90051],[-36,-3],[-70,84],[48,40],[10,9],[48,-130]],[[64175,90411],[-130,-224],[-89,-43]],[[63927,90115],[-99,-126]],[[63761,89881],[39,-10],[143,75],[-56,-68],[126,-38]],[[63856,87910],[18,12]],[[63874,87922],[-159,211],[-9,99]],[[64594,88256],[55,-82]],[[64855,88255],[29,16]],[[64383,88251],[120,2]],[[62713,88126],[0,0]],[[63458,89532],[171,-46],[68,-43],[42,80],[9,35],[-3,36]],[[63745,89594],[-6,83]],[[63735,89712],[-69,50]],[[63162,88344],[10,14]],[[62742,88914],[-127,89]],[[62500,88928],[70,-112]],[[62653,89042],[52,65],[-42,44]],[[62663,89151],[-78,-48]],[[63117,88888],[-62,88],[-103,-49],[23,-25]],[[63678,88867],[42,-53]],[[62570,88816],[-128,-109]],[[62768,87750],[-227,255]],[[62570,86840],[-8,-139],[95,-3]],[[62677,86621],[18,-63]],[[62164,86838],[-45,-38]],[[62478,86691],[-65,153]],[[61940,86843],[88,-2]],[[61568,88631],[-60,-34],[-175,-99]],[[60868,88165],[23,-18]],[[61014,88282],[-146,-117]],[[61049,88088],[-5,-109]],[[60863,87840],[-228,97]],[[60635,87937],[-106,-102],[-223,-187]],[[60306,87648],[45,14]],[[60766,87637],[-6,-152],[-2,-62]],[[60491,87062],[116,38]],[[60694,87098],[58,-1]],[[60742,87172],[-326,4]],[[60839,86943],[-1,-51],[-220,16]],[[60863,86200],[3,78]],[[30507,32845],[133,0],[74,153],[92,-2]],[[30806,32996],[88,-10]],[[30894,32986],[-16,58],[-43,67],[64,143],[-105,-4]],[[30667,33325],[73,-71],[-20,-112],[-72,-62]],[[30751,33387],[27,188],[-119,-28]],[[30659,33547],[-11,-8]],[[30648,33539],[-26,-45]],[[28987,34913],[68,1]],[[29291,34450],[168,-152]],[[29459,34298],[-10,153]],[[29449,34451],[19,76],[-132,114],[-46,59],[-39,175]],[[29160,34916],[-76,-129],[-32,-58],[-105,-13]],[[28947,34716],[93,-72],[-158,-80]],[[29146,34343],[90,-21],[2,25],[-4,3],[-2,100]],[[28926,34751],[-22,36],[-76,126]],[[28442,35131],[86,-125]],[[28795,34600],[51,40]],[[28520,34595],[-35,-227]],[[28002,34476],[63,-74]],[[27998,34719],[1,-35],[2,-127]],[[28265,34461],[135,153]],[[29003,34323],[1,-1]],[[29114,33916],[123,47],[-84,147],[-157,145]],[[28771,33258],[-34,114]],[[30444,32614],[11,31],[14,46],[38,154]],[[30361,32845],[-122,-78]],[[30239,32767],[59,-75],[-8,-77],[154,-1]],[[28272,34217],[213,132]],[[28485,34368],[-198,-2]],[[28197,33291],[55,1]],[[28193,33514],[4,-223]],[[67276,84603],[62,7],[42,-30]],[[67320,84775],[-61,-18],[-82,137],[-263,105]],[[67256,84902],[80,-121]],[[68107,84894],[-1,160],[121,15],[198,111]],[[67983,85118],[-75,88],[-6,163]],[[67464,85394],[-88,79]],[[67376,85473],[-60,-79]],[[67168,85486],[-147,92]],[[66777,85692],[-3,-7]],[[66990,84555],[137,40]],[[66540,84502],[7,1],[215,27]],[[66712,85021],[-185,29]],[[66125,84985],[-202,78],[-32,72]],[[65209,85508],[41,-239]],[[65686,84955],[84,-2],[-3,-106],[-3,-92],[111,-38]],[[65931,84695],[174,-61]],[[65250,85269],[-182,8]],[[65241,85750],[-201,-64]],[[65040,85686],[169,-177]],[[65327,85802],[-86,-52]],[[66132,85235],[276,-75]],[[66689,85786],[138,73],[51,84],[-37,218]],[[66841,86161],[-151,8]],[[65946,86003],[-166,-27],[7,129],[58,63]],[[66044,86572],[-186,-44],[-42,84],[-182,32],[-194,-99],[-202,-164],[-129,-107],[-38,-99],[-225,15],[-98,4],[-65,-202],[-215,103]],[[64465,86091],[50,-74]],[[64831,85927],[236,36]],[[65433,85950],[78,-114]],[[66196,86521],[45,201],[149,222]],[[66218,87041],[-2,-66]],[[66196,86786],[-152,-214]],[[67409,86079],[-238,-198]],[[67740,85834],[83,-156],[89,-2]],[[68376,86345],[9,229],[-88,3],[-6,-114],[-178,-32],[19,-77],[67,-2],[-49,-152]],[[68594,84964],[-112,-3],[-69,-152],[40,-72],[138,146]],[[68131,84434],[-56,115]],[[68075,84549],[-127,0]],[[69130,85089],[143,6],[37,74]],[[69310,85169],[2,77]],[[69133,85174],[-3,-85]],[[68786,84955],[97,-127]],[[68883,84828],[2,126]],[[68810,86027],[-6,-230]],[[69312,85246],[132,-3],[52,229]],[[69496,85472],[-352,11]],[[69333,87464],[80,-1]],[[69413,87463],[4,71],[3,70]],[[69595,87574],[176,-45]],[[69069,87472],[170,-7]],[[68502,87814],[113,-13]],[[68965,88003],[-12,7]],[[68771,88060],[-74,25],[-21,29]],[[68615,87801],[47,-172]],[[69941,87295],[218,-6],[155,20],[-370,63]],[[69619,88070],[-361,-7]],[[69258,88063],[-1,-138]],[[68573,86874],[88,-2]],[[68661,86872],[75,-78],[146,-4],[42,-78],[25,0],[63,-3]],[[69106,86860],[-44,34]],[[68773,87022],[-26,19]],[[66939,87391],[193,79]],[[67132,87470],[-70,93],[-155,-28]],[[66907,87535],[32,-144]],[[67351,87945],[-75,-148]],[[67276,87797],[40,-103],[84,50],[35,-63]],[[67435,87681],[105,77],[-70,126]],[[69610,88827],[117,4],[-88,105],[15,95],[170,11],[2,49]],[[70255,89389],[100,26],[-2,113],[196,-4],[13,76],[-110,39]],[[70348,89696],[-81,-123],[56,-23],[-95,-23],[-55,62],[-86,58],[-30,-15],[-161,63],[86,38],[9,41],[-84,52],[101,17],[186,-14],[-46,-64],[200,-69]],[[70241,89869],[-234,33],[-54,54]],[[69953,89956],[-76,-107],[-125,-225],[-107,-154]],[[69645,89470],[-63,-91],[-217,-138],[-177,149]],[[69188,89390],[-62,-56],[-81,-38],[-108,-147],[-195,-53]],[[68742,89096],[52,-90],[-91,-56]],[[68703,88950],[-368,-223]],[[68335,88727],[-75,-45],[-251,-152],[-54,-32]],[[67777,88424],[-201,-155]],[[67576,88269],[39,-96],[153,-9],[307,296],[257,134],[85,-102]],[[70051,88669],[247,-9]],[[70178,88817],[-88,3],[-39,-151]],[[70346,88600],[158,-233]],[[70504,88367],[40,28]],[[70544,88395],[-66,194],[53,217],[5,153]],[[70536,88959],[-177,4]],[[70038,88985],[75,-104]],[[70502,89754],[281,-112],[-32,236]],[[70751,89878],[-144,68]],[[70338,90270],[-51,-37]],[[70473,90027],[153,-45],[235,-41]],[[70861,89941],[28,18]],[[70889,89959],[6,181],[-143,73],[-263,175]],[[70489,90388],[-28,-24]],[[69627,88374],[174,-4],[174,-5]],[[69975,88365],[6,154]],[[69981,88519],[-176,4],[-168,121],[-27,183]],[[69324,88821],[141,-66],[95,-73],[66,-156]],[[69626,88526],[7,0],[-6,-152]],[[69095,88388],[24,216]],[[69119,88604],[-167,-76],[2,-84],[141,-56]],[[71664,87432],[-39,122]],[[72142,87264],[1,108]],[[71261,87351],[-5,-135]],[[71254,86441],[186,148],[154,123]],[[71256,87178],[-90,3],[-9,-229],[-88,1]],[[71069,86953],[-3,-75],[176,-5],[-16,-378],[28,-54]],[[71585,86634],[-23,-208],[195,86]],[[71981,86786],[57,63],[208,182]],[[72403,87103],[180,71],[-175,44]],[[70995,84976],[276,-14],[186,-5],[13,-14],[-6,-139]],[[71464,84804],[137,14]],[[71601,84818],[4,211],[1,52]],[[71410,85215],[-6,-104],[-73,2],[-39,0],[-74,24]],[[71487,85374],[110,-63]],[[71799,85454],[-331,15]],[[71468,85469],[19,-95]],[[72672,85080],[2,127]],[[72498,85232],[-7,-154]],[[72491,85078],[181,2]],[[72505,85384],[-354,11]],[[76381,84811],[169,41]],[[76558,85189],[-178,5]],[[76011,84668],[174,-5],[79,-78],[99,134]],[[76040,84821],[-25,1],[-4,-154]],[[76062,86048],[3,77]],[[75886,86054],[-1,-39],[-124,-99],[-138,-79]],[[75623,85837],[253,-54],[179,19],[179,134],[3,30]],[[76432,86342],[8,151]],[[76259,86500],[-178,5],[0,22],[7,141],[-176,-5]],[[75912,86663],[-4,-76],[-3,-76],[-3,-76]],[[76068,86201],[102,-4],[77,-3]],[[76247,86194],[6,153],[179,-5]],[[76423,86190],[71,-2]],[[76577,86337],[-145,5]],[[76432,86342],[-9,-152]],[[77860,87290],[-4,-79],[-177,6],[-88,4],[-86,80],[89,-3],[89,-1],[177,-7]],[[77863,87364],[-174,34],[0,11],[3,71]],[[77429,87570],[12,-36],[-34,-274]],[[77455,87089],[42,4]],[[77854,87152],[150,54],[123,-4],[82,-158],[-5,0],[-6,-154]],[[76880,86479],[89,-3],[5,152]],[[77690,86756],[-24,155]],[[77490,86918],[-2,-97],[23,-58]],[[77843,86905],[178,-7]],[[78021,86898],[6,154],[-179,-32]],[[76624,86791],[4,0]],[[76751,86789],[-132,143]],[[76619,86932],[5,-141]],[[77099,86933],[-118,-36],[-67,-113]],[[77328,87157],[-149,-47],[16,-72]],[[78367,87658],[134,-10]],[[78505,87765],[-88,20]],[[78372,87750],[-5,-92]],[[78553,86920],[214,118],[14,-17]],[[79080,86857],[179,24]],[[79440,87000],[3,76],[119,71]],[[79562,87147],[-115,5],[-18,35],[29,116]],[[79458,87303],[3,60]],[[79827,87598],[155,134],[-172,19]],[[79681,87603],[146,-5]],[[95503,87739],[-7,-76]],[[95496,87663],[266,-17]],[[95857,87716],[6,76],[-175,12],[-7,-77],[-178,12]],[[68407,88404],[-93,-199]],[[68640,88447],[39,105],[-83,2]],[[68619,85571],[-195,9],[-73,-72]],[[77094,85325],[-176,6]],[[76918,85331],[-4,-157],[175,-2],[5,153]],[[69146,85559],[354,-9]],[[69500,85550],[3,76]],[[69416,85707],[-56,1],[51,134],[-96,66],[25,120]],[[69340,86028],[-129,68]],[[69211,86096],[-44,1]],[[79295,87619],[-177,8],[-132,5]],[[78379,86405],[187,85],[-21,235]],[[78373,86775],[12,-287],[-6,-83]],[[76623,86640],[-114,-37],[108,-76]],[[92287,88370],[-1,-42],[509,-5],[13,122],[-468,43],[-53,-118]],[[26986,36599],[118,-17]],[[26274,36947],[71,-139],[-3,0]],[[27360,36930],[47,67]],[[27369,36458],[-209,-15],[-36,97]],[[27124,36540],[-28,-26]],[[27096,36514],[33,-106],[61,-60],[-75,-5]],[[28253,36360],[26,44]],[[27381,35839],[35,78],[116,92]],[[26843,35977],[18,-152]],[[26893,36424],[-12,5]],[[26625,36047],[157,-63]],[[26563,35812],[-1,96],[-6,154],[-101,52]],[[26318,35812],[4,0]],[[26322,35812],[70,0]],[[26063,35802],[38,-148],[139,26],[15,131]],[[27083,35373],[-35,-71],[182,4],[-1,71],[-52,151]],[[27139,35574],[1,-47]],[[27050,35525],[-176,-18],[2,-63],[175,4]],[[27630,35463],[-51,-1]],[[27579,35462],[1,-76],[2,-71]],[[27581,35211],[-18,0],[60,-153]],[[29426,36013],[90,4]],[[29516,36017],[-45,53],[-429,178],[-180,101]],[[28497,36169],[0,-3],[-4,-2],[-128,28]],[[30575,35943],[-234,45],[-272,11],[-19,-42],[15,-135]],[[29675,35712],[-80,25]],[[29252,35456],[135,3]],[[29587,35762],[-30,150]],[[29840,35921],[59,78]],[[29899,35999],[-383,18]],[[29516,36017],[55,-44],[90,-38],[125,-87]],[[30508,37359],[132,64],[-204,110]],[[30436,37533],[72,-174]],[[29062,36891],[-3,-29]],[[29059,36862],[183,3],[-4,144],[0,213],[-178,-3]],[[29060,37219],[2,-241]],[[28185,37015],[-3,157],[-211,-65]],[[28117,38582],[-131,132],[-14,10],[-63,46],[-12,8],[-88,-102],[-116,-167],[-45,-79]],[[27994,37974],[-2,154]],[[28350,37862],[-2,117],[-21,-1],[-68,0],[-88,-1]],[[28496,39683],[440,-3]],[[28936,39680],[-349,208]],[[28311,40142],[-93,-1]],[[28218,40141],[2,-76]],[[28530,40071],[51,93]],[[28460,40256],[-12,-37]],[[27036,38604],[-12,-136]],[[27167,54786],[76,4]],[[27351,54796],[264,15]],[[27615,54811],[-2,89]],[[27612,54978],[-3,242]],[[27609,55220],[-72,-35]],[[27537,55185],[-110,-78]],[[27427,55106],[-171,-12],[-4,-125]],[[27611,55222],[168,75]],[[27779,55297],[-91,60],[-77,-135]],[[64527,84746],[126,74],[8,228]],[[64225,85123],[-27,33]],[[64138,85171],[-129,-81]],[[64181,84909],[88,-3],[-6,-152],[132,-4],[-6,-152]],[[64452,85411],[-83,-129]],[[63634,85085],[-111,56],[-20,-148],[-113,42],[-4,-101]],[[64286,83100],[228,-42]],[[65694,83882],[2,102],[-488,8],[-181,-28]],[[64767,84048],[8,88]],[[65041,84388],[118,-2],[62,-2]],[[65225,84503],[-68,1],[-111,-1]],[[65360,83078],[0,39]],[[64741,83040],[107,-33],[163,-36]],[[65360,83117],[185,-3],[-9,74]],[[65623,82958],[611,-32]],[[65705,83186],[-82,-228]],[[65903,83744],[2,133],[-177,4]],[[65728,83881],[-2,-160],[177,23]],[[66821,83234],[0,4]],[[66249,83403],[-5,-219]],[[66256,83714],[-2,-78]],[[66356,84174],[92,-1]],[[67032,82954],[109,66]],[[67325,83839],[4,97],[131,-8]],[[67460,83928],[5,136]],[[67680,83922],[-131,3],[-89,3]],[[67460,83928],[-3,-93]],[[67663,83217],[-138,-63],[-9,-240]],[[67651,82786],[26,-15]],[[67802,82913],[148,205]],[[68221,83665],[-121,135]],[[67946,83066],[-24,-113],[41,-82]],[[68351,82895],[144,34]],[[68725,83499],[-161,27],[-73,132]],[[68491,83658],[-31,1]],[[68085,83951],[12,-1],[113,8]],[[68571,83722],[161,-3]],[[68732,83719],[4,104]],[[68561,83890],[10,-168]],[[68882,84186],[-132,21]],[[68476,83965],[88,-2]],[[68400,84085],[-2,0]],[[68741,83959],[174,-5],[5,77]],[[68922,84110],[-83,-2]],[[68707,82959],[177,2],[-2,92],[1,21]],[[68889,83074],[170,-41]],[[69160,83071],[99,-41]],[[69342,83467],[-26,1],[-110,-134]],[[69077,83496],[-89,-2]],[[69181,83968],[-7,-96],[-6,-259]],[[69168,83613],[182,60],[91,21]],[[69281,84194],[-128,32],[-47,57]],[[69106,84283],[-94,-44],[-13,-131]],[[69307,84225],[-26,-31]],[[69811,84244],[129,51],[-15,33]],[[69925,84328],[-202,-63]],[[70676,83930],[154,-82]],[[70830,83848],[26,133]],[[70859,84057],[89,33],[1,40]],[[70953,84196],[-4,88],[100,116]],[[70571,84537],[-62,-80]],[[70236,84396],[-70,-41],[-211,-58],[217,-59],[77,-11]],[[68148,79835],[-63,85]],[[67568,79697],[-60,2]],[[67026,79557],[-8,-228]],[[67012,79098],[554,-13],[59,-93]],[[64963,80940],[22,143]],[[64985,81083],[-165,-108]],[[64820,80975],[143,-35]],[[68609,79664],[91,177],[8,201],[-63,4]],[[68632,80028],[-68,-177]],[[69133,79647],[88,-3]],[[69221,79644],[5,152]],[[68963,79804],[-6,-152]],[[69229,79872],[3,77],[-263,7]],[[68969,79956],[-4,-76]],[[68869,79349],[86,-3]],[[69112,79112],[94,-1],[86,72],[6,153]],[[68284,78946],[98,0]],[[68926,78889],[3,76],[3,76]],[[67931,78944],[67,-46],[54,-37]],[[68052,78861],[83,158]],[[67297,79704],[-133,5],[52,-81]],[[68272,80492],[-66,-93],[-51,57],[-90,97],[207,-61]],[[68307,80591],[-247,9],[-119,-16]],[[68219,80225],[16,-98],[214,28]],[[68703,80263],[0,5]],[[68640,80386],[-179,165]],[[67240,80165],[109,-156]],[[67939,80588],[-91,122],[-248,84]],[[67600,80794],[-2,-115],[-2,-63]],[[94836,74875],[-213,57],[135,-146]],[[68425,81936],[107,107]],[[68515,82187],[-24,11]],[[68425,82038],[0,-102]],[[68762,81939],[130,89]],[[68892,82028],[34,61],[-6,2],[-170,23]],[[68750,82114],[12,-175]],[[69976,82379],[88,-58],[116,39],[-64,70]],[[72472,81741],[244,-91],[106,70],[1,41]],[[72823,81761],[-179,46]],[[72644,81807],[-170,0],[-1,-28],[-1,-25],[0,-13]],[[72744,81884],[171,41],[2,24],[-154,26]],[[72763,81975],[-7,-38],[-12,-53]],[[71240,75307],[-152,22]],[[71088,75329],[-264,6],[-62,-77]],[[67863,84163],[-54,-229]],[[70523,97327],[-5,22],[13,48],[30,-36],[90,-59],[-75,12],[-53,13]],[[70857,97098],[12,13]],[[71846,98599],[190,17]],[[70565,99396],[12,-89]],[[71554,98458],[16,38]],[[69932,97960],[-74,-90],[-39,-22]],[[69114,97734],[-3,-12]],[[69716,96547],[59,69],[71,107]],[[69846,96723],[92,145]],[[68895,97105],[-101,-133]],[[69322,96319],[143,96]],[[68864,95351],[17,117]],[[69105,95863],[-114,-82],[-31,3],[-18,-9]],[[68942,95775],[-115,-426]],[[69927,95922],[1,-96],[-324,149],[-148,140],[-105,8]],[[69351,96123],[-113,-125],[-71,-141]],[[69466,96468],[68,-17]],[[70423,96220],[-141,5],[-110,-84]],[[69601,97626],[-44,-197]],[[70455,96859],[-23,-91]],[[70432,96768],[243,-3]],[[70800,96847],[15,53]],[[71375,99820],[108,68]],[[71483,99888],[-106,11]],[[70914,99676],[-87,62]],[[69905,98502],[-98,-60]],[[70444,98844],[-124,54]],[[70284,98922],[-27,5]],[[70257,98927],[-278,-378]],[[72463,98753],[45,206],[4,273],[-88,31]],[[72424,99263],[-301,102]],[[72701,97592],[-144,131]],[[72557,97723],[-65,28]],[[71919,97219],[4,0]],[[71989,96301],[217,206],[0,14]],[[72072,96897],[-4,-61]],[[71400,96791],[30,-35],[2,-20]],[[73320,96394],[44,138],[207,-6],[-400,41],[149,-173]],[[72685,96515],[77,47],[63,-132],[125,-1],[19,201],[-85,39]],[[71054,94889],[61,-1]],[[70608,95249],[8,-133],[-181,21],[-67,-59]],[[71136,94690],[-26,55]],[[71382,95308],[43,43]],[[71425,95351],[36,42]],[[71382,95535],[-129,4],[-42,1]],[[70989,95641],[16,132],[15,-4]],[[71020,95769],[49,62],[-70,79]],[[71142,94887],[63,-144],[77,-3],[-58,146]],[[70863,96062],[-83,31],[-142,64]],[[70599,96174],[-80,40],[-50,11]],[[69155,94744],[-73,128]],[[68482,93847],[217,28],[137,-94]],[[69887,93676],[-14,102],[58,130],[-142,190],[-150,-35],[-195,65],[-139,-48],[-20,49],[40,179],[-103,25]],[[68976,95017],[114,-1]],[[69090,95016],[-3,111],[83,51]],[[68715,94982],[-93,-164]],[[68522,93581],[-136,86]],[[68032,93644],[-153,-202]],[[67574,93085],[-149,-70]],[[67425,93015],[132,-28],[195,-164],[228,-191]],[[68285,92899],[-94,49],[-63,18]],[[68147,92784],[-11,103],[82,9],[-71,-112]],[[68142,93038],[217,-20],[264,-49]],[[68836,91033],[56,34]],[[68828,91124],[8,-91]],[[69141,91048],[3,69]],[[69146,91175],[4,76],[-24,116],[-138,98],[-37,-94]],[[69211,92634],[2,47],[106,41],[71,176],[17,38]],[[69090,92424],[73,74]],[[70168,93675],[1,71],[-147,14],[7,-113],[-142,29]],[[69942,93211],[74,102],[108,170]],[[70449,93356],[173,-29],[-21,78]],[[70653,93388],[37,-25],[171,103]],[[70490,93766],[-171,-49]],[[70525,93911],[92,-46]],[[71214,93512],[90,37]],[[71304,93549],[-63,100],[-75,104]],[[72659,94806],[161,-139]],[[72976,94637],[-5,240]],[[72971,94877],[-134,-35],[-178,-36]],[[73178,94489],[80,103],[133,-2],[-56,46]],[[73335,94636],[-256,-75],[-103,76]],[[73455,94741],[206,-10],[-105,171]],[[73556,94902],[-80,57],[-46,4],[-47,-76],[72,-146]],[[18461,44832],[0,0]],[[18091,45301],[0,0]],[[18032,45375],[0,0]],[[18051,45359],[-20,9]],[[18036,44365],[86,-7],[91,181],[-120,-7],[-57,-167]],[[17636,44009],[0,0]],[[17953,45508],[74,68]],[[18027,45576],[-5,75],[-155,-2]],[[28419,43293],[-57,-50]],[[28174,43522],[-84,-113]],[[28090,43409],[217,-35],[125,-21]],[[28333,43242],[-261,23]],[[28072,43265],[-175,-66]],[[27762,43086],[-20,-18],[-11,-71]],[[29050,43456],[6,31],[65,186],[-315,9]],[[28806,43682],[34,-123]],[[28760,43563],[-100,79]],[[28644,43690],[-112,35]],[[29211,43100],[148,84]],[[29359,43184],[-184,69]],[[28270,42299],[209,-13],[1,77]],[[28825,42151],[165,0],[-2,155]],[[28833,42307],[-8,-156]],[[28638,42364],[195,-1]],[[28991,42511],[-1,114]],[[28990,42625],[-371,186]],[[27939,42133],[0,4]],[[27783,42288],[-354,-45]],[[27429,42243],[-143,30]],[[27286,42273],[22,-155],[631,15]],[[28433,41175],[15,-18]],[[28448,41157],[283,20],[92,10],[171,22]],[[28994,41209],[-46,95]],[[28850,41531],[143,6]],[[28993,41537],[-1,154],[-298,-3]],[[31274,44840],[205,-53],[8,165]],[[29946,45515],[43,-76]],[[29989,45439],[43,237]],[[29946,45676],[0,-40]],[[29509,45127],[-309,-3],[-350,-3]],[[29543,44669],[2,114],[5,307]],[[29550,45090],[0,48]],[[28852,44893],[-2,-79]],[[29014,44587],[86,1]],[[27259,45634],[-2,155]],[[27168,45937],[-89,-1]],[[34006,67412],[42,1]],[[34048,67413],[-26,59],[114,174],[250,-12],[-63,220]],[[33977,67768],[43,-79],[6,-154],[-20,-123]],[[34052,67998],[-13,-47]],[[34039,67951],[-82,-118]],[[34374,67936],[176,41]],[[34550,67977],[-175,36]],[[34294,68075],[-226,-74]],[[30014,68639],[183,-51]],[[30197,68588],[29,58],[-165,41]],[[30061,68687],[-47,-48]],[[32248,70120],[92,95]],[[32316,70444],[-68,-324]],[[32218,70064],[16,-2]],[[32234,70062],[3,12]],[[32237,70074],[-11,6]],[[32226,70080],[-8,-16]],[[34192,71708],[10,-89],[54,-172]],[[34384,71523],[15,51]],[[34519,71713],[-48,26],[-55,-94],[-67,85],[-157,-22]],[[34191,71709],[6,113],[-21,37]],[[34176,71859],[-93,83],[-274,-290],[-68,-70],[133,-16]],[[35003,73393],[-158,27]],[[34628,73140],[-61,-4]],[[34567,73136],[-31,-71]],[[34561,72955],[38,11],[-1,-3]],[[34598,72963],[271,52]],[[34869,73015],[-14,39],[107,50],[119,-91]],[[35216,73012],[5,75],[-15,128],[-100,-60],[-103,238]],[[34032,72665],[170,91]],[[34170,72805],[-166,-126]],[[34371,69146],[124,78]],[[33949,68464],[116,65]],[[34065,68529],[-203,217],[56,77]],[[33910,68861],[-85,-170]],[[33825,68691],[-9,-78],[133,-149]],[[17596,45740],[-137,32],[-148,-63]],[[16851,46090],[-38,-386],[-16,-77]],[[16785,46772],[34,-86],[32,-21],[214,-41],[-102,158]],[[17351,46587],[-37,-45]],[[17788,46654],[178,69]],[[17966,46723],[30,25],[141,128],[255,50],[176,-28],[98,169]],[[17829,47147],[-148,-192]],[[18738,47068],[81,2]],[[18504,47739],[-72,-5],[-35,-10],[-4,4]],[[18455,47511],[0,0]],[[19252,47294],[83,21]],[[19335,47315],[102,77]],[[19214,47647],[-28,52]],[[19282,47895],[209,90],[164,39]],[[19741,48227],[-38,60]],[[17210,48037],[60,-24]],[[17270,48013],[115,159]],[[17385,48172],[-8,41]],[[17253,48198],[-43,-161]],[[17002,47829],[-191,74],[-112,-158]],[[16699,47745],[45,-53],[138,94]],[[19899,48298],[49,-100]],[[43010,80219],[5,-1]],[[43513,80617],[-79,-76],[-21,-67]],[[43420,80396],[-29,-21]],[[43788,80330],[0,3]],[[44054,80648],[-113,84]],[[43668,80265],[15,2]],[[43809,80266],[-21,64]],[[44173,80303],[109,14]],[[44282,80317],[-57,94]],[[44142,80447],[31,-144]],[[43778,80802],[-93,-1]],[[43603,80791],[-118,-56]],[[43485,80735],[38,-31]],[[44601,80410],[196,110],[39,-18]],[[44836,80502],[152,57]],[[44988,80559],[-190,-24],[-28,-1]],[[45779,80667],[279,69]],[[46058,80736],[-158,44]],[[45821,80880],[2,14]],[[45823,80894],[-265,-100]],[[45558,80794],[76,-55]],[[38662,78397],[331,129],[-9,58]],[[38984,78584],[-143,-13],[-132,-103],[-47,-71]],[[36940,75852],[117,144]],[[36712,75935],[-104,-2]],[[36538,75544],[-87,-48],[2,-225]],[[35999,75439],[157,142]],[[36156,75581],[-160,-1]],[[35996,75580],[3,-141]],[[36445,75659],[91,6]],[[36439,75776],[6,-117]],[[36331,75866],[-112,-78]],[[36219,75788],[220,-12]],[[36729,75006],[-1,78]],[[36045,77977],[100,-36],[168,-11]],[[36043,78231],[3,-152],[-1,-102]],[[36216,77426],[149,20]],[[36365,77446],[-34,133],[-27,120]],[[36171,77573],[6,-103]],[[42830,80199],[110,18]],[[42603,80348],[-17,2]],[[43391,80375],[-171,16],[-170,73]],[[43050,80464],[-91,6]],[[22584,49307],[13,76]],[[22467,49549],[-20,-13]],[[22422,49511],[-19,-39]],[[22403,49472],[-151,-207]],[[22252,49265],[245,105],[-59,-399]],[[22732,49405],[29,-24]],[[23756,49727],[113,-44],[132,77]],[[24001,49760],[27,62],[-317,70]],[[23035,49650],[-30,26]],[[23051,49036],[147,-65],[-32,106]],[[22271,48748],[34,125],[-132,-1]],[[21956,48779],[315,-31]],[[21772,50951],[-85,-93]],[[21960,50864],[0,8]],[[21960,50872],[-161,33],[-27,46]],[[21664,50755],[-103,-80],[-69,-31]],[[21210,50442],[-165,82]],[[21045,50524],[-91,-6]],[[20954,50518],[91,-160],[109,-117]],[[21309,50534],[-99,-83]],[[20691,49863],[74,-88]],[[21679,49098],[-7,189]],[[21012,48907],[95,27]],[[20583,48658],[139,124]],[[20632,49551],[-128,-100]],[[20876,49655],[-75,7],[-59,-33]],[[20104,48744],[-101,93]],[[22931,50715],[-129,84]],[[23924,50844],[-75,90]],[[24877,52199],[-73,-72]],[[25349,53114],[-111,12]],[[25238,53126],[-168,-59]],[[25737,53155],[8,243]],[[25542,52944],[131,78]],[[21438,53605],[-61,-15]],[[20959,53195],[22,144]],[[21130,53434],[51,-92]],[[21320,53575],[-125,36]],[[23755,53919],[180,-3]],[[20641,52175],[30,79],[11,37]],[[20693,52381],[-1,44],[9,127]],[[20701,52552],[-47,-113]],[[20605,52269],[36,-94]],[[21235,52719],[-15,10]],[[21052,52794],[-51,-57]],[[21106,52651],[191,-123]],[[21455,52557],[78,-24],[-47,210],[-31,-186]],[[21246,53094],[118,112]],[[21364,53206],[-43,102]],[[22036,53431],[-123,70]],[[22429,53431],[69,-5]],[[22696,53506],[-18,18],[101,104]],[[22779,53628],[-19,101],[-28,153]],[[22732,53882],[-9,-10]],[[22397,53448],[21,2],[11,-19]],[[18307,15645],[4,-283]],[[18311,15362],[94,1],[52,-11],[94,-85],[126,-1]],[[18639,14923],[90,0]],[[18729,14923],[49,62],[139,46],[65,-179]],[[18982,14852],[37,220]],[[19370,15239],[121,100]],[[19491,15339],[-76,186]],[[19407,15591],[42,155],[-1,152]],[[19448,15898],[-145,-3],[-54,-3],[-67,-15],[-69,-13]],[[18886,14515],[111,-8],[101,56],[-49,106]],[[19049,14669],[-95,-7],[-68,-147]],[[19083,14417],[-124,-70]],[[19640,16660],[65,53]],[[19705,16713],[-127,96],[122,99],[-169,-30],[-5,-2]],[[19723,17213],[78,52]],[[19801,17265],[31,95],[-3,88],[-151,107],[-2,-84],[0,-38],[-56,-153],[103,-67]],[[19696,40978],[-32,129],[-21,34],[198,67]],[[20349,41820],[-60,192]],[[20150,41939],[21,-31],[31,-81],[-44,11],[-23,47],[-113,-12],[-17,30],[145,36]],[[20264,42048],[-12,17]],[[19362,41703],[-145,-129],[-57,-76]],[[19076,41113],[-120,-152]],[[21128,39914],[-232,-125]],[[20896,39789],[0,-23]],[[21308,39605],[155,-70]],[[21474,40066],[-83,56],[47,138]],[[21438,40260],[-169,27]],[[21269,40287],[85,-165],[26,-47]],[[21896,39791],[125,-6],[-1,53]],[[22020,39838],[45,254],[-143,-4],[3,106],[-203,-82]],[[21889,39986],[4,-125]],[[22331,39675],[121,44],[-69,11]],[[22439,38719],[-3,89]],[[21828,39002],[-36,14]],[[21964,38872],[13,0]],[[21765,38653],[64,5]],[[21829,38658],[46,106]],[[21730,38902],[-145,-70]],[[21585,38832],[-12,-126]],[[22092,38397],[95,16]],[[22187,38413],[-16,64],[-35,176]],[[21990,38492],[-79,-67]],[[21911,38425],[181,-28]],[[17329,39379],[86,28]],[[17415,39407],[-14,77]],[[17240,39463],[2,-19]],[[17487,39495],[134,18]],[[17621,39513],[-19,113],[-113,-15],[-28,166],[-97,-13]],[[17364,39764],[-52,-5]],[[17312,39759],[-40,-123]],[[17038,39285],[33,-135]],[[15964,39698],[42,28],[178,117]],[[15479,39738],[22,-31]],[[15862,40068],[20,48]],[[15765,40181],[-7,102],[-45,-89]],[[15462,39916],[57,-111]],[[15285,39199],[-126,-3]],[[14968,39153],[20,-140]],[[15253,38512],[14,-26]],[[15287,38501],[152,100],[-1,69]],[[15430,38973],[-5,155]],[[15391,38037],[-26,-43]],[[15502,37842],[125,-77]],[[15627,37765],[17,123]],[[15644,37888],[-37,-12],[-81,111]],[[16180,38008],[7,-15],[-124,-110],[212,53],[8,56],[12,-20]],[[16295,37972],[-29,108],[-86,-72]],[[14870,37489],[18,9]],[[14626,37066],[0,0]],[[14710,37188],[122,10]],[[14832,37198],[-62,75]],[[14613,37440],[-90,-121]],[[14478,37875],[9,-40],[1,-37]],[[14741,38246],[-260,-7]],[[14481,38239],[4,-171]],[[14254,36677],[0,36]],[[13734,35851],[64,49]],[[12165,33911],[57,-43]],[[12268,33945],[-103,-34]],[[32781,45310],[32,108]],[[32813,45418],[-88,-27],[-282,73],[-30,-88]],[[33025,45158],[7,148]],[[33032,45306],[-175,-1],[-34,-81]],[[32021,45711],[-1,124]],[[32020,45835],[-75,-1]],[[31320,46016],[-3,-188]],[[31669,45832],[1,231]],[[30549,45937],[53,0]],[[30916,45822],[226,3]],[[30967,46510],[-94,0],[-264,1]],[[30609,46511],[0,-76],[0,-76]],[[30609,46359],[220,-2]],[[31671,46599],[-2,61]],[[30963,46664],[2,-98]],[[31137,46975],[-176,39]],[[30961,47014],[0,-111]],[[31865,47135],[-7,131]],[[31858,47266],[-7,8]],[[31851,47274],[-66,-63]],[[31845,46824],[1,2],[198,-3],[176,-94]],[[32220,46729],[146,180]],[[32366,46909],[-121,-1],[-45,153]],[[32200,47061],[-285,-2]],[[33614,46499],[237,118]],[[33851,46617],[-267,16]],[[33584,46633],[-198,99],[13,-120]],[[29995,48332],[56,85]],[[30957,49810],[342,6],[-171,168],[10,59]],[[31003,49945],[-46,-135]],[[33181,47762],[127,-72]],[[33308,47690],[-58,149]],[[33232,47839],[-3,154],[-219,-2]],[[32420,47985],[-119,-271]],[[25456,30370],[214,80]],[[25306,30905],[10,0]],[[25279,30678],[-172,-2],[-164,-1],[3,-80],[276,15]],[[19877,19819],[-173,-22]],[[19704,19797],[133,-34]],[[19837,19763],[149,-51],[52,-28],[-76,-22],[19,-57],[5,-183]],[[19986,19422],[35,28],[24,146],[85,-18]],[[20130,19578],[-20,94]],[[20197,19799],[-11,80]],[[20451,22232],[86,0]],[[20537,22232],[1,78]],[[47699,58140],[1,-151],[174,38]],[[46286,58745],[111,1]],[[46397,58746],[1,156],[-107,1],[-5,-158]],[[46817,58136],[-35,0]],[[46643,58007],[-2,-24]],[[46641,57983],[175,1]],[[47964,58295],[4,153],[-88,-35]],[[48544,59669],[132,0],[1,153]],[[48677,59822],[-88,-1]],[[46837,60134],[1,151],[-196,5]],[[46576,60184],[-2,-48],[263,-2]],[[47280,60438],[-176,3]],[[47104,60441],[-2,-156],[175,0]],[[47976,60440],[2,0],[-5,-160]],[[47971,60166],[265,38],[0,73]],[[48236,60277],[-87,1],[3,98]],[[49033,60588],[218,1]],[[49202,60741],[-176,-1]],[[49026,60740],[7,-152]],[[48620,60741],[-71,-1],[1,-153],[131,0],[101,0],[18,113]],[[47719,60741],[-83,-1]],[[47285,60744],[-176,2]],[[47109,60746],[-3,-153],[133,-1]],[[47280,60447],[19,-9]],[[46949,61669],[-2,-79]],[[47650,61557],[0,101]],[[47266,61510],[28,-154]],[[49810,61716],[-67,12]],[[49824,61574],[105,-41],[72,76]],[[50004,61721],[7,155],[-78,77]],[[49933,61953],[-123,-237]],[[47498,61814],[-110,-58]],[[47650,63190],[102,3],[1,151],[-70,1]],[[47683,63345],[-107,1],[-1,-153],[75,-3]],[[50215,62830],[132,0]],[[50359,63227],[-117,64],[-195,-59]],[[50047,63232],[0,-58]],[[50659,63055],[87,38]],[[50881,63167],[219,35]],[[51021,63278],[-106,3],[1,39]],[[50916,63320],[-168,2]],[[50748,63322],[-82,1]],[[49643,66076],[88,-153],[165,-1],[4,152]],[[48297,65096],[-154,2]],[[47946,65126],[0,-103],[350,-3],[1,76]],[[37164,43033],[35,-105],[11,-5]],[[37348,42931],[29,40]],[[37360,43081],[-128,-83],[-68,35]],[[38662,43158],[67,-50]],[[38729,43108],[-68,218]],[[38661,43326],[1,-168]],[[50272,80917],[108,57]],[[50169,81229],[-25,-212],[147,-53],[-19,-47]],[[48521,80065],[140,-8]],[[48661,80057],[-4,105]],[[48523,80170],[-2,-105]],[[47855,80743],[75,-157],[-16,-111]],[[48139,80397],[-84,26],[-68,200]],[[47920,80890],[-23,56]],[[47897,80946],[-25,4]],[[47872,80950],[-17,-207]],[[49090,82400],[-23,-9],[-31,-12]],[[49574,82025],[-191,95],[-33,40],[84,63],[107,76]],[[49541,82299],[-125,184]],[[48797,81943],[184,-34]],[[48436,81985],[101,-17]],[[48537,81968],[6,2]],[[48291,81877],[81,91],[-53,45]],[[48070,81870],[66,27]],[[48521,82164],[-54,-19]],[[48945,82634],[-191,0],[44,-165],[278,-49]],[[48540,82863],[214,1]],[[49447,83243],[41,145],[-259,1]],[[51093,82673],[-51,52]],[[51042,82725],[-139,-47]],[[51091,82411],[160,58]],[[51010,83121],[81,-96]],[[51883,83060],[-100,8],[-110,31],[-52,78],[-86,43]],[[52746,83260],[112,44]],[[51407,82816],[191,108]],[[51882,82935],[-231,-189],[31,-85]],[[51682,82661],[8,2]],[[51690,82663],[33,23]],[[52096,82590],[47,-172],[187,-4],[0,-92]],[[52569,82865],[-44,125]],[[53313,82247],[35,122]],[[53348,82369],[-131,-7],[-38,-13],[-51,83],[-164,30]],[[52343,82143],[-11,107]],[[52332,82250],[-247,-29]],[[52370,81833],[48,-41]],[[52733,81879],[-122,-3]],[[52611,81876],[-129,-39],[-149,53]],[[53378,81928],[-24,-166],[160,-120],[38,206]],[[54015,81881],[9,0]],[[54024,81881],[58,-1],[129,46]],[[53816,81807],[-1,-39],[-23,-78],[89,-28],[91,129]],[[49373,82941],[-177,0]],[[25886,37077],[-81,2]],[[25805,37079],[22,-122],[221,-152]],[[26048,36805],[7,59],[-1,35]],[[26073,37110],[-113,131],[-74,-164]],[[26205,36960],[-66,75]],[[24051,37093],[68,-84],[150,-18]],[[23726,36919],[4,-153],[162,7]],[[23858,36924],[-132,-5]],[[24767,36811],[-4,56]],[[24254,36936],[-48,-1]],[[23904,35393],[40,1]],[[23931,35775],[-88,-3]],[[24286,35707],[-4,75],[-175,-2]],[[21945,37186],[-98,-210],[276,85],[2,62]],[[22125,37123],[169,-64],[-1,60]],[[21521,35335],[18,-80],[199,59]],[[21738,35314],[-13,73],[-204,-52]],[[25806,30598],[94,-45]],[[25888,30507],[170,-70]],[[25892,30516],[-4,-9]],[[26233,30764],[184,-84],[86,51]],[[26503,30731],[-1,104],[-4,151],[-319,3]],[[26324,30836],[0,0]],[[26135,31370],[10,-195],[5,-105]],[[26251,31087],[41,55],[196,225],[-62,2]],[[26360,31369],[-36,0]],[[18884,44675],[-253,79]],[[18631,44754],[-210,-64]],[[18421,44690],[-52,-56],[133,-52],[93,-85],[-107,-19],[323,-105]],[[22254,46965],[70,-75],[284,57],[244,58],[-54,-290]],[[22798,46715],[-64,-217]],[[23111,46208],[210,102]],[[23513,46597],[147,17],[93,178],[254,102]],[[24007,46894],[9,106],[170,73],[345,367],[131,254],[-141,-40],[-62,155],[150,84],[-12,153],[165,109]],[[22855,48121],[-96,-79]],[[22759,48042],[-46,-137]],[[22713,47905],[41,-242],[-110,-249],[-95,39],[-140,-103]],[[22409,47350],[-32,-130],[-121,-61]],[[22256,47159],[52,-90],[-54,-104]],[[34584,35887],[272,29],[241,87],[81,232],[-117,88],[39,83],[-213,0],[179,152],[342,122],[202,89],[217,252],[546,61],[310,161]],[[36707,37243],[-247,155],[-182,11]],[[36278,37409],[-158,52],[-467,69],[-295,75],[-329,125],[-99,90],[-313,133],[-201,134],[-196,57],[-535,-20],[-29,-92],[-159,-86],[-140,71],[-102,-28],[-171,188],[-228,11],[-111,-41],[139,226],[163,39],[127,168],[-199,-74],[-364,24],[-44,-29],[-336,28],[82,-172],[11,-275],[-315,14],[-304,-37],[4,-173],[-79,-15],[-268,-184],[-255,19]],[[33082,36899],[281,-70],[71,-73],[234,-28],[215,-90],[318,-258],[21,-177],[156,-225],[206,-91]],[[35735,38355],[-144,108],[-9,133],[267,-6],[32,117],[150,-119],[-189,-190]],[[37977,37841],[-86,134],[-12,143],[-88,-6],[-82,193],[139,98],[120,160],[-34,165]],[[37934,38728],[-265,-141],[-191,16],[-183,99],[-551,61],[-161,-36],[-7,128],[-220,25],[-198,-46],[-104,52],[49,62],[-170,348],[-6,218],[109,36],[49,128],[102,45],[-105,91],[2,192],[93,-46],[73,82],[158,-25],[78,-116],[458,-205],[91,-96],[149,29],[127,133],[389,-72],[227,-121]],[[37927,39569],[416,16],[71,136],[247,-107]],[[37725,40814],[-159,57],[-199,-220],[101,-117],[61,-170],[148,-128]],[[37677,40236],[32,-209],[-148,92]],[[37561,40119],[26,-133],[-131,83],[-324,55],[-70,260],[-223,178],[-253,117],[100,107],[196,-59],[151,39],[-80,160]],[[36953,40926],[-254,109],[-309,43],[-13,202],[-153,15],[149,94]],[[36373,41389],[-130,47],[-129,148],[-285,194],[-102,123],[-230,-149],[-114,-264],[254,-161],[21,-106],[-256,26],[-118,5],[-163,101],[-142,-10],[-180,94],[-236,-134],[-24,97],[72,251],[-81,375],[94,107],[68,203],[239,-80],[35,-154],[159,7],[236,-62],[122,28],[-51,186],[180,338],[4,334],[90,106]],[[35871,43350],[106,-25],[150,103],[-31,66],[228,93],[96,-47],[-52,-119],[112,-87],[-60,266],[-230,91],[-131,211],[44,120],[105,-61],[399,-348],[123,-166]],[[36944,43392],[194,-64],[45,138],[178,-188]],[[37361,43278],[78,100],[110,327]],[[37549,43705],[-17,106],[-252,224],[-104,144],[168,178],[112,44],[127,142]],[[37583,44543],[-4,77],[419,214],[296,-32],[131,-147],[24,-181],[245,41]],[[38694,44515],[173,46],[122,146],[757,-90]],[[39746,44617],[294,75]],[[38411,45609],[146,61],[-47,333],[134,59],[38,203],[-131,150],[-259,36],[-114,-35],[-60,99],[175,203],[77,218],[-24,223],[-171,83],[33,379],[-40,153],[-132,115],[-241,-55]],[[34318,47879],[344,431],[356,248]],[[35018,48558],[-347,117],[-138,181],[-148,-11]],[[34385,48845],[-47,-103],[-710,-491],[-58,-62]],[[33308,47690],[141,-160]],[[33449,47530],[574,4],[-297,-461],[-142,-440]],[[33851,46617],[538,-73],[376,103],[282,-50],[323,109],[430,47],[239,-122],[254,-332],[221,13],[132,-60]],[[35523,45309],[-79,79],[-248,117],[-39,125],[-153,4],[-125,84],[-74,-89],[-484,-6],[2,153],[-86,76],[-1158,-10],[-104,-1],[175,307],[238,249]],[[33388,46397],[-202,-31],[-93,145],[-74,-77],[-155,-22],[-137,92],[6,269]],[[32733,46773],[-146,16],[-30,-147],[-228,105],[-109,-18]],[[32220,46729],[67,-127]],[[32059,46142],[227,2],[3,-308]],[[32289,45836],[-5,-396],[-29,-59],[-235,180]],[[32016,45330],[343,-167]],[[32813,45418],[88,90],[132,18],[-1,-220]],[[33558,45034],[293,-2],[83,-163],[132,-115]],[[34066,44754],[179,73],[178,-16],[7,-89],[133,-15],[54,-128]],[[32093,42042],[307,-18],[142,-241],[-61,-41],[-5,-198],[52,-125]],[[32528,41419],[202,9],[196,-80],[-50,-128],[118,14]],[[32994,41234],[301,-111],[29,-107],[237,-117],[129,-12],[3,-97],[167,-69],[129,8],[-51,-91],[-201,-77],[-151,5],[17,-201],[80,-218],[103,-83],[-182,1],[57,-283],[71,-119]],[[32772,40082],[-138,-123],[-67,-204],[393,-70],[-14,-207],[16,-121],[132,-148],[109,-17],[85,-129],[202,29]],[[33490,39092],[34,43]],[[33524,39135],[71,69],[184,154],[133,17],[105,132]],[[34350,40583],[67,105],[-54,154],[94,244],[234,15],[-15,-163],[-196,-161],[235,-113],[-199,-116],[-166,35]],[[21349,21085],[248,-88],[157,29],[240,-24],[633,879],[658,663],[92,281]],[[22951,22824],[-17,631],[64,164]],[[22998,23619],[86,118],[-155,-2],[-11,521]],[[22918,24256],[-120,89],[-62,153],[-18,206],[147,92],[106,-31],[31,341]],[[23002,25106],[-7,314],[-627,171],[-164,-103]],[[22154,26470],[-147,12],[64,-247],[-916,-21],[-6,57],[-324,-10],[-21,923],[-530,-10],[6,-309]],[[20280,26865],[177,6],[3,-157],[-173,-22]],[[20159,26401],[-393,-8]],[[19766,26393],[18,-902],[418,11],[22,-613]],[[20224,24889],[605,22],[6,-459],[-86,-41]],[[20749,24411],[-100,-48],[69,-144]],[[20711,24081],[-5,-92],[430,11],[-130,-307]],[[19600,23646],[28,-1366],[18,-432],[151,-104],[133,-16],[182,59]],[[20112,21787],[352,30],[106,-52],[3,-4],[-25,201]],[[20548,21962],[-11,270]],[[20528,22765],[117,310],[410,94],[255,10],[236,163],[24,174],[68,-79]],[[21777,22798],[-220,65],[44,-158],[-217,-150],[-48,-84],[86,-111],[-98,-32],[117,-199],[7,-126],[-105,-130],[-10,-204],[-142,-1],[38,-174],[-112,-225]],[[25787,24431],[3,224],[93,0],[97,1]],[[25980,24656],[140,4]],[[26120,24660],[81,274],[81,9]],[[26282,24943],[51,124],[204,104],[118,43],[156,-74],[80,147],[-66,100],[175,519],[82,168],[42,264]],[[27124,26338],[-138,219],[-135,31],[-136,-76],[-65,21],[-242,-79],[-40,161]],[[25542,26801],[-118,122],[470,7]],[[26054,26932],[-50,279],[-291,154],[264,-74],[249,-11]],[[26226,27280],[27,221]],[[26253,27501],[-109,70],[131,116]],[[26275,27687],[-39,337],[229,28],[301,-116],[100,-174],[-64,-109],[23,-254],[-305,-163]],[[26520,27236],[240,-130],[126,107],[98,-79]],[[26984,27134],[192,134]],[[27176,27268],[154,114],[34,-230],[103,-44],[-19,-162],[-121,-173]],[[27327,26773],[110,-116],[-33,-130],[61,-121]],[[27465,26406],[1,-9],[-40,-223],[62,-122],[-156,-120],[39,-224],[150,-338],[100,-88],[508,-292],[-184,196],[255,54],[128,155],[148,-87],[52,99],[-124,109],[33,283],[85,84],[117,-24],[133,-133],[179,104],[40,131],[-489,253],[-194,258],[-11,266],[225,80],[-22,173],[131,-185]],[[28917,26814],[-42,158],[197,217],[113,-66],[231,-15],[78,220],[164,185],[177,130],[15,193],[142,-18],[-158,94],[91,132],[18,210],[174,-37],[75,136]],[[32927,27663],[86,145],[-95,22],[-13,259],[163,45],[-61,152],[55,295]],[[33062,28581],[-284,69],[-135,-46],[-255,125],[-116,-65],[-272,36],[-49,-56],[-82,147],[-114,-79],[-405,98],[-165,-58],[-148,35],[-53,179],[-117,-18],[-338,230],[56,129]],[[30585,29307],[91,318],[-69,53]],[[30607,29678],[-196,-44]],[[30411,29634],[-56,-75],[-434,-3],[26,-137],[-255,-129],[-34,-89],[-162,-99]],[[28804,31058],[92,-44],[-14,-179],[263,-210],[25,-134],[215,60],[169,-63],[69,-136],[54,157],[286,6],[173,55],[24,16],[-82,187],[31,105],[-71,87],[-40,279],[-177,53],[-110,-35],[-36,245],[-304,133],[-59,92],[-196,-82],[-221,102],[-100,-29]],[[28452,31686],[-254,14],[-83,-179],[78,-177],[54,-54],[151,1],[9,-424],[-136,277],[-262,-5],[-42,217],[-163,56],[-280,-7],[-176,37],[24,-303],[-64,-1],[5,-304],[-373,0],[5,-156],[88,-1],[5,-147],[-535,201]],[[26215,30481],[166,-50],[144,-159],[113,6],[565,-217],[207,-145],[198,-38],[-53,-78],[61,-198],[146,-192],[43,-235],[146,-109],[70,-186],[160,-24],[74,-109],[-223,-48],[3,-236],[-58,-131]],[[25533,28951],[92,-136],[-116,-168],[59,-214],[-125,-108],[-89,13]],[[25354,28338],[-3,-178]],[[25351,28160],[125,0],[139,-100],[54,-186],[-85,-38],[33,-147],[-111,-93],[0,-219],[-181,38],[-309,2],[13,-803],[-186,45],[-337,-159],[-185,-45],[-336,-191],[10,-734]],[[23995,25530],[82,1],[-59,-189]],[[24018,25342],[122,4]],[[24140,25346],[547,-3],[112,51],[-255,-252]],[[24544,25142],[616,-423],[146,-61],[143,-252]],[[25256,24246],[30,49]],[[25286,24295],[33,58],[-128,100],[-500,256]],[[24691,24709],[-168,-338],[-241,43],[-134,-46]],[[24235,24299],[361,-92],[84,-236],[-182,86],[-308,29]],[[23632,23956],[-29,-413],[70,-47],[-90,-105]],[[23583,23391],[-97,-11],[38,-98],[-147,-457]],[[28027,20528],[-137,144],[-213,71],[-91,-38],[-249,109],[-17,82],[-293,128],[-53,139],[-177,18],[-113,126],[-242,26],[-204,129],[-8,109],[-203,140],[47,64],[-71,231],[12,193],[-311,494],[-93,368]],[[25611,23061],[-12,213],[-83,66],[1,356],[-32,176],[-84,137],[-183,171],[38,66]],[[24857,30442],[-3,230],[0,151],[85,2]],[[24939,30825],[-3,153]],[[24936,30978],[-4,153]],[[24932,31131],[-10,306],[530,7]],[[25452,31444],[209,44]],[[25514,34449],[-112,-156],[-76,-241],[126,-356],[158,-320],[-144,-423],[-405,-433],[-432,-328],[-93,-380],[-4,60],[-825,-27],[-45,57]],[[25120,34668],[249,-11],[5,162],[-14,328],[-103,293],[20,173],[-811,-18]],[[24292,35556],[4,-154],[-176,-4]],[[23767,35389],[12,-286],[-47,-78]],[[23732,35025],[-826,-881],[-203,-248],[-120,-75],[-373,-417],[-265,-506]],[[19472,32866],[103,-72],[70,-203],[-26,-192],[95,-148],[152,-132],[500,-184],[251,-38],[18,-407],[14,-468],[-89,-4],[15,-460],[-134,-4],[2,-76]],[[20556,30349],[368,-191],[5,-360],[-350,-12],[11,-611],[845,26],[271,-20],[30,201],[137,-65],[99,-59],[54,84],[-76,70],[90,247],[-191,169]],[[22008,29884],[166,73],[-25,138],[199,56],[170,-104],[94,33]],[[23072,28320],[1046,10]],[[24118,28330],[573,5],[100,79]],[[24999,28489],[131,463]],[[24992,28950],[-6,306]],[[24986,29256],[-7,459],[256,-1],[-8,457]],[[25227,30171],[-22,43]],[[25205,30214],[-367,-4],[19,232]],[[24574,30398],[-201,-21],[-58,426],[196,-248],[63,-157]],[[20257,28021],[-31,1604],[33,154],[-558,-15],[8,-457],[102,-129],[-65,-148],[145,-243],[-11,-192],[-156,-151],[-68,-201],[-8,-230]],[[22514,43456],[166,62],[215,144],[299,220],[226,13],[229,-99],[171,134]],[[23820,43930],[214,120],[189,9],[239,-67],[115,28],[25,-135],[-1,-94]],[[24601,43791],[303,4]],[[24904,43795],[226,4]],[[25651,43873],[164,-5]],[[22789,44771],[197,-344],[-317,-54],[-240,-55]],[[22429,44318],[-117,-100]],[[22312,44218],[10,-158],[-104,14],[-260,-177]],[[21958,43897],[-183,-187]],[[21775,43710],[133,-157]],[[4884,107],[61,153],[-296,-63],[-45,-84],[-165,42],[-129,103],[-20,246],[148,133],[-69,251],[-149,123],[-42,-120],[-117,25],[21,116],[-188,171],[54,95],[-105,105],[-80,181],[-348,-93]],[[3415,1491],[-50,-191],[-154,-57],[-107,-240]],[[3104,1003],[197,-47],[-8,-212],[-70,-24],[81,-233],[-65,-53],[-72,122],[-101,26],[-30,352]],[[3036,934],[-259,-37],[-70,-245]],[[2707,652],[-52,-152],[65,-340],[-52,-160],[774,45],[1442,62]],[[3043,2849],[100,1]],[[3143,2850],[33,58],[178,-81],[489,65],[140,70],[151,-21],[-10,93],[124,52],[72,207],[139,48],[-67,83],[110,196],[43,231],[-91,53],[70,250],[147,70],[89,132],[21,163],[146,305],[201,134],[54,-72],[22,264],[128,74],[148,8],[122,301],[143,183],[-199,11]],[[3715,5653],[-76,-392],[-45,-101],[14,-384],[-92,-65],[-72,-167],[43,-167],[-24,-182],[-115,-155],[-41,-250],[-130,-183],[-42,-165],[-3,-383],[-89,-210]],[[40589,35133],[-175,-148],[57,-623],[147,-107]],[[40618,34255],[13,-127],[-135,-176],[66,-15]],[[40562,33937],[65,-38]],[[40627,33899],[17,-17]],[[40644,33882],[44,-26],[97,-90]],[[40953,33651],[86,-150]],[[41039,33501],[0,79],[292,-164],[469,-81],[128,-187]],[[31055,34632],[-132,12],[-106,161],[-219,100]],[[31039,33129],[198,50],[57,69],[-26,184],[239,-102],[169,-16],[332,-2],[191,-116]],[[32199,33196],[60,123],[81,-31],[186,87],[209,4],[-64,238],[105,167],[-361,242],[-26,173],[-72,11],[29,77],[-149,58],[-119,-162],[-157,-73],[-161,52],[-147,128],[-31,234],[-250,208],[-66,-101],[-211,1]],[[33526,33045],[44,17],[374,-193],[164,2],[244,278],[121,29],[85,114],[134,-36],[163,31]],[[34855,33287],[193,251],[-353,399],[-47,288],[-96,178],[-144,105]],[[34408,34508],[-152,149],[-189,-60],[-161,71],[-209,-94],[-192,-27],[-29,201],[-273,-86],[-106,59],[43,-178],[-46,-326],[50,-238],[-144,-230],[-3,-10],[138,-129],[216,-54],[61,-220],[151,-106],[-37,-185]],[[37006,52479],[1006,2],[846,-6],[605,526],[151,136]],[[39614,53137],[35,83],[1,500],[-3,450],[530,-1]],[[40701,54171],[964,6]],[[41665,54177],[264,0]],[[41929,54177],[12,450],[800,-2],[1,-154],[177,-6],[-2,204]],[[39961,55292],[-4,102],[-176,0],[4,459],[176,0]],[[39961,55853],[-1,309],[-1,77]],[[40309,56468],[351,-1],[2,-153],[1,-77],[-1,-384]],[[40662,55853],[881,-2],[-2,193],[-1,190],[0,76],[1,306],[0,154],[526,-4],[0,153],[177,-1],[-2,305],[177,-1],[-1,153],[-1,153],[-705,6],[-354,3],[-4,452],[174,0],[0,153],[535,-2],[-3,612],[-585,4],[1,461],[265,-3],[0,460]],[[42358,59669],[1,611],[170,-1],[-7,170],[-89,1],[2,151],[84,1],[3,189],[4,424]],[[42526,61215],[-359,0]],[[42175,61180],[6,-119],[-350,-3],[-2,-893],[-342,-319],[-187,-11]],[[41299,59680],[-176,1],[0,-154],[-353,3],[0,-155],[-177,1],[0,-307],[135,-90],[124,-188],[-434,-233],[-142,-255],[-1577,8],[-2,-757],[-289,-1],[23,-44],[-209,-88],[149,-293]],[[38453,57026],[98,-96],[127,-231],[198,-361],[23,-176],[-1213,1],[-130,15],[0,-20]],[[37556,56158],[-75,-306],[-180,-223]],[[39255,55437],[-2,-120],[-176,0],[-1,-230],[44,0],[-3,-457],[176,-3],[-1,-457],[-878,0],[-11,-923],[-522,-1],[-171,0],[-179,157],[-260,0],[-99,-137],[-235,-61],[-109,-127],[-81,-204],[257,-202],[2,-193]],[[38970,57548],[-92,81],[327,-9],[-51,-76]],[[50007,56930],[33,169],[-19,225],[124,69],[337,-58],[102,215],[-75,64],[60,120],[-141,202],[165,270],[-106,267],[35,217],[-116,360],[28,452],[-24,141]],[[50410,59643],[-87,-50],[-234,-10],[-6,-75],[-176,1]],[[49907,59509],[-88,0]],[[49726,59358],[-263,-228],[14,304],[-147,79],[45,151],[11,412],[-106,105],[-135,28]],[[49145,60209],[-247,-118],[-130,6]],[[48768,60097],[-4,-283],[-87,8]],[[48421,59670],[-325,-305],[753,-2],[0,-77],[266,35],[213,97],[-151,-90],[-97,-146],[-51,-211],[145,-113],[-17,-97],[-289,-212],[-400,55],[-106,-29],[-61,-123]],[[48301,58452],[94,-172],[185,-146],[-161,-105],[-16,39],[-350,-3]],[[48050,58029],[-5,-347],[-142,-44],[-142,-120],[-67,-179]],[[47692,56922],[-265,-2],[-402,-3]],[[47025,56917],[-37,0]],[[46988,56917],[-350,-3],[-3,152]],[[46635,57066],[-436,1]],[[46199,57067],[-3,-764],[318,48],[-107,-36],[-98,-150],[111,-87],[-67,-235],[-303,352],[-256,178],[-121,155]],[[45673,56528],[-10,-2],[29,-382],[-462,-1]],[[45230,56143],[1,-151],[640,-5],[260,-38],[178,-125]],[[46309,55824],[42,16],[143,-200],[404,-254],[10,-142],[284,19],[117,-115],[220,-50],[76,-256],[269,0],[170,-75],[6,-63],[-199,-101],[16,-207],[319,155],[162,4],[0,149],[176,7],[333,-76],[164,-119],[342,176]],[[49363,54692],[207,155],[139,-16],[-17,155],[130,62],[-81,210],[-65,45],[28,293],[122,126],[-31,77],[285,8],[9,170],[74,12],[53,185],[-55,40],[-75,279],[126,148],[234,27],[81,267]],[[44912,49786],[25,11],[102,174],[298,113],[228,256],[72,247],[122,-133],[11,203],[91,101],[-28,164],[103,-73],[93,35],[89,-207],[112,-13],[-140,-107],[95,-173],[131,-53],[64,146],[155,-45],[5,195],[170,-158],[40,126],[346,112],[-11,114],[273,141]],[[47103,51560],[107,82],[223,70],[-276,-33],[-86,98],[88,124],[-81,62],[-53,399],[123,339]],[[47148,52701],[-4,1]],[[47144,52702],[-132,47],[-149,207],[-58,-19]],[[46805,52937],[-107,-45],[-173,39],[-360,-254],[-62,147],[-333,81],[-176,70],[-92,138],[-11,204],[-3,369],[224,112],[-6,50],[91,-97],[251,-46],[266,35],[42,-146],[244,-166]],[[46600,53428],[128,44],[142,166],[308,45]],[[47178,53683],[72,91],[-46,279],[-395,56],[-248,128],[-192,201],[-228,43],[-56,220],[42,114],[-123,267],[-76,68],[-155,290]],[[45773,55440],[-287,-153],[-105,-222],[-168,-137]],[[45213,54928],[-98,-2],[-241,-163]],[[44874,54763],[-42,-112],[-114,-29],[-99,-176],[-295,-10],[-251,-186],[7,-188],[-80,-135],[-131,27],[22,-265],[-77,-69],[-49,-255]],[[45716,51798],[-129,-152],[15,-165],[161,-222],[-101,-215],[-254,125],[-173,-52],[-143,26],[-79,129],[-404,71]],[[44609,51343],[-14,-149],[-167,-207],[-664,-284],[30,-94],[-339,-69],[-237,-159],[-13,-76]],[[43205,50305],[-30,-94],[-262,-37],[4,-119],[214,-137],[-16,-77],[104,-154],[158,-26]],[[43377,49661],[151,88]],[[43528,49749],[148,100],[239,-68],[161,67],[130,-358],[-181,-190],[-128,-58]],[[43897,49242],[-147,-63],[53,-164],[80,-57]],[[42097,49936],[-206,-110],[65,-93],[-264,-73],[-69,-245],[29,-175],[-47,-182],[-203,139],[-69,209],[-143,65],[-203,4],[-146,-286],[-3,-249],[-285,-105],[-207,-221],[3,-278],[183,13],[164,-60]],[[40696,48289],[94,10],[97,169],[-27,115],[77,151],[196,-162],[238,-52],[42,96],[369,-25],[-41,-51],[216,82],[130,-106],[107,84],[244,70],[180,-71],[380,-126],[96,-216],[98,-53],[-8,-212]],[[43184,47992],[207,33],[115,-151],[101,71],[128,-15],[81,95],[-29,296],[27,107],[196,118],[109,-34],[-34,111],[128,131],[59,-94]],[[44414,48497],[42,211],[-49,186],[104,85],[-77,285],[83,118],[-24,120]],[[44493,49502],[-100,237]],[[44393,49739],[-174,149]],[[44219,49888],[-63,94],[145,210]],[[44301,50192],[7,74],[205,58]],[[44513,50324],[326,63],[110,-61],[17,-234],[83,-19],[-137,-287]],[[48063,51964],[-42,190],[124,41],[113,140],[-285,-14],[-123,33]],[[47850,52354],[-328,-70]],[[47522,52284],[-28,-137],[126,-328],[100,-91],[171,307],[172,-71]],[[46046,59779],[180,-146],[123,198],[396,-3],[1,154],[89,-1]],[[46835,59981],[2,153]],[[46589,60290],[104,134]],[[46693,60424],[-117,20],[4,308],[8,995],[362,-1]],[[46954,61974],[-8,459],[-80,1],[-3,156],[677,-5],[30,311]],[[47570,62896],[-321,-39],[-113,51],[-273,22],[-12,-51],[-208,29],[-88,60],[-157,-9],[-85,146],[-175,51],[-193,152],[-158,52],[-320,2]],[[45460,62444],[-700,3],[-3,419]],[[44757,62866],[-356,2],[-1,191],[-1510,7],[-6,-615],[-789,0],[329,-301],[116,-164]],[[42659,61808],[48,-114],[-4,-323],[75,-152]],[[42778,61219],[630,-2],[-3,-463]],[[43405,60754],[348,3],[177,1]],[[44463,60752],[355,1],[-1,-158]],[[44817,60595],[-1,-153],[-1,-153]],[[43930,60138],[-528,1],[-2,-462],[-80,-9]],[[44118,59358],[-364,-125],[1,128]],[[43755,59361],[-528,0],[7,-615],[-289,2],[-1,-153],[176,-1],[0,-268],[1,-191],[883,1],[0,610],[704,-1],[351,1]],[[45529,58744],[757,1]],[[46397,58746],[428,2],[627,4],[-5,303],[-243,84],[-169,141],[-292,24],[-282,204],[-210,57],[-20,65],[-261,-420],[251,-2],[0,-151],[-703,-7]],[[39265,63664],[-335,-295],[0,-914],[-100,1],[-249,1]],[[38400,62459],[-882,1]],[[37414,62158],[-1,-156],[-356,1]],[[37057,62003],[-2,-304],[357,0],[0,-74],[140,-156],[100,-23],[148,-139],[12,-128],[136,-244],[-58,-388],[65,-132],[-916,-1110],[9,-75],[482,2],[58,152],[1413,-4],[-2,766],[-177,155],[5,918],[2412,-5],[64,-26]],[[39883,61765],[175,-70],[-176,-6],[1,76]],[[39883,61765],[-191,78],[192,-1],[-1,-77]],[[30941,48797],[80,91],[76,-110],[132,29],[-34,140],[68,116],[115,51]],[[31484,49754],[285,68],[105,214],[94,57],[1,111],[168,41],[253,-45],[44,105],[220,-84]],[[32654,50221],[90,5],[147,227],[-60,70],[144,145],[-17,116],[147,172],[191,30],[206,179],[-38,213],[177,303],[376,75],[22,62],[89,-56],[105,68],[46,-98],[218,59],[119,79],[55,225],[241,-8],[260,75],[464,722]],[[36537,55071],[78,130]],[[36615,55201],[145,190]],[[36760,55391],[-124,0],[164,153],[-194,0]],[[36606,55544],[-880,-2],[-4,152],[-351,-4],[13,-566],[28,-96],[2,-470],[-40,-72],[21,-281],[-649,-359]],[[35079,53365],[-272,23]],[[34631,53386],[-88,-1],[-4,460]],[[34239,54083],[-301,-88],[-395,-22],[57,-196],[168,-90],[-8,-123],[300,-115],[-45,-26],[20,-1434],[-135,-57],[-242,48],[-141,-277],[-209,21],[-121,-138],[-177,73],[-213,278],[-4,348]],[[32378,52280],[-511,-7],[-149,-232],[-674,-12],[-5,77]],[[31039,52106],[-179,-2]],[[30860,52104],[-152,-2],[-480,-142],[-181,43],[-235,-60],[-255,-229],[-288,27],[-235,100]],[[30957,49810],[-64,-155],[-338,-464],[386,-394]],[[3177,12783],[256,12],[15,-94],[170,-56],[186,119],[134,144],[46,150],[220,153]],[[4204,13211],[113,86],[189,269],[-8,191],[-46,24],[36,219],[125,71],[-57,63],[73,193],[290,45],[100,85],[89,129],[136,56],[25,155],[-80,82],[13,197],[111,66],[-5,173],[-205,26],[-130,-118],[-195,-7],[-90,56],[-133,233],[-7,181],[-68,-15],[-124,147],[-294,-21],[10,118],[-107,149],[24,108],[426,139],[417,281],[-74,220],[-288,-62],[-88,134],[122,223],[-24,270],[-46,-9],[138,197],[304,-35],[212,50],[284,258],[13,195],[166,77],[41,90],[264,85],[49,510],[87,92],[300,118],[93,78],[37,189],[-87,274],[51,91],[-24,395],[50,5],[-48,173],[-100,136],[-187,101],[49,90],[191,119],[-42,87],[97,82],[-83,143],[5,182]],[[5584,21123],[-71,-106],[-5,-234],[158,-31],[-138,-137],[85,-127],[-84,-40],[-148,52],[-158,-16],[-24,-123],[118,-76],[204,-343]],[[5521,19942],[29,15],[-132,-307]],[[5418,19650],[261,-272],[108,-229],[-174,-180],[-29,-123],[-264,-33],[-88,-158],[18,-176],[-201,-220],[-184,120],[-32,-118],[-98,-40],[-115,-182],[67,-62],[-299,-247],[11,-99],[-101,-147],[79,-69],[-110,77],[-264,-120],[-413,8],[-97,60],[-11,115],[-200,-184],[-111,-240],[46,-175],[89,-116],[-154,-59],[-88,-124],[-294,-67],[-142,26],[-106,-120],[-39,-216],[-231,21],[-291,-96],[-113,-84],[-78,-160],[-190,-169],[-140,-16],[-202,-112],[-44,-53],[161,-81],[-58,-277],[95,-334]],[[1489,14799],[77,-64],[338,-56],[97,-139]],[[2001,14540],[312,177],[118,274],[-84,253],[126,126],[1,2],[255,22],[224,126],[171,4],[131,-125],[-38,-91],[107,-131],[-92,-189],[40,-106],[-121,-69],[-99,65],[-11,113],[-174,188]],[[2867,15179],[-131,42],[-55,-189]],[[2621,14826],[128,-102],[12,-201],[107,-67],[-45,-147]],[[2823,14309],[190,21],[129,133],[270,59],[-4,103],[205,-66],[-163,-185],[81,-105],[-315,-298],[-197,-8],[-246,-97],[-21,-67],[-212,-121],[220,-1],[-20,-699]],[[2851,12779],[322,14],[4,-10]],[[7440,10496],[-1062,232],[-56,-173],[-453,-1595],[817,-176],[190,-43],[376,-83],[665,-156],[317,1256],[142,540],[-936,198]],[[81850,91531],[156,-153],[79,-154],[693,-664]],[[82778,90560],[363,390],[794,560],[259,326],[174,115],[220,567],[310,-520],[226,-955],[-43,-24],[169,-178],[65,-4],[-61,-111],[58,-187]],[[85312,90539],[614,232],[179,162],[613,473],[256,166],[368,278],[310,309],[90,136],[313,243],[45,79],[351,334],[423,450],[-303,289],[-72,6]],[[88499,93696],[-1626,67],[-62,94],[-12,228],[-136,5],[2,152],[-353,15],[8,153],[-175,7],[8,153],[-261,29],[-728,28],[-161,-238],[-239,-160],[-179,-233],[-244,-199],[-505,-214],[-382,-44],[-181,-140],[-199,-408],[-333,-242],[-206,-382],[-124,-130],[-561,-706]],[[87784,96579],[432,-61]],[[88262,96519],[214,160],[80,-18],[19,130]],[[88575,96791],[39,604]],[[88614,97395],[-156,-2],[-39,-70],[-294,11],[-302,16]],[[87823,97350],[-39,-771]],[[84800,96135],[4,74],[404,15],[-58,154],[-108,82],[165,-4],[9,149],[-101,4],[7,152]],[[85125,96831],[11,169],[978,-39]],[[86127,97185],[16,305]],[[86143,97490],[-124,81],[-857,39],[-174,-140],[-182,-18],[-287,-126],[-22,-129],[-219,-193],[77,-251],[140,-110],[-56,-229],[361,-279]],[[81467,97503],[1,-152],[209,13],[262,-81],[178,16],[464,-54],[-327,232],[-552,142],[-235,-116]],[[96162,96263],[103,-106],[674,-292],[223,133],[182,-167],[45,-109],[-58,-90],[45,-126],[244,-216]],[[97620,95290],[-11,400],[-242,243],[-160,80],[-202,276],[2,150],[71,205],[-121,83],[-259,15],[5,76],[-177,9],[4,77],[-316,20],[-118,60]],[[96096,96984],[-43,-76],[100,0],[225,-106],[-3,-120],[106,-208],[94,-65],[-432,20],[19,-166]],[[59892,57634],[-5,-154],[-99,-245],[-141,-239],[-163,-353],[-333,-348],[-199,-280]],[[58952,56015],[120,-55],[578,-8],[780,1409],[710,658],[-602,-325],[-451,-63],[-195,3]],[[46338,72526],[248,-138],[-3,-168],[240,-2],[334,-240],[608,-362],[-162,-178],[-233,-173],[-221,-61],[-225,-161],[-210,-31],[-189,-122],[-331,-110],[-226,-159],[-119,15],[-194,-79],[-210,-225],[-560,-273],[-182,-203],[-212,-336],[-28,-217],[-69,-126],[1002,-4],[713,-15],[-1,-297],[532,-4],[-2,-537]],[[46818,68090],[175,-1]],[[46993,68089],[264,-2]],[[47554,68085],[507,-5]],[[48061,68080],[141,-2],[-116,113],[-64,226],[30,122],[1259,-15],[228,17],[265,93],[139,-37],[328,-15],[149,121],[591,39],[80,86],[196,-13],[196,49],[54,79],[214,29],[44,134],[165,168],[48,-16]],[[52008,69258],[88,136],[-20,251],[-81,0],[-129,138],[-81,-60]],[[51785,69723],[-336,-38],[13,210],[-128,55]],[[49294,69759],[-969,5],[3,614],[2,306]],[[48330,70684],[3,917],[3,307],[198,18],[4,442],[336,-2],[2,150],[887,-11],[10,906],[1267,-21],[31,9],[-248,-794],[0,-404],[1245,-16],[-22,-1227]],[[52046,70958],[353,-6],[-3,-132]],[[52396,70820],[362,88],[190,141],[186,165],[169,78],[530,238],[225,-4],[160,48],[404,24],[514,324],[86,192]],[[55222,72114],[-151,195],[-157,59],[-247,-120],[11,114],[-297,87]],[[54381,72449],[-162,45],[-187,-89],[-18,345]],[[54014,72750],[-118,51],[-501,35],[-63,-32]],[[53332,72804],[-369,-557],[0,-75],[-180,2]],[[52783,72174],[-9,-307],[-357,6],[-178,3],[7,307]],[[52608,72330],[13,458],[-273,4],[13,613],[35,0],[10,499],[-709,7],[-247,422],[-22,206],[-236,-754],[-61,-16],[-3574,39],[-7,237],[-52,91],[-195,-106],[-82,81],[61,78],[-101,266],[-212,77],[-157,140],[-54,137],[116,168],[-101,15],[-356,-152],[-37,93],[-212,151]],[[45114,72539],[59,-155],[270,-5],[187,167],[423,269]],[[46346,72685],[-8,-159]],[[45946,70044],[33,302],[47,43],[360,-6],[1,-344],[-441,5]],[[49653,69225],[85,-2],[0,-233],[-77,1],[-8,234]],[[47706,68848],[-3,536],[530,-2],[176,-1],[1,-152],[177,1],[-7,-96],[-307,-292],[-567,6]],[[55708,66756],[45,-11],[393,146],[129,-23],[74,-111]],[[56349,66757],[39,5]],[[56388,66762],[-187,456],[-78,-36],[-500,56],[-196,75],[-156,-186],[150,-32],[147,-191],[-20,-123],[160,-25]],[[55140,66630],[33,-55],[185,75],[78,100],[-238,49],[-58,-169]],[[62139,65827],[12,56],[443,1166],[-589,12],[-34,111],[-374,-57],[54,-260],[-88,-71],[46,-336],[-100,-98],[80,-66],[-71,-84],[-6,-159],[98,-205]],[[55031,76268],[-7,-165],[266,-83],[72,-85],[164,-7],[207,-87],[268,12],[375,-272],[36,44],[341,-2],[210,-159],[311,-8],[-2,-76],[1236,-27],[180,75],[2,153]],[[58690,75581],[17,612]],[[59507,76173],[8,611]],[[59515,76784],[-58,4],[81,460]],[[58567,77418],[-36,-1223]],[[61506,73048],[-31,-25]],[[60964,72703],[-265,7],[7,230],[-771,15]],[[59935,72955],[87,-85],[98,-273],[180,-200],[59,-219],[66,151],[530,-12],[-12,-458],[337,-12],[-36,267],[89,126],[-9,139],[130,234],[2,106],[107,185],[-57,144]],[[58796,73064],[-227,4],[-282,130],[-167,10],[-287,79],[-253,-133],[-232,-112],[-295,-15],[3,-492],[-188,-221],[49,-167],[262,-53],[-30,-83],[209,18],[198,-57],[357,47],[61,-50],[423,-5],[40,79],[-90,436],[-67,198],[55,16],[385,-165],[146,193],[-70,343]],[[61662,73324],[1244,-27],[-3,-100],[1207,-28],[393,-337]],[[64511,73699],[-139,39],[-37,-75],[-173,63],[-6,-142],[-177,4],[-13,-153],[-150,4],[-115,156],[-209,6],[20,116],[121,35],[-10,154],[191,-2],[7,225],[3,67]],[[63824,74196],[-455,9],[-1682,-90],[-17,-481]],[[61670,73634],[-8,-310]],[[10806,30150],[174,8],[224,-294],[-242,-22],[-26,-157]],[[10936,29685],[44,-282]],[[10980,29403],[177,-33],[255,-92]],[[11412,29278],[285,172],[146,152],[114,45],[243,225]],[[11912,31258],[189,34],[100,-60],[8,160],[458,26],[28,55],[259,-86],[65,-120],[-82,-66],[-77,-216],[82,-193],[143,-111],[209,84],[109,-14]],[[13403,30751],[-58,181],[-139,120],[-21,93],[-6,149]],[[13455,31805],[40,1],[13,110],[345,187]],[[13853,32103],[172,107],[-4,110],[-6,97],[124,107],[147,27]],[[14286,32551],[463,39],[178,113],[-77,123],[148,162],[263,114],[231,-139],[270,0],[60,-47],[-174,-110],[178,-273]],[[16126,32779],[28,-3],[130,65],[187,-70]],[[16471,32771],[108,42],[-16,-131],[191,-194],[43,-103],[286,-115],[158,29],[-44,-78],[183,-42],[159,127],[-8,110],[107,34],[158,181],[197,-55],[130,248]],[[17961,34478],[-207,-44],[-145,-80],[-40,-139],[-197,22],[-77,-49],[-51,-228],[-388,-149],[-141,80]],[[16544,34190],[-2,9],[-172,183]],[[16370,34382],[-193,144]],[[16177,34526],[-292,-56],[-67,57],[72,168],[-206,119],[118,88],[-24,83],[141,22],[104,-87]],[[16023,34920],[172,268],[61,223]],[[17485,35130],[178,108],[-18,293],[-191,134],[190,318],[152,102],[101,-21],[183,277],[2,201],[323,198],[234,205],[138,71],[242,270],[239,-47],[187,132],[76,19],[112,-165],[286,148],[48,-336],[107,-51],[62,-141],[101,14],[-11,189],[57,30],[-30,166],[83,286],[42,360],[-16,167],[-317,-72],[-97,-78],[-128,194],[53,211]],[[19873,38312],[-252,-194],[-174,-24],[-10,123],[88,228],[-27,214],[-229,113]],[[19269,38772],[-20,142],[-150,53],[51,206]],[[19150,39173],[-66,1]],[[18639,38867],[-206,-429]],[[18375,38397],[-242,66],[44,134]],[[18177,38597],[-35,44],[319,357]],[[18527,39455],[15,112],[114,26]],[[18693,39592],[40,242],[61,30],[55,6],[19,332]],[[18868,40202],[-69,65],[25,159],[-74,88],[13,127],[158,77],[7,241]],[[17936,41069],[-19,44],[-381,217],[-117,6],[-46,-12],[-334,74]],[[16009,40578],[31,-206],[-154,-248]],[[15674,39508],[-187,-123]],[[15487,39385],[124,-178],[-155,-4]],[[15456,39203],[234,-33],[463,-175],[165,90],[4,119],[175,240],[-95,88],[284,248],[142,56]],[[16828,39836],[164,106],[81,-104],[239,-79]],[[17364,39764],[199,166],[27,-238],[91,12],[18,178],[264,-66],[51,88],[138,32]],[[17481,38533],[-89,194],[-168,243],[-139,19]],[[17085,38989],[-31,-48]],[[17054,38941],[-164,-287]],[[16890,38654],[-27,-173],[-109,-66],[-111,-165]],[[16484,38034],[169,-151],[302,80],[95,-17],[41,-194]],[[16641,37050],[-193,103],[46,69],[-100,223],[-407,87],[-165,175],[-61,7]],[[15782,37695],[308,-279],[10,-205],[-237,-101],[-208,47]],[[15655,37157],[-219,-313],[-171,-118],[-268,-13],[102,11],[346,-239],[-30,-107],[-119,-262],[-230,-92],[-237,26],[-42,-59],[-268,66],[-110,-40],[-120,-351],[-295,-130],[-289,-87],[-122,109],[-95,-63],[-234,34],[-35,89],[79,184],[-167,-168],[-248,42],[-64,-35],[-255,29],[28,66],[271,94],[-27,108],[183,149],[176,63],[271,42],[-20,-87],[115,-38]],[[13705,36177],[-20,109],[67,235],[-84,153],[-19,330],[-217,33],[-37,180],[-66,40]],[[13329,37257],[-151,-113],[-142,-70],[-153,120],[-34,-75],[-172,19],[-68,-56],[78,-19],[-4,-173],[80,-83],[-108,-163],[-32,-42]],[[12623,36602],[-269,-132],[-395,-13],[-93,-51]],[[11866,36406],[-153,-130],[65,-74],[146,43],[236,-87],[90,64],[119,-82],[-305,-259],[-286,-281],[-162,-242],[201,-84],[299,132],[33,-110],[168,-122],[-53,-168],[80,-89],[-219,9],[-342,-86],[-71,-87],[-679,-348],[-188,-43],[-179,-103],[-127,26],[-163,-65],[-100,24],[-240,-70],[-195,-219],[41,-111]],[[11678,33485],[41,-22],[497,349]],[[12165,33911],[-146,-67],[-171,87],[70,100],[-222,-28],[-75,190],[-100,45],[-34,128],[350,74],[321,-97],[300,10]],[[12458,34353],[34,176],[118,295],[6,110],[179,109],[262,-25],[122,-92],[124,88],[112,-92]],[[13415,34922],[277,-60],[333,49],[54,-80],[134,135],[-86,239],[74,160],[272,-245],[179,-48],[-29,-254],[133,-18],[-138,-95],[-9,-223],[129,15],[14,-100],[212,255],[88,30],[73,-95]],[[14945,34369],[139,-120],[258,-15],[-101,-93],[-76,-218],[126,-34],[129,110],[34,-168],[107,27],[-9,-96],[-141,-105],[-174,-18],[-69,-85],[-295,-101],[-145,20],[-11,128],[-138,-37],[-71,135],[-124,-17]],[[11910,31321],[-123,52],[-232,14],[-5,-123],[-160,-89],[-143,-179],[-220,21]],[[11027,31017],[-40,-135],[71,-216],[-19,-130]],[[11039,30536],[165,-108],[-256,-32],[-92,-232],[-50,-14]],[[17569,36445],[-73,219],[43,31],[113,-87]],[[17261,37027],[-13,19]],[[17248,37046],[-84,169],[-40,135],[129,63]],[[17512,37376],[168,165],[323,457],[94,125],[92,-41],[274,94],[104,-96],[-85,-114],[-129,-206],[-370,-318],[-299,-167]],[[17684,37275],[-97,-72],[43,-116]],[[17630,37087],[-125,-353],[-148,14]],[[17357,36748],[-249,-22],[74,73],[-7,172],[86,56]],[[15390,31815],[-231,-42],[-192,-81]],[[14967,31692],[-151,-44]],[[14816,31648],[46,-143],[-99,-150],[136,-97]],[[14899,31258],[350,26],[129,98],[70,-103],[107,14],[63,42],[580,57],[82,-42],[-1,-228],[202,-92],[24,-102],[-134,-92],[-133,-216],[-197,-79],[-36,-126],[-165,-170],[335,0],[-20,-141],[75,-75],[305,-155],[32,-78]],[[18098,31917],[-176,20],[-200,-138],[-195,-41],[-202,64],[10,132],[-209,22],[-237,145],[-193,-105],[-26,-126],[-135,-82],[-205,-5],[-181,97]],[[16149,31900],[-315,-131]],[[15834,31769],[-151,-79]],[[34372,17310],[220,-51],[131,80]],[[34806,17428],[250,104]],[[35056,17532],[34,45],[448,240],[177,234],[-30,103],[-130,52],[-99,-64],[-203,198],[-255,81],[-73,211]],[[33495,18553],[-48,-293],[-75,-131],[56,-243],[-14,-156],[474,-331],[484,-89]],[[34424,15718],[135,91],[569,225],[208,140],[157,-145],[203,263],[101,264],[455,118]],[[36252,16674],[-144,110],[-202,-62],[5,185],[205,106],[-97,252],[-3,138]],[[36015,17578],[-805,-38]],[[35210,17540],[-229,-137]],[[34846,17272],[-39,-77],[-629,57]],[[34178,17252],[-366,-283],[73,-206],[92,-89],[9,-207],[-256,-110],[-102,-88],[71,-153],[-199,-116],[325,-120],[99,-176],[196,-91],[304,105]],[[36885,18607],[176,-22],[-63,206],[-195,4],[-161,78],[-5,124],[100,179],[105,52],[-266,257],[34,92]],[[36048,19119],[-73,-104],[158,-192],[145,-113],[117,21],[231,-102],[243,35],[16,-57]],[[39163,19092],[-44,-243],[627,13],[289,144],[-2,88],[169,19],[-19,1112],[-271,-7],[-432,171],[2,-154],[-172,0],[8,-293],[103,-167],[-259,-379],[1,-304]],[[58693,84674],[171,-5]],[[59382,84814],[-113,73]],[[51492,83295],[307,-81]],[[52183,83207],[69,234],[175,-40]],[[52085,83812],[120,167],[181,-74],[40,-92],[130,0],[149,115],[184,-37]],[[52889,83891],[66,116],[128,21],[18,89]],[[53101,84117],[111,62],[73,270],[88,76]],[[53373,84525],[-219,93],[-315,-79],[-48,-58]],[[52791,84481],[-136,-245],[-73,63],[-262,18],[-73,137],[-236,-80],[-136,79]],[[51875,84453],[-310,-23]],[[51561,84442],[-529,-211],[-121,-8],[-290,-169],[-244,-24]],[[50377,84030],[-65,-79]],[[50312,83951],[6,-149],[223,-112],[20,-79],[266,-240],[283,-92]],[[60348,77536],[181,-3],[-24,-925]],[[60505,76608],[1520,-32],[4,154],[89,-3]],[[62118,76727],[23,929],[178,74],[8,233]],[[62327,77963],[-20,78],[-158,2],[13,154]],[[62162,78197],[-274,5],[-88,-77],[-4,-160],[-541,17],[-712,14]],[[60543,77996],[-179,3],[-5,-154]],[[59857,79901],[-49,-120],[69,-327],[205,-169],[-25,-39]],[[60124,79172],[141,70],[159,3],[256,131],[4,92],[271,-92]],[[61149,79300],[42,84],[346,206],[453,178],[130,99],[225,49],[50,-153],[255,-42]],[[62650,79721],[212,205],[17,77],[-195,24],[-54,260],[-834,1],[-176,-56],[-4,-77],[-340,10]],[[61276,80165],[-36,-331],[-156,3],[-15,-305],[-381,7],[-486,9],[8,337],[-353,16]],[[52650,79983],[601,-4],[49,-154],[271,-179]],[[52718,77899],[161,89],[153,-23],[211,165],[159,-64],[-29,-116],[-196,-151],[-120,-145],[-115,-250],[20,-379],[164,-95],[221,104],[101,164],[351,16],[-5,-157],[390,3],[312,93],[6,56],[379,-21],[-19,142],[449,8],[-4,64],[337,-5],[7,72],[895,-3],[23,147]],[[56569,77613],[-105,117],[-111,-6],[-4,175],[-179,125],[351,67],[194,-65],[172,66],[250,27],[25,-56],[23,147],[185,-1],[4,73],[167,1],[3,81],[184,-17],[4,155],[174,1],[3,156],[184,-29],[-6,278]],[[58087,78908],[-235,23],[-514,-12],[-154,42],[-135,-110],[35,-62],[-222,-186],[-396,34],[-160,232],[-455,198],[-176,194],[-88,308]],[[55587,79569],[-524,9],[8,-140],[-75,26],[-124,183],[-148,19]],[[54383,79894],[-31,104]],[[54352,79998],[-277,-160],[-228,85],[-150,-21]],[[54278,81094],[-215,-24],[-199,98],[-162,-105],[-288,-94],[-114,45],[-311,82],[-102,-52],[-172,89],[-56,-250],[-184,-4],[-5,-150],[176,-39],[10,-332],[-47,-54],[120,-119],[-79,-202]],[[52853,80547],[18,226],[229,-65],[-16,-179],[-231,18]],[[57003,81591],[380,-154],[-4,-170],[131,-20],[120,206],[-111,242],[-106,66]],[[57413,81761],[-24,-71],[-202,67]],[[58763,86928],[78,82],[58,-154],[-46,-194]],[[58867,87033],[70,80]],[[58937,87113],[-246,201]],[[58691,87314],[-148,32],[-9,-78]],[[55083,84037],[297,-532]],[[55848,83513],[-23,120],[32,300],[93,146]],[[55346,84333],[-6,-185],[-178,-30]],[[55162,84118],[-102,-39],[23,-42]],[[58644,82018],[-180,2],[6,157],[-89,0]],[[57504,81906],[249,-74],[276,-5],[-1,-75],[132,10],[0,145],[131,-37],[350,-5],[3,153]],[[14912,42457],[4,-1]],[[14916,42456],[72,64],[204,-46]],[[15192,42474],[79,72],[168,-28],[186,60],[100,-134],[95,40]],[[15957,42801],[-59,119],[228,97],[3,-123]],[[16260,43165],[-5,52],[79,56]],[[17081,44184],[48,94],[-70,118],[-198,53],[-230,-56],[-55,60],[-300,-353],[-158,-86],[-36,26],[-181,-195],[-154,-26],[-108,-86]],[[15639,43733],[243,-195],[-78,-68],[-120,-11],[-45,-98],[-276,-230],[-323,-287]],[[15040,42844],[-177,-167],[-63,-133],[112,-87]],[[15062,41032],[-11,201],[67,72],[229,19],[14,182],[183,84],[63,-36]],[[15607,41554],[338,173]],[[15945,41727],[57,96],[-86,94],[-94,-35],[-88,226],[79,205]],[[15803,42319],[-317,-99],[-133,60]],[[15353,42280],[-323,-126]],[[15030,42154],[-4,-57],[-354,-202],[-96,-115],[-249,-11],[137,-37],[55,-197],[166,-23],[208,-210],[-9,-94],[108,-205],[70,29]],[[13016,38692],[37,79]],[[13053,38771],[-9,93],[-183,277]],[[14015,39781],[-275,26],[-163,-30],[-67,70],[-391,61],[-328,419],[-327,-333]],[[12464,39994],[49,-210],[-71,-168],[-87,-58],[-149,-242]],[[12206,39316],[-199,-162],[-256,-9],[-17,76],[-106,11],[-97,-218],[64,-131],[12,-260],[-153,-328],[-78,-47],[-85,-221],[-167,-157],[-62,-219],[-259,-179],[-86,-88],[-334,-214],[-454,-181],[-164,-212],[-349,-215],[-36,-74],[-276,-178],[11,-113],[-91,-148],[-175,-73],[-57,-132],[-304,-422],[-96,-214],[-143,-79],[25,-58],[-126,-150]],[[8148,34921],[-15,-17]],[[8133,34904],[-60,-79]],[[8073,34825],[136,-34],[122,128],[109,21]],[[8440,34940],[58,109],[342,331],[40,101],[163,6],[-41,120],[275,310],[271,22],[76,79],[-78,58],[67,153],[229,125],[8,91],[235,7],[176,132],[231,252],[454,-18],[352,-119],[174,48]],[[11472,36747],[4,135],[178,162],[24,187],[188,213],[-82,116],[43,74]],[[11827,37634],[3,-1],[170,-147],[59,112],[139,4],[38,-90],[145,-80]],[[12381,37432],[14,-60],[-191,-37]],[[12204,37335],[173,-65],[24,69],[268,-16],[85,106]],[[12754,37429],[35,145],[119,18],[93,145]],[[13001,37737],[-59,187]],[[12942,37924],[-244,39],[-141,-92],[-84,-131],[-193,56],[-122,95],[249,74],[135,118],[-29,32],[14,200],[96,451],[139,-60],[254,-14]],[[41648,47843],[-133,32],[-215,-151],[-192,33],[-229,-220],[-184,-23]],[[40695,47514],[-199,-299],[-237,-59],[-35,-91],[123,-158],[334,-88],[43,82],[182,68],[-17,140],[171,-20],[153,-94],[97,85],[-68,104],[209,141],[17,82],[231,255],[-51,181]],[[5856,30616],[-106,-218],[14,-124],[-154,-59],[-7,-244],[-142,-144],[-62,-167],[-97,-31],[-41,-215],[6,-240],[-120,-385],[-68,19],[-46,-195],[90,-12],[-19,-113]],[[5104,28488],[185,-11]],[[5289,28477],[53,-77],[215,22],[199,-42],[-72,-135],[-474,-287],[-179,-61]],[[5031,27897],[73,-75],[-126,-79],[16,-118],[189,101],[181,38],[9,-153],[92,-14],[-166,-108],[-233,-232]],[[5351,27089],[147,-81],[340,197],[37,-107],[121,38],[37,-73],[-195,-173],[25,-492],[-246,-20],[-214,-151],[1,-72]],[[5404,26155],[118,-304]],[[5522,25851],[138,147],[57,-108],[152,26],[112,-245],[83,0],[152,81],[215,189],[288,8],[155,99],[197,-4],[282,47],[408,-25],[175,203],[88,-33],[-161,210],[11,123],[95,88],[-5,171],[-211,66],[-84,87],[111,74],[-46,103],[-239,96],[332,91],[111,-16],[268,79],[163,213],[121,62],[320,-3],[172,-55],[44,-92]],[[9026,27533],[209,-4]],[[9406,27721],[79,115]],[[9485,27836],[148,108],[42,99],[114,-139],[32,-577],[-84,-86]],[[9737,27241],[-17,-87],[98,-125],[297,-96],[302,124],[-59,227],[58,112],[103,38],[177,-59],[232,44],[-25,250],[166,229],[119,56],[-102,83]],[[11086,28037],[183,185],[121,224],[-17,390],[-202,304],[-64,-170],[-126,-10],[-88,-117],[-205,-28]],[[10688,28815],[-105,-266],[-220,-15],[120,74],[-57,64],[-94,-76],[-42,121],[108,74],[10,101],[-88,-82],[-39,103],[-124,-18]],[[10157,28895],[-56,-108],[-189,-109],[-118,-14],[-189,-190],[-265,-60],[-303,-335],[-51,215],[-138,91],[105,122],[-70,120],[-163,118],[-156,-80],[-48,-123],[-524,-64],[-354,76],[-50,83],[-164,-63],[-127,51],[-154,-169],[-175,-5],[91,204],[-230,121],[14,211],[-242,-97],[-353,134],[46,112],[303,208],[233,54],[-162,16],[-88,155],[-104,-7],[-75,144],[-264,114],[112,179],[-27,212],[195,88],[142,-5],[366,203],[-199,73],[40,121],[166,134],[-94,31],[184,79],[-5,77],[224,19],[140,241],[-250,134],[-206,-172],[-321,-216],[-18,-93],[-172,-123],[-339,-71],[-90,-104],[-129,-11]],[[5516,32128],[98,134],[397,63],[66,-108],[162,-42],[367,425],[313,417],[159,67],[-40,84],[190,206],[99,176]],[[7327,33550],[-239,-60],[-180,-233],[-128,62],[-216,-136],[-173,55],[-62,110]],[[6329,33348],[-126,-297],[-190,-112],[-205,-212],[-64,-138],[-164,-53],[24,-178],[-139,-214],[51,-16]],[[8888,30992],[385,-1],[227,106],[49,114],[196,-199],[-29,-257],[97,90],[91,-49],[249,104],[155,-80],[150,56],[246,-147],[116,49],[212,340],[209,233]],[[11241,31351],[-253,106],[-456,-47],[69,-215],[-126,-84],[-180,21],[-95,177],[-193,14],[-61,165],[-197,68],[-225,11]],[[9524,31567],[-296,-106],[-181,-173],[-189,177],[31,229],[-119,-14],[-32,175],[105,34],[25,141],[165,-35],[-17,-146],[132,-55],[256,23]],[[9404,31817],[332,376],[111,45],[-28,109],[95,84],[-63,178],[-100,67],[147,88],[138,12],[-94,240],[-161,8],[-147,-116],[-269,-116],[-175,41],[-216,-341],[-189,-167],[99,-139],[-124,24],[-225,-124],[-32,-174],[-206,-90],[-64,96],[-201,34],[-66,78],[-90,-211],[-125,-83],[-189,-327],[67,-94],[-32,-153],[33,-219],[224,6],[164,-138],[180,175],[227,-69],[20,190],[214,4],[202,-56],[27,-63]],[[34078,49332],[268,100]],[[34346,49432],[-11,421],[89,1],[-5,305],[95,7]],[[34514,50166],[-452,28],[-174,-11]],[[33888,50183],[9,-716]],[[35482,50164],[352,-1]],[[36654,50457],[35,41],[530,490]],[[37219,50988],[861,768]],[[36117,52470],[12,-1003],[35,-70],[-711,-4],[29,-1229]],[[36552,49129],[312,-119],[455,-101],[569,-350],[267,-76]],[[38765,49759],[-301,152],[-4,425],[-355,-4],[-3,392],[-878,-11]],[[37224,50713],[13,-854],[-165,-1]],[[37072,49858],[-84,-174],[-104,-28],[-57,-145],[-108,-34]],[[36719,49477],[-68,-61],[-99,-287]],[[50240,46818],[221,5],[33,-112]],[[50865,46618],[194,-79],[287,15]],[[51346,46554],[248,57],[-84,106],[-133,42],[-48,202],[101,245],[-85,62],[7,245]],[[25166,56085],[149,-11],[-118,-238]],[[25197,55836],[107,-182],[96,-12],[105,-192],[181,-142]],[[25020,54757],[80,-33]],[[25100,54724],[415,-12],[97,84]],[[25612,54796],[211,88],[-108,105],[159,52],[100,-50]],[[25974,54991],[225,26],[0,-78]],[[26199,54939],[497,-6]],[[26696,54933],[310,181],[253,52],[23,117]],[[27282,55283],[-123,136],[65,72],[-99,213],[-394,-221],[-107,46],[-189,216]],[[28170,58165],[-17,76],[-222,41],[-168,128],[-222,31],[-1,228],[78,3],[68,165],[-105,283]],[[27581,59120],[-182,-129],[-270,279],[-250,-77],[-40,-113],[-252,-213],[-123,181],[-221,129],[43,125],[-161,46],[-87,-157],[-92,80],[-321,-40],[-235,61],[-121,124],[139,147],[-155,148],[77,278],[116,93],[-7,186],[84,422],[177,257],[-59,170],[39,222],[-32,30],[-404,-286],[-111,-34],[-238,-231],[-113,68],[-584,-177],[-127,-65],[-25,-244],[110,-216],[-152,-95],[-106,-156],[-191,11],[-89,-93],[-127,34],[-137,-215],[-189,-103],[-12,-190],[-99,-43],[-306,-143],[-3,-108],[-162,-89],[-41,-152],[-136,-68],[-64,-109],[-166,35],[-253,-35]],[[21923,58665],[-74,-101],[76,-163],[-152,-174],[172,37],[105,-84]],[[22213,58059],[279,11],[108,102],[169,28]],[[22769,58200],[176,-15],[226,109],[56,-20],[357,112]],[[23975,58772],[46,100],[-170,83],[29,144],[278,85],[-64,-94],[10,-202],[175,118],[186,-116],[206,-246],[-45,-151],[-282,61],[-162,-64]],[[24182,58490],[-276,-144],[-128,-166]],[[23778,58180],[-23,-192],[33,-146],[-56,-77],[279,-91]],[[24011,57674],[-55,168],[62,255],[424,153],[180,-187]],[[24622,58063],[169,-41],[114,-206],[109,-322],[-82,-46]],[[24932,57448],[-104,-101],[-275,-209],[-151,31]],[[24402,57169],[-87,-63],[-115,83],[-114,-68],[117,-109],[-156,-51],[-61,-100]],[[23743,56741],[116,-117]],[[23859,56624],[98,-5],[6,-243],[169,-127],[170,189],[178,109]],[[24653,56959],[244,99],[-94,168],[108,47],[245,-282],[-108,-165]],[[25956,57703],[-121,71],[105,142],[131,-76],[84,77],[77,-285],[-276,71]],[[26923,58609],[4,7],[16,-89],[173,-110],[-91,-149],[160,-102],[-91,-16],[149,-132],[-106,-6],[-135,-128],[-517,343],[283,110]],[[27964,59492],[59,32],[525,48],[-172,-122],[228,5],[257,-118],[68,-152],[-7,-325]],[[29917,59762],[-251,43],[57,72],[-240,42],[-36,75],[-171,-77],[-266,177],[79,48],[79,217],[195,213],[-293,49],[-41,87],[107,60],[125,166],[86,261],[19,212],[197,336]],[[29563,61743],[141,-39]],[[29856,61716],[459,136],[117,102],[400,620],[-91,116],[-178,40],[-130,-64],[-338,16],[-299,-46],[-177,148],[-151,48],[-171,161],[-61,192],[23,142],[-397,-161],[-47,-75],[-16,-310],[-84,-150],[-171,34],[-5,158],[-374,5],[-920,-114],[-208,-44],[-52,116],[163,74],[-1,80],[-382,-212],[-68,39],[-177,-138],[-150,-243],[-106,-64],[-57,-185],[47,-194],[-39,-149],[57,-114],[-55,-215],[25,-129],[186,-19],[141,47],[264,-114],[26,-146],[86,-6],[183,-143],[413,67],[118,-61],[124,21],[154,-135],[77,-158],[20,-177],[-86,-359],[3,-117],[-127,-358],[171,-100],[-31,-86]],[[19387,39491],[79,9]],[[19466,39500],[246,33],[172,-97]],[[19313,40607],[36,-411],[-134,-126],[-28,-187]],[[19187,39883],[-2,-116],[158,12],[-2,-125]],[[31498,29714],[205,-49],[-82,-63],[84,-87]],[[31705,29515],[158,-71],[174,42],[143,-54],[141,36],[185,-307],[582,-88],[106,40],[182,-53],[221,21],[-6,-85]],[[33591,28996],[123,18],[146,-117],[298,71],[-10,104],[249,-77],[100,42]],[[32801,30174],[-108,56],[-302,-147],[10,-116],[-138,-72],[-98,-258],[-143,-54],[-218,119]],[[31804,29702],[-94,39]],[[31710,29741],[-212,-27]],[[69156,90591],[-156,188]],[[69000,90779],[-148,132]],[[68852,90911],[-408,-154],[-182,110],[-48,-91],[-220,-31],[41,-113],[-289,13],[-6,-153],[-337,8],[-34,-110],[-122,-58],[-551,-158],[-103,76],[30,-186],[-165,-159],[-216,208]],[[65170,90092],[-24,-44]],[[64999,89800],[110,-38]],[[65109,89762],[149,-29],[232,85],[170,-17],[153,-194]],[[65813,89607],[3,-8],[-169,-203],[-46,-312],[56,-395]],[[65413,88289],[-28,-3]],[[65385,88286],[-106,70],[-55,-317],[-173,4]],[[64991,87967],[-73,-65],[-38,-17]],[[64827,87823],[-132,-314],[-204,-137]],[[64491,87372],[-80,-255],[113,-88],[184,-329],[-10,-97],[111,18],[34,-118]],[[66728,88859],[348,-198],[21,-254],[112,-86]],[[67209,88321],[238,169],[316,169],[130,-144]],[[68335,88727],[31,51],[-301,372],[-152,133],[-201,575]],[[28229,32984],[-148,-142],[-41,-204],[-168,-219]],[[27872,32419],[80,-53],[703,8],[-5,230],[167,1],[10,117],[261,3],[11,76],[-13,192],[-857,-9]],[[40850,28952],[0,375]],[[40850,29327],[-21,-26]],[[40829,29301],[-121,-106],[-118,0],[-131,109],[-26,102],[-210,126],[-115,1],[-125,96],[-176,-63],[-96,143],[-129,36],[-33,117],[-191,-4],[-290,-257],[-20,-103],[143,-54],[238,-188],[-86,-85],[38,-136],[131,-83]],[[31933,31166],[74,-202]],[[32007,30964],[55,-115],[550,-272],[22,-92],[153,-68],[124,-122],[259,-58],[50,-92],[173,-40]],[[33393,30105],[115,91],[282,-16],[-59,99]],[[33731,30279],[-124,104],[-417,142],[-253,173],[-44,111],[-159,92],[-2,116],[-123,39],[-138,-50],[-311,124],[-2,70]],[[32158,31200],[-230,-3]],[[31928,31197],[5,-31]],[[38221,29902],[166,-79],[105,65],[278,-101],[175,6]],[[38945,29793],[74,262],[-185,79],[-271,172],[-221,65]],[[38342,30371],[-52,-128],[-200,-63],[102,-106],[29,-172]],[[32471,22778],[-15,3]],[[32456,22781],[171,-384]],[[32627,22397],[210,-9],[-279,-245],[-209,-91],[-147,134],[-120,104],[-287,-33],[-402,58]],[[31393,22315],[-190,-75],[31,-183],[262,-155],[108,0],[213,26],[-11,-68],[208,-146],[165,-17],[253,121],[38,145],[-79,81],[400,230],[31,59],[282,158],[290,265],[-139,13],[36,86],[-140,42],[-165,-25],[-114,45],[-41,-88],[-213,-84],[-147,33]],[[33914,24729],[29,-86],[-137,-123],[247,15],[271,-89],[74,85],[54,-225],[176,-225],[252,-66],[273,78],[20,90],[128,70],[81,181],[-166,184],[25,209]],[[31032,18608],[-110,0],[-174,289],[-197,-138],[-136,160]],[[30415,18919],[-93,-73],[-113,28],[-72,-190]],[[30137,18684],[-176,-262],[-328,-26]],[[29633,18396],[0,-3]],[[29633,18393],[50,-75],[-35,-175],[-221,-255],[-94,-221],[-88,-26],[3,-171],[-167,6],[-10,-242],[226,-5],[4,-238]],[[69258,88063],[-1,11],[-125,5],[-50,-149]],[[70539,90573],[-50,-185]],[[70889,89959],[355,161],[426,56],[248,-61],[384,56],[12,-206],[154,-213],[-36,-268],[-105,-36],[-5,-228],[-249,-283],[-114,173],[-360,-86],[-295,-39],[-32,120],[-192,92]],[[71080,89197],[-21,-99],[-315,9],[-203,-69],[-5,-79]],[[70544,88395],[200,88],[218,-127],[210,16],[144,-133],[-82,-255],[53,-118]],[[71287,87866],[352,-12]],[[71639,87854],[11,146],[215,1],[139,387],[34,239],[315,-55],[91,-179],[227,-22],[138,124]],[[72809,88495],[361,7],[30,841],[358,-14],[0,-5]],[[73558,89324],[352,-8],[-9,-229],[176,-6],[8,202]],[[74085,89283],[1,28],[1064,-29],[27,585],[-31,0],[19,452],[120,-4],[-1,154]],[[72686,85523],[-23,145],[205,127],[81,219]],[[72949,86014],[405,264],[117,275],[88,73],[139,-29],[228,31],[-99,132],[159,73],[-46,65],[47,237],[127,-65],[100,72]],[[74214,87142],[-84,113]],[[74130,87255],[-9,175],[94,59],[-86,97],[-331,91],[-132,-59],[156,-32],[-465,-155],[-160,-149],[-260,-27]],[[72937,87255],[-34,-660],[-181,4],[-252,13],[-116,-36],[-123,-121],[-235,4],[-196,-103],[67,-248],[227,-50],[-58,-241],[135,-88],[-185,3],[-116,-68],[-4,-112],[108,-3],[-1,-149]],[[70416,84888],[-611,-136],[-197,-101],[-80,-93]],[[75197,86532],[355,-9],[8,154],[352,-14]],[[76261,86539],[6,112],[179,-4],[7,152],[171,-8]],[[76619,86932],[0,175],[173,-7],[16,241],[24,672],[181,-8],[4,151],[-173,4],[3,155],[354,-12],[11,306],[44,-2]],[[77256,88607],[-33,112],[-554,116],[-240,110],[-140,-21],[-11,-281],[-533,19],[23,382],[-225,-81],[-136,-205],[-367,-397],[222,-112],[209,-53],[20,-252],[92,-194],[-323,10],[0,-32],[-38,-888],[-25,-308]],[[77302,86003],[-180,7],[-9,-148],[-349,10],[-179,29],[-309,-174]],[[76276,85727],[34,-176],[265,47],[-6,-180],[307,-10],[42,-77]],[[77094,85325],[173,-6],[0,70],[359,-12],[7,153],[264,-9],[-4,-66],[446,196],[12,4]],[[78351,85655],[610,301],[576,433],[255,552],[13,226]],[[79805,87167],[-366,-178]],[[78904,86862],[-65,-148]],[[78619,86722],[-74,3]],[[78379,86405],[-264,-126],[-451,16]],[[75339,84094],[176,242],[-288,1145]],[[75227,85481],[-299,11]],[[74928,85492],[-236,-114],[-91,14]],[[74601,85392],[-221,-59],[-378,23],[-79,113]],[[73923,85469],[-8,-125],[177,-4],[-5,-155],[-178,2]],[[73909,85187],[-8,-150],[179,-9],[-92,-71],[86,-79],[-30,-757]],[[94166,89660],[65,-918],[6,-103],[377,-586],[721,-904],[80,-137],[194,-107],[591,-273],[125,-6],[169,-148],[48,-108]],[[96542,86370],[167,159],[16,233],[-270,130],[-72,174],[190,91],[-186,133],[105,139],[-67,117],[101,129],[-83,74],[-91,144],[63,231],[127,172],[-334,232],[-10,159],[-299,197],[-64,136],[-225,330],[-27,244]],[[95503,87739],[20,229],[177,-12],[352,-23],[-16,-195],[-3,-34]],[[96026,87628],[-13,-153],[-264,18],[-88,6],[-179,11],[14,153]],[[96190,84439],[1,-64]],[[96191,84375],[231,145],[36,108],[-174,5],[28,76],[207,167],[19,92],[-211,111],[-44,112],[114,234],[-75,113],[274,564]],[[96596,86102],[-162,31],[-68,-92],[-54,-418],[-87,-272],[20,-269],[65,-213],[-120,-430]],[[31998,43981],[-707,-2],[1,-77],[-1078,11],[-336,-144],[-4,-631]],[[29874,43138],[-1,-144],[-4,-382]],[[29869,42612],[-2,-537],[6,-381],[2,-157],[6,-319]],[[29881,41218],[169,-3],[-52,-60],[234,-142],[-6,-122],[-165,74]],[[30061,40965],[-52,-67]],[[30009,40898],[2,-55],[257,-88],[171,-147],[-124,-7],[-2,-152],[-618,5],[-2,-383]],[[29693,40071],[16,-692],[29,-142],[-93,24],[-641,382]],[[29004,39643],[17,-888]],[[29021,38755],[196,4],[89,-76],[47,-202],[210,-389]],[[29563,38092],[49,-99],[-219,-88],[-43,64],[-134,-7],[-296,-183]],[[28920,37779],[-39,-136]],[[28881,37643],[2,-262],[2,-190],[175,28]],[[29059,36862],[-72,-87]],[[29899,35999],[56,96],[-3,195],[647,-144],[33,-42]],[[30980,37079],[-127,-9],[-187,156],[-170,40],[12,93]],[[30436,37533],[59,55],[149,89],[220,-23],[243,57]],[[30566,42298],[-44,154],[-221,2],[2,168],[87,-32],[221,-75],[-45,-217]],[[28357,39682],[-80,0]],[[28277,39682],[-160,-1],[-6,459],[107,1]],[[27132,40041],[357,19],[210,-275],[-14,-207],[118,-214],[175,-177],[91,-211],[1,1],[287,705]],[[26618,37793],[67,301]],[[26685,38094],[24,143]],[[26776,38636],[17,97],[254,3]],[[27370,38738],[-8,613],[-464,2],[80,467],[75,226]],[[27056,40045],[46,127],[391,634],[9,90],[4,563],[25,59],[99,203],[289,219],[20,193]],[[27286,42273],[-239,-5],[-49,-93],[-133,-17],[-245,166],[-167,-141],[-472,-104],[-40,-108],[-118,-36]],[[21243,42007],[-22,-444],[-98,-190],[-135,-39],[-31,-135],[-124,-17],[61,-157]],[[20894,41025],[212,-417]],[[21106,40608],[163,-321]],[[21438,40260],[72,86],[69,-268]],[[22020,39838],[311,15],[84,2],[70,-134],[112,2],[0,-307],[3,-76],[175,4],[7,-229],[2,-99]],[[22784,39016],[12,-736]],[[22796,38280],[-172,-9],[7,-312],[2,-71],[-252,-4]],[[22381,37884],[-250,-4]],[[22131,37880],[-262,-38],[-46,-55],[-148,69],[-113,-25],[-143,115],[26,169],[110,-19],[79,158]],[[21634,38254],[-118,125],[60,261]],[[21585,38832],[-23,271],[73,6]],[[21635,39109],[-68,111]],[[21480,39343],[-142,-17]],[[21338,39326],[-165,-16]],[[20308,35851],[263,163],[277,6],[342,-83],[55,-135],[466,1],[12,-244]],[[21723,35559],[66,-160]],[[21789,35399],[835,148]],[[22624,35547],[258,45],[-16,543],[177,5],[-10,307],[177,3],[527,17],[10,-314],[342,9]],[[24089,36162],[-11,307]],[[24078,36469],[-11,226]],[[23726,36919],[-176,-3],[-5,197]],[[24741,38241],[381,-451],[47,-23],[625,-46]],[[25794,37721],[354,-72]],[[23510,38290],[175,5],[8,-306]],[[23693,37989],[14,-455],[-193,163]],[[25569,40287],[157,-11],[147,-79],[207,-25],[312,21],[92,177]],[[26490,40359],[75,-116],[9,-470],[-112,-169],[-91,-384],[-149,-163]],[[21612,51068],[163,-17],[161,61],[263,38],[158,-196]],[[22658,51109],[192,320],[226,74]],[[23076,51503],[152,134],[-29,122],[106,-158],[141,-33],[-44,-91],[151,-65],[61,-111],[202,13],[116,319],[121,122],[21,145],[263,8]],[[24337,51908],[177,107]],[[24514,52015],[152,224],[175,110]],[[24841,52349],[-97,268],[90,150]],[[25238,53126],[-58,315],[-53,54],[374,198],[99,115],[191,53]],[[25791,53861],[40,270]],[[29710,54849],[-320,-91],[-126,31],[-102,144],[-38,254],[-313,97],[-98,-6],[-144,157],[336,331],[353,292],[-23,71],[-302,200],[-189,29],[-231,-181],[-93,-25]],[[28420,56152],[-13,-155],[-145,-141],[-146,-213],[-166,-126],[-137,-17]],[[27813,55500],[60,-106],[-94,-97]],[[27611,55222],[-2,-2]],[[27615,54811],[0,-63],[8,-448],[-77,-178],[-157,-136],[-57,192],[-93,124],[13,354]],[[27252,54656],[-321,-19],[-132,131]],[[26799,54768],[-173,-5],[-639,-107],[-159,-70],[-107,-141],[-39,-93]],[[21750,51699],[126,-83],[-177,-162],[-61,-120]],[[21638,51334],[-26,-266]],[[64963,80940],[0,-164],[139,-100]],[[65102,80676],[250,-8],[245,-6]],[[65597,80662],[398,-8],[202,-8],[2,156],[267,-5]],[[66466,80797],[79,-2],[6,150],[132,-2],[51,150],[79,-1],[11,149],[90,3]],[[66914,81244],[1,72],[178,-3],[2,77],[1361,-38],[37,-153],[91,-5],[-5,-152],[88,-4],[-6,-108],[17,-271],[-36,-224],[38,-60]],[[68703,80268],[219,-47],[61,33]],[[68983,80254],[128,-72],[482,-16],[149,52],[151,-88],[135,43],[31,173],[255,-129],[70,-122],[350,187],[123,70],[252,45],[418,20],[-10,-235],[91,-4],[-9,-267],[-45,-38]],[[71554,79873],[927,-22]],[[72481,79851],[31,831],[121,134],[258,-8],[-3,-41],[327,-13],[6,153],[176,-4],[7,192],[357,-9],[6,152],[175,-6],[7,153],[360,-7],[7,148],[176,-4],[25,459],[172,7],[-246,82],[-321,-190]],[[74122,81880],[-83,-89],[-376,13],[-96,-110],[-66,44],[65,199],[-450,-181],[-85,156]],[[73031,81912],[-14,-13],[-99,-156],[-95,18]],[[72472,81741],[-183,46],[-166,133]],[[72048,81932],[-114,41]],[[71771,82006],[-199,-46],[-54,97]],[[71518,82057],[-353,-135],[-244,8],[-99,116],[57,149],[156,108],[-38,106],[71,147],[-57,317],[-140,143],[-159,53],[-99,-36],[-161,49],[-77,240],[-177,28],[-27,104],[-32,20]],[[70139,83474],[-268,1],[-94,-106]],[[68571,82869],[-221,-86]],[[67612,82456],[-185,-38],[6,-134],[-179,-21],[-121,-73],[-235,-119],[-58,127],[7,4]],[[66847,82202],[165,329],[-227,122],[-171,-93],[87,155],[-57,71]],[[65623,82958],[-265,4]],[[64550,81150],[142,100],[292,15],[141,145],[143,11],[-102,-46],[206,-105],[-387,-187]],[[70197,82190],[145,98],[229,-95],[37,-76],[-124,-106],[57,-54],[-283,25],[-61,208]],[[68882,81668],[-74,84],[-46,187]],[[68750,82114],[-34,6]],[[68425,81936],[-133,-150],[-94,5]],[[68198,81791],[-135,-16],[-225,-25],[-158,150],[164,116]],[[68167,82143],[40,74],[228,63],[171,-58]],[[68606,82222],[354,-34]],[[68960,82188],[197,-39]],[[69226,82135],[237,46]],[[69463,82181],[24,103],[-122,361],[229,90],[113,-28],[-128,-104],[54,-197],[80,43]],[[69917,82335],[-138,-155],[-125,-38]],[[69654,82142],[25,-135],[-162,-45],[120,-174],[-98,-71],[-126,90]],[[69252,81717],[-36,-99],[-173,0],[-119,-31],[-42,73],[0,8]],[[73249,74849],[812,-637]],[[74061,74212],[162,3],[44,224],[136,-5],[11,299],[37,997],[-175,0],[-530,-60],[-1516,-200],[-127,-26],[74,-96],[68,-91],[296,7],[176,-122],[440,-79],[92,-214]],[[80462,82998],[260,-17],[6,150],[176,-5]],[[80904,83126],[16,302]],[[80920,83428],[116,87],[-4,170],[-106,172],[-84,35]],[[76139,84066],[-52,-450]],[[76087,83616],[37,-196]],[[76124,83420],[353,-192]],[[77017,83432],[71,-2],[-70,154],[356,-13]],[[77374,83571],[186,-3],[696,-27],[353,-30],[-13,-344],[-8,-104],[364,-14],[-7,-153],[-18,-382],[5,-96],[-186,7],[-11,-287],[-174,5],[-8,-152],[-352,11],[-177,7],[-38,154],[-132,5],[-12,-306],[-174,5],[-82,160],[-269,-30],[-5,-118],[-180,6],[7,154],[-172,82],[3,77],[-180,5],[-4,137],[-200,76],[-144,-46]],[[76442,82370],[-367,-119]],[[76075,82251],[-29,-1017],[-24,-449]],[[76022,80785],[-21,-403],[1075,-36],[-33,-902],[-178,5],[-28,-616],[-359,13],[-15,-348],[-130,7],[-31,-615],[-344,20],[-20,-655]],[[75938,77255],[372,-364],[420,-233]],[[76730,76658],[750,-25],[10,151],[172,-7],[18,309],[1227,-42],[44,905],[806,-32],[1371,-34],[10,458],[1066,-43],[51,9],[177,-6],[1,166],[532,-11],[52,1208],[375,-11],[5,80],[156,-3],[-1,-80],[271,-9],[16,302],[90,-3],[62,1077],[-2649,92],[30,615],[-423,18]],[[80949,81742],[-14,155],[-80,158],[21,459]],[[80876,82514],[-177,9],[-8,-153],[-177,10],[-178,6],[-176,8],[12,305]],[[76075,82251],[0,0]],[[95068,75042],[121,235],[-319,92],[-308,157],[-91,-53],[-387,29],[-226,64],[-257,137],[31,-161],[-43,-172],[11,-235],[-85,-153],[-141,-105],[-51,-256],[85,-175],[416,-135],[141,50],[168,181],[331,175],[281,42]],[[69046,75831],[370,-294],[384,-198]],[[69800,75339],[141,157],[131,0]],[[70072,75496],[-70,159],[-161,207],[-45,133],[-190,101],[-508,453]],[[69098,76549],[-314,-228],[-64,-111],[109,-48],[272,-293],[-55,-38]],[[68983,75815],[-57,-50],[-17,-243],[-278,-603],[-278,-1],[233,-496],[30,-274],[340,-8],[279,-12],[282,-177],[232,-233],[304,192],[291,-5],[507,301],[205,-102],[419,-83],[70,217],[169,217],[83,594],[212,-20],[2,245],[1,98],[-209,17],[-272,-93]],[[71531,75296],[-3,-59],[-283,16]],[[70930,75130],[105,-86],[187,-51],[-398,-97],[-190,21],[-178,81],[-292,28],[-117,-28],[-173,-23],[72,134],[-201,17],[-226,96],[-340,320],[-156,107],[-40,166]],[[68899,77676],[509,-342],[170,-212],[560,-145],[-237,203],[94,153],[461,262],[742,626],[70,186],[276,395],[-263,259],[-342,466],[-376,197],[-57,103]],[[70506,79827],[-136,-27],[-298,-182],[-288,-12]],[[69784,79606],[-222,-206]],[[69474,79332],[-10,-232],[-15,-360]],[[69449,78740],[-11,-154],[-153,3],[-29,-774],[-356,6],[-1,-145]],[[97363,82168],[755,-908],[620,-761],[333,971]],[[99071,81470],[-243,156],[-331,53],[-133,150]],[[98364,81829],[-47,-27],[-311,218],[-373,128],[-270,20]],[[71254,92000],[-222,-40],[-56,-117],[-148,-51],[-192,37]],[[70636,91829],[-34,-190],[24,-160],[196,-154],[11,-63],[-99,4]],[[70734,91266],[107,-114],[119,-358],[90,-72]],[[71050,90722],[80,147],[162,-4],[10,150],[895,-27],[17,459],[-430,14],[509,185],[197,98],[255,0],[17,148],[360,-14],[-1,151],[177,1],[4,152],[95,43],[0,106],[-263,5],[0,40],[11,426],[-194,82],[-132,121],[-45,168],[-135,143]],[[72639,93316],[-235,132],[-51,-95],[-224,6],[-6,-79],[-213,35],[-80,-156]],[[71830,93159],[-15,-22],[5,-389],[-49,-82],[91,-12],[21,-137],[198,2],[-9,-190],[-9,-148],[183,31],[-7,-142],[-272,4],[-138,-66],[-108,-126],[-160,-165],[-256,128],[55,48],[-106,107]],[[74363,94687],[97,-296],[1,-195],[51,-76]],[[74512,94120],[217,-241],[205,-61],[67,118],[65,-95],[127,134],[294,-24],[134,-84]],[[75621,93867],[-25,158],[-150,68],[45,198],[177,87],[49,196],[238,63],[114,-19],[23,126]],[[76092,94744],[5,81],[-149,217],[-277,-125],[-42,-91],[-115,30],[-173,-69],[-50,-107],[55,-84],[-64,-94],[-67,93],[-306,157],[-186,-53],[-151,83],[-44,179],[-85,-5],[-173,171]],[[74270,95127],[154,-262],[-61,-178]],[[77888,92189],[91,-11],[-29,-460],[499,-20],[200,57],[12,354],[38,36],[15,330],[194,-2],[33,113],[-91,103],[-16,230],[-467,-274],[-39,-100],[-114,3],[-116,-152],[-209,51],[-1,-258]],[[74264,97101],[116,-137]],[[74380,96964],[203,9],[134,-118],[154,17],[177,-85],[-58,-108],[259,-16],[271,111],[133,-157],[173,-117]],[[75826,96500],[70,-40],[384,67],[134,104]],[[76414,96631],[-223,164],[514,111]],[[76705,96906],[114,90],[86,269],[97,164],[67,342],[192,95],[183,-74],[286,-24],[226,61],[372,186],[-35,166],[55,101],[-142,47],[67,283],[154,207],[8,205],[-436,53],[28,52]],[[78027,99129],[-1476,170],[-2276,264]],[[74275,99563],[-79,-13],[206,-125],[-17,-101],[240,-60],[127,-168],[136,26],[-23,-108],[115,-92],[56,-394],[92,-181],[-79,-213],[39,-103],[-111,-200],[136,-222],[-78,-160],[-138,2],[-207,-98],[-12,-148],[-143,-50],[-281,18]],[[74254,97173],[10,-72]],[[80948,98789],[-1688,197]],[[79260,98986],[-74,-73],[-22,-226],[65,-13],[14,-242],[99,-108],[240,61],[298,3],[141,104],[337,140],[134,12],[364,-45],[83,-82]],[[16722,45040],[-7,-76]],[[30784,47045],[-15,766],[-176,-1],[-3,276],[-129,23],[-311,147]],[[30147,48571],[100,155]],[[30247,48726],[-381,-7],[-3,135],[-209,30],[-398,-83],[-169,32],[-154,-39],[-124,253],[-199,221],[-160,16],[-91,-167],[-289,0],[-307,116],[-250,-179],[-236,-82],[-192,-10],[-209,176]],[[28127,46977],[-8,-225],[-114,-161],[-228,-67],[2,-161],[-351,-115],[4,-393]],[[27432,45855],[178,-133]],[[27610,45722],[177,-132],[218,-162]],[[28005,45428],[57,131],[367,439],[205,211],[77,-38]],[[28711,46171],[130,117],[107,2]],[[29124,46235],[163,-3],[1,-110],[792,6],[1,459],[528,1]],[[30609,46588],[132,0],[1,329]],[[30742,46917],[-74,113],[116,15]],[[38983,66787],[-197,-171],[-396,15],[-376,96],[-84,149],[-211,150],[-216,265],[-160,127]],[[37343,67418],[-66,40],[-476,9]],[[36801,67467],[-847,23],[-93,65],[-512,-74]],[[35349,67481],[-432,2]],[[34917,67483],[-8,-314],[-349,3],[-1,154],[-256,50],[-84,-94],[-118,24],[-53,107]],[[34006,67412],[-281,-35],[-54,216],[-287,-37],[183,269],[46,132],[120,87],[108,-86],[63,53],[135,-60]],[[34052,67998],[-41,214]],[[34011,68212],[-242,95]],[[33769,68307],[-246,141],[-292,94],[-21,65]],[[33210,68607],[-114,-24],[-176,143],[-209,-49],[-36,70],[-293,36]],[[32382,68783],[-156,-134],[-367,-229],[33,-108],[12,-150],[-102,-210],[99,-106],[226,-9],[145,-263],[-35,-86],[-192,37],[-224,-24],[-173,-225],[57,-105],[-113,-289],[259,3],[281,-59]],[[32132,66826],[362,-18],[144,109],[154,43],[219,186],[329,18],[74,-160],[-88,-73],[96,-75],[258,3],[10,-583],[173,-23]],[[34065,68529],[102,24],[216,-73],[129,13],[421,127],[409,40]],[[35342,68660],[19,130],[347,11],[282,124],[86,147],[604,290],[462,138],[-116,130],[-136,11],[-434,-90],[-318,134],[-155,135],[202,217],[104,9],[136,154],[153,282],[233,-55],[41,106],[142,112],[-18,148],[180,-19],[83,60],[124,-38],[17,227],[-36,162],[-190,52],[-266,230],[-46,164],[-245,55],[-196,-54],[-166,-112],[-115,19],[-180,-58],[-76,-139],[-521,-226],[-95,-69],[-355,14],[-52,-150],[-221,-173],[-147,-3],[-133,170]],[[34340,70905],[-212,165],[3,108]],[[34131,71178],[-117,-99]],[[33894,71048],[54,96],[-138,173]],[[34176,71859],[0,80],[349,0],[127,90],[-200,59],[-48,86],[361,241],[54,-80]],[[34819,72335],[-23,125],[-167,222]],[[34629,72682],[-34,26]],[[34595,72708],[-157,-163],[-181,-62],[-173,76],[-159,-32],[9,-172],[-157,20],[-2,-87],[-285,-38],[52,290]],[[33542,72540],[-159,36],[-14,150],[-228,-90],[-69,-93],[-694,-309],[-401,-439],[15,-120],[-3,-121],[212,-374]],[[32201,71180],[170,-1],[-51,87],[104,71],[201,18],[85,-94]],[[32707,70859],[-175,-39]],[[32877,70599],[128,-168],[-402,-30],[-32,-92],[14,-27]],[[32585,70282],[476,-319],[128,-53],[253,-21],[10,-286],[116,-38]],[[33568,69565],[246,63],[170,45],[219,-126]],[[34566,69751],[93,272]],[[34659,70023],[144,144],[-230,300],[240,55],[57,-126],[105,96],[147,-161],[-85,-206],[-135,-111],[1,-77]],[[34903,69937],[-17,-197],[-185,-179]],[[34701,69561],[-146,-285]],[[35621,72612],[117,-97],[291,-69],[98,42],[82,-93],[97,77],[238,12],[88,-178],[151,-54],[391,14],[73,-51],[-87,-153],[-41,-197],[-153,-148],[285,88],[190,199],[-103,145],[118,291],[-133,303],[28,155],[-58,136],[-133,12],[-217,101],[-262,-69],[-221,-101],[-165,126],[-288,-123],[-148,36],[-145,-55],[-202,49]],[[35512,73010],[-204,-140]],[[35308,72870],[33,-119],[202,98],[78,-237]],[[34416,74690],[96,-297],[105,-616],[-6,-418]],[[34611,73359],[220,62]],[[35003,73393],[95,1]],[[35098,73394],[-18,134]],[[34951,73823],[44,102],[238,4]],[[35233,73929],[438,2],[0,20]],[[36304,74017],[264,455],[183,10],[200,-54],[145,52],[-225,274]],[[35769,74543],[53,341],[188,18]],[[36007,75389],[-8,50]],[[35996,75580],[-69,100]],[[35927,75680],[-249,135],[-64,345],[36,45],[526,12],[-4,198],[270,4],[56,389],[-155,26],[-1,113]],[[36342,76947],[-3,177],[-210,-123],[-73,304],[55,27],[-94,166]],[[36017,77498],[-138,176],[-177,6],[28,164]],[[35730,77844],[-41,-45],[-343,33],[-3,122],[161,111],[-134,140],[299,139],[2,292],[-315,211],[206,88],[179,3],[260,101],[-37,533],[-124,-2]],[[35840,79570],[-76,-116],[-307,-178],[-120,-22],[-272,-161],[-415,29],[-170,-102],[-51,-142],[51,-304],[151,-300],[232,-624],[9,-167],[-131,-222],[-114,-78],[-110,-188],[148,-393],[135,-520],[-63,-253],[-228,-146],[-15,-119],[-64,-99],[-217,-6],[69,-360],[134,-409]],[[18024,47892],[225,-156]],[[18309,47780],[259,120]],[[18749,48197],[-75,146],[-192,-13],[-144,78],[200,189],[-173,11],[-227,-87],[-372,-19],[-96,-87],[137,-81],[-34,-81],[-153,-24]],[[17620,48229],[243,-209],[241,54],[-80,-182]],[[17584,49149],[174,-203],[87,51],[149,-118],[37,45],[138,-131],[22,-120],[178,26],[170,-52],[-64,73],[241,201],[16,79],[153,51]],[[18885,49051],[101,73],[-15,251]],[[18971,49375],[-220,-19],[-25,173],[-103,117],[-44,184],[158,96],[-130,80],[-41,134],[151,84],[146,-275],[206,56],[77,-202],[101,-58],[165,51],[-101,-176],[100,-67]],[[19411,49553],[143,176],[118,65]],[[21243,51427],[-148,-19],[-263,-253],[-303,-45],[34,-89],[-180,-86],[-124,23],[-142,-75],[48,-60],[-82,-125],[-49,95]],[[19408,50881],[211,207],[56,103],[239,186],[45,242]],[[19959,51619],[-192,-55],[40,129],[181,262],[123,109],[66,272]],[[20177,52336],[-65,-29],[-16,158],[-124,129],[14,181],[131,36],[147,242],[228,-172]],[[20492,52881],[214,121],[38,140]],[[20680,53674],[-269,-40],[-457,-229],[-317,-287],[-352,-241],[-45,-137],[-221,-225],[-305,-452],[-77,-60]],[[18637,52003],[-200,-119],[-153,51],[-89,-84],[15,-159],[-58,-87],[-162,-68],[-53,-240],[-115,-90],[-151,-7],[-95,-153],[-13,-250],[-80,-143],[-20,-166],[71,-181],[55,-337],[67,-410],[12,-234],[-84,-177]],[[47880,81236],[138,115],[-12,274]],[[47876,82058],[-303,-165],[-119,-145],[-214,-158],[-202,15],[-412,-388],[-124,-7],[-179,-189],[-156,0]],[[46300,80847],[-71,17],[-171,-128]],[[45542,80588],[-310,-66]],[[45155,80371],[8,-180],[-119,-85],[-87,-151]],[[44957,79955],[148,-58],[142,45],[9,-85],[498,-47],[339,5],[108,-33],[302,7]],[[46419,80767],[307,61],[436,2],[71,-269],[123,-61],[134,-167],[105,-26],[443,-266]],[[47911,80475],[-164,-23],[-178,96],[7,90],[200,12],[79,93]],[[47872,80950],[0,288],[8,-2]],[[36729,75006],[438,8]],[[37780,75450],[-353,-65],[-6,593],[-55,109],[-250,-19]],[[36654,76894],[173,75],[414,52],[273,-19],[519,122]],[[38033,77124],[127,293],[-118,112],[-17,147]],[[38025,77676],[-23,635],[38,164],[-63,99],[-149,-24],[-46,-81],[-135,43],[-148,-72],[-51,84],[-243,-11],[-164,-101],[-110,15],[-7,-143],[-179,116],[17,-196],[-121,56],[-66,-77]],[[36584,77694],[-16,-67],[186,-113],[-218,-155]],[[36536,77359],[-78,-68],[123,-306],[73,-91]],[[22114,49230],[138,35]],[[22403,49472],[-105,84]],[[22203,49501],[-145,-284]],[[19800,48709],[-82,-27]],[[19575,13455],[12,-2],[326,78],[127,65],[176,-107],[226,56],[7,109],[-206,193],[-68,162]],[[20175,14009],[-286,177],[-65,95],[-224,122]],[[19600,14403],[-180,40]],[[19420,14443],[62,-126],[-55,-176],[166,-525],[-18,-161]],[[15954,15364],[178,4],[97,-119],[261,232],[378,14],[48,84],[248,87],[4,-107],[168,4],[109,88],[146,6],[90,-76],[22,-408],[59,-38],[176,143]],[[17938,15278],[-15,127],[83,120],[-22,300]],[[17984,15825],[-43,163],[-109,50],[-339,36],[-130,74],[173,80],[9,121],[-98,-34]],[[17447,16315],[-282,6],[-64,56],[-307,75],[-189,13],[-158,249],[-293,110],[-159,-76],[-204,60],[-67,84],[-337,126],[-151,-90],[36,-174],[104,-156],[21,-236],[-104,-204],[-257,-36],[49,-71],[-124,-24]],[[20277,15319],[24,-325],[283,-403]],[[20584,14591],[493,-257],[220,-29],[175,-86],[160,-150],[131,-302],[421,-141],[128,180],[-9,70],[-270,269],[-26,223],[161,4],[515,-239],[297,-20],[217,132],[182,19],[186,-77],[240,15],[162,-110],[212,-13],[-73,125],[70,40],[170,-65],[331,54],[78,-67],[212,-338],[179,-348],[98,183],[-41,103],[110,116],[-108,41],[-82,154],[-142,91],[-134,224],[-213,7],[-146,226],[-190,42],[-301,219],[-291,60],[-377,0],[-182,43],[-105,99],[-135,18],[-28,488],[18,212],[152,-49],[118,82],[-260,160],[-123,6],[-106,157],[-335,90],[-278,-86],[-83,143],[-133,93],[-279,102],[-191,-4],[-243,-79],[-196,19],[-369,107],[-135,-43],[-206,23]],[[20230,16527],[-46,-180],[87,-201],[-118,-203],[102,-47],[78,-177],[5,-260],[-61,-140]],[[28078,10628],[-197,239],[-100,53],[-133,313],[-158,193],[-163,-179],[-232,-10],[-69,-123],[-98,-175],[71,-148],[-120,22],[-306,-131],[78,-138],[-254,61],[-57,-29],[-20,-196],[-152,-117],[-85,-251],[198,147],[660,-20],[60,154],[158,18],[32,177],[217,3],[67,96],[245,20],[1,-75],[220,-32],[137,128]],[[38560,24825],[-2,305],[170,41],[93,248],[-57,196],[-125,109],[-247,42],[-287,-172],[-121,-173],[-63,-296],[109,1],[1,-303]],[[17336,7082],[-32,-102],[90,-36],[-27,-316],[-188,-44],[-52,-195],[-137,-72],[-81,58],[-162,-12],[-62,-167],[-159,-108],[33,-112],[172,-169],[62,-411],[-65,-250],[45,-68],[29,-103],[-456,-14],[-59,-93],[-248,-129],[-129,-211],[156,-87],[33,-150],[-283,-48],[9,-100],[188,-319],[91,-65],[173,137],[233,-98],[209,-150],[66,-110]],[[16785,3538],[102,219],[174,145],[192,-68],[-189,-5],[-14,-372],[205,13],[13,-326],[174,-36],[-36,-189],[-119,-76],[-36,-109]],[[17251,2734],[-125,-126],[131,-183],[94,-44],[-64,-169],[91,-18],[136,-150],[-18,-96],[128,-154],[38,-151],[428,-126],[189,138],[212,222],[-34,208],[-152,160],[35,432],[-293,411],[-201,243],[-265,-10],[104,67],[140,231],[5,140],[173,35],[27,146],[83,70],[-20,145],[125,62],[420,92],[152,114],[388,11],[177,195],[193,99],[260,46],[383,268],[158,368],[243,117],[117,-126],[109,-13],[-391,267],[-107,-52],[-172,65],[282,360],[98,56],[249,522],[-10,268],[-127,213],[-189,147],[22,307],[120,62],[-49,169],[199,-21],[151,106],[22,284],[56,98],[-315,-72],[-221,64],[-243,-104],[-171,-146],[-134,231],[-234,-14],[-116,-132],[-177,79],[-126,-166],[-127,2],[-238,135],[-78,120],[-376,330],[-263,106],[-330,-16],[-48,107]],[[19665,7665],[-79,-20],[122,184]],[[18963,6536],[-46,193],[94,77],[62,-61],[68,138],[-1,159],[4,-4],[244,-361],[-55,-111]],[[19333,6566],[-116,-183],[-156,-29],[-204,48],[102,101]],[[31138,47049],[-177,-2]],[[30961,47047],[0,-33]],[[20414,19591],[127,4],[29,-214],[-70,-95],[6,-79]],[[20506,19207],[196,-308],[-155,-78],[63,-174]],[[20610,18647],[139,131],[90,340],[207,358],[-27,104]],[[21019,19580],[-55,129],[-230,189],[89,121],[82,48],[95,210],[-90,82],[123,136]],[[21033,20495],[60,114],[102,0],[-94,174]],[[21101,20783],[-118,-104],[-215,-99]],[[20768,20580],[-187,-68],[-190,46],[-146,-34],[-167,39]],[[20078,20563],[11,-218],[-63,-279]],[[17996,19112],[307,6],[255,53],[350,29],[232,-42],[411,18],[267,166]],[[19818,19342],[-16,214],[40,92],[-5,115]],[[19704,19797],[-298,67],[-611,-23],[-300,-117],[-461,-220],[-175,-3],[-261,70],[-231,-40],[129,-157],[186,-87],[140,-171],[174,-4]],[[13306,13674],[100,-6],[310,137]],[[13716,13805],[134,84],[138,10]],[[13988,13899],[245,95],[-74,229],[99,54],[-139,122],[-24,114],[-187,-47],[-278,109],[68,261],[-210,-28],[-64,71],[-227,-20],[31,178],[-146,-17],[-53,91],[-128,-187],[-103,-216],[152,-89],[119,-257],[-172,-55],[4,-253],[-179,-105],[3,-55],[301,47],[241,-150],[39,-117]],[[8922,11412],[44,141],[-94,193],[63,126],[-120,-26],[230,314],[-168,159],[-211,-149],[-129,157],[-205,30],[-64,-55],[65,228],[-342,108]],[[11512,15496],[18,264],[173,223],[-79,50],[-94,-182],[-107,48],[-76,-113],[-135,49],[-59,-153],[-68,144],[-159,-20],[-137,126],[-246,-56],[-168,44],[-272,-34],[-49,-47],[228,-215],[158,3],[-113,-112],[2,-195],[296,-141],[281,96],[19,114],[183,105],[404,2]],[[51638,59098],[139,-107],[121,19],[99,-102],[234,-112],[194,225],[164,67],[173,-8],[169,114],[53,131],[-30,556],[-171,-17],[-179,201],[-415,-134],[-49,-62],[40,103],[-15,279],[40,188],[-77,20],[34,239],[228,183],[106,-81],[133,26],[126,-134],[278,315]],[[53033,61007],[-232,359],[-143,18],[-130,141],[-361,-134],[-310,23],[-160,-90],[-62,-183],[-129,-134],[-231,-24],[-131,-79],[-247,57],[-100,77],[-452,-6],[-122,-142],[-131,-42]],[[50092,60848],[-120,-397],[-40,-13],[215,-214],[130,-81],[159,-228],[52,-216]],[[50488,59699],[275,-117],[49,108],[169,-29],[195,117],[-1,-192],[246,-89],[77,-81],[-16,-140],[131,-36],[25,-142]],[[48766,61656],[6,0],[263,-2],[6,153],[529,-3]],[[49570,61804],[25,76],[338,73]],[[50004,61721],[165,1]],[[50169,61722],[235,35],[48,115],[219,-1],[47,76],[9,228]],[[50727,62175],[-90,-76],[-528,5],[-441,5],[-440,3],[12,305],[87,-1],[4,153],[348,-3],[1,154]],[[49680,62720],[4,323]],[[49684,63043],[-266,-191],[-86,-16],[-286,-93],[-242,13]],[[48804,62756],[-351,-55]],[[48453,62701],[-4,-278]],[[48449,62423],[-7,-307],[-3,-153],[154,0],[173,-307]],[[47570,62896],[470,-85],[112,-73],[301,-37]],[[48453,62701],[3,333],[350,-1]],[[48806,63033],[1,152],[351,-3]],[[49160,63335],[-1,303],[532,-2],[96,-1],[2,-409],[80,-129]],[[49869,63097],[178,135]],[[50359,63478],[1,315],[-130,282]],[[50230,64075],[-245,-37],[-98,70],[-190,-3],[5,906],[537,-3],[11,237],[93,-339],[252,-208],[161,-437],[-2,-311]],[[50754,63950],[-2,-477],[84,0],[-88,-151]],[[50916,63320],[256,62],[270,-29],[119,-77],[176,-268],[79,-85],[230,-117],[97,55],[205,-5],[-9,-70]],[[52339,62786],[139,-10],[-3,-122]],[[52475,62654],[73,-181],[144,-89],[168,71]],[[52860,62455],[415,-209],[334,-117],[322,24],[312,185],[4,86],[-117,48],[-67,190],[161,9],[-19,149],[370,-62],[49,209],[-66,111],[103,11],[84,127],[-45,79],[213,114],[-164,91],[145,24],[166,107],[-81,38],[-134,292],[1,111],[-142,48],[-148,150],[11,62]],[[54567,64332],[-157,-41],[-117,181],[-99,56],[-44,181],[-162,17],[-1,79],[217,45],[-304,77],[-169,148],[-165,-26],[-70,-122],[-317,-18],[-103,-115],[-88,12],[-329,-286],[-191,-66],[-405,-316],[-265,-153],[-166,-58],[-16,68],[-160,10],[-171,-208],[-106,-35],[-253,17],[-2,168],[214,266],[361,568],[34,156],[275,201],[97,144],[190,171],[91,267],[146,131],[387,200]],[[45470,63820],[2110,-16]],[[47580,63804],[4,611],[322,-2]],[[47906,64413],[34,0],[-4,-154],[175,-1],[-2,-456],[-333,2]],[[47776,63804],[-93,-459]],[[47650,63190],[-80,-294]],[[48112,65330],[19,83],[169,-9],[-3,-308]],[[50720,80484],[684,-10],[-2,-229],[178,-1],[-1,-253],[159,-1]],[[51738,79990],[-29,181],[55,165],[-31,187]],[[51553,80778],[-152,17],[-65,79],[-452,138],[0,-29],[-35,-348],[-129,-151]],[[50089,80335],[-47,100],[12,9],[54,170],[164,303]],[[50034,81261],[-483,169],[-34,174]],[[49504,81621],[-198,-295],[-73,-194],[-19,-311],[-116,-76],[10,-161],[-516,142],[-196,-28],[-280,191]],[[48116,80889],[-219,57]],[[48076,80735],[205,-251],[75,-30]],[[48356,80454],[201,-108],[-19,86],[390,-67],[-31,-118]],[[48897,80247],[195,-24],[8,-113],[116,-101],[-237,-51],[-139,108],[-179,-9]],[[48521,80065],[-102,-93],[-178,-24]],[[48241,79948],[169,-227],[90,-6],[162,-148],[301,-91],[185,8],[377,242],[184,-69],[158,5],[74,-100],[162,3],[58,121],[114,15],[90,115],[39,200],[-22,191],[-293,128]],[[49550,82866],[328,-1]],[[49878,82865],[137,275],[-17,392]],[[49998,83532],[-51,-65],[-114,-105],[-255,-127]],[[50865,82150],[-502,5]],[[50363,82155],[-343,4],[-141,82],[-251,-176],[192,-177],[325,-85],[101,-213],[140,3],[456,-181],[297,82],[46,-41],[65,175],[-221,88],[-168,249],[4,185]],[[18777,44202],[-65,-165],[-84,41],[-74,-164],[159,39],[-38,-111]],[[18631,44754],[191,27]],[[18847,45026],[-348,-127]],[[18461,44832],[-40,-142]],[[21273,46380],[190,31],[19,119]],[[21482,46530],[-156,26]],[[21994,47219],[262,-60]],[[22409,47350],[-24,44]],[[22498,47890],[114,-42],[101,57]],[[22759,48042],[-183,109],[-161,-36]],[[23451,45272],[29,561]],[[22256,45820],[-315,25],[-319,-73],[279,-252]],[[35509,38130],[167,-94],[159,-28]],[[35835,38008],[24,39]],[[35859,38047],[-197,171],[-231,45],[78,-133]],[[33490,39092],[-178,-144],[-11,-21],[126,-59],[158,139],[9,73],[-70,55]],[[23695,24718],[-137,46],[-179,11],[73,-194]],[[26093,23587],[31,31],[3,-13]],[[26127,23605],[65,3],[82,302],[-26,209]],[[25652,24221],[-114,51],[-252,23]],[[25256,24246],[89,-118],[146,-66],[56,-130],[107,-46],[160,-383]],[[26216,24293],[66,286],[-33,183],[33,181]],[[26120,24660],[47,-356]],[[26055,24293],[-95,304],[20,59]],[[27177,26889],[25,121]],[[27202,27010],[-95,4],[-205,-197],[-44,21],[12,-86],[242,-43],[65,180]],[[26327,27276],[14,-144]],[[26547,26736],[170,-57],[97,192],[13,-10],[157,273]],[[26520,27236],[-2,-2],[-101,74]],[[26417,27308],[-90,-32]],[[26253,27501],[23,64],[156,0],[49,-217]],[[26481,27348],[38,27],[25,299],[-269,13]],[[32797,41118],[197,116]],[[32528,41419],[161,-219],[108,-82]],[[24781,43639],[123,156]],[[24601,43791],[-156,5],[-26,-85]],[[23642,42529],[-20,-74]],[[22047,42413],[-127,1],[-235,100],[-219,-127],[-35,-92],[160,-75],[246,52]],[[22134,44396],[15,-92],[280,14]],[[21167,44301],[-88,-7],[-93,148]],[[20986,44442],[-240,-85]],[[20545,44587],[92,129]],[[20329,44687],[-74,-150],[147,-94]],[[19625,44112],[292,-214]],[[20189,44241],[-174,11],[-162,75]],[[19663,43670],[24,-45],[125,-190],[217,49],[81,-34]],[[20110,43450],[62,39]],[[19812,43789],[-149,-119]],[[23822,43474],[-7,77]],[[23815,43551],[-335,-79],[-217,-145],[9,-61]],[[19582,42773],[135,198],[-230,-98],[-117,37]],[[19089,43093],[93,88],[-89,53],[152,206],[-91,-11]],[[19154,43429],[-236,-158],[76,-106],[-135,-183]],[[17940,43388],[124,-87]],[[18221,43550],[-66,43],[-218,-60],[3,-145]],[[2718,2585],[172,-7],[102,-85],[180,30]],[[3172,2523],[42,24],[-18,305],[-53,-2]],[[3043,2849],[-204,-187],[-146,94]],[[3112,1493],[0,0]],[[40505,33557],[122,342]],[[40562,33937],[-60,1],[3,-381]],[[40848,33602],[-1,8]],[[40644,33882],[2,-121],[202,-159]],[[41279,33141],[-146,304]],[[41133,33445],[-133,-113],[134,-203],[145,12]],[[31055,34632],[-93,221],[-114,14],[-24,108],[-174,305]],[[30650,35280],[0,11]],[[30848,35849],[-47,207],[32,115],[155,175],[-162,67],[-133,-110]],[[31769,35622],[163,71],[45,96],[7,16],[-300,30]],[[31916,36064],[13,-109],[126,-170],[167,-34]],[[32222,35751],[5,282],[-125,-149],[-48,347],[-138,-167]],[[32674,35023],[120,-17]],[[32980,35194],[-28,46]],[[32952,35240],[-240,-180],[-38,-37]],[[33125,34847],[118,3],[53,151]],[[33812,35085],[74,48],[-166,92],[-174,28],[-225,-105]],[[35036,34921],[-162,51],[-213,-6],[-80,64]],[[34581,35030],[198,-81],[-166,-131],[193,9],[-4,-143],[153,-6],[216,142]],[[32628,35624],[-165,61],[-2,-227]],[[32461,35458],[463,-159],[28,-59]],[[32952,35240],[375,150],[317,-46]],[[33644,35344],[42,192],[167,112],[-286,1],[-57,-71],[-262,-105],[-53,201],[-93,114],[-56,175],[-2,1],[-66,19],[-14,-214],[-123,-144],[6,-21]],[[41377,32662],[103,78],[229,174]],[[41709,32914],[-149,121]],[[41560,33035],[-159,-56]],[[43344,56606],[-156,-152]],[[44116,57214],[242,0],[-3,306]],[[44279,57520],[-257,-251]],[[43119,56912],[1,230]],[[43120,57142],[-132,1],[-220,1],[0,-230],[175,-1],[176,-1]],[[44176,55582],[2,411]],[[41893,55849],[-176,1],[-2,-385],[-177,0],[-1,-149],[-88,-1],[1,-199]],[[39961,55853],[353,0],[348,0]],[[42917,54669],[137,30]],[[44066,54922],[0,-119]],[[45272,56602],[30,152]],[[45302,56754],[-246,2],[-176,1],[1,-306]],[[47519,57255],[-494,-338]],[[43756,59421],[-1,-60]],[[42357,59489],[-68,110],[-107,13],[0,-247],[-89,-153],[264,-1],[1,153]],[[37058,62158],[167,0],[13,152]],[[37170,62462],[-109,-1],[-3,-303]],[[36786,55043],[-171,158]],[[45496,57216],[-1,236]],[[45232,57444],[-177,0],[0,-230],[441,2]],[[20749,24411],[-352,27]],[[20280,26865],[-133,-169]],[[20147,26696],[-8,-34]],[[3015,11750],[-66,-3],[9,-154],[89,5]],[[4024,11732],[245,25],[44,199],[-209,-78],[-24,-15]],[[4080,11863],[62,-86],[-118,-45]],[[3057,10256],[42,104],[-70,223],[109,182],[-14,219]],[[2898,10899],[84,-269],[75,-374]],[[3159,11374],[16,26]],[[3175,11400],[-151,-3],[-26,-87],[-125,9],[-22,-111]],[[1943,13409],[81,-176]],[[2195,13221],[103,171],[-101,80],[-11,146],[-106,68],[-136,-200],[-1,-77]],[[2867,15179],[-91,111],[-252,-41],[-32,-148]],[[86416,96174],[-14,231],[290,-10],[13,227]],[[81855,90255],[-499,397],[-44,84]],[[81312,90736],[-97,-86],[-105,-280],[-96,-78]],[[55629,49248],[176,52],[265,-5]],[[56343,49599],[-177,18],[-198,-42],[-5,-124],[-101,5],[-230,2],[-3,-210]],[[57249,51487],[98,-226],[175,147]],[[57522,51408],[79,104],[-14,122],[-212,-24],[-126,-123]],[[51682,70208],[343,-19]],[[52025,70189],[-132,119]],[[51689,70680],[2,283]],[[51691,70963],[4,307],[-706,9]],[[51503,76247],[240,46]],[[51743,76293],[-213,53],[-80,-65]],[[46053,72815],[-1,-286],[286,-3]],[[48586,67157],[181,-3],[4,306],[-182,3]],[[48579,66394],[4,457]],[[48583,66851],[-128,0]],[[48455,66851],[-69,-303]],[[64145,67637],[171,-5]],[[64323,67939],[-176,5],[-176,2]],[[59242,75572],[42,-54],[202,-2],[6,145]],[[56169,73027],[-181,2]],[[56147,72774],[21,74],[342,19],[219,117]],[[51522,71579],[-2,-154],[335,-4],[-24,154]],[[43404,60599],[351,-1],[0,-153]],[[43755,60445],[176,-1]],[[43405,60754],[0,-14],[-1,-141]],[[44594,60443],[23,153],[200,-1]],[[39881,63163],[-93,460],[-80,194]],[[39459,63830],[-194,-166]],[[13403,30751],[43,-76]],[[13446,30675],[180,6],[73,-14],[91,-191],[159,55]],[[13904,31124],[-193,-145],[-34,-114],[-172,318],[-17,104]],[[15834,31769],[-1,51]],[[15833,31820],[-157,22]],[[15236,32180],[230,-10],[59,-138]],[[15525,32032],[164,9],[127,118],[-43,183]],[[15585,32374],[-349,-194]],[[16237,32569],[75,139],[159,63]],[[14652,31616],[164,32]],[[14967,31692],[7,147],[116,229],[146,112]],[[15236,32180],[-163,213],[-157,-130],[30,-148],[-188,-201],[-229,-52],[123,-246]],[[13853,32103],[22,-56],[332,49],[-82,105],[161,350]],[[35210,17540],[-154,-8]],[[34372,17310],[-194,-58]],[[57316,82381],[-129,-123],[133,-49]],[[58313,82387],[-185,-21],[-450,36],[-24,103]],[[57413,81761],[3,59]],[[56042,81488],[-45,177]],[[55922,81690],[-177,-195],[171,-140]],[[56017,82904],[-88,1]],[[58968,83283],[257,-32]],[[58591,86444],[-34,120]],[[58027,86446],[-2,-116]],[[58644,82018],[4,156]],[[58020,82768],[221,-112],[-84,-111],[-31,-41]],[[58126,82504],[246,-5],[-1,-93]],[[62274,83029],[-2,-75],[172,-4],[-6,-74],[137,-4],[8,150],[110,-3]],[[62693,83019],[-61,192]],[[63864,85143],[12,59],[-186,40],[6,137],[-216,39]],[[61817,84804],[11,-132]],[[60562,84588],[165,-149]],[[61131,84476],[83,47]],[[61854,85179],[131,-73]],[[62566,85190],[-102,141]],[[61303,83046],[180,-4]],[[60895,82902],[409,12]],[[60058,82808],[179,-41],[51,151]],[[59061,82330],[27,-7]],[[59088,82323],[91,-2]],[[59179,82321],[1,150],[92,31]],[[60514,85411],[-115,2]],[[60375,84475],[-2,2]],[[59716,84925],[59,22]],[[58902,86518],[26,-78],[-139,1]],[[58710,86679],[-127,169]],[[55083,84037],[-89,-98],[-238,-149],[-77,-220]],[[53373,84525],[161,51]],[[53534,84576],[-375,122]],[[52812,84761],[-216,-155],[-168,-66],[-867,-98]],[[51875,84453],[415,43],[296,86],[-24,-138],[229,37]],[[55378,84441],[-122,19]],[[55256,84460],[-94,-342]],[[62696,78266],[-187,4],[-345,4]],[[62164,78274],[-2,-77]],[[62327,77963],[182,-3],[175,-2],[179,-6],[9,309]],[[59824,77856],[3,153],[-157,3]],[[59670,78012],[-53,-305]],[[59466,77786],[2,78]],[[59472,78016],[198,-4]],[[59670,78012],[81,463]],[[59480,78402],[-8,-386]],[[59249,78020],[10,425]],[[60920,78688],[294,-7]],[[61199,78911],[-97,161]],[[60949,79302],[-275,-221],[-149,3]],[[56787,80060],[214,-142],[93,-131]],[[57094,79787],[12,-7]],[[57106,79780],[138,-12],[78,41]],[[57322,79809],[-62,166],[-157,142]],[[56299,79876],[318,12]],[[56617,79888],[-89,232],[116,-20]],[[56758,80452],[105,392]],[[56863,80844],[-121,49],[-406,-32],[-133,74],[-146,-42]],[[54630,80108],[-278,-110]],[[55931,81018],[-22,273],[50,29]],[[55916,81355],[-179,-79]],[[55737,81276],[-215,-112],[-84,-101]],[[54759,80769],[-196,-59],[-298,-21],[-51,-103],[209,-132],[311,-100],[185,-136]],[[44393,49739],[-65,128],[126,25],[124,187],[16,110],[-81,135]],[[44301,50192],[44,-260],[-126,-44]],[[40353,53293],[1,212]],[[39614,53137],[252,224]],[[41665,54177],[2,-228],[89,-111],[-135,-39],[7,-75],[305,-6],[-2,306]],[[16331,41298],[153,0],[213,124],[141,17],[-226,186],[-113,73]],[[16093,41006],[-83,50],[182,61],[-62,126]],[[15901,41285],[-82,-31]],[[15819,41254],[102,-284],[172,36]],[[16080,41629],[-135,98]],[[15607,41554],[95,-103],[140,-18]],[[17151,42491],[13,4]],[[17241,42516],[2,1]],[[17336,42593],[6,6],[73,129],[-184,-8],[-107,136],[-171,8]],[[16951,42864],[32,54]],[[16995,42965],[97,193]],[[14916,42456],[141,-107],[175,-9]],[[15232,42340],[-40,134]],[[15840,42293],[225,-41]],[[17030,43387],[92,46],[6,136]],[[5225,26794],[20,173],[85,-19]],[[5102,26932],[8,-145],[115,7]],[[9333,27162],[111,153],[17,162]],[[9461,27477],[-66,66]],[[9330,27435],[3,-273]],[[10936,29685],[-130,29],[-114,132],[-4,60],[62,247]],[[10426,30067],[-71,-132],[-80,29]],[[10275,29964],[91,-31],[51,-130],[100,38],[-156,-219],[207,51],[32,-192]],[[10600,29481],[70,73],[227,-40],[-36,-110],[119,-1]],[[10786,30165],[20,-15]],[[11039,30536],[-193,9],[-18,-100],[19,-137]],[[35311,49830],[-2,105]],[[35127,49935],[-42,-77],[-134,1],[12,-141]],[[35524,49667],[145,99]],[[35662,49933],[0,36],[-351,-139]],[[36793,50086],[-5,162],[-87,-1]],[[36365,49550],[352,1],[2,-74]],[[37072,49858],[-230,-1]],[[34804,53693],[-2,154]],[[35938,6016],[208,-93]],[[36146,5923],[-4,101],[-136,114],[-32,69],[-151,-3]],[[35823,6204],[5,-78]],[[50574,46616],[-105,-153],[124,-55]],[[50593,46408],[92,39],[80,34]],[[24885,56090],[40,-47],[205,71]],[[24085,55378],[256,-23]],[[24341,55355],[261,-93],[-13,-141],[82,-31]],[[24671,55090],[235,-33]],[[24986,55162],[85,164],[-181,16],[-245,90],[-111,43],[-512,160]],[[24355,57291],[47,-122]],[[24932,57448],[-100,91],[-275,21],[-30,-105],[-175,-79]],[[29763,61652],[-59,52]],[[29563,61743],[-96,-146],[34,-130],[-49,-144],[145,-172],[93,-25],[104,311]],[[22196,57751],[280,59],[363,80],[-135,31],[-84,140],[173,63],[-24,76]],[[21755,57512],[-69,43]],[[21686,57555],[60,-238],[179,-92]],[[22420,57330],[0,0]],[[23450,56538],[301,-108],[8,110]],[[23759,56540],[100,84]],[[23420,56788],[-14,-106]],[[22899,57115],[175,-284],[109,-268]],[[23183,56563],[62,47]],[[23245,56610],[-96,234],[77,35]],[[23217,57045],[-77,165]],[[19306,39043],[10,-10],[62,164]],[[19378,39197],[-29,-2],[23,298]],[[19150,39173],[6,0],[150,-130]],[[19058,39629],[7,253]],[[19065,39882],[-60,266],[-137,54]],[[18428,38441],[-251,156]],[[17478,37172],[152,-85]],[[17684,37275],[-172,101]],[[17248,37046],[94,26]],[[31100,30643],[174,177]],[[31274,30820],[-26,47],[-73,96],[-92,55],[-131,263],[-24,6]],[[30928,31287],[-106,9],[-52,-142],[60,-132]],[[30607,29678],[52,63],[247,-3]],[[31299,29996],[61,188]],[[31360,30184],[-19,26]],[[31341,30210],[-205,-58],[-54,-50],[-176,20],[58,88],[59,246]],[[30856,30593],[21,-103]],[[30877,30490],[12,-209],[-3,-66],[-179,15],[-66,-114],[30,-79],[-166,-47],[-89,-95]],[[30416,29895],[15,-103],[-20,-158]],[[29525,30062],[334,23]],[[29859,30085],[-224,251],[-132,-123],[-16,-125],[38,-26]],[[31172,29695],[247,63],[79,-44]],[[31710,29741],[-358,113]],[[31069,29440],[136,-19]],[[31426,29482],[85,22]],[[31511,29504],[-44,107],[-235,14]],[[31199,29622],[-130,-182]],[[38564,28496],[187,21],[21,133],[109,26],[-40,29],[-318,-63],[41,-146]],[[39799,28383],[134,-15],[79,-132],[113,3]],[[40125,28239],[25,78],[-110,213],[-105,56],[-96,-86],[-40,-117]],[[39451,28334],[-48,304],[-93,86],[58,55],[62,149]],[[38962,28937],[-190,-71]],[[38772,28866],[144,-138]],[[38916,28728],[20,-37],[204,109],[118,-63],[-2,-258],[-77,-75]],[[39179,28404],[121,-69],[60,73],[91,-74]],[[63136,85672],[284,-15],[268,-92]],[[63818,85648],[-99,207]],[[64023,86172],[7,445],[-22,63]],[[64008,86680],[-217,-87]],[[65813,89607],[-240,-120],[-25,-181]],[[65178,89056],[81,-31],[101,-63]],[[65268,89257],[-11,-3],[-261,1]],[[65255,88372],[130,-86]],[[64993,90686],[-122,-87]],[[63745,89594],[129,5]],[[63750,89888],[-99,-86]],[[64271,88298],[200,-262]],[[64471,88036],[55,-12]],[[63249,89476],[108,-160],[94,-36],[7,210],[-8,27]],[[63903,88474],[153,169]],[[63655,88993],[-10,-167],[53,-109],[-61,-93],[-5,-218]],[[63460,88346],[-183,268],[-62,0]],[[63240,88899],[-24,101],[-198,44],[-158,208]],[[62860,89252],[-197,-101]],[[60868,88165],[-233,-228]],[[39640,30463],[-16,-34],[205,-144],[144,-88],[41,11]],[[40014,30208],[3,145],[-142,11],[-235,99]],[[29855,33794],[269,-287]],[[30124,33507],[97,-3]],[[30221,33504],[3,10],[254,-76],[24,-52]],[[30502,33386],[106,-198]],[[30648,33539],[-169,101],[-78,126],[-91,124],[-65,-100],[-195,-27],[-108,96],[-87,-65]],[[30894,32986],[36,-99],[133,70]],[[31063,32957],[4,171]],[[30829,33713],[-170,-166]],[[29449,34451],[134,39],[263,0],[4,-115],[277,8],[-212,295]],[[29283,33650],[125,57]],[[29408,33707],[-74,92],[-12,195],[8,-78],[176,-1]],[[30444,32614],[-38,-152]],[[30406,32462],[224,-37],[15,219],[268,55],[53,97],[-153,24],[71,60],[-78,116]],[[31086,32055],[67,-4],[74,179],[-62,185],[-189,-128],[-88,21],[-73,-140]],[[31836,30863],[89,143],[82,-42]],[[31933,31166],[-93,25],[-71,-118],[-202,-1]],[[28201,34824],[-2,160]],[[27670,35062],[2,-244],[325,4]],[[28229,32984],[330,253]],[[28197,33291],[-351,-4],[5,-307],[378,4]],[[32456,22781],[-36,-131],[-101,-87],[109,-185],[199,19]],[[67378,85500],[-2,-27]],[[66535,85071],[-8,-21]],[[66874,85670],[81,96],[-66,92],[228,-7]],[[67447,86143],[36,134],[-298,-114],[-344,-2]],[[64879,84737],[353,-3]],[[65064,85129],[-396,79]],[[65040,85686],[-298,179],[12,61]],[[64438,85900],[-141,-94],[-179,-512],[24,-89]],[[68883,84828],[69,-81]],[[68952,84747],[178,342]],[[68635,86034],[63,-40],[113,112]],[[69211,86096],[1,150]],[[68661,86872],[-38,-229],[-84,-44],[-1,-134],[101,-128]],[[69610,86693],[197,-5],[6,212],[-84,96],[202,-5],[10,304]],[[69413,87463],[-7,-152],[186,-4],[-9,-5],[-377,-220],[2,-1],[-116,-68]],[[69627,88374],[-356,8],[-176,6]],[[69119,88604],[34,-1]],[[69966,88060],[9,305]],[[70467,86821],[292,52],[8,233],[46,83],[-98,79],[-273,60],[25,-507]],[[67051,88169],[144,-87],[189,70]],[[67576,88269],[-32,-20],[-36,188],[-187,-174],[-112,58]],[[67707,87731],[127,-8],[116,-132]],[[67950,87591],[110,140]],[[67823,87816],[-116,-85]],[[67132,87470],[208,30]],[[67340,87500],[95,181]],[[67276,87797],[-335,-27],[-221,176]],[[66680,87917],[156,-161],[71,-221]],[[70115,90107],[-123,-51],[-39,-100]],[[70751,89878],[136,-4]],[[70887,89874],[-26,67]],[[69247,88726],[262,-197],[117,-3]],[[70975,86955],[94,-2]],[[71001,87460],[-9,-200],[-37,-75],[20,-230]],[[71766,84492],[-75,93],[-1,231],[-89,2]],[[71464,84804],[131,-171],[0,-137]],[[70877,84901],[352,-15],[20,-77],[215,-5]],[[71487,85374],[-112,4],[18,-99]],[[74214,87142],[155,-63],[-14,116],[-129,92],[-96,-32]],[[76103,84408],[-99,135],[7,125]],[[76032,85206],[-178,7],[-14,-385],[-10,-238],[-170,-122],[443,-60]],[[75899,86359],[-87,2],[-14,-304],[88,-3]],[[76962,86324],[12,144],[172,1],[174,-7],[-5,-147]],[[77843,86905],[-3,-154]],[[79805,87167],[-243,-20]],[[80575,88953],[53,221],[133,79],[-423,17],[-8,-154],[88,-4],[-5,-154],[162,-5]],[[78786,87943],[170,-7],[20,304],[-162,7],[26,-134],[-54,-170]],[[69496,85472],[4,78]],[[69454,85707],[116,228],[-230,93]],[[69645,89470],[-120,112],[-151,-136],[-64,54],[-122,-110]],[[69981,88519],[70,150]],[[76240,86042],[7,152]],[[76423,86190],[-7,-154],[176,-5]],[[26845,36445],[-100,83]],[[27096,36514],[-130,15],[-119,-81]],[[26830,35508],[-24,-156],[-56,-369]],[[27579,35462],[-46,75],[21,117],[-134,33]],[[28167,38283],[92,-76],[227,9]],[[28486,38216],[-324,321]],[[28374,39989],[-97,-307]],[[26685,38094],[150,-199],[136,-27]],[[25612,54796],[212,-27]],[[25824,54769],[150,222]],[[27368,55182],[169,3]],[[27813,55500],[-232,20],[5,-158],[-218,-180]],[[64775,84136],[137,7],[304,98],[5,143]],[[65998,83645],[-95,99]],[[65728,83881],[-34,1]],[[66088,84179],[-3,-154],[179,-40]],[[67510,82640],[-387,-295],[-276,-143]],[[68491,83658],[80,64]],[[68484,84276],[-10,135]],[[69168,83613],[-88,-45]],[[69080,83568],[-3,-72]],[[70139,83474],[3,31],[2,8]],[[70144,83513],[-164,129],[210,40],[4,171],[-222,39]],[[69925,84328],[132,113],[-94,109]],[[69524,84558],[-126,-91],[-292,-184]],[[70830,83848],[-127,-102],[124,-145]],[[70827,83601],[16,152],[219,-6]],[[71062,83747],[-39,27],[15,278],[176,-11],[24,295],[-45,62]],[[66974,78334],[108,-4],[-3,-148],[70,-5],[4,153],[87,-79],[180,-5],[13,229],[71,-2],[17,248],[303,-30],[27,-35]],[[67851,78656],[118,43],[83,162]],[[66990,78779],[266,-28],[42,-119],[-136,3],[0,-77],[-180,6]],[[66156,79576],[-8,-230],[517,-9]],[[67459,79853],[-247,6],[-96,-73],[-667,18],[-289,-112],[-4,-116]],[[69109,79036],[-11,-287]],[[69098,78749],[191,-5],[160,-4]],[[77531,82946],[-176,24]],[[77089,83029],[14,-98],[-119,-276],[359,-9],[176,-6],[12,306]],[[77340,83127],[34,444]],[[77531,82946],[353,-12]],[[78031,82929],[-8,154],[-487,14],[-5,-151]],[[80889,82820],[15,306]],[[68222,82089],[-60,-156],[36,-142]],[[69038,82010],[-99,114],[21,64]],[[68606,82222],[2,-10]],[[68892,82028],[45,-210],[-55,-150]],[[72217,81967],[142,-67]],[[72498,81973],[208,112],[-228,-45]],[[72478,82040],[-79,-1],[-232,8]],[[72044,82050],[-132,0]],[[73031,81912],[60,152],[-68,66]],[[73023,82130],[-266,-2]],[[72757,82128],[6,-153]],[[72744,81884],[-100,-77]],[[69800,75339],[131,-55],[376,-93]],[[70321,75258],[-249,238]],[[70723,75506],[-384,71],[79,-86],[-6,-153],[177,-1],[-3,-94]],[[71088,75329],[6,150]],[[71094,75479],[-371,27]],[[69297,95309],[274,-225],[2,-13],[-9,-189],[153,-135],[145,2],[171,-87]],[[70038,96139],[-136,22],[29,101],[-220,-15],[-2,-74],[-167,103],[-191,-153]],[[69846,96723],[268,97],[318,-52]],[[70868,96926],[168,35]],[[72424,99263],[180,175],[5,156],[-799,13]],[[70738,99739],[-178,8],[7,245]],[[70567,99992],[-61,7],[-84,-273],[-20,-206]],[[70401,99461],[-48,-347],[-96,-187]],[[69740,98421],[-197,-12],[-108,52]],[[72086,98153],[119,164],[-109,294]],[[72775,97036],[320,-57],[-17,148],[-293,-21]],[[72150,96345],[-32,-88],[207,-129],[19,100],[0,1]],[[71363,95000],[195,85],[-15,242],[-118,24]],[[71194,95619],[-30,104],[-144,46]],[[70427,93952],[-188,114],[-73,110],[-167,55],[-96,133],[-79,85],[-142,25],[-221,130],[-98,-28]],[[69090,95016],[208,110]],[[68947,91755],[-111,3],[-64,127],[47,79],[-78,164],[76,280]],[[68465,92225],[285,-235],[25,-308],[59,-2],[110,1],[-60,-306]],[[69141,91048],[236,-74],[304,75]],[[69681,91049],[60,139],[113,187],[5,260],[-119,98]],[[69740,91733],[23,-176],[-160,-296],[-207,62],[82,114],[-76,-45],[-146,88],[9,194],[118,156],[-239,2],[-59,-113],[-138,36]],[[69000,90779],[153,71],[-13,171]],[[68836,91033],[16,-122]],[[70692,93254],[87,-80],[158,-7],[79,78],[-38,247]],[[70391,93267],[-141,-234]],[[70250,93033],[171,-156],[195,26]],[[70389,94441],[-73,7],[92,-286]],[[71304,93549],[149,110],[-50,172],[-55,227],[11,-6],[9,75],[-151,157],[-235,26]],[[72659,94806],[-188,-43],[118,-109],[-21,-96],[100,-48]],[[73335,94636],[41,13]],[[73376,94649],[-46,178],[-112,81],[-245,7]],[[72973,94915],[-2,-38]],[[74432,96730],[127,-30],[-92,56],[-87,208]],[[74264,97101],[-273,-28],[-11,-129]],[[73057,97919],[134,-55],[32,92],[-92,166],[-182,-2]],[[72949,98120],[108,-201]],[[16751,44819],[162,-31]],[[28090,43409],[-116,-59],[98,-85]],[[28139,44762],[165,-185],[-132,-220],[63,-120],[-52,-63],[-89,-106],[72,-293]],[[28806,43682],[39,108],[-150,40],[36,180],[-78,88],[-4,178],[-72,-1],[-36,136]],[[28439,44735],[-65,242]],[[28338,45010],[-63,-187],[-136,-61]],[[29080,42661],[39,107]],[[29119,42768],[-215,150],[-24,-80],[200,-177]],[[28194,42143],[141,0],[7,-305],[336,4],[-22,307],[169,2]],[[28121,41059],[-3,-306],[129,2],[38,115],[-63,102],[226,103],[0,82]],[[28994,41209],[-1,213],[0,115]],[[29881,41218],[-78,0]],[[29803,41218],[54,-131],[204,-122]],[[29989,45439],[88,1]],[[27282,45327],[333,2],[-5,393]],[[27432,45855],[-177,84]],[[34550,67977],[181,2],[194,116]],[[34925,68095],[-74,204],[36,89],[-206,-127],[-304,-138]],[[30174,68539],[23,49]],[[30014,68639],[-134,-251]],[[29880,68388],[170,93]],[[31970,69728],[-80,-53],[-193,20]],[[31697,69695],[261,-68],[88,26]],[[32096,69689],[109,59],[145,192],[-116,122]],[[32218,70064],[-137,-228]],[[34178,71248],[-47,-70]],[[34340,70905],[342,132],[43,46],[-92,219],[53,44]],[[34686,71346],[-93,217],[-121,-29]],[[34519,71713],[221,237],[-13,150],[38,61]],[[34765,72161],[54,174]],[[33912,71423],[181,-100]],[[34629,72682],[291,253]],[[34598,72963],[-3,-255]],[[35209,73007],[99,-137]],[[35512,73010],[-165,131],[110,59],[139,-32],[-221,134]],[[35375,73302],[-93,-47],[57,73],[-50,119],[-93,-88],[-98,35]],[[34611,73359],[-44,-223]],[[35259,73838],[-26,91]],[[33993,69341],[16,-255],[-113,-169]],[[33896,68917],[14,-56]],[[34630,69618],[71,-57]],[[34903,69937],[-244,86]],[[34011,68212],[-62,252]],[[33825,68691],[-88,4]],[[33737,68695],[-85,0],[117,-388]],[[17108,47249],[-230,215],[-201,115],[194,139]],[[16699,47745],[-100,-153],[-21,-170],[60,-155],[-57,-245],[33,-120],[-31,-78],[189,-53],[46,-125],[23,-194]],[[17261,46591],[69,247],[-160,82],[83,168],[-90,46],[-55,115]],[[19604,49240],[-69,-7],[-157,-80],[23,-69],[308,-70],[-25,106]],[[19348,48675],[-142,45],[-192,-213]],[[19014,48507],[-50,-52],[-103,-81]],[[17176,47617],[42,-121]],[[17218,47496],[110,173],[-58,344]],[[17210,48037],[-103,-157]],[[17385,48172],[101,-17],[374,-231],[141,71],[23,-103]],[[17620,48229],[-142,26],[-63,103]],[[44008,80301],[30,-23],[135,25]],[[44736,80336],[-137,29]],[[44282,80317],[102,-152]],[[44384,80165],[64,73],[285,42],[3,56]],[[43485,80735],[-129,-36]],[[43356,80699],[-3,-104],[-52,-81],[-119,37],[-132,-87]],[[46167,81021],[-69,-62],[-275,-65]],[[45558,80794],[-228,-183],[-73,-13]],[[45009,80373],[146,-2]],[[45158,80620],[-170,-61]],[[44836,80502],[173,-129]],[[38662,78397],[-15,-171],[109,-27],[262,106],[21,-42],[91,263],[63,-48],[173,50]],[[39366,78528],[51,104],[147,-38]],[[39383,78773],[-220,-77],[-78,-100],[-101,-12]],[[39688,78463],[45,-186]],[[39733,78277],[185,2]],[[39915,78585],[-235,41]],[[36156,75581],[97,118],[192,-40]],[[36219,75788],[-292,-108]],[[36017,77498],[136,62]],[[36302,77711],[26,113]],[[36045,77977],[-87,-88],[-120,32],[-108,-77]],[[36412,77693],[145,-272],[-21,-62]],[[42162,80330],[192,-54]],[[42538,80355],[-28,4]],[[42095,80659],[-42,-39],[-268,-158]],[[41785,80462],[116,-36]],[[24001,49760],[128,-103]],[[24129,49657],[204,402],[4,109]],[[22129,49029],[13,-66]],[[22271,48748],[101,-30]],[[22386,48768],[16,57]],[[22358,50918],[-111,-34],[-238,26],[-49,-38]],[[21772,50951],[-143,26],[-17,91]],[[21612,51068],[-174,-115],[-168,-43],[-40,-18]],[[21230,50892],[-9,1],[-238,-302],[62,-67]],[[19971,49053],[95,35],[104,-83]],[[20504,49451],[59,162],[-242,-39],[-142,-134],[-177,-12],[-74,-119]],[[21635,51682],[30,-162],[-118,-188],[91,2]],[[24661,51820],[-126,70],[-21,125]],[[24337,51908],[85,-190],[179,-148]],[[25550,51637],[-31,9]],[[25063,51504],[125,-38],[233,167],[129,4]],[[25412,51990],[128,263],[103,7],[71,147]],[[25714,52407],[-256,94],[-135,-278],[-150,-146]],[[21364,53206],[73,-92],[96,58]],[[20958,53163],[15,-97],[216,235]],[[20899,52552],[-19,39]],[[20841,52671],[-86,-54],[1,95]],[[20458,52845],[-28,-118],[-157,-171]],[[20273,52556],[247,-4],[160,69],[21,-69]],[[20211,51662],[82,151]],[[20293,51813],[3,25]],[[20207,51822],[-146,-132]],[[20061,51690],[45,-206],[83,-39],[22,217]],[[21421,52277],[10,-79]],[[21431,52198],[29,-33],[150,-59],[96,34]],[[21706,52140],[-5,186],[-27,35],[-248,183],[-169,266]],[[21756,53126],[72,-95],[-53,-201],[53,-221],[88,45],[53,214],[-96,379]],[[22779,53628],[34,38]],[[22813,53666],[234,199],[112,39],[103,120],[-22,78],[-192,-20]],[[23048,54082],[-288,-167]],[[22760,53915],[-28,-33]],[[23916,53704],[141,-64],[36,57]],[[23479,53749],[-75,-186]],[[23404,53563],[34,-36]],[[23438,53527],[284,24]],[[18311,15362],[41,-119],[-97,-186],[166,-44]],[[19288,15022],[270,-56],[-73,234],[68,128]],[[19553,15328],[-62,11]],[[18801,14042],[270,84],[107,109],[112,-142],[-110,267],[49,180]],[[19229,14540],[-2,0],[-63,108],[11,395]],[[18982,14852],[67,-183]],[[18886,14515],[-135,-26],[61,-112],[-11,-335]],[[19586,15624],[113,30]],[[19699,15654],[-38,247],[-103,-1]],[[19558,15900],[-110,-2]],[[19550,16282],[79,100],[-11,180]],[[19459,16557],[-238,-357],[50,74],[279,8]],[[18730,14753],[-1,170]],[[18421,15013],[-12,-189],[233,33],[88,-104]],[[19705,16713],[238,118]],[[19943,16831],[-149,154],[7,280]],[[19723,17213],[-244,-249],[-84,-82],[-85,-87]],[[19310,16795],[112,-107]],[[18952,16195],[117,98],[-89,96],[207,127],[-14,172]],[[19173,16688],[-426,-364],[1,-1]],[[25499,12482],[-211,36],[-90,-37],[376,-132]],[[16998,2962],[-127,234]],[[16739,3245],[-86,-74],[221,-141],[-116,-111],[240,43]],[[20433,40351],[-86,-141]],[[20347,40210],[28,-16],[160,-687],[39,-25],[98,184],[17,196],[-153,418],[62,174],[67,375]],[[20665,40829],[-215,2],[-13,-210]],[[21111,40006],[-134,61]],[[20977,40067],[-66,-8],[-15,-270]],[[21199,39577],[139,-251]],[[22431,38960],[353,56]],[[21698,39378],[343,-51]],[[22250,39692],[-39,79],[38,-28]],[[22092,38397],[13,-356]],[[22105,38041],[26,-161]],[[22381,37884],[-34,381],[-129,-3],[-31,151]],[[21785,39019],[-150,90]],[[21829,38658],[82,-233]],[[23518,37985],[175,4]],[[17415,39407],[21,-125],[101,29]],[[17537,39311],[37,86],[-87,98]],[[17085,38989],[46,134]],[[17071,39150],[-119,-181]],[[16952,38969],[102,-28]],[[15362,40026],[-77,-63]],[[15285,39963],[-124,-68],[3,-85],[244,8],[56,-41]],[[14728,38670],[267,36]],[[14725,38787],[3,-117]],[[15424,39203],[32,0]],[[15487,39385],[-69,38],[-40,225],[-165,-135]],[[15213,39513],[-232,-162]],[[14981,39351],[41,-45]],[[15001,38608],[-25,-200],[-241,10]],[[14735,38418],[6,-155]],[[15647,37695],[-20,70]],[[14832,37198],[157,-50],[133,-28],[31,94]],[[13939,37387],[539,-129]],[[14494,37569],[-442,-10],[-84,-35],[-29,-137]],[[14183,37869],[273,6]],[[14481,38239],[-135,64],[-112,-157],[20,-12],[-71,-265]],[[13831,38638],[127,-3],[-115,-155]],[[13886,37983],[25,7]],[[13911,37990],[131,146],[-16,92],[150,85],[19,112],[118,71],[154,137]],[[14467,38633],[-91,38]],[[14376,38671],[-78,-31],[-154,128],[-176,34],[-115,-35],[-22,-129]],[[13721,38283],[-202,-201],[-43,-43],[-63,-168],[232,-6],[85,121]],[[12228,37212],[-24,123]],[[12381,37432],[-173,92]],[[12208,37524],[-68,-297],[80,-16],[8,1]],[[12318,36880],[41,278],[-15,11],[-108,38]],[[12236,37207],[49,-121],[-59,-96],[109,1],[-17,-111]],[[13348,37471],[-44,-2],[-109,-6]],[[13195,37463],[-128,-127],[118,-178],[123,135],[190,4],[36,77],[-182,1],[-4,96]],[[31316,45598],[-272,-5],[27,-155]],[[31229,45826],[88,2]],[[30609,46359],[-1,-229]],[[31858,47266],[160,23]],[[32141,47558],[-126,-39],[-194,-3]],[[31821,47516],[30,-242]],[[30742,46917],[219,-14]],[[30961,47047],[-177,-2]],[[30150,48256],[129,200],[-157,77]],[[25452,31444],[-4,-309]],[[24857,30442],[340,110]],[[25278,30828],[-177,-1],[-162,-2]],[[24936,30978],[316,3]],[[25364,31134],[-432,-3]],[[25253,28952],[-20,307],[-12,-1]],[[25149,29258],[-163,-2]],[[19818,19342],[168,80]],[[20130,19578],[114,-179],[262,-192]],[[20026,20066],[-106,103],[-176,40],[-9,-104],[128,3],[14,-268]],[[20626,22236],[87,2],[-2,115],[173,79],[-264,32]],[[20620,22464],[6,-228]],[[46995,58140],[180,-5]],[[47175,58135],[2,309],[-355,-2],[-186,-1],[-164,-1],[1,-153],[129,1],[42,-153]],[[49907,59509],[1,133],[-351,54],[-3,-185],[73,-1]],[[48768,60097],[-181,54],[3,-177],[-92,-2],[0,-152]],[[46835,59981],[614,-5]],[[47104,60441],[-411,-17]],[[48236,60277],[310,-77],[3,232],[-43,7]],[[49029,61046],[-3,-306]],[[49561,60743],[-3,229],[-178,0],[-176,-21],[0,95],[-175,0]],[[47981,60873],[4,304],[-88,5]],[[47897,61182],[-87,6],[-4,-152],[-163,10],[-462,6],[-36,27]],[[47145,61079],[-207,-332],[171,-1]],[[49570,61804],[-2,-77]],[[50040,62754],[302,0],[52,76]],[[50044,62830],[-4,-76]],[[47906,64413],[-130,-609]],[[37028,42747],[-4,-51],[90,-22],[89,103]],[[37164,43033],[-48,151],[-220,-163],[59,-114]],[[38295,42463],[66,-134],[-16,-146]],[[38345,42183],[110,79],[170,-14]],[[38625,42248],[72,159],[51,34]],[[38748,42441],[-100,98],[-284,543],[119,4]],[[38483,43086],[-183,103]],[[38300,43189],[-47,-99],[111,-93],[-30,-139],[-27,-14],[-52,-29],[-261,44],[-73,-73],[5,-6],[69,-38],[250,-118],[47,-151],[3,-10]],[[38614,43097],[48,61]],[[38661,43326],[-39,123],[-103,-32],[95,-320]],[[37602,42984],[2,-73],[106,101],[165,40],[31,217]],[[37906,43269],[-91,-11]],[[37815,43258],[-196,-156],[-122,-25]],[[36967,43214],[151,-29],[150,-27],[93,120]],[[48091,80067],[150,-119]],[[48445,80235],[-110,62]],[[48116,80889],[-1,74],[-268,185],[33,88]],[[48300,80370],[56,84]],[[48780,81944],[-47,-182]],[[48733,81762],[-41,-70],[20,-260],[74,-40],[156,57],[10,281],[43,181]],[[48368,82284],[26,185],[-95,7]],[[48299,82476],[-33,-152]],[[48941,83421],[-130,-15]],[[49541,82299],[306,215],[255,-239],[263,-75]],[[50365,82200],[-1,39]],[[49875,82600],[-103,0],[90,130],[16,135]],[[52332,82250],[-3,32]],[[51690,82663],[-1,-121],[200,-20],[-56,-6],[26,-177],[-104,-99]],[[53682,82260],[-24,165],[-87,15],[13,117],[-20,3],[-59,-114],[-157,-77]],[[52867,81841],[334,90]],[[52843,82023],[-191,6],[-112,-162],[71,9]],[[54024,81881],[51,-145],[97,2],[184,-246],[113,-8]],[[26048,36805],[214,1]],[[26190,37114],[-117,-4]],[[24416,36767],[14,-289],[527,12],[-6,154],[-228,101]],[[25968,31448],[165,-1]],[[26144,31599],[83,269]],[[26227,31868],[-129,88],[-139,-27],[9,-481]],[[19622,45668],[-48,118],[-362,-284],[36,-30]],[[24348,45890],[205,-62],[-3,246],[-212,-3]],[[21100,48319],[41,7]],[[21122,48338],[-22,-19]],[[20987,48140],[-69,-140],[-113,-43]],[[20805,47957],[181,40],[1,143]],[[40210,36775],[114,108],[191,12],[340,-184],[183,150],[296,128],[82,94],[157,16],[8,-127],[218,-259],[123,-19],[106,-216],[-117,-34],[-88,137],[-192,-177],[125,-118],[-62,-199],[57,-92],[-82,-144],[17,-103],[-127,-213],[93,-238],[-207,-409],[112,-223],[432,-36],[151,114],[182,23],[251,-117],[126,88],[79,-75],[310,15],[88,-36],[110,-264],[-52,-298]],[[43234,34079],[1606,1222]],[[37927,39569],[117,-29],[186,-146],[-103,-209],[168,-85],[-323,-78],[3,-86],[-123,-28],[-63,-116],[145,-64]],[[33731,30279],[171,99],[239,-60],[233,-206],[440,64],[313,-43],[127,-103],[206,-3],[186,-67],[250,-46],[122,48],[387,26],[291,-47],[79,-51],[31,-160],[241,-27],[50,-71],[218,-37],[164,19],[210,95],[160,-54],[133,128],[239,119]],[[38342,30371],[152,61],[66,277],[52,16]],[[38612,30725],[-50,242],[125,134],[-138,147],[-22,154],[182,79],[5,102],[234,58],[79,-35]],[[39027,31606],[-23,172],[75,1],[76,179]],[[39155,31958],[-158,119]],[[38997,32077],[-30,103],[181,276],[138,66],[137,-28],[144,193],[-87,83],[37,198],[-172,145],[125,223],[33,231],[102,108],[133,18],[137,205],[-13,102],[126,79],[107,164],[302,-124],[221,136]],[[38858,36195],[-144,11],[-178,-128],[19,-158],[-162,-29],[-190,48],[-143,-51],[-119,-130],[-325,-137],[-247,-17],[-541,56],[-115,-29],[-430,-232],[-193,-191],[-174,-30]],[[35916,35178],[-14,-39],[235,-34],[88,40],[117,-101],[-201,-103],[113,-130],[-169,-8],[112,-70],[140,15],[171,-115],[133,66],[-115,-79],[-180,110],[-180,-14],[-97,59],[-300,-59],[-62,-86],[-207,-10],[-54,-83],[-150,1],[-144,-140],[-129,41],[-399,84],[-216,-15]],[[34855,33287],[175,57],[193,-102],[275,91],[498,-73],[115,-115],[180,-283],[4,-138]],[[33435,32264],[27,-297],[-152,11]],[[33310,31978],[41,-65],[-268,88],[-242,-25]],[[32841,31976],[-234,-154],[-248,5],[-14,-143],[-97,-92],[-13,-207],[-77,-185]],[[39415,31155],[16,-217]],[[39431,30938],[37,-136],[65,-49],[36,-233],[63,-49]],[[39632,30471],[8,-8]],[[40014,30208],[83,-220]],[[40097,29988],[176,-98],[25,-89],[230,-14]],[[40528,29787],[75,11]],[[40734,29853],[112,96]],[[40846,29949],[31,1626]],[[40877,31575],[13,715],[471,359]],[[40727,32936],[-498,-88],[-64,-220],[-136,-56],[5,-235],[-199,-173],[-69,-272],[96,-94],[-21,-167],[-94,-55]],[[39747,31576],[-302,-137],[-58,-129],[28,-155]],[[44220,54992],[25,83]],[[52411,41070],[808,606],[900,704],[483,357],[3132,2393],[2700,2055],[700,551],[283,190],[426,333]],[[61843,48259],[1189,924],[314,221],[983,764],[806,599],[1236,958],[895,685],[410,302],[1782,1365],[659,496],[2924,2239],[2244,1706],[1095,852],[45,24],[1271,965],[3657,2791],[411,305],[1049,807],[1058,799]],[[83871,65061],[2500,1913],[1397,1059],[1152,882],[1216,919],[1062,817],[973,737],[2265,1727],[51,220],[-35,232],[61,146],[-18,250],[33,145],[-44,230],[74,201],[459,301],[118,209],[69,218],[202,279],[242,157],[140,142],[214,82],[253,145],[79,226],[165,249],[-58,114],[135,96],[73,261],[154,108],[4,85],[-116,65],[151,162],[180,107],[273,407],[44,235],[-51,523],[139,109],[382,-53],[102,130],[260,97],[158,218],[229,30],[320,244],[90,108],[271,34],[236,115],[221,320],[201,143],[33,275],[69,147],[-304,76],[-41,80],[-562,535],[-21,152]],[[97363,82168],[-441,549]],[[96922,82717],[-606,739],[64,376],[-253,347],[-18,157],[81,103]],[[96596,86102],[-54,268]],[[95583,89594],[-153,184],[-150,47],[-304,-37],[-134,107],[-186,14],[-23,97],[158,147],[110,237],[-2,254],[-90,177],[-195,201],[91,147],[299,73],[184,92],[36,152],[-146,116],[166,200],[-28,234],[47,158],[-19,267],[-71,222],[-92,120],[-90,360],[20,97],[182,34],[29,136],[139,139],[49,200],[136,37],[110,-164],[193,178],[283,46],[164,-38],[128,-95],[531,44],[152,129],[197,486],[214,-36],[25,167],[-120,228],[52,120],[151,157],[-6,262]],[[96162,96263],[-299,272],[-209,25],[-177,83],[-239,174],[-181,334]],[[95057,97151],[-6182,720]],[[88875,97871],[488,-220],[-77,-290]],[[89286,97361],[150,-214],[2,-246],[-87,-229],[-24,-192],[-157,-545],[-40,-603],[-38,-432],[-114,-232],[-138,-90],[-341,-882]],[[85312,90539],[-462,-407]],[[84905,90131],[-379,-248],[-334,-116],[-142,-158],[-115,-302],[-384,-8],[-259,-94],[-305,24],[-501,-62],[-250,-261],[-137,-28],[-110,-95],[-336,10],[-67,-36],[44,-151],[-177,8],[-7,-148],[-182,1],[-51,118],[-282,-262],[-156,-222],[-135,-29],[-187,-208],[-135,-225],[-342,-294],[-171,-178]],[[78351,85655],[294,-194],[-540,-218],[-642,-235],[-143,-41],[-464,-282]],[[76856,84685],[-148,-31]],[[76708,84654],[-18,-606]],[[80920,83428],[534,-15],[-33,-618],[354,-15],[-25,-535],[-176,19],[12,-87],[-283,11],[-3,-66],[-174,-1],[-10,-145],[-88,5],[-79,-239]],[[76730,76658],[268,-434],[569,-546],[711,-465],[249,-190],[240,-130],[362,-463],[285,-237],[231,-80],[5,-116],[271,-228],[616,-358],[412,-64],[-215,-76],[-1473,8],[-1562,97],[-215,146],[-254,54],[-95,-66],[-251,-69],[-85,-71],[-228,-29],[-175,-193],[-166,-341],[0,-261],[-143,-42],[-211,174],[-372,423],[-1443,1111]],[[73249,74849],[107,-126],[6,-208],[-192,-181],[34,-102],[-52,-337],[35,-288],[-96,-171],[-158,-93],[-171,-180],[142,-125],[-581,-257],[-185,-227],[-339,16],[-423,-105],[-26,-319],[-106,-352],[-105,-188],[11,-377],[90,-76],[-1866,47],[-462,-78],[-195,19],[-226,85],[-360,2],[-43,-1275],[-494,59],[-274,227],[-56,117],[-344,144],[-327,212],[-1062,438],[-523,239],[-539,194]],[[64316,67632],[347,-8],[197,-65],[41,-80],[222,-82],[304,-8],[-1,-39],[295,-7],[446,-101],[600,-318],[19,-124],[-128,-82],[-72,-284],[59,-160],[214,-144],[48,-150]],[[66907,65980],[117,-230]],[[54567,64332],[188,-23],[87,-73],[426,-102],[533,-20],[68,-153],[5,-214],[147,-221],[-84,-117],[72,-117],[-36,-121],[47,-209],[-60,-20],[124,-170],[42,-228],[-32,-79],[168,-16],[52,-241],[-60,-314],[-95,-156],[-194,-159],[-287,-36],[-166,-155],[22,-121],[-193,-238],[-40,-358],[-185,-221],[-173,29],[49,91],[-78,82],[-342,-33],[-66,-112],[-135,75],[-595,-32],[-227,243],[-98,-26],[-119,126],[-299,114]],[[51638,59098],[-91,-85],[-89,-331],[193,-164],[-23,-111],[121,-144],[-65,-93],[-62,-279],[89,-124],[-59,-99],[-184,-113],[37,-114],[176,-146],[133,-7],[139,-126],[224,-102],[-26,-87],[125,-143],[-146,0],[-76,-197],[-133,-65],[29,-105],[-95,-13],[-339,-252],[183,-155]],[[49363,54692],[-12,-89],[118,-15],[-19,-238],[-170,-126],[-156,-21],[-141,64],[-225,-208],[-62,32],[-158,-178],[132,-77],[38,-104],[-73,-90],[-133,31],[33,109],[-355,-129],[-159,-223],[-145,20],[-161,-61],[-194,-8],[-56,193],[71,102],[-147,-66],[-211,73]],[[46600,53428],[85,-54],[54,-217],[116,5],[-50,-225]],[[47144,52702],[230,150],[385,40],[32,-367],[-74,-36],[133,-135]],[[48063,51964],[283,-283],[191,-5],[100,-370],[287,2],[41,70],[281,104],[230,9],[191,-52],[69,-94],[-52,-99],[29,-151],[-126,-179],[-42,-388],[-63,-96],[79,-43],[53,-166],[-138,-169],[-287,-75],[-357,-378],[-281,-51],[-332,13],[-89,127],[-191,28],[-188,-117],[-223,76]],[[55164,52099],[-79,-183],[58,-170],[219,-134],[196,-6],[172,-125],[180,-27],[314,143],[210,7],[113,105],[140,30],[481,-194],[81,-58]],[[57522,51408],[174,-24],[162,-111],[133,-300],[279,-172],[121,-136],[414,-167],[-47,-79],[58,-155],[-64,-308],[128,-91],[92,69],[283,-31],[76,-50],[551,-135],[544,-656],[119,-265],[70,-10],[151,-250],[253,-157],[11,-109]],[[55821,48380],[-235,-154],[-306,-326],[-311,-196],[-160,-149],[-76,-450],[-397,-121],[-153,-76],[-86,-129],[-251,-150],[22,-62],[-520,-63],[-177,25],[52,-137],[-108,-199],[-265,-240],[-100,88],[-281,38],[-108,90],[-52,-214],[69,-119],[-101,-277],[-402,-79],[-276,-12],[-235,-50],[-256,31],[-81,-312],[128,-168],[37,-243],[-87,-348],[243,-188],[59,18],[231,-236],[351,-152],[226,131],[429,-53],[151,7],[230,-147],[345,-160],[143,-266],[-214,-169],[-50,-97],[-280,-156],[-144,-198],[18,-241],[-211,-436],[-236,-252],[-748,-433],[763,-280]],[[58306,58889],[233,-207],[103,18],[320,-130],[-38,-130],[67,-258],[122,-43],[250,-206],[255,-15],[382,97],[-108,-381]],[[58952,56015],[-70,-98],[-495,228],[-259,55],[-330,-2],[-210,179],[29,48],[-142,123],[-120,178],[-217,156]],[[71333,67421],[32,976],[33,141],[-6,737],[47,1406],[710,-20],[15,334],[354,-15],[-6,77],[67,1134],[162,0],[19,313],[169,-7],[3,-145],[348,-20],[3,153],[350,-8],[7,151],[882,-29],[188,13],[1222,-43],[3,-160],[174,-2],[-12,-293],[188,-4],[-9,-164],[160,-6],[-5,-133],[178,-8],[8,-309],[186,-4],[0,-154],[151,-17],[92,-161],[73,0],[-7,-158],[359,-13],[-54,-1448],[16,-237],[-34,-836],[-169,5],[-23,-472],[-498,-1],[-8,-152],[-1081,38],[-23,-610],[-1154,32],[-508,34],[-2602,85]],[[39934,63119],[764,476],[380,265],[398,430],[110,290],[360,645],[51,282],[-17,235],[47,150],[167,235]],[[28751,9221],[138,234],[104,-61],[179,199],[-12,197],[246,432],[289,309],[-130,294],[36,245],[239,195],[4,-216],[440,-6],[5,162],[-58,134],[119,81],[32,210],[203,48],[152,99],[175,-16],[139,-79],[-31,-165],[207,-68],[72,101],[390,-47],[59,-112],[50,86],[150,-142],[278,54],[169,-44],[104,-92],[-70,-197],[-285,-107],[-195,-478],[-189,-43],[-25,-129],[-100,-67],[-151,101],[-55,-164],[-124,-144],[-48,-233],[-760,-6],[-14,-388],[-41,-163]],[[40901,9293],[5,3270],[17,1601],[15,2326],[-1,1027]],[[40937,17517],[-183,-68],[-308,51],[-176,168],[-194,43],[-221,209],[-288,55],[-207,-113],[-203,-54],[-96,50],[-378,75],[-78,-206],[88,-78],[-274,-153],[-85,-96],[-27,-302],[-4,-180],[-151,-194],[-185,-91],[-121,-114],[60,-152],[-186,-92],[-60,130],[-431,104],[-105,58],[-147,193],[-236,64],[-45,-150],[-134,-108],[-155,-1],[-155,109]],[[34424,15718],[89,-432],[118,-207],[119,-115],[73,-159],[-6,-190],[-120,-210],[-52,-204],[-323,-270],[-121,-264],[-404,-2],[-104,-34],[-185,68],[-138,-128],[-127,20],[-123,-61],[-22,172],[-136,193],[-24,259],[-384,105],[-348,-3],[-184,225],[-206,35],[-226,104],[-267,-10],[-397,-72],[-157,105],[-559,162],[-106,82],[-340,-87],[-237,141],[-597,-70],[-262,-86]],[[63596,83074],[2,77]],[[63423,83155],[127,-156],[46,75]],[[60858,82903],[-5,-153],[619,-13],[28,0],[320,-5],[15,302]],[[59088,82323],[-1,-148],[84,-2],[8,148]],[[60527,85671],[55,-2]],[[60851,85868],[6,160]],[[58829,87831],[-172,-432],[34,-85]],[[58937,87113],[155,-3]],[[59311,87403],[-31,32],[50,297],[-143,3],[-92,2],[-266,94]],[[57588,80256],[754,-29],[114,0],[5,152],[393,-9],[302,-55],[-10,-270],[358,12],[3,-149],[350,-7]],[[61276,80165],[-29,81],[99,291],[-82,127],[38,137],[-146,120],[-118,-32],[-144,70],[-71,-64],[-117,37],[-69,-118],[-381,-52],[-55,-82],[-92,-112],[-121,32],[-174,166],[-230,102],[-86,-39],[-209,25],[-236,-34],[-176,60],[-180,-45],[-211,58],[-8,-196],[-112,-68],[-218,35],[-164,77],[-141,-3],[-365,251],[-132,59],[-241,11],[-161,-211]],[[56944,80848],[81,-7],[-12,-452],[215,-1],[-25,-74],[366,20],[19,-78]],[[63164,76078],[19,618],[-1065,31]],[[60505,76608],[-188,5],[-3,152],[-799,19]],[[60543,77996],[11,463],[-803,16]],[[56856,85860],[-64,-121],[-194,-364]],[[58126,82504],[-379,9]],[[57269,82148],[-155,-3]],[[8080,14986],[44,119],[237,379],[60,322],[99,235],[215,212],[63,212],[174,340],[-53,113],[127,195],[125,-17],[216,141],[294,100],[196,-54],[165,132],[102,14],[210,-219],[299,-42],[164,55],[162,-54],[139,109],[45,173],[356,107],[61,108],[213,108],[-30,172],[440,208],[193,128]],[[12276,26584],[-78,-96],[-164,-48],[-100,-155],[-128,16],[-131,138],[-185,-10],[-325,127],[-60,111],[-347,-46],[-90,-303],[-233,-139],[-172,56],[-185,-149],[-89,-213],[46,-134],[-136,-117],[-75,-328],[-310,-83],[32,-188],[-13,-313],[-125,-144],[-11,-94],[86,-194],[-143,-113],[-35,-212],[-67,-67],[-108,-328],[32,-128],[-231,-212],[-11,-351],[-197,-189],[17,-107],[-87,-95],[-35,-190],[-179,-51],[-13,-250],[199,-84],[170,-204],[-88,-209]],[[9699,21517],[-35,-41],[213,-184],[229,-47],[252,1],[12,-160],[-178,-222],[-112,-203],[-177,-475],[240,-46],[198,-90],[-14,-324],[-214,-146],[-10,-168],[-118,-183],[-85,-10],[-94,-159],[9,-139],[-180,-205],[-25,-148],[-119,-133],[-26,-164],[-180,-56],[-205,-192],[-177,-436],[-151,-28],[-75,-208],[-200,-250],[-47,-121],[60,-104],[-70,-174],[-143,-184],[-65,-171],[-182,-147]],[[10201,23311],[-29,86],[165,152],[-6,279],[140,62],[24,152],[167,-1],[101,-137],[286,56],[-25,-205],[49,-349],[-155,-5],[-21,-156],[-266,-163],[-170,-7],[-91,160],[-230,-62],[61,138]],[[23226,56879],[3,-89]],[[64491,87372],[-264,-97],[-213,-110],[-155,-5],[-142,-129],[168,-138],[123,-213]],[[65048,89584],[61,178]],[[36325,24832],[-15,-151],[-100,-215],[58,-104]],[[36268,24362],[212,-131],[112,38],[248,-109],[35,-223],[-91,-240],[25,-76]],[[36809,23621],[10,-95],[-99,-101],[-190,-85],[-224,216]],[[36306,23556],[-114,166],[-183,20],[-373,-108]],[[35636,23634],[32,-101],[296,-201],[23,-178],[-104,-7],[-79,117],[-297,-106],[42,-81],[-181,-150],[-10,-131],[-136,3],[-300,-136],[-89,-172],[111,-26],[-181,-130],[503,-50],[76,-145],[-74,-121],[-182,31],[-96,-80],[74,-98],[-48,-102],[108,-139],[77,-224],[86,-102],[85,22],[41,-139],[-112,-185],[165,54],[263,-11],[131,-89],[-4,-158],[61,-300],[99,-51],[154,81],[57,-123],[-80,-262],[92,-137],[98,-584]],[[26322,35812],[-67,-126]],[[26255,35686],[1,-72]],[[26999,56707],[121,11],[146,-132],[300,22],[206,-37],[140,-101],[22,-98],[383,325],[114,-4],[51,-183],[-63,-145],[1,-213]],[[76022,80785],[-178,-66],[-171,-175],[-1077,18],[-334,-264],[-237,-30],[-210,-142],[-327,-53],[-534,-132],[-473,-90]],[[72481,79851],[-23,-613],[442,-406],[273,-208],[103,-201],[245,-309],[411,-33],[227,-77],[661,-27],[135,-67],[394,-337],[589,-318]],[[69080,83568],[-348,151]],[[19996,47873],[271,-58],[83,84]],[[19811,48055],[45,-150],[140,-32]],[[17949,46420],[147,79],[-130,224]],[[20487,48230],[36,26]],[[20400,48069],[0,0]],[[44957,79955],[-476,-117]],[[44481,79838],[-366,-56],[-103,14],[-30,-22],[-220,-30]],[[43762,79744],[-185,-95],[-194,-1]],[[43383,79648],[33,-211],[-88,-118],[-208,-120],[-348,48],[-437,-37],[-66,42],[-192,-175],[-89,85],[-111,-174],[-167,9],[-152,-57],[-247,-160],[-205,61],[-275,-131],[-238,61]],[[40593,78771],[5,-195]],[[40598,78576],[79,-132],[365,-34],[138,-69],[183,-173],[101,-184],[245,-119],[114,-154],[-87,-111],[19,-146],[-121,-272],[29,-82],[-312,-119],[99,-111],[-277,-194],[-90,-13],[-24,-166],[-211,26],[77,-111],[-112,-213],[-123,-31],[-103,-81],[-254,-22],[-62,-76],[-386,209],[-260,-42],[-207,78],[-173,-145],[-117,100],[-264,-157],[-142,18],[-403,-150],[166,-139],[134,-268],[84,-242],[-101,-224],[150,-167],[94,-288],[71,66],[33,-109],[-102,-146],[-40,-169]],[[52650,79983],[-912,7]],[[50720,80484],[-364,1],[-2,-75],[-176,0],[-89,-75]],[[42310,80504],[83,31]],[[50606,90489],[-35,-129],[188,-62],[-10,219],[-201,42],[58,-70]],[[41608,84343],[80,-9],[28,-176],[284,46],[341,16],[318,121],[72,71],[229,-43],[256,21],[114,-40],[253,133],[221,29],[265,246],[184,33],[139,-35],[170,71],[186,-36],[151,-159],[-50,-61],[251,-172],[110,37],[112,-55],[63,68],[268,79],[91,72],[-183,109],[-82,195],[-135,106],[-153,-5],[-147,67],[-735,43],[-121,79],[-319,109],[-83,71],[-362,-24],[-397,48],[-144,-49],[-145,43],[-130,-92],[-174,11],[-253,-134],[-139,-296],[108,-248],[-111,-106],[-293,-170],[-138,-14]],[[38377,84943],[124,-72],[162,-11],[258,65],[288,-41],[199,-175],[119,-13],[210,66],[251,1],[168,-49],[187,-140],[120,21],[-72,236],[38,140],[210,146],[222,70],[251,-18],[22,258],[83,146],[-327,14],[-202,69],[-291,214],[-416,56],[-149,52],[-47,91],[-118,-1],[-579,-340],[-109,-208],[-88,-47],[-237,-373],[-175,-58],[-102,-99]],[[36352,84602],[99,-28],[253,-189],[246,32],[291,-220],[73,145],[-37,95],[277,13],[240,206],[-99,113],[-181,-22],[-232,60],[-519,-182],[-183,70],[-270,-29],[42,-64]],[[7355,2753],[432,-12],[99,126],[206,7],[24,126],[156,-21],[201,40],[152,-59],[65,74],[662,255],[119,-18],[120,-200],[107,-4],[222,-154],[68,-95],[-83,-140],[97,-186]],[[10002,2492],[235,-75],[103,-184],[68,44]],[[10408,2277],[13,143],[85,82],[-92,119],[45,55],[294,-205],[-186,-110],[163,4],[8,-150],[112,-62],[53,-138],[-120,-228],[21,-102],[109,-33],[250,23],[-6,78],[182,-57],[20,81],[129,17],[119,154],[158,10],[113,159],[153,-87],[309,99],[94,129],[208,73],[282,297],[192,-70],[120,105],[176,157],[131,281],[-188,310],[-179,94],[-197,31],[-366,157],[-119,155],[-22,186],[99,136],[-189,260],[-183,-146],[-134,1],[-235,80],[-861,-31],[-25,216],[117,1079],[203,5],[-89,70],[-230,68],[-19,57],[-315,203],[-170,52],[-323,38],[-422,384],[-143,277],[-153,-24],[-49,78],[-200,-107],[-247,20]],[[37583,44543],[116,-190],[-72,-157],[202,-129],[194,90],[37,-39]],[[38060,44118],[248,-134],[60,-78],[206,17],[88,-63],[91,87],[461,-44],[455,327],[224,297],[292,-35],[186,66],[259,-145],[47,-242],[129,-81],[247,-6],[114,-146],[262,3],[112,-39],[82,-139],[122,-9],[127,-113],[20,-140],[-101,-13],[-173,-126],[130,-277],[251,-91],[74,-169],[-48,-56],[83,-184],[-80,-79],[152,-194],[-56,-19],[81,-154],[304,-285],[214,-38],[53,76],[192,-72],[155,33],[305,-52],[186,-219],[244,-170],[600,-164],[23,-121],[263,-224]],[[39746,44617],[-49,-95],[-195,-130],[-212,-7],[-56,-176],[-100,-109],[-195,-21],[52,139],[-236,-20],[-61,317]],[[47207,84841],[-156,87],[-276,-34],[-241,-75],[215,-21],[102,73],[216,19],[140,-49]],[[21253,45659],[120,-469],[238,-117]],[[22798,46715],[-122,39],[-193,-154],[-202,-361],[-303,-126],[-129,-40],[-59,-143],[-353,-122],[-150,-24]],[[21415,45929],[164,169],[-112,128],[-75,-10]],[[21482,46530],[68,49],[387,-163],[224,201],[19,113],[-62,167],[136,68]],[[20509,47785],[212,-216],[222,-85]],[[21523,47973],[-79,138],[-165,-3],[-40,-139],[-215,-71],[-1,-154],[-302,16],[-82,-96],[-130,128]],[[20509,47792],[0,-7]],[[35889,37804],[-54,204]],[[35509,38130],[-168,-202],[316,-108],[164,-102],[68,86]],[[34736,38532],[26,247],[-159,108],[-144,-177],[-27,-98],[77,-109],[-94,72],[-143,-42],[-321,35],[-42,14],[-165,-10],[-254,144],[-250,92],[-8,-173],[337,-212],[21,83],[339,-74],[218,-213],[174,-57],[159,35],[146,13],[245,-46],[30,46],[-122,215],[202,82],[-124,92],[-121,-67]],[[23265,24435],[-202,7],[5,-238]],[[24691,24709],[-444,46],[-19,82],[316,305]],[[24140,25346],[-33,-64],[71,-184],[82,-6],[-48,-225],[-177,-3],[23,142],[-101,140],[-94,-313],[-98,-138]],[[22998,23619],[197,24],[2,-125],[200,-6],[186,-121]],[[22974,24157],[-56,99]],[[23895,25343],[123,-1]],[[23995,25530],[-245,37],[9,150],[-296,-2],[1,-148],[143,3],[0,-191],[288,-36]],[[25611,23061],[194,-30]],[[25836,23001],[-8,-83],[263,13],[70,128],[114,47],[-156,307],[8,192]],[[27202,27010],[-26,258]],[[27124,26338],[246,8],[95,60]],[[27327,26773],[-150,116]],[[26417,27308],[64,40]],[[26226,27280],[101,-4]],[[25354,28338],[-91,134],[-264,-1]],[[25003,28265],[4,-232]],[[25007,28033],[213,1],[131,126]],[[24743,27952],[-270,-3]],[[24473,27949],[65,-230],[163,1],[7,-154],[306,-6],[-3,232],[-1,65],[-266,15],[-1,80]],[[36953,40926],[-236,179],[-27,108],[-162,167],[-155,9]],[[32528,41419],[-79,-82],[-161,-37],[1,-74],[-179,-4],[3,-321],[527,-70],[255,6],[71,-61],[33,58],[-202,284]],[[37677,40236],[-231,28],[115,-145]],[[25464,42484],[-180,128],[-245,-97],[-191,-150],[-15,-96],[155,-63],[185,7],[239,182],[52,89]],[[24742,42550],[222,16],[14,237],[176,158],[196,-5],[-2,83],[-199,-3],[-13,527]],[[23820,43930],[107,-125],[8,-208],[-120,-46]],[[25541,43593],[72,-51],[249,38]],[[22677,42848],[-114,82]],[[22194,43048],[96,-175],[-115,-78],[32,-83]],[[19917,39937],[318,15],[112,258]],[[20665,40829],[228,198],[1,-2]],[[20806,42124],[90,140],[105,27],[95,133]],[[20416,42733],[-119,-111],[-286,-163],[-122,-9],[-143,69],[-187,2],[-166,-74],[-100,20]],[[19077,42224],[125,-93],[-60,-167]],[[20289,42012],[163,76],[25,-148],[223,-267],[47,-137],[-29,-221],[-25,-221],[-125,42],[9,129],[-188,75],[-213,17],[20,206]],[[21066,44755],[-81,-161],[67,-44],[-66,-108]],[[21958,43897],[-312,41]],[[21878,44286],[19,-157],[415,89]],[[20110,43450],[264,-171],[23,-197],[95,-104]],[[19291,43750],[63,-141],[122,71],[187,-10]],[[19154,43429],[-147,16],[64,83]],[[17940,43388],[-183,-104],[-35,-137],[-144,-215],[163,26],[91,91],[57,-69]],[[2255,2371],[-101,-74],[172,-267],[110,-245]],[[2436,1785],[59,43],[164,-171],[45,143],[-88,261],[273,-129],[31,-171],[72,23],[62,-185],[161,-32],[-15,119],[54,-30],[-21,586],[-47,39],[-14,242]],[[3104,1003],[-68,-69]],[[41560,33035],[-49,114],[-232,-8]],[[41133,33445],[-94,56]],[[40848,33602],[1,-6],[-139,4],[-46,-173],[112,-155]],[[31962,32925],[79,47],[158,224]],[[32461,35458],[-139,47],[-121,116],[21,130]],[[31916,36064],[-96,169],[-31,166],[-95,-199],[-101,-97],[-194,145],[-198,-338],[-95,-37]],[[30650,35280],[179,-50],[132,21],[136,115],[251,-166],[91,-202],[196,-8],[203,173],[64,-23],[87,88],[42,-78],[5,-285],[77,-181],[96,79],[196,45],[97,-40],[124,94],[48,161]],[[35432,34787],[136,19],[38,84],[-152,123],[-12,210],[-148,63],[-234,236],[-200,77],[-76,-26],[-180,37],[-128,-115],[46,-45],[13,-221],[-253,47],[-198,-45],[-205,14],[-235,99]],[[33722,35052],[-31,-120],[252,32],[221,-188],[266,98],[64,-65],[176,70],[-120,51],[-72,132],[0,1],[103,-33]],[[42678,56609],[-260,2],[0,-154],[-442,4],[0,-230],[266,-1],[1,76],[174,-2],[2,-266]],[[43119,56912],[352,-1],[182,-2],[313,306]],[[44279,57520],[-274,1],[-885,4],[0,-153],[0,-153],[0,-77]],[[40660,55300],[98,93],[-10,153],[-437,0],[26,-313]],[[43360,54012],[12,84],[153,-41],[5,404]],[[44585,54770],[10,-2],[279,-5]],[[45213,54928],[18,605],[-1,306],[-527,1],[2,307],[-350,-12]],[[44352,55603],[88,24],[0,-170],[-88,0]],[[45673,56528],[-165,305],[-206,-79]],[[47168,57834],[7,301]],[[46641,57983],[-13,-154]],[[46200,57407],[-1,-340]],[[46635,57066],[2,382],[356,2],[-5,-533]],[[45496,57216],[594,6],[8,184]],[[46113,57528],[-531,-4]],[[37058,62158],[-1,-155]],[[36760,55391],[367,461]],[[37126,56003],[-533,0],[13,-459]],[[19846,23993],[389,176]],[[20225,24432],[-268,-8]],[[19957,24424],[-123,-118],[12,-313]],[[20147,26696],[-388,6],[3,-154],[4,-155]],[[2614,12495],[207,-138],[271,-129],[139,77],[5,158],[-70,85],[11,235]],[[3477,11915],[115,42],[154,195]],[[3746,12152],[-208,132],[-302,-20],[-11,-175]],[[3932,11608],[92,124]],[[4080,11863],[-130,-14],[-161,-242],[-132,-63]],[[3657,11544],[26,-21],[249,85]],[[1943,13409],[-144,-45],[90,-288],[219,-249]],[[2386,14725],[-6,-124],[144,-219],[169,23],[-76,-106],[206,10]],[[5521,19942],[-346,-28],[-25,-94],[103,-14],[165,-156]],[[88135,96468],[-103,-10],[-16,-195],[530,-23],[29,551]],[[86712,96737],[354,-87],[26,496],[-350,15]],[[87108,97375],[715,-25]],[[88614,97395],[672,-34]],[[88875,97871],[-1367,156]],[[87058,97843],[83,-84],[-33,-384]],[[82318,90239],[197,100],[263,221]],[[81850,91531],[-335,-423],[-85,-216],[-118,-156]],[[51785,69723],[31,85],[343,48],[73,67],[-10,167],[-24,8],[-173,91]],[[51689,70680],[148,10],[559,130]],[[52046,70958],[-355,5]],[[50990,71432],[6,459],[-176,2],[-534,3],[-1,-154],[-188,1],[-121,158],[-218,-1],[-3,-308],[-185,1],[-1,-306]],[[49038,70679],[-708,5]],[[46993,68089],[0,-153],[529,-4],[539,-5],[0,153]],[[43676,67649],[295,-7],[0,536],[-230,-59],[-36,-165],[88,-3],[-1,-146],[-116,-156]],[[48455,66851],[-934,10],[-251,-763]],[[56233,66626],[116,131]],[[55708,66756],[-4,-132],[529,2]],[[56599,67341],[329,-52]],[[56928,67289],[125,32],[23,316],[130,65],[58,124]],[[57264,67826],[-330,7]],[[56934,67833],[48,-228],[-119,55],[-228,-56],[-165,39],[134,-104],[-5,-198]],[[56335,67343],[5,69],[-169,53],[-59,121],[-85,70],[-61,187]],[[55839,68055],[-52,-37]],[[55787,68018],[80,-184],[-45,-128],[132,-166],[98,24],[72,-168],[211,-53]],[[63960,67333],[358,-1]],[[62949,67342],[485,-4]],[[63434,67338],[5,158],[-352,6],[-2,-76],[-134,2],[-2,-86]],[[59500,76017],[7,156]],[[59205,76180],[-4,-153]],[[59004,73412],[121,372],[405,90]],[[59530,73874],[12,218],[-180,8],[3,-78],[-158,7],[-510,19],[163,-674],[118,-129],[26,167]],[[55898,73031],[-87,157],[-177,0]],[[55634,73188],[2,-32],[85,-145],[-263,-115],[55,-112],[187,87]],[[54381,72449],[34,150],[-16,86],[-186,110],[21,65],[-209,46],[-11,-156]],[[51879,71728],[7,305],[-359,6],[-1,-153]],[[43404,60599],[0,-153],[351,-1]],[[14582,30919],[219,202],[98,137]],[[14652,31616],[-296,-156],[-217,-179]],[[16149,31900],[92,94],[-94,324]],[[15525,32032],[297,-148],[11,-64]],[[16830,34110],[330,48],[-137,85],[-51,111],[-182,-43],[-65,68],[-277,42],[-78,-39]],[[16177,34526],[-221,240],[67,154]],[[31036,18392],[115,42],[459,-38],[-11,160],[-275,119],[-120,-115],[-172,48]],[[55595,81729],[-70,-272],[154,-41],[58,-140]],[[63596,83074],[-3,-74],[734,-15]],[[62693,83019],[-54,-149],[508,-13],[9,153],[130,-3],[67,153]],[[63339,85320],[-64,61],[-182,-37],[-90,68],[55,140],[-171,37]],[[53405,83426],[40,61],[-171,49],[-102,126],[-9,44],[-64,136],[-210,49]],[[53101,84117],[138,-122],[234,64],[244,9],[104,119],[168,-145],[-6,-12],[111,45],[43,96],[156,33],[209,-53],[126,31],[56,322]],[[54684,84504],[-328,-23],[-148,87],[-313,-2],[-361,10]],[[62883,78570],[12,309],[-269,4]],[[62626,78883],[-452,10],[-9,-310],[-1,-309]],[[57322,79809],[155,15],[194,-90],[15,199],[-32,289],[-66,34]],[[56944,80848],[-81,-4]],[[56617,79888],[145,94],[16,93]],[[55587,79569],[-40,215]],[[58829,87831],[-370,117],[-142,-47]],[[43377,49661],[179,-191],[-112,-168],[68,-343]],[[43897,49242],[-207,226],[-8,202],[-154,79]],[[43081,50864],[146,97],[211,-28],[152,300],[-60,220],[-25,312]],[[43505,51765],[-59,-47],[-146,76],[-122,-115],[-194,-36],[-330,25],[-229,-80],[142,-158],[209,-127],[107,-171],[213,-19],[-15,-249]],[[39720,51695],[12,116],[254,200],[124,54],[301,15],[153,110],[-43,63],[94,136]],[[40615,52389],[6,1124],[-10,15],[-63,32]],[[40177,53060],[-2,-721],[-465,476],[-772,-739],[145,-52],[283,-191],[153,-13],[201,-125]],[[38449,52026],[225,189],[-267,95],[0,-59]],[[16093,41006],[240,110],[7,63],[2,-172],[-61,-163],[-272,-266]],[[17039,41398],[43,111],[-8,326]],[[17002,42006],[-8,48],[-64,159],[28,160]],[[15353,42280],[-121,60]],[[14912,42457],[-59,-246],[177,-57]],[[13579,41440],[-129,106],[-93,-30]],[[13357,41516],[-37,-186],[92,-71],[167,181]],[[13805,41604],[134,-77],[182,148],[95,-30],[-204,154],[-146,13]],[[13866,41812],[-61,-208]],[[8240,24469],[85,121],[-35,318],[-292,-24],[-111,-253],[178,-133],[175,-29]],[[5103,26698],[190,98],[-68,-2]],[[5064,27162],[-99,-131],[138,-333]],[[9388,27092],[-55,70]],[[9026,27533],[-58,-51],[-191,13],[44,-108],[1,-238],[-152,-78],[-102,-188],[-44,-230],[-72,-133],[158,-29],[156,189],[348,326],[159,-60],[115,146]],[[9461,27477],[95,144],[-71,215]],[[10688,28815],[-4,236],[46,231],[-106,-44]],[[10624,29238],[-72,-44],[-99,77],[-92,-270],[-204,-106]],[[5070,28302],[105,71],[104,-26],[10,130]],[[5104,28488],[-143,-115],[109,-71]],[[5031,27897],[-89,-35]],[[4942,27862],[-44,-113],[32,-375],[70,-106]],[[10540,30468],[-304,38],[-116,-121],[73,-77],[179,-40]],[[33018,48415],[214,209]],[[33534,48920],[187,209]],[[33713,49133],[-242,111],[-236,-43],[-130,51],[-79,9],[22,-766],[-101,-44]],[[33733,49127],[96,-104],[202,-18],[284,-208],[70,48]],[[34385,48845],[58,81],[-11,546],[-86,-40]],[[35124,50166],[-354,-2]],[[34770,50164],[12,-549]],[[35482,50164],[-176,1]],[[31039,52106],[-3,96],[224,279],[-57,86],[-175,-28],[3,-105],[-227,-83],[56,-247]],[[35464,5988],[276,27]],[[35823,6204],[-270,-43],[-89,-173]],[[24727,56040],[-58,-183],[-51,-254],[233,-20],[146,4],[143,197],[57,52]],[[24902,54578],[-107,139],[-150,-84],[-180,72],[206,385]],[[24341,55355],[-193,-163],[93,-56],[250,-34],[35,-78],[-153,-14],[-265,68],[-157,-43],[-28,-14],[-25,-104],[-145,-104],[196,-103],[0,-69]],[[23909,54566],[-36,-64],[-224,132],[-8,375],[-221,21],[-93,-80]],[[23327,54950],[-67,-155]],[[24895,54387],[296,-8],[-94,147],[3,198]],[[24011,57674],[89,-24],[209,271],[268,69],[45,73]],[[24182,58490],[5,101],[-145,140]],[[23708,58490],[-15,-162],[85,-148]],[[22004,57864],[-170,-109],[-43,71],[-165,-100],[-43,-110],[103,-61]],[[23248,56606],[-3,4]],[[23183,56563],[79,-329],[28,-399]],[[23290,55835],[212,214],[162,43],[-23,111],[211,143],[-93,194]],[[19187,39883],[-122,-1]],[[19269,38772],[109,149],[-72,122]],[[19378,39197],[151,6],[76,133],[-139,164]],[[17357,36748],[1,131],[-97,148]],[[30877,31727],[242,-9],[102,-103],[124,-99],[69,66]],[[31928,31197],[-144,295],[-100,282],[-1,15],[-46,219],[-156,215],[-220,336],[139,97],[-293,210],[-4,73],[-40,18]],[[30406,32462],[-24,-157],[67,-196]],[[30449,32109],[95,-323],[141,3]],[[30928,31287],[-155,220],[-170,72],[41,-478],[27,-56],[-50,59],[-89,-46],[86,-42],[54,-322],[103,-157],[102,-47]],[[29723,29859],[242,-249],[233,62],[213,-38]],[[30416,29895],[-110,-49],[-221,19],[60,167],[-286,53]],[[29525,30062],[42,-102]],[[31804,29702],[81,92],[-57,170],[-55,-23],[-24,168],[73,2],[188,162],[-333,-31],[-258,-15],[-59,-43]],[[31341,30210],[78,140],[-121,115],[-24,355]],[[31511,29504],[194,11]],[[30585,29307],[484,133]],[[38916,28728],[2,-13],[-381,10],[-204,-108],[224,-133],[67,-120],[-101,-21]],[[38523,28343],[152,-57],[94,151],[179,12],[231,-45]],[[38022,28838],[99,56],[359,-109],[292,81]],[[37861,28948],[161,-110]],[[62804,86200],[-6,123]],[[64471,88036],[-157,-107],[-121,17],[-127,107],[-192,-131]],[[63809,88359],[117,77],[107,-16]],[[63218,89507],[-249,-168],[-109,-87]],[[40097,29988],[84,-351],[45,-97],[190,27],[25,194],[87,26]],[[40850,29327],[-4,622]],[[40612,29723],[157,-108],[44,-134],[-107,-172],[123,-8]],[[33310,31978],[-408,163],[-61,-165]],[[30124,33507],[-159,26],[-173,-39],[-84,-123],[-6,-123],[173,-60],[363,187],[-17,129]],[[29408,33707],[22,55],[369,4],[56,28]],[[26959,33670],[281,-31],[582,49],[220,-140],[151,-34]],[[30502,33386],[-127,-8],[-193,-129],[-123,-96],[-217,-50],[-9,-79],[255,-145],[81,12],[48,-25],[22,-99]],[[39431,30938],[-134,-93],[-241,-46],[193,-109]],[[39249,30690],[133,-13],[76,69],[67,-140],[-62,-30],[169,-105]],[[32166,22389],[12,100],[-178,206],[-157,-269],[83,-66],[240,29]],[[36809,23621],[-296,133],[-207,-198]],[[29633,18396],[58,21],[-160,259],[-175,204],[-133,-104],[251,-355],[159,-28]],[[66529,87181],[205,136],[205,74]],[[67950,87591],[23,-121],[-159,-296],[82,-44],[5,-159],[-96,-13],[3,-122],[-134,14],[-4,-165],[-50,-270],[-265,-1],[-410,162],[-48,-66],[-268,-39],[-18,-194]],[[68075,84549],[216,24],[150,-23],[-85,-118]],[[68484,84432],[176,128],[204,38],[88,149]],[[71631,87674],[8,180]],[[71287,87866],[-165,4],[-157,82],[-242,6],[-98,-92],[249,-127],[-305,-5]],[[69310,85169],[131,0],[-3,-114],[220,-7],[2,-255],[380,196],[185,185],[15,72],[-273,-4],[66,104],[230,125],[223,255],[98,25],[246,188],[-240,182],[3,137],[359,165],[10,268],[13,264]],[[67340,87500],[298,98],[69,133]],[[69975,88365],[529,2]],[[71080,89197],[-242,276],[68,137],[-19,264]],[[70011,90563],[101,-193],[9,-190]],[[68742,89096],[-88,307],[-51,-5],[-164,-214],[82,-156],[182,-78]],[[72076,87565],[-42,115],[-104,-27],[-299,20]],[[72937,87255],[21,544],[-21,11]],[[72937,87810],[-152,-179],[-272,-195],[-128,-218]],[[71254,86441],[-10,-259],[-59,-118],[12,-101],[129,-54],[64,-287],[78,-153]],[[71936,84486],[58,152],[-46,173],[12,281]],[[72857,85141],[311,-5],[3,75],[738,-24]],[[73923,85469],[1,29]],[[73924,85498],[-284,-9],[-250,92],[-206,-162],[-104,-134],[-223,-144]],[[76103,84408],[253,158],[352,88]],[[76856,84685],[6,91],[-132,167]],[[75623,85837],[-526,-323],[-169,-22]],[[75227,85481],[572,-6],[477,252]],[[78367,87658],[129,-116]],[[78942,87633],[7,151],[353,-12],[-7,-153]],[[79947,87900],[413,445],[-106,5],[-37,1],[-529,19],[-530,19],[-212,9],[-147,-146],[-132,-289],[25,-127],[84,-5],[-3,-40]],[[79458,87303],[40,-75],[137,67],[176,5],[16,298]],[[27841,37065],[4,143],[-370,-3]],[[28528,37795],[205,-166],[148,14]],[[28920,37779],[-197,206],[-237,231]],[[29021,38755],[2,-101],[-118,-129],[469,-253],[189,-180]],[[28936,39680],[68,-37]],[[29004,39643],[-8,530]],[[25824,54769],[70,-42],[306,44],[-1,168]],[[27252,54656],[-2,36]],[[26960,54841],[-161,-73]],[[26696,54933],[80,-101],[184,9]],[[27368,55182],[-86,101]],[[69981,84083],[191,79]],[[64418,79852],[698,-17],[9,230],[536,-15],[507,-11],[0,-4],[-6,-228],[-1046,27],[-8,-228],[1048,-30]],[[67600,80794],[-456,208],[-62,82],[9,180],[-177,-20]],[[66466,80797],[349,-545],[-637,16],[-526,13],[14,312],[-69,69]],[[65102,80676],[-306,7],[-17,-73],[-159,1],[-4,-76],[-132,6]],[[66653,78802],[-27,-308]],[[64527,80937],[45,-44],[248,82]],[[69046,75831],[-63,-16]],[[68969,79956],[14,298]],[[69784,79606],[-563,38]],[[68920,78753],[14,-1],[164,-3]],[[80876,82514],[7,153]],[[76087,83616],[-269,8],[-376,311],[-165,37],[-233,-7]],[[75044,83965],[-40,-247],[209,-67],[202,28],[216,-50],[-34,-132],[441,-22],[86,-55]],[[69654,82142],[-191,39]],[[72757,82128],[-38,-6],[-238,30],[-3,-112]],[[71772,82031],[-254,26]],[[71493,95535],[128,121],[209,18],[-86,89],[14,303],[53,53],[-122,152]],[[69050,96575],[30,-116],[-106,-565],[-27,-102],[-5,-17]],[[69310,98587],[-68,74],[-146,-448]],[[71144,99922],[-577,70]],[[72752,96398],[325,-133],[173,-117],[256,90],[258,-2],[1,159],[-105,216]],[[74254,97173],[-101,-17],[-51,93],[-293,45],[11,84],[-214,52],[-118,-19],[-149,81],[-75,16],[-54,-183],[-165,30],[-205,-86]],[[71280,94443],[162,-66],[308,-15],[134,105],[-7,212],[-206,22],[-131,201],[-181,10]],[[69740,91733],[-51,62],[-188,15],[-88,56],[-129,91],[-84,137],[148,-104],[185,47],[101,205],[9,221],[-6,2],[72,182],[24,284],[-75,74]],[[69019,92329],[-40,-145],[41,-134],[-73,-295]],[[69982,90563],[-283,395],[-18,91]],[[71830,93159],[-297,140],[-272,8],[-45,200]],[[70250,93033],[-186,-266],[-143,-312],[-26,-160],[67,-144],[2,-195],[-92,-247],[252,-206],[140,-16],[192,-217],[278,-4]],[[70636,91829],[14,240],[164,-27],[158,92],[20,117],[277,6],[-15,-257]],[[69949,93193],[45,-121],[256,-39]],[[74270,95127],[3,103],[-310,4],[4,64]],[[73967,95298],[-74,-57],[-190,93],[-78,105],[-23,-199],[-126,-38],[9,-103],[-245,1],[-37,-53],[-186,-14],[-44,-118]],[[73376,94649],[79,92]],[[73556,94902],[116,15],[160,-243],[263,-27],[82,-87],[125,148],[61,-21]],[[72557,97723],[41,67],[210,14],[249,115]],[[72949,98120],[-68,4],[-150,43],[-309,475],[-38,-3]],[[18081,45398],[125,35],[-74,144],[-105,-1]],[[27752,42595],[-99,12],[-199,-173],[-25,-191]],[[29874,43138],[-210,43],[-305,3]],[[28990,42625],[112,-85],[-22,121]],[[29119,42768],[107,222],[211,-101],[-44,-98],[99,-156],[377,-23]],[[29803,41218],[-188,0],[2,-138],[125,-189],[267,7]],[[29550,45090],[352,3],[0,114],[173,-36],[530,1],[46,153],[-43,196]],[[29548,45868],[3,-713]],[[28842,44585],[-12,-307],[21,-190],[335,149],[8,350]],[[26468,45178],[358,1],[171,68]],[[26694,45377],[-164,68],[-199,5]],[[28005,45428],[380,-355]],[[28401,45103],[-94,116],[50,154],[91,-8],[-46,263],[196,176],[-6,-95],[145,-19],[-117,215],[-4,139],[168,5],[-73,122]],[[34917,67483],[-266,129],[-142,21],[230,184],[-21,30],[207,248]],[[37343,67418],[-44,251],[-357,-25],[1,-115],[-142,-62]],[[30280,68583],[146,123],[73,270],[-34,76]],[[30465,69052],[-75,-29],[-329,-336]],[[29730,68120],[204,33],[304,103],[111,81],[-98,92]],[[29880,68388],[-150,-268]],[[32248,70120],[-22,-40]],[[32237,70074],[213,-32],[-44,120],[179,120]],[[32201,71180],[79,-218],[55,-354],[-76,-74]],[[34686,71346],[181,118],[56,103],[182,201],[-75,105],[-61,262]],[[34969,72135],[-204,26]],[[33847,72583],[-60,-18]],[[33761,72580],[-219,-40]],[[35375,73302],[105,133],[261,225],[129,150]],[[33993,69341],[-149,113],[-167,-177],[108,11],[-10,-153],[-190,-48],[311,-170]],[[33737,68695],[-71,88],[-196,8],[-104,74],[-29,-158],[-127,-100]],[[17867,45649],[27,309],[61,78]],[[17773,45972],[0,0]],[[19254,47270],[81,45]],[[19440,47394],[254,97],[-37,111],[339,271]],[[19411,49553],[-186,-113],[-103,-203],[-151,138]],[[18885,49051],[190,-203],[-232,-231],[163,-27],[8,-83]],[[17108,47249],[135,39],[92,139],[-117,69]],[[42599,79697],[173,-42]],[[42772,79655],[95,13],[75,123],[279,148],[-62,87]],[[42604,80217],[-10,-212],[57,-221],[-52,-87]],[[43563,80234],[71,-121],[-93,-94],[125,-203],[96,-72]],[[44481,79838],[2,124],[-99,203]],[[44736,80336],[273,37]],[[39736,78095],[-3,182]],[[39366,78528],[143,-319],[132,-130],[28,-137]],[[36365,77446],[171,-87]],[[42082,80041],[80,289]],[[41785,80462],[-177,-66]],[[41608,80396],[-15,-351],[489,-4]],[[43356,80699],[-380,-133],[-319,13]],[[42657,80579],[-41,-35]],[[23306,48630],[112,13],[159,204],[90,114],[-98,10],[82,175],[77,24],[200,226],[77,34],[124,227]],[[22962,48805],[233,-47],[111,-128]],[[20934,48887],[54,-283],[100,85],[140,0],[-33,268]],[[20954,50518],[-199,-141],[109,3],[3,-103],[-96,-117]],[[21077,51068],[121,-36],[32,-140]],[[23204,51188],[77,133],[-205,182]],[[23619,50926],[-407,113]],[[24101,50618],[128,124],[-269,70]],[[24981,52289],[-140,60]],[[25714,52407],[78,-27],[78,101],[-88,66],[77,158],[-140,48],[38,111],[-130,51],[-50,-122],[-77,59]],[[25373,52856],[-179,-341],[-56,-112],[171,-23],[-104,-138]],[[25772,53513],[40,158],[-21,190]],[[19959,51619],[102,71]],[[20450,51899],[186,171],[5,105]],[[20273,52556],[-12,-133],[-84,-87]],[[20211,51662],[78,-80],[194,-21],[33,166],[-223,86]],[[21134,51740],[50,-18],[-84,215],[14,125],[-143,199],[45,-248],[-33,-110],[151,-163]],[[21024,52587],[34,-277],[99,-132],[274,20]],[[21706,52140],[35,-274],[-106,-184]],[[22000,51852],[76,69],[-89,205],[-34,178],[104,91],[-24,202],[27,120],[249,-176],[144,88],[121,-1],[-214,46],[-224,186],[42,164]],[[22429,53431],[42,-145],[-70,-149],[107,-125],[67,184],[154,55]],[[23048,54082],[92,170],[-148,53]],[[22992,54305],[-232,-390]],[[23404,53563],[-107,44],[-96,-86],[-246,38],[-142,107]],[[23023,53345],[17,1],[202,-66],[-41,-169],[-121,-38],[-104,-162],[211,131],[167,100],[33,199],[51,186]],[[17938,15278],[173,11]],[[18111,15289],[64,37],[-69,120],[102,-14],[-55,126],[103,115],[41,-24]],[[18607,15915],[-227,1],[-66,-94],[-133,24],[-140,-68],[-57,47]],[[19553,15328],[146,326]],[[18536,13943],[55,-180]],[[18591,13763],[196,94],[14,185]],[[18730,14753],[24,-223],[-82,-210],[-206,-130],[120,-141],[-50,-106]],[[19229,14540],[84,94],[107,-191]],[[19600,14403],[84,125],[-42,417],[376,-82],[-77,250],[-156,190]],[[19785,15303],[-232,25]],[[19558,15900],[-8,382]],[[19310,16795],[-137,-107]],[[19785,15303],[380,8],[112,8]],[[20230,16527],[-30,136]],[[20200,16663],[-117,8]],[[20083,16671],[54,-277],[13,-367],[-91,-171],[101,-181],[-141,-46],[-279,22],[-13,-201],[58,-147]],[[19709,16590],[165,-40],[169,95],[40,26]],[[20083,16671],[-140,160]],[[18702,16367],[-32,289],[-101,117],[-12,109],[-262,-3],[3,-68],[-171,-61],[4,-203],[2,-152],[569,-28]],[[10002,2492],[-218,-272],[296,54],[96,86],[158,-132],[74,49]],[[19333,6566],[-130,62],[-69,-50]],[[20008,8695],[1,-171],[138,-43],[60,-122],[-36,328]],[[21106,40608],[-116,-8],[-26,-162],[13,-371]],[[21634,38254],[197,-6],[-9,-175],[283,-32]],[[22796,38280],[-353,293]],[[17621,39513],[99,-13],[138,-150],[82,56]],[[17742,38932],[-94,89],[-13,188],[-98,102]],[[16828,39836],[253,-106],[-7,-194],[6,-6]],[[16876,38882],[-66,-53],[-382,135],[26,-120],[233,-216],[143,36],[60,-10]],[[15285,39963],[-251,-4],[-266,-97],[-166,-116],[-199,28],[98,-237],[137,-49],[403,29],[172,-4]],[[15023,40415],[99,-107],[144,35],[137,-80],[19,-143]],[[14467,38633],[258,154]],[[14981,39351],[-214,-162],[-199,-80],[-378,-31],[-55,-164],[236,12],[4,-93],[1,-162]],[[15644,37888],[250,317],[190,84],[96,-281]],[[16295,37972],[189,62]],[[16557,38275],[-16,254],[-126,-66],[-341,-8],[-83,-109],[-136,-15],[-120,-8],[-20,138],[-173,-144],[-143,-11]],[[15547,37393],[108,-236]],[[12318,36880],[305,-278]],[[13329,37257],[73,26],[267,-103],[139,187],[131,20]],[[14183,37869],[-228,-5],[-44,126]],[[13831,38638],[-84,-42],[-297,36],[39,119],[-139,-49],[-297,69]],[[13016,38692],[205,-218],[-31,-107],[-185,-158],[-113,-68],[14,-79],[36,-138]],[[13001,37737],[360,46],[-78,-206],[101,-74],[-36,-32]],[[13195,37463],[-441,-34]],[[12228,37212],[8,-5]],[[14728,38670],[7,-252]],[[11827,37634],[260,-223],[121,113]],[[12278,33962],[-5,30]],[[12265,34115],[200,233],[-7,5]],[[32017,44964],[570,57],[94,105]],[[32289,45836],[-269,-1]],[[30609,46588],[0,-77]],[[32733,46773],[-6,144],[-44,149],[-89,-2]],[[32200,47061],[-1,153],[-1,77]],[[31821,47516],[-513,-5],[4,-306]],[[30740,49961],[2,-156],[215,5]],[[32963,47527],[204,1],[282,2]],[[25205,30214],[-2,79]],[[25621,30253],[-117,-82],[-277,0]],[[21101,20783],[100,126],[-35,202]],[[21166,21111],[-64,-109],[-119,-46],[-143,56],[-183,-319],[146,10],[-35,-123]],[[20548,21962],[128,4],[-50,270]],[[20620,22464],[-91,-40]],[[13716,13805],[62,-60],[105,-299],[-154,-253]],[[13729,13193],[21,-37],[194,138],[-9,198],[73,-60],[57,112],[-77,355]],[[48301,58452],[-69,-1],[-2,-152],[-176,-3]],[[47448,59944],[-2,-273],[88,-76],[263,-1],[2,-228],[86,0],[-7,608],[444,-3],[1,-151],[87,0]],[[49145,60209],[87,227],[-196,2],[-3,150]],[[49029,61046],[0,153],[-341,0],[-175,-1],[-6,-457],[-178,-2]],[[47650,61658],[1116,-2]],[[48449,62423],[-378,2],[-233,-220],[-19,-90],[-201,-178]],[[47897,61182],[-11,201],[-237,122]],[[47326,61356],[-181,-277]],[[49702,61508],[-159,-307],[280,-3],[4,-178]],[[49827,61020],[8,89],[127,111],[41,205],[74,68],[92,229]],[[52475,62654],[-38,-160],[215,-174],[208,135]],[[47498,61966],[-136,2]],[[48804,62756],[2,277]],[[50754,63950],[-141,-17],[-383,142]],[[49680,62720],[358,-4],[2,38]],[[49869,63097],[-185,-54]],[[38300,43189],[-131,13]],[[38169,43202],[-263,67]],[[37815,43258],[-266,447]],[[36842,43281],[-120,-22],[31,-82],[-135,-50],[243,-421],[28,-9],[53,-108],[-128,3],[-27,-151],[219,-48],[42,45],[147,-21],[71,22],[291,300],[76,10],[126,-149],[-61,-233],[338,2],[169,8],[90,86]],[[38625,42248],[284,-87],[168,-218]],[[39077,41943],[62,86],[-148,143],[-34,130],[-209,139]],[[38923,42992],[-194,116]],[[38614,43097],[-82,-31]],[[38532,43066],[17,-130],[138,-103],[194,205],[42,-46]],[[50134,81385],[-136,126],[-400,253]],[[48657,80219],[240,28]],[[48537,81968],[72,-327],[124,121]],[[48477,82868],[-178,-392]],[[49998,83532],[174,222],[11,119],[129,78]],[[50377,84030],[-248,-142],[-230,37],[-207,-50],[-309,-196],[-295,-201]],[[50365,82200],[-2,-45]],[[50865,82150],[307,-3],[173,29],[145,-79],[184,-22]],[[51682,82661],[-109,-11],[-168,165]],[[51399,82814],[-181,-8],[-176,-81]],[[54564,82112],[-289,266],[54,21]],[[54333,82714],[-270,64],[-318,-29],[-189,-96],[4,-80],[-125,88],[-133,7]],[[51674,82033],[-47,-145],[188,-103],[63,-186],[296,-3],[11,78]],[[25794,37721],[11,-642]],[[24078,36469],[143,3],[46,177]],[[21738,35314],[51,85]],[[21723,35559],[-505,-113],[127,-95],[176,-16]],[[25647,30395],[237,-9]],[[25884,30386],[4,121]],[[25880,30760],[-73,60]],[[25768,31419],[200,29]],[[26227,31868],[31,38],[322,-2],[233,385]],[[20509,47785],[-1,-190],[-187,-355],[-134,-279],[11,-200],[-54,-353],[-77,-248]],[[20523,48256],[178,128],[290,39],[131,-85]],[[21100,48319],[-113,-179]],[[20805,47957],[-280,-60],[-16,-105]],[[24828,44922],[15,104],[-90,157],[-5,175],[71,102],[-72,176],[-146,17],[51,206],[255,156],[-3,90],[-217,139],[-139,-14],[-36,91],[-180,127],[-193,-13],[-243,72],[76,60],[-36,124],[83,24],[-12,179]],[[35859,38047],[126,88],[208,-83],[24,59]],[[36278,37409],[-298,256],[-91,139]],[[23895,25343],[2,-74],[-464,-9],[26,-231],[-226,73],[-231,4]],[[24743,27952],[-1,106],[265,-25]],[[24118,28330],[5,-306],[88,-75],[262,0]],[[36832,42046],[189,-10],[179,66],[312,22],[163,56],[-66,174],[185,-78],[58,62],[231,-130],[262,-25]],[[2436,1785],[201,-627],[70,-506]],[[3415,1491],[58,212],[-6,168],[113,88],[172,38],[-82,176],[43,41],[-148,138],[-7,81],[-386,90]],[[40505,33557],[35,-248],[-75,-209],[91,-24],[128,115]],[[41709,32914],[97,74]],[[32355,32745],[225,228],[238,33],[156,208],[144,-26],[81,-117],[327,-26]],[[35916,35178],[-75,73],[-44,210],[-74,52],[-237,-7],[-220,39],[-198,83],[-253,164],[-216,79],[-15,16]],[[39712,31576],[113,71],[-46,92],[-142,3],[-145,85],[-81,129],[-414,121]],[[39027,31606],[2,-45],[0,-172],[93,-96],[8,-175],[285,37]],[[45773,55440],[88,144],[-57,92],[70,179],[221,-77],[214,46]],[[42778,61219],[-252,-4]],[[40615,52389],[104,130],[257,-18],[32,86],[178,16],[205,1],[137,94],[237,-77],[28,68],[290,274],[-26,92],[115,58],[183,-7],[89,150],[146,18],[281,157],[33,175],[128,118],[137,36],[119,-145],[103,-1],[249,-205],[49,42]],[[47148,52701],[11,-90],[373,-208],[-10,-119]],[[37556,56158],[-266,-154]],[[19846,23993],[-410,-157],[-262,-199]],[[20224,24889],[-2,-153],[-92,-3],[-1,-189],[-176,-5],[4,-115]],[[2001,14540],[-271,-33],[-160,-131],[-242,84],[-324,-247]],[[1004,14213],[234,-389],[407,-569],[150,-259],[570,-855],[187,-335],[222,-514],[99,-315]],[[3746,12152],[32,119],[197,129],[137,237],[196,210],[-35,81],[104,129],[-149,43],[-24,111]],[[3657,11544],[-198,-65]],[[3057,10256],[-67,-179],[-251,-217]],[[2739,9860],[243,-140],[59,-76],[212,155],[68,171],[70,204],[5,157],[-106,106],[215,-29],[108,-126],[303,-33],[85,274],[155,374],[-18,100],[186,212],[-5,83],[117,182],[-199,100],[-104,-47],[-201,81]],[[84800,96135],[270,-56],[243,-259],[212,-8],[156,-53],[98,11],[9,119],[90,-36],[88,-347],[1209,-48],[268,-52],[100,335],[181,382],[-27,464],[87,-8]],[[87108,97375],[-172,6]],[[86760,97389],[-265,11],[4,76],[-356,14]],[[96096,96984],[-665,-55],[-140,-76],[-163,290],[-71,8]],[[55629,49248],[-226,-89],[19,-181],[485,-77],[183,-52],[767,-23],[2,162],[-114,67],[-258,6],[-65,76],[-157,3],[-83,154]],[[52008,69258],[79,-107],[159,8],[87,102],[279,-41],[158,16],[181,91],[41,83],[-178,4],[5,150],[179,9],[14,137],[599,-5],[-95,48],[-20,146],[-411,210],[-62,62],[-157,-35],[-483,302],[13,382]],[[48123,75764],[255,82],[208,-14],[249,43],[181,85],[192,21],[203,-40],[308,7],[333,95],[180,10],[446,152],[151,-10],[-26,-96],[105,-34],[14,101],[285,111]],[[51743,76293],[217,11]],[[50252,66071],[1,464],[-106,299],[-1564,17]],[[56233,66626],[131,-150],[-144,27],[-5,-148],[-126,36],[-30,-133],[68,-104],[148,-45],[226,243],[34,187],[-147,223]],[[56928,67289],[98,-129],[143,60],[283,13],[47,160],[157,-69],[46,201],[289,-61],[135,267],[-143,85],[-719,10]],[[56335,67343],[264,-2]],[[56934,67833],[15,616],[-111,1],[-888,9],[-15,-57],[-239,-45],[91,-339]],[[62666,67362],[76,-18],[207,-2]],[[63434,67338],[145,-1]],[[64412,69368],[-212,5],[-38,-53],[7,-170],[-213,-453],[-148,-205],[-241,-78],[-513,-598],[-388,-454]],[[62666,67362],[-211,76],[80,-83],[-54,-182],[185,189]],[[58690,75581],[176,-3]],[[61506,73048],[153,139],[3,137]],[[61670,73634],[-717,11],[-162,3],[3,-146],[-909,28],[50,-575]],[[64537,74364],[-710,7],[-3,-175]],[[59004,73412],[522,-16],[4,478]],[[55222,72114],[2,-1],[63,-27],[166,178],[161,-27],[217,162],[182,68],[88,207]],[[55634,73188],[-15,157],[-72,6],[211,204],[69,128],[-61,99],[244,213],[-112,156],[-186,29],[-419,-13],[-210,51],[-475,-159],[-529,-286],[-406,-475],[-341,-494]],[[41833,61215],[-530,-1]],[[45114,63212],[-353,0],[-4,-346]],[[13446,30675],[-38,-207],[-82,-102],[-9,-169],[78,14],[98,-178],[227,108],[180,135],[268,269],[140,60],[-83,89]],[[36058,17580],[-1,203],[308,7],[-3,226],[62,190],[-22,200],[426,-18],[80,-154],[-51,-171],[115,7],[0,309],[-112,66],[25,162]],[[55256,84460],[-51,24]],[[54872,84488],[-188,16]],[[57106,79780],[-5,-150],[89,-2],[7,-154],[157,-6],[-2,-153],[177,-2],[5,-151],[351,-8],[9,-191],[195,-1],[-2,-54]],[[56569,77613],[41,-148],[277,24],[314,204],[229,90],[116,-1],[98,86],[53,-17],[-8,-417],[-45,-1220]],[[62626,78883],[16,547],[8,291]],[[56368,79681],[203,-41],[0,154],[523,-7]],[[44493,49502],[113,27],[265,160],[41,97]],[[43081,50864],[158,-237],[-96,-110],[-38,-173],[100,-39]],[[44609,51343],[-287,369],[-171,55],[-239,196],[-112,133],[-347,-44],[52,-287]],[[37006,52479],[3,-361]],[[39868,51604],[-148,91]],[[15062,41032],[147,-93],[397,40],[18,80],[195,195]],[[14616,43280],[186,-76],[91,-190],[147,-170]],[[15639,43733],[-121,-133],[-159,-80],[-189,-24],[-236,129],[-233,-120],[-85,-225]],[[13579,41440],[41,-31],[185,195]],[[13866,41812],[77,82],[-176,27],[-86,-71],[6,-137],[-107,39],[-19,-99],[-204,-137]],[[40696,48289],[27,-97],[-203,-156],[99,-58],[251,43],[-66,-125],[-33,-248],[-76,-134]],[[41648,47843],[76,166],[323,-42],[184,41],[261,-87],[30,-76],[-58,-233],[63,-28],[289,261],[214,42],[154,105]],[[5103,26698],[118,-217],[183,-326]],[[9388,27092],[0,-173],[168,13],[181,309]],[[11086,28037],[125,39],[172,-42],[237,87],[182,636],[11,152],[-231,153],[-135,188],[-35,28]],[[10600,29481],[24,-243]],[[5070,28302],[-223,-315],[95,-125]],[[7352,34187],[-75,-91],[-348,-286],[-138,14],[-95,-232],[-306,-232],[-61,-12]],[[7327,33550],[253,340],[103,203]],[[7685,34095],[183,166],[59,126],[169,154],[166,222],[178,177]],[[8073,34825],[-271,-194],[-82,-96],[-202,-64],[-114,-113],[-52,-171]],[[9524,31567],[-80,82],[-40,168]],[[11027,31017],[146,175],[68,159]],[[8888,30992],[95,-48],[-293,-250],[79,-139],[-105,-112],[161,-94],[-229,-160],[-129,8],[199,-279],[307,127],[360,29],[250,63],[159,-230],[374,-30],[159,87]],[[11043,32467],[114,-364],[-96,-42],[107,-90],[131,54],[183,-58],[217,80],[156,-76],[80,91],[-102,69],[36,231],[-132,54],[-204,-121],[48,159],[-175,-152],[-97,14],[-266,151]],[[30941,48797],[-69,-65],[-625,-6]],[[33388,46397],[94,106]],[[33888,50183],[-310,-18],[-512,-131],[-232,2],[-177,-3],[-3,188]],[[34770,50164],[-256,2]],[[35018,48558],[139,-169],[131,36],[194,-59],[281,14],[61,62],[238,-45],[65,98],[-113,170],[-77,253],[81,150],[216,-122],[154,127],[143,-45],[-85,145],[106,-44]],[[32793,52285],[706,15],[-5,459],[-410,-10]],[[37224,50713],[-5,275]],[[35464,5988],[233,-220],[69,-2],[74,-158],[242,-3],[80,146],[-16,172]],[[50593,46408],[65,-71],[-32,-131],[-87,1],[275,-303],[177,-61],[136,348],[219,363]],[[23290,55835],[126,-411],[50,-134],[-139,-340]],[[27964,59492],[-1,-4]],[[27797,59277],[-216,-157]],[[19142,41964],[-120,-240],[-183,-219],[-553,-327],[-350,-109]],[[19873,38312],[26,315],[-13,244],[-47,8],[127,359],[-59,50]],[[33655,29552],[-322,272],[-126,27],[-64,117],[100,109],[232,-31],[-82,59]],[[27872,32419],[-287,-217]],[[33062,28581],[125,-34],[40,166],[111,124],[-89,85],[241,-29],[101,103]],[[38022,28838],[-56,-68],[259,-163],[298,-264]],[[39451,28334],[165,-23],[183,72]],[[40125,28239],[71,61],[8,185],[182,97],[31,161],[106,68],[31,142]],[[39249,30690],[-41,-63],[-363,-50],[-233,148]],[[38945,29793],[-42,-231],[71,-610]],[[60306,87648],[-81,-44]],[[32471,22778],[-72,174],[-131,-32],[-235,77],[-57,-39],[33,-173],[-138,-100],[-118,18],[-79,108],[-125,3],[-198,-81],[52,-116],[-87,-181],[77,-121]],[[36268,24362],[-330,-294],[-161,224],[-237,4],[109,-120],[112,-224],[-125,-318]],[[32332,20300],[14,198],[-236,124],[-143,-94],[-284,-79],[-165,-92],[-36,-46],[147,-107],[198,29],[95,-75],[-45,-235],[241,150],[11,70],[296,71],[-93,86]],[[30415,18919],[-161,199],[32,216],[-110,-146],[-68,-363],[29,-141]],[[70914,90564],[7,152],[129,6]],[[72937,87810],[-155,4],[10,321],[17,360]],[[72672,85080],[185,61]],[[73924,85498],[173,-4],[7,180],[-527,16],[4,78],[-176,4],[-4,-76],[-353,8],[10,307],[-109,3]],[[71062,83747],[138,-3],[6,149],[172,-8],[6,75],[266,-8],[14,70],[255,-7],[5,164]],[[72456,84165],[6,146],[-85,41],[-78,207],[-2,156],[86,37],[108,326]],[[73558,89324],[-1,-71],[195,-11],[77,-75],[-9,-150],[82,-6],[-14,-306],[893,-35],[16,313],[168,-5],[6,156],[-427,11],[-459,138]],[[75220,84098],[-176,-133]],[[75197,86532],[-20,-611],[-174,7],[-9,-148],[-353,12],[11,149],[-179,5],[-32,-331],[160,-223]],[[80478,90311],[-32,-673],[-72,-91],[-110,4],[-5,-124],[-96,-151],[-90,3],[-691,18],[-20,-396],[-351,15],[-10,-214],[-358,8],[-9,-154],[181,0],[-8,-153],[-543,7],[-13,-297],[-789,26],[-41,179],[-71,33],[-94,256]],[[24763,36869],[541,-101],[9,-31],[80,-188],[-19,-188],[-316,-470],[-15,-64],[-190,-17],[-16,66],[-223,40],[-302,253],[-223,-7]],[[22624,35547],[106,-139],[194,60],[250,-52],[173,-159],[145,-29],[240,-203]],[[25439,35613],[722,32],[94,41]],[[70144,83513],[1,114],[682,-26]],[[66907,65980],[-181,72],[-330,-63],[25,-228]],[[64405,79472],[234,-9],[206,-81],[255,-5],[-19,-548],[-45,1],[-21,-460],[1428,-28]],[[70506,79827],[210,-1],[268,-9],[208,62],[362,-6]],[[76750,83045],[-261,-96],[-165,-172],[112,1],[61,-109],[-55,-299]],[[74122,81880],[-184,27],[-8,307],[-143,87],[-202,-124],[-11,75],[-130,-67],[-218,-26],[-130,41],[-73,-70]],[[70723,75506],[35,115],[-100,156],[-29,166],[-104,28],[-86,-74],[-483,147],[-686,634],[-172,-129]],[[71531,75296],[-87,174],[-350,9]],[[67851,78656],[227,-200],[489,-433],[332,-347]],[[98364,81829],[-218,224],[-235,36],[-174,177],[-237,101],[-253,39],[-170,222],[-7,81]],[[74275,99563],[-982,111],[-1810,214]],[[72639,93316],[35,777],[240,-183],[147,-30],[-10,-94],[329,-82],[354,13],[112,220],[105,-13],[163,-118],[119,49],[147,233],[132,32]],[[73967,95298],[-12,236],[-166,9],[18,640],[26,78],[153,-14],[6,82],[177,-6],[-6,-148],[365,-21],[9,156],[217,-2],[170,-40],[0,-78],[171,-32],[106,-122],[398,-192],[137,107],[116,-66],[100,89],[61,179],[-118,102],[-69,245]],[[67425,93015],[-44,-132],[-418,-519],[-256,-288],[-380,-378],[-438,-323],[-283,-159],[-216,-65]],[[76414,96631],[88,-40],[143,-256],[114,25],[92,-97],[152,201],[-160,111],[0,176],[-138,76],[0,79]],[[75621,93867],[201,94],[333,277],[54,-12],[240,552],[-139,43],[-41,-82],[-177,5]],[[18004,45175],[48,83]],[[32004,44296],[425,5],[110,197],[7,370],[46,145],[220,29],[-5,-370],[531,-33],[24,-76],[181,-21],[-1,-57],[291,-20],[437,163],[-129,29],[-75,97]],[[26465,44981],[159,37],[170,-206],[161,-21],[268,27],[365,-92],[36,-86],[208,28],[186,-46],[47,138],[74,2]],[[26904,45933],[-291,-1],[-166,-73],[-545,-16]],[[32132,66826],[-179,-105],[221,-77],[145,17],[-89,-102],[-12,-149],[195,38],[4,-187],[82,-14],[-41,-180]],[[35349,67481],[-3,302],[155,114],[-175,257],[166,254],[-147,2],[-3,250]],[[34969,72135],[279,205],[115,130],[258,142]],[[33568,69565],[-145,-225],[-311,-5],[-152,-121],[-141,-15],[-44,-76],[-238,-132],[-70,4],[-85,-212]],[[17584,49149],[-123,-179],[-156,-392]],[[42772,79655],[299,-149],[181,124],[131,18]],[[38033,77124],[-81,-125],[364,215],[8,470],[-127,-95],[-172,87]],[[39880,78042],[77,84],[415,3],[41,239],[-39,177],[224,31]],[[40593,78771],[-157,-29],[-225,147],[-352,-80],[-69,42],[-262,-41]],[[36342,76947],[148,-24],[113,-92],[51,63]],[[42082,80041],[-53,-70],[168,-322],[109,51],[293,-3]],[[22971,48107],[145,349],[-8,77],[198,97]],[[23960,50812],[243,225],[338,246],[181,200]],[[25550,51637],[309,368],[41,219],[181,217],[182,38],[115,-30],[164,55],[193,330],[15,149],[-122,212],[-100,24],[-159,-125],[222,409]],[[23260,54795],[-268,-490]],[[18111,15289],[-37,-119],[61,-109],[-63,-186],[133,-1],[132,-235],[-22,-62],[-174,-41],[5,-132],[79,-70],[18,-200],[99,-109],[194,-82]],[[20200,16663],[81,136],[242,246],[35,268],[-28,106]],[[20474,17569],[205,235],[-75,124],[-183,20],[-70,170],[194,92],[112,9],[232,-134],[28,189],[-80,109],[-189,36],[-106,112],[68,116]],[[17996,19112],[-2,-187],[-9,-88],[-218,-85],[-45,-195],[283,-291],[6,-404],[206,-147],[302,4],[28,-75],[298,6],[27,-58]],[[18402,17512],[-6,-98],[-46,-108],[-350,-374],[-203,-379],[-230,-190],[-120,-48]],[[20175,14009],[-50,295],[49,150],[-50,223],[32,142],[76,-15],[232,-209],[120,-4]],[[18591,13763],[39,-54],[157,18],[156,-157],[355,11],[178,-77],[99,-49]],[[22969,16581],[113,-154],[-98,-147],[-64,-53],[274,-37],[120,39],[75,-120],[348,-104],[152,2],[154,-99],[287,16],[67,-47],[-127,229],[230,-18],[1,84],[-212,-2],[-42,98],[-182,65],[-86,91],[-268,109],[-30,123],[-113,105],[-599,-180]],[[25680,12243],[57,-377],[47,-22],[27,-325],[174,-83],[107,334],[63,124],[-190,30],[-126,249],[-60,-2]],[[16998,2962],[253,-228]],[[16785,3538],[33,-84]],[[16049,37864],[0,0]],[[11472,36747],[167,20],[44,-147],[183,-214]],[[12171,33441],[237,311],[35,112],[75,81],[45,300],[95,17],[55,134],[461,384],[66,-152],[102,236],[73,58]],[[8148,34921],[0,0]],[[21019,19580],[98,179],[215,147],[193,237],[-134,-10],[-2,88],[-309,-2],[8,212],[-55,64]],[[20112,21787],[25,-696],[49,-29],[-121,-256],[13,-243]],[[21166,21111],[-32,72]],[[13306,13674],[3,-353],[-155,-327],[52,-83],[141,-28],[272,365],[-5,-91],[115,36]],[[50092,60848],[-268,128],[3,44]],[[50410,59643],[6,2],[72,54]],[[50727,62175],[5,153],[404,3],[35,34],[4,304],[45,37],[297,-5],[229,-64],[128,67],[209,3],[43,60],[213,19]],[[47580,63804],[196,0]],[[39077,41943],[209,-104],[5,225],[145,117],[-37,80],[-286,105],[26,180],[67,33],[46,224],[-69,42],[-146,34],[-114,113]],[[38532,43066],[-49,20]],[[38169,43202],[94,194],[22,156],[-69,152],[-128,61],[-28,353]],[[25884,30386],[-41,-372],[-56,-147],[412,-4],[0,59],[441,11],[3,-184],[280,-451],[201,-214],[410,-164],[-147,-129],[-314,-40],[-20,-71]],[[31697,69695],[-191,1],[-225,-144],[-241,-38],[-96,30],[-217,-254],[-105,-52],[-157,-186]],[[29730,68120],[-155,-121],[-225,-312],[-218,-84],[-46,87],[-299,-186],[-159,-1],[-205,-132],[-254,-14],[-28,-253],[-250,-255],[3,-413],[-124,-79],[37,-99],[-72,-146],[-136,-129]],[[27599,65983],[-406,-303],[-242,-339],[-259,-126],[-246,-229],[17,-168],[-108,-166],[-104,-532],[-160,-318],[-224,-114],[-476,-158],[-141,-239],[-30,-184],[-136,-76],[-109,-138],[-141,-345],[-398,-453],[-244,-182],[-167,-195],[-486,-280],[-290,-144],[-164,-3],[-134,-87],[-231,-379],[-221,-122],[-237,-201],[71,-343],[-131,-169],[54,-270],[-33,-172],[-91,-55],[9,-239],[-141,-293],[2,-141],[-79,-155]],[[41806,32988],[1428,1091]],[[5522,25851],[-84,-325],[-101,-174],[53,-99],[-2,-531],[-57,-77],[-2,-242],[-121,-223],[-151,-83],[-108,-365],[5,-456],[-112,-409],[-253,-128],[-236,-194],[-186,-499],[-226,-141],[-214,-431],[-142,-116],[-241,-307]],[[3344,21051],[-112,-131],[-185,-122],[-118,27],[-99,-93],[12,-382],[-53,-132],[-205,-275],[-267,-143],[-334,-129],[-105,-37],[-235,-329],[-194,-163],[-198,-98],[-277,-210],[-281,-258],[-57,-116],[-140,-75],[-179,-186],[6,-160],[168,-399],[-118,-301],[-10,-338],[-67,-193],[-158,-155],[-95,-163],[-43,-224],[122,-194],[124,-287],[-11,-160],[596,-1151],[173,-261]],[[2739,9860],[-92,-130],[53,-141],[-50,-126],[26,-241],[-54,-85],[70,-136],[137,-13],[217,-465],[166,-415],[11,-115],[154,-489],[229,-909],[118,-677],[-9,-265]],[[4884,107],[1207,43],[183,17],[779,7],[645,41],[297,-39],[968,20]],[[8963,196],[755,16],[790,51],[1411,-25],[423,-27],[911,91],[1592,40],[2135,37],[1214,-10],[1208,18],[970,41],[645,11],[1721,71],[1394,34],[2247,78],[1376,38]],[[27755,660],[972,22],[820,-3],[1127,27],[825,37],[1959,8],[1565,21],[1326,0],[1950,14],[1141,-14],[1467,2],[-1,1257],[9,1313],[-5,2019],[-5,609],[-4,3321]],[[40937,17517],[-2,1472],[-9,1797],[-4,1425],[-20,1106],[-14,1359]],[[40888,24676],[-4,1933],[-13,988]],[[40871,27597],[-21,1355]],[[44840,35301],[1256,953],[746,580],[440,323],[487,376],[1750,1327],[927,721],[495,361],[1470,1128]],[[86834,98107],[-1342,158],[-4544,524]],[[79260,98986],[-1233,143]],[[41608,80396],[-270,-7],[-519,-265],[-157,23],[-152,-54],[-501,34],[-299,-103],[-333,-36],[-173,37],[-584,-8],[-112,24],[-452,-3],[-523,59],[-64,40],[-658,34],[-195,56],[-159,-17],[-109,95],[-187,-58],[-88,-350],[-162,-152],[-71,-175]],[[55120,95054],[171,23],[142,-43],[119,98],[62,190],[103,41],[32,140],[320,321],[10,46],[313,316],[180,79],[146,156],[868,638],[202,187],[-387,-50],[-145,57],[-26,84],[-234,126],[-81,-149],[-158,-54],[-240,-200],[-295,-128],[-67,-275],[-132,-75],[-115,-206],[-116,-58],[-102,-368],[-251,-283],[-140,-399],[-173,-34],[-6,-180]],[[58062,91775],[66,63],[57,256],[-203,121],[-509,-213],[-345,-10],[-331,36],[-249,-75],[-230,-258],[58,-402],[-85,-323],[-235,-100],[-23,65],[-240,-114],[-265,6],[-454,-458],[218,46],[421,-9],[428,214],[28,104],[230,-56],[328,200],[226,14],[427,177],[119,4],[5,140],[197,229],[207,187]],[[17640,44044],[5,81],[-226,-45],[-33,-52],[151,-115],[99,96]],[[14616,43280],[-276,-136],[-155,-115],[-131,-300],[-223,-217],[-330,-219],[-242,-97],[-550,-85],[-165,30],[-247,200],[-16,123],[81,54],[-476,-38],[124,-87],[198,-399],[329,-742],[94,-267],[34,-268],[-55,-149],[-108,-53],[0,-207],[-115,-140],[-134,-249],[156,103],[55,-28]],[[5516,32128],[34,32],[217,-228],[214,-457],[9,-311],[-165,-499],[31,-49]],[[97070,82709],[-24,232],[59,209],[-23,161],[-158,131],[-87,-9],[50,126],[-383,422],[-219,76],[-122,227],[28,91]],[[42657,80579],[-134,26]],[[45213,92553],[155,77],[339,-151],[405,205],[293,94],[265,264],[-41,120],[-320,58],[-436,-85],[-75,-60],[-265,-39],[-297,-267],[-23,-216]]],"bbox":[14.038067567747248,10,946.0745599273278,1089.9999999999995],"transform":{"scale":[0.009320458128177087,0.010800108001080007],"translate":[14.038067567747248,10]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment