Skip to content

Instantly share code, notes, and snippets.

@jgujgu
Forked from phil-pedruco/index.html
Created February 5, 2017 18:57
Show Gist options
  • Save jgujgu/30f436886cf1a27d5781a4957fe324ce to your computer and use it in GitHub Desktop.
Save jgujgu/30f436886cf1a27d5781a4957fe324ce to your computer and use it in GitHub Desktop.
Contours of Nepal using topojson and d3.js

This is an answer to this Stackoverflow question which asks how to render topographic contour lines. The second part of the question looks into animating parts of the visualisation which isn't covered here.

To demonstrate this a visualisation of topographic contours of Nepal (and Tibet) was created. The visualisation here is based on ETOPO1 1 minute resolution dataset from the NOAA National Geophysical Data Centre. It was downloaded as an ArcGIS ASCII grid and processed in QGIS where the resulting DEM was contoured into 500m contours.

The resulting contours were then converted to topojson using the command line version. This was necessary to preserve the properties of the topojson as I wanted to colour code the contours based on elevation. On-line topojson tools typically don't allow this as the default in topojson to to remove properties.

The contours are then rendered using the typical pattern for geo-objects. The stroke property for the paths set based on the elevation property using the interpolateLab function.

Well, there is a little bit of interaction when you mouse over a contour just to give a bit of a demo of what's possible.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Nepal Topographic Contours</title>
<script type="text/javascript" src="http://d3js.org/d3.v3.min.js"></script>
<script type="text/javascript" src="http://d3js.org/topojson.v1.min.js"></script>
</head>
<body>
</body>
<script type="text/javascript">
var h = 500,
w = 960;
// set-up unit projection and path
var projection = d3.geo.mercator()
.scale(1)
.translate([0, 0]);
var path = d3.geo.path()
.projection(projection);
// set-up svg canvas
var svg = d3.select("body").append("svg")
.attr("height", h)
.attr("width", w);
// set-up scale for colour coding contours
var cScale = d3.scale.linear()
.domain([0, 1]);
// read in topojson of Nepal
d3.json("z_contours_500_clipped.json", function(error, nepal) {
// first variable is used to centre and scale map to viewport
// could have used the bbox feature (see https://github.com/mbostock/topojson/issues/67)
var bTopo = topojson.feature(nepal, nepal.objects.contours_500_clipped),
topo = bTopo.features;
// calculate range for colours based on ELVE property
// Note when converting to topojon the default is to REMOVE all properties
// from the input file, you need to use the -p switch.
var hRange = d3.extent(topo, function(d, i) {
return d.properties.ELEV
});
cScale.domain(hRange);
// calculate bounds, scale and transform
// see http://stackoverflow.com/questions/14492284/center-a-map-in-d3-given-a-geojson-object
var b = path.bounds(bTopo),
s = .95 / Math.max((b[1][0] - b[0][0]) / w, (b[1][1] - b[0][1]) / h),
t = [(w - s * (b[1][0] + b[0][0])) / 2, (h - s * (b[1][1] + b[0][1])) / 2];
projection.scale(s)
.translate(t);
svg.selectAll("path")
.data(topo).enter()
.append("path")
.style("fill", "none")
.style("stroke", function(d, i) {
return interp(cScale(d.properties.ELEV));
})
.attr("d", path)
.on("mouseover", highlight) // just a little example of what's available in terms of interaction
.on("mouseout", function (d,i) {unhighlight(this,d);
});
});
// function to interpolate between to colours
// see http://stackoverflow.com/questions/12217121/continuous-color-scale-from-discrete-domain-of-strings
function interp(x) {
var ans = d3.interpolateLab("#ffffe5", "#004529")(x);
return ans
}
// A simple highlight example
function highlight(x) {
var s = d3.select(this);
s.style("stroke", "red");
}
function unhighlight(x,y) {
var old = y.properties.ELEV;
var u = d3.select(x);
u.style("stroke", function(d, i) {
return interp(cScale(old));
})
}
</script>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.0008026563200853341,0.0003675234757478239],"translate":[80.16289782246932,26.757478632485284]},"objects":{"contours_500_clipped":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[0],"properties":{"ID":1338,"ELEV":5500}},{"type":"MultiLineString","arcs":[[1],[2]],"properties":{"ID":1364,"ELEV":5500}},{"type":"LineString","arcs":[3],"properties":{"ID":1375,"ELEV":5500}},{"type":"LineString","arcs":[4],"properties":{"ID":1402,"ELEV":6000}},{"type":"LineString","arcs":[5],"properties":{"ID":1431,"ELEV":5500}},{"type":"LineString","arcs":[6],"properties":{"ID":1438,"ELEV":4500}},{"type":"LineString","arcs":[7],"properties":{"ID":1439,"ELEV":4500}},{"type":"LineString","arcs":[8],"properties":{"ID":1441,"ELEV":5000}},{"type":"LineString","arcs":[9],"properties":{"ID":1447,"ELEV":5500}},{"type":"MultiLineString","arcs":[[10],[11]],"properties":{"ID":1462,"ELEV":4000}},{"type":"LineString","arcs":[12],"properties":{"ID":1463,"ELEV":4000}},{"type":"LineString","arcs":[13],"properties":{"ID":1465,"ELEV":4500}},{"type":"LineString","arcs":[14],"properties":{"ID":1476,"ELEV":4000}},{"type":"LineString","arcs":[15],"properties":{"ID":1481,"ELEV":5500}},{"type":"MultiLineString","arcs":[[16],[17]],"properties":{"ID":1486,"ELEV":5000}},{"type":"LineString","arcs":[18],"properties":{"ID":1487,"ELEV":5000}},{"type":"LineString","arcs":[19],"properties":{"ID":1490,"ELEV":5500}},{"type":"LineString","arcs":[20],"properties":{"ID":1492,"ELEV":5500}},{"type":"LineString","arcs":[21],"properties":{"ID":1499,"ELEV":3500}},{"type":"LineString","arcs":[22],"properties":{"ID":1500,"ELEV":4000}},{"type":"LineString","arcs":[23],"properties":{"ID":1508,"ELEV":5500}},{"type":"MultiLineString","arcs":[[24],[25]],"properties":{"ID":1514,"ELEV":4000}},{"type":"MultiLineString","arcs":[[26],[27]],"properties":{"ID":1515,"ELEV":5000}},{"type":"MultiLineString","arcs":[[28],[29]],"properties":{"ID":1516,"ELEV":5500}},{"type":"LineString","arcs":[30],"properties":{"ID":1523,"ELEV":5000}},{"type":"LineString","arcs":[31],"properties":{"ID":1524,"ELEV":5000}},{"type":"LineString","arcs":[32],"properties":{"ID":1525,"ELEV":5500}},{"type":"LineString","arcs":[33],"properties":{"ID":1532,"ELEV":6000}},{"type":"LineString","arcs":[34],"properties":{"ID":1535,"ELEV":3500}},{"type":"LineString","arcs":[35],"properties":{"ID":1537,"ELEV":4500}},{"type":"LineString","arcs":[36],"properties":{"ID":1538,"ELEV":4500}},{"type":"LineString","arcs":[37],"properties":{"ID":1539,"ELEV":5000}},{"type":"MultiLineString","arcs":[[38],[39]],"properties":{"ID":1547,"ELEV":3000}},{"type":"LineString","arcs":[40],"properties":{"ID":1550,"ELEV":5500}},{"type":"MultiLineString","arcs":[[41],[42]],"properties":{"ID":1554,"ELEV":3000}},{"type":"LineString","arcs":[43],"properties":{"ID":1555,"ELEV":4000}},{"type":"LineString","arcs":[44],"properties":{"ID":1556,"ELEV":4000}},{"type":"LineString","arcs":[45],"properties":{"ID":1557,"ELEV":5000}},{"type":"LineString","arcs":[46],"properties":{"ID":1558,"ELEV":5000}},{"type":"LineString","arcs":[47],"properties":{"ID":1567,"ELEV":3500}},{"type":"LineString","arcs":[48],"properties":{"ID":1568,"ELEV":5000}},{"type":"LineString","arcs":[49],"properties":{"ID":1569,"ELEV":5000}},{"type":"MultiLineString","arcs":[[50],[51]],"properties":{"ID":1570,"ELEV":5500}},{"type":"MultiLineString","arcs":[[52],[53],[54]],"properties":{"ID":1571,"ELEV":5500}},{"type":"LineString","arcs":[55],"properties":{"ID":1577,"ELEV":3000}},{"type":"LineString","arcs":[56],"properties":{"ID":1578,"ELEV":5000}},{"type":"MultiLineString","arcs":[[57],[58]],"properties":{"ID":1580,"ELEV":5500}},{"type":"LineString","arcs":[59],"properties":{"ID":1589,"ELEV":6000}},{"type":"MultiLineString","arcs":[[60],[61]],"properties":{"ID":1593,"ELEV":2500}},{"type":"LineString","arcs":[62],"properties":{"ID":1594,"ELEV":3000}},{"type":"LineString","arcs":[63],"properties":{"ID":1595,"ELEV":4000}},{"type":"LineString","arcs":[64],"properties":{"ID":1598,"ELEV":5500}},{"type":"MultiLineString","arcs":[[65],[66]],"properties":{"ID":1599,"ELEV":5500}},{"type":"LineString","arcs":[67],"properties":{"ID":1610,"ELEV":3500}},{"type":"LineString","arcs":[68],"properties":{"ID":1612,"ELEV":5500}},{"type":"MultiLineString","arcs":[[69],[70]],"properties":{"ID":1618,"ELEV":2000}},{"type":"LineString","arcs":[71],"properties":{"ID":1619,"ELEV":3500}},{"type":"LineString","arcs":[72],"properties":{"ID":1620,"ELEV":4000}},{"type":"LineString","arcs":[73],"properties":{"ID":1621,"ELEV":4500}},{"type":"LineString","arcs":[74],"properties":{"ID":1622,"ELEV":5500}},{"type":"LineString","arcs":[75],"properties":{"ID":1623,"ELEV":5500}},{"type":"MultiLineString","arcs":[[76],[77],[78]],"properties":{"ID":1628,"ELEV":5500}},{"type":"LineString","arcs":[79],"properties":{"ID":1629,"ELEV":5500}},{"type":"LineString","arcs":[80],"properties":{"ID":1632,"ELEV":6000}},{"type":"LineString","arcs":[81],"properties":{"ID":1636,"ELEV":3500}},{"type":"LineString","arcs":[82],"properties":{"ID":1638,"ELEV":5000}},{"type":"LineString","arcs":[83],"properties":{"ID":1639,"ELEV":5000}},{"type":"LineString","arcs":[84],"properties":{"ID":1640,"ELEV":5000}},{"type":"LineString","arcs":[85],"properties":{"ID":1641,"ELEV":5000}},{"type":"LineString","arcs":[86],"properties":{"ID":1646,"ELEV":6000}},{"type":"MultiLineString","arcs":[[87],[88]],"properties":{"ID":1649,"ELEV":1500}},{"type":"LineString","arcs":[89],"properties":{"ID":1650,"ELEV":4500}},{"type":"LineString","arcs":[90],"properties":{"ID":1651,"ELEV":4500}},{"type":"LineString","arcs":[91],"properties":{"ID":1652,"ELEV":4500}},{"type":"LineString","arcs":[92],"properties":{"ID":1657,"ELEV":5500}},{"type":"LineString","arcs":[93],"properties":{"ID":1661,"ELEV":2500}},{"type":"LineString","arcs":[94],"properties":{"ID":1663,"ELEV":4000}},{"type":"LineString","arcs":[95],"properties":{"ID":1664,"ELEV":4500}},{"type":"LineString","arcs":[96],"properties":{"ID":1665,"ELEV":5000}},{"type":"LineString","arcs":[97],"properties":{"ID":1666,"ELEV":5000}},{"type":"LineString","arcs":[98],"properties":{"ID":1670,"ELEV":5500}},{"type":"LineString","arcs":[99],"properties":{"ID":1671,"ELEV":5500}},{"type":"LineString","arcs":[100],"properties":{"ID":1672,"ELEV":5500}},{"type":"LineString","arcs":[101],"properties":{"ID":1680,"ELEV":6000}},{"type":"MultiLineString","arcs":[[102],[103]],"properties":{"ID":1682,"ELEV":1500}},{"type":"LineString","arcs":[104],"properties":{"ID":1683,"ELEV":3500}},{"type":"LineString","arcs":[105],"properties":{"ID":1684,"ELEV":4500}},{"type":"LineString","arcs":[106],"properties":{"ID":1685,"ELEV":4500}},{"type":"LineString","arcs":[107],"properties":{"ID":1687,"ELEV":5000}},{"type":"LineString","arcs":[108],"properties":{"ID":1689,"ELEV":5000}},{"type":"LineString","arcs":[109],"properties":{"ID":1690,"ELEV":5000}},{"type":"LineString","arcs":[110],"properties":{"ID":1693,"ELEV":5500}},{"type":"LineString","arcs":[111],"properties":{"ID":1697,"ELEV":4000}},{"type":"LineString","arcs":[112],"properties":{"ID":1698,"ELEV":4000}},{"type":"LineString","arcs":[113],"properties":{"ID":1701,"ELEV":5000}},{"type":"LineString","arcs":[114],"properties":{"ID":1702,"ELEV":5000}},{"type":"LineString","arcs":[115],"properties":{"ID":1703,"ELEV":5000}},{"type":"LineString","arcs":[116],"properties":{"ID":1712,"ELEV":3500}},{"type":"LineString","arcs":[117],"properties":{"ID":1713,"ELEV":5000}},{"type":"LineString","arcs":[118],"properties":{"ID":1714,"ELEV":5000}},{"type":"LineString","arcs":[119],"properties":{"ID":1720,"ELEV":6000}},{"type":"LineString","arcs":[120],"properties":{"ID":1721,"ELEV":6000}},{"type":"LineString","arcs":[121],"properties":{"ID":1723,"ELEV":3500}},{"type":"LineString","arcs":[122],"properties":{"ID":1724,"ELEV":4500}},{"type":"LineString","arcs":[123],"properties":{"ID":1727,"ELEV":5000}},{"type":"LineString","arcs":[124],"properties":{"ID":1728,"ELEV":5000}},{"type":"LineString","arcs":[125],"properties":{"ID":1731,"ELEV":6000}},{"type":"LineString","arcs":[126],"properties":{"ID":1732,"ELEV":6000}},{"type":"LineString","arcs":[127],"properties":{"ID":1740,"ELEV":5500}},{"type":"LineString","arcs":[128],"properties":{"ID":1742,"ELEV":5500}},{"type":"LineString","arcs":[129],"properties":{"ID":1750,"ELEV":3500}},{"type":"LineString","arcs":[130],"properties":{"ID":1751,"ELEV":5000}},{"type":"LineString","arcs":[131],"properties":{"ID":1752,"ELEV":5000}},{"type":"LineString","arcs":[132],"properties":{"ID":1753,"ELEV":5500}},{"type":"LineString","arcs":[133],"properties":{"ID":1757,"ELEV":2500}},{"type":"LineString","arcs":[134],"properties":{"ID":1758,"ELEV":3500}},{"type":"LineString","arcs":[135],"properties":{"ID":1762,"ELEV":5500}},{"type":"LineString","arcs":[136],"properties":{"ID":1771,"ELEV":2000}},{"type":"LineString","arcs":[137],"properties":{"ID":1772,"ELEV":3000}},{"type":"LineString","arcs":[138],"properties":{"ID":1773,"ELEV":3000}},{"type":"LineString","arcs":[139],"properties":{"ID":1774,"ELEV":4500}},{"type":"MultiLineString","arcs":[[140],[141],[142],[143]],"properties":{"ID":1775,"ELEV":5000}},{"type":"LineString","arcs":[144],"properties":{"ID":1776,"ELEV":5000}},{"type":"LineString","arcs":[145],"properties":{"ID":1777,"ELEV":5000}},{"type":"LineString","arcs":[146],"properties":{"ID":1781,"ELEV":5500}},{"type":"LineString","arcs":[147],"properties":{"ID":1788,"ELEV":3000}},{"type":"LineString","arcs":[148],"properties":{"ID":1789,"ELEV":4000}},{"type":"LineString","arcs":[149],"properties":{"ID":1790,"ELEV":5000}},{"type":"LineString","arcs":[150],"properties":{"ID":1791,"ELEV":5000}},{"type":"LineString","arcs":[151],"properties":{"ID":1792,"ELEV":5000}},{"type":"LineString","arcs":[152],"properties":{"ID":1797,"ELEV":1500}},{"type":"LineString","arcs":[153],"properties":{"ID":1800,"ELEV":2000}},{"type":"LineString","arcs":[154],"properties":{"ID":1801,"ELEV":2000}},{"type":"LineString","arcs":[155],"properties":{"ID":1802,"ELEV":3500}},{"type":"LineString","arcs":[156],"properties":{"ID":1803,"ELEV":4000}},{"type":"LineString","arcs":[157],"properties":{"ID":1804,"ELEV":4500}},{"type":"MultiLineString","arcs":[[158],[159]],"properties":{"ID":1810,"ELEV":1000}},{"type":"LineString","arcs":[160],"properties":{"ID":1811,"ELEV":2000}},{"type":"LineString","arcs":[161],"properties":{"ID":1812,"ELEV":2500}},{"type":"LineString","arcs":[162],"properties":{"ID":1813,"ELEV":3000}},{"type":"LineString","arcs":[163],"properties":{"ID":1814,"ELEV":3500}},{"type":"LineString","arcs":[164],"properties":{"ID":1818,"ELEV":1500}},{"type":"LineString","arcs":[165],"properties":{"ID":1819,"ELEV":2000}},{"type":"LineString","arcs":[166],"properties":{"ID":1820,"ELEV":3500}},{"type":"LineString","arcs":[167],"properties":{"ID":1821,"ELEV":3500}},{"type":"LineString","arcs":[168],"properties":{"ID":1822,"ELEV":4000}},{"type":"LineString","arcs":[169],"properties":{"ID":1823,"ELEV":5500}},{"type":"LineString","arcs":[170],"properties":{"ID":1829,"ELEV":2000}},{"type":"LineString","arcs":[171],"properties":{"ID":1830,"ELEV":2500}},{"type":"LineString","arcs":[172],"properties":{"ID":1832,"ELEV":6000}},{"type":"LineString","arcs":[173],"properties":{"ID":1837,"ELEV":2000}},{"type":"LineString","arcs":[174],"properties":{"ID":1838,"ELEV":2000}},{"type":"LineString","arcs":[175],"properties":{"ID":1839,"ELEV":3500}},{"type":"LineString","arcs":[176],"properties":{"ID":1840,"ELEV":4000}},{"type":"LineString","arcs":[177],"properties":{"ID":1841,"ELEV":4500}},{"type":"LineString","arcs":[178],"properties":{"ID":1842,"ELEV":4500}},{"type":"LineString","arcs":[179],"properties":{"ID":1843,"ELEV":5000}},{"type":"LineString","arcs":[180],"properties":{"ID":1844,"ELEV":5000}},{"type":"LineString","arcs":[181],"properties":{"ID":1851,"ELEV":2000}},{"type":"LineString","arcs":[182],"properties":{"ID":1854,"ELEV":5000}},{"type":"LineString","arcs":[183],"properties":{"ID":1861,"ELEV":1000}},{"type":"LineString","arcs":[184],"properties":{"ID":1862,"ELEV":2000}},{"type":"LineString","arcs":[185],"properties":{"ID":1863,"ELEV":3000}},{"type":"LineString","arcs":[186],"properties":{"ID":1864,"ELEV":4000}},{"type":"LineString","arcs":[187],"properties":{"ID":1865,"ELEV":5000}},{"type":"LineString","arcs":[188],"properties":{"ID":1866,"ELEV":5000}},{"type":"LineString","arcs":[189],"properties":{"ID":1867,"ELEV":5000}},{"type":"LineString","arcs":[190],"properties":{"ID":1875,"ELEV":1500}},{"type":"LineString","arcs":[191],"properties":{"ID":1876,"ELEV":4000}},{"type":"LineString","arcs":[192],"properties":{"ID":1877,"ELEV":4500}},{"type":"LineString","arcs":[193],"properties":{"ID":1887,"ELEV":1500}},{"type":"LineString","arcs":[194],"properties":{"ID":1890,"ELEV":3000}},{"type":"LineString","arcs":[195],"properties":{"ID":1891,"ELEV":3000}},{"type":"LineString","arcs":[196],"properties":{"ID":1896,"ELEV":1500}},{"type":"LineString","arcs":[197],"properties":{"ID":1897,"ELEV":2500}},{"type":"LineString","arcs":[198],"properties":{"ID":1898,"ELEV":2500}},{"type":"LineString","arcs":[199],"properties":{"ID":1899,"ELEV":3000}},{"type":"LineString","arcs":[200],"properties":{"ID":1900,"ELEV":3500}},{"type":"LineString","arcs":[201],"properties":{"ID":1901,"ELEV":4000}},{"type":"MultiLineString","arcs":[[202],[203],[204],[205]],"properties":{"ID":1906,"ELEV":5500}},{"type":"MultiLineString","arcs":[[206],[207]],"properties":{"ID":1907,"ELEV":5500}},{"type":"LineString","arcs":[208],"properties":{"ID":1912,"ELEV":1000}},{"type":"LineString","arcs":[209],"properties":{"ID":1914,"ELEV":3000}},{"type":"LineString","arcs":[210],"properties":{"ID":1915,"ELEV":3500}},{"type":"LineString","arcs":[211],"properties":{"ID":1916,"ELEV":4000}},{"type":"LineString","arcs":[212],"properties":{"ID":1917,"ELEV":4500}},{"type":"LineString","arcs":[213],"properties":{"ID":1918,"ELEV":5000}},{"type":"LineString","arcs":[214],"properties":{"ID":1922,"ELEV":1500}},{"type":"LineString","arcs":[215],"properties":{"ID":1924,"ELEV":2000}},{"type":"LineString","arcs":[216],"properties":{"ID":1925,"ELEV":5000}},{"type":"LineString","arcs":[217],"properties":{"ID":1926,"ELEV":5000}},{"type":"LineString","arcs":[218],"properties":{"ID":1929,"ELEV":5500}},{"type":"MultiLineString","arcs":[[219],[220]],"properties":{"ID":1930,"ELEV":5500}},{"type":"LineString","arcs":[221],"properties":{"ID":1936,"ELEV":1500}},{"type":"LineString","arcs":[222],"properties":{"ID":1937,"ELEV":1500}},{"type":"LineString","arcs":[223],"properties":{"ID":1938,"ELEV":2000}},{"type":"LineString","arcs":[224],"properties":{"ID":1939,"ELEV":2500}},{"type":"LineString","arcs":[225],"properties":{"ID":1940,"ELEV":2500}},{"type":"LineString","arcs":[226],"properties":{"ID":1941,"ELEV":2500}},{"type":"LineString","arcs":[227],"properties":{"ID":1942,"ELEV":3500}},{"type":"LineString","arcs":[228],"properties":{"ID":1943,"ELEV":4500}},{"type":"LineString","arcs":[229],"properties":{"ID":1949,"ELEV":2500}},{"type":"LineString","arcs":[230],"properties":{"ID":1950,"ELEV":4500}},{"type":"LineString","arcs":[231],"properties":{"ID":1953,"ELEV":1500}},{"type":"LineString","arcs":[232],"properties":{"ID":1954,"ELEV":2000}},{"type":"LineString","arcs":[233],"properties":{"ID":1955,"ELEV":2000}},{"type":"LineString","arcs":[234],"properties":{"ID":1956,"ELEV":2500}},{"type":"LineString","arcs":[235],"properties":{"ID":1957,"ELEV":5000}},{"type":"LineString","arcs":[236],"properties":{"ID":1962,"ELEV":2500}},{"type":"LineString","arcs":[237],"properties":{"ID":1963,"ELEV":5000}},{"type":"LineString","arcs":[238],"properties":{"ID":1968,"ELEV":1500}},{"type":"LineString","arcs":[239],"properties":{"ID":1969,"ELEV":1500}},{"type":"LineString","arcs":[240],"properties":{"ID":1970,"ELEV":3500}},{"type":"LineString","arcs":[241],"properties":{"ID":1971,"ELEV":5000}},{"type":"LineString","arcs":[242],"properties":{"ID":1978,"ELEV":2500}},{"type":"LineString","arcs":[243],"properties":{"ID":1979,"ELEV":5000}},{"type":"LineString","arcs":[244],"properties":{"ID":1984,"ELEV":2000}},{"type":"LineString","arcs":[245],"properties":{"ID":1985,"ELEV":2500}},{"type":"LineString","arcs":[246],"properties":{"ID":1987,"ELEV":5000}},{"type":"LineString","arcs":[247],"properties":{"ID":1990,"ELEV":5500}},{"type":"LineString","arcs":[248],"properties":{"ID":1994,"ELEV":2000}},{"type":"LineString","arcs":[249],"properties":{"ID":1996,"ELEV":3000}},{"type":"LineString","arcs":[250],"properties":{"ID":1997,"ELEV":4000}},{"type":"LineString","arcs":[251],"properties":{"ID":2001,"ELEV":1000}},{"type":"LineString","arcs":[252],"properties":{"ID":2002,"ELEV":1500}},{"type":"LineString","arcs":[253],"properties":{"ID":2003,"ELEV":3500}},{"type":"LineString","arcs":[254],"properties":{"ID":2004,"ELEV":3500}},{"type":"LineString","arcs":[255],"properties":{"ID":2005,"ELEV":4000}},{"type":"LineString","arcs":[256],"properties":{"ID":2006,"ELEV":5000}},{"type":"LineString","arcs":[257],"properties":{"ID":2013,"ELEV":1500}},{"type":"LineString","arcs":[258],"properties":{"ID":2014,"ELEV":3000}},{"type":"LineString","arcs":[259],"properties":{"ID":2015,"ELEV":3500}},{"type":"LineString","arcs":[260],"properties":{"ID":2017,"ELEV":5000}},{"type":"LineString","arcs":[261],"properties":{"ID":2020,"ELEV":5500}},{"type":"LineString","arcs":[262],"properties":{"ID":2022,"ELEV":1000}},{"type":"LineString","arcs":[263],"properties":{"ID":2023,"ELEV":1500}},{"type":"LineString","arcs":[264],"properties":{"ID":2026,"ELEV":2000}},{"type":"LineString","arcs":[265],"properties":{"ID":2027,"ELEV":4000}},{"type":"LineString","arcs":[266],"properties":{"ID":2029,"ELEV":5000}},{"type":"LineString","arcs":[267],"properties":{"ID":2031,"ELEV":5500}},{"type":"LineString","arcs":[268],"properties":{"ID":2032,"ELEV":6000}},{"type":"LineString","arcs":[269],"properties":{"ID":2033,"ELEV":2000}},{"type":"LineString","arcs":[270],"properties":{"ID":2034,"ELEV":3000}},{"type":"LineString","arcs":[271],"properties":{"ID":2035,"ELEV":3000}},{"type":"LineString","arcs":[272],"properties":{"ID":2036,"ELEV":3500}},{"type":"LineString","arcs":[273],"properties":{"ID":2038,"ELEV":5000}},{"type":"LineString","arcs":[274],"properties":{"ID":2043,"ELEV":6000}},{"type":"LineString","arcs":[275],"properties":{"ID":2044,"ELEV":6500}},{"type":"LineString","arcs":[276],"properties":{"ID":2046,"ELEV":2000}},{"type":"LineString","arcs":[277],"properties":{"ID":2047,"ELEV":2000}},{"type":"LineString","arcs":[278],"properties":{"ID":2048,"ELEV":2500}},{"type":"LineString","arcs":[279],"properties":{"ID":2049,"ELEV":2500}},{"type":"LineString","arcs":[280],"properties":{"ID":2050,"ELEV":4000}},{"type":"LineString","arcs":[281],"properties":{"ID":2056,"ELEV":5500}},{"type":"LineString","arcs":[282],"properties":{"ID":2058,"ELEV":1500}},{"type":"LineString","arcs":[283],"properties":{"ID":2060,"ELEV":2500}},{"type":"LineString","arcs":[284],"properties":{"ID":2061,"ELEV":3000}},{"type":"LineString","arcs":[285],"properties":{"ID":2069,"ELEV":4000}},{"type":"LineString","arcs":[286],"properties":{"ID":2070,"ELEV":4000}},{"type":"LineString","arcs":[287],"properties":{"ID":2072,"ELEV":4500}},{"type":"LineString","arcs":[288],"properties":{"ID":2079,"ELEV":2500}},{"type":"LineString","arcs":[289],"properties":{"ID":2080,"ELEV":3500}},{"type":"LineString","arcs":[290],"properties":{"ID":2081,"ELEV":3500}},{"type":"LineString","arcs":[291],"properties":{"ID":2082,"ELEV":4500}},{"type":"LineString","arcs":[292],"properties":{"ID":2083,"ELEV":5000}},{"type":"LineString","arcs":[293],"properties":{"ID":2086,"ELEV":5500}},{"type":"LineString","arcs":[294],"properties":{"ID":2087,"ELEV":1000}},{"type":"LineString","arcs":[295],"properties":{"ID":2088,"ELEV":2500}},{"type":"LineString","arcs":[296],"properties":{"ID":2089,"ELEV":3500}},{"type":"LineString","arcs":[297],"properties":{"ID":2090,"ELEV":3500}},{"type":"LineString","arcs":[298],"properties":{"ID":2091,"ELEV":4500}},{"type":"LineString","arcs":[299],"properties":{"ID":2096,"ELEV":1000}},{"type":"LineString","arcs":[300],"properties":{"ID":2098,"ELEV":5000}},{"type":"LineString","arcs":[301],"properties":{"ID":2106,"ELEV":1000}},{"type":"LineString","arcs":[302],"properties":{"ID":2107,"ELEV":2500}},{"type":"LineString","arcs":[303],"properties":{"ID":2108,"ELEV":3000}},{"type":"LineString","arcs":[304],"properties":{"ID":2114,"ELEV":5500}},{"type":"LineString","arcs":[305,306],"properties":{"ID":2117,"ELEV":1500}},{"type":"LineString","arcs":[307],"properties":{"ID":2118,"ELEV":2500}},{"type":"LineString","arcs":[308],"properties":{"ID":2119,"ELEV":2500}},{"type":"LineString","arcs":[309],"properties":{"ID":2120,"ELEV":3000}},{"type":"LineString","arcs":[310],"properties":{"ID":2121,"ELEV":3000}},{"type":"LineString","arcs":[311],"properties":{"ID":2122,"ELEV":3500}},{"type":"LineString","arcs":[312],"properties":{"ID":2123,"ELEV":4000}},{"type":"LineString","arcs":[313],"properties":{"ID":2127,"ELEV":1000}},{"type":"LineString","arcs":[314,315],"properties":{"ID":2129,"ELEV":1500}},{"type":"LineString","arcs":[316],"properties":{"ID":2130,"ELEV":3000}},{"type":"LineString","arcs":[317],"properties":{"ID":2131,"ELEV":4000}},{"type":"LineString","arcs":[318],"properties":{"ID":2133,"ELEV":5000}},{"type":"LineString","arcs":[319],"properties":{"ID":2136,"ELEV":5500}},{"type":"LineString","arcs":[320],"properties":{"ID":2138,"ELEV":1500}},{"type":"LineString","arcs":[321],"properties":{"ID":2139,"ELEV":2500}},{"type":"LineString","arcs":[322],"properties":{"ID":2140,"ELEV":3000}},{"type":"LineString","arcs":[323],"properties":{"ID":2141,"ELEV":3500}},{"type":"LineString","arcs":[324],"properties":{"ID":2148,"ELEV":5500}},{"type":"LineString","arcs":[325],"properties":{"ID":2149,"ELEV":5500}},{"type":"LineString","arcs":[326],"properties":{"ID":2150,"ELEV":5500}},{"type":"MultiLineString","arcs":[[327],[328]],"properties":{"ID":2152,"ELEV":500}},{"type":"LineString","arcs":[329],"properties":{"ID":2158,"ELEV":4000}},{"type":"LineString","arcs":[330],"properties":{"ID":2159,"ELEV":4000}},{"type":"LineString","arcs":[331],"properties":{"ID":2168,"ELEV":5500}},{"type":"LineString","arcs":[332],"properties":{"ID":2169,"ELEV":5500}},{"type":"LineString","arcs":[333],"properties":{"ID":2171,"ELEV":2500}},{"type":"LineString","arcs":[334],"properties":{"ID":2172,"ELEV":3500}},{"type":"LineString","arcs":[335],"properties":{"ID":2176,"ELEV":5000}},{"type":"LineString","arcs":[336],"properties":{"ID":2177,"ELEV":5000}},{"type":"LineString","arcs":[337],"properties":{"ID":2178,"ELEV":5000}},{"type":"LineString","arcs":[338],"properties":{"ID":2179,"ELEV":5000}},{"type":"LineString","arcs":[339],"properties":{"ID":2180,"ELEV":5000}},{"type":"LineString","arcs":[340],"properties":{"ID":2182,"ELEV":3000}},{"type":"LineString","arcs":[341],"properties":{"ID":2188,"ELEV":5000}},{"type":"LineString","arcs":[342],"properties":{"ID":2189,"ELEV":5000}},{"type":"LineString","arcs":[343],"properties":{"ID":2190,"ELEV":5500}},{"type":"LineString","arcs":[344],"properties":{"ID":2192,"ELEV":1000}},{"type":"LineString","arcs":[345],"properties":{"ID":2193,"ELEV":2500}},{"type":"LineString","arcs":[346],"properties":{"ID":2194,"ELEV":3500}},{"type":"LineString","arcs":[347],"properties":{"ID":2196,"ELEV":4500}},{"type":"MultiLineString","arcs":[[348],[349]],"properties":{"ID":2201,"ELEV":5500}},{"type":"LineString","arcs":[350],"properties":{"ID":2202,"ELEV":3500}},{"type":"LineString","arcs":[351],"properties":{"ID":2203,"ELEV":4000}},{"type":"LineString","arcs":[352],"properties":{"ID":2204,"ELEV":4000}},{"type":"LineString","arcs":[353],"properties":{"ID":2207,"ELEV":5500}},{"type":"LineString","arcs":[354],"properties":{"ID":2208,"ELEV":6000}},{"type":"LineString","arcs":[355],"properties":{"ID":2209,"ELEV":1000}},{"type":"LineString","arcs":[356],"properties":{"ID":2210,"ELEV":2000}},{"type":"LineString","arcs":[357],"properties":{"ID":2211,"ELEV":2000}},{"type":"LineString","arcs":[358],"properties":{"ID":2212,"ELEV":4000}},{"type":"LineString","arcs":[359],"properties":{"ID":2216,"ELEV":5500}},{"type":"LineString","arcs":[360],"properties":{"ID":2217,"ELEV":5500}},{"type":"LineString","arcs":[361],"properties":{"ID":2218,"ELEV":6000}},{"type":"LineString","arcs":[362],"properties":{"ID":2219,"ELEV":1000}},{"type":"LineString","arcs":[363],"properties":{"ID":2221,"ELEV":5500}},{"type":"LineString","arcs":[364],"properties":{"ID":2222,"ELEV":5500}},{"type":"LineString","arcs":[365],"properties":{"ID":2225,"ELEV":1000}},{"type":"LineString","arcs":[366],"properties":{"ID":2226,"ELEV":1500}},{"type":"LineString","arcs":[367],"properties":{"ID":2227,"ELEV":2000}},{"type":"LineString","arcs":[368],"properties":{"ID":2228,"ELEV":2500}},{"type":"LineString","arcs":[369],"properties":{"ID":2230,"ELEV":4500}},{"type":"LineString","arcs":[370],"properties":{"ID":2231,"ELEV":5000}},{"type":"LineString","arcs":[371],"properties":{"ID":2233,"ELEV":5500}},{"type":"LineString","arcs":[372],"properties":{"ID":2234,"ELEV":5500}},{"type":"MultiLineString","arcs":[[373],[374],[375]],"properties":{"ID":2236,"ELEV":500}},{"type":"LineString","arcs":[376],"properties":{"ID":2237,"ELEV":1500}},{"type":"LineString","arcs":[377],"properties":{"ID":2238,"ELEV":2000}},{"type":"LineString","arcs":[378],"properties":{"ID":2239,"ELEV":3500}},{"type":"LineString","arcs":[379],"properties":{"ID":2241,"ELEV":4000}},{"type":"LineString","arcs":[380],"properties":{"ID":2243,"ELEV":4500}},{"type":"LineString","arcs":[381],"properties":{"ID":2244,"ELEV":4500}},{"type":"LineString","arcs":[382],"properties":{"ID":2245,"ELEV":4500}},{"type":"LineString","arcs":[383],"properties":{"ID":2248,"ELEV":5000}},{"type":"LineString","arcs":[384],"properties":{"ID":2252,"ELEV":5500}},{"type":"LineString","arcs":[385],"properties":{"ID":2254,"ELEV":1000}},{"type":"LineString","arcs":[386],"properties":{"ID":2255,"ELEV":1500}},{"type":"LineString","arcs":[387],"properties":{"ID":2256,"ELEV":2000}},{"type":"LineString","arcs":[388],"properties":{"ID":2257,"ELEV":4500}},{"type":"LineString","arcs":[389],"properties":{"ID":2262,"ELEV":1000}},{"type":"LineString","arcs":[390],"properties":{"ID":2263,"ELEV":2500}},{"type":"LineString","arcs":[391],"properties":{"ID":2264,"ELEV":4000}},{"type":"LineString","arcs":[392],"properties":{"ID":2268,"ELEV":5000}},{"type":"LineString","arcs":[393],"properties":{"ID":2269,"ELEV":5500}},{"type":"LineString","arcs":[394],"properties":{"ID":2273,"ELEV":1500}},{"type":"LineString","arcs":[395],"properties":{"ID":2274,"ELEV":3000}},{"type":"LineString","arcs":[396],"properties":{"ID":2275,"ELEV":4000}},{"type":"LineString","arcs":[397],"properties":{"ID":2279,"ELEV":1000}},{"type":"LineString","arcs":[398],"properties":{"ID":2280,"ELEV":2000}},{"type":"LineString","arcs":[399],"properties":{"ID":2281,"ELEV":3500}},{"type":"LineString","arcs":[400],"properties":{"ID":2282,"ELEV":4000}},{"type":"LineString","arcs":[401],"properties":{"ID":2283,"ELEV":4000}},{"type":"LineString","arcs":[402],"properties":{"ID":2284,"ELEV":5000}},{"type":"LineString","arcs":[403],"properties":{"ID":2287,"ELEV":6000}},{"type":"LineString","arcs":[404],"properties":{"ID":2288,"ELEV":2000}},{"type":"LineString","arcs":[405],"properties":{"ID":2289,"ELEV":4000}},{"type":"LineString","arcs":[406],"properties":{"ID":2291,"ELEV":5500}},{"type":"LineString","arcs":[407],"properties":{"ID":2297,"ELEV":2000}},{"type":"LineString","arcs":[408],"properties":{"ID":2298,"ELEV":2000}},{"type":"LineString","arcs":[409],"properties":{"ID":2299,"ELEV":4000}},{"type":"LineString","arcs":[410],"properties":{"ID":2300,"ELEV":4500}},{"type":"LineString","arcs":[411],"properties":{"ID":2303,"ELEV":5000}},{"type":"LineString","arcs":[412],"properties":{"ID":2307,"ELEV":5500}},{"type":"LineString","arcs":[413],"properties":{"ID":2308,"ELEV":500}},{"type":"LineString","arcs":[414],"properties":{"ID":2309,"ELEV":1500}},{"type":"LineString","arcs":[415],"properties":{"ID":2310,"ELEV":1500}},{"type":"LineString","arcs":[416],"properties":{"ID":2311,"ELEV":2000}},{"type":"LineString","arcs":[417],"properties":{"ID":2312,"ELEV":3500}},{"type":"LineString","arcs":[418],"properties":{"ID":2313,"ELEV":4000}},{"type":"LineString","arcs":[419],"properties":{"ID":2314,"ELEV":5000}},{"type":"LineString","arcs":[420],"properties":{"ID":2315,"ELEV":5000}},{"type":"LineString","arcs":[421],"properties":{"ID":2319,"ELEV":5500}},{"type":"LineString","arcs":[422],"properties":{"ID":2323,"ELEV":500}},{"type":"LineString","arcs":[423],"properties":{"ID":2324,"ELEV":1000}},{"type":"LineString","arcs":[424],"properties":{"ID":2325,"ELEV":3500}},{"type":"LineString","arcs":[425],"properties":{"ID":2326,"ELEV":4000}},{"type":"LineString","arcs":[426],"properties":{"ID":2327,"ELEV":4000}},{"type":"LineString","arcs":[427],"properties":{"ID":2328,"ELEV":4000}},{"type":"LineString","arcs":[428],"properties":{"ID":2333,"ELEV":500}},{"type":"LineString","arcs":[429],"properties":{"ID":2334,"ELEV":500}},{"type":"LineString","arcs":[430],"properties":{"ID":2335,"ELEV":1500}},{"type":"LineString","arcs":[431],"properties":{"ID":2336,"ELEV":2500}},{"type":"LineString","arcs":[432],"properties":{"ID":2337,"ELEV":4500}},{"type":"LineString","arcs":[433],"properties":{"ID":2340,"ELEV":5500}},{"type":"LineString","arcs":[434],"properties":{"ID":2341,"ELEV":2000}},{"type":"LineString","arcs":[435],"properties":{"ID":2342,"ELEV":4000}},{"type":"LineString","arcs":[436],"properties":{"ID":2343,"ELEV":4000}},{"type":"MultiLineString","arcs":[[437],[438],[439],[440]],"properties":{"ID":2345,"ELEV":5500}},{"type":"LineString","arcs":[441],"properties":{"ID":2350,"ELEV":1000}},{"type":"LineString","arcs":[442],"properties":{"ID":2351,"ELEV":1500}},{"type":"LineString","arcs":[443],"properties":{"ID":2352,"ELEV":1500}},{"type":"LineString","arcs":[444],"properties":{"ID":2355,"ELEV":5500}},{"type":"LineString","arcs":[445],"properties":{"ID":2362,"ELEV":1000}},{"type":"LineString","arcs":[446],"properties":{"ID":2363,"ELEV":1500}},{"type":"LineString","arcs":[447],"properties":{"ID":2364,"ELEV":1500}},{"type":"LineString","arcs":[448],"properties":{"ID":2365,"ELEV":3000}},{"type":"LineString","arcs":[449],"properties":{"ID":2366,"ELEV":3500}},{"type":"LineString","arcs":[450],"properties":{"ID":2374,"ELEV":6000}},{"type":"LineString","arcs":[451],"properties":{"ID":2376,"ELEV":1500}},{"type":"LineString","arcs":[452],"properties":{"ID":2377,"ELEV":1500}},{"type":"LineString","arcs":[453],"properties":{"ID":2378,"ELEV":1500}},{"type":"LineString","arcs":[454],"properties":{"ID":2379,"ELEV":2500}},{"type":"LineString","arcs":[455],"properties":{"ID":2383,"ELEV":5000}},{"type":"MultiLineString","arcs":[[456],[457]],"properties":{"ID":2384,"ELEV":6000}},{"type":"LineString","arcs":[458],"properties":{"ID":2385,"ELEV":500}},{"type":"LineString","arcs":[459],"properties":{"ID":2386,"ELEV":1500}},{"type":"LineString","arcs":[460],"properties":{"ID":2387,"ELEV":1500}},{"type":"LineString","arcs":[461],"properties":{"ID":2389,"ELEV":5000}},{"type":"LineString","arcs":[462],"properties":{"ID":2393,"ELEV":5500}},{"type":"LineString","arcs":[463],"properties":{"ID":2396,"ELEV":2500}},{"type":"LineString","arcs":[464],"properties":{"ID":2397,"ELEV":2500}},{"type":"LineString","arcs":[465],"properties":{"ID":2398,"ELEV":3000}},{"type":"LineString","arcs":[466],"properties":{"ID":2399,"ELEV":4000}},{"type":"LineString","arcs":[467],"properties":{"ID":2400,"ELEV":5000}},{"type":"LineString","arcs":[468],"properties":{"ID":2401,"ELEV":6000}},{"type":"LineString","arcs":[469],"properties":{"ID":2402,"ELEV":1000}},{"type":"LineString","arcs":[470],"properties":{"ID":2403,"ELEV":2000}},{"type":"LineString","arcs":[471],"properties":{"ID":2404,"ELEV":2500}},{"type":"LineString","arcs":[472],"properties":{"ID":2405,"ELEV":4500}},{"type":"LineString","arcs":[473],"properties":{"ID":2409,"ELEV":1000}},{"type":"LineString","arcs":[474],"properties":{"ID":2410,"ELEV":1500}},{"type":"LineString","arcs":[475],"properties":{"ID":2411,"ELEV":1500}},{"type":"LineString","arcs":[476],"properties":{"ID":2412,"ELEV":3000}},{"type":"LineString","arcs":[477],"properties":{"ID":2413,"ELEV":4000}},{"type":"LineString","arcs":[478],"properties":{"ID":2414,"ELEV":4500}},{"type":"LineString","arcs":[479],"properties":{"ID":2417,"ELEV":5500}},{"type":"LineString","arcs":[480],"properties":{"ID":2420,"ELEV":1000}},{"type":"LineString","arcs":[481],"properties":{"ID":2421,"ELEV":2500}},{"type":"LineString","arcs":[482],"properties":{"ID":2422,"ELEV":4500}},{"type":"LineString","arcs":[483],"properties":{"ID":2424,"ELEV":5500}},{"type":"LineString","arcs":[484],"properties":{"ID":2428,"ELEV":1000}},{"type":"LineString","arcs":[485],"properties":{"ID":2429,"ELEV":3000}},{"type":"LineString","arcs":[486],"properties":{"ID":2430,"ELEV":4500}},{"type":"LineString","arcs":[487],"properties":{"ID":2433,"ELEV":5500}},{"type":"LineString","arcs":[488],"properties":{"ID":2434,"ELEV":5500}},{"type":"LineString","arcs":[489],"properties":{"ID":2438,"ELEV":1000}},{"type":"LineString","arcs":[490],"properties":{"ID":2439,"ELEV":3500}},{"type":"LineString","arcs":[491],"properties":{"ID":2440,"ELEV":6000}},{"type":"LineString","arcs":[492],"properties":{"ID":2441,"ELEV":6000}},{"type":"LineString","arcs":[493],"properties":{"ID":2442,"ELEV":6000}},{"type":"LineString","arcs":[494],"properties":{"ID":2444,"ELEV":6500}},{"type":"LineString","arcs":[495],"properties":{"ID":2445,"ELEV":7000}},{"type":"LineString","arcs":[496],"properties":{"ID":2446,"ELEV":500}},{"type":"LineString","arcs":[497],"properties":{"ID":2447,"ELEV":1000}},{"type":"LineString","arcs":[498],"properties":{"ID":2448,"ELEV":1500}},{"type":"LineString","arcs":[499],"properties":{"ID":2449,"ELEV":2000}},{"type":"LineString","arcs":[500],"properties":{"ID":2450,"ELEV":3000}},{"type":"LineString","arcs":[501],"properties":{"ID":2453,"ELEV":6000}},{"type":"LineString","arcs":[502],"properties":{"ID":2454,"ELEV":6500}},{"type":"LineString","arcs":[503],"properties":{"ID":2455,"ELEV":6500}},{"type":"LineString","arcs":[504],"properties":{"ID":2456,"ELEV":7000}},{"type":"LineString","arcs":[505],"properties":{"ID":2457,"ELEV":1000}},{"type":"LineString","arcs":[506],"properties":{"ID":2458,"ELEV":2500}},{"type":"LineString","arcs":[507],"properties":{"ID":2459,"ELEV":2500}},{"type":"LineString","arcs":[508],"properties":{"ID":2460,"ELEV":4000}},{"type":"LineString","arcs":[509],"properties":{"ID":2464,"ELEV":5500}},{"type":"LineString","arcs":[510],"properties":{"ID":2465,"ELEV":5500}},{"type":"LineString","arcs":[511],"properties":{"ID":2466,"ELEV":6000}},{"type":"MultiLineString","arcs":[[512],[513],[514]],"properties":{"ID":2467,"ELEV":6000}},{"type":"LineString","arcs":[515],"properties":{"ID":2468,"ELEV":6500}},{"type":"LineString","arcs":[516],"properties":{"ID":2469,"ELEV":4000}},{"type":"LineString","arcs":[517],"properties":{"ID":2475,"ELEV":5500}},{"type":"LineString","arcs":[518],"properties":{"ID":2476,"ELEV":6000}},{"type":"LineString","arcs":[519],"properties":{"ID":2477,"ELEV":1000}},{"type":"LineString","arcs":[520],"properties":{"ID":2478,"ELEV":1500}},{"type":"LineString","arcs":[521],"properties":{"ID":2479,"ELEV":2000}},{"type":"LineString","arcs":[522],"properties":{"ID":2480,"ELEV":2000}},{"type":"LineString","arcs":[523],"properties":{"ID":2483,"ELEV":5000}},{"type":"LineString","arcs":[524],"properties":{"ID":2485,"ELEV":6000}},{"type":"LineString","arcs":[525],"properties":{"ID":2486,"ELEV":6000}},{"type":"LineString","arcs":[526],"properties":{"ID":2487,"ELEV":6500}},{"type":"LineString","arcs":[527],"properties":{"ID":2488,"ELEV":6500}},{"type":"LineString","arcs":[528],"properties":{"ID":2489,"ELEV":7000}},{"type":"LineString","arcs":[529],"properties":{"ID":2490,"ELEV":1000}},{"type":"LineString","arcs":[530],"properties":{"ID":2491,"ELEV":1000}},{"type":"LineString","arcs":[531],"properties":{"ID":2492,"ELEV":2000}},{"type":"LineString","arcs":[532],"properties":{"ID":2493,"ELEV":2000}},{"type":"LineString","arcs":[533],"properties":{"ID":2494,"ELEV":2000}},{"type":"LineString","arcs":[534],"properties":{"ID":2497,"ELEV":5000}},{"type":"LineString","arcs":[535],"properties":{"ID":2499,"ELEV":5500}},{"type":"MultiLineString","arcs":[[536],[537]],"properties":{"ID":2502,"ELEV":5500}},{"type":"MultiLineString","arcs":[[538],[539]],"properties":{"ID":2503,"ELEV":5500}},{"type":"LineString","arcs":[540],"properties":{"ID":2505,"ELEV":6000}},{"type":"LineString","arcs":[541],"properties":{"ID":2506,"ELEV":6500}},{"type":"LineString","arcs":[542],"properties":{"ID":2507,"ELEV":1000}},{"type":"LineString","arcs":[543],"properties":{"ID":2508,"ELEV":2000}},{"type":"LineString","arcs":[544],"properties":{"ID":2509,"ELEV":3500}},{"type":"MultiLineString","arcs":[[545],[546]],"properties":{"ID":2510,"ELEV":5000}},{"type":"MultiLineString","arcs":[[547],[548],[549]],"properties":{"ID":2511,"ELEV":5500}},{"type":"LineString","arcs":[550],"properties":{"ID":2512,"ELEV":5500}},{"type":"LineString","arcs":[551],"properties":{"ID":2513,"ELEV":5500}},{"type":"LineString","arcs":[552],"properties":{"ID":2514,"ELEV":6000}},{"type":"LineString","arcs":[553],"properties":{"ID":2516,"ELEV":6000}},{"type":"LineString","arcs":[554],"properties":{"ID":2517,"ELEV":1000}},{"type":"LineString","arcs":[555],"properties":{"ID":2518,"ELEV":1000}},{"type":"LineString","arcs":[556],"properties":{"ID":2519,"ELEV":1500}},{"type":"LineString","arcs":[557],"properties":{"ID":2520,"ELEV":5000}},{"type":"LineString","arcs":[558],"properties":{"ID":2522,"ELEV":1000}},{"type":"LineString","arcs":[559],"properties":{"ID":2523,"ELEV":1500}},{"type":"LineString","arcs":[560],"properties":{"ID":2524,"ELEV":2000}},{"type":"LineString","arcs":[561],"properties":{"ID":2525,"ELEV":3500}},{"type":"LineString","arcs":[562],"properties":{"ID":2526,"ELEV":4000}},{"type":"LineString","arcs":[563],"properties":{"ID":2528,"ELEV":5000}},{"type":"LineString","arcs":[564],"properties":{"ID":2529,"ELEV":5500}},{"type":"LineString","arcs":[565],"properties":{"ID":2530,"ELEV":6000}},{"type":"LineString","arcs":[566],"properties":{"ID":2531,"ELEV":6000}},{"type":"LineString","arcs":[567],"properties":{"ID":2532,"ELEV":500}},{"type":"LineString","arcs":[568],"properties":{"ID":2533,"ELEV":3500}},{"type":"LineString","arcs":[569],"properties":{"ID":2535,"ELEV":4500}},{"type":"LineString","arcs":[570],"properties":{"ID":2536,"ELEV":5000}},{"type":"MultiLineString","arcs":[[571],[572]],"properties":{"ID":2539,"ELEV":5500}},{"type":"LineString","arcs":[573],"properties":{"ID":2540,"ELEV":5500}},{"type":"MultiLineString","arcs":[[574],[575]],"properties":{"ID":2541,"ELEV":5500}},{"type":"LineString","arcs":[576],"properties":{"ID":2543,"ELEV":6500}},{"type":"LineString","arcs":[577],"properties":{"ID":2544,"ELEV":4000}},{"type":"LineString","arcs":[578],"properties":{"ID":2546,"ELEV":6500}},{"type":"LineString","arcs":[579],"properties":{"ID":2547,"ELEV":2000}},{"type":"LineString","arcs":[580],"properties":{"ID":2548,"ELEV":3000}},{"type":"LineString","arcs":[581],"properties":{"ID":2549,"ELEV":3000}},{"type":"LineString","arcs":[582],"properties":{"ID":2551,"ELEV":5000}},{"type":"LineString","arcs":[583],"properties":{"ID":2552,"ELEV":5000}},{"type":"LineString","arcs":[584],"properties":{"ID":2554,"ELEV":6000}},{"type":"LineString","arcs":[585],"properties":{"ID":2555,"ELEV":1500}},{"type":"LineString","arcs":[586],"properties":{"ID":2556,"ELEV":1500}},{"type":"LineString","arcs":[587],"properties":{"ID":2557,"ELEV":2500}},{"type":"LineString","arcs":[588],"properties":{"ID":2559,"ELEV":4500}},{"type":"LineString","arcs":[589],"properties":{"ID":2565,"ELEV":5500}},{"type":"LineString","arcs":[590],"properties":{"ID":2566,"ELEV":5500}},{"type":"LineString","arcs":[591],"properties":{"ID":2569,"ELEV":6000}},{"type":"LineString","arcs":[592],"properties":{"ID":2571,"ELEV":6000}},{"type":"LineString","arcs":[593],"properties":{"ID":2572,"ELEV":6000}},{"type":"LineString","arcs":[594],"properties":{"ID":2573,"ELEV":6500}},{"type":"LineString","arcs":[595],"properties":{"ID":2575,"ELEV":7000}},{"type":"LineString","arcs":[596],"properties":{"ID":2576,"ELEV":3000}},{"type":"LineString","arcs":[597],"properties":{"ID":2577,"ELEV":3500}},{"type":"LineString","arcs":[598],"properties":{"ID":2578,"ELEV":3500}},{"type":"LineString","arcs":[599],"properties":{"ID":2579,"ELEV":3500}},{"type":"LineString","arcs":[600],"properties":{"ID":2580,"ELEV":4000}},{"type":"LineString","arcs":[601],"properties":{"ID":2582,"ELEV":5500}},{"type":"LineString","arcs":[602],"properties":{"ID":2583,"ELEV":5500}},{"type":"LineString","arcs":[603],"properties":{"ID":2585,"ELEV":7000}},{"type":"LineString","arcs":[604],"properties":{"ID":2586,"ELEV":2500}},{"type":"LineString","arcs":[605],"properties":{"ID":2587,"ELEV":3500}},{"type":"LineString","arcs":[606],"properties":{"ID":2591,"ELEV":6500}},{"type":"LineString","arcs":[607],"properties":{"ID":2592,"ELEV":2000}},{"type":"LineString","arcs":[608],"properties":{"ID":2593,"ELEV":2500}},{"type":"LineString","arcs":[609],"properties":{"ID":2594,"ELEV":3000}},{"type":"LineString","arcs":[610],"properties":{"ID":2595,"ELEV":3500}},{"type":"LineString","arcs":[611],"properties":{"ID":2596,"ELEV":3500}},{"type":"LineString","arcs":[612],"properties":{"ID":2600,"ELEV":5000}},{"type":"LineString","arcs":[613],"properties":{"ID":2605,"ELEV":5500}},{"type":"LineString","arcs":[614],"properties":{"ID":2606,"ELEV":5500}},{"type":"LineString","arcs":[615],"properties":{"ID":2610,"ELEV":7000}},{"type":"LineString","arcs":[616],"properties":{"ID":2611,"ELEV":1500}},{"type":"LineString","arcs":[617],"properties":{"ID":2612,"ELEV":2000}},{"type":"LineString","arcs":[618],"properties":{"ID":2613,"ELEV":3000}},{"type":"LineString","arcs":[619],"properties":{"ID":2614,"ELEV":3500}},{"type":"LineString","arcs":[620],"properties":{"ID":2615,"ELEV":3500}},{"type":"LineString","arcs":[621],"properties":{"ID":2616,"ELEV":5000}},{"type":"LineString","arcs":[622],"properties":{"ID":2617,"ELEV":5500}},{"type":"LineString","arcs":[623],"properties":{"ID":2619,"ELEV":6000}},{"type":"LineString","arcs":[624],"properties":{"ID":2620,"ELEV":6000}},{"type":"LineString","arcs":[625],"properties":{"ID":2621,"ELEV":6500}},{"type":"LineString","arcs":[626],"properties":{"ID":2622,"ELEV":500}},{"type":"LineString","arcs":[627],"properties":{"ID":2623,"ELEV":1500}},{"type":"LineString","arcs":[628],"properties":{"ID":2624,"ELEV":2500}},{"type":"LineString","arcs":[629],"properties":{"ID":2625,"ELEV":3000}},{"type":"LineString","arcs":[630],"properties":{"ID":2626,"ELEV":3500}},{"type":"LineString","arcs":[631],"properties":{"ID":2629,"ELEV":6000}},{"type":"LineString","arcs":[632],"properties":{"ID":2630,"ELEV":500}},{"type":"LineString","arcs":[633],"properties":{"ID":2631,"ELEV":1500}},{"type":"LineString","arcs":[634],"properties":{"ID":2632,"ELEV":1500}},{"type":"LineString","arcs":[635],"properties":{"ID":2633,"ELEV":2500}},{"type":"LineString","arcs":[636],"properties":{"ID":2635,"ELEV":5500}},{"type":"LineString","arcs":[637],"properties":{"ID":2640,"ELEV":7000}},{"type":"LineString","arcs":[638],"properties":{"ID":2641,"ELEV":1000}},{"type":"LineString","arcs":[639],"properties":{"ID":2642,"ELEV":2000}},{"type":"LineString","arcs":[640],"properties":{"ID":2643,"ELEV":2000}},{"type":"LineString","arcs":[641],"properties":{"ID":2644,"ELEV":2500}},{"type":"LineString","arcs":[642],"properties":{"ID":2645,"ELEV":3000}},{"type":"LineString","arcs":[643],"properties":{"ID":2646,"ELEV":3000}},{"type":"LineString","arcs":[644],"properties":{"ID":2647,"ELEV":3500}},{"type":"LineString","arcs":[645],"properties":{"ID":2648,"ELEV":4000}},{"type":"LineString","arcs":[646],"properties":{"ID":2650,"ELEV":6000}},{"type":"LineString","arcs":[647],"properties":{"ID":2651,"ELEV":6500}},{"type":"LineString","arcs":[648],"properties":{"ID":2653,"ELEV":5500}},{"type":"LineString","arcs":[649],"properties":{"ID":2655,"ELEV":1000}},{"type":"LineString","arcs":[650],"properties":{"ID":2656,"ELEV":2500}},{"type":"LineString","arcs":[651],"properties":{"ID":2657,"ELEV":3000}},{"type":"LineString","arcs":[652],"properties":{"ID":2660,"ELEV":5000}},{"type":"LineString","arcs":[653],"properties":{"ID":2663,"ELEV":6000}},{"type":"LineString","arcs":[654],"properties":{"ID":2665,"ELEV":2000}},{"type":"LineString","arcs":[655],"properties":{"ID":2668,"ELEV":5000}},{"type":"LineString","arcs":[656],"properties":{"ID":2670,"ELEV":5500}},{"type":"LineString","arcs":[657],"properties":{"ID":2673,"ELEV":1500}},{"type":"LineString","arcs":[658],"properties":{"ID":2674,"ELEV":1500}},{"type":"LineString","arcs":[659],"properties":{"ID":2675,"ELEV":1500}},{"type":"LineString","arcs":[660],"properties":{"ID":2676,"ELEV":1500}},{"type":"LineString","arcs":[661],"properties":{"ID":2677,"ELEV":2000}},{"type":"LineString","arcs":[662],"properties":{"ID":2678,"ELEV":2500}},{"type":"LineString","arcs":[663],"properties":{"ID":2679,"ELEV":4000}},{"type":"LineString","arcs":[664],"properties":{"ID":2680,"ELEV":4500}},{"type":"LineString","arcs":[665],"properties":{"ID":2684,"ELEV":6000}},{"type":"LineString","arcs":[666],"properties":{"ID":2687,"ELEV":1000}},{"type":"LineString","arcs":[667],"properties":{"ID":2688,"ELEV":1000}},{"type":"LineString","arcs":[668],"properties":{"ID":2689,"ELEV":1500}},{"type":"LineString","arcs":[669],"properties":{"ID":2690,"ELEV":1500}},{"type":"LineString","arcs":[670],"properties":{"ID":2691,"ELEV":1500}},{"type":"LineString","arcs":[671],"properties":{"ID":2692,"ELEV":2000}},{"type":"LineString","arcs":[672],"properties":{"ID":2693,"ELEV":2000}},{"type":"LineString","arcs":[673],"properties":{"ID":2694,"ELEV":3000}},{"type":"LineString","arcs":[674],"properties":{"ID":2695,"ELEV":3000}},{"type":"LineString","arcs":[675],"properties":{"ID":2697,"ELEV":6000}},{"type":"LineString","arcs":[676],"properties":{"ID":2698,"ELEV":2000}},{"type":"LineString","arcs":[677],"properties":{"ID":2699,"ELEV":2500}},{"type":"LineString","arcs":[678],"properties":{"ID":2700,"ELEV":2500}},{"type":"LineString","arcs":[679],"properties":{"ID":2701,"ELEV":4000}},{"type":"MultiLineString","arcs":[[680],[681],[682]],"properties":{"ID":2705,"ELEV":5500}},{"type":"LineString","arcs":[683],"properties":{"ID":2712,"ELEV":1000}},{"type":"LineString","arcs":[684],"properties":{"ID":2713,"ELEV":1500}},{"type":"LineString","arcs":[685],"properties":{"ID":2714,"ELEV":2500}},{"type":"LineString","arcs":[686],"properties":{"ID":2715,"ELEV":2500}},{"type":"LineString","arcs":[687],"properties":{"ID":2716,"ELEV":2500}},{"type":"MultiLineString","arcs":[[688],[689]],"properties":{"ID":2717,"ELEV":2500}},{"type":"LineString","arcs":[690],"properties":{"ID":2718,"ELEV":3000}},{"type":"LineString","arcs":[691],"properties":{"ID":2726,"ELEV":1000}},{"type":"LineString","arcs":[692],"properties":{"ID":2727,"ELEV":1500}},{"type":"LineString","arcs":[693],"properties":{"ID":2729,"ELEV":4500}},{"type":"LineString","arcs":[694],"properties":{"ID":2734,"ELEV":1000}},{"type":"LineString","arcs":[695],"properties":{"ID":2735,"ELEV":1000}},{"type":"LineString","arcs":[696],"properties":{"ID":2736,"ELEV":1500}},{"type":"LineString","arcs":[697],"properties":{"ID":2737,"ELEV":1500}},{"type":"LineString","arcs":[698],"properties":{"ID":2738,"ELEV":1500}},{"type":"LineString","arcs":[699],"properties":{"ID":2742,"ELEV":500}},{"type":"LineString","arcs":[700],"properties":{"ID":2743,"ELEV":1000}},{"type":"LineString","arcs":[701],"properties":{"ID":2744,"ELEV":2000}},{"type":"LineString","arcs":[702],"properties":{"ID":2745,"ELEV":2000}},{"type":"LineString","arcs":[703],"properties":{"ID":2746,"ELEV":4000}},{"type":"MultiLineString","arcs":[[704],[705]],"properties":{"ID":2749,"ELEV":5000}},{"type":"LineString","arcs":[706,707],"properties":{"ID":2750,"ELEV":5500}},{"type":"MultiLineString","arcs":[[708],[709]],"properties":{"ID":2751,"ELEV":5500}},{"type":"LineString","arcs":[710,711],"properties":{"ID":2752,"ELEV":5500}},{"type":"LineString","arcs":[712],"properties":{"ID":2754,"ELEV":6000}},{"type":"LineString","arcs":[713],"properties":{"ID":2755,"ELEV":1000}},{"type":"LineString","arcs":[714],"properties":{"ID":2756,"ELEV":1000}},{"type":"LineString","arcs":[715],"properties":{"ID":2757,"ELEV":1500}},{"type":"LineString","arcs":[716],"properties":{"ID":2758,"ELEV":1500}},{"type":"LineString","arcs":[717],"properties":{"ID":2759,"ELEV":1500}},{"type":"LineString","arcs":[718],"properties":{"ID":2760,"ELEV":2000}},{"type":"LineString","arcs":[719],"properties":{"ID":2761,"ELEV":2000}},{"type":"LineString","arcs":[720],"properties":{"ID":2762,"ELEV":4000}},{"type":"LineString","arcs":[721],"properties":{"ID":2767,"ELEV":4500}},{"type":"LineString","arcs":[722],"properties":{"ID":2773,"ELEV":1000}},{"type":"LineString","arcs":[723],"properties":{"ID":2774,"ELEV":1500}},{"type":"LineString","arcs":[724],"properties":{"ID":2775,"ELEV":1500}},{"type":"LineString","arcs":[725],"properties":{"ID":2776,"ELEV":2000}},{"type":"LineString","arcs":[726],"properties":{"ID":2777,"ELEV":4000}},{"type":"LineString","arcs":[727],"properties":{"ID":2784,"ELEV":1000}},{"type":"LineString","arcs":[728],"properties":{"ID":2785,"ELEV":1500}},{"type":"LineString","arcs":[729],"properties":{"ID":2786,"ELEV":2000}},{"type":"LineString","arcs":[730],"properties":{"ID":2789,"ELEV":6000}},{"type":"LineString","arcs":[731],"properties":{"ID":2791,"ELEV":1000}},{"type":"LineString","arcs":[732],"properties":{"ID":2792,"ELEV":1500}},{"type":"LineString","arcs":[733],"properties":{"ID":2793,"ELEV":1500}},{"type":"LineString","arcs":[734],"properties":{"ID":2794,"ELEV":3000}},{"type":"LineString","arcs":[735],"properties":{"ID":2797,"ELEV":5500}},{"type":"LineString","arcs":[736],"properties":{"ID":2800,"ELEV":1000}},{"type":"LineString","arcs":[737],"properties":{"ID":2801,"ELEV":1000}},{"type":"LineString","arcs":[738],"properties":{"ID":2802,"ELEV":1000}},{"type":"LineString","arcs":[739],"properties":{"ID":2803,"ELEV":1500}},{"type":"LineString","arcs":[740],"properties":{"ID":2804,"ELEV":1500}},{"type":"LineString","arcs":[741],"properties":{"ID":2805,"ELEV":1500}},{"type":"LineString","arcs":[742],"properties":{"ID":2806,"ELEV":1500}},{"type":"LineString","arcs":[743],"properties":{"ID":2807,"ELEV":2000}},{"type":"MultiLineString","arcs":[[744],[745]],"properties":{"ID":2809,"ELEV":5500}},{"type":"LineString","arcs":[746],"properties":{"ID":2810,"ELEV":5500}},{"type":"LineString","arcs":[747],"properties":{"ID":2813,"ELEV":1000}},{"type":"LineString","arcs":[748],"properties":{"ID":2814,"ELEV":1000}},{"type":"LineString","arcs":[749],"properties":{"ID":2815,"ELEV":1000}},{"type":"MultiLineString","arcs":[[750],[751]],"properties":{"ID":2817,"ELEV":5500}},{"type":"MultiLineString","arcs":[[752],[753]],"properties":{"ID":2819,"ELEV":6000}},{"type":"LineString","arcs":[754],"properties":{"ID":2820,"ELEV":2000}},{"type":"LineString","arcs":[755],"properties":{"ID":2823,"ELEV":500}},{"type":"LineString","arcs":[756],"properties":{"ID":2824,"ELEV":1000}},{"type":"LineString","arcs":[757],"properties":{"ID":2825,"ELEV":1000}},{"type":"LineString","arcs":[758],"properties":{"ID":2826,"ELEV":1500}},{"type":"LineString","arcs":[759],"properties":{"ID":2827,"ELEV":5000}},{"type":"MultiLineString","arcs":[[760],[761]],"properties":{"ID":2829,"ELEV":7000}},{"type":"LineString","arcs":[762],"properties":{"ID":2830,"ELEV":1000}},{"type":"LineString","arcs":[763],"properties":{"ID":2831,"ELEV":1000}},{"type":"LineString","arcs":[764],"properties":{"ID":2832,"ELEV":1500}},{"type":"LineString","arcs":[765],"properties":{"ID":2833,"ELEV":2000}},{"type":"LineString","arcs":[766],"properties":{"ID":2835,"ELEV":4500}},{"type":"LineString","arcs":[767],"properties":{"ID":2836,"ELEV":5500}},{"type":"LineString","arcs":[768],"properties":{"ID":2838,"ELEV":1000}},{"type":"LineString","arcs":[769],"properties":{"ID":2839,"ELEV":1000}},{"type":"LineString","arcs":[770],"properties":{"ID":2840,"ELEV":1000}},{"type":"LineString","arcs":[771],"properties":{"ID":2841,"ELEV":1000}},{"type":"LineString","arcs":[772],"properties":{"ID":2842,"ELEV":1500}},{"type":"LineString","arcs":[773],"properties":{"ID":2843,"ELEV":1500}},{"type":"LineString","arcs":[774],"properties":{"ID":2844,"ELEV":2000}},{"type":"LineString","arcs":[775],"properties":{"ID":2847,"ELEV":4500}},{"type":"MultiLineString","arcs":[[776],[777]],"properties":{"ID":2852,"ELEV":6500}},{"type":"LineString","arcs":[778],"properties":{"ID":2853,"ELEV":1500}},{"type":"LineString","arcs":[779],"properties":{"ID":2854,"ELEV":3000}},{"type":"MultiLineString","arcs":[[780],[781]],"properties":{"ID":2855,"ELEV":5000}},{"type":"LineString","arcs":[782],"properties":{"ID":2858,"ELEV":1000}},{"type":"LineString","arcs":[783],"properties":{"ID":2859,"ELEV":1500}},{"type":"LineString","arcs":[784],"properties":{"ID":2860,"ELEV":2000}},{"type":"LineString","arcs":[785],"properties":{"ID":2861,"ELEV":2500}},{"type":"LineString","arcs":[786],"properties":{"ID":2866,"ELEV":500}},{"type":"LineString","arcs":[787],"properties":{"ID":2867,"ELEV":500}},{"type":"LineString","arcs":[788],"properties":{"ID":2868,"ELEV":500}},{"type":"LineString","arcs":[789],"properties":{"ID":2869,"ELEV":500}},{"type":"LineString","arcs":[790],"properties":{"ID":2870,"ELEV":500}},{"type":"LineString","arcs":[791],"properties":{"ID":2871,"ELEV":1000}},{"type":"LineString","arcs":[792],"properties":{"ID":2872,"ELEV":1500}},{"type":"LineString","arcs":[793],"properties":{"ID":2873,"ELEV":3500}},{"type":"LineString","arcs":[794],"properties":{"ID":2874,"ELEV":5000}},{"type":"MultiLineString","arcs":[[795],[796],[797],[798]],"properties":{"ID":2875,"ELEV":6000}},{"type":"MultiLineString","arcs":[[799],[800]],"properties":{"ID":2876,"ELEV":6000}},{"type":"LineString","arcs":[801],"properties":{"ID":2877,"ELEV":500}},{"type":"LineString","arcs":[802],"properties":{"ID":2878,"ELEV":1000}},{"type":"LineString","arcs":[803],"properties":{"ID":2879,"ELEV":1000}},{"type":"LineString","arcs":[804],"properties":{"ID":2880,"ELEV":1500}},{"type":"LineString","arcs":[805],"properties":{"ID":2881,"ELEV":2000}},{"type":"LineString","arcs":[806],"properties":{"ID":2884,"ELEV":500}},{"type":"LineString","arcs":[807],"properties":{"ID":2885,"ELEV":500}},{"type":"LineString","arcs":[808],"properties":{"ID":2886,"ELEV":1000}},{"type":"LineString","arcs":[809],"properties":{"ID":2887,"ELEV":5500}},{"type":"LineString","arcs":[810],"properties":{"ID":2890,"ELEV":500}},{"type":"LineString","arcs":[811],"properties":{"ID":2891,"ELEV":1000}},{"type":"LineString","arcs":[812],"properties":{"ID":2895,"ELEV":6000}},{"type":"MultiLineString","arcs":[[813],[814]],"properties":{"ID":2897,"ELEV":7000}},{"type":"MultiLineString","arcs":[[815],[816]],"properties":{"ID":2898,"ELEV":7500}},{"type":"LineString","arcs":[817],"properties":{"ID":2899,"ELEV":8000}},{"type":"LineString","arcs":[818],"properties":{"ID":2900,"ELEV":500}},{"type":"LineString","arcs":[819],"properties":{"ID":2901,"ELEV":500}},{"type":"LineString","arcs":[820],"properties":{"ID":2902,"ELEV":1000}},{"type":"LineString","arcs":[821],"properties":{"ID":2903,"ELEV":1000}},{"type":"LineString","arcs":[822],"properties":{"ID":2904,"ELEV":1000}},{"type":"LineString","arcs":[823],"properties":{"ID":2905,"ELEV":1000}},{"type":"MultiLineString","arcs":[[824],[825]],"properties":{"ID":2907,"ELEV":6500}},{"type":"LineString","arcs":[826],"properties":{"ID":2908,"ELEV":500}},{"type":"LineString","arcs":[827],"properties":{"ID":2911,"ELEV":1000}},{"type":"MultiLineString","arcs":[[828],[829]],"properties":{"ID":2915,"ELEV":5500}},{"type":"LineString","arcs":[830],"properties":{"ID":2916,"ELEV":5500}},{"type":"LineString","arcs":[831],"properties":{"ID":2917,"ELEV":6000}},{"type":"LineString","arcs":[832],"properties":{"ID":2918,"ELEV":500}},{"type":"LineString","arcs":[833],"properties":{"ID":2919,"ELEV":500}},{"type":"LineString","arcs":[834],"properties":{"ID":2920,"ELEV":1000}},{"type":"LineString","arcs":[835],"properties":{"ID":2921,"ELEV":1000}},{"type":"LineString","arcs":[836],"properties":{"ID":2922,"ELEV":1500}},{"type":"LineString","arcs":[837],"properties":{"ID":2923,"ELEV":3000}},{"type":"LineString","arcs":[838],"properties":{"ID":2926,"ELEV":500}},{"type":"LineString","arcs":[839],"properties":{"ID":2927,"ELEV":1000}},{"type":"LineString","arcs":[840],"properties":{"ID":2928,"ELEV":1500}},{"type":"LineString","arcs":[841],"properties":{"ID":2929,"ELEV":1500}},{"type":"MultiLineString","arcs":[[842],[843]],"properties":{"ID":2932,"ELEV":6000}},{"type":"MultiLineString","arcs":[[844],[845]],"properties":{"ID":2933,"ELEV":6500}},{"type":"MultiLineString","arcs":[[846],[847]],"properties":{"ID":2934,"ELEV":7000}},{"type":"MultiLineString","arcs":[[848],[849]],"properties":{"ID":2936,"ELEV":7500}},{"type":"MultiLineString","arcs":[[850],[851]],"properties":{"ID":2937,"ELEV":8000}},{"type":"LineString","arcs":[852],"properties":{"ID":2938,"ELEV":500}},{"type":"LineString","arcs":[853],"properties":{"ID":2939,"ELEV":500}},{"type":"LineString","arcs":[854],"properties":{"ID":2940,"ELEV":500}},{"type":"LineString","arcs":[855],"properties":{"ID":2941,"ELEV":1500}},{"type":"LineString","arcs":[856],"properties":{"ID":2942,"ELEV":1500}},{"type":"LineString","arcs":[857],"properties":{"ID":2943,"ELEV":2500}},{"type":"LineString","arcs":[858],"properties":{"ID":2944,"ELEV":5000}},{"type":"LineString","arcs":[859],"properties":{"ID":2946,"ELEV":6000}},{"type":"MultiLineString","arcs":[[860],[861],[862]],"properties":{"ID":2947,"ELEV":6000}},{"type":"MultiLineString","arcs":[[863],[864]],"properties":{"ID":2948,"ELEV":6500}},{"type":"LineString","arcs":[865],"properties":{"ID":2949,"ELEV":500}},{"type":"LineString","arcs":[866],"properties":{"ID":2950,"ELEV":1000}},{"type":"LineString","arcs":[867],"properties":{"ID":2951,"ELEV":1000}},{"type":"LineString","arcs":[868],"properties":{"ID":2952,"ELEV":1500}},{"type":"LineString","arcs":[869],"properties":{"ID":2954,"ELEV":4000}},{"type":"LineString","arcs":[870],"properties":{"ID":2955,"ELEV":1000}},{"type":"LineString","arcs":[871],"properties":{"ID":2956,"ELEV":1000}},{"type":"LineString","arcs":[872],"properties":{"ID":2957,"ELEV":1000}},{"type":"LineString","arcs":[873],"properties":{"ID":2958,"ELEV":1000}},{"type":"LineString","arcs":[874],"properties":{"ID":2959,"ELEV":1500}},{"type":"LineString","arcs":[875],"properties":{"ID":2960,"ELEV":1500}},{"type":"LineString","arcs":[876],"properties":{"ID":2961,"ELEV":1500}},{"type":"LineString","arcs":[877],"properties":{"ID":2962,"ELEV":3500}},{"type":"MultiLineString","arcs":[[878],[879]],"properties":{"ID":2964,"ELEV":4500}},{"type":"LineString","arcs":[880],"properties":{"ID":2965,"ELEV":500}},{"type":"LineString","arcs":[881],"properties":{"ID":2966,"ELEV":500}},{"type":"LineString","arcs":[882],"properties":{"ID":2967,"ELEV":1000}},{"type":"LineString","arcs":[883],"properties":{"ID":2968,"ELEV":1000}},{"type":"LineString","arcs":[884],"properties":{"ID":2969,"ELEV":2000}},{"type":"LineString","arcs":[885],"properties":{"ID":2971,"ELEV":5500}},{"type":"MultiLineString","arcs":[[886],[887]],"properties":{"ID":2972,"ELEV":5500}},{"type":"LineString","arcs":[888],"properties":{"ID":2973,"ELEV":5500}},{"type":"LineString","arcs":[889],"properties":{"ID":2974,"ELEV":6000}},{"type":"MultiLineString","arcs":[[890],[891]],"properties":{"ID":2975,"ELEV":6000}},{"type":"LineString","arcs":[892],"properties":{"ID":2976,"ELEV":500}},{"type":"LineString","arcs":[893],"properties":{"ID":2977,"ELEV":500}},{"type":"LineString","arcs":[894],"properties":{"ID":2978,"ELEV":500}},{"type":"LineString","arcs":[895],"properties":{"ID":2979,"ELEV":1000}},{"type":"LineString","arcs":[896],"properties":{"ID":2980,"ELEV":1000}},{"type":"LineString","arcs":[897],"properties":{"ID":2981,"ELEV":1000}},{"type":"LineString","arcs":[898],"properties":{"ID":2982,"ELEV":6000}},{"type":"LineString","arcs":[899],"properties":{"ID":2983,"ELEV":6500}},{"type":"LineString","arcs":[900],"properties":{"ID":2984,"ELEV":500}},{"type":"LineString","arcs":[901],"properties":{"ID":2985,"ELEV":1000}},{"type":"LineString","arcs":[902],"properties":{"ID":2986,"ELEV":1000}},{"type":"LineString","arcs":[903],"properties":{"ID":2987,"ELEV":1000}},{"type":"LineString","arcs":[904],"properties":{"ID":2988,"ELEV":5000}},{"type":"LineString","arcs":[905],"properties":{"ID":2989,"ELEV":5500}},{"type":"LineString","arcs":[906],"properties":{"ID":2990,"ELEV":500}},{"type":"LineString","arcs":[907],"properties":{"ID":2991,"ELEV":1000}},{"type":"LineString","arcs":[908],"properties":{"ID":2992,"ELEV":1500}},{"type":"LineString","arcs":[909],"properties":{"ID":2993,"ELEV":1500}},{"type":"LineString","arcs":[910],"properties":{"ID":2994,"ELEV":1500}},{"type":"LineString","arcs":[911],"properties":{"ID":2995,"ELEV":1500}},{"type":"LineString","arcs":[912],"properties":{"ID":2996,"ELEV":1500}},{"type":"LineString","arcs":[913],"properties":{"ID":2997,"ELEV":2000}},{"type":"LineString","arcs":[914,915],"properties":{"ID":2999,"ELEV":5500}},{"type":"LineString","arcs":[916],"properties":{"ID":3000,"ELEV":5500}},{"type":"LineString","arcs":[917],"properties":{"ID":3001,"ELEV":6000}},{"type":"LineString","arcs":[918],"properties":{"ID":3002,"ELEV":6000}},{"type":"LineString","arcs":[919],"properties":{"ID":3003,"ELEV":6000}},{"type":"LineString","arcs":[920],"properties":{"ID":3004,"ELEV":500}},{"type":"LineString","arcs":[921],"properties":{"ID":3005,"ELEV":1000}},{"type":"LineString","arcs":[922,923],"properties":{"ID":3006,"ELEV":1500}},{"type":"LineString","arcs":[924],"properties":{"ID":3007,"ELEV":2000}},{"type":"LineString","arcs":[925],"properties":{"ID":3008,"ELEV":2000}},{"type":"LineString","arcs":[926],"properties":{"ID":3009,"ELEV":6000}},{"type":"LineString","arcs":[927],"properties":{"ID":3010,"ELEV":500}},{"type":"LineString","arcs":[928],"properties":{"ID":3011,"ELEV":1000}},{"type":"LineString","arcs":[929,930],"properties":{"ID":3012,"ELEV":1500}},{"type":"LineString","arcs":[931],"properties":{"ID":3013,"ELEV":1500}},{"type":"LineString","arcs":[932],"properties":{"ID":3014,"ELEV":3000}},{"type":"LineString","arcs":[933],"properties":{"ID":3015,"ELEV":3000}},{"type":"LineString","arcs":[934],"properties":{"ID":3016,"ELEV":4000}},{"type":"MultiLineString","arcs":[[935],[936],[937],[938]],"properties":{"ID":3018,"ELEV":5500}},{"type":"LineString","arcs":[939],"properties":{"ID":3019,"ELEV":5500}},{"type":"MultiLineString","arcs":[[940,941],[942],[943],[944]],"properties":{"ID":3020,"ELEV":5500}},{"type":"LineString","arcs":[945],"properties":{"ID":3022,"ELEV":500}},{"type":"LineString","arcs":[946],"properties":{"ID":3023,"ELEV":1000}},{"type":"LineString","arcs":[947],"properties":{"ID":3024,"ELEV":1500}},{"type":"LineString","arcs":[948,949],"properties":{"ID":3025,"ELEV":1500}},{"type":"LineString","arcs":[950],"properties":{"ID":3026,"ELEV":4500}},{"type":"LineString","arcs":[951],"properties":{"ID":3027,"ELEV":6500}},{"type":"LineString","arcs":[952],"properties":{"ID":3028,"ELEV":7000}},{"type":"LineString","arcs":[953],"properties":{"ID":3029,"ELEV":500}},{"type":"LineString","arcs":[954],"properties":{"ID":3030,"ELEV":2000}},{"type":"LineString","arcs":[955],"properties":{"ID":3031,"ELEV":3500}},{"type":"LineString","arcs":[956],"properties":{"ID":3032,"ELEV":4000}},{"type":"LineString","arcs":[957],"properties":{"ID":3033,"ELEV":6500}},{"type":"LineString","arcs":[958],"properties":{"ID":3034,"ELEV":7000}},{"type":"LineString","arcs":[959],"properties":{"ID":3035,"ELEV":2000}},{"type":"LineString","arcs":[960],"properties":{"ID":3036,"ELEV":2500}},{"type":"LineString","arcs":[961],"properties":{"ID":3037,"ELEV":4500}},{"type":"LineString","arcs":[962],"properties":{"ID":3038,"ELEV":5500}},{"type":"MultiLineString","arcs":[[963],[964]],"properties":{"ID":3039,"ELEV":6000}},{"type":"LineString","arcs":[965],"properties":{"ID":3041,"ELEV":1000}},{"type":"LineString","arcs":[966],"properties":{"ID":3042,"ELEV":1500}},{"type":"LineString","arcs":[967],"properties":{"ID":3043,"ELEV":1500}},{"type":"LineString","arcs":[968],"properties":{"ID":3044,"ELEV":3000}},{"type":"LineString","arcs":[969],"properties":{"ID":3045,"ELEV":3500}},{"type":"MultiLineString","arcs":[[970],[971],[972],[973],[974],[975],[976],[977],[978],[979],[980],[981],[982],[983],[984],[985],[986],[987],[988]],"properties":{"ID":3046,"ELEV":5000}},{"type":"LineString","arcs":[989],"properties":{"ID":3047,"ELEV":5000}},{"type":"LineString","arcs":[990],"properties":{"ID":3048,"ELEV":5500}},{"type":"LineString","arcs":[991],"properties":{"ID":3049,"ELEV":2000}},{"type":"LineString","arcs":[992],"properties":{"ID":3050,"ELEV":4500}},{"type":"LineString","arcs":[993],"properties":{"ID":3051,"ELEV":6000}},{"type":"LineString","arcs":[994],"properties":{"ID":3052,"ELEV":6500}},{"type":"LineString","arcs":[995],"properties":{"ID":3053,"ELEV":2000}},{"type":"LineString","arcs":[996],"properties":{"ID":3054,"ELEV":3500}},{"type":"LineString","arcs":[997],"properties":{"ID":3055,"ELEV":3500}},{"type":"LineString","arcs":[998],"properties":{"ID":3056,"ELEV":1500}},{"type":"LineString","arcs":[999],"properties":{"ID":3057,"ELEV":2000}},{"type":"LineString","arcs":[1000],"properties":{"ID":3058,"ELEV":2000}},{"type":"LineString","arcs":[1001],"properties":{"ID":3059,"ELEV":2000}},{"type":"LineString","arcs":[1002],"properties":{"ID":3060,"ELEV":2000}},{"type":"LineString","arcs":[1003],"properties":{"ID":3061,"ELEV":2500}},{"type":"LineString","arcs":[1004],"properties":{"ID":3063,"ELEV":1000}},{"type":"MultiLineString","arcs":[[1005],[1006],[1007],[1008],[1009],[1010],[1011],[1012]],"properties":{"ID":3064,"ELEV":4500}},{"type":"MultiLineString","arcs":[[1013],[1014],[1015]],"properties":{"ID":3065,"ELEV":5500}},{"type":"LineString","arcs":[1016],"properties":{"ID":3067,"ELEV":1500}},{"type":"LineString","arcs":[1017],"properties":{"ID":3068,"ELEV":2000}},{"type":"LineString","arcs":[1018],"properties":{"ID":3069,"ELEV":2000}},{"type":"LineString","arcs":[1019],"properties":{"ID":3070,"ELEV":3500}},{"type":"LineString","arcs":[1020],"properties":{"ID":3071,"ELEV":4500}},{"type":"LineString","arcs":[1021],"properties":{"ID":3073,"ELEV":2500}},{"type":"LineString","arcs":[1022],"properties":{"ID":3075,"ELEV":1000}},{"type":"LineString","arcs":[1023],"properties":{"ID":3076,"ELEV":1500}},{"type":"LineString","arcs":[1024],"properties":{"ID":3077,"ELEV":2000}},{"type":"LineString","arcs":[1025],"properties":{"ID":3078,"ELEV":2500}},{"type":"LineString","arcs":[1026],"properties":{"ID":3079,"ELEV":3000}},{"type":"LineString","arcs":[1027],"properties":{"ID":3080,"ELEV":3500}},{"type":"LineString","arcs":[1028],"properties":{"ID":3081,"ELEV":500}},{"type":"LineString","arcs":[1029],"properties":{"ID":3082,"ELEV":1000}},{"type":"LineString","arcs":[1030],"properties":{"ID":3083,"ELEV":1500}},{"type":"LineString","arcs":[1031],"properties":{"ID":3084,"ELEV":1500}},{"type":"LineString","arcs":[1032],"properties":{"ID":3086,"ELEV":2000}},{"type":"LineString","arcs":[1033],"properties":{"ID":3088,"ELEV":2500}},{"type":"LineString","arcs":[1034],"properties":{"ID":3089,"ELEV":2500}},{"type":"LineString","arcs":[1035],"properties":{"ID":3090,"ELEV":3500}},{"type":"LineString","arcs":[1036],"properties":{"ID":3091,"ELEV":4500}},{"type":"LineString","arcs":[1037],"properties":{"ID":3092,"ELEV":1000}},{"type":"LineString","arcs":[1038],"properties":{"ID":3093,"ELEV":1500}},{"type":"LineString","arcs":[1039],"properties":{"ID":3094,"ELEV":1500}},{"type":"LineString","arcs":[1040],"properties":{"ID":3095,"ELEV":2000}},{"type":"LineString","arcs":[1041],"properties":{"ID":3096,"ELEV":2000}},{"type":"LineString","arcs":[1042],"properties":{"ID":3097,"ELEV":2500}},{"type":"LineString","arcs":[1043],"properties":{"ID":3098,"ELEV":3000}},{"type":"LineString","arcs":[1044],"properties":{"ID":3099,"ELEV":3500}},{"type":"LineString","arcs":[1045],"properties":{"ID":3100,"ELEV":3500}},{"type":"LineString","arcs":[1046],"properties":{"ID":3102,"ELEV":500}},{"type":"LineString","arcs":[1047],"properties":{"ID":3103,"ELEV":1500}},{"type":"LineString","arcs":[1048],"properties":{"ID":3104,"ELEV":1500}},{"type":"LineString","arcs":[1049],"properties":{"ID":3105,"ELEV":2000}},{"type":"LineString","arcs":[1050],"properties":{"ID":3106,"ELEV":2500}},{"type":"MultiLineString","arcs":[[1051],[1052],[1053],[1054]],"properties":{"ID":3107,"ELEV":5000}},{"type":"LineString","arcs":[1055],"properties":{"ID":3108,"ELEV":2000}},{"type":"LineString","arcs":[1056],"properties":{"ID":3110,"ELEV":2500}},{"type":"LineString","arcs":[1057],"properties":{"ID":3111,"ELEV":2500}},{"type":"LineString","arcs":[1058],"properties":{"ID":3112,"ELEV":3500}},{"type":"LineString","arcs":[1059],"properties":{"ID":3113,"ELEV":3500}},{"type":"LineString","arcs":[1060],"properties":{"ID":3114,"ELEV":1500}},{"type":"LineString","arcs":[1061],"properties":{"ID":3115,"ELEV":1500}},{"type":"LineString","arcs":[1062],"properties":{"ID":3116,"ELEV":2500}},{"type":"LineString","arcs":[1063],"properties":{"ID":3117,"ELEV":2500}},{"type":"LineString","arcs":[1064],"properties":{"ID":3118,"ELEV":3000}},{"type":"LineString","arcs":[1065],"properties":{"ID":3119,"ELEV":3500}},{"type":"LineString","arcs":[1066],"properties":{"ID":3120,"ELEV":3500}},{"type":"MultiLineString","arcs":[[1067],[1068]],"properties":{"ID":3121,"ELEV":4500}},{"type":"LineString","arcs":[1069],"properties":{"ID":3122,"ELEV":1000}},{"type":"LineString","arcs":[1070],"properties":{"ID":3123,"ELEV":2000}},{"type":"LineString","arcs":[1071],"properties":{"ID":3125,"ELEV":1000}},{"type":"LineString","arcs":[1072],"properties":{"ID":3126,"ELEV":2500}},{"type":"LineString","arcs":[1073],"properties":{"ID":3127,"ELEV":3000}},{"type":"LineString","arcs":[1074],"properties":{"ID":3128,"ELEV":1000}},{"type":"LineString","arcs":[1075],"properties":{"ID":3129,"ELEV":2000}},{"type":"LineString","arcs":[1076],"properties":{"ID":3130,"ELEV":500}},{"type":"LineString","arcs":[1077],"properties":{"ID":3131,"ELEV":1500}},{"type":"MultiLineString","arcs":[[1078],[1079],[1080],[1081],[1082],[1083],[1084]],"properties":{"ID":3132,"ELEV":4000}},{"type":"LineString","arcs":[1085],"properties":{"ID":3133,"ELEV":500}},{"type":"LineString","arcs":[1086],"properties":{"ID":3134,"ELEV":1500}},{"type":"LineString","arcs":[1087],"properties":{"ID":3135,"ELEV":3000}},{"type":"LineString","arcs":[1088],"properties":{"ID":3136,"ELEV":500}},{"type":"LineString","arcs":[1089],"properties":{"ID":3137,"ELEV":500}},{"type":"LineString","arcs":[1090],"properties":{"ID":3138,"ELEV":2500}},{"type":"MultiLineString","arcs":[[1091],[1092],[1093],[1094],[1095],[1096]],"properties":{"ID":3139,"ELEV":3500}},{"type":"LineString","arcs":[1097],"properties":{"ID":3140,"ELEV":1500}},{"type":"LineString","arcs":[1098],"properties":{"ID":3141,"ELEV":1500}},{"type":"LineString","arcs":[1099],"properties":{"ID":3142,"ELEV":2500}},{"type":"LineString","arcs":[1100],"properties":{"ID":3143,"ELEV":3000}},{"type":"LineString","arcs":[1101],"properties":{"ID":3145,"ELEV":500}},{"type":"LineString","arcs":[1102],"properties":{"ID":3146,"ELEV":1000}},{"type":"LineString","arcs":[1103],"properties":{"ID":3147,"ELEV":1000}},{"type":"LineString","arcs":[1104],"properties":{"ID":3148,"ELEV":1500}},{"type":"LineString","arcs":[1105],"properties":{"ID":3149,"ELEV":2000}},{"type":"LineString","arcs":[1106],"properties":{"ID":3150,"ELEV":3000}},{"type":"LineString","arcs":[1107],"properties":{"ID":3151,"ELEV":500}},{"type":"LineString","arcs":[1108],"properties":{"ID":3152,"ELEV":1000}},{"type":"LineString","arcs":[1109],"properties":{"ID":3153,"ELEV":1000}},{"type":"LineString","arcs":[1110],"properties":{"ID":3155,"ELEV":2000}},{"type":"LineString","arcs":[1111],"properties":{"ID":3157,"ELEV":500}},{"type":"LineString","arcs":[1112],"properties":{"ID":3158,"ELEV":1000}},{"type":"MultiLineString","arcs":[[1113],[1114],[1115],[1116],[1117]],"properties":{"ID":3160,"ELEV":3000}},{"type":"LineString","arcs":[1118],"properties":{"ID":3161,"ELEV":2500}},{"type":"LineString","arcs":[1119],"properties":{"ID":3162,"ELEV":500}},{"type":"LineString","arcs":[1120],"properties":{"ID":3164,"ELEV":1500}},{"type":"LineString","arcs":[1121],"properties":{"ID":3167,"ELEV":500}},{"type":"LineString","arcs":[1122],"properties":{"ID":3168,"ELEV":1500}},{"type":"LineString","arcs":[1123],"properties":{"ID":3170,"ELEV":2000}},{"type":"LineString","arcs":[1124],"properties":{"ID":3172,"ELEV":1500}},{"type":"LineString","arcs":[1125],"properties":{"ID":3173,"ELEV":1500}},{"type":"LineString","arcs":[1126],"properties":{"ID":3174,"ELEV":1500}},{"type":"LineString","arcs":[1127],"properties":{"ID":3177,"ELEV":500}},{"type":"LineString","arcs":[1128],"properties":{"ID":3178,"ELEV":1000}},{"type":"LineString","arcs":[1129],"properties":{"ID":3179,"ELEV":1500}},{"type":"LineString","arcs":[1130],"properties":{"ID":3180,"ELEV":2000}},{"type":"LineString","arcs":[1131],"properties":{"ID":3181,"ELEV":500}},{"type":"LineString","arcs":[1132],"properties":{"ID":3182,"ELEV":1500}},{"type":"LineString","arcs":[1133],"properties":{"ID":3183,"ELEV":2500}},{"type":"LineString","arcs":[1134],"properties":{"ID":3184,"ELEV":500}},{"type":"LineString","arcs":[1135],"properties":{"ID":3185,"ELEV":500}},{"type":"LineString","arcs":[1136],"properties":{"ID":3186,"ELEV":2500}},{"type":"LineString","arcs":[1137],"properties":{"ID":3187,"ELEV":500}},{"type":"LineString","arcs":[1138],"properties":{"ID":3188,"ELEV":1000}},{"type":"LineString","arcs":[1139],"properties":{"ID":3189,"ELEV":500}},{"type":"LineString","arcs":[1140],"properties":{"ID":3190,"ELEV":500}},{"type":"LineString","arcs":[1141],"properties":{"ID":3191,"ELEV":1500}},{"type":"LineString","arcs":[1142],"properties":{"ID":3192,"ELEV":1500}},{"type":"LineString","arcs":[1143],"properties":{"ID":3193,"ELEV":2500}},{"type":"LineString","arcs":[1144],"properties":{"ID":3194,"ELEV":500}},{"type":"LineString","arcs":[1145],"properties":{"ID":3195,"ELEV":500}},{"type":"LineString","arcs":[1146],"properties":{"ID":3198,"ELEV":1000}},{"type":"LineString","arcs":[1147],"properties":{"ID":3199,"ELEV":1500}},{"type":"MultiLineString","arcs":[[1148],[1149]],"properties":{"ID":3200,"ELEV":3000}},{"type":"LineString","arcs":[1150],"properties":{"ID":3203,"ELEV":1500}},{"type":"LineString","arcs":[1151],"properties":{"ID":3204,"ELEV":2000}},{"type":"LineString","arcs":[1152],"properties":{"ID":3205,"ELEV":1500}},{"type":"LineString","arcs":[1153],"properties":{"ID":3206,"ELEV":1500}},{"type":"LineString","arcs":[1154],"properties":{"ID":3207,"ELEV":2000}},{"type":"LineString","arcs":[1155],"properties":{"ID":3208,"ELEV":2500}},{"type":"LineString","arcs":[1156],"properties":{"ID":3210,"ELEV":2000}},{"type":"LineString","arcs":[1157],"properties":{"ID":3212,"ELEV":500}},{"type":"LineString","arcs":[1158],"properties":{"ID":3213,"ELEV":2000}},{"type":"LineString","arcs":[1159],"properties":{"ID":3214,"ELEV":2000}},{"type":"LineString","arcs":[1160],"properties":{"ID":3215,"ELEV":500}},{"type":"LineString","arcs":[1161],"properties":{"ID":3216,"ELEV":500}},{"type":"MultiLineString","arcs":[[1162],[1163],[1164]],"properties":{"ID":3219,"ELEV":2500}},{"type":"LineString","arcs":[1165],"properties":{"ID":3220,"ELEV":500}},{"type":"LineString","arcs":[1166],"properties":{"ID":3221,"ELEV":1000}},{"type":"LineString","arcs":[1167],"properties":{"ID":3222,"ELEV":2000}},{"type":"LineString","arcs":[1168],"properties":{"ID":3223,"ELEV":500}},{"type":"LineString","arcs":[1169],"properties":{"ID":3224,"ELEV":1000}},{"type":"LineString","arcs":[1170],"properties":{"ID":3225,"ELEV":1500}},{"type":"LineString","arcs":[1171],"properties":{"ID":3226,"ELEV":1500}},{"type":"MultiLineString","arcs":[[1172],[1173]],"properties":{"ID":3227,"ELEV":2000}},{"type":"LineString","arcs":[1174],"properties":{"ID":3228,"ELEV":500}},{"type":"LineString","arcs":[1175],"properties":{"ID":3229,"ELEV":1000}},{"type":"LineString","arcs":[1176],"properties":{"ID":3230,"ELEV":2000}},{"type":"LineString","arcs":[1177],"properties":{"ID":3231,"ELEV":2000}},{"type":"LineString","arcs":[1178],"properties":{"ID":3233,"ELEV":1500}},{"type":"LineString","arcs":[1179],"properties":{"ID":3235,"ELEV":1500}},{"type":"LineString","arcs":[1180],"properties":{"ID":3236,"ELEV":1500}},{"type":"LineString","arcs":[1181],"properties":{"ID":3237,"ELEV":500}},{"type":"LineString","arcs":[1182],"properties":{"ID":3238,"ELEV":1500}},{"type":"LineString","arcs":[1183],"properties":{"ID":3239,"ELEV":500}},{"type":"LineString","arcs":[1184],"properties":{"ID":3240,"ELEV":1500}},{"type":"LineString","arcs":[1185],"properties":{"ID":3241,"ELEV":2000}},{"type":"LineString","arcs":[1186],"properties":{"ID":3242,"ELEV":1500}},{"type":"LineString","arcs":[1187,1188,1189],"properties":{"ID":3243,"ELEV":1500}},{"type":"LineString","arcs":[1190],"properties":{"ID":3244,"ELEV":1000}},{"type":"LineString","arcs":[1191],"properties":{"ID":3245,"ELEV":500}}]}},"arcs":[[[1525,9864],[2,2],[-1,3]],[[2372,9735],[-5,13]],[[2376,9745],[-4,-10]],[[1728,9725],[-21,2],[0,3],[0,1],[21,2],[3,-3],[-3,-5]],[[2466,9630],[-11,0],[-5,9],[1,45],[4,7],[18,26]],[[1604,9544],[-4,4],[4,8],[14,-8],[-14,-4]],[[1853,9467],[13,36],[-13,27],[-21,-25],[-7,-2],[7,-27],[21,-9]],[[1894,9494],[6,9],[7,45],[8,36],[4,10],[-4,3],[-21,12],[-21,-7],[-2,-8],[-9,-46],[11,-27],[18,-18],[3,-9]],[[2102,9492],[5,11],[-5,6],[-19,-6],[19,-11]],[[2455,9497],[9,6],[-9,5],[-5,-5],[5,-6]],[[939,9406],[1,0]],[[913,9395],[5,-23],[21,34]],[[1687,9406],[3,6],[-3,13],[-21,-5],[-8,-8],[8,-6],[21,0]],[[1915,9395],[1,17],[-1,5],[-1,-5],[1,-17]],[[1624,9351],[14,16],[-14,33],[-18,-33],[18,-16]],[[1658,9960],[0,-4],[2,-45],[-15,-14],[-21,-16],[-20,-6],[-7,-9],[-1,-46],[8,-8],[20,-24],[9,-13],[-9,-26],[-3,-19],[3,-39],[1,-7],[-1,-1],[-4,1],[-16,5],[-5,-5],[-16,-45],[0,-1],[-8,-44],[-7,-46],[-6,-7],[-15,-38],[1,-45],[-7,-42],[-4,-4],[-9,-10]],[[1512,9321],[-12,-9],[-7,3]],[[1782,9993],[8,-19],[15,-18],[-6,-45],[12,-40],[2,-5],[-2,-6],[-21,-33],[-5,-7],[-15,-21],[-14,-24],[14,-13],[20,-12],[21,-14],[2,-6],[-2,-6],[-21,-31],[-3,-9],[-17,-27],[-21,1],[-21,-10],[-21,-8],[-20,5],[-7,-6],[7,-3],[20,2],[21,-12],[21,-5],[21,4],[20,13],[1,1],[20,22],[21,22],[2,1],[19,11],[6,-11],[3,-45],[-9,-40],[-2,-5],[-11,-46],[-8,-12],[-21,-7],[-21,4],[-20,-8],[-21,-7],[-21,1],[-21,2],[-18,-18],[-2,-2],[-2,2],[-19,39],[-21,-6],[-5,-33],[-16,-39],[-20,35],[-4,4],[-17,23],[-18,-23],[2,-45],[-4,-46],[0,-45],[-1,-1],[-21,-22],[-21,-11],[-8,-12]],[[2226,9313],[3,8],[-3,3],[-1,-3],[1,-8]],[[2024,9321],[-5,-34],[-8,34],[-13,20],[-19,26],[11,45],[8,9],[21,11],[19,-20],[2,-2],[5,-43],[-5,-19],[-16,-27]],[[1811,9310],[-5,11],[0,46],[5,5],[9,-5],[1,-46],[-10,-11]],[[881,9254],[4,22],[-5,24]],[[1624,9263],[19,13],[-19,9],[-12,36],[-8,41],[-21,-40],[0,-1],[-21,-32],[-21,-3],[-19,-10],[19,-10],[21,-3],[21,5],[21,3],[20,-8]],[[1126,9265],[-8,11],[-13,34],[-3,11],[3,7],[21,-5],[1,-2],[6,-45],[-7,-11]],[[1500,9226],[5,5],[-5,8],[-21,-1],[-12,4]],[[1424,9235],[5,-4],[8,-2],[21,-9],[21,5],[21,1]],[[981,9260],[-21,-16],[-21,21],[-8,11],[7,45],[1,8],[10,8]],[[1036,9357],[7,-16],[11,-20],[-10,-45],[-1,-3],[-2,3],[-19,32],[-21,2],[-10,-34],[-10,-16]],[[2157,9231],[-14,-19],[-16,19],[10,45],[-4,45],[0,46],[10,45],[-2,46],[-3,45],[-15,39],[-21,4],[-2,2],[-19,29],[-21,9],[-20,5],[-21,0],[-4,3],[4,3],[21,3],[20,12],[21,8],[18,19],[-18,27],[-21,-6],[-17,24],[-3,10],[-16,36],[16,32],[20,2],[21,5],[21,5],[4,1],[-4,2],[-21,4],[-21,15],[-18,24],[-2,3],[-21,28],[-21,4],[-13,11],[5,7]],[[2349,9751],[2,-17],[3,-4],[-3,-2],[-17,-44],[-4,-14],[-9,14],[-11,7],[-9,-7],[-12,-17],[-21,-4],[-8,21],[-13,34],[-3,12],[-18,29],[-20,11],[-21,-9],[-21,-16],[-3,-15],[1,-46],[2,-12],[4,-33],[-4,-17],[-11,-28],[4,-46],[7,-29],[8,-16],[-8,-33],[-5,-12],[-15,-46],[16,-45],[4,-9],[10,-37],[-9,-45],[-1,-3],[-7,-42]],[[1790,9192],[-20,17],[-21,16],[-7,6],[7,9],[21,23],[13,13],[-13,39],[-5,6],[-16,9],[-21,8],[-21,27],[0,2],[21,20],[21,4],[21,9],[20,11],[3,1],[18,7],[21,2],[11,-9],[9,-45],[1,-3],[20,-24],[5,-19],[-5,-32],[-3,-13],[3,-8],[13,-37],[-13,-33],[-12,33],[-8,16],[-21,8],[-21,-7],[-10,-17],[-11,-39]],[[1624,9185],[-20,-2],[-4,2],[4,42],[20,-41],[3,-1],[-3,0]],[[2060,9221],[-20,7],[-2,3],[2,12],[17,33],[3,2],[21,41],[21,-30],[10,-13],[3,-45],[-13,-6],[-12,6],[-9,11],[-8,-11],[-13,-10]],[[2536,9182],[-2,3],[2,46],[2,11],[8,-11]],[[1707,9134],[1,6],[-1,1],[0,-1],[0,-6]],[[1666,9133],[-10,7],[-11,11],[-21,-1],[-20,6],[-21,13],[-21,14],[-5,2],[-16,19],[-7,27],[7,7],[21,1],[21,9],[21,3],[13,-20],[7,-15],[21,-7],[21,-11],[6,-13],[1,-45],[-7,-7]],[[1936,9116],[11,24],[9,45],[-20,18],[-7,-18],[-3,-45],[10,-24]],[[1458,9138],[-21,-13],[-15,15],[15,12],[21,-11],[3,-1],[-3,-2]],[[835,9086],[5,9],[-2,3]],[[813,9082],[2,-2],[20,6]],[[2185,9086],[-5,9],[5,13],[10,-13],[-10,-9]],[[794,9013],[9,36],[-5,10]],[[789,9037],[5,-24]],[[1520,9033],[6,16],[-6,10],[-20,-10],[20,-16]],[[2330,9017],[6,32],[-6,22],[-3,-22],[3,-32]],[[1043,9031],[-17,18],[17,24],[9,-24],[-9,-18]],[[2268,9031],[-10,18],[10,33],[11,-33],[-11,-18]],[[2102,8999],[0,5],[0,1],[0,-1],[0,-5]],[[1604,8992],[-10,12],[10,4],[3,-4],[-3,-12]],[[2247,9001],[-3,3],[3,8],[3,-8],[-3,-3]],[[1230,8967],[-2,3]],[[1230,8968],[0,-1]],[[2517,8983],[-21,3],[-6,18],[-11,45],[17,29],[7,17],[-7,16],[-17,29],[17,31],[17,14],[4,8],[6,38],[-6,18],[-11,27],[-10,37],[-11,8],[-9,10],[-21,27],[-5,9],[-13,45],[-3,7],[-21,8],[-5,31],[4,45],[1,7],[6,38],[-2,46],[4,45],[1,45],[2,46],[1,1]],[[2475,9552],[-1,-4],[2,-12],[1,0]],[[2536,9073],[-8,-24],[0,-45],[-11,-21]],[[1915,8952],[11,7],[-11,5],[-8,-5],[8,-7]],[[2185,8955],[-21,-12],[-8,16],[8,9],[21,0],[2,-9],[-2,-4]],[[2663,8949],[-21,10],[-21,32],[-11,13],[6,11]],[[2668,8991],[-3,-32],[-2,-10]],[[1168,8951],[-12,8],[12,15],[4,-15],[-4,-8]],[[752,8904],[3,9],[1,46],[-4,8],[-2,-2]],[[740,8910],[12,-6]],[[2040,8910],[8,3],[-8,2],[-2,-2],[2,-3]],[[2310,8891],[3,22],[0,46],[4,45],[-7,2],[-1,-2],[-1,-45],[-3,-46],[5,-22]],[[1126,8905],[-8,8],[8,11],[3,-11],[-3,-8]],[[2766,8882],[-1,26]],[[2768,8904],[-2,-22]],[[1832,8842],[11,26],[-11,26],[-4,-26],[4,-26]],[[2746,8855],[-5,13],[5,20],[19,-20],[-19,-13]],[[711,8812],[6,11],[-6,5]],[[687,8814],[3,-19],[21,17]],[[2289,8817],[2,6],[-2,9],[-11,-9],[11,-6]],[[2060,8819],[-2,4],[2,7],[16,-7],[-16,-4]],[[2517,8811],[5,12],[-5,8],[-21,3],[-20,34],[0,1],[0,-1],[-8,-45],[8,-44],[20,32],[21,0]],[[979,8823],[-19,-27],[-21,7],[-21,18],[-6,2],[6,4],[9,41],[3,45],[5,46],[4,4],[21,-3],[1,-1],[9,-46],[11,-28],[20,1],[9,-18],[-9,-13],[-20,-22],[-2,-10]],[[1095,8823],[-11,-35],[-8,35],[5,45],[3,23],[21,-7],[3,-16],[-3,-8],[-10,-37]],[[1209,8792],[-21,8],[-5,23],[0,45],[-12,45],[-3,6],[-21,19],[-12,21],[12,27],[10,18],[4,40]],[[1159,9054],[-12,18],[-16,23],[16,43],[7,2],[-7,3],[-4,42],[4,42],[7,-42],[4,-13]],[[1187,9019],[-6,-15],[7,-29],[6,-16],[7,-46],[8,-20],[11,-25],[-5,-45],[-6,-31]],[[2808,8819],[-2,4],[2,16],[15,-16],[-15,-4]],[[960,8813],[-21,6],[-4,4],[1,45],[3,20],[21,10],[10,-30],[-3,-45],[-7,-10]],[[1832,8771],[2,6],[-2,17],[-9,-17],[9,-6]],[[1105,8766],[13,11],[-13,17],[-5,-17],[5,-11]],[[1873,8771],[0,6],[0,8],[5,-8],[-5,-6]],[[2393,8745],[-21,1],[-4,31],[-17,38],[-7,8],[7,9],[21,4],[21,-2],[3,-11],[15,-46],[-18,-32]],[[2579,8750],[-20,-9],[-11,36],[11,19],[20,17],[7,-36],[-7,-27]],[[1064,8760],[-5,17],[5,4],[2,-4],[-2,-17]],[[545,8695],[5,15]],[[543,8705],[2,-10]],[[1001,8722],[-4,10],[4,31],[16,-31],[-16,-10]],[[1666,8731],[3,1],[-3,3],[-2,-3],[2,-1]],[[2746,8713],[1,19],[-1,7],[-2,-7],[2,-19]],[[877,8721],[-3,11],[-6,45],[8,46],[1,16],[5,-16],[2,-46],[-2,-45],[-5,-11]],[[2081,8678],[20,9],[-20,17],[-11,-17],[11,-9]],[[2413,8669],[8,18],[-8,18],[-9,-18],[9,-18]],[[2704,8683],[0,4],[0,-4]],[[1396,8685],[-3,2],[-18,17],[-7,28],[7,45],[20,-45],[1,-16],[5,-29],[-5,-2]],[[2725,8684],[-1,3],[1,32],[1,-32],[-1,-3]],[[1204,8687],[-16,-31],[-10,31],[9,45],[1,10],[21,18],[6,-28],[-6,-23],[-5,-22]],[[1084,8673],[-20,-18],[-9,32],[0,45],[-12,31],[-7,14],[-8,46],[12,45],[3,4],[1,-4],[8,-45],[12,-20],[18,-26],[-6,-45],[8,-28],[19,-17],[-19,-14]],[[2517,8685],[-21,-20],[-7,22],[7,34],[21,-30],[2,-4],[-2,-2]],[[1188,8685],[0,2],[0,1],[1,-1],[-1,-2]],[[524,8613],[6,28],[-4,17]],[[518,8626],[6,-13]],[[2330,8641],[2,0],[-2,1],[-1,-1],[1,0]],[[1292,8643],[17,44],[4,10],[9,-10],[12,-17],[11,17],[9,39],[1,6],[-1,3],[-20,10],[-21,3],[-16,29],[-5,14],[-21,2],[-20,20],[-9,-36],[9,-24],[20,1],[9,-22],[-5,-45],[17,-44]],[[2579,8628],[3,13],[-3,7],[-2,-7],[2,-13]],[[2505,8641],[-9,-31],[-20,31],[-1,0],[-5,46],[6,23],[4,22],[16,40],[21,-23],[17,-17],[4,-15],[4,-30],[-4,-10],[-21,-17],[-12,-19]],[[1770,8640],[-2,1],[2,4],[3,-4],[-3,-1]],[[2600,8640],[0,1],[0,10],[1,-10],[-1,-1]],[[1043,8636],[-3,5],[3,4],[5,-4],[-5,-5]],[[1458,8596],[1,0],[-1,1],[-2,-1],[2,0]],[[2663,8576],[17,20],[-17,10],[-5,-10],[5,-20]],[[1354,8573],[-14,23],[14,45],[0,1],[1,-1],[13,-45],[-14,-23]],[[1915,8595],[-1,1],[-16,45],[17,15],[6,-15],[10,-45],[-16,-1]],[[2870,8578],[-1,18],[1,3],[2,-3],[-2,-18]],[[960,8524],[16,27],[-16,14],[-7,-14],[7,-27]],[[2393,8527],[-10,24],[10,20],[9,-20],[-9,-24]],[[2559,8549],[-1,2],[1,14],[4,-14],[-4,-2]],[[1604,8547],[-9,4],[9,5],[8,-5],[-8,-4]],[[1687,8540],[-13,11],[13,16],[1,-16],[-1,-11]],[[2642,8494],[1,11],[-1,3],[-1,-3],[1,-11]],[[2974,8482],[6,23],[-6,33],[-7,-33],[7,-23]],[[1313,8504],[-21,0],[-1,1],[1,5],[13,41],[-7,45],[15,40],[16,-40],[-9,-45],[-6,-46],[-1,-1]],[[2932,8491],[-4,14],[4,36],[4,-36],[-4,-14]],[[1105,8505],[-21,-18],[-1,18],[1,15],[21,-14],[0,-1]],[[1666,8497],[-14,8],[14,32],[6,-32],[-6,-8]],[[1583,8490],[-6,15],[-7,46],[13,13],[21,23],[9,9],[11,15],[6,-15],[15,-28],[21,17],[7,11],[-7,38],[-1,7],[1,4],[4,-4],[17,-14],[10,-31],[-2,-45],[-4,-46],[-4,-3],[-21,-29],[-21,2],[-12,30],[-9,21],[-20,0],[-17,-21],[-4,-15]],[[1500,8420],[-21,38],[-1,2],[1,5],[21,8],[17,-13],[-17,-40]],[[2600,8410],[3,4],[-3,5],[-21,5],[-10,-10],[10,-26],[21,22]],[[1126,8406],[2,8],[17,46],[-19,12],[-6,-12],[2,-46],[4,-8]],[[1790,8410],[-20,-2],[-21,-38],[-19,44],[19,28],[21,-10],[20,-10],[4,-8],[-4,-4]],[[1084,8395],[-9,19],[4,46],[-4,45],[3,46],[6,15],[10,-15],[11,-16],[18,-30],[-18,-37],[-5,-8],[-2,-46],[-14,-19]],[[2143,8342],[11,27],[6,45],[-14,46],[-3,7],[-12,38],[-5,46],[17,37],[4,8],[-4,9],[-13,36],[-4,46],[-3,3],[-19,-3],[5,-46],[13,-45],[-1,-45],[-15,-46],[13,-45],[4,-10],[10,-36],[-4,-45],[14,-27]],[[2559,8350],[14,19],[-14,28],[-18,-28],[18,-19]],[[1147,8335],[-14,34],[8,45],[6,16],[17,-16],[-8,-45],[-9,-34]],[[877,8304],[9,20],[-9,11],[-10,-11],[10,-20]],[[1977,8299],[9,25],[-9,41],[-9,-41],[9,-25]],[[2517,8320],[7,4],[-7,7],[-19,38],[-2,4],[-7,-4],[7,-16],[11,-29],[10,-4]],[[2704,8306],[20,18],[-20,9],[-12,-9],[12,-18]],[[1168,8282],[-21,11],[-18,31],[-3,6],[-21,28],[-20,11],[-1,1],[-20,42],[-3,2],[3,4],[6,42],[-2,45],[-2,46],[-2,10],[-21,33],[-2,2],[-19,33],[-10,12],[10,9],[21,29],[2,8],[-1,45],[-1,4],[-20,41],[-1,3],[-21,39],[-20,-15],[-21,-24],[-21,7],[-21,13],[-20,-16],[-2,-7],[2,-10],[11,-35],[-11,-17],[-14,-28],[-7,-40],[-2,-6],[-19,-19],[-10,19],[-6,46],[16,29],[5,16],[-5,31],[-2,14],[2,7],[10,39],[1,45],[-11,34],[-3,11],[-13,46],[16,13],[8,-13],[13,-31],[6,-15],[15,-34],[17,34],[-3,46],[3,45],[3,12],[11,-12],[10,-7],[21,-18],[15,-20],[6,-28],[20,8],[8,-26],[13,-29],[16,29],[5,9],[5,-9],[9,-45],[7,-38],[6,38],[4,45],[10,30],[20,16],[1,1],[21,12],[14,32],[-14,43],[-1,2],[-20,33],[-4,13],[4,30],[13,15],[8,9],[7,36],[-7,29],[-9,17],[-12,20],[-14,25],[-7,23],[-11,22],[-9,31],[-6,15],[1,2]],[[1255,8941],[-4,-13],[-21,-10],[-3,-5],[3,-8],[21,-25],[20,22],[5,11],[2,5]],[[1311,8911],[2,-9],[11,11],[10,9],[3,13]],[[1365,9045],[10,-10],[8,14],[1,46],[0,45],[12,38],[18,-38],[3,-12],[7,-33],[-7,-28],[-7,-18],[-3,-45],[2,-45],[8,-16],[9,16],[11,28],[21,-15],[6,-13],[9,-46],[6,-4],[6,4],[15,17],[20,-15],[21,21],[11,23],[10,25],[21,5],[9,-30],[-4,-46],[16,-40],[20,-5],[21,19],[21,15],[21,-10],[20,-22],[2,-2],[19,-29],[3,-16],[-3,-5],[-21,-10],[-20,4],[-21,-12],[-20,-23],[-1,-1],[-13,-44],[-3,-45],[9,-46],[7,-27],[3,27],[8,46],[10,14],[21,-5],[3,-9],[17,-35],[7,-11],[-1,-45],[-6,-16],[-5,-29],[5,-31],[7,-15],[-7,-17],[-20,-7],[-15,-21],[-6,-14],[-13,-32],[-8,-22],[-8,22],[-1,46],[-12,31],[-19,14],[-1,1],[-1,-1],[-14,-45],[-6,-22],[-8,-24],[-13,-16],[-18,16],[11,46],[0,45],[-10,46],[-4,6],[-21,35],[-1,4],[-8,45],[9,16],[14,-16],[7,-9],[21,-21],[8,-15],[13,-13],[10,13],[5,45],[-12,46],[-3,37],[-1,8],[-5,45],[-15,13],[-21,28],[-21,-1],[-20,-35],[-21,18],[-21,21],[-1,2],[-20,32],[-12,13],[-8,16],[-21,8],[-18,-24],[4,-45],[14,-44],[0,-2],[0,-16],[-14,16],[-7,2],[-21,42],[-20,-2],[-21,-41],[-14,45],[-7,11],[-21,-9],[-20,39],[-21,-32],[-2,-9],[-4,-46],[6,-31],[4,-14],[-4,-9],[-10,-36],[-2,-46],[-9,-35],[-21,18],[-10,17],[-10,43],[-1,3],[1,6],[3,39],[2,45],[-5,35],[-3,11],[2,45],[-20,38],[-13,-38],[-8,-15],[-12,-30],[12,-34],[4,-12],[2,-45],[-6,-43],[0,-2],[-1,-46],[-20,-11],[-17,-34],[17,-23],[21,-14],[15,-8],[-3,-46],[9,-43],[21,39],[16,-41],[-7,-46],[-6,-45],[14,-45],[-17,-42]],[[1230,8319],[-5,5],[-16,32],[-3,13],[3,8],[18,-8],[3,-7],[3,-38],[-3,-5]],[[1749,8292],[-16,32],[16,43],[4,-43],[-4,-32]],[[2663,8314],[-3,10],[3,4],[1,-4],[-1,-10]],[[669,8277],[0,1],[0,2],[1,-2],[-1,-1]],[[1645,8275],[2,3],[-2,6],[-3,-6],[3,-3]],[[1479,8273],[-21,0],[-6,5],[6,21],[21,-2],[3,-19],[-3,-5]],[[1541,8275],[-3,3],[-18,34],[-13,12],[-7,18],[-4,27],[-12,45],[-5,9],[-18,37],[-3,14],[-5,31],[5,17],[21,1],[10,-18],[11,-12],[20,-3],[13,-30],[5,-46],[-11,-45],[-3,-45],[17,-41],[3,-5],[-3,-3]],[[2663,8272],[-21,4],[-3,2],[3,13],[3,33],[18,28],[12,-28],[-9,-46],[-3,-6]],[[815,8232],[0,1],[0,1],[-1,-1],[1,-1]],[[2185,8231],[15,2],[-15,1],[-1,-1],[1,-2]],[[2226,8223],[13,10],[-13,8],[-19,-8],[19,-10]],[[1936,8220],[-14,13],[14,15],[3,-15],[-3,-13]],[[2953,8211],[10,22],[-7,45],[3,46],[-5,45],[-1,2],[0,-2],[-2,-45],[2,-46],[-14,-45],[14,-22]],[[2496,8222],[-9,11],[9,7],[13,-7],[-13,-11]],[[314,8188],[2,39],[0,6],[21,38],[21,-1],[20,4],[5,1]],[[289,8176],[6,-11],[19,23]],[[2289,8176],[13,12],[-13,7],[-21,5],[-11,-12],[11,-10],[21,-2]],[[565,8182],[-20,2],[-4,4],[-17,25],[-21,-2],[-7,22],[7,31],[21,-17],[21,10],[14,-24],[6,-27],[10,-18],[-10,-6]],[[1541,8158],[9,30],[-9,7],[-6,-7],[6,-30]],[[2559,8187],[2,1],[-2,0],[-1,0],[1,-1]],[[648,8138],[2,4],[-2,10],[-5,-10],[5,-4]],[[2393,8142],[0,46],[0,2],[-1,-2],[-20,-36],[-21,-1],[-21,7],[-19,-16],[19,-19],[21,9],[21,-28],[21,38]],[[1998,8117],[-7,25],[2,46],[5,38],[14,-38],[-6,-46],[-8,-25]],[[2123,8101],[-7,41],[7,34],[3,-34],[-3,-41]],[[2683,8140],[2,2],[-2,4],[-15,42],[-3,45],[-2,3],[-10,-3],[-7,-45],[17,-20],[17,-26],[3,-2]],[[3078,8141],[-1,1],[1,1],[0,-1],[0,-1]],[[2310,8064],[7,33],[-7,42],[-10,-42],[10,-33]],[[1500,8092],[2,5],[-2,2],[-12,-2],[12,-5]],[[3318,8087],[-12,2],[-2,8],[0,9]],[[607,8049],[-5,3],[5,2],[4,-2],[-4,-3]],[[2289,8015],[17,37],[-17,27],[-12,-27],[12,-37]],[[2019,8049],[-1,3],[1,4],[2,-4],[-2,-3]],[[1251,8051],[-1,1],[1,0],[0,-1]],[[1022,8051],[-4,1],[4,33],[1,-33],[-1,-1]],[[1168,8022],[-21,-11],[-4,41],[4,40],[9,5],[12,2],[0,-2],[14,-45],[-14,-30]],[[2579,8036],[-4,16],[4,28],[5,-28],[-5,-16]],[[2995,8018],[-2,34],[-5,45],[-14,44],[0,1],[0,2],[21,3],[6,-5],[4,-45],[-8,-45],[-2,-34]],[[2268,7981],[17,25],[-17,28],[-19,-28],[19,-25]],[[2621,8000],[-6,6],[3,46],[3,8],[18,-8],[-11,-46],[-7,-6]],[[628,7958],[4,3],[-4,5],[-21,0],[-9,-5],[9,-5],[21,2]],[[1458,7941],[8,20],[-8,20],[-15,25],[-6,15],[-2,-15],[2,-17],[9,-28],[12,-20]],[[835,7958],[-10,3],[10,14],[4,-14],[-4,-3]],[[1105,7949],[-21,2],[-2,10],[2,13],[21,23],[8,-36],[-8,-12]],[[1707,7947],[-20,4],[-5,10],[-1,45],[-2,46],[-1,45],[-12,14],[-5,31],[-3,46],[8,25],[21,-22],[3,-3],[17,-27],[9,27],[-6,45],[-3,14],[-6,31],[6,38],[21,3],[18,-41],[3,-11],[6,-34],[12,-45],[-13,-46],[-5,-17],[-21,-2],[-21,1],[-15,-27],[7,-45],[7,-46],[1,-3],[6,-42],[-6,-14]],[[2579,7961],[1,0],[-1,0]],[[2787,7923],[0,38],[-21,38],[-8,7],[8,13],[19,33],[-1,45],[-18,35],[-20,-2],[-14,12],[-7,35],[-13,11],[5,45],[5,45],[3,4],[4,-4],[17,-30],[9,-15],[11,-20],[7,20],[1,45],[-8,29],[-4,17],[4,13],[16,32],[5,25],[12,-25],[9,-15],[5,15],[-5,40],[-2,5],[-19,12],[-21,-11],[-2,-1],[-18,-2],[-21,-21],[-12,23],[-9,18],[-11,28],[11,19],[21,13],[21,-14],[16,27],[4,36],[21,1],[21,-33],[18,42],[3,5],[20,6],[17,-11],[4,-7],[7,-39],[5,-45],[9,-38],[2,-8],[5,-45],[14,-26],[3,-19],[-3,-37],[-9,37],[-12,28],[-4,17],[-17,34],[-19,-34],[6,-45],[5,-46],[1,-45],[-14,-18],[-6,18],[-14,37],[-18,-37],[1,-45],[-4,-18],[-15,-28],[1,-45],[14,-25],[2,-20],[-2,-13],[-8,-33],[-12,-45],[-1,-38]],[[2185,7910],[4,6],[-4,4],[-18,-4],[18,-6]],[[3161,7896],[6,20],[-6,17],[-18,-17],[18,-20]],[[3202,7908],[1,8],[-1,0],[-2,0],[2,-8]],[[358,7866],[-1,4],[1,5],[2,-5],[-2,-4]],[[2081,7864],[-21,0],[-9,6],[9,31],[21,-8],[5,-23],[-5,-6]],[[2247,7870],[9,0],[-9,0]],[[2123,7820],[0,5],[0,2],[-1,-2],[1,-5]],[[1894,7822],[-5,3],[5,2],[1,-2],[-1,-3]],[[2206,7816],[-21,-1],[-21,9],[0,1],[0,1],[21,12],[21,-3],[13,-10],[-13,-9]],[[2912,7800],[12,25],[-12,12],[-9,-12],[9,-25]],[[2413,7815],[-8,10],[-12,28],[-21,8],[-4,9],[4,8],[21,22],[20,-29],[1,-1],[15,-45],[-16,-10]],[[1707,7799],[7,26],[-7,40],[-15,-40],[15,-26]],[[3617,7825],[-20,-10],[-12,10],[-9,11],[-21,30],[-2,4],[-18,34],[-21,1],[-11,11],[-10,23],[-8,-23],[-13,-14],[-14,-32],[-6,-16],[-11,16],[2,46],[4,45],[-16,14],[-21,4],[-21,-11],[-3,-7],[-17,-32],[-21,7],[-21,8],[-9,17],[-12,28],[-4,17],[-17,35],[-13,11],[-7,11],[-21,1],[-14,33],[-1,45],[-6,20],[-21,4],[-20,-17],[-15,-7],[-6,-21],[-6,21],[-15,9],[-14,37],[7,45],[7,10],[21,34],[1,1],[20,19],[6,17]],[[3164,8380],[-3,3],[-21,-2],[-21,-7],[-2,-5],[-18,-25],[-21,13],[-5,12],[-10,45],[7,46],[-13,45],[-21,34],[-2,12],[2,18],[5,-18],[16,-45],[14,34]],[[3509,7935],[5,-10],[4,12]],[[3589,7872],[0,-2],[8,-25],[20,-20]],[[3659,7784],[-1,17]],[[3666,7799],[-7,-15]],[[399,7766],[13,14],[8,14],[21,20],[21,-14],[20,21],[12,4],[-12,8],[-15,37],[15,19],[21,26],[0,1],[21,45],[21,-4],[20,4],[1,0],[-1,3],[-20,13],[-21,-16],[-21,17],[-20,-17],[-1,-1],[-20,-13],[-21,-14],[-11,-17],[-10,-33],[-4,-13],[-17,-33],[-5,-12],[-16,-44],[-1,-1],[1,-1],[21,-13]],[[2891,7773],[5,7],[-5,6],[-1,-6],[1,-7]],[[1043,7763],[-9,17],[9,20],[11,-20],[-11,-17]],[[1666,7779],[-1,1],[1,2],[1,-2],[-1,-1]],[[2725,7778],[-1,2],[1,1],[1,-1],[-1,-2]],[[3119,7769],[-20,-1],[-3,12],[-8,45],[-10,25],[-12,20],[12,16],[21,8],[20,-19],[3,-5],[2,-45],[-3,-45],[-2,-11]],[[2019,7731],[1,3],[-1,38],[-8,-38],[8,-3]],[[2372,7712],[9,22],[-9,10],[-21,8],[-21,2],[-20,-6],[-21,4],[-21,19],[-3,9],[-18,18],[-17,-18],[17,-32],[8,-14],[13,-11],[21,-5],[21,-21],[20,7],[21,11],[21,-3]],[[3016,7731],[-21,-20],[-21,-4],[-18,27],[8,46],[10,12],[21,6],[14,27],[7,13],[20,14],[21,6],[13,-33],[-13,-18],[-21,-5],[-15,-22],[-1,-46],[-4,-3]],[[3265,7714],[2,20],[-2,10],[-7,-10],[7,-20]],[[2974,7730],[-3,4],[3,17],[11,-17],[-11,-4]],[[3763,7712],[-14,22],[1,5]],[[3771,7740],[2,-6],[-10,-22]],[[399,7673],[-19,16],[-2,5],[-5,40],[5,6],[8,-6],[13,-20],[17,-25],[-17,-16]],[[1334,7672],[3,17],[-3,5],[-4,-5],[4,-17]],[[2434,7688],[6,1],[-6,1],[-1,-1],[1,-1]],[[2642,7674],[6,15],[-6,13],[-21,7],[-12,-20],[12,-30],[21,15]],[[2683,7688],[6,1],[-6,2],[-17,43],[-3,12],[-7,-12],[7,-13],[19,-32],[1,-1]],[[2829,7682],[5,7],[-5,7],[-21,-5],[-2,-2],[2,-6],[21,-1]],[[2891,7686],[-1,3],[1,5],[6,-5],[-6,-3]],[[3244,7681],[1,8],[-1,1],[-21,4],[-11,-5],[11,-34],[21,26]],[[2746,7636],[6,8],[-6,5],[-4,-5],[4,-8]],[[3555,7639],[4,5],[-4,2],[-5,-2],[5,-5]],[[2040,7578],[3,20],[-3,28],[-5,-28],[5,-20]],[[565,7592],[-20,-16],[-21,13],[-10,9],[10,12],[21,11],[20,-7],[5,-16],[-5,-6]],[[2496,7584],[16,14],[-16,12],[-18,34],[-2,4],[-2,-4],[2,-6],[14,-40],[6,-14]],[[1687,7597],[0,1],[0,1],[-1,-1],[1,-1]],[[3805,7586],[4,12],[-4,8],[-5,-8],[5,-12]],[[1936,7552],[-1,1],[1,3],[0,-3],[0,-1]],[[3722,7542],[-2,11],[2,14],[12,-14],[-12,-11]],[[524,7502],[0,6],[-4,0],[4,-6]],[[2060,7506],[10,2],[-10,1],[-20,13],[-8,31],[-13,17],[-10,-17],[-6,-45],[16,-22],[21,16],[20,4]],[[3162,7508],[20,43],[10,2],[-10,12],[-21,-8],[-1,-4],[-20,-33],[-19,-12],[19,-25],[21,23],[1,2]],[[3327,7502],[-1,6],[1,14],[1,-14],[-1,-6]],[[2476,7425],[14,37],[-14,45],[-21,-45],[21,-37]],[[3036,7431],[0,31],[-2,46],[2,3],[6,-3],[-4,-46],[-2,-31]],[[856,7411],[-5,6],[-16,30],[-20,5],[-6,10],[6,34],[20,-24],[6,-10],[15,-38],[2,-7],[-2,-6]],[[731,7414],[-2,3],[2,2],[4,-2],[-4,-3]],[[3452,7407],[-10,10],[10,15],[18,-15],[-18,-10]],[[3942,7455],[-4,7],[0,3]],[[323,7371],[-7,-11],[-21,-7],[-8,18],[-1,46],[9,19],[21,23],[11,3],[10,7],[21,4],[2,-11],[-2,-31],[-3,-14],[-18,-19],[-14,-27]],[[1334,7367],[-6,4],[6,14],[8,-14],[-8,-4]],[[3638,7327],[19,44],[-3,46],[-16,24],[-13,21],[-7,6],[-21,3],[-19,37],[-2,3],[-21,8],[-7,-11],[7,-11],[21,-35],[0,-1],[21,-12],[20,-32],[1,-6],[9,-40],[11,-44]],[[939,7324],[2,2],[-2,4],[-3,-4],[3,-2]],[[1624,7322],[3,4],[-3,14],[-10,-14],[10,-4]],[[2123,7324],[-1,2],[1,1],[15,-1],[-15,-2]],[[2413,7314],[-6,12],[-14,43],[-21,-23],[-21,-4],[-21,27],[-1,2],[1,6],[3,40],[18,29],[21,2],[21,-9],[12,-22],[8,-17],[16,-29],[-5,-45],[-11,-12]],[[2725,7323],[1,3],[-1,3],[-20,-3],[20,-3]],[[2808,7326]],[[1604,7263],[6,18],[-6,37],[-10,-37],[10,-18]],[[2081,7253],[7,28],[-7,7],[-10,-7],[10,-28]],[[2206,7262],[-8,19],[8,12],[6,-12],[-6,-19]],[[2849,7272],[-2,9],[-14,45],[10,45],[4,46],[-13,45],[15,38],[14,-38],[-10,-45],[17,-37],[5,-9],[-5,-9],[-11,-36],[-8,-45],[-2,-9]],[[3182,7258],[-5,23],[5,16],[3,-16],[-3,-23]],[[877,7224],[17,11],[-17,16],[-7,-16],[7,-11]],[[1583,7222],[8,13],[-8,24],[-21,-1],[-9,-23],[9,-39],[21,26]],[[586,7214],[-7,21],[-1,46],[-13,35],[-3,10],[3,7],[20,38],[1,3],[21,41],[13,-44],[-13,-23],[-8,-22],[4,-45],[-8,-46],[-9,-21]],[[3431,7231],[7,4],[-7,14],[-9,-14],[9,-4]],[[3369,7233],[-1,2],[1,4],[2,-4],[-2,-2]],[[3057,7207],[-14,28],[-7,27],[-3,19],[3,5],[3,-5],[18,-32],[10,-14],[-10,-28]],[[3016,7227],[-8,8],[8,9],[4,-9],[-4,-8]],[[482,7179],[-4,11],[4,4],[5,-4],[-5,-11]],[[1147,7182],[-3,8],[2,45],[1,1],[4,-1],[16,-45],[-20,-8]],[[2455,7185],[7,5],[-7,12],[-5,-12],[5,-5]],[[2517,7182],[-5,8],[-16,19],[-20,19],[-4,7],[-17,41],[-5,5],[5,23],[21,-13],[4,-10],[16,-19],[21,-14],[18,-13],[-1,-45],[-17,-8]],[[3971,7183],[7,7],[-7,13],[-13,-13],[13,-7]],[[2995,7158],[-10,32],[10,31],[9,-31],[-9,-32]],[[2994,7190],[1,1],[0,-1],[0,-1],[-1,1]],[[607,7140],[-21,-13],[-21,-1],[-14,19],[-6,11],[-21,12],[-8,22],[8,6],[21,9],[20,3],[12,-18],[9,-14],[21,-28],[2,-3],[-2,-5]],[[939,7142],[-10,3],[10,11],[8,-11],[-8,-3]],[[1375,7142],[0,3],[0,8],[1,-8],[-1,-3]],[[2268,7139],[1,6],[-1,4],[-2,-4],[2,-6]],[[1749,7101],[-6,44],[6,17],[4,-17],[-4,-44]],[[2995,7120],[-15,25],[-4,45],[-2,37],[-1,8],[1,2],[21,17],[21,17],[19,-36],[-19,-35],[-4,-10],[-11,-45],[-6,-25]],[[378,7083],[-8,16],[8,14],[6,-14],[-6,-16]],[[2247,7078],[3,21],[-3,4],[0,-4],[0,-21]],[[1230,7072],[-21,14],[-21,11],[-20,-1],[-14,3],[14,17],[16,29],[-16,45],[20,5],[21,-4],[2,-1],[19,-31],[8,-14],[-1,-46],[-7,-27]],[[1749,7049],[-21,-10],[-19,15],[19,31],[21,13],[1,-44],[-1,-5]],[[2891,7046],[4,8],[-4,14],[-21,7],[-18,-21],[18,-34],[21,26]],[[3493,7048],[6,6],[-6,19],[-3,-19],[3,-6]],[[1022,7007],[-2,2],[2,2],[6,-2],[-6,-2]],[[2206,6999],[-7,10],[7,15],[3,-15],[-3,-10]],[[2849,7007],[1,2],[-1,1],[-5,-1],[5,-2]],[[3161,6972],[6,37],[-5,45],[-1,5],[-1,-5],[-3,-45],[4,-37]],[[3580,7009],[-4,-13],[-7,13],[-3,45],[-11,29],[-20,12],[-6,4],[1,46],[0,45],[-16,24],[-16,21],[15,46],[-8,45],[-12,44],[0,1],[0,3],[21,7],[18,-10],[3,-3],[19,-42],[1,-5],[12,-40],[-12,-44],[-1,-2],[-16,-45],[15,-45],[2,-5],[21,-35],[6,-6],[15,-36],[15,36],[6,8],[6,-8],[1,-45],[-7,-6],[-21,1],[-17,-40]],[[3348,7006],[-21,-3],[-14,6],[14,4],[21,-2],[1,-2],[-1,-3]],[[1417,6951],[5,12],[-5,8],[-5,-8],[5,-12]],[[1213,6963],[-4,-11],[-2,11],[-3,46],[-10,45],[-6,7],[-20,-2],[-21,-4],[-1,-1],[-20,-30],[-18,30],[-3,20],[-15,25],[15,6],[21,27],[7,13],[-7,21],[-21,19],[-5,5],[-16,20],[-20,12],[-21,2],[-8,11],[8,6],[21,16],[20,-3],[21,-3],[21,-7],[21,25],[12,12],[9,15],[9,-15],[11,-27],[14,-19],[7,-3],[21,-19],[21,0],[20,21],[21,-13],[19,-31],[-19,-44],[-2,-1],[-19,-14],[-11,-32],[-6,-45],[-3,-1],[-16,-44],[-5,-18],[-17,-28]],[[1704,6963],[-17,-34],[-21,-10],[-4,44],[4,21],[7,25],[-7,13],[-21,10],[-16,22],[16,20],[11,25],[10,33],[21,-4],[8,17],[12,19],[16,26],[5,16],[21,19],[21,1],[13,-36],[0,-45],[7,-21],[21,-9],[21,5],[11,-21],[9,-45],[-7,-45],[-13,-26],[-10,26],[-1,45],[-10,32],[-21,4],[-20,-8],[-7,-28],[-14,-40],[-9,-5],[-12,-7],[-21,-31],[-3,-8]],[[2427,6963],[-14,-18],[-6,18],[2,46],[4,5],[8,40],[-2,45],[-6,25],[-5,21],[5,24],[21,-8],[14,-16],[7,-9],[21,-29],[20,-1],[21,8],[21,-10],[21,0],[20,-3],[2,-2],[19,-18],[21,-6],[17,-21],[-17,-13],[-21,-9],[-21,-1],[-20,8],[-21,0],[-14,15],[-7,21],[-14,-21],[-7,-9],[-20,-11],[-21,-16],[-11,-9],[-10,-28],[-7,-18]],[[3680,6928],[6,35],[-6,16],[-6,-16],[6,-35]],[[1375,6909],[6,9],[-6,13],[-9,-13],[9,-9]],[[3016,6959],[-2,4],[-19,44],[-1,2],[-1,45],[-19,37],[-13,8],[2,46],[-1,45],[-9,28],[-21,7],[-13,10],[13,17],[21,-6],[21,32],[4,3],[-4,4],[-17,41],[13,45],[4,11],[19,-11],[2,0],[21,-22],[20,16],[12,-39],[9,-19],[16,-26],[5,-8],[19,-38],[2,-38],[1,-7],[11,-45],[8,-20],[7,-26],[14,-39],[1,-6],[-1,-27],[-1,-18],[-12,-46],[-8,-15],[-11,15],[-9,18],[-21,18],[-8,10],[-13,31],[-5,14],[-5,45],[-11,16],[-15,30],[-5,11],[-3,-11],[-3,-46],[6,-44],[0,-1],[12,-45],[-11,-46],[-1,-4]],[[1354,6841],[9,32],[-9,32],[-13,-32],[13,-32]],[[2268,6867],[6,6],[1,45],[4,45],[-2,46],[-9,35],[-6,-35],[-3,-46],[3,-45],[-15,-41],[-5,-4],[5,-8],[21,2]],[[2621,6838],[-21,11],[-21,19],[-2,5],[2,7],[14,38],[7,15],[18,-15],[3,-4],[13,-41],[-13,-35]],[[2995,6870],[-21,-18],[-14,21],[14,12],[21,-10],[1,-2],[-1,-3]],[[1936,6802],[9,25],[12,21],[20,17],[4,8],[17,40],[3,5],[8,45],[-11,21],[-10,25],[-5,45],[-6,11],[-15,34],[-5,31],[-10,15],[2,45],[-6,45],[-2,46],[-5,35],[-8,10],[8,17],[3,28],[18,36],[7,10],[13,22],[21,10],[10,13],[-10,33],[-21,-20],[-20,-6],[-21,-3],[-6,-4],[-15,-21],[-9,21],[-12,8],[-21,-4],[-10,-4],[10,-5],[21,-10],[15,-30],[4,-46],[-1,-45],[3,-13],[11,-32],[4,-46],[-7,-45],[11,-45],[-3,-46],[5,-9],[15,-36],[6,-15],[11,-30],[1,-46],[-6,-45],[-6,-15],[-21,-30],[-1,0],[-20,-18],[-11,-28],[11,-45]],[[1915,6782],[21,20]],[[2517,6823],[16,4],[-1,46],[-15,19],[-5,-19],[-16,-30],[-20,-13],[-6,-3],[6,-5],[20,-3],[21,4]],[[2579,6825],[1,2],[-1,1],[-20,9],[-13,-10],[13,-4],[20,2]],[[1654,6827],[-9,-16],[-21,-16],[-20,14],[-11,18],[-10,20],[-21,-9],[-9,35],[9,35],[21,-12],[21,-5],[20,-4],[9,31],[12,33],[3,12],[-3,14],[-21,23],[-20,3],[-4,6],[-4,45],[7,45],[1,1],[0,-1],[20,-16],[12,16],[9,14],[11,32],[7,45],[-2,45],[5,8],[6,-8],[15,-18],[20,3],[7,15],[-1,46],[15,6],[11,-6],[10,-9],[21,-6],[20,-16],[21,1],[21,-16],[-20,-45],[20,-14],[21,-13],[10,-18],[10,-24],[6,-22],[-6,-9],[-11,-36],[5,-45],[6,-13],[21,9],[21,-38],[0,-4],[0,-1],[-19,-44],[-2,-3],[-21,-17],[-15,20],[-5,5],[-19,-5],[-2,-1],[-2,1],[-19,8],[-17,37],[5,46],[-6,45],[-3,2],[-3,-2],[-17,-17],[-10,-28],[-11,-34],[-21,-5],[-4,-7],[-8,-45],[-9,-33],[-20,3],[-7,-15],[-14,-28],[-12,-18]],[[2289,6824],[-4,3],[4,2],[7,-2],[-7,-3]],[[2143,6822],[-20,-5],[-21,4],[-5,6],[5,7],[21,0],[20,30],[2,-37],[-2,-5]],[[3140,6823],[1,4],[-1,4],[-1,-4],[1,-4]],[[1105,6763],[3,19],[-3,22],[-2,-22],[2,-19]],[[1894,6737],[21,45]],[[1915,6782],[-21,23],[-15,-23],[15,-45]],[[1749,6772],[-8,10],[-13,29],[-4,16],[4,23],[21,-14],[3,-9],[1,-45],[-4,-10]],[[3119,6761],[9,21],[-9,11],[-6,-11],[6,-21]],[[4926,6779],[-1,3],[1,8],[3,-8],[-3,-3]],[[3369,6740],[-5,42],[5,9],[4,-9],[-4,-42]],[[856,6726],[-7,11],[7,10],[3,-10],[-3,-11]],[[2455,6733],[6,4],[0,45],[-6,24],[-21,-10],[-21,-12],[-1,-2],[1,-9],[14,-36],[7,-4],[21,0]],[[1666,6736],[0,1],[0,-1]],[[2766,6720],[-20,-21],[-13,38],[-8,17],[-13,28],[13,22],[14,-22],[7,-14],[20,-18],[12,-13],[-12,-17]],[[3285,6730],[-20,7],[20,4],[3,-4],[-3,-7]],[[3991,6717],[-20,10],[-21,3],[-4,7],[-2,45],[6,9],[3,-9],[18,-42],[20,25],[16,-28],[-16,-20]],[[4469,6735],[3,2],[-3,4],[-13,-4],[13,-2]],[[109,6647],[5,36]],[[111,6695],[-2,2],[-11,-6],[11,-44]],[[2060,6680],[-20,3],[-4,8],[4,17],[20,0],[7,-17],[-7,-11]],[[3535,6681],[6,10],[-6,10],[-21,-8],[-2,-2],[2,-17],[21,7]],[[3223,6685],[-21,-18],[-7,24],[7,11],[21,5],[8,-16],[-8,-6]],[[3389,6670],[-20,11],[-4,10],[4,43],[20,-2],[11,-41],[-11,-21]],[[690,6641],[-3,5],[3,3],[2,-3],[-2,-5]],[[2081,6644],[-21,-5],[-20,-1],[-21,-24],[-21,-1],[-12,33],[12,45],[19,46],[-2,45],[4,3],[21,-1],[6,-2],[14,-16],[21,-2],[6,-27],[3,-46],[-6,-45],[-3,-2]],[[3212,6646],[-10,-25],[-16,25],[-4,14],[-21,-3],[-15,34],[15,37],[21,-16],[20,25],[21,13],[21,4],[21,5],[20,1],[14,-23],[-14,-35],[-20,-8],[-3,-3],[-18,-40],[-21,12],[-11,-17]],[[3680,6672],[-21,-4],[-21,-7],[-6,30],[6,31],[5,15],[-5,15],[-20,-2],[-21,-7],[-17,39],[-4,43],[0,2],[-15,46],[-6,12],[-20,-4],[-11,-8],[-10,-7],[-15,-39],[4,-45],[-10,-41],[-11,41],[-10,22],[-20,19],[-3,4],[3,10],[12,36],[-12,27],[-21,6],[-7,12],[-7,45],[2,46],[-9,23],[-21,-6],[-5,-17],[-15,-24],[-9,-22],[-12,-28],[-21,19],[-19,9],[-2,1],[-14,45],[-7,27],[-13,-27],[2,-46],[-9,-22],[-21,22],[-21,-38],[-3,-7],[-18,-24],[-20,14],[-2,10],[2,28],[2,17],[13,46],[0,45],[-14,45],[10,46],[-11,28],[-4,17],[-16,45],[-1,8],[-5,38],[5,28],[4,17],[17,40],[3,5],[-3,17],[-2,29],[2,7],[13,-7],[7,-8],[21,-36],[1,-2],[-1,-5],[-5,-40],[-16,-45],[0,-7],[21,-35],[3,-4],[18,-30],[21,7],[13,-22],[7,-23],[17,23],[4,4],[2,-4],[4,-45],[5,-46],[-11,-35],[-5,-10],[5,-4],[21,1],[3,3],[18,19],[10,26],[11,36],[20,-34],[21,3],[4,-5],[17,-28],[21,9],[12,-26],[1,-45],[7,-35],[21,1],[21,7],[21,-7],[20,17],[12,-29],[3,-45],[6,-12],[20,-33],[1,-6],[7,-40],[14,-32],[20,-1],[21,7],[21,-2],[14,-17],[7,-5],[5,5],[16,21],[20,13],[4,11],[-4,12],[-10,34],[-10,24],[-7,21],[7,13],[16,32],[1,46],[3,34],[2,11],[0,45],[11,46],[8,11],[13,-11],[8,-13],[21,-3],[6,16],[14,29],[9,-29],[12,-25],[8,-21],[9,-45],[-13,-45],[-4,-17],[-14,-29],[-1,-45],[-6,-6],[-2,6],[-6,45],[-12,14],[-7,-14],[-14,-34],[-4,-11],[-4,-45],[4,-46],[4,-8],[18,-37],[-18,-28],[-21,-10],[-11,-7],[3,-46],[-13,-18],[-20,0],[-18,18],[-3,4],[-4,-4],[-17,-19]],[[3036,6634],[-20,-31],[-21,18],[-21,22],[-4,3],[-15,45],[-2,15],[-3,31],[-10,45],[13,18],[15,27],[-15,23],[-14,23],[-6,45],[20,23],[12,-23],[9,-9],[21,7],[21,-43],[-21,-38],[-9,-8],[-7,-45],[16,-30],[8,-15],[-7,-46],[20,-21],[20,-23],[1,-1],[-1,-12]],[[3867,6637],[-9,9],[9,4],[2,-4],[-2,-9]],[[3991,6619],[6,27],[-6,6],[-20,-6],[20,-27]],[[2746,6582],[1,19],[6,45],[-7,7],[-9,-7],[7,-45],[2,-19]],[[2922,8808],[-9,-31],[19,-29],[14,-16],[1,-45],[-1,-46],[5,-45],[2,-20],[2,-25],[-2,-7],[-16,7],[-5,2],[-20,40],[-2,3],[2,27],[0,18],[0,2],[-21,33],[-21,5],[-21,-20],[-13,26],[-7,41],[-1,4],[-20,41],[-12,-41],[2,-45],[10,-35],[1,-11],[-1,-2],[-1,2],[-20,38],[-3,8],[-15,45],[7,45],[0,46],[-10,4],[-3,-4],[-17,-22],[-11,22],[-10,31],[-7,14],[-14,30],[-15,-30],[-2,-45],[4,-46],[-2,-45],[-3,-45],[-3,-13],[-20,10],[-1,3],[-5,45],[5,45],[-20,28],[-8,18],[6,45],[-5,45],[-14,35],[-21,6],[-21,-1],[-6,6],[-14,9],[-7,-9],[7,-20],[5,-26],[15,-33],[4,-12],[-4,-36],[-20,34],[-21,-18],[-10,20],[-11,36],[-21,-24],[-7,33],[-13,29],[-7,17],[-9,45],[-5,9],[-6,-9],[-8,-45],[3,-46],[11,-38],[1,-7],[-1,-4],[-7,4],[-14,14],[-14,-14],[-7,-6],[-4,6],[-16,36],[-2,9],[-14,46],[16,29],[5,16],[1,45],[-6,32],[-2,14],[-7,45],[9,8],[4,-8],[16,-35],[9,-10],[12,-23],[17,23],[-17,42],[-1,3],[-3,45],[4,11],[21,7],[3,28],[-3,10],[-21,16],[-21,-4],[-20,-2],[-21,13],[-8,12],[-13,40],[-1,5],[1,17],[21,9],[20,-26],[1,0],[0,1],[-14,45],[-7,15],[-9,30],[7,46],[-8,45],[10,25],[9,20],[2,46],[-11,34],[-8,-34],[-13,-24],[-11,-22],[-10,-26],[-8,-19],[-4,-45],[-8,-16],[-21,6],[-9,10],[-12,20],[-7,25],[-8,45],[-6,23],[-5,23],[-9,45],[-6,45],[-1,2],[0,-2],[-8,-45],[-6,-45],[-6,-40],[-2,-6],[2,-3],[13,-42],[7,-45],[-20,-35],[-12,-11],[12,-16],[20,-6],[10,-23],[11,-30],[21,-8],[7,-8],[11,-45],[-18,-13],[-21,-10],[-13,-22],[13,-35],[15,-11],[-15,-2],[-4,2],[-17,30],[-20,14],[-21,-6],[-8,-38],[8,-22],[16,-23],[5,-7],[17,-38],[-12,-46],[-4,-45],[-1,-4],[-3,4],[-16,45],[-2,1],[-21,15],[-12,30],[2,45],[-11,15],[-18,-15],[-2,-1],[-1,1],[-20,42],[-21,-17],[-15,-25],[-6,-16],[-13,-29],[-7,-7],[-21,-3],[-3,10],[-6,45],[-4,45],[-8,25],[-8,21],[-13,18],[-20,15],[-10,12],[-11,31],[-2,14],[-2,46],[4,26],[3,19],[7,46],[11,7],[20,0],[21,13],[21,21],[6,4],[15,18],[7,-18],[13,-24],[21,-21],[0,-1],[0,1],[0,5],[-1,40],[-18,45],[-2,2],[-20,8],[-21,-4],[-8,-6],[-13,-12],[-21,-3],[-20,10],[-12,5],[10,46],[2,4],[20,17],[21,22],[2,2],[-2,3],[-16,42],[-5,14],[-20,12],[-17,20],[-4,12],[-10,33],[-4,45],[-7,7],[-9,-7],[-12,-8],[-10,8],[-11,21],[-10,25],[-10,32],[-4,13],[-5,45],[-7,43]],[[3410,6598],[-1,3],[-20,40],[-11,5],[-9,3],[-14,42],[0,46],[-7,39],[-4,6],[-17,32],[-21,1],[-10,12],[10,25],[21,-17],[6,-8],[15,-37],[20,37],[1,1],[0,-1],[20,-45],[10,-45],[11,-37],[4,-9],[12,-45],[-15,-45],[-1,-3]],[[4075,6599],[-11,2],[11,7],[1,-7],[-1,-2]],[[254,6555],[0,1],[0,-1]],[[794,6554],[-1,1],[-20,34],[-21,11],[0,1],[21,10],[2,-10],[19,-45],[1,-1],[-1,-1]],[[1926,6555],[-11,-3],[-3,3],[-1,46],[4,45],[21,14],[6,-14],[15,-37],[20,10],[12,-18],[-12,-10],[-20,-5],[-21,-25],[-10,-6]],[[3202,6539],[9,16],[-9,20],[-20,3],[-15,-23],[15,-38],[20,22]],[[4989,6555],[-1,-1],[0,1],[-9,46],[6,45],[3,19],[15,26],[6,25],[1,6]],[[4989,6557],[0,-2]],[[3452,6498],[5,12],[-5,21],[-10,-21],[10,-12]],[[2829,6486],[-11,24],[-10,41],[-1,4],[1,5],[16,-5],[5,-1],[14,-44],[-14,-24]],[[4760,6495],[-11,15],[11,11],[6,-11],[-6,-15]],[[4220,6498],[-5,12],[5,13],[17,-13],[-17,-12]],[[4468,6510],[1,0],[2,0],[-2,-1],[-1,1]],[[1749,6464],[4,0],[-4,2],[-1,-2],[1,0]],[[1998,6425],[18,39],[-18,42],[-17,-42],[17,-39]],[[2060,6458],[3,6],[-3,12],[-20,-5],[-18,39],[-3,5],[-15,-5],[15,-29],[7,-17],[14,-15],[20,9]],[[4739,6458],[-2,6],[2,11],[2,-11],[-2,-6]],[[3223,6422],[-8,42],[8,9],[19,-9],[-19,-42]],[[4261,6458],[-4,6],[4,14],[5,-14],[-5,-6]],[[4511,6464],[-2,0],[2,4],[0,-4]],[[1728,6417],[1,2],[-1,2],[-4,-2],[4,-2]],[[3638,6393],[-20,5],[-14,21],[14,22],[20,-10],[3,-12],[-3,-26]],[[4178,6402],[-5,17],[5,20],[6,-20],[-6,-17]],[[1707,6372],[2,2],[-2,13],[-20,-1],[-20,-12],[20,-20],[20,18]],[[1936,6372],[3,2],[-3,4],[-21,5],[-4,-9],[4,-1],[21,-1]],[[815,6353],[-12,21],[12,17],[20,-17],[-20,-21]],[[939,6343],[-21,20],[-6,11],[-14,42],[-1,3],[-20,39],[-3,6],[3,7],[6,-7],[15,-41],[2,-4],[18,-29],[21,-9],[4,-7],[-4,-31]],[[2621,6356],[-12,18],[-5,45],[17,30],[5,-30],[-2,-45],[-3,-18]],[[3285,6356],[-20,17],[-21,-2],[-5,3],[-16,12],[-20,33],[-1,3],[-20,9],[-16,33],[16,14],[20,14],[13,18],[8,16],[19,29],[-4,46],[6,35],[6,-35],[15,-45],[17,45],[3,6],[20,-6],[-12,-46],[-8,-10],[-15,-35],[-5,-44],[0,-2],[-1,-45],[1,-29],[20,-2],[14,-14],[-14,-18]],[[3514,6370],[-2,4],[2,1],[11,-1],[-11,-4]],[[3597,6368],[-3,6],[3,17],[4,-17],[-4,-6]],[[129,6353],[13,21],[-13,30],[-3,15],[3,9],[18,36],[3,7],[21,12],[17,-19],[4,-3],[17,-42],[3,-45],[0,-1],[21,-5],[3,6],[-3,10],[-12,35],[12,18],[21,19],[21,2],[8,6],[-8,5],[-21,4],[-21,24],[-10,13],[-11,7],[-20,7],[-21,8],[-13,23],[-8,18],[-21,24],[-11,4],[-9,38],[-1,7],[-12,13]],[[114,6577],[5,-22],[0,-18]],[[61,6432],[-4,-13],[10,-21],[19,-24],[2,-2],[21,-39],[20,20]],[[1292,6295],[-21,24],[-20,4],[-3,5],[3,41],[0,5],[20,17],[21,-13],[6,-4],[9,-46],[-15,-33]],[[1458,6326],[0,2],[0,2],[1,-2],[-1,-2]],[[3016,6327],[-21,-3],[-21,3],[-1,1],[1,24],[3,22],[18,5],[5,-5],[16,-39],[1,-7],[-1,-1]],[[2310,6288],[-18,40],[18,22],[7,-22],[-7,-40]],[[3326,6328],[-20,-29],[-21,19],[-10,10],[-10,13],[-21,4],[-21,17],[-17,12],[-4,6],[-20,3],[-21,-6],[-14,42],[-4,45],[18,37],[12,9],[-12,16],[-21,23],[-4,6],[4,46],[-13,45],[3,45],[7,46],[3,7],[21,21],[21,0],[20,8],[21,5],[21,3],[21,0],[20,-2],[21,-2],[10,-40],[-2,-46],[-8,-36],[-7,-9],[7,-4],[17,-41],[-4,-46],[-13,-36],[-6,-9],[-15,-37],[-1,-9],[1,-20],[21,0],[17,-25],[4,-17],[5,-28],[-5,-42],[-1,-4]],[[3974,6328],[17,31],[21,5],[17,10],[-17,8],[-21,13],[-20,-21],[-3,-46],[3,-17],[3,17]],[[4075,6327],[3,1],[-3,5],[-4,-5],[4,-1]],[[4199,6321],[7,7],[-7,9],[-4,-9],[4,-7]],[[4365,6326],[1,2],[-1,3],[-4,-3],[4,-2]],[[67,6261],[-21,13],[-4,9],[-8,45],[12,18],[15,-18],[6,-19],[6,-26],[-6,-22]],[[1396,6280],[-4,3],[4,8],[2,-8],[-2,-3]],[[963,6283],[-3,-5],[-21,-21],[-17,26],[-4,7],[-20,20],[-5,18],[-16,26],[-13,20],[-8,12],[-21,-11],[-9,44],[9,31],[5,14],[-5,11],[-20,20],[-21,-14],[-21,-4],[-21,-3],[-10,-10],[-11,-6],[-5,6],[3,46],[-18,35],[-21,9],[0,1],[-21,18],[-21,6],[-15,-24],[-5,-20],[-13,20],[-8,10],[-9,-10],[-12,-9],[-11,9],[-10,8],[-17,38],[-3,29],[-4,16],[-17,17],[-19,28],[-2,5],[-21,5],[-20,3],[-21,1],[-21,-11],[-21,19],[-21,-2],[-20,-15],[-19,41],[-2,3],[-21,17],[-21,21],[-20,-5],[-18,9],[18,16],[20,-6],[21,20],[12,15],[9,13],[21,-7],[5,-6],[15,-28],[21,-10],[21,-1],[4,-6],[17,-13],[21,12],[3,1],[17,4],[21,20],[21,-15],[21,18],[20,-5],[14,-22],[-7,-45],[7,-46],[-3,-45],[10,-25],[21,3],[19,22],[2,2],[20,36],[3,7],[16,46],[2,1],[2,-1],[19,-12],[21,-12],[20,-12],[8,-10],[13,-8],[21,3],[21,-15],[18,-25],[3,-35],[0,-10],[20,-19],[21,3],[21,14],[2,2],[19,7],[3,-7],[1,-46],[-4,-30],[-4,-15],[4,-5],[20,-17],[21,2],[16,20],[3,45],[2,5],[2,-5],[3,-45],[16,-18],[20,-4],[21,-17],[4,-7],[-4,-7],[-21,-24],[-20,2],[-21,-16],[17,-45],[4,-17],[12,-29],[-12,-11],[-18,-34]],[[3535,6251],[13,32],[-13,17],[-14,-17],[14,-32]],[[150,6228],[-21,5],[-11,5],[11,8],[21,23],[10,-31],[-10,-10]],[[1770,6232],[-21,6],[21,11],[16,-11],[-16,-6]],[[3119,6227],[-15,11],[-5,25],[-4,20],[4,8],[15,-8],[5,-4],[12,-41],[-12,-11]],[[3618,6215],[-11,23],[11,18],[7,-18],[-7,-23]],[[4926,6232],[-1,6],[-4,45],[5,11],[4,-11],[-3,-45],[-1,-6]],[[752,6187],[-4,5],[4,42],[7,-42],[-7,-5]],[[2060,6183],[1,9],[-1,1],[-17,-1],[17,-9]],[[2310,6183],[-15,9],[5,46],[10,38],[4,-38],[-2,-46],[-2,-9]],[[648,6145],[4,2],[-4,1],[-4,-1],[4,-2]],[[939,6137],[-9,10],[9,23],[8,-23],[-8,-10]],[[3075,6147],[-18,-22],[-17,22],[13,45],[4,2],[21,23],[10,-25],[-10,-29],[-3,-16]],[[3370,6147],[-1,-4],[-3,4],[-18,40],[-2,5],[2,23],[21,15],[20,-33],[1,-5],[-1,-4],[-19,-41]],[[3659,6141],[3,6],[-3,3],[-4,-3],[4,-6]],[[3588,6147],[-12,-33],[-8,33],[-13,26],[-6,19],[-4,46],[10,23],[14,22],[-7,45],[-7,17],[-20,-8],[-7,-9],[-14,-16],[-10,16],[-11,27],[-6,19],[6,43],[21,-11],[15,13],[6,7],[16,-7],[4,-4],[4,4],[17,45],[-6,46],[-15,20],[-20,19],[-21,-3],[-9,9],[9,17],[21,11],[20,3],[21,-8],[5,-23],[16,-36],[19,-9],[2,-1],[0,1],[20,37],[4,8],[0,46],[17,18],[5,-18],[11,-46],[5,-20],[9,-25],[-9,-25],[-12,-21],[2,-45],[10,-24],[9,-21],[12,-36],[1,-10],[-1,-4],[-7,4],[-14,19],[-21,-3],[-18,-16],[-3,-5],[-20,-21],[-21,6],[-10,-25],[4,-45],[6,-28],[8,-18],[-8,-16],[-9,-29]],[[4491,6147],[-1,-1],[-21,-2],[-4,3],[4,6],[21,-4],[1,-2]],[[3119,6100],[2,2],[-2,1],[0,-1],[0,-2]],[[2440,6102],[-6,-7],[-4,7],[-7,45],[11,43],[2,2],[19,46],[0,2],[7,43],[8,45],[1,46],[-5,45],[6,45],[4,41],[20,-6],[21,-3],[15,-32],[6,-31],[21,30],[0,1],[0,4],[-5,42],[-12,45],[3,46],[14,20],[20,12],[21,-19],[7,-13],[14,-29],[21,-12],[3,-5],[6,-45],[12,-20],[20,-11],[7,-15],[14,-33],[21,-9],[21,-3],[-21,-3],[-21,-25],[-11,-17],[-10,-11],[-5,11],[-15,19],[-9,-19],[-6,-46],[-6,-31],[-5,-14],[-16,-41],[-21,22],[-13,19],[-3,45],[-5,6],[-5,-6],[-15,-15],[-16,-30],[-5,-9],[-21,-18],[-21,-3],[-8,-15],[-6,-46],[-6,-19],[-16,-26],[-5,-14],[-15,-31]],[[4972,6119],[-5,-6],[-20,-10],[-2,44],[2,5],[2,6]],[[3036,6050],[14,6],[-14,5],[-19,41],[-1,4],[-20,41],[-1,5],[-2,-5],[2,-4],[17,-41],[-8,-46],[12,-10],[20,4]],[[3099,6054],[2,2],[-2,4],[-3,-4],[3,-2]],[[2870,6045],[-15,11],[-5,46],[20,45],[0,1],[21,17],[21,-13],[3,-5],[-3,-4],[-21,-33],[-2,-8],[-12,-46],[-7,-11]],[[2787,6033],[-9,23],[-6,46],[10,45],[-3,45],[6,46],[2,3],[1,-3],[3,-46],[0,-45],[17,-45],[-10,-46],[-11,-23]],[[4967,6053],[3,3],[-3,3],[-9,-3],[9,-3]],[[3763,6038],[-8,18],[8,16],[17,-16],[-17,-18]],[[1168,6009],[10,2],[-10,6],[-21,-5],[-2,-1],[2,0],[21,-2]],[[1271,6004],[-4,7],[4,11],[9,-11],[-9,-7]],[[1334,5985],[-21,-10],[-16,36],[-5,19],[-7,26],[7,8],[21,0],[21,1],[14,-9],[1,-45],[-15,-26]],[[2962,6011],[12,28],[13,17],[-13,15],[-21,-9],[-4,-6],[-12,-45],[16,-15],[9,15]],[[4616,6011],[19,20],[21,6],[11,19],[10,28],[13,18],[7,14],[11,-14],[10,-15],[4,15],[-4,41],[-1,4],[-5,45],[6,32],[2,14],[18,45],[-8,45],[-12,8],[-14,-8],[-7,-15],[-2,-30],[-5,-45],[-13,-29],[-21,15],[-7,-32],[0,-45],[-14,-40],[-7,-5],[-14,-8],[-11,-38],[5,-45],[6,-3],[2,3]],[[3638,5994],[9,17],[0,45],[-6,46],[-3,10],[-1,-10],[-7,-46],[-5,-45],[13,-17]],[[3576,6006],[-6,5],[-15,21],[-20,22],[-1,2],[1,5],[20,5],[7,-10],[14,-37],[2,-8],[-2,-5]],[[4158,6001],[4,10],[-4,20],[-6,25],[-15,37],[-6,9],[-15,23],[-21,-21],[-7,-2],[7,-3],[21,-18],[9,-25],[12,-25],[15,-20],[6,-10]],[[4282,6006],[2,5],[-2,6],[-5,-6],[5,-5]],[[1064,5960],[4,6],[-4,6],[-13,-6],[13,-6]],[[1728,5965],[0,1],[4,45],[-4,33],[-5,-33],[-16,-31],[-12,-14],[12,-35],[21,34]],[[3016,5962],[-4,4],[4,1],[1,-1],[-1,-4]],[[2782,5966],[-16,-9],[-7,9],[2,45],[-3,45],[-1,46],[-2,45],[-9,37],[-3,8],[3,8],[9,38],[11,40],[3,5],[9,45],[7,46],[2,5],[12,40],[9,22],[5,-22],[1,-45],[-6,-34],[-7,-12],[-2,-45],[9,-24],[5,-21],[-5,-18],[-7,-28],[7,-32],[18,-13],[1,-45],[-3,-46],[-16,-17],[-13,-28],[-8,-38],[-5,-7]],[[2372,5959],[-11,7],[0,45],[-10,29],[-6,16],[6,33],[21,-14],[21,-4],[13,-15],[-13,-38],[-3,-7],[-15,-45],[-3,-7]],[[3618,5935],[7,31],[-7,29],[-7,-29],[7,-31]],[[939,5912],[10,8],[-10,11],[-12,-11],[12,-8]],[[1022,5910],[17,10],[-17,32],[-19,14],[-2,0],[-20,-28],[-9,-18],[9,-5],[20,-3],[21,-2]],[[752,5898],[-21,3],[-6,19],[-14,39],[-6,7],[-15,20],[-14,25],[-7,20],[-21,14],[-20,-12],[-21,9],[-21,-9],[-10,23],[3,46],[7,15],[21,-5],[18,-10],[3,-3],[20,-31],[21,-2],[8,-10],[13,-22],[21,-13],[5,-10],[15,-35],[21,-6],[6,-4],[7,-46],[-13,-22]],[[3431,5895],[16,25],[-16,7],[-16,39],[-5,17],[-13,28],[-6,45],[-2,2],[-6,-2],[-14,-24],[-9,24],[-12,7],[-21,29],[-5,10],[-16,29],[-6,16],[-15,35],[-6,10],[-14,23],[-21,4],[-10,-27],[-11,-24],[-12,-21],[12,-19],[21,13],[21,-4],[18,-35],[2,-6],[21,-31],[4,-9],[17,-24],[21,11],[16,-32],[5,-4],[20,-20],[10,-21],[8,-46],[3,-7],[21,-18]],[[3825,5916],[5,4],[-5,10],[-5,-10],[5,-4]],[[4101,5920],[-6,-34],[-20,3],[-9,31],[9,25],[10,21],[-10,36],[-4,9],[4,5],[9,-5],[11,-9],[21,-29],[1,-7],[-1,-5],[-15,-41]],[[2247,5858],[4,17],[-4,6],[-3,-6],[3,-17]],[[3680,5873],[1,2],[-1,1],[-1,-1],[1,-2]],[[4012,5864],[1,11],[-1,4],[-1,-4],[1,-11]],[[4241,5915],[-5,5],[-6,46],[9,45],[-19,32],[-16,13],[4,46],[-9,27],[-8,18],[-13,20],[-17,25],[17,10],[9,-10],[12,-33],[3,-12],[18,-34],[17,-11],[4,-5],[20,-17],[21,16],[2,6],[-2,6],[-21,15],[-8,24],[-12,32],[-4,13],[4,20],[20,9],[6,17],[-6,12],[-20,25],[-13,8],[13,3],[20,29],[9,13],[-3,46],[15,33],[6,12],[15,26],[21,15],[3,4],[-3,9],[-21,28],[-21,-12],[-11,21],[-2,45],[-8,17],[-5,-17],[-15,-40],[-8,40],[-9,46],[-4,3],[-8,-3],[-13,-3],[-4,3],[-17,20],[-16,-20],[10,-46],[-14,-12],[-21,8],[-3,4],[3,3],[17,43],[-17,29],[-21,14],[-18,2],[-3,0],[-20,34],[-3,11],[3,3],[20,11],[21,-4],[8,-10],[13,-29],[21,14],[6,15],[-1,46],[-5,12],[-21,10],[-21,9],[-21,10],[-9,4],[9,6],[21,16],[14,23],[-14,26],[-2,2]],[[4086,6890],[-11,17],[-4,11],[-7,45],[10,25]],[[4070,7032],[-11,22],[-5,14],[-4,18]],[[4641,6941],[-2,-23],[-4,-13],[-14,-32],[-4,-46],[-3,-6],[-12,-39],[-8,-38],[-4,-7],[4,-12],[4,-34],[0,-45],[6,-45],[-4,-46],[-6,-10],[-9,10],[-12,15],[-21,26],[-2,5],[-16,45],[-3,8],[-15,37],[-5,14],[-12,-14],[9,-45],[-18,-40],[-5,-5],[5,-5],[21,-9],[20,-13],[9,-19],[12,-28],[12,-17],[9,-21],[8,-25],[-8,-18],[-11,-27],[-2,-45],[-8,-13],[-21,1],[-20,-18],[-18,30],[-3,4],[-2,-4],[2,-13],[9,-33],[-9,-10],[-21,-16],[-21,6],[-20,-11],[-21,-3],[-8,-11],[8,-43],[2,-2],[19,-5],[20,-10],[19,15],[2,2],[21,16],[21,3],[20,-14],[6,-7],[1,-46],[-7,-31],[-4,-14],[-16,-31],[-9,-14],[-10,-46],[-2,-9],[-9,-36],[-9,-45],[-3,-6],[-21,-17],[-20,-20],[-21,39],[-2,4],[1,45],[-10,45],[-10,16],[-21,4],[-21,3],[-11,-23],[11,-41],[1,-4],[-1,-5],[-10,-40],[-10,-4],[-21,-21],[-11,-21],[-10,-19],[-13,19],[-2,46],[-6,21],[-4,-21],[-10,-46],[-6,-5]],[[893,5830],[-16,-43],[-20,43],[-1,3],[-7,42],[-4,45],[11,44],[15,2],[6,0],[2,-46],[19,-40],[2,-5],[-2,-21],[-5,-24]],[[711,5819],[-11,11],[11,18],[17,-18],[-17,-11]],[[2932,5824],[2,6],[-2,5],[-3,-5],[3,-6]],[[4158,5822],[4,8],[-4,26],[-6,-26],[6,-8]],[[1126,5828],[-2,2],[-19,28],[-7,17],[7,34],[3,11],[1,46],[17,17],[21,-5],[21,0],[20,-4],[5,-8],[16,-46],[0,-5],[21,-35],[3,-5],[18,-36],[20,-3],[10,-6],[-10,-11],[-20,0],[-6,11],[-15,36],[-21,5],[-6,4],[-15,8],[-20,10],[-21,-13],[-5,-5],[-14,-45],[-2,-2]],[[981,5784],[-1,0],[1,0],[2,0],[-2,0]],[[2912,5777],[3,7],[-3,10],[-4,-10],[4,-7]],[[4531,5782],[1,2],[-1,3],[-3,-3],[3,-2]],[[3784,5776],[5,8],[-5,8],[-15,38],[-6,7],[-18,-7],[18,-24],[13,-22],[8,-8]],[[5161,5769],[-7,-7],[-21,13],[-5,9],[-15,22],[-21,0],[-21,15],[-21,2],[-8,7],[2,2]],[[1500,5738],[-1,1],[1,0],[1,0],[-1,-1]],[[1562,5700],[-21,-3],[-11,42],[11,11],[21,21],[20,-32],[-20,-39]],[[2891,5726],[5,13],[-5,13],[-21,-5],[-21,-5],[-3,-3],[3,-2],[21,-1],[21,-10]],[[2185,5715],[-21,0],[-21,-20],[-20,40],[-4,4],[-17,32],[-6,13],[6,7],[21,15],[20,13],[12,11],[9,28],[7,-28],[4,-46],[10,-17],[9,-28],[-9,-24]],[[3161,5737],[-1,2],[1,4],[1,-4],[-1,-2]],[[4988,5720],[-12,19],[-9,11],[-20,3],[-21,24],[-11,7],[-2,46],[-2,45],[15,20],[11,25],[10,45],[18,-45],[2,-5],[1,-3]],[[4991,5795],[4,-11],[1,-45],[-8,-19]],[[1084,5684],[14,10],[-14,16],[-11,-16],[11,-10]],[[1770,5669],[-21,23],[0,2],[0,1],[21,3],[10,-4],[-10,-25]],[[2829,5683],[2,11],[-2,18],[-21,-10],[-20,-8],[20,-22],[21,11]],[[3078,5655],[-4,39],[4,13],[4,-13],[-4,-39]],[[4075,5691],[-2,3],[2,6],[1,-6],[-1,-3]],[[2268,5642],[-3,6],[-4,46],[2,45],[-1,45],[6,18],[12,-18],[-5,-45],[2,-45],[-2,-46],[-7,-6]],[[2538,5642],[-1,6],[1,5],[1,-5],[-1,-6]],[[4511,5621],[7,27],[-1,46],[-6,17],[-3,-17],[-1,-46],[4,-27]],[[2974,5642],[-21,-3],[-3,9],[3,10],[21,-2],[21,-8],[-21,-6]],[[3057,5625],[-5,23],[5,18],[20,-18],[-20,-23]],[[4178,5640],[-20,6],[-2,2],[2,14],[20,-5],[12,-9],[-12,-8]],[[1977,5597],[5,6],[-2,45],[3,46],[-6,7],[-5,-7],[-5,-46],[-10,-16],[-12,-29],[12,-45],[20,39]],[[2060,5594],[-5,9],[-3,45],[8,22],[15,-22],[-9,-45],[-6,-9]],[[2143,5591],[-4,12],[4,35],[13,-35],[-13,-12]],[[3431,5594],[-21,-21],[-21,7],[-20,21],[-21,-29],[-21,21],[-14,10],[-7,6],[-16,39],[16,38],[5,8],[16,40],[13,-40],[8,-17],[21,-8],[20,-15],[21,2],[17,38],[4,8],[4,-8],[13,-46],[-5,-45],[-12,-9]],[[1043,5555],[-2,3],[-19,23],[-21,8],[-8,14],[-12,21],[-21,-1],[-21,25],[21,25],[12,21],[-4,45],[-8,5],[-16,-5],[-5,-3],[-4,3],[-17,34],[-3,11],[3,9],[11,37],[10,13],[21,30],[21,-20],[20,1],[21,1],[19,-25],[2,-10],[9,-36],[-9,-22],[-7,-23],[-14,-38],[-21,-7],[0,-1],[12,-45],[9,-19],[21,-13],[15,-13],[-1,-45],[-14,-3]],[[1853,5546],[-21,-8],[-17,20],[17,37],[21,-30],[3,-7],[-3,-12]],[[2476,5545],[6,13],[-6,22],[-21,0],[-21,-11],[-3,-11],[3,-42],[21,20],[21,9]],[[4490,5547],[5,11],[10,45],[-15,14],[-14,-14],[2,-45],[12,-11]],[[3452,5556],[1,2],[-1,2],[-21,2],[-4,-4],[4,-15],[21,13]],[[3265,5558],[0,-1],[-21,-2],[-1,3],[-17,45],[-3,8],[-10,37],[-11,23],[-20,0],[-21,11],[-19,12],[-2,16],[-21,-3],[-12,-13],[-8,-20],[-3,-26],[-18,-29],[-11,-16],[-10,-21],[-21,17],[-1,4],[1,8],[6,37],[10,46],[-15,45],[13,45],[7,4],[2,-4],[19,-31],[21,22],[20,-24],[21,-8],[11,41],[-2,46],[3,45],[9,9],[9,-9],[12,-14],[20,-4],[11,-27],[-10,-46],[1,-45],[19,-17],[12,-28],[9,-12],[15,-34],[6,-24],[20,-6],[11,-15],[-11,-5],[-20,-40]],[[4303,5557],[-21,-5],[-3,6],[3,17],[11,28],[6,45],[-12,46],[4,45],[12,13],[21,4],[20,-2],[15,-15],[-15,-42],[-1,-3],[-19,-46],[0,-5],[-17,-40],[-4,-45],[0,-1]],[[1901,5512],[14,33],[21,-1],[20,14],[-20,21],[-16,24],[-5,14],[-6,31],[5,46],[1,1],[10,44],[-10,26],[-21,12],[-3,7],[-17,46],[-1,0],[-15,45],[-5,12],[-9,-12],[2,-45],[7,-36],[3,-10],[7,-45],[-10,-25],[-18,25],[-3,8],[-1,-8],[1,-19],[4,-26],[17,-24],[8,-22],[9,-45],[3,-9],[10,-36],[4,-46],[7,-42],[7,42]],[[2185,5506],[-4,6],[4,8],[5,-8],[-5,-6]],[[3452,5509],[-2,3],[2,3],[3,-3],[-3,-3]],[[4158,5475],[-21,-3],[-21,38],[-21,-21],[-14,23],[14,16],[21,-5],[5,35],[-3,45],[-2,31],[-1,14],[1,9],[5,37],[16,41],[1,4],[-1,7],[-21,21],[-8,17],[-13,29],[-3,17],[3,28],[21,-5],[6,22],[15,43],[21,-5],[4,-38],[16,-20],[21,15],[17,-40],[4,-8],[19,-38],[0,-45],[2,-44],[0,-1],[0,-1],[-10,-45],[-6,-45],[-5,-9],[-21,-7],[-21,-14],[-13,-15],[1,-46],[-8,-37]],[[1749,5460],[-21,-20],[-10,27],[-11,32],[-5,13],[-2,46],[-4,45],[-9,11],[-12,34],[-9,24],[-11,22],[-10,17],[-11,28],[6,45],[5,16],[8,-16],[13,-20],[9,-25],[12,-22],[10,-23],[6,-46],[4,-19],[7,-26],[1,-45],[13,-30],[9,-16],[12,-37],[3,-8],[-3,-7]],[[4445,5467],[3,8],[17,37],[-17,17],[-20,-10],[-8,-7],[-13,-19],[-16,-26],[16,-34],[21,12],[17,22]],[[3535,5439],[3,28],[-3,8],[-6,-8],[6,-28]],[[3701,5462],[2,5],[-2,16],[-3,-16],[3,-5]],[[3846,5430],[-21,32],[-1,5],[-2,45],[-15,46],[0,45],[18,30],[13,-30],[5,-45],[3,-23],[4,-23],[4,-45],[-8,-37]],[[1666,5408],[-8,13],[-13,12],[-12,34],[6,45],[-15,36],[-4,10],[-16,31],[-7,14],[-14,26],[-12,19],[-9,10],[-21,-5],[-21,14],[-20,27],[-21,20],[-21,25],[-21,18],[-20,-1],[-21,-10],[-10,-7],[-11,-8],[-7,8],[-14,17],[-20,13],[-21,10],[-4,5],[4,8],[21,9],[20,15],[21,-8],[20,22],[1,3],[21,27],[20,-24],[4,-6],[17,-32],[9,-14],[12,-21],[21,20],[20,-6],[5,7],[16,23],[19,23],[2,4],[2,-4],[19,-16],[21,-21],[3,-9],[-2,-45],[-1,-45],[20,-33],[12,-13],[9,-16],[8,-29],[12,-45],[-7,-46],[8,-32],[8,-13],[-5,-46],[-3,-13]],[[3036,5398],[-5,23],[5,17],[13,-17],[-13,-23]],[[3680,5419],[-2,2],[2,6],[4,-6],[-4,-2]],[[3742,5402],[-20,-10],[-18,29],[18,37],[20,2],[17,-39],[-17,-19]],[[4199,5401],[-1,20],[1,3],[3,-3],[-3,-20]],[[3722,5408],[-9,13],[9,17],[17,-17],[-17,-13]],[[3991,5414],[-5,7],[5,8],[3,-8],[-3,-7]],[[1624,5348],[3,28],[-3,5],[-15,-5],[15,-28]],[[2330,5365],[4,11],[-4,5],[-8,-5],[8,-11]],[[1998,5374],[0,2],[0,2],[-2,-2],[2,-2]],[[2476,5371],[-21,1],[-21,-10],[-21,-3],[-2,17],[2,4],[21,13],[21,1],[5,27],[-5,46],[21,22],[20,5],[20,-27],[-20,-35],[-3,-11],[-12,-45],[-5,-5]],[[4386,5353],[4,23],[10,45],[-14,32],[-5,-32],[-2,-45],[7,-23]],[[5237,5335],[-20,5],[-21,32],[-2,4],[2,6],[21,20],[20,-1],[20,-25],[-20,-41]],[[3971,5375],[-21,-10],[-21,-28],[-19,39],[19,38],[21,-4],[14,11],[7,3],[20,24],[10,-27],[-10,-27],[-19,-18],[-1,-1]],[[3825,5370],[-4,6],[4,6],[6,-6],[-6,-6]],[[3929,5362],[-7,14],[7,14],[11,-14],[-11,-14]],[[2310,5326],[3,5],[-3,13],[-2,-13],[2,-5]],[[2060,5329],[-1,2],[1,3],[4,-3],[-4,-2]],[[2725,5288],[-10,43],[10,15],[6,-15],[-6,-43]],[[5113,5329],[0,2],[0,1],[-1,-1],[1,-2]],[[4614,5321],[-7,10],[7,12],[6,-12],[-6,-10]],[[4967,5322],[-20,-1],[-21,-2],[-10,12],[10,14],[21,-3],[20,-5],[4,-6],[-4,-9]],[[3943,5331],[-14,-12],[-21,-7],[-13,19],[4,45],[9,23],[12,22],[5,46],[4,7],[9,-7],[12,-14],[21,6],[18,8],[2,2],[9,43],[12,20],[9,-20],[1,-45],[-10,-21],[-4,-25],[-13,-45],[-4,-7],[-20,-17],[-21,-12],[-7,-9]],[[5423,5331],[-20,-35],[-20,25],[-10,10],[-8,45],[-1,7]],[[5332,5403],[-6,-27],[-6,-5],[-20,-7],[-21,7],[-17,5],[17,17],[5,28],[-5,44],[0,2],[-21,42],[-1,3],[1,2],[21,5],[21,7],[14,32],[-11,45],[-3,32],[-21,3],[-3,10],[-3,46],[-15,12],[-21,7],[-20,-6],[-6,11]],[[5424,5336],[-1,-5]],[[3867,5330],[-1,1],[1,0],[0,-1]],[[5092,5249],[12,36],[-12,17],[-6,-17],[6,-36]],[[5196,5280],[11,5],[-11,19],[-13,-19],[13,-5]],[[3867,5244],[-6,41],[-15,34],[-3,12],[-18,21],[-17,24],[17,23],[21,-21],[1,-2],[20,-26],[15,-19],[-7,-46],[-8,-41]],[[2663,5232],[10,8],[-10,8],[-19,37],[-2,19],[-21,-7],[-19,34],[-2,3],[-5,-3],[5,-15],[7,-31],[14,-13],[21,-9],[7,-23],[14,-8]],[[2766,5198],[6,42],[-6,26],[-11,-26],[11,-42]],[[1832,5236],[-3,4],[3,10],[2,-10],[-2,-4]],[[3327,5231],[12,9],[-12,9],[-7,-9],[7,-9]],[[4594,5238],[14,2],[-14,45],[0,1],[-1,-1],[-1,-45],[2,-2]],[[4169,5240],[-11,-15],[-21,-22],[-15,37],[-3,45],[-2,46],[20,15],[21,-2],[10,-13],[10,-27],[8,-19],[-8,-14],[-9,-31]],[[3846,5229],[-4,11],[4,13],[19,-13],[-19,-11]],[[4156,5240],[-19,-23],[-9,23],[-2,45],[11,39],[21,-7],[13,-32],[-13,-41],[-2,-4]],[[4552,5220],[-10,20],[10,5],[2,-5],[-2,-20]],[[4144,5240],[-7,-8],[-3,8],[-2,45],[5,16],[21,-12],[1,-4],[-1,-5],[-14,-40]],[[1334,5188],[-4,7],[-17,32],[-9,13],[-12,21],[-11,24],[-10,20],[-20,18],[-7,8],[-14,22],[-19,23],[-2,6],[-19,39],[-2,4],[-20,38],[-5,4],[-16,24],[-21,5],[-21,10],[-6,6],[-15,36],[-16,10],[16,6],[10,-6],[11,-21],[10,21],[11,14],[5,-14],[16,-26],[21,-10],[13,-10],[7,-11],[21,-23],[6,-11],[15,-44],[0,-2],[21,-19],[20,-26],[0,-1],[12,-44],[9,-23],[21,-5],[7,-18],[1,-45],[13,-35],[5,-10],[-5,-7]],[[2704,5188],[17,7],[-17,5],[-8,-5],[8,-7]],[[2123,5182],[-3,13],[-8,45],[-10,27],[-6,18],[-15,18],[-15,-18],[-6,-14],[-8,14],[-12,28],[-20,18],[-1,8],[-1,37],[-10,45],[11,19],[15,-19],[6,-9],[20,-20],[18,29],[3,9],[14,-9],[7,-13],[19,-32],[-16,-45],[5,-46],[13,-22],[7,-23],[2,-45],[-9,-13]],[[2808,5190],[-14,5],[3,45],[11,40],[9,-40],[-6,-45],[-3,-5]],[[3285,5156],[18,39],[-18,34],[-6,-34],[6,-39]],[[5300,5178],[-15,17],[15,17],[6,-17],[-6,-17]],[[4144,5195],[-7,-12],[-9,12],[-12,45],[0,4],[-4,41],[-2,46],[6,16],[21,21],[21,0],[20,-11],[7,19],[0,45],[14,31],[12,15],[9,28],[19,-28],[-7,-46],[2,-45],[-14,-23],[-11,-22],[-6,-46],[-4,-30],[-9,-15],[-12,-7],[-20,-25],[-14,-13]],[[6130,5193],[-1,2],[-7,14]],[[6125,5210],[5,-12],[1,-3],[-1,-2]],[[6213,5190],[-4,5],[2,0]],[[6213,5192],[0,-2]],[[4490,5188],[-21,-28],[-20,35],[-1,9],[-1,36],[1,6],[21,17],[21,-22],[2,-1],[3,-45],[-5,-7]],[[4469,5191],[-2,4],[-2,45],[4,4],[4,-4],[-1,-45],[-3,-4]],[[1666,5126],[-7,23],[7,29],[7,-29],[-7,-23]],[[1957,5148],[-1,1],[1,3],[0,-3],[0,-1]],[[4884,5147],[1,2],[-1,1],[-2,-1],[2,-2]],[[3954,5149],[-4,-6],[-21,-22],[-21,5],[-20,16],[-8,7],[-13,14],[-21,0],[-21,1],[-20,21],[-12,10],[3,45],[9,18],[16,27],[-16,43],[-1,3],[-20,14],[-21,5],[-14,-19],[-7,-24],[-11,-22],[-9,-24],[-8,24],[-13,35],[-21,-2],[-12,13],[-9,21],[-4,24],[-9,45],[-8,28],[-20,7],[-16,-35],[-5,-6],[-8,6],[-13,28],[-8,18],[8,27],[4,18],[-4,30],[-21,-11],[-20,0],[-20,27],[20,15],[20,2],[21,-13],[21,5],[21,-8],[8,44],[-1,45],[-7,28],[-5,18],[5,7],[11,-7],[9,-10],[21,-18],[15,-18],[6,-16],[11,-29],[10,-20],[7,20],[9,45],[5,22],[20,0],[21,-11],[2,-11],[13,-45],[6,-32],[3,32],[16,45],[2,4],[20,35],[21,-33],[6,-6],[8,-45],[7,-44],[0,-1],[5,-46],[3,-45],[4,-46],[9,-11],[4,11],[3,46],[0,45],[8,46],[5,19],[7,-19],[14,-29],[10,-17],[11,-11],[15,11],[-10,46],[-5,7],[-20,38],[20,31],[20,-31],[1,-2],[20,-22],[21,11],[14,-32],[7,-16],[21,-25],[13,41],[8,23],[12,22],[-4,45],[-8,5],[-21,18],[-16,23],[6,45],[10,38],[4,7],[-4,21],[-3,25],[-3,45],[-2,45],[-13,43],[-1,3],[-20,32],[-8,13],[-8,45],[6,46],[1,45],[1,45],[-10,46],[-3,6],[-9,39],[9,29],[21,2],[21,-4],[21,-5],[21,-17],[4,-5],[16,-17],[13,-28],[5,-46],[3,-19],[21,-3],[1,22],[3,46],[17,22],[20,-2],[13,25],[-13,30],[-17,15],[-3,7],[-21,16],[-9,23],[9,33],[2,12],[-2,14],[-21,12],[-9,19],[-12,42],[-13,-42],[-7,-12],[-9,12],[-12,20],[-21,22],[-15,-42],[-6,-18],[-21,2],[-20,9],[-16,-38],[-1,-45],[-3,-46],[-1,-1],[-21,-7],[-21,-3],[-11,-34],[11,-34],[4,-11],[13,-46],[4,-8],[9,-37],[-9,-41],[-1,-4],[-4,-46],[5,-37],[1,-8],[7,-45],[13,-36],[7,-10],[13,-45],[-20,-22],[-21,-20],[-21,31],[-20,-4],[-21,-3],[-21,13],[-9,5],[9,5],[21,31],[4,9],[-4,7],[-16,39],[1,45],[-6,14],[-15,31],[-6,9],[-16,-9],[7,-45],[-3,-45],[-8,-18],[-21,11],[-11,7],[-10,10],[-21,26],[-20,-10],[-19,19],[-2,45],[21,32],[20,8],[4,6],[-4,4],[-17,41],[15,45],[2,3],[5,-3],[16,-9],[17,9],[4,2],[2,-2],[19,-18],[14,18],[6,15],[12,31],[-2,45],[10,45],[-2,46],[1,45],[2,6],[13,39],[-13,20],[-20,26],[-1,1],[-20,38],[-21,-12],[-9,18],[5,46],[-7,45],[11,21],[21,-8],[6,-13],[14,-20],[21,-3],[5,-22],[16,-25],[10,-21],[11,-24],[17,-21],[3,-2],[21,-26],[12,28],[-9,45],[18,33],[19,13],[-19,24],[-15,21],[-6,4],[-18,41],[-3,11],[-10,35],[-10,30],[-4,15],[4,17],[13,28],[7,17],[7,29],[4,45],[10,9],[6,-9],[15,-30],[16,-15],[5,-6],[20,-15],[17,-25],[4,-9],[6,9],[-4,46],[-2,16],[-3,29],[-8,45],[-10,16],[-9,30],[-11,27],[-9,18],[-4,45],[-6,46],[-2,21],[-10,24],[-11,6],[-21,25],[-5,14],[-15,24],[-14,22],[-7,42],[-1,3],[1,3],[16,42],[-16,21],[-21,3],[-17,22],[-4,6],[-20,20],[-21,12],[-2,7],[2,6],[17,40],[-9,45],[-8,14],[-7,-14],[-14,-14],[-18,14],[-3,4],[-15,41],[4,46],[-9,21],[-14,-21],[-7,-7],[-19,-39],[-2,-6],[-4,6],[-17,30],[-21,2],[-20,-11],[-9,-21],[0,-45],[-12,-9],[-6,9],[-13,45],[17,46],[-19,41],[-21,2],[-20,-10],[-21,-1],[-1,13],[1,1],[21,28],[11,16],[-8,46],[-3,7],[-21,21],[-21,-18],[-21,30],[-16,-40],[-4,-13],[-18,-33],[-3,-20],[-20,20],[6,46],[0,45],[-2,45],[-5,25],[-21,-24],[0,-1],[-3,-45],[-17,-17],[-10,-28],[-7,-46],[-4,-32],[-7,32],[-9,46],[-5,27],[-21,-23],[-2,-4],[2,-7],[7,-39],[3,-45],[11,-35],[3,-10],[4,-46],[-7,-35],[-21,25],[-21,1],[-4,9],[4,27],[4,19],[-4,8],[-20,27],[-3,10],[-18,37],[-16,8],[1,46],[-6,31],[-4,14],[4,5],[12,-5],[9,-6],[6,6],[15,14],[20,27],[3,4],[10,46],[-8,45],[-3,45],[-2,3],[-4,-3],[-9,-45],[-7,-15],[-21,-21],[-12,36],[-9,10],[-7,-10],[-14,-12],[-17,12],[1,45],[-4,5],[-21,9],[-21,-10],[-18,42],[-3,3],[-3,-3],[-7,-46],[-10,-13],[-17,13],[-4,8],[-4,-8],[-17,-37],[-13,37],[-1,46],[-7,19],[-13,26],[7,45],[6,4],[21,20],[21,13],[8,9],[13,18],[13,27],[7,17],[21,25],[2,3],[13,46],[-15,9],[-16,-9],[-5,-5],[-20,-20],[-17,-21],[-4,-6],[-21,-17],[-18,23],[-3,16],[-6,30],[6,7],[15,38],[-9,45],[-6,21],[-8,-21],[-12,-18],[-21,7],[-17,11],[13,46],[4,17],[9,28],[10,46],[-19,41],[-1,4],[-17,45],[-3,17],[-12,29],[-5,45],[10,14]],[[4665,6951],[-2,-33],[-7,-35],[-2,-10],[-6,-46],[-13,-31],[-6,-14],[-4,-45],[-2,-46],[2,-45],[-1,-45],[-2,-46],[-3,-45],[-5,-17],[-9,-29],[-11,-26],[-8,-19],[-10,-45],[-3,-9],[-21,-32],[-3,-5],[-18,-35],[-7,-10],[7,-6],[21,-28],[4,-11],[-2,-46],[-2,-7],[-10,-38],[-11,-31],[-7,-14],[-13,-36],[-3,-10],[-12,-45],[-6,-27],[-5,-18],[-16,-30],[-14,-16],[-7,-6],[-20,-13],[-21,18],[-2,1],[-16,46],[-3,30],[-21,-10],[-6,-20],[-15,-44],[-20,7],[-7,-9],[-14,-22],[-12,-23],[-9,-22],[-21,-8],[-10,-15],[8,-46],[-3,-45],[1,-45],[0,-46],[1,-45],[3,-8],[2,8],[4,45],[-1,46],[3,45],[2,45],[11,10],[8,-10],[13,-6],[21,6],[20,-3],[21,-20],[21,-18],[21,6],[17,-10],[-17,-32],[-21,26],[-21,-19],[-8,-20],[-13,-23],[-10,-23],[3,-45],[-13,-17],[-9,-28],[-4,-46],[-8,-18],[-21,8],[-21,-23],[-1,-12],[-10,-46],[5,-45],[-14,-22],[-15,-23],[-6,-13],[-7,-33],[-5,-45],[-9,-30],[-21,0],[-15,-15],[-5,-8],[-21,-31],[-21,10],[-5,29],[-3,45],[-4,45],[0,46],[12,33],[11,12],[10,22],[21,6],[9,17],[-9,15],[-21,5],[-21,14],[-21,-18],[-7,-16],[-13,-36],[-4,-9],[-10,-45],[-7,-46],[-14,-45],[-7,-17],[-15,-28],[-6,-7],[-7,7],[-14,30],[-7,15],[-10,45],[-3,7],[-21,3],[-21,-9],[0,-1],[-1,-45],[1,-2],[21,-31],[5,-12],[-1,-46]],[[5191,5149],[-16,-36],[-21,8],[-21,16],[-8,12],[-8,46],[16,41],[4,4],[17,26],[17,19],[-13,46],[14,45],[3,11],[8,34],[13,19],[21,-9],[20,4],[13,-14],[8,-6],[4,6],[-4,39],[-1,7],[-20,37],[-3,8],[3,27],[21,11],[18,8],[-18,31],[-2,14],[-19,30],[-20,-21],[-21,6],[-17,30],[-4,7],[-21,6],[-14,33],[-6,45],[-1,0],[-20,12],[-21,14],[-21,3],[-21,-15],[-3,-14],[3,-9],[12,-36],[9,-43],[1,-3],[14,-45],[-7,-45],[-8,-14],[-4,14],[-17,43],[-3,2],[-16,45],[-1,1],[-1,-1],[-6,-45],[-14,-41],[-13,41],[-8,11],[-21,-4],[-7,-7],[-13,-4],[-8,4],[-11,45],[4,46],[-6,5],[-9,-5],[-12,-3],[-21,-35],[-12,-8],[-8,-15],[-14,-30],[-7,-9],[-13,-36],[13,-35],[21,-5],[5,-6],[-5,-10],[-21,-13],[-6,-22],[6,-7],[16,-39],[5,-18],[20,-22],[8,-5],[-8,-5],[-20,-24],[-7,-16],[-14,-8],[-19,8],[-2,1],[-13,44],[-8,27],[-6,18],[-1,46],[7,25],[8,20],[-8,10],[-20,16],[-16,20],[-5,12],[-21,23],[-10,-35],[-11,-22],[-11,-24],[0,-45],[-10,-19],[-20,-7],[-8,-20],[-13,-25],[-12,25],[2,46],[10,26],[6,19],[15,22],[18,24],[-5,45],[7,32],[6,13],[6,46],[9,9],[21,-5],[21,14],[12,-18],[6,-46],[3,-9],[20,4],[21,-34],[16,39],[0,46],[5,19],[5,26],[1,45],[13,46],[2,2],[14,43],[-11,45],[17,22],[21,4],[10,20],[5,45],[6,8],[21,-5],[2,-3],[18,-24],[9,-6]],[[5513,5374],[-6,-5],[-1,0]],[[5451,5348],[-6,-9],[-2,-8],[2,-15],[4,-31],[14,-45],[-18,-5],[-21,-16],[-7,21],[-14,24],[-9,21],[-11,18],[-21,19],[-13,9],[-8,13],[-21,-3],[-20,5],[-21,-13],[-2,-2],[2,-6],[5,-40],[-5,-15],[-21,9],[-7,6],[-14,19],[-16,-19],[-2,-45],[-2,-7],[-12,-38],[-9,-35],[-5,-11]],[[3929,5146],[-14,3],[-7,6],[-20,18],[-21,13],[-21,0],[-21,3],[-4,6],[4,40],[1,5],[13,45],[-12,46],[-2,2],[-20,24],[-21,14],[-11,5],[-10,9],[-21,-5],[-16,-4],[-4,-22],[-3,22],[-18,15],[-21,-5],[-21,24],[-3,11],[-10,46],[-8,37],[-7,8],[7,21],[8,-21],[13,-8],[14,8],[7,4],[21,6],[4,-10],[17,-22],[9,22],[2,46],[9,39],[19,-39],[-3,-46],[5,-13],[17,13],[4,2],[1,-2],[0,-45],[20,-24],[12,-22],[8,-4],[21,1],[15,-42],[6,-7],[21,3],[0,4],[18,45],[2,33],[1,13],[20,31],[21,-18],[21,9],[13,23],[7,44],[7,2],[14,0],[1,0],[19,-46],[1,-7],[15,-38],[3,-46],[-9,-45],[-2,-45],[-4,-46],[-3,-15],[-9,-30],[-12,-19],[-9,19],[-8,45],[-4,18],[-20,25],[-21,-11],[-21,-15],[-18,-17],[-3,-37],[-1,-8],[1,-3],[19,-42],[2,-12],[3,-34],[-3,-3]],[[5009,5140],[-3,9],[3,6],[4,-6],[-4,-9]],[[5177,5149],[-2,-4],[-21,-2],[-7,6],[-14,30],[-3,16],[3,9],[21,13],[7,23],[14,18],[21,-4],[9,-14],[-7,-45],[-2,-8],[-19,-38]],[[4594,5145],[-19,4],[-2,1],[-21,12],[-13,33],[-8,17],[-12,28],[12,18],[21,7],[10,-25],[11,-35],[6,-10],[15,-44],[0,-2],[0,-4]],[[1458,5101],[-6,3],[6,3],[6,-3],[-6,-3]],[[2621,5104],[-1,0],[1,0]],[[2226,5102],[-8,2],[8,4],[2,-4],[-2,-2]],[[5017,5104],[-8,-8],[-6,8],[-14,45],[20,36],[21,-31],[3,-5],[-3,-8],[-13,-37]],[[1520,5039],[-20,4],[-13,16],[13,44],[20,-22],[11,-22],[-11,-20]],[[2808,5050],[-4,9],[4,2],[1,-2],[-1,-9]],[[3255,5059],[10,26],[18,19],[-18,16],[-19,29],[-2,2],[-1,-2],[-20,-22],[-18,22],[-3,4],[-20,13],[-14,29],[8,45],[6,37],[1,8],[-1,3],[-21,9],[-5,-12],[-16,-31],[-21,0],[-17,-14],[-2,-45],[19,-37],[21,36],[15,-45],[6,-15],[18,-30],[3,-5],[20,-17],[21,-11],[8,-12],[13,-33],[11,33]],[[3348,5050],[-6,9],[6,30],[13,-30],[-13,-9]],[[6151,5057],[1,2],[-1,0],[-1,0],[1,-2]],[[5486,5019],[15,40],[-15,30],[-6,-30],[6,-40]],[[5466,5053],[-4,6],[-17,15],[-5,30],[-8,45],[13,9],[5,-9],[16,-32],[6,-13],[-6,-45],[0,-6]],[[4635,5047],[-21,-13],[-13,25],[13,10],[21,-3],[16,-7],[-16,-12]],[[5632,5057],[-1,2],[1,19],[2,-19],[-2,-2]],[[1728,4993],[3,20],[-3,11],[-6,-11],[6,-20]],[[3389,5003],[-13,10],[13,19],[20,-19],[-20,-10]],[[3680,5013],[0,1],[0,-1]],[[5154,5009],[-1,4],[1,5],[4,-5],[-4,-4]],[[5744,5009],[-8,-27],[-17,25]],[[5649,5046],[-17,-9],[-12,22],[3,45],[9,28],[21,13],[2,-3]],[[5507,5012],[0,1],[0,1],[1,-1],[-1,-1]],[[6047,5007],[-21,-31],[-19,37],[1,3]],[[6031,5040],[16,-24],[4,-3],[-4,-6]],[[4697,5010],[-3,3],[3,6],[10,-6],[-10,-3]],[[6172,4929],[16,39],[-16,27],[-18,-27],[18,-39]],[[4781,4958],[-21,-16],[-7,26],[-14,35],[-13,10],[13,31],[18,-31],[3,-3],[21,-19],[8,-23],[-8,-10]],[[2143,4912],[-20,10],[-1,1],[1,5],[20,8],[4,-13],[-4,-11]],[[4407,4878],[3,45],[-3,15],[-14,-15],[14,-45]],[[5300,4922],[0,1],[7,45],[-7,38],[-13,-38],[-8,-12],[-7,-33],[7,-39],[21,38]],[[5839,4918],[-2,5],[2,7],[14,-7],[-14,-5]],[[6258,4905],[-3,-2],[-3,20],[-4,45],[-14,27],[-17,18],[17,18],[21,9],[4,-14]],[[4767,4923],[-7,-16],[-15,16],[-2,45],[-4,9],[-21,15],[-21,2],[-20,18],[-2,1],[-12,46],[14,8],[7,-8],[13,-10],[21,-5],[7,15],[14,21],[10,-21],[11,-21],[21,-5],[20,24],[7,-44],[-6,-45],[-1,-3],[-20,-25],[-14,-17]],[[2393,4873],[-10,4],[10,24],[2,-24],[-2,-4]],[[2621,4867],[-5,10],[5,22],[2,-22],[-2,-10]],[[3036,4875],[-1,2],[-19,29],[-21,7],[-21,6],[-7,4],[7,8],[21,2],[21,0],[13,-10],[7,-40],[1,-6],[-1,-2]],[[5632,4855],[-6,22],[6,7],[3,-7],[-3,-22]],[[5383,4865],[-9,12],[9,22],[13,-22],[-13,-12]],[[6109,4867],[-20,-25],[-10,35],[-1,46],[10,45],[1,1],[2,-1],[13,-45],[5,-21],[4,-25],[-4,-10]],[[4576,4877],[-3,-10],[-21,-13],[-7,23],[-5,46],[12,45],[0,1],[21,41],[6,3],[15,23],[8,-23],[10,-45],[-18,-45],[0,-1],[-18,-45]],[[5964,4843],[-16,34],[11,46],[5,21],[9,-21],[-3,-46],[-6,-34]],[[6089,4874],[-1,3],[1,11],[2,-11],[-2,-3]],[[5486,4847],[-20,-9],[-21,29],[-3,10],[3,29],[3,17],[18,32],[20,-32],[1,0],[5,-46],[-6,-30]],[[5486,4877],[-20,-15],[-10,15],[10,37],[20,-37]],[[5881,4826],[1,6],[-1,14],[-8,-14],[8,-6]],[[3327,4831],[-1,1],[1,1],[1,-1],[-1,-1]],[[3763,4815],[2,17],[-2,6],[-7,-6],[7,-17]],[[6151,4819],[5,13],[-5,12],[-4,-12],[4,-13]],[[3600,4832],[-3,-5],[-1,5],[-20,44],[-1,1],[-20,19],[-20,-2],[-15,-17],[-6,-10],[-4,10],[-8,46],[-9,44],[-1,1],[1,1],[21,21],[21,8],[20,-19],[12,-11],[7,-45],[2,-31],[7,31],[14,19],[21,-7],[4,-12],[-4,-13],[-12,-33],[-6,-45]],[[4577,4832],[-4,-17],[-21,-14],[-7,31],[-11,45],[-3,13],[-7,33],[5,45],[2,6],[14,39],[7,46],[-4,45],[-17,45],[-20,28],[-21,-18],[-7,-10],[-14,-27],[-21,-1],[-11,28],[1,46],[0,45],[8,45],[2,4],[11,-4],[10,-2],[21,-20],[21,-4],[20,23],[21,3],[18,-45],[3,-8],[21,-37],[15,-46],[5,-24],[8,-21],[13,-12],[21,-5],[14,17],[7,12],[20,7],[2,-19],[19,-18],[17,18],[4,3],[2,-3],[19,-36],[21,3],[20,8],[9,-20],[4,-46],[-2,-45],[-11,-24],[-20,-21],[0,-1],[-20,-45],[-1,-1],[-21,-20],[-6,21],[-6,46],[-9,38],[-3,7],[-18,9],[-20,10],[-21,3],[-15,-22],[-6,-13],[-19,-32],[-2,-2],[-20,-31],[-6,-13],[-11,-45]],[[5985,4794],[-21,13],[-21,16],[-6,9],[1,45],[5,14],[11,32],[9,45],[1,12],[5,-12],[15,-45],[-6,-46],[7,-22],[18,-23],[-18,-38]],[[4947,4815],[-21,12],[-9,5],[9,5],[21,24],[6,-29],[-6,-17]],[[2870,4786],[0,1],[0,-1]],[[6130,4751],[9,36],[-9,15],[-6,-15],[6,-36]],[[4967,4786],[0,1],[-20,4],[-21,7],[-21,6],[-21,-13],[-7,41],[7,36],[21,-12],[21,8],[9,13],[12,9],[8,-9],[7,-45],[5,-45],[0,-1]],[[2766,4725],[-3,16],[3,25],[7,-25],[-7,-16]],[[3119,4740],[-20,-43],[-21,9],[-21,32],[-11,3],[2,46],[9,12],[12,-12],[9,-10],[21,-25],[20,-10],[1,-1],[-1,-1]],[[3514,4731],[17,10],[-17,9],[-16,-9],[16,-10]],[[3389,4738],[-1,3],[-19,25],[-16,21],[14,45],[2,1],[20,5],[3,-6],[8,-45],[-2,-46],[-9,-3]],[[6109,4704],[17,37],[-17,15],[-15,-15],[15,-37]],[[4511,4737],[-3,4],[3,3],[4,-3],[-4,-4]],[[4718,4726],[-3,15],[3,29],[4,-29],[-4,-15]],[[6220,4722],[-7,-5],[-11,24],[11,28],[12,-6]],[[5486,4721],[-4,20],[4,25],[6,-25],[-6,-20]],[[4344,4682],[3,14],[-3,18],[-5,-18],[5,-14]],[[2538,4680],[-21,14],[-1,2],[1,4],[18,41],[3,4],[1,-4],[12,-45],[-13,-16]],[[4635,4687],[4,9],[-4,4],[-2,-4],[2,-9]],[[3452,4685],[-15,11],[15,3],[10,-3],[-10,-11]],[[3784,4686],[-3,10],[3,5],[1,-5],[-1,-10]],[[6219,4695],[-6,-6],[-13,7],[-8,15],[-10,30],[1,46],[9,15],[19,30],[-19,37],[-2,8],[2,8],[16,-8],[5,-18],[21,-1],[6,-5]],[[5030,4691],[-21,-19],[-21,-6],[-21,10],[-20,14],[-4,6],[-17,34],[-21,10],[-21,-30],[-10,31],[-6,46],[-4,34],[-2,11],[-9,45],[-2,46],[13,9],[10,-9],[10,-9],[21,-3],[21,-10],[21,11],[20,-8],[9,-27],[3,-45],[9,-26],[18,-19],[3,-4],[20,-42],[1,-10],[5,-35],[-5,-5]],[[5009,4689],[-21,-7],[-21,10],[-4,4],[-9,45],[-7,7],[-21,15],[-21,8],[-21,-18],[-8,34],[-6,45],[-6,40],[-1,5],[1,7],[20,9],[21,-7],[21,-1],[21,14],[20,-19],[1,-3],[2,-45],[16,-45],[2,-6],[21,-19],[10,-21],[-3,-45],[-7,-7]],[[5507,4678],[-21,1],[-10,17],[-10,45],[0,5],[-6,41],[-15,34],[-21,-27],[-6,38],[6,26],[6,19],[8,46],[7,21],[12,24],[9,15],[9,-15],[11,-20],[21,-21],[3,-4],[-3,-5],[-9,-41],[-6,-45],[15,-38],[6,-7],[-1,-46],[0,-45],[-5,-18]],[[5486,4691],[-2,5],[-10,45],[3,46],[9,24],[9,-24],[8,-46],[-6,-45],[-11,-5]],[[1998,4650],[4,1],[-4,2],[-10,43],[-11,15],[-13,30],[-7,7],[-20,39],[-1,5],[-7,-5],[6,-46],[1,-2],[21,-23],[9,-20],[11,-16],[21,-29],[0,-1]],[[4324,4645],[5,6],[-5,8],[-6,-8],[6,-6]],[[5985,4648],[5,3],[-5,5],[-21,3],[-8,-8],[8,-13],[21,10]],[[4614,4619],[10,32],[-10,10],[-13,-10],[13,-32]],[[3555,4644],[-20,-4],[-21,-1],[-8,12],[8,15],[20,30],[1,1],[1,-1],[19,-36],[2,-9],[-2,-7]],[[5653,4640],[-21,-4],[-5,15],[5,4],[21,11],[14,-15],[-14,-11]],[[2081,4565],[2,40],[-2,2],[-21,12],[-20,-3],[-9,-11],[9,-24],[20,-2],[21,-14]],[[2932,4600],[1,5],[-1,25],[0,-25],[0,-5]],[[4303,4590],[6,15],[-6,24],[-6,-24],[6,-15]],[[4220,4586],[-5,19],[5,36],[3,-36],[-3,-19]],[[6151,4594],[-3,11],[2,46],[1,1],[1,-1],[13,-46],[-14,-11]],[[5570,4555],[-21,4],[-2,1],[-19,45],[21,3],[21,-2],[1,-1],[3,-45],[-4,-5]],[[1873,4513],[-2,2],[-18,19],[-21,15],[-7,11],[-14,27],[-14,18],[-7,17],[-14,29],[-6,16],[-21,16],[-9,13],[-12,23],[-21,8],[-20,14],[-1,0],[-18,46],[-2,4],[-21,11],[-21,8],[-11,22],[-9,18],[-21,21],[-2,6],[-1,46],[1,45],[-19,18],[-11,27],[11,8],[6,-8],[15,-44],[0,-1],[11,-45],[10,-6],[20,5],[21,-28],[9,-17],[12,-21],[16,-24],[5,-8],[20,-11],[11,-26],[10,-28],[13,-18],[8,-19],[21,-17],[5,-9],[15,-30],[11,-15],[10,-20],[21,-2],[12,-24],[9,-25],[8,-20],[12,-42],[6,-3],[-6,-2]],[[2766,4510],[6,5],[-6,5],[-3,-5],[3,-5]],[[3825,4502],[5,13],[-5,36],[-16,-36],[16,-13]],[[4137,4508],[-13,7],[13,25],[7,-25],[-7,-7]],[[3187,4515],[-5,-10],[-10,10],[-11,13],[-14,32],[14,43],[2,2],[19,10],[13,-10],[7,-10],[21,-28],[3,-7],[-3,-8],[-21,-13],[-15,-24]],[[3369,4508],[-3,7],[3,8],[5,-8],[-5,-7]],[[5715,4512],[10,3],[-10,22],[-5,-22],[5,-3]],[[5009,4514],[-1,1],[1,1],[2,-1],[-2,-1]],[[5590,4491],[-16,24],[-4,5],[-21,6],[-21,8],[-12,26],[-1,45],[13,36],[21,-9],[21,0],[20,-11],[21,-15],[1,-1],[-1,-1],[-9,-44],[9,-45],[-21,-24]],[[5590,4511],[-2,4],[-18,23],[-21,4],[-21,16],[-1,2],[-6,45],[7,18],[21,-3],[21,-1],[20,-14],[1,0],[-1,-7],[-1,-38],[1,-16],[3,-29],[-3,-4]],[[6047,4459],[-21,8],[0,2],[0,26],[21,-16],[4,-10],[-4,-10]],[[2081,4416],[-21,-6],[-16,14],[16,7],[21,-4],[4,-3],[-4,-8]],[[2766,4416],[-4,8],[4,4],[17,-4],[-17,-8]],[[4386,4387],[-4,37],[4,19],[4,-19],[-4,-37]],[[5736,4401],[-11,23],[11,9],[11,-9],[-11,-23]],[[6174,4393],[-2,-1],[-4,32],[4,41],[3,4],[9,3]],[[2870,4371],[10,7],[-10,8],[-1,-8],[1,-7]],[[5715,4373],[-5,5],[5,18],[8,-18],[-8,-5]],[[5632,4357],[-21,20],[0,1],[-7,46],[-11,45],[-3,2],[-20,23],[-21,13],[-21,4],[-21,1],[0,3],[-1,45],[1,29],[1,16],[-1,34],[0,12],[-21,16],[-18,29],[-2,10],[-9,35],[-12,37],[-21,-12],[-14,21],[-3,45],[3,45],[14,19],[7,27],[14,45],[21,37],[20,-28],[8,-9],[13,-12],[17,-33],[-17,-31],[-3,-15],[-1,-45],[4,-10],[21,-26],[16,-9],[-16,-12],[-8,-34],[0,-45],[8,-33],[9,-12],[12,-7],[21,1],[20,-8],[21,12],[1,2],[20,17],[19,28],[2,3],[20,1],[7,-4],[6,-45],[-13,-19],[-20,-15],[-13,-12],[-8,-10],[-16,-35],[7,-45],[9,-42],[2,-4],[3,-45],[6,-46],[-11,-21]],[[3293,4333],[13,32],[21,13],[0,1],[-21,18],[-21,5],[-4,-24],[-6,-45],[10,-18],[8,18]],[[3763,4328],[5,5],[-5,16],[-14,-16],[14,-5]],[[4552,4331],[1,2],[-1,24],[-3,-24],[3,-2]],[[4926,4329],[0,4],[0,3],[-1,-3],[1,-4]],[[5362,4308],[2,25],[-2,25],[-8,-25],[8,-25]],[[4822,4329],[-1,4],[1,3],[9,-3],[-9,-4]],[[5466,4319],[-11,14],[11,24],[19,-24],[-19,-14]],[[5756,4291],[-11,42],[-9,9],[-21,-6],[-21,22],[-16,20],[16,15],[11,31],[10,21],[21,24],[20,16],[21,-1],[16,-15],[3,-45],[-19,-21],[-18,-25],[5,-45],[-8,-42]],[[6130,4310],[-15,23],[-6,18],[-5,27],[-15,35],[-6,11],[6,8],[10,-8],[10,-23],[4,-23],[17,-31],[20,-14],[-20,-23]],[[2102,4281],[-21,-3],[-10,10],[-11,23],[-20,14],[-7,8],[-14,24],[-21,12],[-16,9],[-5,18],[-20,17],[-21,9],[-2,2],[-19,38],[-3,7],[3,9],[7,-9],[14,-38],[21,17],[20,-17],[21,-2],[21,3],[10,-8],[7,-46],[4,-11],[20,-10],[21,-21],[1,-3],[20,-35],[4,-10],[-4,-7]],[[2226,4284],[-20,-9],[-11,13],[-10,20],[-21,12],[-21,8],[-3,5],[-17,34],[-9,11],[9,11],[20,6],[14,-17],[7,-19],[21,-9],[18,-17],[3,-6],[20,-8],[4,-31],[-4,-4]],[[2538,4287],[-21,-5],[-2,6],[2,4],[21,-4],[0,-1]],[[3680,4277],[17,11],[-17,13],[-17,32],[-4,5],[-6,-5],[6,-8],[15,-37],[6,-11]],[[4531,4243],[7,45],[-7,30],[-7,-30],[7,-45]],[[2749,4288],[-3,-5],[-5,5],[4,45],[-20,45],[-21,-5],[-10,5],[10,14],[21,-13],[3,45],[-3,22],[-5,23],[-2,46],[7,21],[15,24],[-1,45],[7,13],[20,4],[15,-17],[1,-45],[5,-23],[21,-12],[7,-10],[14,-20],[17,-26],[3,-5],[21,-27],[6,-13],[15,-41],[6,-5],[15,-22],[20,-8],[21,-11],[3,-4],[-3,-26],[-21,-1],[-20,2],[-21,-4],[-21,14],[-21,4],[-20,-3],[-21,1],[-10,13],[-11,16],[-11,-16],[-10,-19],[-17,-26]],[[2351,4284],[-2,4],[-19,38],[-5,7],[-15,45],[-1,0],[1,1],[0,-1],[20,-34],[21,7],[9,-18],[-6,-45],[-3,-4]],[[3535,4285],[-1,3],[1,13],[4,-13],[-4,-3]],[[3950,4262],[-21,11],[-7,15],[-14,23],[-14,22],[14,27],[21,-22],[2,-5],[19,-28],[7,-17],[-7,-26]],[[6175,4281],[-3,-1],[-6,8],[-12,45],[17,29]],[[3119,4219],[-2,23],[2,6],[4,-6],[-4,-23]],[[4075,4240],[-2,2],[-13,46],[15,23],[18,-23],[-16,-46],[-2,-2]],[[4137,4241],[-5,1],[5,2],[1,-2],[-1,-1]],[[5985,4237],[-4,5],[4,7],[11,-7],[-11,-5]],[[6198,4242],[-6,-17],[-3,17],[-17,21],[-18,25],[-3,9],[-20,-9],[-1,0],[-21,-4],[-20,-11],[-13,15],[13,15],[11,30],[-6,45],[-5,12],[-18,34],[18,25],[20,-11],[4,-14],[8,-46],[9,-17],[21,-10],[13,27],[-3,46],[3,45],[8,41],[14,-13]],[[6244,4283],[-10,-25],[-17,7]],[[6212,4265],[-14,-23]],[[2164,4193],[-2,4],[2,7],[2,-7],[-2,-4]],[[2434,4194],[-6,3],[6,12],[2,-12],[-2,-3]],[[3418,4197],[-8,-7],[-4,7],[-12,45],[16,15],[21,-2],[0,-13],[0,-5],[-13,-40]],[[3929,4167],[5,30],[-5,12],[-5,-12],[5,-30]],[[4967,4189],[-6,8],[-8,45],[14,43],[17,-43],[-13,-45],[-4,-8]],[[6525,4184],[3,13],[-1,3]],[[6523,4193],[2,-9]],[[3971,4188],[-7,9],[7,23],[7,-23],[-7,-9]],[[2579,4148],[12,4],[-12,8],[-7,-8],[7,-4]],[[3327,4145],[11,7],[-11,13],[-21,-5],[-14,-8],[14,-42],[21,35]],[[6317,4149],[-5,3],[5,1],[1,-1],[-1,-3]],[[2478,4106],[18,29],[21,0],[21,8],[11,9],[-11,18],[-21,5],[-21,-13],[-20,13],[-18,-23],[16,-46],[2,-3],[2,3]],[[4448,4106],[1,0],[-1,1],[0,-1]],[[4677,4105],[-4,1],[4,2],[1,-2],[-1,-1]],[[5424,4097],[10,9],[-10,5],[-11,-5],[11,-9]],[[5902,4095],[2,11],[0,46],[19,42],[0,3],[0,1],[-21,8],[-1,-9],[0,-45],[-4,-46],[5,-11]],[[2268,4057],[8,4],[-8,15],[-8,-15],[8,-4]],[[3202,4049],[8,12],[-8,30],[-5,-30],[5,-12]],[[3701,4047],[-20,14],[20,13],[6,-13],[-6,-14]],[[6483,4053],[0,8],[0,1],[0,-1],[0,-8]],[[6026,4050],[-16,11],[16,41],[17,-41],[-17,-11]],[[6276,4055],[-5,6],[-16,17],[-12,28],[-9,43],[-3,3],[-18,10],[-21,20],[-11,15],[-6,45],[-3,5],[-21,27],[-21,-7],[-21,-3],[-17,-22],[-3,-7],[-5,7],[-16,20],[-8,26],[-2,45],[10,4],[15,41],[-15,29],[-15,17],[-6,8],[-21,-4],[-13,41],[1,46],[12,17],[15,-17],[6,-10],[16,-36],[5,-17],[21,13],[20,3],[11,-44],[9,-46],[1,-3],[21,-5],[4,8],[-1,46],[2,45],[-5,45],[0,1],[-2,45],[-14,45],[2,46],[14,26],[12,19],[9,27],[15,-27],[-10,-45],[4,-46],[-6,-45],[9,-45],[3,-3]],[[6257,4297],[4,-9],[12,-46],[-18,-15],[-21,-11],[-7,-19],[7,-42],[21,21],[15,-24],[6,-12],[15,-34],[-5,-45],[-10,-6]],[[6683,4061],[-13,-27],[-21,27]],[[6649,4061],[-15,45],[15,19],[21,-2],[21,12],[16,17],[5,4],[1,-4],[19,-35],[12,-11],[-12,-21],[-20,14],[-21,-12],[-8,-26]],[[6797,4061],[-2,-13],[-21,4],[-15,9],[15,10],[11,35],[6,12]],[[6806,4079],[-9,-18]],[[6629,4049],[-21,-8],[-8,20],[8,26],[21,-4],[20,-22]],[[6649,4061],[-20,-12]],[[6670,4050],[-9,11],[-12,39],[-2,6],[2,3],[21,2],[13,-5],[-8,-45],[-5,-11]],[[2372,4002],[-14,14],[-7,11],[-21,20],[-6,14],[-11,45],[17,12],[5,-12],[16,-28],[13,-17],[8,-22],[7,-23],[-7,-14]],[[4428,3997],[6,19],[-4,45],[-2,6],[-2,-6],[-9,-45],[11,-19]],[[2645,4016],[-3,-8],[-21,0],[-21,-21],[-21,14],[-10,15],[-10,16],[-21,-14],[-21,30],[-19,13],[19,11],[21,4],[21,24],[20,-30],[21,27],[21,-8],[21,0],[21,-13],[19,-15],[-19,-20],[-18,-25]],[[3867,3985],[1,31],[-1,2],[-6,-2],[6,-31]],[[5196,4011],[0,5],[0,-5]],[[3348,3991],[-11,25],[7,45],[4,31],[8,-31],[-3,-45],[-5,-25]],[[4531,3984],[-20,27],[-2,5],[2,9],[20,14],[10,-23],[-10,-32]],[[6006,4015],[-2,1],[2,13],[0,-13],[0,-1]],[[6878,3939],[3,31],[-3,19],[-21,-13],[-11,-6],[11,-30],[21,-1]],[[4947,3919],[-21,-14],[-6,20],[6,9],[21,-5],[6,-4],[-6,-6]],[[3057,3911],[-21,-15],[-14,29],[14,20],[21,-10],[9,-10],[-9,-14]],[[5217,3912],[-8,13],[8,14],[14,-14],[-14,-13]],[[3597,3921],[-21,-34],[-3,38],[3,5],[21,1],[3,-6],[-3,-4]],[[6753,3918],[6,7],[-6,8],[-15,-8],[15,-7]],[[4988,3842],[-11,38],[11,26],[16,-26],[-16,-38]],[[4488,3880],[-19,-33],[-5,33],[-11,45],[16,12],[21,11],[10,-23],[-10,-40],[-2,-5]],[[3306,3872],[-21,7],[-1,1],[1,13],[12,32],[9,2],[2,-2],[16,-45],[-18,-8]],[[7002,3859],[-4,21],[4,24],[6,-24],[-6,-21]],[[5881,3833],[1,1],[-1,3],[-1,-3],[1,-1]],[[3099,3802],[-2,32],[2,3],[3,-3],[-3,-32]],[[6089,3807],[2,27],[-2,4],[-5,-4],[5,-27]],[[6566,3821],[3,13],[-3,10],[-8,-10],[8,-13]],[[6919,3828],[-4,6],[4,4],[8,-4],[-8,-6]],[[3846,3782],[2,7],[-1,45],[-1,3],[0,-3],[-2,-45],[2,-7]],[[4967,3770],[-16,19],[16,19],[14,-19],[-14,-19]],[[5528,3788],[1,1],[-1,1],[-3,-1],[3,-1]],[[2829,3781],[-8,8],[8,18],[13,-18],[-13,-8]],[[3036,3762],[-20,-7],[-11,34],[-5,45],[-5,37],[-4,9],[4,1],[21,30],[13,-31],[-6,-46],[13,-25],[13,-20],[-13,-27]],[[4282,3787],[-5,2],[5,2],[2,-2],[-2,-2]],[[5570,3777],[-4,12],[4,14],[18,-14],[-18,-12]],[[3991,3786],[-20,-8],[-5,11],[5,30],[20,-23],[8,-7],[-8,-3]],[[7005,3789],[-3,-4],[-7,4],[-13,17],[-11,28],[8,46],[0,45],[-10,16]],[[7055,3842],[-3,-8],[-8,-24],[-16,24],[-5,10],[-3,-10],[-15,-45]],[[6878,3787],[-3,2],[-16,45],[19,14],[8,-14],[-7,-45],[-1,-2]],[[4339,3744],[5,16],[12,29],[9,29],[21,15],[1,1],[-1,2],[-21,19],[-6,25],[6,13],[21,21],[21,5],[4,6],[4,45],[-8,22],[-21,-6],[-15,30],[-6,17],[-19,28],[-2,1],[-20,12],[-16,32],[-5,11],[-18,35],[1,45],[-4,23],[-4,-23],[2,-45],[-6,-46],[8,-9],[20,-36],[1,-1],[21,-8],[18,-36],[2,-13],[13,-33],[-13,-33],[-2,-12],[-18,-37],[-21,-1],[-8,-7],[8,-15],[13,-31],[0,-45],[-6,-45],[14,-29],[15,29]],[[5154,3738],[-21,-5],[-20,-3],[-15,14],[15,13],[20,10],[11,22],[10,44],[13,-44],[-8,-45],[-5,-6]],[[3410,3720],[9,24],[-9,30],[-15,-30],[15,-24]],[[7106,3711],[-13,33],[4,20]],[[7116,3735],[-10,-24]],[[7106,3739],[-2,5],[2,5]],[[7106,3749],[2,-5],[-2,-5]],[[4137,3696],[-1,2],[1,2],[3,-2],[-3,-2]],[[5133,3651],[3,2],[-3,2],[-20,0],[-7,-2],[7,-5],[20,3]],[[3830,3653],[16,37],[21,-8],[14,16],[-14,21],[-21,-18],[-21,7],[-17,36],[-3,8],[-21,13],[-21,-12],[-11,-9],[11,-9],[21,-20],[21,14],[13,-31],[4,-45],[3,-2],[5,2]],[[4302,3653],[1,1],[13,44],[-13,28],[-21,-2],[-6,-26],[-5,-45],[11,-34],[20,34]],[[6359,3650],[1,3],[-1,4],[-4,-4],[4,-3]],[[6629,3649],[-9,4],[9,13],[2,-13],[-2,-4]],[[8144,3648],[-20,-4],[-21,-21],[-6,2]],[[8133,3672],[11,-15],[6,-4],[-6,-5]],[[5197,3608],[-1,-3],[-19,3],[9,45],[10,28],[14,17],[7,13],[5,-13],[15,-22],[21,-6],[21,1],[21,-15],[1,-3],[-1,-8],[-21,-13],[-21,5],[-21,-1],[-20,-11],[-20,-17]],[[5009,3597],[-7,11],[7,5],[4,-5],[-4,-11]],[[5549,3598],[-21,-7],[-10,17],[0,45],[10,20],[6,-20],[15,-29],[3,-16],[-3,-10]],[[4095,3602],[-2,6],[2,2],[9,-2],[-9,-6]],[[6898,3601],[-1,7],[1,37],[2,-37],[-2,-7]],[[7376,3602],[0,6],[0,5],[1,-5],[-1,-6]],[[2953,3559],[1,3],[-1,2],[-1,-2],[1,-3]],[[3099,3554],[10,8],[-10,5],[-21,0],[-20,41],[-1,1],[-1,-1],[1,-2],[20,-44],[1,-11],[21,3]],[[4926,3562]],[[5445,3521],[-14,41],[14,30],[8,-30],[-8,-41]],[[4320,3562],[-17,-19],[-11,19],[4,46],[7,13],[21,11],[8,21],[5,45],[7,14],[21,6],[17,26],[4,9],[21,5],[21,27],[1,4],[18,45],[1,3],[7,-3],[14,-2],[21,-14],[21,-21],[4,-8],[16,-25],[16,-20],[-16,-45],[-20,31],[-21,7],[-21,-9],[-21,0],[-6,-30],[6,-13],[20,-32],[-20,-41],[-20,36],[-6,5],[-15,9],[-21,23],[-13,-32],[-8,-27],[-10,-18],[-11,-18],[-20,-21],[-4,-7]],[[3182,3559],[-4,3],[-17,43],[-10,3],[-11,2],[-21,19],[-4,24],[-16,30],[-12,15],[-9,28],[-16,18],[10,45],[6,5],[16,-5],[5,-3],[20,-40],[3,-2],[18,-19],[10,-27],[3,-45],[8,-41],[21,-4],[5,-46],[-5,-3]],[[3867,3561],[-1,1],[1,1],[2,-1],[-2,-1]],[[7085,3550],[-20,-24],[-21,36],[21,22],[7,24],[13,39],[18,-39],[-14,-46],[-4,-12]],[[8092,3562],[-10,-17],[-18,17],[5,30]],[[8195,3617],[-9,5],[-21,-1],[-18,-13],[-3,-2],[-1,2],[-19,12],[-11,-12],[-10,-17],[-11,-29]],[[3701,3510],[14,7],[-14,5],[-3,-5],[3,-7]],[[6338,3515],[-1,2],[1,4],[2,-4],[-2,-2]],[[7168,3512],[-20,4],[-1,1],[1,2],[19,3]],[[7170,3514],[-2,-2]],[[3472,3441],[-16,30],[16,22],[8,-22],[-8,-30]],[[3805,3510],[-10,7],[-3,45],[13,24],[20,-15],[21,34],[21,-2],[11,5],[10,16],[8,-16],[11,-46],[-10,-45],[-9,-18],[-21,5],[-20,13],[-1,1],[-21,9],[-7,-10],[-13,-7]],[[4158,3467],[-7,4],[-14,22],[-10,24],[10,20],[21,-13],[4,-7],[3,-46],[-7,-4]],[[6317,3454],[-3,17],[3,23],[9,-23],[-9,-17]],[[4884,3412],[19,14],[-19,35],[-9,-35],[9,-14]],[[5071,3423],[-1,3],[1,6],[1,-6],[-1,-3]],[[5279,3423],[5,3],[-5,3],[-2,-3],[2,-3]],[[5362,3410],[2,16],[3,45],[0,46],[-5,18],[-4,-18],[1,-46],[-2,-45],[5,-16]],[[5507,3403],[7,23],[-7,28],[-8,-28],[8,-23]],[[5632,3426],[1,0],[-1,0]],[[3036,3426],[0,1],[1,-1],[-1,0]],[[6483,3425],[-1,1],[1,4],[3,-4],[-3,-1]],[[7438,3417],[-13,9],[13,7],[15,-7],[-15,-9]],[[8248,3422],[-2,4],[-19,35],[-13,10],[-7,20],[-3,24]],[[8198,3566],[-12,6],[-21,1],[-21,-4],[-20,22],[-20,-29],[-1,-1],[-21,-35],[-21,14],[-20,16],[-3,6],[-18,32],[-6,14],[0,4]],[[8227,3498],[0,-1],[10,-1]],[[8259,3449],[-6,-23],[-5,-4]],[[8310,3418],[-15,6]],[[8310,3440],[6,-14],[-6,-8]],[[5175,3356],[17,25],[-17,15],[-18,30],[-3,5],[-9,-5],[9,-27],[4,-18],[17,-25]],[[5589,3381],[-19,-41],[-21,38],[-2,3],[2,3],[15,42],[6,12],[20,5],[11,-17],[-11,-41],[-1,-4]],[[3535,3377],[-3,4],[3,7],[9,-7],[-9,-4]],[[3140,3375],[-6,6],[6,6],[4,-6],[-4,-6]],[[6047,3379],[-3,2],[3,1],[2,-1],[-2,-2]],[[4884,3296],[5,39],[-5,16],[-5,-16],[5,-39]],[[5756,3326],[13,9],[-13,15],[-5,-15],[5,-9]],[[5611,3328],[-6,7],[6,5],[2,-5],[-2,-7]],[[8227,3316],[-12,19],[12,36],[13,-36],[-13,-19]],[[4947,3276],[13,14],[-13,9],[-21,-2],[-18,-7],[18,-9],[21,-5]],[[4730,3290],[-12,-30],[-21,-5],[-15,35],[15,39],[2,6],[-2,26],[-2,20],[-14,45],[16,31],[21,10],[21,-35],[15,-6],[6,-6],[11,-39],[3,-46],[-14,-21],[-21,-7],[-9,-17]],[[7806,3285],[-15,-1],[-3,5]],[[8456,3255],[-21,-4],[-21,14],[-20,22],[-21,-3],[-3,6],[3,8],[21,-1],[6,38],[-1,18]],[[8456,3257],[0,-2]],[[8435,3266],[-21,12],[-10,12],[6,45],[0,6]],[[8438,3271],[-3,-5]],[[8434,3283],[-17,7],[5,32]],[[5140,3245],[14,28],[19,17],[-7,45],[-12,38],[-18,8],[-3,4],[-20,39],[-1,2],[1,2],[19,43],[-19,15],[-21,-1],[-15,32],[1,45],[9,46],[-5,45],[-11,4],[-18,41],[-2,46],[-1,0],[-6,-46],[0,-45],[6,-14],[14,-31],[-2,-46],[-3,-45],[-9,-29],[-20,-11],[-3,-6],[3,-15],[6,-30],[14,-24],[10,-21],[11,-45],[0,-1],[21,-14],[13,-31],[8,-22],[16,-23],[4,-18],[7,18]],[[5486,3231],[12,14],[-9,45],[15,45],[-8,46],[-10,15],[-5,-15],[-15,-39],[-7,-7],[-14,-27],[-2,-18],[2,-8],[12,-37],[9,-41],[20,27]],[[3140,3242],[-1,3],[1,1],[1,-1],[-1,-3]],[[3535,3243],[-21,-15],[-21,0],[-21,13],[-2,4],[-18,21],[-16,24],[-5,7],[-21,10],[-21,16],[-13,12],[-7,8],[-21,9],[-8,29],[-13,12],[-21,28],[-2,5],[-15,45],[11,46],[6,10],[6,-10],[15,-45],[1,-1],[20,-6],[21,-11],[20,-6],[21,-16],[3,-6],[18,-24],[16,-21],[5,-8],[20,-37],[0,-1],[21,-19],[21,-25],[0,-1],[21,-43],[1,-2],[-1,-2]],[[4137,3236],[-5,9],[5,8],[12,-8],[-12,-9]],[[4178,3240],[-12,5],[12,6],[9,-6],[-9,-5]],[[8497,3228],[-20,2],[-21,0],[-21,4],[-11,11],[-10,8],[-20,9],[-21,4],[-10,24],[10,35],[12,10],[-8,36]],[[8500,3251],[4,-6],[-7,-17]],[[5694,3199],[21,45],[1,1],[-1,17],[-21,-15],[-1,-2],[1,-46],[0,-13],[0,13]],[[4697,3149],[-20,-7],[-19,12],[18,45],[-6,46],[7,25],[12,-25],[-11,-46],[19,-36],[10,-9],[-10,-5]],[[7833,3132],[-21,3],[-2,3]],[[7834,3173],[10,-19],[-11,-22]],[[8435,3139],[-7,15],[7,40],[9,-40],[-9,-15]],[[7937,3139],[-2,15],[1,45],[1,1],[0,-1],[4,-45],[-4,-15]],[[5466,3099],[2,10],[6,45],[-8,41],[-21,-19],[-21,-8],[-21,12],[-11,19],[-9,34],[-4,12],[-17,35],[-10,10],[-11,16],[-9,29],[9,23],[14,23],[-14,24],[-21,-20],[-7,-4],[-13,-16],[-5,-30],[-16,-45],[-1,0],[1,0],[21,-25],[12,-20],[8,-6],[21,-14],[15,-26],[6,-5],[21,-6],[13,-34],[7,-7],[21,-9],[19,-29],[2,-8],[21,-2]],[[5694,3097],[5,12],[-5,39],[-2,-39],[2,-12]],[[3535,3104],[-5,5],[5,4],[17,-4],[-17,-5]],[[5777,3098],[-21,-3],[-20,-6],[-3,20],[3,12],[20,5],[21,2],[6,-19],[-6,-11]],[[6068,3154],[-21,-9],[-18,9],[18,29],[5,16],[16,13],[21,18],[20,-30],[1,-1],[5,-45],[-6,-1],[-1,1],[-19,18],[-21,-18]],[[6899,3109],[-1,-5],[0,5],[-1,45],[1,4],[21,41],[0,5],[13,-5],[-5,-45],[-8,-15],[-20,-30]],[[5196,3052],[12,11],[-12,6],[-19,40],[-2,9],[-21,28],[-5,-37],[5,-4],[21,-1],[17,-41],[4,-11]],[[5653,3044],[-21,-14],[-21,22],[-5,11],[5,23],[8,23],[-8,42],[-3,3],[-18,29],[-9,-29],[-11,-18],[-21,-23],[-21,4],[-10,-8],[-11,-7],[-7,7],[3,45],[4,29],[19,16],[2,1],[21,12],[21,1],[20,-10],[21,38],[21,-25],[11,-17],[-11,-11],[-20,-34],[20,-26],[21,-12],[3,-7],[0,-46],[-3,-19]],[[5403,3025],[-20,22],[-13,16],[13,10],[20,3],[7,-13],[-7,-38]],[[7168,3059],[2,4],[2,46],[-4,9],[-3,-9],[-17,-40],[-5,-6],[5,-12],[20,8]],[[9743,3029],[-21,33],[0,1],[-3,9]],[[9737,3102],[6,-13],[10,-26],[-10,-34]],[[8663,3031],[-20,-8],[-21,17],[-12,23],[3,46],[-12,42],[-3,3],[3,3],[4,2]],[[8673,3059],[-10,-28]],[[8663,3049],[-20,-14],[-21,24],[-2,4],[2,20],[2,26],[1,3]],[[8668,3063],[-5,-14]],[[8660,3063],[-17,-15],[-13,15],[1,34]],[[8663,3068],[-3,-5]],[[8645,3063],[-2,-2],[-2,2],[-1,19]],[[8651,3075],[-6,-12]],[[5466,2998],[14,20],[-14,21],[-6,-21],[6,-20]],[[5570,3001],[15,17],[-15,36],[-21,9],[-21,4],[-11,-4],[11,-6],[19,-39],[2,-2],[21,-15]],[[5715,3012],[13,6],[-13,37],[-6,-37],[6,-6]],[[3816,3018],[-11,-9],[-21,-4],[-21,10],[-2,3],[-19,26],[-20,7],[-12,12],[-9,18],[-21,-18],[-21,5],[-21,22],[-13,19],[-7,27],[-5,18],[5,8],[20,0],[21,14],[21,20],[21,-9],[21,-12],[20,-9],[13,-12],[8,-19],[4,-26],[10,-46],[7,-17],[21,-22],[11,-6]],[[3991,3012],[-4,6],[4,6],[3,-6],[-3,-6]],[[6878,3013],[-5,5],[5,35],[15,-35],[-15,-5]],[[7750,3010],[-21,-7],[-5,15],[5,12],[21,-10],[4,-2],[-4,-8]],[[7957,3004],[-3,14],[3,13],[3,-13],[-3,-14]],[[8663,3009],[-20,-13],[-16,22],[-5,4],[-21,40],[-1,1],[-7,46],[-13,11],[-15,-11],[-5,-3],[-3,3],[-6,45],[-8,45],[-4,11],[-21,18],[-9,-29],[-4,-45],[-8,-27],[-5,27],[-2,45],[-13,12],[-21,3],[-21,3],[-21,18],[-20,1],[-16,9],[-5,2],[-17,43],[-4,24],[-6,21],[6,18],[9,28],[2,4]],[[8522,3255],[12,1]],[[8677,3054],[-11,-36],[-3,-9]],[[9947,3018],[-17,-18],[-21,9],[-15,9],[0,5]],[[9952,3033],[-1,-3],[-4,-12]],[[5611,2956],[2,17],[-2,7],[-17,-7],[17,-17]],[[4552,2972],[0,1],[0,-1]],[[5798,2948],[-21,6],[-9,19],[9,28],[10,17],[11,19],[20,-19],[-10,-45],[-10,-25]],[[7127,2934],[4,39],[5,45],[-9,18],[-13,-18],[-4,-45],[17,-39]],[[8248,2968],[3,5],[-3,2],[-3,-2],[3,-5]],[[5403,2958],[-13,15],[-7,10],[-21,16],[-16,19],[-5,9],[-21,5],[-13,31],[-7,15],[-10,31],[10,24],[15,21],[5,7],[4,-7],[17,-20],[21,0],[20,-25],[1,-1],[20,-4],[21,-36],[2,-5],[7,-45],[12,-44],[0,-1],[0,-1],[-3,1],[-18,12],[-5,-12],[-16,-15]],[[4594,2914],[-15,13],[15,4],[12,-4],[-12,-13]],[[5694,2918],[-21,-5],[-20,6],[-14,8],[-2,46],[16,41],[20,-10],[21,-14],[15,-17],[0,-46],[-15,-9]],[[6006,2915],[-21,11],[-13,1],[13,5],[21,5],[5,-10],[-5,-12]],[[3942,2927],[-13,-34],[-7,34],[-14,24],[-20,14],[-4,8],[-4,45],[8,11],[20,-2],[9,-9],[12,-20],[21,-11],[21,12],[8,-26],[-8,-30],[-21,-2],[-8,-14]],[[4075,2897],[-18,30],[18,31],[16,-31],[-16,-30]],[[5549,2913],[-21,11],[-1,3],[1,2],[21,1],[2,-3],[-2,-14]],[[7708,2907],[2,20],[-2,3],[-3,-3],[3,-20]],[[8871,2927],[-12,25]],[[8875,2950],[-4,-23]],[[4967,2880],[6,2],[-6,29],[-2,-29],[2,-2]],[[5964,2873],[7,9],[-7,2],[-4,-2],[4,-9]],[[4137,2880],[1,2],[-1,3],[-2,-3],[2,-2]],[[4220,2877],[-10,5],[10,9],[4,-9],[-4,-5]],[[6400,2867],[-7,15],[7,5],[6,-5],[-6,-15]],[[7814,2882],[-2,-4],[-3,4],[2,45],[1,3],[21,20],[3,-23],[-3,-8],[-19,-37]],[[9494,2864],[-12,18],[-9,13],[-21,23],[-7,8]],[[9501,2872],[-7,-8]],[[9536,2880],[-3,2],[3,1],[0,-1],[0,-2]],[[8530,2882],[-12,-20],[-17,20],[-4,3],[-6,42],[6,34],[8,12],[-8,10],[-11,35],[6,45],[5,15],[4,-15],[12,-45],[5,-17],[21,-25],[3,-3],[18,-31],[7,-15],[-7,-9],[-13,9],[-8,30],[-6,-30],[-3,-45]],[[9996,2850],[-4,-11],[-20,13],[-11,30],[11,30],[8,15],[-8,40],[-21,-3],[-21,5],[-6,4],[-15,4],[-20,13],[-18,28],[-2,16]],[[9859,3048],[-12,11],[-6,4],[-15,19],[-21,8],[-20,3],[-8,16],[8,28],[8,13]],[[5881,2830],[19,7],[-19,10],[-21,-2],[-10,-8],[10,-5],[21,-2]],[[5943,2836],[1,1],[-1,1],[-20,6],[-20,-7],[20,-6],[20,5]],[[6026,2833],[3,4],[-3,4],[-17,-4],[17,-4]],[[3535,2817],[-21,17],[-16,3],[16,2],[21,12],[3,-14],[-3,-20]],[[5237,2828],[-20,-18],[-8,27],[-2,45],[10,44],[0,1],[20,19],[21,-10],[4,-9],[-4,-22],[-5,-23],[1,-45],[-17,-9]],[[5279,2836],[-4,1],[4,2],[0,-2],[0,-1]],[[8560,2835],[-5,2],[5,2],[0,-2],[0,-2]],[[8268,2837],[1,0],[0,-4],[-1,4]],[[5715,2828],[7,9],[14,31],[20,8],[21,4],[21,-6],[17,-37],[4,-35],[12,35],[-3,45],[-9,5],[-21,1],[-21,-4],[-21,3],[-20,7],[-21,-12],[-1,0],[-20,-24],[-21,-9],[-20,-7],[-3,-5],[3,-3],[20,-3],[21,-3],[21,0]],[[4552,2754],[4,37],[-4,26],[-20,-26],[20,-37]],[[5196,2785],[-3,6],[3,15],[10,-15],[-10,-6]],[[7148,2790],[1,1],[-1,7],[-1,-7],[1,-1]],[[7957,2779],[3,12],[-3,5],[-9,-5],[9,-12]],[[8082,2787],[-4,4],[4,7],[2,-7],[-2,-4]],[[5258,2734],[-5,12],[5,18],[5,-18],[-5,-12]],[[7127,2744],[1,2],[-1,1],[-1,-1],[1,-2]],[[4282,2733],[-3,13],[3,9],[7,-9],[-7,-13]],[[4469,2734],[-10,12],[10,19],[18,-19],[-18,-12]],[[4511,2741],[-18,5],[18,6],[6,-6],[-6,-5]],[[5030,2745],[-9,1],[9,1],[0,-1],[0,-1]],[[5570,2701],[-21,43],[-2,2],[-19,37],[-2,8],[2,9],[21,3],[16,-12],[5,-3],[12,-42],[-12,-45]],[[6615,2746],[-7,-9],[-7,9],[-14,41],[-3,4],[-18,14],[-21,21],[-15,-35],[-5,-5],[-10,5],[-11,9],[-21,33],[-21,-2],[-2,6],[2,35],[2,10],[19,20],[21,6],[21,0],[20,-20],[21,11],[21,19],[9,-36],[12,-42],[1,-3],[20,-36],[4,-10],[-4,-18],[-14,-27]],[[8331,2733],[-21,-19],[-20,-12],[-21,8],[-9,36],[-11,45],[-1,8],[-4,38],[4,8],[21,19],[21,-23],[20,-3],[21,15],[21,29]],[[8352,2882],[19,-45],[-19,-25],[-21,13],[-19,-34],[19,-28],[6,-17],[-6,-13]],[[8622,2745],[-1,1],[1,1],[3,-1],[-3,-1]],[[8505,2746],[-8,-25],[-20,16],[-4,9],[4,11],[11,34],[9,25],[21,7],[5,-32],[-5,-7],[-13,-38]],[[9991,2786],[0,5],[1,7],[7,1]],[[8290,2735],[-9,11],[-12,20],[-7,25],[-6,46],[13,14],[11,-14],[10,-32],[5,-14],[11,-45],[-16,-11]],[[4158,2697],[13,4],[-13,3],[-21,0],[-21,10],[-21,29],[-2,3],[-18,3],[-21,2],[-14,-5],[14,-6],[21,-3],[13,-36],[7,-13],[21,-27],[21,34],[21,2]],[[5694,2687],[8,14],[-8,44],[-5,-44],[5,-14]],[[7554,2701],[-12,19],[-9,26],[9,40],[20,-40],[1,-4],[4,4],[-4,1],[-20,44],[5,46],[-6,25],[-6,-25],[-15,-33],[-6,-13],[-4,-45],[10,-45]],[[7521,2701],[21,-13],[12,13]],[[8996,2694],[7,7],[-7,5],[-21,13],[-15,-18],[15,-34],[21,27]],[[9058,2700],[0,1],[0,2],[-21,2],[-6,-4],[6,-13],[21,12]],[[7999,2691],[-21,4],[-3,6],[-6,45],[6,45],[-18,37],[-14,9],[14,27],[21,-15],[15,-12],[-9,-46],[3,-45],[12,-34],[8,-11],[-8,-10]],[[3223,2681],[-21,-10],[-20,-1],[-21,6],[-21,-11],[-21,18],[-18,18],[0,45],[18,20],[21,17],[21,7],[21,-11],[12,12],[8,9],[21,2],[21,3],[21,-3],[20,-10],[21,7],[5,-8],[6,-45],[2,-45],[-13,-19],[-21,-3],[-20,2],[-15,20],[-6,43],[-2,2],[-19,14],[-3,-14],[3,-8],[15,-37],[-15,-20]],[[6878,2643],[2,12],[3,46],[-5,13],[-5,-13],[-4,-46],[9,-12]],[[6359,2633],[-21,-6],[-21,28]],[[6317,2655],[0,1],[-11,45],[11,19],[21,15],[21,4],[20,-38],[-11,-
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment