Skip to content

Instantly share code, notes, and snippets.

@zachmargolis
Last active October 21, 2015 23:30
Show Gist options
  • Save zachmargolis/374a267e8c9a66cc4152 to your computer and use it in GitHub Desktop.
Save zachmargolis/374a267e8c9a66cc4152 to your computer and use it in GitHub Desktop.
SF Shoreline

SF Shoreline

Found some nice GIS files for the SF shoreline.

Using a neat tool called mapshaper, it appears these files generate a super nice map like this:

sf shoreline

However instead we get this:

sf shoreline

and it loads really slowly

Debug Steps

  • Looking at the GeoJSON outputted by the topojson.mesh call, the resulting coordinates seem to be super weird. We would expect things to be roughly in the ballpark of (-122, 37) but somehow we have things near (6,006,080, 2,123,063) instead.
<!DOCTYPE html>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js" charset="utf-8"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.19/topojson.min.js" charset="utf-8"></script>
<title>SF Shoreline</title>
<style text="text/css">
.land {
fill: none;
stroke: #000;
stroke-width: .5px;
}
</style>
</head>
<body>
<script type="text/javascript">
var alcatrazCenter = [-122.42293660528958, 37.81796563882381];
var width = 800,
height = 400;
var svg = d3.select('body')
.append('svg')
.attr('height', height)
.attr('width', width);
d3.json('sfshore.json', function(error, sfshore) {
if (error) { throw error; }
// how to center the thing
// https://groups.google.com/forum/#!topic/d3-js/lR7GGswygI8
var projection = d3.geo.albers()
.rotate([-alcatrazCenter[0], 0])
.center([ 0, alcatrazCenter[1] ])
.scale(1070 * 512)
.translate([width / 2, height / 2])
.precision(.1);
var path = d3.geo.path()
.projection(projection);
// Using either of these does not give the expected result
function exteriorBoundary(a, b) { return a === b; }
function interiorBoundary(a, b) { return a !== b; }
svg.append('path')
.datum(topojson.mesh(sfshore, sfshore.objects.sfshore))
.attr('class', 'land')
.attr('d', path);
});
</script>
</body>
</html>
topojson = node_modules/topojson/bin/topojson
$(topojson): package.json
npm install
touch -c $(topojson) || exit 1
sfshore/sfshore.shp:
mkdir -p sfshore/
# https://data.sfgov.org/Geographic-Locations-and-Boundaries/San-Francisco-Shoreline-Zipped-Shapefile-Format-/kj7y-jjpu
curl -L https://data.sfgov.org/download/kj7y-jjpu/ZIP > sfshore.zip
unzip sfshore.zip -d sfshore/
touch -c sfhore/sfshore.shp || touch -c sfhore/sfshore.dbf || exit 1
sfshore/sfshore-fixed.shp: sfshore/sfshore.shp sfshore/sfshore.dbf
ogr2ogr -f 'ESRI Shapefile' -t_srs wgs84 \
sfshore/sfshore-fixed.shp \
sfshore/sfshore.shp
sfshore.json: sfshore/sfshore-fixed.shp sfshore/sfshore-fixed.dbf $(topojson)
$(topojson) \
--out sfshore.json \
-- sfshore=sfshore/sfshore-fixed.shp
{
"dependencies": {
"topojson": "^1.6.19"
}
}
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"sfshore":{"type":"GeometryCollection","bbox":[-122.51494757907207,37.70808920805412,-122.35696687690995,37.81201578975519],"geometries":[{"type":"Polygon","arcs":[[0]]},{"type":"Polygon","arcs":[[1],[2],[3],[4],[5],[6],[7],[8],[9],[10],[11],[12],[13],[14],[15],[16]]},{"type":"Polygon","arcs":[[17]]},{"type":"Polygon","arcs":[[18]]},{"type":"Polygon","arcs":[[19]]},{"type":"Polygon","arcs":[[20]]},{"type":"Polygon","arcs":[[21]]},{"type":"Polygon","arcs":[[22]]},{"type":"Polygon","arcs":[[23]]},{"type":"Polygon","arcs":[[24]]},{"type":"Polygon","arcs":[[25]]},{"type":"Polygon","arcs":[[26]]},{"type":"Polygon","arcs":[[27]]},{"type":"Polygon","arcs":[[28]]},{"type":"Polygon","arcs":[[29]]},{"type":"Polygon","arcs":[[30]]},{"type":"Polygon","arcs":[[-12]]},{"type":"Polygon","arcs":[[-13]]},{"type":"Polygon","arcs":[[-11]]},{"type":"Polygon","arcs":[[-17]]},{"type":"Polygon","arcs":[[-15]]},{"type":"Polygon","arcs":[[-16]]},{"type":"Polygon","arcs":[[-8]]},{"type":"Polygon","arcs":[[-3]]},{"type":"Polygon","arcs":[[-6]]},{"type":"Polygon","arcs":[[-10]]},{"type":"Polygon","arcs":[[-7]]},{"type":"Polygon","arcs":[[-5]]},{"type":"Polygon","arcs":[[-9]]},{"type":"Polygon","arcs":[[-4]]},{"type":"Polygon","arcs":[[31]]},{"type":"Polygon","arcs":[[-14]]}]}},"arcs":[[[5798,9793],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-13,24],[-4,21],[2,23],[8,21],[14,16],[171,94],[49,5],[0,-3],[-49,-5],[-169,-94],[-14,-15],[-8,-20],[-2,-22],[4,-20],[11,-21],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0]],[[5701,9882],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[2,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[1,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-5,0],[4,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-2,0],[-2,0],[-2,-1],[-2,0],[-1,0],[-2,-1],[-2,0],[-2,-1],[-2,0],[-1,-1],[-2,0],[-2,-1],[-2,-1],[-1,0],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-2,0],[-1,-1],[-2,-1],[-2,-1],[-1,-2],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-2],[-1,-1],[-2,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-2],[-2,-1],[-1,-2],[-1,-1],[-2,-2],[-3,-3],[-1,-3],[-2,-2],[-1,-3],[-2,-2],[-2,-3],[-1,-2],[-2,-3],[-1,-3],[-2,-3],[-1,-2],[-2,-3],[-1,-3],[-1,-3],[-1,-3],[-2,-3],[-1,-2],[-1,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-4],[-1,-3],[0,-3],[-1,-3],[-1,-3],[-1,-3],[0,-3],[-1,-3],[0,-4],[-1,-3],[0,-3],[0,-3],[-1,-3],[0,-4],[0,-3],[0,-3],[-1,-3],[0,-4],[0,-3],[0,-3],[-1,-11],[2,3],[0,-3],[0,-8],[1,-8],[1,-8],[1,-8],[1,-9],[1,-8],[1,-13],[2,1],[0,-3],[0,-4],[1,-3],[0,-4],[1,-3],[0,-4],[1,-4],[0,-3],[1,-4],[1,-3],[1,-4],[0,-3],[1,-3],[1,-4],[1,-3],[1,-4],[2,-3],[11,9],[7,-12],[4,3],[-8,13],[2,1],[16,-28],[-1,-1],[-2,4],[-1,-1],[-4,5],[1,0],[-2,5],[-2,-2],[2,-4],[-10,-10],[-1,1],[-1,-2],[-1,0],[1,0],[2,-3],[2,-3],[3,-3],[2,-2],[2,-3],[3,-3],[2,-2],[3,-3],[2,-2],[3,-3],[3,-2],[2,-3],[3,-2],[3,-2],[2,-2],[3,-3],[3,-2],[3,-2],[3,-1],[3,-2],[3,-2],[3,-2],[3,-2],[3,-1],[3,-2],[3,-1],[3,-2],[3,-1],[3,-1],[5,-2],[1,-1],[2,-1],[2,0],[2,-1],[2,-1],[1,0],[2,-1],[2,0],[2,0],[2,-1],[1,0],[2,-1],[2,0],[2,0],[2,0],[2,0],[2,-1],[1,0],[2,0],[2,0],[2,0],[2,0],[2,1],[2,0],[1,0],[2,0],[2,0],[2,1],[2,0],[2,1],[1,0],[2,0],[2,1],[2,0],[2,1],[2,1],[3,1],[3,2],[4,2],[4,3],[4,2],[4,3],[4,3],[4,3],[4,3],[4,3],[3,3],[4,3],[4,3],[3,3],[4,4],[4,3],[9,9],[8,8],[8,8],[8,9],[8,8],[8,9],[7,9],[8,9],[7,10],[9,12],[1,1],[-17,29],[2,2],[17,-28],[11,16],[-3,5],[-2,2],[-1,0],[-8,12],[1,1],[-4,6],[2,2],[4,-7],[1,1],[7,-11],[1,-3],[1,-1],[2,-4],[15,25],[1,-1],[-3,24],[-25,32],[3,3],[-91,101],[2,4],[94,-106],[10,3],[11,-22],[6,1],[2,-17],[3,0],[9,10],[-3,18],[5,0],[1,-6],[16,0],[4,-2],[-2,-7],[-18,3],[2,-20],[6,2],[5,-45],[86,16],[-1,7],[9,2],[1,-8],[68,13],[-2,20],[-6,2],[-56,-1],[0,-7],[-2,0],[0,11],[-64,2],[0,22],[55,-3],[0,6],[12,-7],[33,-2],[3,8],[-41,24],[2,5],[66,-40],[-3,-9],[-1,-7],[-2,0],[0,-2],[4,-2],[5,1],[2,-18],[5,0],[0,-5],[7,0],[1,-2],[7,1],[1,-16],[-7,-1],[1,-2],[-6,-1],[1,-8],[18,3],[2,-18],[63,12],[-1,6],[3,1],[-2,13],[-53,2],[0,4],[54,-3],[3,-1],[8,1],[1,4],[-4,0],[1,30],[-79,7],[1,23],[-119,119],[-1,-2],[-33,34],[2,2],[-50,49],[15,23],[22,-22],[10,4],[-6,23],[2,2],[12,-43],[32,-23],[2,3],[6,-1],[7,-8],[3,5],[-12,14],[5,6],[-27,28],[8,10],[32,-1],[127,-129],[94,-94],[10,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[2,3],[-1,1],[-1,-1],[-14,13],[3,4],[14,-14],[-1,-1],[1,-1],[1,0],[5,-5],[10,5],[-6,5],[1,1],[-2,1],[0,-1],[-14,13],[3,4],[13,-13],[-1,-1],[2,-2],[0,1],[7,-6],[4,2],[0,9],[-36,36],[4,8],[46,-26],[34,-9],[38,-22],[3,7],[-2,2],[0,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,2],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-42,43],[6,7],[11,11],[15,-22],[-5,-6],[79,-74],[7,-1],[7,5],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-3,5],[-1,-1],[-1,0],[-11,18],[3,3],[12,-17],[0,-2],[-1,0],[3,-5],[1,0],[1,0],[1,0],[0,-1],[1,0],[13,11],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-3,4],[-1,0],[-1,0],[-10,18],[4,3],[10,-18],[0,-1],[-1,-1],[3,-5],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[6,6],[-61,109],[9,8],[1,-2],[76,63],[1,-2],[-76,-63],[78,-140],[2,1],[11,-19],[10,-2],[1,1],[-13,22],[2,1],[14,-25],[0,2],[5,-1],[0,-2],[12,-3],[2,0],[0,3],[5,-1],[0,-3],[7,-2],[6,49],[2,-3],[-5,-46],[6,48],[-15,39],[-4,-3],[4,-13],[-1,0],[-4,11],[-1,0],[-1,-1],[-1,-1],[3,-8],[-1,0],[-3,8],[-1,0],[-2,-1],[0,-1],[3,-8],[-1,-1],[-3,9],[-1,0],[-2,-1],[0,-1],[3,-9],[-1,0],[-3,8],[-1,1],[-2,-1],[0,-1],[3,-9],[-1,-1],[-3,9],[-1,1],[-2,-2],[-1,-1],[4,-9],[-1,0],[-4,9],[-1,0],[-2,-1],[0,-1],[3,-9],[-1,0],[-8,23],[1,0],[4,-10],[1,-1],[3,2],[0,1],[-4,11],[1,0],[4,-11],[1,0],[2,1],[1,1],[-5,11],[2,1],[4,-11],[3,1],[0,1],[-4,11],[1,0],[4,-11],[1,0],[2,1],[1,1],[-5,11],[1,1],[5,-11],[0,-1],[3,2],[0,1],[-4,11],[1,0],[4,-11],[1,0],[6,3],[-16,44],[-5,-3],[4,-12],[-1,-1],[-4,12],[-1,0],[-2,-1],[-1,-2],[5,-11],[-1,0],[-5,11],[-1,0],[-2,-1],[0,-1],[4,-11],[-1,-1],[-4,11],[-1,1],[-3,-2],[0,-1],[4,-11],[-1,0],[-4,11],[-1,0],[-2,-1],[-1,-1],[5,-11],[-1,-1],[-5,11],[0,1],[-3,-2],[0,-1],[4,-11],[-1,0],[-4,11],[-1,0],[-2,-1],[-1,-1],[5,-11],[-1,-1],[-5,11],[0,1],[-3,-1],[0,-2],[4,-11],[-1,0],[-4,11],[-1,0],[-3,-1],[0,-1],[4,-11],[-1,-1],[-4,11],[-1,1],[-2,-2],[0,-1],[4,-11],[-1,0],[-4,11],[-1,0],[-3,-1],[0,-1],[4,-11],[-1,-1],[-4,11],[-1,1],[-2,-1],[0,-1],[4,-12],[-1,0],[-11,28],[1,0],[6,-13],[0,-1],[3,2],[1,1],[-6,13],[1,1],[6,-14],[3,1],[0,1],[-5,14],[1,1],[5,-14],[1,0],[3,1],[0,1],[-5,14],[1,0],[5,-13],[1,-1],[3,2],[0,1],[-5,14],[1,0],[5,-13],[1,-1],[3,2],[0,1],[-5,13],[1,1],[5,-14],[1,0],[3,1],[0,1],[-5,14],[1,1],[5,-14],[1,0],[3,1],[0,1],[-5,14],[1,0],[5,-13],[1,-1],[3,2],[0,1],[-5,13],[1,1],[5,-14],[1,0],[2,1],[1,1],[-6,14],[1,0],[6,-13],[0,-1],[4,2],[0,1],[-5,14],[1,0],[5,-13],[1,0],[5,3],[-20,52],[-5,-3],[5,-15],[-1,-1],[-5,14],[-3,-1],[0,-1],[5,-14],[-1,0],[-6,14],[-8,-4],[0,-1],[5,-14],[-1,-1],[-5,14],[-1,0],[-8,-4],[0,-1],[5,-13],[-1,-1],[-5,14],[-1,0],[-2,-1],[0,-1],[4,-14],[-1,-1],[-4,15],[-4,-2],[4,-15],[-1,-1],[-4,15],[-5,-2],[0,-1],[5,-14],[-1,0],[-5,13],[1,-16],[-1,0],[-1,17],[-8,-4],[0,-1],[5,-14],[-1,0],[-6,17],[1,0],[1,0],[54,29],[-6,17],[5,18],[18,9],[2,6],[15,9],[5,-2],[12,7],[0,-1],[17,9],[104,-21],[59,-239],[0,-1],[-1,0],[-60,238],[-102,21],[-16,-8],[0,-2],[13,-5],[10,6],[1,3],[92,-20],[-2,-14],[-1,0],[1,12],[0,1],[-3,0],[-2,-12],[-1,0],[1,12],[0,1],[-3,0],[-1,0],[-1,-12],[-2,0],[2,12],[0,1],[-3,1],[-1,-1],[-1,-12],[-2,0],[2,12],[0,1],[-3,1],[-1,-1],[-1,-12],[-2,0],[2,12],[0,1],[-3,1],[-1,-1],[-2,-12],[-1,0],[2,12],[-1,1],[-2,1],[-1,-1],[-2,-12],[-1,0],[2,12],[-1,1],[-2,1],[-1,-1],[-2,-12],[-1,0],[2,13],[-1,0],[-3,1],[0,-1],[-2,-12],[-1,1],[1,12],[0,1],[-2,0],[-1,-1],[-2,-12],[-1,1],[2,12],[-1,1],[-2,0],[-1,0],[-2,-13],[-1,1],[2,12],[-1,1],[-2,0],[-1,0],[-2,-13],[-1,1],[2,12],[-1,1],[-3,0],[-2,-12],[-1,0],[1,12],[0,1],[-3,0],[-2,-12],[-2,0],[2,12],[0,1],[-3,1],[-1,-1],[-1,-12],[-2,0],[2,12],[0,1],[-3,1],[-1,-1],[-1,-12],[-2,0],[2,12],[0,1],[-3,1],[-1,-1],[-2,-12],[-1,0],[2,12],[-1,1],[-2,1],[-1,-1],[-2,-12],[-1,0],[-3,9],[-1,0],[-2,0],[0,-1],[3,-9],[-1,-1],[-4,11],[-4,-3],[11,-31],[-1,-6],[-1,-2],[0,-4],[5,-1],[2,12],[1,0],[-2,-11],[1,-1],[3,0],[2,11],[1,0],[-2,-12],[1,-1],[3,-1],[0,1],[2,12],[1,0],[-2,-12],[1,-1],[3,-1],[1,1],[1,12],[1,0],[-1,-12],[0,-1],[3,-1],[1,1],[1,12],[1,0],[-1,-12],[0,-1],[3,-1],[1,1],[1,12],[1,0],[-1,-12],[0,-1],[3,-1],[1,1],[2,12],[1,0],[-2,-12],[1,-1],[2,-1],[1,1],[2,12],[1,0],[-2,-13],[1,0],[3,-1],[0,1],[2,12],[1,-1],[-2,-12],[1,-1],[3,0],[1,0],[1,13],[1,-1],[-1,-12],[0,-1],[3,0],[1,0],[1,13],[2,-1],[-2,-12],[0,-1],[3,0],[1,0],[2,12],[1,0],[-2,-12],[0,-1],[3,0],[1,0],[2,12],[1,0],[-2,-12],[0,-1],[3,0],[1,0],[2,12],[1,0],[-2,-12],[1,-1],[3,-1],[0,1],[2,12],[1,0],[-2,-12],[1,-1],[3,-1],[1,1],[1,12],[2,0],[-2,-12],[0,-1],[3,-1],[1,1],[2,12],[1,0],[-2,-12],[0,-1],[5,-1],[-2,-15],[-1,1],[1,12],[0,1],[-3,0],[-1,0],[-1,-13],[-1,1],[1,12],[0,1],[-3,0],[-1,0],[-1,-13],[-1,1],[1,12],[0,1],[-3,0],[-1,0],[-2,-12],[-1,0],[2,12],[-1,1],[-2,0],[-1,0],[-2,-12],[-1,0],[2,12],[-1,1],[-3,1],[-1,-1],[-1,-12],[-1,0],[1,12],[0,1],[-3,1],[-1,-1],[-1,-12],[-1,0],[1,12],[0,1],[-3,1],[-1,-1],[-1,-12],[-1,0],[1,12],[0,1],[-3,1],[-1,-1],[-2,-12],[-1,0],[2,12],[0,1],[-3,1],[-1,-1],[-2,-12],[-1,0],[2,12],[-1,1],[-2,1],[-1,-1],[-2,-12],[-1,0],[2,13],[-1,0],[-3,1],[0,-1],[-2,-12],[-1,0],[2,13],[-1,1],[-3,0],[-1,0],[-1,-13],[-1,1],[1,12],[0,1],[-3,0],[-1,0],[-1,-13],[-1,1],[1,12],[0,1],[-3,0],[-1,0],[-2,-12],[-1,0],[2,12],[0,1],[-3,0],[-1,0],[-2,-12],[-1,0],[2,12],[-1,1],[-2,0],[-1,0],[-2,-12],[-1,0],[2,11],[-1,1],[-3,0],[0,-1],[-2,-10],[-1,0],[2,13],[-6,1],[0,-3],[1,-2],[-1,-6],[-2,-1],[-1,-10],[1,-2],[0,-5],[-2,-2],[-1,-10],[1,-2],[-1,-4],[3,-1],[1,11],[1,0],[-1,-9],[0,-1],[2,0],[2,10],[1,0],[-2,-10],[1,-1],[2,0],[1,0],[1,10],[1,0],[-1,-11],[0,-1],[3,-1],[0,1],[2,11],[1,0],[-2,-11],[1,-1],[2,0],[1,0],[1,11],[1,0],[-1,-11],[0,-1],[3,0],[1,0],[1,11],[1,0],[-2,-11],[1,-1],[2,0],[1,0],[2,11],[-1,-11],[0,-1],[2,0],[1,0],[2,11],[1,0],[-2,-11],[1,-1],[2,0],[1,0],[2,11],[1,0],[-2,-11],[1,-1],[2,0],[1,0],[1,11],[1,0],[-1,-11],[0,-1],[3,0],[0,1],[2,10],[1,0],[-2,-11],[1,-1],[3,0],[0,1],[1,11],[1,-1],[-1,-11],[1,-1],[2,0],[1,1],[1,10],[1,0],[-1,-11],[3,-1],[0,1],[2,11],[1,-1],[-2,-10],[1,-1],[2,-1],[1,1],[1,11],[1,-1],[-1,-10],[0,-1],[3,-1],[1,1],[1,11],[1,-1],[-2,-10],[1,-1],[2,-1],[1,1],[1,11],[1,0],[-1,-11],[0,-1],[3,-1],[1,1],[1,11],[1,0],[-1,-11],[0,-1],[2,-1],[1,1],[2,11],[-1,-11],[0,-1],[3,-1],[1,1],[2,11],[-1,-11],[0,-1],[3,-1],[1,1],[1,11],[1,0],[-1,-11],[0,-1],[2,0],[1,0],[2,11],[-1,-11],[0,-1],[3,0],[1,0],[1,11],[1,0],[-1,-11],[0,-1],[3,0],[2,11],[1,0],[-2,-11],[1,-1],[3,-1],[-1,-11],[-1,0],[1,9],[0,1],[-2,1],[-1,-1],[-1,-10],[-1,1],[2,9],[-1,1],[-2,0],[-2,-10],[-1,0],[2,10],[-1,1],[-2,0],[0,-1],[-2,-9],[1,10],[-1,1],[-1,0],[-1,-1],[-1,-9],[-1,0],[1,9],[0,1],[-2,1],[-1,-1],[-1,-9],[-1,0],[1,9],[0,1],[-2,0],[-1,0],[-1,-10],[-1,0],[2,10],[-1,1],[-2,0],[-2,-10],[-1,0],[2,10],[-1,1],[-1,0],[-1,-1],[-1,-9],[-1,0],[1,9],[0,1],[-2,1],[-1,-1],[-1,-9],[-1,0],[1,9],[0,1],[-2,0],[-2,-10],[-1,1],[2,9],[-1,1],[-2,0],[-1,0],[-1,-10],[-1,0],[2,10],[-1,1],[-2,0],[0,-1],[-2,-9],[-1,0],[2,10],[-1,0],[-1,1],[-1,-1],[-1,-9],[-1,0],[1,9],[0,1],[-2,1],[-1,-1],[-1,-9],[-1,0],[1,9],[0,1],[-2,0],[-1,0],[-1,-10],[-1,0],[1,10],[0,1],[-2,0],[0,-1],[-2,-9],[1,10],[-1,1],[-1,0],[-1,-1],[-1,-9],[-1,0],[1,9],[-1,1],[-1,1],[-1,-1],[-1,-9],[-1,0],[1,9],[0,1],[-2,0],[-1,0],[-1,-10],[-1,0],[2,10],[-1,1],[-2,0],[-2,-10],[-1,0],[2,10],[-1,1],[-2,0],[0,-1],[-2,-9],[-1,0],[2,10],[-1,0],[-1,1],[-1,-1],[-1,-9],[-1,0],[1,9],[0,1],[-2,1],[-1,-1],[-1,-10],[-1,1],[1,9],[0,1],[-2,0],[-1,0],[-1,-10],[-1,0],[2,10],[-1,1],[-1,0],[-1,-1],[-2,-9],[1,10],[-1,0],[-1,1],[-1,-1],[-1,-9],[-1,0],[1,9],[0,1],[-2,1],[-1,-1],[-1,-9],[-1,0],[1,8],[-1,1],[-1,0],[-2,-9],[1,9],[-1,1],[-1,0],[-1,-1],[-1,-8],[-1,0],[2,11],[-3,1],[-1,-2],[-2,-10],[1,-2],[-1,-10],[7,-18],[1,0],[1,1],[1,10],[1,-1],[-1,-9],[0,-1],[2,-1],[1,1],[1,10],[0,-10],[0,-1],[2,0],[2,10],[-1,-10],[1,-1],[2,0],[1,10],[1,0],[-1,-10],[1,-1],[2,0],[0,1],[1,9],[1,0],[-1,-10],[1,0],[1,-1],[1,1],[2,10],[1,-1],[-2,-9],[0,-1],[2,-1],[1,1],[1,10],[1,0],[-1,-10],[0,-1],[2,0],[1,0],[1,10],[1,0],[-1,-10],[0,-1],[2,0],[1,1],[1,9],[1,0],[-1,-10],[0,-1],[2,0],[1,1],[1,10],[1,-1],[-1,-9],[0,-1],[2,-1],[1,1],[1,10],[1,0],[-2,-10],[1,-1],[2,-1],[1,1],[1,10],[1,0],[-1,-10],[0,-1],[2,0],[2,10],[-1,-10],[1,-1],[2,0],[1,1],[1,9],[1,0],[-2,-10],[1,-1],[1,0],[1,1],[1,10],[1,0],[-1,-10],[0,-1],[2,-1],[1,1],[1,10],[1,0],[-1,-10],[1,-1],[1,0],[1,0],[1,10],[1,0],[-1,-10],[0,-1],[2,0],[1,1],[1,9],[1,0],[-2,-10],[1,-1],[2,0],[1,1],[1,10],[0,-1],[-1,-9],[1,-1],[2,-1],[1,1],[1,10],[1,0],[-1,-10],[0,-1],[2,-1],[1,1],[1,10],[1,0],[-2,-10],[1,-1],[2,0],[1,0],[1,10],[1,0],[-1,-10],[0,-1],[2,0],[0,1],[2,9],[-1,-10],[1,-1],[2,0],[0,1],[1,10],[1,-1],[-1,-9],[1,-1],[1,-1],[1,1],[1,10],[1,0],[-1,-10],[0,-1],[2,0],[1,0],[1,10],[1,0],[-1,-10],[1,-1],[1,0],[1,0],[1,10],[1,0],[-1,-10],[0,-1],[2,0],[1,1],[1,10],[1,-1],[-2,-9],[1,-1],[2,-1],[1,1],[1,10],[1,0],[-1,-10],[0,-1],[2,-1],[1,1],[1,10],[1,0],[-2,-22],[-1,0],[0,9],[0,1],[-1,0],[-1,-1],[-1,-8],[-1,0],[1,9],[0,1],[-2,0],[0,-1],[-1,-9],[-1,1],[1,8],[-1,1],[-1,0],[-1,0],[-1,-9],[-1,0],[1,9],[0,1],[-2,0],[0,-1],[-1,-8],[-1,0],[1,9],[-1,1],[-1,0],[-1,-1],[-1,-8],[1,8],[-1,1],[-1,1],[-1,-1],[-1,-9],[-1,0],[1,9],[-1,1],[-1,0],[-1,0],[-1,-9],[-1,0],[1,9],[0,1],[-1,0],[-1,-1],[-1,-8],[-1,0],[1,8],[0,1],[-2,1],[-1,-1],[-1,-9],[1,9],[-1,1],[-1,0],[-1,0],[-1,-9],[-1,0],[1,9],[0,1],[-2,0],[-1,-1],[-1,-8],[-1,0],[1,9],[0,1],[-1,0],[-1,-1],[-1,-9],[-1,1],[1,8],[-1,1],[-1,0],[-1,0],[-1,-9],[-1,0],[1,9],[0,1],[-1,0],[-1,-1],[-1,-8],[-1,0],[1,9],[-1,1],[-1,0],[0,-1],[-1,-9],[-1,1],[1,8],[-1,1],[-1,0],[-1,0],[-1,-9],[-1,0],[1,9],[0,1],[-2,0],[-1,-9],[-1,0],[1,9],[-1,1],[-1,0],[-1,-1],[-1,-8],[0,8],[0,1],[-1,1],[-1,-1],[-1,-9],[-1,0],[1,9],[0,1],[-2,0],[-1,0],[-1,-9],[1,9],[-1,1],[-1,0],[-1,-1],[-1,-8],[-1,0],[1,8],[0,1],[-2,1],[0,-1],[-1,-9],[-1,0],[1,9],[-1,1],[-1,0],[-1,0],[-1,-9],[-1,0],[1,9],[0,1],[-2,0],[0,-1],[-1,-8],[-1,0],[1,9],[-1,0],[-1,1],[-1,-1],[-1,-9],[-1,1],[1,8],[0,1],[-1,0],[-1,0],[-1,-9],[-1,0],[1,9],[-1,1],[-1,0],[-1,-1],[-1,-8],[-1,0],[1,9],[0,1],[-2,0],[0,-1],[-1,-9],[-1,1],[1,8],[-1,1],[-1,0],[-1,0],[-1,-9],[-1,0],[2,9],[-1,1],[-2,0],[-1,-9],[-1,0],[1,6],[-2,2],[-8,2],[17,-46],[6,4],[-4,3],[-3,0],[2,11],[-1,-9],[1,-1],[2,0],[0,1],[1,8],[1,0],[-1,-9],[1,0],[1,-1],[1,1],[1,8],[1,0],[-1,-8],[0,-1],[1,0],[1,0],[1,9],[1,-1],[-1,-8],[0,-1],[2,0],[0,1],[1,8],[1,0],[-1,-9],[1,-1],[1,0],[1,1],[1,8],[-1,-8],[1,-1],[2,-1],[0,1],[1,8],[1,0],[-1,-8],[1,-1],[1,0],[1,0],[0,9],[1,0],[-1,-9],[1,-1],[2,0],[0,1],[1,8],[1,0],[-1,-9],[1,0],[1,-1],[0,1],[1,8],[1,0],[-1,-8],[1,-1],[1,0],[1,0],[1,9],[0,-9],[0,-1],[2,0],[1,1],[0,8],[1,0],[-1,-9],[1,-1],[2,0],[0,1],[1,8],[1,0],[-1,-8],[1,-1],[1,-1],[1,1],[1,8],[1,0],[-1,-8],[0,-1],[1,0],[1,0],[1,9],[1,0],[-1,-9],[0,-1],[2,0],[0,1],[1,8],[1,0],[-1,-8],[1,-1],[1,-1],[1,1],[1,8],[1,0],[-1,-8],[0,-1],[2,0],[1,9],[1,-1],[-1,-8],[1,-1],[1,0],[1,1],[1,8],[1,0],[-1,-9],[0,-1],[1,0],[1,1],[1,8],[1,0],[-1,-8],[1,-1],[1,0],[1,0],[0,9],[1,-1],[-1,-8],[1,-1],[1,0],[1,0],[1,9],[1,0],[-1,-9],[1,-1],[1,0],[1,1],[0,8],[1,0],[-1,-8],[1,-1],[1,-1],[1,1],[1,8],[1,0],[-1,-8],[0,-1],[2,0],[1,9],[1,0],[-1,-9],[1,-1],[1,0],[1,1],[1,8],[1,0],[-1,-9],[2,-1],[0,1],[1,8],[1,0],[-1,-8],[1,-1],[1,0],[1,0],[1,9],[1,-1],[-1,-8],[0,-1],[2,0],[1,9],[1,0],[-1,-9],[1,-1],[1,0],[1,1],[1,8],[1,0],[-1,-8],[0,-1],[1,-1],[1,1],[1,8],[1,0],[-1,-8],[1,-1],[1,0],[1,0],[1,9],[-1,-9],[1,-1],[2,0],[-1,-11],[-1,0],[1,9],[0,1],[-1,0],[-1,-1],[-1,-8],[-1,0],[1,9],[-1,0],[-1,1],[-1,-1],[0,-9],[-1,0],[1,9],[-1,1],[-1,0],[-1,0],[-1,-9],[-1,0],[1,9],[-1,1],[-1,0],[-1,0],[-1,-9],[-1,0],[1,9],[0,1],[-1,0],[-1,-1],[-1,-9],[-1,1],[1,8],[-1,1],[-1,1],[0,-1],[-1,-9],[-1,0],[1,9],[-1,1],[-1,0],[-1,0],[-1,-9],[-1,0],[1,9],[0,1],[-2,0],[-1,-1],[-1,-8],[1,9],[-1,0],[-1,1],[-1,-1],[-1,-9],[-1,0],[1,9],[0,1],[-2,0],[-1,-9],[-1,0],[1,9],[-1,1],[-1,0],[-1,0],[-1,-9],[-1,0],[1,9],[0,1],[-2,0],[0,-1],[-1,-9],[-1,1],[1,8],[-1,1],[-1,1],[-1,-1],[-1,-9],[1,9],[-1,1],[-1,0],[-1,0],[-1,-9],[-1,0],[1,9],[-1,1],[-1,0],[0,-1],[-1,-8],[-1,0],[1,8],[-1,1],[-1,1],[-1,-1],[-1,-9],[-1,0],[1,9],[0,1],[-2,0],[-1,-9],[-1,0],[1,9],[-1,1],[-1,0],[-1,-1],[-1,-8],[-1,0],[1,9],[0,1],[-2,0],[0,-1],[-1,-9],[-1,1],[1,8],[-1,1],[-1,1],[-1,-1],[-1,-9],[-1,0],[1,9],[0,1],[-2,0],[-1,-9],[-1,0],[1,9],[-1,1],[-1,0],[-1,-1],[-1,-8],[-1,0],[1,8],[0,1],[-2,1],[0,-1],[-1,-9],[-1,0],[1,9],[-1,1],[-1,0],[-1,0],[-1,-9],[-1,0],[1,9],[0,1],[-2,0],[0,-1],[-1,-8],[-1,0],[1,9],[-1,1],[-2,0],[-1,-10],[-1,1],[1,9],[-2,1],[-1,-10],[-1,0],[1,10],[-3,0],[-1,-9],[-1,0],[1,10],[-2,0],[-1,-9],[-1,0],[1,7],[-2,1],[-7,-5],[2,-4],[7,-26],[4,-2],[4,0],[1,10],[1,0],[-1,-8],[0,-1],[1,-1],[1,1],[1,8],[1,0],[-1,-8],[1,-1],[1,0],[1,0],[1,9],[1,-1],[-1,-8],[0,-1],[1,0],[1,1],[1,8],[1,0],[-1,-9],[1,0],[1,-1],[1,1],[1,8],[1,0],[-1,-8],[0,-1],[1,0],[1,0],[1,9],[1,-1],[-1,-8],[0,-1],[2,0],[0,1],[2,8],[-1,-9],[1,-1],[1,0],[1,1],[1,8],[1,0],[-1,-8],[0,-1],[2,-1],[0,1],[2,8],[-1,-8],[1,-1],[1,0],[1,0],[1,9],[1,-1],[-1,-8],[0,-1],[2,0],[0,1],[2,8],[-1,-9],[1,0],[1,-1],[1,1],[1,8],[1,0],[-1,-8],[0,-1],[1,0],[1,0],[1,9],[1,-1],[-1,-8],[1,-1],[1,0],[1,0],[1,9],[1,0],[-1,-9],[0,-1],[2,0],[0,1],[1,8],[1,0],[-1,-8],[1,-1],[1,-1],[1,1],[1,8],[1,0],[-2,-8],[1,-1],[1,0],[1,0],[1,9],[1,0],[-1,-9],[0,-1],[2,0],[0,1],[1,8],[1,0],[-1,-8],[1,-1],[1,-1],[1,1],[1,8],[1,0],[-1,-8],[0,-1],[2,0],[1,9],[1,-1],[-1,-8],[1,-1],[1,0],[1,1],[1,8],[1,0],[-1,-9],[0,-1],[1,0],[1,1],[1,8],[1,0],[-1,-8],[1,-1],[1,-1],[1,1],[1,8],[1,0],[-1,-8],[0,-1],[1,0],[1,0],[1,9],[1,0],[-1,-9],[1,-1],[1,0],[1,1],[1,8],[1,0],[-1,-9],[2,-1],[0,1],[1,8],[1,0],[-1,-8],[1,-1],[1,0],[1,0],[1,9],[1,-1],[-2,-8],[1,-1],[1,0],[1,1],[1,8],[1,0],[-1,-9],[0,-1],[2,0],[1,1],[1,8],[1,0],[-2,-8],[1,-1],[1,-1],[1,1],[1,8],[1,0],[-1,-8],[0,-1],[3,-1],[-1,-10],[-1,0],[1,9],[-2,1],[-1,-1],[-1,-9],[-1,1],[1,8],[0,1],[-1,0],[-1,0],[-1,-9],[-1,0],[1,9],[0,1],[-2,0],[-1,0],[-1,-9],[-1,0],[1,9],[0,1],[-1,0],[-1,-1],[-1,-8],[-1,0],[1,8],[0,1],[-1,1],[-1,-1],[-1,-9],[-1,0],[1,9],[-1,1],[-1,0],[-1,0],[-1,-9],[-1,0],[1,9],[0,1],[-2,0],[0,-1],[-2,-8],[1,9],[-1,0],[-1,1],[-1,-1],[-1,-9],[-1,1],[1,8],[0,1],[-2,0],[-2,-9],[1,9],[-1,1],[-1,0],[-1,0],[-1,-9],[-1,0],[1,9],[0,1],[-1,0],[-1,-1],[-1,-8],[-1,0],[1,8],[-1,1],[-1,1],[-1,-1],[-1,-9],[-1,0],[1,9],[0,1],[-2,0],[-2,-9],[1,9],[-1,1],[-1,0],[-1,-1],[-1,-8],[-1,0],[1,9],[-1,1],[-1,-1],[-1,-9],[-1,1],[1,8],[0,1],[-2,0],[-2,-9],[1,9],[-1,1],[-1,0],[-1,-1],[-1,-8],[-1,0],[1,9],[0,1],[-2,0],[0,-1],[-2,-9],[0,1],[1,8],[-1,1],[-1,1],[-1,-1],[-1,-9],[-1,0],[1,9],[0,1],[-1,0],[-1,0],[-1,-9],[-1,0],[1,9],[0,1],[-2,0],[-1,-1],[-1,-8],[-1,0],[2,8],[-1,1],[-1,1],[-1,-1],[-1,-9],[-1,0],[1,9],[-1,1],[-1,0],[-1,0],[-1,-9],[-1,0],[1,9],[0,1],[-1,0],[-1,-1],[-1,-8],[-1,0],[1,9],[-1,1],[-1,0],[-1,-1],[-1,-9],[-1,1],[2,8],[-1,1],[-1,0],[-1,0],[-1,-9],[-1,0],[1,9],[0,1],[-2,0],[-2,-9],[1,9],[-1,1],[-1,0],[-1,-1],[-1,-8],[-1,0],[1,6],[-3,2],[-6,1],[1,-2],[0,-2],[10,-27],[3,-1],[0,-1],[2,-1],[1,1],[2,7],[1,-1],[-2,-8],[1,-1],[1,1],[2,7],[1,-1],[-2,-7],[0,-1],[1,-1],[1,1],[3,8],[0,-1],[-2,-8],[0,-1],[2,0],[3,8],[1,0],[-3,-8],[0,-1],[2,-1],[1,1],[2,8],[1,0],[-3,-8],[1,-1],[1,-1],[1,0],[2,8],[1,0],[-3,-8],[1,-1],[1,-1],[1,1],[3,9],[1,0],[-3,-9],[0,-1],[2,-1],[1,0],[3,10],[0,-1],[-3,-9],[1,-1],[2,-1],[0,1],[3,9],[1,0],[-3,-10],[0,-1],[2,0],[1,0],[3,10],[1,0],[-3,-11],[0,-1],[2,0],[1,0],[3,10],[2,0],[-4,-10],[1,-2],[2,0],[1,0],[3,10],[1,0],[-3,-11],[0,-1],[2,0],[1,0],[3,10],[1,0],[-3,-10],[0,-1],[2,-1],[1,0],[4,11],[1,-1],[-4,-10],[1,-1],[2,-1],[1,0],[3,11],[2,-1],[-4,-11],[1,-1],[2,-1],[1,1],[3,11],[1,-1],[-3,-11],[0,-1],[2,-1],[1,1],[4,11],[1,-1],[-5,-14],[2,-5],[4,-3],[3,2],[5,17],[3,-1],[-7,-19],[1,-2],[7,-4],[1,0],[7,22],[2,-1],[-7,-22],[1,-1],[4,-3],[7,24],[1,-1],[-7,-27],[3,-2],[2,1],[-3,10],[14,5],[-3,12],[5,2],[7,-27],[-2,-1],[0,-3],[5,-3],[1,-4],[-3,-7],[4,-3],[5,14],[45,-22],[-11,210],[2,2],[38,5],[2,-3],[1,0],[1,0],[0,-1],[0,-1],[14,-275],[36,-28],[59,190],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[2,-5],[24,-5],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-51,-167],[48,-38],[75,137],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[22,-17],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-68,-125],[39,-44],[117,155],[0,1],[1,0],[1,0],[1,0],[32,-36],[-36,-356],[8,-13],[23,3],[122,110],[1,0],[1,0],[0,-1],[1,0],[-3,-7],[20,-23],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-110,-99],[24,-40],[112,96],[0,1],[1,0],[1,0],[0,-1],[1,0],[17,-30],[0,-1],[0,-1],[-1,0],[0,-1],[-132,-113],[-7,-11],[20,-34],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[129,109],[1,0],[1,0],[0,-1],[59,-101],[0,-1],[0,-1],[0,-1],[0,-1],[-141,-120],[6,-12],[19,-31],[140,120],[1,0],[1,0],[0,-1],[1,0],[18,-29],[0,-1],[0,-1],[-1,0],[0,-1],[-131,-112],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[3,-7],[13,-21],[1,1],[7,-12],[18,16],[5,3],[-3,-6],[-20,-17],[12,-19],[21,-35],[2,2],[2,-3],[3,2],[1,0],[1,0],[1,-1],[55,48],[2,6],[6,6],[6,0],[18,16],[46,41],[-1,1],[2,5],[-2,3],[3,3],[7,-2],[5,-8],[1,-8],[-4,-3],[-2,3],[-5,-1],[-1,2],[-60,-54],[-4,-3],[-1,-6],[-7,-6],[-5,0],[-31,-26],[-25,-23],[1,-1],[0,-1],[0,-1],[0,-1],[-3,-2],[2,-4],[-3,-2],[3,-5],[2,-3],[2,2],[7,-11],[-2,-2],[33,-56],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,1],[105,92],[1,0],[1,0],[0,-1],[1,0],[15,-26],[0,-1],[0,-1],[0,-1],[-120,-104],[-2,-8],[4,-7],[8,0],[10,10],[9,-15],[-11,-10],[-2,-8],[2,-3],[10,0],[11,10],[-2,3],[105,95],[0,1],[1,0],[1,0],[0,-1],[16,-26],[1,-1],[-1,0],[0,-1],[0,-1],[-6,-5],[-25,-22],[-5,-6],[-8,-10],[-11,-14],[-4,-5],[-43,-39],[1,-2],[-17,-16],[6,-11],[1,-1],[26,23],[48,42],[-2,4],[24,20],[5,-8],[-24,-21],[-2,3],[-40,-36],[12,-20],[6,3],[6,-11],[-8,-6],[18,-30],[4,4],[8,-13],[-5,-4],[14,-22],[4,3],[11,-20],[-2,-3],[4,-6],[89,62],[25,-41],[-77,-92],[9,-15],[20,18],[19,-30],[-11,-9],[1,-3],[-9,-8],[10,-16],[4,3],[4,-7],[-4,-3],[3,-5],[-19,-17],[25,-33],[-9,-9],[185,-236],[-8,-10],[20,-54],[36,19],[2,-8],[-23,-12],[6,-14],[-2,-1],[4,-13],[2,-2],[9,5],[148,89],[1,0],[1,0],[0,-1],[13,-39],[0,-1],[-1,0],[0,-1],[0,-1],[-11,-7],[-121,-64],[16,-45],[126,45],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[11,-41],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-5],[-129,-43],[9,-53],[112,28],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[6,-32],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-124,-30],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-2,-46],[25,1],[155,15],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[10,-155],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-179,-17],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-2],[-3,-55],[138,12],[2,-37],[-114,-10],[-12,-2],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-5],[-2,-45],[90,8],[3,-54],[-81,-7],[-1,0],[-10,-5],[-3,-3],[-2,-36],[14,-7],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[164,15],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[3,-34],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-177,-18],[-1,0],[-1,0],[-1,0],[-1,0],[-14,-6],[2,-47],[139,14],[1,0],[0,-1],[1,0],[0,-1],[1,-13],[38,3],[1,1],[3,-2],[-3,-4],[-1,2],[-37,-4],[1,-13],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-134,-12],[3,-47],[7,1],[1,1],[-1,12],[1,0],[1,-12],[0,-1],[6,1],[1,1],[-1,12],[1,0],[1,-12],[1,-1],[5,1],[1,0],[-1,12],[1,0],[1,-12],[1,0],[6,0],[1,1],[-1,12],[1,0],[1,-12],[1,-1],[6,1],[0,1],[-1,12],[1,0],[1,-12],[1,-1],[5,1],[1,1],[-1,11],[1,0],[1,-11],[1,-1],[6,0],[1,1],[-1,12],[1,0],[1,-12],[6,0],[1,1],[-1,12],[1,0],[1,-12],[1,-1],[6,1],[0,1],[0,12],[1,0],[0,-12],[1,-1],[6,1],[1,0],[-1,12],[1,0],[1,-11],[0,-1],[7,0],[0,1],[-1,12],[1,0],[1,-12],[1,0],[6,0],[0,1],[-1,12],[2,0],[0,-12],[1,-1],[6,1],[1,1],[-1,12],[1,0],[1,-12],[1,-1],[5,1],[1,0],[-1,12],[1,0],[1,-12],[1,0],[6,0],[0,1],[0,12],[1,0],[0,-12],[1,-1],[6,1],[1,1],[-1,12],[1,0],[1,-12],[1,-1],[6,1],[0,1],[0,11],[1,1],[0,-12],[1,-1],[6,0],[1,1],[-1,12],[1,0],[1,-12],[1,0],[6,0],[0,1],[-1,12],[2,0],[0,-12],[1,-1],[6,1],[1,1],[-1,12],[1,0],[1,-12],[0,-1],[6,1],[1,0],[-1,12],[1,0],[2,-26],[-1,0],[-1,11],[-1,1],[-6,-1],[0,-1],[1,-11],[-2,0],[0,11],[-1,1],[-6,0],[0,-1],[0,-12],[-1,0],[-1,12],[-6,0],[-1,-1],[1,-11],[-1,0],[-1,11],[-1,1],[-6,-1],[0,-1],[0,-11],[-1,0],[0,11],[-1,1],[-6,-1],[-1,-1],[1,-11],[-1,0],[-1,11],[-1,1],[-6,0],[0,-1],[0,-11],[-1,-1],[0,12],[-1,0],[-6,0],[-1,-1],[1,-11],[-1,0],[-1,11],[-1,1],[-5,-1],[-1,-1],[1,-11],[-1,0],[-1,11],[0,1],[-7,-1],[0,-12],[-1,0],[-1,11],[0,1],[-6,0],[-1,-1],[1,-11],[-1,0],[-1,11],[0,1],[-6,-1],[-1,-1],[1,-11],[-1,0],[-1,11],[-1,1],[-6,-1],[0,-1],[0,-11],[-1,0],[0,11],[-1,1],[-6,0],[-1,-1],[1,-12],[-1,0],[-1,12],[-6,0],[-1,-1],[1,-11],[-1,0],[-1,11],[-1,1],[-6,-1],[-1,-1],[1,-11],[-1,0],[-1,11],[0,1],[-6,-1],[-1,0],[1,-12],[-1,0],[-1,11],[0,1],[-6,0],[-1,-1],[1,-11],[-1,-1],[-1,12],[-1,0],[-6,0],[-1,-1],[1,-11],[-1,0],[-1,11],[0,1],[-6,-1],[-1,-1],[1,-11],[-1,0],[-1,11],[-1,1],[-6,-1],[1,-12],[-2,0],[0,12],[-1,0],[-7,0],[3,-44],[1,-1],[5,1],[1,1],[-1,10],[1,0],[1,-10],[0,-1],[5,1],[1,0],[-1,10],[1,0],[1,-9],[0,-1],[6,0],[1,1],[-1,10],[1,0],[0,-10],[1,-1],[6,1],[1,1],[-1,10],[1,0],[0,-10],[1,-1],[5,1],[1,1],[-1,9],[1,1],[1,-10],[1,-1],[4,0],[1,1],[-1,10],[1,0],[1,-10],[1,-1],[5,1],[0,1],[0,10],[1,0],[0,-10],[1,-1],[5,1],[1,0],[-1,10],[1,1],[1,-10],[0,-1],[6,0],[0,1],[0,10],[1,0],[0,-10],[1,0],[5,0],[1,1],[-1,10],[1,0],[1,-10],[0,-1],[6,1],[0,10],[0,1],[1,-10],[1,-1],[5,0],[1,1],[-1,10],[1,0],[1,-10],[1,0],[5,0],[1,1],[-1,10],[1,0],[0,-10],[1,-1],[6,1],[0,1],[0,10],[1,0],[0,-10],[1,-1],[5,0],[1,1],[-1,10],[1,0],[1,-10],[5,0],[1,1],[-1,10],[1,0],[1,-10],[1,-1],[5,1],[0,1],[0,10],[1,-10],[1,-1],[5,0],[1,1],[-1,10],[1,0],[1,-10],[6,0],[1,1],[-1,10],[1,0],[0,-10],[1,-1],[6,1],[0,1],[0,10],[1,-10],[1,-1],[5,0],[0,1],[0,10],[1,0],[0,-10],[1,0],[5,0],[1,1],[-1,10],[1,0],[1,-10],[0,-1],[5,1],[1,1],[0,10],[1,0],[1,-23],[-1,0],[-1,9],[0,1],[-5,-1],[-1,-1],[0,-8],[-1,8],[-1,1],[-5,0],[-1,-1],[1,-9],[-1,0],[-1,9],[-5,0],[-1,-1],[1,-9],[-1,0],[-1,9],[0,1],[-6,-1],[0,-1],[0,-8],[-1,0],[0,8],[-1,1],[-5,0],[-1,-1],[0,-9],[-1,9],[-1,0],[-5,0],[-1,-1],[1,-9],[-1,0],[-1,9],[0,1],[-5,-1],[-1,-1],[1,-8],[-1,-1],[-1,9],[-1,1],[-5,0],[0,-1],[0,-9],[-1,0],[0,9],[-1,0],[-5,0],[-1,-1],[1,-9],[-1,0],[0,9],[-1,1],[-6,-1],[0,-1],[0,-8],[-1,-1],[0,9],[-1,1],[-5,0],[-1,-1],[1,-9],[-1,0],[-1,9],[-1,0],[-5,0],[-1,-1],[1,-9],[-1,0],[-1,9],[0,1],[-6,-1],[0,-1],[0,-9],[-1,0],[0,9],[-1,1],[-5,0],[-1,-1],[1,-9],[-1,0],[0,9],[-1,0],[-5,0],[-1,-1],[0,-9],[-1,9],[-1,1],[-5,-1],[-1,-1],[1,-9],[-1,0],[0,9],[-1,1],[-5,0],[-1,-1],[1,-9],[-1,0],[-1,9],[-5,0],[-1,-1],[1,-9],[-1,0],[-1,9],[-1,1],[-5,-1],[0,-1],[0,-9],[-1,0],[0,9],[-1,1],[-6,0],[0,-1],[0,-9],[-1,0],[0,9],[-1,0],[-6,0],[0,-1],[0,-9],[-1,0],[0,9],[-1,1],[-5,-1],[0,-1],[0,-9],[-1,0],[0,9],[-1,1],[-5,0],[-1,-1],[3,-39],[0,-1],[6,1],[0,1],[0,10],[1,0],[0,-10],[1,-1],[5,0],[0,1],[0,10],[1,0],[0,-10],[1,0],[6,0],[0,1],[0,10],[1,-10],[1,-1],[5,1],[1,1],[0,10],[1,-10],[1,-1],[5,1],[1,0],[-1,10],[1,0],[0,-10],[1,0],[5,0],[1,1],[-1,10],[1,0],[1,-10],[0,-1],[5,1],[1,1],[-1,10],[1,0],[1,-10],[1,-1],[5,0],[0,1],[0,10],[1,0],[0,-10],[1,0],[5,0],[1,1],[-1,10],[1,0],[1,-10],[1,-1],[5,1],[0,10],[1,1],[0,-10],[1,-1],[5,0],[1,1],[-1,10],[1,0],[1,-10],[0,-1],[6,1],[1,1],[-1,10],[1,0],[0,-10],[1,-1],[6,1],[0,10],[1,0],[0,-9],[1,-1],[5,0],[1,1],[-1,10],[1,0],[1,-10],[0,-1],[6,1],[0,1],[0,10],[1,0],[0,-10],[1,-1],[5,1],[1,0],[-1,10],[1,0],[0,-10],[1,0],[5,0],[1,1],[-1,10],[1,0],[1,-10],[0,-1],[6,1],[0,1],[0,10],[1,0],[0,-10],[1,-1],[6,0],[0,1],[0,10],[1,0],[0,-10],[1,0],[5,0],[1,1],[-1,10],[1,0],[1,-10],[0,-1],[5,1],[1,1],[-1,10],[1,0],[1,-10],[0,-1],[6,0],[0,1],[0,10],[1,0],[0,-10],[1,0],[5,0],[1,1],[-1,10],[2,0],[1,-22],[-2,-1],[0,9],[-1,1],[-5,-1],[0,-9],[-1,0],[0,9],[-1,0],[-5,0],[-1,-1],[0,-9],[-1,9],[-1,1],[-5,-1],[0,-1],[0,-8],[-1,0],[0,8],[-1,1],[-5,0],[-1,-1],[1,-9],[-1,0],[-1,9],[-6,0],[0,-1],[0,-9],[-1,0],[0,9],[-1,1],[-6,-1],[0,-1],[0,-8],[-1,0],[0,8],[-1,1],[-5,0],[0,-1],[0,-9],[-1,0],[0,9],[-1,0],[-5,0],[-1,-1],[1,-9],[-1,0],[-1,9],[0,1],[-5,-1],[-1,0],[0,-9],[-1,9],[-1,0],[-5,0],[-1,-1],[1,-9],[-1,0],[-1,9],[0,1],[-6,-1],[0,-1],[0,-9],[-1,0],[0,9],[-1,1],[-6,-1],[0,-9],[-1,0],[0,9],[-1,0],[-5,0],[-1,-1],[1,-9],[-1,0],[0,9],[-1,1],[-5,-1],[-1,-1],[1,-9],[-1,0],[-1,9],[-1,1],[-5,0],[0,-1],[0,-9],[-1,0],[0,9],[-1,0],[-5,0],[-1,-1],[1,-9],[-1,0],[-1,9],[0,1],[-6,-1],[0,-9],[-1,-1],[0,9],[-1,1],[-5,0],[0,-1],[0,-9],[-1,0],[0,9],[-1,1],[-5,-1],[-1,-1],[1,-9],[-1,0],[-1,9],[0,1],[-6,-1],[-1,0],[1,-9],[-1,0],[-1,9],[-6,0],[-1,-1],[1,-9],[-1,0],[0,9],[-1,1],[-5,-1],[-1,-1],[1,-9],[-1,0],[0,9],[-1,1],[-6,0],[0,-1],[2,-35],[1,0],[4,0],[1,1],[-1,8],[1,0],[1,-8],[0,-1],[5,1],[0,8],[1,0],[0,-8],[1,0],[4,0],[1,1],[-1,8],[1,0],[1,-8],[0,-1],[5,1],[0,1],[0,7],[1,0],[0,-7],[1,-1],[4,0],[1,1],[-1,8],[1,0],[1,-8],[0,-1],[4,1],[1,1],[0,8],[1,-8],[1,-1],[4,0],[1,1],[-1,8],[1,0],[0,-8],[1,0],[5,0],[0,1],[0,8],[1,0],[0,-8],[1,-1],[4,1],[1,0],[-1,8],[1,0],[1,-8],[5,0],[0,1],[0,8],[1,0],[0,-8],[1,-1],[4,1],[1,1],[-1,7],[1,0],[0,-7],[1,-1],[5,0],[0,1],[0,8],[1,0],[0,-8],[1,-1],[4,1],[0,1],[0,7],[1,1],[0,-8],[1,-1],[4,0],[1,1],[-1,8],[1,0],[1,-8],[1,0],[4,0],[0,1],[0,8],[1,0],[0,-8],[1,-1],[4,1],[1,0],[-1,8],[1,0],[1,-8],[1,0],[4,0],[0,1],[0,8],[1,0],[0,-8],[1,-1],[5,1],[0,1],[0,7],[1,0],[0,-7],[1,-1],[4,0],[1,1],[-1,8],[1,0],[1,-8],[0,-1],[5,1],[1,1],[-1,8],[1,0],[0,-8],[1,-1],[4,0],[1,1],[0,8],[1,-8],[1,0],[3,0],[1,1],[0,8],[1,-8],[1,-1],[4,1],[1,0],[-1,8],[1,0],[1,-8],[4,0],[1,1],[0,8],[1,-8],[1,-1],[4,1],[1,1],[-1,7],[1,0],[0,-7],[1,-1],[5,0],[0,1],[0,8],[1,0],[2,-20],[-2,0],[-1,8],[0,1],[-5,0],[0,-1],[0,-8],[-1,-1],[0,9],[-1,1],[-4,-1],[-1,-1],[1,-8],[-1,0],[-1,8],[0,1],[-5,0],[0,-1],[0,-9],[-1,0],[0,9],[-1,0],[-4,0],[-1,-1],[1,-8],[-1,0],[-1,8],[0,1],[-4,0],[-1,-1],[1,-9],[-1,0],[-1,9],[-5,0],[0,-1],[0,-8],[-1,0],[0,8],[-1,1],[-4,-1],[-1,0],[1,-9],[-1,0],[-1,8],[-1,1],[-4,0],[-1,-1],[1,-8],[-1,0],[-1,8],[0,1],[-5,-1],[-1,-1],[1,-8],[-1,0],[0,8],[-1,1],[-4,0],[-1,-1],[1,-9],[-1,0],[-1,9],[-5,0],[0,-1],[0,-8],[-1,0],[0,8],[-1,1],[-4,-1],[-1,0],[1,-9],[-1,0],[-1,9],[-1,0],[-4,0],[0,-1],[0,-8],[-1,0],[0,8],[-1,1],[-4,-1],[0,-9],[-1,0],[0,8],[-1,1],[-5,0],[0,-1],[0,-8],[-1,0],[0,8],[-1,1],[-4,-1],[0,-1],[0,-8],[-1,0],[0,8],[-1,1],[-4,0],[-1,-1],[0,-9],[-1,9],[-1,0],[-4,0],[-1,-1],[1,-8],[-1,0],[-1,8],[0,1],[-5,-1],[0,-9],[-1,0],[0,9],[-1,0],[-4,0],[-1,-1],[1,-8],[-1,0],[-1,8],[0,1],[-5,-1],[0,-9],[-1,0],[0,8],[-1,1],[-4,0],[0,-1],[0,-8],[-1,0],[0,9],[-6,-1],[0,-1],[0,-7],[-1,0],[0,7],[-1,1],[-4,0],[-1,-1],[1,-8],[-1,0],[-1,8],[-5,0],[0,-1],[0,-7],[-1,0],[0,7],[-1,1],[-4,-1],[-1,0],[2,-32],[1,-1],[5,1],[0,8],[1,0],[0,-7],[1,-1],[4,0],[1,1],[0,7],[1,-7],[0,-1],[5,1],[0,1],[0,8],[1,0],[0,-8],[1,-1],[4,0],[1,1],[0,9],[1,-9],[1,0],[3,0],[1,1],[0,8],[1,0],[0,-8],[1,-1],[4,0],[1,1],[-1,9],[1,0],[0,-9],[1,0],[4,0],[1,1],[0,8],[1,0],[0,-8],[1,-1],[4,1],[0,9],[1,0],[0,-8],[1,-1],[4,0],[1,1],[0,8],[1,0],[0,-8],[1,-1],[4,1],[1,1],[-1,8],[1,0],[1,-8],[0,-1],[4,0],[1,1],[-1,8],[1,1],[1,-9],[0,-1],[5,1],[1,1],[-1,8],[1,0],[1,-8],[0,-1],[4,0],[1,1],[0,9],[1,-9],[5,0],[0,1],[0,8],[1,0],[0,-8],[1,-1],[4,1],[1,0],[-1,9],[1,0],[1,-8],[0,-1],[5,0],[1,1],[-1,8],[1,0],[0,-8],[1,-1],[4,1],[1,1],[0,8],[1,0],[0,-8],[1,-1],[4,0],[0,1],[0,8],[1,1],[0,-9],[1,-1],[4,1],[1,1],[0,8],[1,0],[0,-8],[1,-1],[4,0],[1,1],[-1,9],[1,0],[1,-9],[5,0],[0,1],[0,8],[1,0],[0,-8],[1,-1],[4,1],[0,9],[1,0],[0,-9],[1,0],[4,0],[1,1],[-1,8],[1,0],[1,-8],[0,-1],[5,1],[0,1],[0,8],[1,0],[0,-8],[1,-1],[4,0],[1,1],[-1,8],[1,1],[1,-9],[0,-1],[5,1],[1,1],[-1,8],[2,0],[1,-20],[-2,0],[0,8],[-1,1],[-5,0],[0,-1],[0,-8],[-1,-1],[0,9],[-1,0],[-4,0],[-1,-1],[1,-8],[-1,0],[-1,8],[0,1],[-5,-1],[0,-9],[-1,0],[0,9],[-1,0],[-4,0],[-1,-1],[1,-8],[-1,0],[-1,8],[0,1],[-4,-1],[-1,0],[1,-9],[-1,0],[-1,8],[0,1],[-5,0],[0,-1],[0,-8],[-1,0],[0,8],[-1,1],[-4,-1],[-1,-1],[0,-8],[-1,8],[-1,1],[-4,0],[0,-1],[0,-8],[-1,-1],[0,9],[-1,0],[-4,0],[-1,-1],[0,-8],[-1,8],[0,1],[-5,0],[0,-1],[0,-9],[-1,0],[0,9],[-1,0],[-5,0],[0,-1],[0,-8],[-1,0],[0,8],[-1,1],[-4,-1],[-1,0],[1,-9],[-1,0],[-1,8],[0,1],[-4,0],[-1,-1],[0,-8],[-1,0],[0,8],[-1,1],[-4,-1],[0,-1],[0,-8],[-1,0],[0,8],[-1,1],[-5,0],[0,-1],[0,-8],[-1,-1],[0,9],[-1,0],[-4,0],[0,-1],[0,-8],[-1,0],[0,8],[-1,1],[-4,0],[-1,-1],[0,-9],[-1,9],[-5,0],[0,-1],[0,-8],[-1,0],[0,8],[-1,1],[-4,-1],[-1,0],[0,-9],[-1,8],[0,1],[-5,0],[0,-1],[0,-8],[-1,0],[0,8],[-1,1],[-4,-1],[-1,-1],[0,-8],[-1,8],[-1,1],[-3,0],[-1,-1],[0,-8],[-1,0],[0,8],[-1,1],[-4,-1],[-1,-1],[1,-8],[-1,0],[0,8],[-1,1],[-5,0],[0,-1],[0,-7],[-1,0],[0,7],[-1,0],[-4,0],[-1,-1],[1,-7],[-1,0],[-1,7],[0,1],[-5,-1],[-1,0],[2,-31],[1,-1],[4,0],[1,1],[-1,6],[1,0],[1,-6],[4,0],[1,1],[0,6],[1,-6],[0,-1],[4,0],[1,1],[0,7],[1,-7],[1,0],[4,0],[0,1],[0,7],[1,0],[0,-7],[1,-1],[4,1],[0,7],[1,0],[0,-7],[1,0],[3,0],[1,1],[0,7],[1,0],[0,-7],[1,-1],[4,1],[0,7],[1,0],[0,-6],[1,-1],[4,0],[1,1],[-1,7],[1,0],[1,-7],[0,-1],[4,1],[0,7],[1,0],[0,-6],[1,-1],[4,0],[1,1],[-1,7],[1,0],[0,-7],[1,-1],[4,1],[1,1],[-1,6],[1,0],[0,-6],[1,-1],[4,0],[1,1],[-1,7],[1,0],[1,-7],[0,-1],[4,1],[1,1],[-1,6],[1,0],[1,-6],[0,-1],[4,0],[1,1],[-1,7],[1,0],[1,-7],[0,-1],[5,1],[0,1],[0,6],[1,1],[0,-7],[1,-1],[4,0],[1,1],[-1,7],[1,0],[0,-7],[1,0],[4,0],[1,1],[-1,7],[1,0],[1,-7],[0,-1],[4,0],[1,1],[-1,7],[1,0],[0,-7],[1,0],[4,0],[1,1],[-1,7],[1,0],[1,-7],[0,-1],[4,1],[1,0],[0,7],[1,-7],[4,0],[1,1],[0,7],[1,-7],[1,-1],[4,1],[0,7],[1,0],[0,-7],[1,0],[3,0],[1,1],[0,7],[1,0],[0,-7],[1,-1],[4,1],[0,7],[1,0],[0,-6],[1,-1],[4,0],[0,1],[0,7],[1,0],[0,-7],[1,-1],[4,1],[0,7],[1,0],[0,-6],[1,-1],[4,0],[1,1],[-1,7],[2,0],[1,-18],[-2,0],[0,8],[-1,0],[-4,0],[-1,-1],[1,-7],[-1,0],[-1,7],[0,1],[-4,-1],[-1,0],[1,-8],[-1,0],[-1,8],[-4,0],[-1,-1],[1,-7],[-1,0],[0,7],[-1,1],[-4,-1],[-1,0],[0,-8],[-1,7],[-1,1],[-3,0],[-1,-1],[1,-7],[-1,0],[-1,7],[0,1],[-4,-1],[-1,-1],[0,-7],[-1,7],[-1,1],[-3,0],[-1,-1],[0,-7],[-1,0],[0,7],[-1,1],[-4,-1],[0,-1],[0,-7],[-1,0],[0,7],[-1,1],[-4,0],[0,-1],[0,-7],[-1,0],[0,7],[-1,1],[-4,-1],[0,-1],[0,-7],[-1,0],[0,7],[-1,1],[-4,0],[0,-1],[0,-7],[-1,0],[0,7],[-1,1],[-4,-1],[-1,-1],[1,-7],[-1,0],[0,7],[-1,1],[-5,0],[0,-1],[0,-8],[-1,0],[0,8],[-1,0],[-4,0],[0,-1],[0,-7],[-1,0],[0,7],[-1,1],[-4,0],[0,-1],[0,-8],[-1,0],[0,8],[-1,0],[-4,0],[0,-1],[0,-7],[-1,0],[0,7],[-1,1],[-4,-1],[0,-8],[-1,0],[0,8],[-1,0],[-4,0],[-1,-1],[1,-7],[-1,0],[-1,7],[0,1],[-4,-1],[0,-8],[-1,0],[0,8],[-1,0],[-4,0],[0,-1],[0,-7],[-1,0],[0,7],[-1,1],[-4,-1],[-1,0],[1,-8],[-1,0],[-1,7],[0,1],[-4,0],[-1,-1],[1,-7],[-1,0],[-1,7],[0,1],[-4,-1],[-1,-1],[1,-7],[-1,0],[-1,7],[0,1],[-4,0],[-1,-1],[0,-7],[-1,7],[-1,1],[-3,-1],[-1,-1],[0,-6],[-1,0],[0,6],[-1,1],[-4,0],[0,-1],[0,-7],[-1,0],[0,7],[-1,1],[-4,-1],[-1,-1],[2,-28],[1,-1],[4,1],[1,1],[-1,6],[1,0],[1,-6],[0,-1],[4,0],[1,1],[0,6],[1,-6],[1,0],[3,0],[1,1],[-1,7],[1,0],[1,-7],[0,-1],[4,0],[1,1],[0,7],[1,0],[0,-7],[1,0],[3,0],[1,1],[0,7],[1,0],[0,-7],[1,-1],[4,1],[0,7],[1,1],[0,-8],[1,0],[4,0],[0,1],[0,7],[1,0],[0,-7],[1,-1],[4,1],[0,8],[1,0],[0,-7],[1,-1],[4,0],[1,1],[-1,7],[1,0],[1,-7],[0,-1],[4,1],[1,1],[-1,7],[1,0],[0,-7],[1,-1],[4,0],[1,1],[0,7],[1,-7],[1,-1],[3,1],[1,1],[0,7],[1,0],[0,-7],[1,-1],[3,0],[1,1],[0,7],[1,0],[0,-7],[1,-1],[4,1],[0,1],[0,7],[1,0],[0,-7],[1,-1],[4,0],[0,1],[0,7],[1,0],[0,-7],[1,0],[4,0],[1,1],[-1,7],[1,0],[0,-7],[1,-1],[4,0],[0,1],[0,7],[1,0],[0,-7],[1,0],[4,0],[1,1],[-1,7],[1,0],[1,-7],[0,-1],[4,1],[1,0],[-1,7],[1,0],[0,-7],[1,0],[4,0],[1,1],[-1,7],[1,0],[1,-7],[0,-1],[4,1],[1,0],[-1,7],[1,1],[1,-7],[0,-1],[4,0],[1,1],[0,7],[1,-7],[1,-1],[4,1],[0,1],[0,7],[2,0],[0,-18],[-1,0],[0,7],[-1,1],[-4,-1],[-1,0],[0,-7],[-1,7],[-1,0],[-3,0],[-1,-1],[0,-7],[-1,0],[0,7],[-1,1],[-4,-1],[0,-7],[-1,0],[0,6],[-1,1],[-4,0],[0,-1],[0,-7],[-1,0],[0,7],[-1,1],[-4,-1],[0,-1],[0,-6],[-1,-1],[0,7],[-1,1],[-4,0],[-1,-1],[1,-7],[-1,0],[0,7],[-1,1],[-4,-1],[0,-1],[0,-7],[-1,0],[0,7],[-1,1],[-4,0],[-1,-1],[1,-7],[-1,0],[0,7],[-1,1],[-4,-1],[-1,-1],[1,-7],[-1,0],[-1,7],[0,1],[-4,0],[-1,-1],[1,-7],[-1,0],[-1,7],[-4,0],[-1,-1],[1,-7],[-1,0],[-1,8],[-4,0],[-1,-1],[0,-7],[-1,7],[-1,0],[-4,0],[0,-1],[0,-7],[-1,0],[0,7],[-1,1],[-4,0],[0,-1],[0,-7],[-1,0],[0,7],[-1,0],[-4,0],[-1,-1],[1,-7],[-1,0],[-1,7],[0,1],[-4,-1],[-1,0],[1,-7],[-1,0],[-1,7],[-4,0],[0,-1],[0,-7],[-1,0],[0,7],[-1,1],[-4,-1],[-1,0],[1,-7],[-1,-1],[-1,7],[0,1],[-4,0],[-1,-1],[1,-7],[-1,0],[-1,7],[0,1],[-4,-1],[-1,-1],[0,-7],[-1,0],[0,7],[-1,1],[-3,0],[-1,-1],[0,-6],[-1,0],[0,6],[-1,1],[-4,-1],[0,-1],[0,-6],[-1,0],[0,6],[-1,1],[-4,0],[-1,-1],[2,-21],[126,11],[3,-2],[-2,-4],[-3,2],[-135,-11],[0,2],[-12,0],[5,-12],[-177,-103],[4,-5],[31,-57],[3,0],[0,9],[135,12],[3,3],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-15],[14,0],[1,-21],[130,22],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-3,-3],[13,-84],[-4,-1],[1,-6],[-135,-23],[5,-73],[323,28],[23,-260],[-203,137],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-120,-10],[12,-40],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-7,-3],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-8],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-2,-1],[2,-7],[3,1],[0,-4],[1,-2],[1,-3],[0,-2],[1,-3],[0,-3],[1,-2],[0,-3],[1,-3],[0,-2],[0,-3],[1,-3],[0,-3],[0,-2],[0,-3],[7,0],[-2,-26],[3,0],[0,-4],[3,-1],[0,-3],[2,0],[-1,-3],[-1,0],[-1,-10],[7,-1],[-1,-4],[3,-1],[2,-1],[2,-4],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-4,-2],[4,-8],[2,2],[1,0],[1,0],[0,-1],[1,0],[-2,-1],[9,-17],[0,-1],[-2,-16],[0,-1],[1,0],[4,-12],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,53],[11,88],[5,-1],[-8,-68],[10,-2],[3,10],[8,11],[4,-1],[-23,-76],[-3,-8],[-2,-12],[0,-4],[10,4],[152,-89],[-13,-37],[-139,82],[5,-18],[1,-15],[29,-94],[7,2],[7,-22],[-14,-6],[0,-6],[-2,-3],[2,-7],[-4,-2],[2,-6],[-4,-2],[-4,-2],[1,-12],[0,-1],[0,-1],[0,-1],[1,0],[28,3],[5,-10],[47,5],[2,-36],[88,8],[1,-14],[-156,-14],[3,-51],[126,12],[4,-34],[-194,-18],[-2,-7],[-2,-11],[0,-4],[1,-8],[-5,-11],[-19,-46],[-5,-9],[-9,-18],[-2,-12],[5,-1],[2,-21],[-1,-12],[-2,-2],[-1,-9],[0,-19],[3,-1],[0,-20],[-2,0],[0,-3],[-8,-5],[0,-6],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-10,-10],[-1,-7],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-8,-8],[-6,-7],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-13,-3],[2,-9],[21,4],[1,-7],[7,-6],[4,5],[6,-2],[-1,-2],[9,-4],[-6,-19],[18,-8],[6,21],[44,1],[1,-9],[14,0],[-1,13],[7,0],[5,-101],[27,-20],[25,2],[-11,184],[10,1],[11,-173],[44,4],[-1,16],[-12,-1],[-2,9],[-5,-1],[-10,154],[5,1],[1,8],[14,2],[3,-9],[5,0],[0,-3],[10,1],[12,-175],[52,5],[-14,215],[11,0],[14,-214],[24,2],[3,224],[4,1],[0,5],[9,1],[2,12],[18,0],[3,-13],[9,0],[-3,-248],[-144,-13],[71,-116],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[19,1],[-9,141],[32,3],[11,-191],[35,3],[-20,302],[14,1],[19,-302],[56,5],[-19,308],[2,3],[14,1],[2,-3],[21,-339],[-130,-27],[0,-8],[-14,-1],[2,-25],[3,0],[6,0],[6,-95],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-2],[0,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[0,-2],[-1,-2],[-1,-2],[0,-2],[-1,-2],[0,-1],[-1,-2],[0,-2],[-1,-2],[0,-2],[-1,-2],[0,-2],[-1,-2],[0,-2],[0,-2],[-1,-2],[0,-2],[0,-2],[0,-2],[0,-2],[-1,-2],[4,1],[1,-17],[-4,-4],[2,-18],[7,0],[0,-3],[-2,-1],[2,-49],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[1,-5],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-37],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[10,-1],[2,-3],[4,0],[0,-4],[-6,-1],[1,-1],[2,-2],[1,-1],[1,-1],[2,-1],[1,-2],[1,-1],[2,-2],[1,-1],[1,-1],[1,-2],[2,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-2,1],[0,-2],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-71,-11],[-53,-6],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-12,1],[-1,-4],[1,-24],[5,-4],[6,2],[7,3],[6,3],[8,3],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[2,-2],[1,-3],[1,-2],[2,-3],[1,-2],[1,-3],[1,-3],[2,-2],[1,-3],[1,-3],[1,-3],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,-3],[0,-3],[1,-3],[0,-3],[0,-3],[0,-3],[0,-3],[1,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-5],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-2],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[-2,3],[3,-5],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[12,1],[13,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-23],[3,-41],[245,21],[20,-341],[-579,-54],[0,4],[17,1],[-1,10],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-2,1],[-3,0],[-2,0],[-2,1],[-3,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-20,-6],[-2,-5],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-2],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-2,0],[2,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-2],[2,0],[0,-2],[-2,0],[0,-8],[-3,0],[0,11],[-8,-1],[-13,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-4,0],[-5,0],[-4,0],[-4,0],[-5,0],[-4,0],[-5,0],[-4,-1],[-4,0],[-5,-1],[-4,-1],[-5,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-8,8],[1,-7],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-2,2],[-4,3],[-42,27],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-13],[-2,-15],[7,-52],[4,-4],[0,-10],[4,0],[2,1],[3,1],[2,-2],[2,0],[5,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[9,-9],[4,-6],[47,-21],[3,10],[-2,1],[1,2],[-6,3],[1,6],[21,-9],[-1,-5],[-6,2],[-1,-2],[-3,0],[-3,-11],[42,-18],[9,-4],[7,-3],[6,-2],[84,8],[10,3],[9,3],[4,0],[4,1],[6,1],[5,3],[4,2],[5,-1],[1,2],[3,0],[10,2],[0,4],[5,1],[0,-4],[14,-1],[0,1],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[10,2],[6,3],[1,5],[2,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,2],[22,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-14],[68,7],[200,16],[4,2],[4,-1],[39,-9],[150,14],[3,-22],[3,1],[2,0],[1,1],[2,0],[1,0],[2,1],[2,0],[1,0],[2,0],[1,0],[2,1],[2,0],[1,0],[2,0],[5,0],[5,0],[5,0],[4,0],[5,1],[5,0],[4,1],[5,0],[4,1],[5,1],[5,1],[4,1],[5,1],[4,1],[5,2],[27,1],[15,1],[16,0],[16,0],[16,0],[4,0],[3,1],[3,0],[3,0],[3,0],[3,0],[2,0],[3,0],[3,0],[3,0],[3,-1],[3,0],[3,0],[2,-1],[3,0],[3,-1],[3,-1],[3,0],[2,-1],[3,-1],[3,-1],[3,-1],[2,-1],[3,-1],[3,-1],[3,-1],[2,-1],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[2,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[0,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[0,-1],[1,-2],[1,-1],[1,-1],[0,-2],[1,-1],[1,-1],[0,-2],[1,-1],[0,-2],[1,-1],[0,-1],[1,-2],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-8,-40],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[48,-71],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[-1,4],[25,22],[1,0],[1,1],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[12,11],[233,-372],[92,-145],[-15,-13],[-26,-2],[0,-14],[-188,-16],[-1,12],[-136,-12],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-3,-1],[-1,0],[-2,0],[-1,-1],[-2,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-2,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[1,-1],[1,-1],[1,-2],[1,-1],[1,-2],[0,-1],[1,-1],[1,-2],[1,-1],[0,-2],[1,-1],[1,-2],[0,-2],[1,-1],[0,-2],[1,-1],[1,-2],[0,-1],[1,-2],[0,-2],[0,-1],[1,-2],[0,-2],[1,-3],[0,-1],[1,-2],[0,-2],[1,-1],[0,-2],[1,-2],[1,-1],[0,-2],[1,-2],[1,-1],[0,-2],[1,-2],[1,-1],[0,-2],[1,-1],[1,-2],[1,-1],[1,-2],[0,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-2],[2,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[2,-1],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,0],[2,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[2,-1],[1,-1],[2,0],[1,-1],[2,0],[1,-1],[2,0],[1,0],[1,-1],[2,0],[1,-1],[2,0],[1,0],[2,0],[1,0],[2,-1],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[58,-7],[6,-1],[2,-1],[3,0],[3,0],[3,0],[2,-1],[3,0],[3,0],[3,0],[3,0],[2,0],[3,1],[3,0],[3,0],[3,1],[2,0],[3,0],[3,1],[3,-5],[9,5],[5,0],[5,0],[5,1],[5,0],[5,0],[5,1],[5,0],[5,1],[5,1],[6,1],[1,0],[2,1],[1,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[2,0],[1,0],[5,0],[5,-1],[5,0],[5,-1],[6,0],[5,0],[5,1],[5,0],[6,0],[5,1],[5,0],[5,1],[6,1],[17,3],[18,3],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-7,-2],[-4,-2],[-5,-1],[-5,-1],[-5,-1],[-5,-1],[-5,-1],[-5,-1],[-5,0],[-4,-1],[-3,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-2,0],[-1,0],[-2,-1],[-2,0],[-2,0],[-2,-1],[-2,0],[-1,-1],[-2,0],[-2,-1],[-2,0],[-2,-1],[-1,0],[-2,-1],[-2,-1],[-2,-1],[-1,0],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-3,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,2],[0,-2],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-5,-1],[-3,-1],[-3,0],[-3,-1],[-3,0],[-2,0],[-3,-1],[-3,0],[-3,0],[-3,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,1],[-1,0],[-2,0],[-1,1],[-2,0],[-1,0],[-2,1],[-1,0],[-1,1],[-2,0],[-1,1],[-2,0],[-1,1],[-1,0],[-2,1],[-1,1],[-1,1],[-2,0],[-1,1],[-1,1],[-2,1],[-1,0],[-15,19],[-11,14],[-11,13],[-11,12],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-8,6],[-6,4],[-5,4],[-6,4],[-5,5],[-3,3],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,1],[-2,2],[-2,2],[-2,1],[-2,2],[-3,2],[-2,1],[-2,1],[-2,2],[-2,1],[-3,2],[-2,1],[-2,1],[-2,1],[-3,1],[-2,1],[-2,1],[-3,1],[-2,1],[-3,1],[-2,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[28,-25],[2,0],[2,0],[1,1],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,0],[1,0],[2,-1],[1,0],[2,0],[1,0],[1,-1],[2,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-3,-12],[-1,-7],[-17,-16],[-4,-6],[-6,-11],[-5,-5],[-4,-2],[-6,3],[-3,0],[-2,-2],[1,-4],[1,-5],[2,-7],[2,-2],[-1,-4],[-1,-3],[1,-3],[3,-1],[1,-2],[-2,-1],[-1,-2],[2,-1],[-2,-2],[-1,-2],[-2,-3],[-2,-7],[-2,-7],[-1,-5],[6,-9],[2,-4],[3,4],[3,0],[3,3],[3,6],[4,2],[3,3],[3,5],[2,4],[2,3],[4,2],[2,1],[3,0],[5,-1],[3,-3],[2,-3],[3,-3],[3,-2],[1,-4],[0,-3],[1,-3],[0,-3],[0,-3],[-1,-6],[3,-1],[3,0],[2,-1],[1,-2],[2,-2],[1,-5],[-2,-7],[-1,-4],[-2,-7],[-3,-3],[-2,-2],[-3,-3],[-2,-3],[-1,-4],[-2,-2],[1,-4],[3,-2],[3,-4],[4,-3],[2,-1],[2,2],[1,-1],[0,-3],[0,-4],[0,-4],[1,-3],[0,-4],[1,-3],[0,-4],[-4,-9],[-1,-6],[0,-4],[-1,-4],[0,-4],[-1,-2],[-2,-2],[-4,-1],[-3,-1],[-2,0],[-1,-3],[0,-3],[-4,-13],[-4,-7],[-2,-7],[-2,-5],[-1,-5],[-1,-6],[-5,-8],[-3,-3],[0,-6],[1,-3],[-10,-17],[-2,-3],[0,-2],[1,0],[1,2],[7,-7],[-4,-7],[2,-4],[24,24],[12,-18],[1,1],[2,-3],[5,4],[1,-2],[2,1],[2,-3],[12,12],[4,-6],[-22,-20],[5,-7],[9,10],[18,-10],[5,1],[5,3],[4,1],[3,3],[1,4],[4,1],[3,0],[6,4],[1,2],[0,4],[6,0],[2,2],[1,3],[0,3],[1,3],[2,1],[4,-1],[2,1],[2,1],[2,2],[2,2],[0,3],[0,6],[1,3],[1,1],[3,2],[1,-1],[2,3],[1,3],[3,3],[2,1],[2,2],[2,3],[3,6],[2,2],[2,2],[4,3],[2,3],[2,2],[3,5],[2,5],[4,7],[4,6],[8,11],[3,5],[2,5],[2,7],[2,3],[3,2],[5,2],[3,3],[5,9],[2,3],[2,1],[4,1],[4,0],[3,-1],[3,-1],[3,1],[1,0],[1,-2],[3,-2],[2,-2],[2,-2],[2,-3],[2,-2],[4,-3],[4,-3],[4,-6],[2,-3],[3,-5],[3,-4],[3,-3],[3,-9],[4,-3],[4,-4],[3,-2],[1,-4],[3,-2],[2,-3],[2,-5],[3,-4],[1,-3],[3,-4],[1,-4],[2,-5],[3,-1],[3,1],[1,-2],[0,-2],[1,-4],[1,-5],[7,-8],[6,-3],[4,-5],[7,-4],[6,-4],[4,-3],[6,-5],[6,-7],[4,-4],[2,-3],[4,-4],[4,-3],[6,-4],[5,-5],[3,-4],[1,-6],[0,-7],[0,-4],[1,-5],[3,-4],[2,-2],[1,-1],[2,-1],[1,-1],[1,-2],[2,-1],[1,-1],[1,-2],[2,-1],[1,-1],[2,-3],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[2,4],[-2,-4],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-2],[2,-1],[2,-2],[2,-2],[1,-2],[2,-1],[2,-2],[2,-1],[2,-2],[3,-3],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[-2,-3],[2,3],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[4,-7],[54,89],[-2,6],[34,57],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-85,-149],[5,-4],[9,14],[6,-5],[42,73],[7,6],[8,-5],[-1,-11],[-53,-86],[2,-2],[-3,-6],[12,-8],[54,91],[9,5],[4,-7],[-1,-9],[-52,-85],[-2,-6],[10,-8],[52,88],[6,-6],[-23,-40],[89,-75],[45,76],[7,6],[16,-13],[-49,-86],[34,-30],[51,84],[18,-13],[-44,-75],[-6,-11],[37,-30],[-7,-12],[11,-11],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[7,-10],[9,6],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[3,0],[2,1],[2,1],[3,1],[2,1],[3,1],[2,0],[3,1],[2,0],[3,1],[2,0],[3,1],[2,0],[3,0],[2,1],[3,0],[2,0],[3,0],[2,0],[3,0],[2,0],[4,-3],[39,-28],[29,-22],[-11,-7],[7,-5],[-8,-13],[-155,-55],[-30,-12],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[24,7],[139,50],[25,12],[72,27],[16,-20],[-25,-28],[-136,-48],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[178,65],[2,-16],[10,5],[-46,-234],[-20,-23],[-230,-79],[25,-101],[208,75],[8,-31],[-233,-82],[-31,28],[-5,-7],[-130,121],[-48,43],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[15,-15],[170,-149],[-24,-40],[176,-157],[-17,-26],[-175,156],[-51,-85],[290,-259],[2,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-41,-68],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-170,152],[-20,-35],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,-3],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-30,-48],[69,-59],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[249,-218],[-9,-15],[-248,221],[-9,-15],[-69,-110],[250,-221],[-7,-13],[-250,220],[-17,-27],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-52,-89],[-1,-5],[-1,-6],[3,-6],[27,-24],[2,4],[10,-10],[2,-6],[18,-16],[5,0],[11,-8],[-2,-4],[47,-42],[2,4],[10,-10],[2,-6],[18,-16],[5,0],[11,-9],[-2,-3],[46,-41],[2,3],[10,-10],[2,-6],[18,-16],[5,0],[11,-8],[-2,-4],[-1,-2],[-2,-3],[-11,9],[-1,4],[-20,17],[-4,1],[-11,8],[2,3],[-46,41],[-2,-3],[-10,10],[-2,5],[-19,17],[-4,0],[-12,8],[3,4],[-47,41],[-2,-3],[-10,10],[-1,5],[-20,17],[-4,1],[-11,8],[2,3],[-37,33],[62,103],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-2,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-2,5],[-3,4],[-2,5],[-3,4],[-2,4],[-3,4],[-3,5],[-2,4],[-4,4],[0,2],[-1,1],[0,2],[-1,2],[-1,1],[-1,2],[0,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[0,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,2],[-2,1],[-1,1],[-1,1],[-1,1],[-2,2],[-8,8],[-9,8],[-16,14],[-22,20],[-23,20],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-12,2],[-13,2],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-3,0],[-3,-1],[-3,0],[-2,0],[-3,-1],[-3,0],[-3,0],[-3,0],[-2,0],[-2,2],[-2,-2],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,2],[-1,1],[0,2],[0,1],[-1,2],[0,2],[0,2],[-1,1],[0,2],[0,2],[-1,1],[0,2],[-1,2],[0,1],[-1,2],[0,2],[-1,1],[-1,2],[0,1],[-1,2],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[-1,2],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[1,4],[-3,-4],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-15,-6],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-6,8],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-2,0],[-1,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-2,9],[-2,10],[-2,9],[-2,10],[-1,10],[-3,15],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,2],[1,1],[0,1],[0,2],[0,1],[1,1],[0,2],[0,1],[0,2],[0,1],[0,1],[1,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,1],[0,2],[0,1],[0,2],[0,1],[0,1],[-1,2],[0,2],[0,3],[-1,2],[0,3],[-1,3],[0,3],[0,3],[0,2],[-1,3],[0,3],[0,3],[0,3],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[0,2],[0,1],[0,2],[1,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,2],[-1,1],[0,2],[0,1],[0,2],[0,1],[0,2],[-1,2],[0,1],[0,2],[-1,1],[0,2],[0,1],[-1,2],[0,1],[-1,2],[0,1],[0,2],[-1,1],[0,1],[-1,2],[0,1],[-2,3],[0,2],[-1,1],[0,2],[-1,1],[-1,2],[0,1],[-1,2],[-1,1],[-1,2],[-1,1],[0,2],[-1,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,2],[-2,1],[-1,1],[-1,1],[-1,1],[-3,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[-27,63],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-2,-4],[-3,1],[-3,-1],[-3,-1],[-4,-2],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-3,-1],[-5,-2],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,-2],[-1,-2],[-1,-1],[0,-2],[-1,-2],[-1,-1],[0,-2],[-1,-2],[-1,-2],[0,-2],[-1,-1],[0,-2],[-1,-2],[0,-2],[-1,-2],[0,-2],[0,-2],[-1,-1],[0,-2],[0,-2],[-1,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[-1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,-5],[-3,-10],[-5,-22],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-2,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-3],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-15,13],[-24,20],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-7,-4],[5,4],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-3,-4],[3,4],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-5,4],[-6,4],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[-2,1],[-2,0],[-1,0],[-2,1],[-2,0],[-3,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,1],[1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-3,0],[-3,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,-3],[1,4],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[2,-1],[1,-1],[2,-1],[1,-1],[1,-1],[2,-1],[1,-1],[2,-1],[1,-2],[1,-1],[1,-1],[2,-2],[2,-2],[16,-13],[15,-14],[1,0],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-2],[1,-1],[2,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[2,-1],[2,-2],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-2],[6,-5],[5,-5],[7,-7],[2,-1],[2,-1],[2,-2],[2,-1],[2,-2],[2,-1],[2,-2],[2,-2],[1,-1],[1,-1],[1,-2],[1,-1],[2,-2],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-2],[1,1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[2,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-2],[-1,-2],[0,-2],[-1,-2],[0,-2],[-1,-2],[-1,-2],[0,-2],[-1,-2],[0,-2],[-1,-2],[-1,-2],[-1,-3],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-4],[-2,-4],[-2,-4],[-3,-6],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[8,-6],[14,-10],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[12,-11],[12,-10],[3,-3],[4,-2],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-2],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[2,0],[3,0],[3,0],[2,0],[6,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[3,-1],[3,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[2,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,0],[2,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[2,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-2],[4,-2],[3,-3],[4,-4],[4,-3],[6,-5],[3,-3],[4,-2],[4,-2],[4,-3],[6,-4],[28,-21],[2,-3],[3,-2],[3,-3],[2,-2],[6,-1],[1,-5],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[2,-1],[2,-2],[2,-1],[2,-2],[2,-2],[1,-2],[2,-1],[2,-2],[2,-2],[2,-2],[2,-2],[1,-2],[2,-2],[3,-3],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[4,-3],[4,-3],[5,-4],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[0,-2],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[0,-1],[-1,-2],[-1,-1],[-1,-2],[0,-1],[-1,-2],[-1,-1],[-1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,1],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-2,-2],[-1,-3],[-2,-2],[-1,-3],[-2,-2],[-1,-3],[-1,-2],[-3,-5],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-2],[-1,-2],[0,-2],[-1,-2],[-1,-2],[-1,-2],[0,-2],[-1,-2],[-1,-2],[-1,-2],[0,-1],[-1,-2],[-1,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-2],[-3,-3],[-3,-4],[-3,-4],[-4,-3],[-3,-4],[-5,-4],[-10,-12],[-17,-19],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-3,-4],[-2,-4],[-5,-7],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-2,-3],[0,-2],[-1,-2],[-1,-1],[0,-2],[-1,-2],[-1,-1],[0,-2],[-1,-2],[0,-1],[-1,-2],[0,-2],[-1,-2],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-2,-4],[-2,-3],[-2,-4],[-1,-4],[-2,-4],[-4,-6],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[-1,-2],[-1,-2],[0,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-4],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-5],[0,-6],[-1,-5],[0,-5],[0,-5],[0,-5],[0,-5],[-1,-5],[1,-6],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[1,-2],[0,-1],[0,-2],[1,-1],[0,-2],[0,-1],[1,-2],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-2],[1,-1],[0,-2],[1,-1],[0,-2],[1,-1],[0,-2],[1,-1],[0,-2],[1,-2],[0,-2],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-3],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[2,-1],[1,-1],[1,-1],[2,-1],[1,-1],[3,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[4,2],[5,2],[4,2],[6,3],[2,1],[1,2],[2,1],[1,1],[3,2],[0,1],[1,0],[1,1],[1,0],[2,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[2,6],[2,6],[3,7],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,-1],[2,1],[1,1],[1,0],[2,0],[1,1],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[2,-1],[3,-3],[4,-2],[6,-4],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[1,-2],[2,-6],[2,-7],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,0],[-8,-1],[-4,0],[-4,-1],[-5,-1],[-4,0],[-4,-1],[-8,-1],[-4,-1],[-4,-1],[-4,-1],[-6,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-3,0],[-3,0],[-2,-1],[-3,0],[-4,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-2,0],[-4,1],[-4,0],[-5,0],[-4,1],[-4,0],[-4,0],[-8,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,1],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-3,0],[-12,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-2,0],[-14,0],[-20,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-2,-1],[-1,0],[-2,-1],[-2,0],[-1,0],[-2,-1],[-2,0],[-2,0],[-4,0],[-6,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-3,0],[1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-3,0],[-3,1],[-3,0],[-3,1],[-3,0],[-2,1],[-3,0],[-3,1],[-5,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-4,0],[-6,2],[-5,-2],[-11,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[-2,0],[-1,1],[-2,0],[-1,1],[-2,0],[-1,0],[-2,0],[-1,1],[-2,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-3,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,1],[-2,1],[-2,0],[-2,1],[-2,0],[-2,1],[-2,0],[-2,1],[-2,0],[-2,0],[-2,1],[-2,0],[-2,0],[-2,0],[-2,0],[-2,1],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-3,2],[-3,2],[-3,2],[-4,2],[-3,2],[-3,2],[-4,2],[-3,1],[-4,2],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,2],[-2,1],[-2,1],[-1,2],[-2,1],[-2,1],[-2,1],[-1,1],[-2,2],[-3,1],[-3,3],[-3,2],[-3,3],[-3,2],[-3,3],[-4,5],[-1,1],[-2,1],[-1,2],[-1,1],[-2,2],[-1,2],[-3,2],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-2],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-2,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[-2,-3],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-2,-2],[2,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-4,5],[-7,8],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-3,2],[-5,5],[-10,10],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,2],[-1,1],[-1,1],[-1,2],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-4,3],[-3,3],[-5,5],[-2,2],[-2,1],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,1],[-2,2],[-2,2],[-2,1],[-2,2],[-3,2],[-2,1],[-1,1],[-1,1],[-2,2],[-1,0],[-1,0],[0,-1],[-2,-1],[-2,-1],[-2,-1],[-2,-1],[-5,-4],[-11,-15],[-13,-17],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-3],[-2,-4],[-2,-3],[-2,-6],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-2,-3],[-2,-2],[-3,-3],[-2,-2],[-2,-3],[-3,-4],[-26,2],[-387,-3],[-343,-3],[-26,-1],[-61,-1],[-51,0],[-29,0],[-23,-1],[-331,0],[-65,0],[-61,0],[-112,0],[-60,0],[-61,0],[-14,0],[-30,0],[-264,1],[-240,-5],[-91,4],[-138,-3],[-854,-2],[-58,-3],[-561,-2],[-64,-1],[-21,1],[-127,2],[-115,-4],[-19,-1],[-67,1],[-19,-1],[-36,1],[-18,-2],[-33,0],[-75,2],[-55,1],[-281,-1],[-3,0],[-97,-1],[-126,1],[-185,-2],[-204,1],[-172,-1],[-48,0],[-202,-3],[-1085,-6],[-1,24],[-5,17],[-3,24],[-2,19],[-1,14],[-13,52],[-3,38],[-4,27],[-6,29],[-5,27],[5,12],[-6,24],[-4,11],[-4,41],[-20,15],[-4,15],[-2,20],[-2,22],[-2,24],[-5,18],[0,26],[-7,20],[-3,23],[-2,18],[-4,25],[-7,36],[-6,30],[-8,29],[-6,23],[-9,33],[-2,20],[-3,17],[-14,57],[-6,20],[-5,18],[-5,19],[-1,22],[-5,27],[-7,26],[-4,23],[3,18],[-6,18],[-6,13],[-6,24],[-1,26],[-1,25],[-2,13],[1,15],[1,6],[1,16],[-1,15],[-2,16],[-1,19],[-6,23],[-5,12],[-7,35],[-8,27],[-71,650],[-1,5],[-3,7],[-2,8],[-1,11],[-2,12],[0,7],[0,10],[-2,12],[-3,12],[-2,14],[-2,10],[-3,6],[-1,4],[-2,1],[0,4],[-1,6],[-1,5],[0,9],[0,7],[0,6],[-1,5],[0,7],[-1,7],[-1,9],[0,7],[-1,12],[-2,10],[0,12],[0,6],[0,6],[-1,7],[1,4],[5,6],[1,4],[1,4],[2,5],[-1,5],[-1,6],[0,5],[2,8],[-1,3],[0,6],[0,5],[0,5],[-1,8],[-1,5],[0,9],[-2,10],[-2,3],[-2,5],[-1,6],[-1,7],[-1,6],[-3,8],[0,8],[-1,6],[-2,7],[-1,7],[-2,5],[-2,7],[-2,6],[0,7],[2,4],[2,4],[2,4],[1,5],[0,6],[0,6],[1,3],[0,4],[0,5],[1,2],[1,5],[-1,6],[0,9],[0,4],[-1,8],[1,4],[-1,4],[-1,3],[0,3],[1,2],[1,2],[1,3],[1,40],[0,5],[-1,4],[0,3],[0,3],[-1,5],[1,2],[-1,3],[-1,3],[1,4],[0,7],[0,6],[-1,4],[-2,10],[-1,3],[-1,7],[-4,3],[-3,5],[0,2],[-1,3],[-1,3],[-1,7],[-2,7],[0,7],[1,8],[1,8],[-1,2],[-1,1],[1,2],[0,2],[1,2],[-1,8],[0,2],[0,2],[0,1],[3,1],[0,2],[0,2],[0,3],[1,5],[-1,14],[1,5],[0,8],[0,10],[-2,15],[-2,18],[-5,16],[-4,13],[-1,9],[-3,10],[-1,15],[-2,12],[-1,11],[1,8],[-1,7],[2,8],[-1,8],[2,9],[-1,21],[0,20],[-3,21],[0,9],[-4,20],[-2,8],[0,12],[0,11],[5,18],[2,13],[0,14],[0,2],[1,3],[0,1],[1,2],[1,3],[-1,1],[-2,3],[0,4],[1,3],[0,3],[0,3],[0,2],[1,3],[0,3],[1,3],[0,2],[0,3],[0,3],[1,3],[0,3],[-1,5],[0,1],[-2,4],[-2,4],[-1,0],[-1,3],[1,5],[-3,5],[1,4],[-1,3],[0,4],[0,4],[0,5],[-1,1],[-2,2],[-1,4],[0,4],[0,2],[-1,3],[-1,2],[-2,3],[-1,3],[-1,4],[0,5],[-1,5],[-1,3],[-1,3],[-2,2],[-2,3],[-3,0],[-1,4],[-3,5],[0,5],[1,5],[0,4],[1,3],[1,2],[1,5],[-2,6],[2,5],[0,8],[2,5],[0,2],[0,5],[2,5],[1,5],[0,3],[1,5],[1,2],[1,4],[0,4],[-1,4],[0,5],[1,5],[0,5],[0,5],[-1,6],[-1,2],[-2,5],[1,4],[-1,3],[-1,4],[-1,3],[-1,2],[-2,4],[1,4],[1,1],[-1,13],[0,2],[-1,5],[-1,2],[0,1],[-1,1],[-1,3],[0,1],[0,5],[-2,4],[-2,9],[0,9],[-2,9],[-1,3],[-1,4],[-1,1],[0,2],[-1,4],[0,2],[-1,2],[0,3],[0,3],[-2,2],[-1,3],[0,2],[-1,2],[-1,4],[-1,4],[-1,2],[0,2],[-2,3],[0,6],[-1,2],[-2,6],[-1,2],[-1,4],[0,1],[0,4],[0,3],[-1,2],[0,3],[0,4],[-2,3],[0,6],[2,4],[0,3],[0,3],[1,3],[0,2],[1,3],[1,5],[-1,5],[2,3],[4,4],[1,2],[3,2],[1,2],[-1,3],[0,3],[0,4],[2,3],[0,3],[0,7],[2,12],[3,39],[1,24],[-6,41],[-2,8],[-1,4],[-1,4],[-1,4],[0,5],[-1,4],[-1,4],[0,4],[-1,4],[-1,5],[0,4],[0,4],[-1,4],[0,5],[0,4],[0,4],[0,5],[-11,32],[-1,3],[-1,2],[0,2],[0,2],[-1,2],[0,2],[0,2],[0,2],[-1,2],[0,2],[0,2],[0,2],[0,1],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[3,32],[4,40],[0,4],[1,4],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[-1,3],[-1,3],[0,5],[0,3],[-1,2],[0,3],[-1,2],[0,3],[-1,2],[0,3],[-1,2],[-1,3],[-1,2],[0,2],[-1,3],[-1,2],[-1,3],[-1,2],[-1,2],[-1,2],[-1,3],[-1,2],[-1,2],[-1,2],[-1,3],[-5,7],[-2,5],[-2,5],[-3,4],[-2,5],[-2,5],[-2,5],[-2,5],[-2,5],[-2,5],[-2,5],[-1,5],[-1,4],[-1,4],[-1,3],[-1,4],[0,3],[-1,4],[0,4],[-1,3],[0,4],[-1,4],[0,3],[0,4],[-1,4],[0,3],[0,4],[0,4],[0,3],[0,4],[0,4],[0,3],[0,4],[1,4],[0,3],[0,2],[1,2],[0,1],[0,2],[0,1],[0,1],[0,2],[1,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,1],[0,2],[0,1],[0,2],[0,1],[0,2],[-1,1],[0,1],[0,2],[0,1],[-1,1],[0,2],[0,1],[-1,2],[0,1],[-1,1],[0,2],[0,1],[-1,1],[0,2],[-1,1],[0,1],[-1,1],[0,2],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,4],[0,2],[-1,3],[0,2],[-5,15],[-3,9],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,16],[0,9],[0,9],[1,9],[0,9],[-2,23],[-2,14],[-1,13],[-1,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-2,5],[-1,4],[-2,4],[-1,5],[-1,4],[-2,5],[-1,4],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[2,6],[2,1],[-1,7],[-1,4],[2,4],[-1,8],[1,7],[0,14],[-1,2],[0,5],[2,6],[1,2],[1,8],[-1,2],[-1,9],[-1,5],[-1,4],[-2,3],[0,6],[-2,3],[0,3],[-1,4],[0,5],[-2,13],[0,2],[0,4],[-2,4],[-1,2],[0,5],[-1,4],[-1,3],[0,6],[-1,6],[-1,7],[-2,8],[-1,7],[1,3],[-2,6],[0,10],[-1,8],[-1,8],[0,6],[0,5],[-2,10],[2,1],[-2,4],[-1,5],[0,5],[1,6],[-1,12],[-1,5],[1,8],[-1,10],[-1,4],[-3,8],[0,11],[-1,5],[-3,36],[-3,20],[-7,55],[0,12],[-1,12],[0,12],[0,8],[-1,7],[-1,2],[0,1],[-1,2],[0,1],[0,2],[-1,2],[0,1],[0,2],[0,1],[-1,2],[0,2],[0,1],[0,2],[0,2],[-1,1],[0,2],[0,2],[0,1],[0,2],[0,2],[0,1],[0,2],[0,2],[1,1],[3,48],[0,2],[1,2],[0,2],[0,3],[1,2],[0,2],[0,2],[0,2],[0,2],[1,2],[0,2],[0,2],[0,3],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[-1,2],[0,3],[0,2],[0,2],[-1,2],[0,2],[0,2],[-1,2],[0,2],[0,2],[-1,2],[0,2],[-1,2],[0,2],[-1,2],[-1,2],[0,2],[-1,2],[-1,2],[0,2],[-2,4],[-3,3],[-1,6],[-2,11],[-2,3],[-3,4],[0,2],[-6,27],[-2,19],[-2,7],[-3,10],[-1,12],[-3,11],[3,16],[2,10],[4,21],[0,5],[3,13],[-4,25],[-2,12],[-5,12],[-3,14],[-3,8],[-6,18],[-3,2],[-3,4],[0,10],[-3,7],[0,6],[2,9],[-2,7],[1,7],[-1,7],[1,13],[1,5],[2,4],[2,19],[1,14],[1,14],[1,2],[0,7],[1,8],[-2,5],[-2,12],[-1,9],[-1,5],[1,12],[-4,6],[-1,8],[0,11],[-1,5],[-2,5],[-3,7],[-1,26],[0,17],[-2,4],[-2,1],[-4,1],[-3,6],[-1,11],[-2,4],[2,6],[-1,9],[-2,11],[3,4],[1,5],[-1,5],[0,13],[2,6],[1,4],[-1,4],[-2,4],[1,7],[-1,72],[-1,8],[-1,24],[2,10],[-3,6],[3,10],[0,15],[-4,45],[3,20],[1,26],[-4,25],[1,43],[-1,12],[3,9],[-1,11],[0,16],[1,3],[-1,6],[1,10],[-4,31],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,29],[-1,5],[1,4],[-1,9],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,2],[0,1],[0,2],[1,2],[0,1],[0,2],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[0,2],[0,2],[0,1],[0,2],[0,2],[0,2],[0,1],[0,2],[0,2],[0,2],[1,2],[0,1],[0,2],[0,2],[1,2],[0,2],[-1,61],[-1,15],[-2,18],[-1,21],[2,9],[-1,9],[1,8],[-1,3],[3,8],[0,48],[-7,63],[-2,12],[-1,8],[-2,14],[-2,19],[-1,13],[-4,11],[-4,9],[-2,6],[-6,3],[-12,7],[-11,4],[-10,15],[-9,21],[-9,14],[-12,20],[-2,3],[-2,13],[2,10],[4,10],[-1,12],[5,17],[1,9],[-5,17],[-6,2],[-12,8],[-6,19],[3,12],[10,2],[6,-5],[5,8],[2,18],[2,18],[2,15],[0,17],[-11,25],[-5,26],[9,16],[7,0],[11,-2],[0,7],[1,7],[3,4],[23,-4],[7,5],[-8,13],[5,12],[7,15],[2,8],[9,10],[4,11],[-5,9],[-3,10],[5,4],[3,8],[-2,6],[0,5],[0,7],[3,7],[8,4],[9,-7],[5,3],[1,11],[6,14],[-2,10],[0,6],[9,3],[2,11],[3,12],[6,8],[12,6],[3,12],[-11,12],[-5,6],[4,9],[-2,9],[8,3],[17,-20],[11,-14],[13,15],[-1,14],[-5,6],[0,7],[2,6],[4,3],[7,-1],[10,2],[10,-5],[12,0],[-2,13],[1,13],[5,3],[13,-10],[4,1],[8,9],[6,8],[16,3],[8,0],[8,3],[4,-3],[12,3],[11,8],[6,8],[3,10],[6,12],[6,10],[8,8],[5,2],[3,11],[7,14],[20,14],[9,0],[6,5],[5,6],[2,8],[12,13],[1,2],[2,2],[5,4],[2,-1],[5,-1],[4,3],[3,7],[2,3],[5,8],[1,3],[0,3],[2,0],[2,2],[3,6],[-2,8],[5,14],[6,11],[8,4],[5,6],[5,9],[3,11],[6,11],[4,1],[5,17],[5,4],[10,0],[1,-5],[4,2],[8,1],[2,4],[4,7],[6,6],[3,6],[1,3],[1,3],[1,2],[1,1],[3,3],[3,2],[-2,5],[3,6],[0,7],[2,12],[2,2],[13,3],[6,2],[6,1],[3,-1],[6,0],[6,-1],[6,2],[8,0],[6,-4],[5,-6],[3,0],[2,-1],[3,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[19,3],[6,2],[1,-1],[3,0],[10,-2],[8,-3],[6,-2],[6,0],[2,1],[2,-3],[6,0],[2,1],[5,2],[1,1],[0,1],[2,2],[2,-1],[2,0],[4,2],[2,1],[3,3],[2,0],[1,0],[2,1],[1,-1],[3,-4],[2,-5],[3,-1],[5,0],[7,3],[5,2],[6,1],[3,3],[3,-2],[4,2],[6,-3],[4,1],[2,4],[0,3],[5,0],[3,0],[2,-4],[0,-2],[2,-1],[0,3],[1,4],[1,4],[3,2],[2,-2],[1,-2],[2,-5],[1,2],[2,-1],[4,1],[3,2],[-2,3],[4,2],[1,-4],[4,1],[1,2],[7,-1],[4,2],[7,5],[4,2],[4,-3],[1,0],[3,1],[-2,3],[3,2],[4,-3],[2,-1],[2,0],[1,1],[3,0],[1,-2],[2,2],[5,2],[2,-1],[3,-1],[1,2],[3,3],[2,0],[1,1],[6,5],[5,0],[1,5],[0,9],[4,1],[1,-2],[0,-5],[3,2],[2,-3],[0,-3],[2,0],[0,1],[3,-1],[3,-3],[6,4],[4,1],[2,3],[1,2],[-2,2],[-1,4],[3,5],[2,-2],[0,-3],[3,5],[3,3],[4,1],[1,-1],[3,-7],[2,-9],[3,-6],[6,-4],[4,-1],[5,0],[4,-1],[2,-3],[4,-3],[5,1],[2,4],[2,2],[3,0],[1,-5],[-2,-8],[3,-4],[2,1],[4,4],[2,4],[5,0],[1,-6],[-2,-5],[1,-5],[5,-3],[2,2],[1,3],[6,-2],[2,-4],[-1,-7],[7,-2],[4,-9],[4,-5],[7,-1],[4,4],[2,-7],[4,-2],[2,5],[-1,6],[1,3],[4,2],[3,-5],[3,0],[4,1],[1,-2],[4,-3],[2,-4],[-3,-3],[2,-4],[1,-3],[-1,-4],[1,-3],[1,-6],[2,-2],[3,-2],[3,0],[3,3],[3,-1],[3,0],[3,-4],[2,-3],[2,-4],[4,-2],[3,0],[5,-2],[2,-3],[2,-3],[3,-2],[4,2],[1,-3],[3,2],[3,-5],[3,-1],[3,-1],[2,1],[3,1],[1,0],[4,1],[3,1],[4,0],[2,2],[3,1],[3,3],[4,2],[1,3],[3,0],[3,2],[2,2],[2,2],[2,0],[3,-1],[1,1],[1,2],[2,1],[3,1],[2,0],[4,1],[1,1],[2,1],[2,2],[2,2],[2,0],[3,3],[3,1],[1,1],[2,4],[4,2],[5,1],[3,1],[3,0],[1,1],[2,1],[7,1],[1,3],[3,2],[2,-1],[3,0],[3,6],[1,6],[1,5],[2,7],[-1,6],[4,-1],[6,-8],[2,-3],[-1,-6],[1,-4],[0,-8],[1,0],[1,-2],[2,0],[1,1],[1,0],[1,2],[0,3],[1,3],[3,-1],[0,-7],[1,0],[1,-1],[3,0],[7,-1],[2,-5],[1,-1],[2,-6],[4,-9],[1,0],[1,0],[3,2],[2,3],[3,0],[5,0],[2,-2],[4,0],[6,1],[6,1],[2,0],[3,2],[2,-1],[3,1],[3,3],[3,0],[3,1],[1,2],[3,2],[2,-1],[3,1],[3,1],[2,0],[1,2],[3,2],[3,0],[0,6],[2,3],[4,0],[0,-5],[2,3],[3,-9],[0,-2],[4,2],[4,0],[3,1],[4,0],[4,1],[5,3],[6,2],[2,1],[4,2],[2,3],[2,2],[11,8],[4,2],[3,3],[3,4],[4,2],[1,1],[2,3],[7,6],[3,-1],[3,2],[8,4],[4,4],[2,4],[3,2],[5,4],[7,7],[6,6],[1,3],[1,4],[8,10],[6,8],[5,7],[7,6],[0,3],[4,2],[3,3],[3,3],[0,1],[2,2],[11,12],[8,12],[6,13],[8,0],[7,-3],[18,-4],[7,-7],[13,-5],[32,15],[24,-1],[5,10],[10,5],[8,-1],[10,-7],[1,-3],[0,-4],[7,4],[1,-4],[5,0],[4,5],[11,12],[5,10],[7,12],[8,12],[5,8],[11,10],[8,9],[6,11],[6,6],[0,7],[3,5],[3,6],[2,8],[5,7],[5,6],[4,7],[10,12],[10,21],[10,22],[8,24],[19,22],[15,26],[13,30],[12,20],[11,31],[7,23],[14,34],[17,37],[18,61],[-14,6],[27,85],[6,28],[9,26],[6,30],[6,31],[10,33],[10,33],[11,32],[1,16],[2,13],[3,10],[-2,5],[-1,4],[1,4],[1,3],[1,4],[0,3],[3,4],[5,2],[6,0],[2,4],[-5,15],[-1,4],[2,1],[7,-9],[2,10],[1,1],[0,4],[2,1],[10,-10],[0,4],[-8,9],[-1,4],[3,0],[1,2],[2,2],[1,3],[1,3],[1,5],[1,5],[2,7],[2,5],[3,7],[3,3],[-1,3],[0,5],[5,6],[7,4],[6,6],[2,8],[1,12],[1,5],[3,6],[1,7],[0,21],[0,10],[7,5],[7,6],[5,13],[1,6],[4,8],[4,8],[4,13],[6,14],[5,19],[6,12],[1,14],[7,27],[3,21],[-1,17],[3,15],[2,21],[3,13],[1,15],[6,15],[5,15],[3,9],[4,12],[8,14],[9,27],[11,46],[2,14],[5,20],[7,19],[9,39],[5,19],[1,18],[1,16],[1,12],[4,4],[-2,8],[2,3],[-2,5],[1,10],[1,7],[0,11],[3,17],[1,14],[1,17],[1,10],[0,11],[1,7],[2,5],[0,10],[-1,13],[1,28],[5,25],[22,17],[10,17],[1,8],[-3,13],[-2,56],[2,51],[-2,32],[2,20],[-3,21],[18,8],[-3,31],[4,1],[23,7],[23,-4],[21,-11],[4,2],[6,-5],[4,-8],[10,-32],[3,-18],[2,-37],[7,-21],[5,-6],[11,-8],[16,-10],[38,-12],[9,-8],[20,-3],[27,-4],[51,-1],[37,-6],[27,-6],[27,-10],[15,-1],[21,-6],[20,-7],[17,-10],[4,-2],[36,80],[2,2],[5,-1],[33,-23],[1,-3],[-4,-10],[-4,-1],[-34,23],[-31,-68],[7,-13],[12,-9],[9,-9],[5,-6],[12,-10],[15,-14],[18,-22],[4,-15],[8,-19],[15,-29],[5,-6],[10,-8],[12,-6],[9,-4],[10,16],[7,-7],[-11,-16],[4,-4],[14,-14],[10,-10],[26,-30],[10,-13],[13,-9],[21,-11],[12,18],[26,41],[11,-10],[-4,-7],[-6,6],[-1,-1],[-4,3],[-33,-51],[36,-20],[12,-1],[15,-8],[12,-9],[58,-27],[20,-11],[15,-6],[26,-6],[20,1],[20,3],[33,9],[14,1],[11,-6],[9,-3],[18,3],[21,6],[17,6],[78,16],[13,4],[2,1],[2,2],[3,1],[2,1],[3,1],[2,1],[3,0],[2,1],[3,1],[2,1],[3,0],[2,1],[3,1],[2,0],[3,1],[3,0],[2,0],[3,1],[4,0],[4,0],[3,1],[3,0],[4,1],[3,0],[3,1],[4,1],[3,1],[3,1],[3,1],[4,1],[3,1],[3,1],[3,1],[5,2],[3,2],[4,2],[3,2],[4,2],[3,1],[4,2],[3,1],[4,2],[3,1],[4,1],[3,2],[4,1],[3,1],[6,1],[7,1],[7,1],[6,2],[7,1],[7,2],[7,1],[6,2],[7,2],[7,2],[6,3],[7,2],[7,2],[6,3],[7,3],[8,4],[17,8],[52,26],[8,1],[3,-2],[1,-8],[13,-1],[1,-1],[16,-6],[33,-3],[33,1],[21,0],[50,8],[47,17],[29,11],[34,8],[6,0],[6,-1],[6,2],[5,3],[5,3],[5,2],[6,2],[8,0],[4,-1],[4,-1],[2,-3],[8,-6],[5,-1],[5,-1],[10,5],[10,3],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[17,14],[41,41],[34,5],[11,-1],[76,11],[1,0],[1,0],[26,-2],[1,0],[1,0],[66,10],[4,1],[62,24],[5,3],[7,2],[11,2],[37,6],[14,2],[22,4],[15,2],[18,9],[1,0],[1,1],[1,1],[1,0],[1,1],[0,1],[1,0],[1,1],[1,1],[0,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[10,16],[6,8],[6,8],[6,-5],[-22,-53],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-10,-4],[-10,-1],[-63,-10],[-2,-1],[1,-7],[19,3],[0,-1],[1,0],[0,-1],[5,-8],[-1,-1],[-6,9],[-7,-1],[-1,-1],[6,-8],[-1,-1],[-6,10],[-8,-1],[-1,-2],[6,-8],[-1,-1],[-7,10],[-7,-1],[0,-1],[5,-8],[-1,-1],[-7,10],[0,2],[11,1],[-1,7],[-31,-5],[-4,-1],[-3,-4],[-2,-6],[1,-3],[4,1],[2,2],[0,2],[20,4],[1,-14],[-1,-1],[-1,11],[-1,1],[-9,-1],[-1,-2],[2,-13],[-1,-1],[-2,14],[-1,1],[-4,-1],[0,-1],[1,-14],[-1,0],[-1,11],[-1,1],[-1,0],[-2,-6],[1,-6],[-1,-1],[-1,8],[2,5],[-4,-1],[2,-13],[-17,-4],[-2,19],[-3,1],[-1,0],[0,-3],[3,-24],[-10,-1],[0,2],[7,0],[1,2],[0,1],[-1,1],[-7,-1],[0,1],[7,1],[1,1],[0,1],[-1,1],[-8,-1],[0,1],[7,1],[1,1],[0,2],[-1,1],[-7,-1],[0,1],[7,1],[1,1],[0,1],[-1,1],[-7,-1],[-1,1],[8,1],[0,1],[0,2],[-1,1],[-7,-1],[0,1],[8,1],[0,3],[-7,-1],[-6,-2],[-4,-2],[-4,-1],[-5,-2],[-4,-2],[-2,0],[1,-4],[8,1],[0,-1],[-7,-1],[-1,-1],[1,-2],[8,1],[0,-1],[-7,-1],[-1,-1],[0,-2],[1,-1],[7,2],[0,-1],[-7,-2],[0,-1],[0,-1],[1,-1],[7,1],[0,-1],[-7,-1],[-1,-1],[0,-1],[1,-1],[7,1],[0,-1],[-7,-1],[0,-1],[0,-2],[1,-1],[7,1],[0,-1],[-16,-3],[0,1],[6,1],[0,1],[0,2],[-7,-1],[0,1],[6,1],[1,2],[0,2],[-1,0],[-6,-1],[0,1],[6,1],[0,1],[0,2],[-1,1],[-6,-1],[0,1],[6,1],[1,1],[0,1],[-1,1],[-6,-1],[0,1],[6,1],[0,1],[0,2],[-1,1],[-6,-1],[0,1],[7,1],[-1,3],[-8,-2],[-15,-7],[1,-10],[0,-1],[0,-1],[-13,-3],[1,-7],[9,2],[0,1],[2,1],[1,0],[1,1],[0,-1],[-1,0],[3,0],[6,-8],[-1,-1],[-5,7],[-2,-1],[0,-1],[4,-5],[-1,-1],[-5,7],[-2,-1],[0,-1],[4,-5],[-1,-1],[-5,7],[-2,-1],[0,-1],[4,-6],[-6,7],[-2,-1],[0,-1],[4,-5],[0,-1],[-6,7],[-5,-2],[0,-1],[6,-9],[0,-1],[-8,11],[-3,-1],[0,-2],[8,-10],[-1,0],[-9,11],[-3,-1],[0,-2],[5,-6],[0,-1],[-7,9],[-3,-1],[-1,0],[0,-1],[9,-11],[-1,-1],[-9,12],[-3,-1],[0,-2],[8,-10],[-1,-1],[-9,12],[-2,-1],[0,-2],[7,-10],[-1,-1],[-9,12],[-2,-1],[0,-2],[7,-10],[0,-1],[-9,12],[-7,-3],[0,-2],[7,-10],[0,-1],[-9,12],[-4,-2],[-1,1],[14,7],[-3,6],[-20,-9],[-29,-13],[2,-5],[8,1],[2,1],[1,-2],[-7,-1],[-1,-2],[4,-3],[17,4],[0,-2],[-12,-2],[-2,-3],[4,-3],[11,2],[0,-1],[-4,-1],[1,-6],[16,4],[0,-1],[-19,-4],[-5,5],[2,-7],[-1,0],[-3,8],[-6,5],[5,-15],[-1,0],[-6,16],[-4,5],[-8,-4],[6,-22],[-1,-1],[-7,23],[-6,-3],[8,-22],[-1,-1],[-8,22],[-4,-2],[7,-22],[-1,0],[-8,22],[-7,-4],[3,-10],[0,-2],[-16,9],[11,4],[-2,4],[-39,-18],[7,0],[5,2],[1,-1],[12,6],[1,-2],[23,-14],[0,-1],[-25,14],[-10,-4],[28,-16],[0,-1],[-29,16],[-7,-3],[18,-17],[-1,-1],[-18,17],[-8,-3],[17,-16],[-1,-1],[-17,16],[-7,-3],[10,-9],[-1,-2],[-8,8],[0,-1],[-5,-3],[-2,6],[-4,-1],[-15,-7],[0,1],[14,8],[-1,2],[-16,-7],[0,-9],[1,-1],[8,1],[0,-1],[-8,-1],[-1,-1],[1,-2],[0,-1],[13,1],[0,-1],[-12,-1],[-1,-1],[0,-4],[13,2],[0,-1],[-11,-1],[-1,-2],[1,-7],[2,-1],[7,1],[0,-1],[-7,-1],[-1,-2],[1,-7],[1,-1],[8,2],[0,-1],[-8,-2],[-1,-1],[0,-2],[1,0],[13,1],[0,-1],[-12,-1],[-1,-2],[0,-2],[1,-1],[13,2],[0,-1],[-13,-2],[-1,-1],[1,-7],[1,0],[12,2],[0,-2],[-12,-1],[0,-1],[0,-8],[1,0],[12,2],[0,-1],[-11,-2],[-1,-1],[0,-3],[1,0],[12,2],[0,-1],[-12,-2],[-1,-1],[1,-2],[1,-1],[11,2],[1,-1],[-12,-2],[-1,-1],[0,-2],[1,0],[12,2],[0,-1],[-12,-2],[0,-1],[0,-1],[1,-1],[4,0],[0,-1],[-4,0],[-1,-2],[1,-4],[1,-1],[4,1],[0,-1],[-4,-1],[-1,-1],[0,-1],[1,-1],[5,1],[1,-2],[-6,-1],[1,-6],[20,4],[30,6],[-1,1],[-1,6],[-34,-7],[0,2],[2,0],[1,2],[-1,5],[1,0],[1,-5],[1,-1],[1,0],[0,1],[0,6],[1,-6],[1,-1],[1,1],[1,1],[-2,12],[1,0],[2,-12],[1,-1],[2,1],[0,1],[-1,12],[2,-12],[1,-1],[1,0],[1,2],[-1,12],[2,-12],[1,-1],[5,1],[1,1],[-1,12],[2,-12],[1,-1],[2,1],[0,1],[-1,12],[1,0],[1,-12],[1,-1],[2,0],[0,2],[-1,12],[2,-12],[1,-1],[2,0],[1,1],[-2,13],[1,0],[1,-12],[2,-1],[1,0],[1,1],[-2,12],[1,1],[2,-13],[1,0],[2,0],[0,1],[-1,12],[0,1],[2,-13],[1,-1],[2,1],[0,1],[-1,12],[1,0],[1,-12],[1,-1],[2,1],[1,1],[-2,12],[1,0],[2,-12],[1,-1],[2,1],[0,1],[-1,12],[1,0],[1,-12],[1,-1],[3,0],[0,2],[-1,12],[1,0],[1,-12],[1,-1],[2,0],[1,2],[-2,9],[1,0],[2,-9],[1,-1],[1,0],[1,2],[-1,11],[1,0],[1,-12],[1,0],[2,0],[1,1],[-1,11],[2,-11],[1,0],[2,0],[0,1],[-1,11],[1,0],[1,-11],[1,0],[2,0],[1,1],[-2,11],[1,0],[2,-11],[0,-1],[3,1],[0,1],[-1,11],[2,-11],[1,-1],[2,1],[-1,12],[1,0],[1,-11],[1,-1],[6,1],[1,1],[-2,11],[1,0],[1,-11],[1,0],[2,0],[0,1],[-1,11],[1,0],[1,-11],[1,-1],[2,1],[0,1],[-1,11],[1,0],[1,-11],[1,-1],[2,1],[1,0],[-1,12],[2,-11],[1,-1],[1,0],[1,1],[-2,12],[1,0],[2,-12],[2,0],[1,1],[-1,12],[1,0],[1,-12],[1,0],[2,0],[0,1],[-1,10],[1,0],[1,-10],[1,-1],[2,1],[0,1],[-1,9],[1,1],[1,-10],[1,-1],[2,0],[0,1],[-1,10],[1,0],[1,-9],[1,-1],[2,0],[0,1],[-1,10],[1,0],[1,-10],[1,0],[2,0],[0,1],[-1,10],[1,0],[1,-10],[1,-1],[1,1],[1,1],[-1,9],[1,0],[1,-9],[1,-1],[1,0],[1,1],[-1,10],[1,0],[1,-10],[1,0],[5,1],[1,1],[-2,9],[1,1],[1,-10],[1,-1],[2,1],[1,1],[-2,9],[1,1],[1,-10],[1,-1],[2,0],[0,1],[-1,10],[1,0],[1,-9],[1,-1],[5,1],[1,1],[-1,10],[1,0],[1,-10],[1,-1],[1,1],[1,1],[-1,9],[1,1],[1,-10],[1,-1],[1,1],[1,1],[-1,9],[1,0],[1,-9],[1,-1],[1,0],[1,1],[-1,10],[1,0],[1,-10],[1,0],[1,0],[1,1],[-2,10],[1,0],[1,-10],[1,-1],[2,1],[0,1],[-1,10],[1,0],[1,-10],[1,-1],[2,0],[0,1],[-1,10],[1,0],[1,-9],[1,-1],[2,0],[0,1],[-1,10],[1,0],[1,-10],[1,0],[1,0],[1,1],[-1,10],[1,0],[1,-10],[1,-1],[1,1],[1,1],[-1,9],[1,1],[1,-10],[1,-1],[1,0],[0,1],[-1,10],[1,0],[1,-10],[1,0],[5,1],[1,1],[-2,9],[1,1],[1,-10],[2,-1],[1,0],[-1,11],[1,0],[1,-10],[2,0],[1,1],[-2,10],[1,0],[1,-10],[2,-1],[4,1],[1,1],[-2,10],[1,0],[1,-9],[1,-1],[5,1],[0,1],[-1,9],[1,1],[1,-10],[1,-1],[4,1],[1,1],[-2,9],[1,1],[1,-10],[2,-1],[2,1],[0,-2],[-30,-6],[1,-7],[31,7],[6,9],[-6,44],[-4,7],[-35,-6],[1,-7],[32,5],[0,-2],[-2,-1],[-1,-1],[1,-9],[-1,0],[-1,9],[0,1],[-2,0],[0,-2],[0,-8],[-1,-1],[0,9],[-1,2],[-1,-1],[-1,-1],[1,-9],[-1,0],[-1,8],[-1,2],[-4,-1],[-1,-1],[1,-9],[-1,-1],[-1,9],[-1,2],[-1,0],[0,-2],[1,-9],[-1,0],[-1,9],[-1,1],[-1,0],[-1,-1],[1,-9],[-1,-1],[-1,9],[0,2],[-2,0],[0,-2],[1,-9],[-1,0],[-1,9],[-1,1],[-1,0],[-1,-2],[1,-9],[-1,0],[-1,9],[-1,2],[-1,0],[-1,-2],[1,-9],[-1,0],[-1,9],[0,1],[-2,0],[0,-1],[1,-10],[-1,0],[-1,9],[-1,2],[-5,-1],[-1,-2],[1,-9],[-1,0],[-1,9],[0,1],[-6,0],[0,-2],[1,-9],[-1,0],[-1,9],[-1,1],[-1,0],[-1,-1],[1,-10],[-1,0],[-1,10],[0,1],[-2,0],[0,-2],[0,-9],[-1,0],[0,9],[-1,1],[-5,-1],[0,-1],[0,-9],[-1,0],[0,9],[-1,1],[-6,-1],[0,-1],[1,-10],[-1,0],[-1,10],[-1,1],[-2,0],[0,-2],[1,-9],[-1,0],[-1,9],[-1,1],[-2,0],[0,-1],[1,-10],[-1,0],[-1,9],[-1,2],[-2,-1],[0,-1],[1,-9],[-1,0],[-1,9],[-1,1],[-1,0],[-1,-1],[1,-10],[-1,0],[-1,9],[0,1],[-2,0],[-1,-1],[1,-9],[-1,0],[-1,9],[0,1],[-2,-1],[0,-1],[1,-10],[-1,0],[-1,10],[-1,1],[-2,0],[0,-2],[1,-9],[-1,0],[-1,9],[-1,1],[-2,0],[0,-1],[1,-10],[-1,0],[-1,9],[-1,1],[-6,-1],[0,-1],[1,-10],[-1,0],[-1,10],[-1,1],[-6,-1],[0,-2],[1,-9],[-1,0],[-1,9],[-1,1],[-6,-1],[0,-1],[1,-9],[-1,0],[-1,9],[-1,1],[-2,-1],[0,-1],[1,-9],[-1,0],[-1,9],[-1,1],[-1,0],[-1,-2],[1,-6],[-1,0],[0,6],[-1,1],[-5,-1],[0,-1],[1,-6],[-1,-1],[-1,7],[-1,1],[-4,-1],[0,-1],[0,-7],[-1,0],[0,7],[-1,1],[-5,-1],[0,-1],[1,-7],[-1,0],[-1,6],[-1,1],[-5,-1],[0,-1],[1,-7],[-1,0],[-1,7],[-1,1],[-1,0],[-1,-1],[1,-7],[-1,0],[-1,7],[-2,0],[0,-1],[1,-7],[-1,0],[-1,7],[-1,1],[-1,-1],[-1,-1],[1,-7],[-1,0],[0,7],[-1,1],[-2,0],[0,-2],[1,-6],[-1,0],[-1,6],[-1,1],[-1,0],[-1,-1],[1,-6],[-1,0],[-1,6],[-1,1],[-1,-1],[-1,-1],[1,-6],[-1,0],[-2,16],[1,1],[1,-7],[1,-1],[1,0],[1,1],[-1,7],[1,-6],[1,-1],[2,0],[0,1],[-1,7],[1,0],[1,-7],[1,-1],[5,1],[0,2],[0,6],[0,1],[1,-7],[1,-1],[5,1],[0,1],[0,7],[1,-7],[1,-1],[1,1],[1,1],[-1,7],[1,0],[1,-7],[1,-1],[1,0],[0,1],[-1,7],[1,0],[1,-7],[1,0],[4,0],[1,2],[-1,7],[1,0],[1,-7],[1,-1],[1,1],[-1,7],[1,0],[1,-6],[1,-1],[1,0],[0,1],[0,7],[1,0],[0,-7],[1,-1],[4,1],[1,1],[-1,7],[1,0],[1,-6],[1,-1],[4,0],[0,2],[0,6],[1,-6],[1,-1],[4,1],[1,1],[-1,7],[1,0],[1,-7],[1,-1],[4,1],[0,1],[-1,10],[1,0],[1,-10],[1,-1],[6,1],[1,2],[-1,10],[2,-10],[1,-1],[1,0],[1,2],[-1,11],[2,-11],[1,-1],[1,0],[1,1],[-1,11],[1,0],[1,-10],[1,-1],[5,1],[1,1],[-1,10],[2,-10],[1,-1],[3,1],[5,1],[-1,7],[-2,-1],[-1,3],[2,0],[0,3],[0,4],[-9,-2],[0,1],[8,2],[1,1],[-1,2],[-8,-1],[0,1],[8,1],[0,1],[0,2],[-1,1],[-8,-2],[0,2],[8,1],[1,1],[-1,1],[-1,1],[-7,-1],[0,1],[7,1],[1,1],[0,2],[-1,1],[-8,-1],[0,1],[8,1],[0,1],[0,3],[-1,1],[-8,-2],[0,2],[18,3],[0,-2],[-7,-1],[0,-1],[0,-1],[1,-1],[6,1],[0,-1],[-6,-1],[-1,-1],[0,-1],[1,-1],[7,1],[0,-1],[-6,-1],[-1,-1],[1,-2],[6,2],[0,-2],[-6,-1],[-1,-1],[0,-1],[1,-1],[7,1],[0,-1],[-7,-1],[0,-1],[0,-1],[1,-1],[6,1],[0,-1],[-6,-1],[-1,-1],[2,-2],[6,1],[0,-1],[-8,-1],[0,-4],[1,-3],[7,2],[0,1],[-1,1],[9,3],[4,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[0,1],[0,5],[-4,23],[1,7],[1,0],[0,-5],[5,2],[1,6],[1,0],[-1,-5],[1,-1],[5,2],[1,7],[1,0],[-1,-6],[1,0],[5,2],[1,7],[1,0],[-1,-6],[5,2],[1,7],[1,0],[-1,-6],[1,0],[5,2],[1,7],[1,-1],[-1,-5],[1,0],[5,2],[1,6],[1,0],[-1,-5],[1,-1],[4,2],[1,2],[1,5],[1,0],[-1,-6],[2,-8],[0,-1],[-2,6],[-1,1],[-4,-2],[-1,-2],[2,-5],[-1,0],[-1,5],[-2,1],[-3,-2],[-1,-1],[2,-5],[-1,0],[-1,5],[-1,0],[-4,-1],[0,-1],[1,-4],[-1,-1],[-1,4],[-1,1],[-4,-1],[0,-2],[1,-4],[-1,0],[-1,4],[-1,1],[-4,-2],[0,-1],[1,-4],[-1,0],[-1,4],[-1,0],[-4,-1],[0,-1],[1,-4],[0,-1],[-2,4],[-1,1],[-3,-2],[-1,-1],[1,-4],[-2,4],[-1,0],[-4,-1],[3,-21],[4,1],[1,1],[-1,4],[1,1],[1,-5],[1,0],[0,5],[1,0],[0,-5],[2,0],[1,1],[-1,5],[1,0],[1,-4],[0,-1],[4,1],[1,0],[-1,5],[1,0],[0,-4],[1,-1],[4,1],[1,1],[-1,5],[1,0],[1,-5],[4,0],[1,1],[0,5],[1,-4],[0,-1],[4,1],[1,1],[0,5],[0,1],[1,-6],[1,-1],[2,1],[1,0],[1,1],[0,6],[1,-5],[1,-1],[4,0],[0,1],[0,6],[1,0],[0,-5],[1,-1],[4,0],[0,2],[0,5],[1,0],[0,-5],[1,-1],[1,0],[1,1],[-1,6],[1,0],[0,-5],[2,-1],[1,0],[0,1],[0,6],[4,0],[1,-8],[-17,-3],[-6,-1],[1,-8],[1,1],[16,4],[2,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,4],[1,0],[-1,1],[0,2],[0,1],[-2,16],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,1],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-16],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,4],[-1,0],[-4,36],[-15,-4],[-1,3],[17,4],[1,-10],[3,1],[3,11],[1,0],[-3,-10],[1,0],[3,0],[2,12],[1,-1],[-2,-9],[1,-1],[2,1],[3,11],[-2,-9],[1,-1],[8,2],[3,12],[1,-1],[-3,-9],[1,-1],[6,2],[2,8],[1,0],[-2,-7],[1,-1],[5,2],[2,8],[1,0],[-2,-6],[1,-1],[6,2],[2,8],[1,-1],[-2,-6],[1,-1],[2,1],[2,7],[-1,-5],[1,-1],[2,0],[2,8],[1,0],[-1,-6],[0,-1],[5,2],[2,6],[1,0],[-1,-5],[0,-1],[5,2],[2,7],[0,-1],[-1,-4],[1,-1],[5,1],[2,7],[1,0],[-2,-5],[1,-1],[6,2],[1,6],[1,0],[-1,-5],[2,-10],[-1,0],[-1,6],[-1,1],[-5,-2],[-1,-1],[2,-6],[-1,-1],[-1,7],[-1,1],[-5,-2],[-1,-1],[2,-7],[-1,0],[-1,6],[-2,1],[-4,-1],[0,-1],[1,-7],[-1,0],[-1,7],[-1,0],[-4,-1],[-1,-1],[2,-7],[-1,0],[-1,6],[-2,1],[-4,-1],[0,-1],[1,-7],[-2,6],[-1,1],[-4,-2],[-1,-1],[1,-5],[-2,5],[0,1],[-5,-2],[0,-1],[1,-5],[-1,0],[-1,5],[-1,0],[-4,-1],[-1,-1],[1,-5],[0,-1],[-2,6],[-4,-1],[-1,-1],[1,-5],[-1,-1],[-1,6],[-4,-1],[-1,-1],[1,-5],[-1,5],[-1,0],[-4,-1],[0,-1],[1,-5],[-1,0],[-1,5],[-1,1],[-4,-2],[1,-6],[-1,0],[-1,5],[-1,1],[-4,-2],[3,-25],[4,1],[1,0],[-1,6],[1,0],[1,-5],[0,-1],[4,1],[1,1],[-1,5],[1,0],[1,-5],[1,-1],[4,1],[0,1],[0,5],[1,-5],[1,-1],[4,1],[0,1],[0,5],[1,-5],[1,-1],[4,1],[0,1],[0,6],[1,0],[0,-6],[1,-1],[4,1],[1,1],[-1,6],[1,0],[1,-6],[0,-1],[5,1],[1,1],[-1,6],[1,0],[1,-6],[0,-1],[5,1],[0,2],[0,6],[1,0],[0,-6],[1,-1],[4,1],[1,1],[-1,7],[1,0],[1,-7],[1,-1],[1,0],[0,1],[-1,7],[1,1],[1,-7],[1,-1],[1,0],[0,1],[0,7],[1,-6],[1,-1],[5,1],[0,1],[-1,7],[1,0],[1,-7],[1,-1],[5,1],[0,1],[0,7],[1,0],[0,-6],[1,-1],[5,1],[1,1],[-1,6],[1,0],[1,-9],[-20,-4],[-3,-1],[-11,-2],[0,-3],[4,0],[4,0],[2,2],[2,-1],[3,2],[5,1],[5,0],[2,1],[5,0],[2,1],[7,1],[7,0],[8,1],[5,2],[6,1],[15,2],[15,3],[14,4],[9,3],[8,1],[11,1],[8,1],[22,5],[29,5],[22,4],[17,5],[11,2],[9,2],[7,2],[7,0],[7,2],[10,4],[11,2],[6,3],[3,1],[4,-2],[13,3],[4,1],[5,0],[11,0],[10,1],[-2,12],[122,24],[7,-3],[1,0],[-1,1],[1,0],[10,25],[45,-24],[2,0],[-1,-2],[-1,1],[-3,1],[0,1],[-3,1],[-1,0],[0,1],[-3,1],[-3,2],[-1,0],[-3,2],[-3,2],[-1,-1],[0,1],[-3,2],[0,-1],[0,1],[-3,2],[0,-1],[0,1],[-4,2],[0,-1],[0,1],[-3,1],[0,1],[-3,1],[-1,0],[-3,2],[0,-1],[0,1],[-3,2],[-1,-1],[0,1],[0,-1],[1,0],[-1,-1],[-1,1],[-1,-4],[1,0],[-1,0],[-1,-4],[1,0],[-1,0],[-1,0],[-1,-4],[1,0],[-1,0],[-2,-4],[1,0],[-1,0],[-1,-4],[1,0],[-1,0],[-2,-4],[1,0],[-1,0],[0,-1],[3,-1],[-1,-1],[-10,5],[-121,-24],[0,-2],[6,1],[116,22],[1,-10],[-1,0],[-1,9],[-7,-2],[0,-2],[1,-7],[-1,0],[-1,7],[-1,2],[-6,-1],[0,-2],[1,-7],[-1,0],[-1,7],[-1,1],[-6,-1],[0,-2],[1,-7],[-1,0],[-1,7],[-1,2],[-5,-1],[-1,-2],[1,-7],[-1,0],[-1,7],[0,1],[-6,-1],[0,-1],[1,-8],[-1,0],[-1,7],[-1,2],[-5,-1],[0,-2],[1,-7],[-1,0],[-1,7],[-1,2],[-5,-1],[0,-2],[1,-7],[-1,-1],[-1,8],[-1,1],[-6,-1],[0,-2],[1,-7],[-1,0],[-1,7],[-1,2],[-4,-1],[-1,-2],[1,-7],[-1,0],[0,7],[-1,2],[-5,-1],[-1,-2],[1,-8],[-1,7],[-1,2],[-5,-1],[0,-2],[1,-7],[-1,0],[-1,7],[-1,2],[-5,-1],[0,-2],[1,-7],[-1,0],[-1,7],[-1,2],[-4,-1],[-1,-2],[1,-7],[-1,-1],[-1,7],[0,2],[-5,-1],[0,-2],[1,-7],[-1,0],[-1,7],[-1,2],[-4,-1],[-1,-2],[1,-7],[-1,0],[-1,7],[-1,2],[-4,-1],[0,-2],[1,-7],[-1,0],[-1,9],[-6,-1],[1,-8],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[2,-9],[1,-9],[0,-5],[2,0],[-1,9],[1,0],[1,-7],[1,-2],[4,1],[0,2],[-1,7],[1,1],[1,-8],[1,-1],[4,0],[1,2],[-1,8],[1,0],[1,-8],[1,-1],[3,1],[1,1],[-1,8],[1,0],[1,-7],[1,-2],[4,1],[1,2],[-1,7],[1,0],[1,-7],[1,-2],[4,1],[1,2],[-1,7],[0,1],[1,-8],[1,-1],[5,1],[0,1],[-1,8],[1,0],[1,-8],[1,-1],[5,1],[0,2],[-1,7],[1,0],[1,-7],[1,-2],[5,1],[0,2],[-1,7],[1,1],[1,-8],[1,-1],[5,0],[0,2],[-1,8],[1,0],[1,-8],[1,-1],[5,1],[1,2],[-1,7],[1,-7],[1,-2],[5,1],[1,2],[-1,7],[1,1],[1,-8],[1,-1],[4,1],[1,1],[-1,8],[1,0],[1,-7],[1,-2],[5,1],[0,2],[-1,7],[1,0],[1,-7],[1,-1],[5,0],[1,2],[-1,8],[1,0],[1,-8],[1,-1],[5,1],[0,2],[-1,7],[1,0],[1,-7],[1,-2],[6,1],[0,2],[-1,8],[1,0],[1,-8],[1,-1],[6,1],[0,2],[-1,7],[1,0],[1,-7],[1,-2],[6,2],[1,1],[-1,8],[1,0],[2,-18],[-1,-1],[-1,7],[0,1],[-5,-1],[-1,-2],[1,-6],[-1,0],[-1,6],[-1,2],[-5,-1],[0,-2],[1,-6],[-1,0],[-1,6],[-1,1],[-5,-1],[-1,-1],[1,-7],[-1,0],[0,7],[-1,1],[-5,-1],[-1,-2],[1,-6],[-1,0],[-1,6],[-1,1],[-4,0],[-1,-2],[1,-6],[-1,0],[-1,6],[0,1],[-5,-1],[-1,-1],[1,-7],[-1,0],[-1,6],[-1,2],[-4,-1],[0,-2],[0,-6],[-1,0],[0,6],[-1,2],[-5,-1],[0,-2],[0,-6],[-1,6],[-1,1],[-5,-1],[0,-1],[0,-7],[-1,7],[-1,1],[-5,-1],[0,-2],[0,-6],[-1,6],[-1,2],[-4,-1],[-1,-2],[1,-6],[-1,0],[-1,6],[-1,1],[-4,0],[0,-2],[1,-6],[-1,0],[-1,6],[-1,1],[-4,-1],[-1,-1],[1,-7],[-1,0],[-1,7],[-1,1],[-4,-1],[0,-2],[1,-6],[-1,0],[-1,6],[-1,2],[-4,-1],[-1,-2],[1,-6],[-1,0],[-1,6],[0,1],[-5,0],[0,-2],[1,-6],[-1,0],[-1,6],[-1,1],[-4,-1],[-1,-1],[1,-7],[-1,0],[-1,7],[0,1],[-1,0],[-1,-2],[1,-6],[-1,0],[-1,6],[-1,1],[-1,0],[0,-1],[1,-7],[-1,0],[-1,6],[-1,2],[-4,-1],[-1,-2],[1,-6],[-1,0],[-1,8],[-1,-1],[4,-31],[0,-1],[0,-1],[2,1],[-1,8],[1,0],[1,-8],[4,1],[1,2],[-1,6],[1,0],[1,-6],[1,-1],[4,0],[1,2],[-1,6],[1,1],[0,-7],[2,-1],[3,1],[1,2],[-1,6],[1,0],[1,-6],[1,-2],[4,1],[1,2],[-1,6],[1,0],[0,-6],[2,-2],[3,1],[1,2],[-1,6],[1,0],[1,-6],[1,-1],[4,0],[0,2],[0,6],[1,0],[0,-6],[2,-1],[3,1],[1,1],[-1,7],[1,0],[1,-6],[1,-2],[4,1],[0,2],[0,6],[1,0],[0,-6],[2,-2],[3,1],[1,2],[-1,6],[1,0],[1,-6],[1,-1],[4,0],[1,2],[-1,6],[1,0],[0,-6],[2,-1],[3,1],[1,2],[0,6],[1,-6],[2,-2],[3,1],[1,2],[-1,6],[1,0],[1,-6],[1,-2],[4,1],[1,2],[-1,6],[1,0],[1,-6],[1,-1],[4,1],[1,2],[0,6],[1,-6],[1,-2],[4,1],[1,2],[-1,6],[1,0],[0,-6],[2,-2],[4,1],[1,2],[-1,6],[1,0],[1,-6],[1,-1],[4,1],[1,2],[-1,6],[1,0],[1,-6],[1,-2],[4,1],[1,2],[0,6],[1,-6],[2,-1],[4,0],[0,2],[0,6],[1,1],[0,-7],[2,-1],[4,1],[1,2],[-1,6],[1,0],[1,-6],[1,-2],[4,1],[1,2],[-1,6],[1,0],[1,-6],[1,-1],[4,1],[1,1],[-1,7],[1,0],[1,-6],[1,-2],[6,1],[-1,8],[1,0],[2,-17],[-1,0],[-1,8],[-6,-1],[0,-2],[0,-6],[0,-1],[-1,7],[-1,1],[-5,-1],[-1,-2],[1,-6],[-1,0],[-1,6],[-1,2],[-3,-1],[-1,-2],[1,-6],[-1,0],[-1,6],[-1,1],[-4,0],[-1,-2],[1,-6],[-1,0],[-1,6],[-1,1],[-4,-1],[0,-1],[0,-7],[-1,7],[-1,1],[-4,-1],[-1,-2],[1,-6],[-1,0],[-1,6],[-1,2],[-4,-1],[-1,-2],[1,-6],[-1,0],[0,6],[-2,1],[-1,-1],[1,-7],[-1,0],[-1,6],[-1,2],[-1,-2],[1,-6],[-1,-1],[-1,7],[-1,1],[-5,-1],[0,-1],[0,-7],[-1,6],[-1,2],[-23,-5],[0,-4],[8,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-2],[1,-4],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[3,0],[0,1],[1,0],[1,2],[-1,5],[1,0],[1,-5],[1,-1],[5,0],[1,2],[-1,5],[1,1],[1,-6],[1,-1],[4,1],[1,2],[-1,5],[1,0],[0,-5],[2,-2],[3,1],[1,2],[0,5],[1,-5],[1,-1],[4,0],[0,2],[0,5],[1,0],[0,-5],[2,-1],[3,1],[1,1],[-1,5],[1,1],[1,-6],[1,-1],[3,1],[1,1],[-1,6],[1,0],[1,-5],[1,-2],[3,1],[1,2],[0,5],[1,-5],[1,-2],[4,1],[1,2],[-1,5],[1,0],[0,-5],[2,-1],[3,0],[1,2],[-1,5],[1,0],[1,-5],[1,-1],[5,1],[-1,6],[1,1],[2,-15],[-1,0],[-1,6],[-5,-1],[0,-1],[0,-6],[-1,0],[0,5],[-1,2],[-4,-1],[-1,-2],[1,-5],[-1,0],[-1,5],[-1,1],[-4,0],[-1,-2],[1,-5],[-1,0],[0,5],[-2,1],[-3,0],[-1,-2],[1,-5],[-1,0],[-1,5],[-1,1],[-4,-1],[0,-1],[0,-6],[-1,0],[0,5],[-1,2],[-4,-1],[-1,-2],[1,-5],[-1,0],[-1,5],[-1,2],[-3,-1],[-1,-2],[1,-5],[-1,0],[-1,5],[-1,1],[-3,0],[-1,-2],[1,-5],[-1,0],[-1,5],[-1,1],[-3,0],[-1,-2],[1,-5],[-1,0],[0,5],[-2,1],[-3,0],[-1,-2],[1,-5],[-1,0],[-1,5],[-1,1],[-4,-1],[1,-6],[-1,-1],[-1,7],[-2,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[2,-17],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[2,0],[-1,6],[1,1],[0,-6],[2,-1],[3,1],[0,1],[0,6],[1,0],[0,-6],[2,-1],[3,1],[0,2],[0,5],[1,0],[0,-5],[2,-1],[3,0],[1,2],[-1,5],[1,0],[0,-5],[2,-1],[3,0],[1,2],[-1,5],[1,0],[1,-5],[1,-1],[3,1],[1,1],[-1,5],[1,1],[0,-6],[2,-1],[3,1],[1,1],[-1,6],[1,0],[1,-6],[1,-1],[3,1],[1,2],[0,5],[1,-5],[1,-1],[4,0],[0,2],[0,5],[1,0],[0,-5],[2,-1],[3,1],[1,1],[0,6],[1,-6],[1,-1],[4,1],[1,2],[-1,5],[1,0],[1,-5],[1,-1],[4,0],[1,2],[-1,5],[1,0],[2,-14],[-1,-1],[-1,6],[-1,1],[-4,-1],[-1,-1],[1,-6],[-1,0],[-1,6],[0,1],[-5,-1],[0,-2],[0,-5],[-1,0],[0,5],[-1,1],[-4,-1],[-1,-1],[1,-6],[-1,0],[-1,6],[-1,1],[-4,-1],[0,-1],[0,-6],[-1,0],[0,6],[-1,1],[-4,-1],[-1,-1],[1,-6],[-1,0],[0,5],[-1,1],[-4,0],[-1,-2],[1,-5],[-1,0],[0,5],[-1,1],[-4,-1],[-1,-1],[1,-5],[-1,-1],[-1,6],[0,1],[-4,-1],[-1,-1],[1,-6],[-1,0],[-1,6],[-1,1],[-4,-1],[0,-1],[1,-6],[-1,0],[-1,5],[-1,2],[-4,-1],[0,-2],[0,-5],[-1,5],[-1,1],[-3,0],[-1,-2],[1,-5],[-1,0],[-1,7],[-2,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[3,-10],[-1,-4],[1,-5],[3,0],[-1,6],[1,0],[1,-5],[1,-1],[3,1],[0,1],[0,5],[1,0],[0,-5],[1,-1],[4,1],[0,1],[0,6],[1,0],[0,-6],[1,-1],[4,1],[0,1],[0,6],[1,0],[0,-6],[1,-1],[4,1],[1,1],[-1,6],[1,0],[0,-5],[1,-1],[4,0],[1,2],[-1,5],[1,0],[1,-5],[1,-1],[3,0],[1,2],[-1,5],[1,0],[1,-5],[1,-1],[3,1],[1,1],[0,5],[0,1],[1,-6],[1,-1],[4,1],[0,1],[0,6],[1,0],[0,-6],[1,-1],[4,1],[1,1],[-1,6],[1,0],[1,-5],[1,-1],[4,0],[1,2],[-1,5],[1,0],[1,-5],[1,-1],[4,1],[1,1],[-1,6],[1,0],[2,-15],[-1,0],[0,5],[-1,1],[-5,-1],[0,-1],[0,-5],[-1,0],[0,5],[-1,1],[-5,-1],[0,-1],[0,-6],[-1,0],[0,5],[-1,2],[-4,-1],[-1,-1],[1,-6],[-1,0],[-1,5],[-1,1],[-4,0],[0,-2],[0,-5],[-1,0],[0,5],[-1,1],[-4,-1],[-1,-1],[1,-5],[-1,-1],[-1,6],[0,1],[-4,-1],[-1,-1],[1,-6],[-1,0],[-1,6],[-1,1],[-3,-1],[-1,-1],[1,-6],[-1,0],[-1,5],[-1,2],[-3,-1],[-1,-1],[1,-6],[-1,0],[-1,5],[-1,1],[-3,0],[-1,-2],[1,-5],[-1,0],[-1,5],[-1,1],[-3,-1],[-1,-1],[0,-5],[-1,0],[0,5],[-1,1],[-3,-1],[-1,-1],[0,-6],[-1,8],[-3,0],[4,-29],[4,1],[1,0],[0,1],[0,6],[1,0],[0,-6],[1,-1],[1,0],[0,2],[0,5],[1,-5],[1,-1],[1,0],[1,1],[-1,6],[1,0],[0,-6],[1,-1],[4,1],[1,1],[-1,6],[1,0],[0,-5],[1,-1],[4,0],[1,2],[-1,5],[1,0],[1,-5],[0,-1],[4,0],[0,2],[0,5],[1,0],[0,-5],[1,-1],[4,1],[1,1],[-1,6],[1,0],[0,-6],[1,-1],[4,1],[1,1],[-1,6],[1,0],[1,-6],[1,-1],[4,1],[0,1],[0,6],[1,0],[0,-5],[1,-1],[4,0],[1,2],[-1,5],[1,0],[1,-5],[1,-1],[4,1],[1,1],[-1,6],[1,0],[1,-6],[1,-1],[4,1],[1,2],[-1,5],[1,0],[2,-13],[-1,-1],[-1,5],[-1,1],[-4,-1],[-1,-2],[1,-4],[-1,0],[-1,4],[-1,1],[-4,-1],[-1,-1],[1,-4],[-1,0],[0,4],[-1,1],[-4,-1],[-1,-1],[1,-4],[-1,-1],[-1,5],[-1,1],[-4,-1],[0,-1],[0,-5],[-1,0],[0,5],[-1,0],[-4,0],[0,-2],[0,-4],[-1,0],[0,4],[-1,1],[-4,0],[0,-2],[0,-4],[-1,0],[0,4],[-1,1],[-4,-1],[0,-1],[0,-4],[-1,0],[0,4],[-1,1],[-4,-1],[0,-1],[0,-4],[-1,0],[0,4],[-1,1],[-4,-1],[-1,-1],[1,-5],[-1,0],[0,5],[-1,1],[-8,-2],[0,-1],[0,-2],[-1,0],[0,2],[-1,1],[-2,0],[2,-9],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[49,12],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[6,9],[7,2],[0,1],[-8,-2],[-7,-8],[-1,1],[8,9],[7,2],[1,7],[0,3],[-8,-2],[0,1],[7,2],[-5,24],[3,1],[-5,20],[1,1],[5,-21],[2,0],[6,-28],[-4,-1],[-1,-6],[2,0],[0,-2],[-2,-1],[0,-1],[4,2],[1,1],[1,1],[1,1],[1,0],[2,0],[2,2],[1,2],[0,2],[1,2],[-1,2],[0,2],[-1,1],[-1,0],[-1,6],[0,1],[1,1],[0,2],[0,3],[-1,5],[-5,45],[-5,28],[-12,133],[-3,0],[0,1],[0,1],[1,0],[0,1],[1,0],[15,0],[1,0],[16,-124],[5,-4],[35,7],[4,6],[-22,164],[25,3],[22,-162],[5,-5],[35,7],[3,6],[-20,165],[33,5],[17,-134],[36,7],[0,7],[65,42],[78,-29],[1,3],[-35,48],[-30,-7],[-2,13],[33,8],[0,-4],[14,3],[1,-6],[-13,-3],[37,-51],[5,-3],[7,5],[-2,15],[-4,29],[0,7],[-1,9],[0,3],[0,3],[0,4],[0,3],[0,4],[-1,5],[2,4],[0,4],[0,3],[0,4],[1,3],[0,4],[1,3],[0,4],[1,3],[0,4],[1,3],[1,3],[0,4],[1,3],[1,4],[1,3],[1,3],[1,3],[1,4],[1,3],[1,3],[2,3],[1,4],[1,3],[1,3],[2,3],[1,3],[2,3],[1,3],[2,3],[1,3],[2,3],[2,3],[1,3],[2,3],[2,2],[2,3],[3,4],[1,2],[2,2],[1,2],[2,2],[1,1],[2,2],[1,2],[2,1],[2,2],[1,1],[2,2],[2,1],[1,2],[2,1],[2,1],[2,2],[1,1],[2,1],[2,1],[2,2],[2,1],[2,1],[1,1],[2,1],[2,1],[2,1],[2,1],[2,0],[2,1],[2,1],[2,1],[2,0],[2,1],[2,1],[2,0],[2,1],[2,0],[2,1],[2,0],[2,0],[2,1],[2,0],[2,0],[2,0],[2,1]],[[4281,9353],[15,3],[1,2],[14,2],[2,3],[1,0],[-2,6],[-7,57],[-4,24],[-2,13],[0,10],[-33,-14],[4,-20],[0,-13],[2,-11],[1,-7],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[1,-10],[1,-13],[1,0],[2,-14],[1,-12],[1,0],[0,-1]],[[7748,8297],[19,16],[-16,25],[-18,-21],[15,-20]],[[4410,9381],[49,10],[-1,7],[-10,-2],[-39,-7],[1,-6],[0,-2]],[[4494,9455],[52,8],[-1,6],[-23,-4],[-11,0],[-11,-3],[0,1],[-7,-1],[1,-7]],[[4460,9391],[46,9],[-1,7],[-12,-2],[-34,-7],[1,-7]],[[4518,9473],[41,8],[1,0],[-1,8],[-41,-9],[0,-5],[0,-2]],[[4366,9373],[43,8],[-1,1],[0,6],[-44,-8],[1,-6],[1,-1]],[[4507,9400],[45,9],[-1,7],[-22,-4],[-23,-4],[1,-8]],[[5029,9504],[9,1],[14,2],[16,3],[28,6],[0,4],[-70,-13],[-2,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0]],[[4464,9539],[15,7],[20,6],[-2,7],[-18,-6],[-10,-3],[-8,-4],[3,-7]],[[4382,9504],[30,13],[-2,6],[-7,-3],[-23,-11],[2,-5]],[[8327,5216],[7,1],[-2,26],[-5,-2],[-1,-8],[1,-17]],[[4602,9495],[1,0],[5,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[7,1],[0,3],[-50,-9],[0,-4]],[[4328,9479],[18,8],[-8,0],[-3,-2],[-1,2],[-2,-1],[-5,-3],[1,-4]],[[4384,9493],[-3,9],[-7,-4],[10,-5]],[[6555,9880],[-4,11],[1,0],[4,-10],[-1,-1]],[[6550,9876],[-5,12],[1,0],[5,-12],[-1,0]],[[6544,9873],[-4,12],[1,0],[4,-12],[-1,0]],[[6539,9870],[-4,12],[1,1],[4,-12],[-1,-1]],[[6534,9867],[-5,12],[1,1],[5,-12],[-1,-1]],[[6551,9872],[-1,3],[1,1],[1,-4],[-1,0]],[[6529,9864],[-4,10],[1,0],[4,-9],[-1,-1]],[[6546,9869],[-1,3],[1,1],[1,-4],[-1,0]],[[6523,9861],[-4,9],[1,1],[4,-9],[-1,-1]],[[6541,9866],[-1,4],[1,0],[1,-3],[-1,-1]],[[6536,9863],[-2,4],[1,0],[2,-3],[-1,-1]],[[6555,9853],[-5,14],[1,0],[5,-13],[-1,-1]],[[6530,9860],[-1,4],[1,0],[1,-3],[-1,-1]],[[6545,9848],[-5,13],[1,1],[5,-14],[-1,0]],[[8215,6742],[-2,1],[53,74],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-17,277],[1,0],[17,-277],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-53,-73]]],"transform":{"scale":[0.00001579965018123019,0.000010393697539861425],"translate":[-122.51494757907207,37.70808920805412]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment