Skip to content

Instantly share code, notes, and snippets.

@sabrinadchan
Last active August 14, 2017 06:45
Show Gist options
  • Select an option

  • Save sabrinadchan/d6f5ce50d9e10d460876ae53da2a5a06 to your computer and use it in GitHub Desktop.

Select an option

Save sabrinadchan/d6f5ce50d9e10d460876ae53da2a5a06 to your computer and use it in GitHub Desktop.
Non-residential and non-commercial spaces in Chicago
license: gpl-3.0
height: 990

An example of mapping multiple geographical layers at once from different TopoJSON files. Use the checkboxes to show/hide different layers.

Geographical boundaries were obtained from the City of Chicago Data Portal. A combination of Python GeoPandas and TopoJSON Client were used to process (re-project, select features, convert file formats, simplify topology) the initial GeoJSON files.

Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<!DOCTYPE html>
<style>
body {
font: 16px sans-serif;
}
</style>
<body>
<div>
<span style="background-color: lightgreen;">
<input type="checkbox" id="parks-box" value="parks" checked> Parks
</span>
<span style="background-color: lightgreen;">
<input type="checkbox" id="boulevards-box" value="boulevards" checked> Boulevards
</span>
<span style="background-color: #ddd;">
<input type="checkbox" id="corridors-box" value="corridors" checked> Industrial Corridors
</span>
<span style="background-color: darkgreen;">
<input type="checkbox" id="forests-box" value="forests" checked> Forest Preserves
</span>
<span style="background-color: steelblue;">
<input type="checkbox" id="waterways-box" value="waterways" checked> Waterways
</span>
</div>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/topojson.v1.min.js"></script>
<script type="text/javascript">
var margin = {top: 15, right: 20, bottom: 15, left: 20},
outerWidth = 960,
outerHeight = 960,
width = outerWidth - margin.left - margin.right,
height = outerHeight - margin.top - margin.bottom;
var svg = d3.select("body").append("svg")
.attr("width", outerWidth)
.attr("height", outerHeight)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var projection = d3.geoTransverseMercator()
.rotate([88 + 20 / 60, -36 - 40 / 60]);
var path = d3.geoPath()
.projection(projection);
d3.queue()
.defer(d3.json, "chicago.topojson")
.defer(d3.json, "parks.topojson")
.defer(d3.json, "boulevards.topojson")
.defer(d3.json, "industrial_corridors.topojson")
.defer(d3.json, "forestry.topojson")
.defer(d3.json, "waterways.topojson")
.await(ready);
function ready(error, chicago, parks, boulevards, corridors, forests, waterways) {
if (error) return console.error(error);
// start with unit projection
projection
.scale(1)
.translate([0, 0]);
// then translate and scale according to bbox for chicago's boundary
var b = path.bounds(topojson.feature(chicago, chicago.objects.communities)),
s = 0.95 / Math.max((b[1][0] - b[0][0]) / width, (b[1][1] - b[0][1]) / height),
t = [(width - s * (b[1][0] + b[0][0])) / 2, (height - s * (b[1][1] + b[0][1])) / 2];
projection
.scale(s)
.translate(t);
svg.append("clipPath")
.attr("id", "clip")
.append("path")
.datum(topojson.feature(chicago, chicago.objects.communities))
.attr("d", path)
.attr("stroke", "#aaa")
.attr("stroke-width", 3);
svg.append("path")
.datum(topojson.feature(chicago, chicago.objects.communities))
.attr("d", path)
.attr("fill", "none")
.attr("stroke", "#aaa")
.attr("stroke-width", 1);
svg.append("g")
.attr("class", "parks")
.selectAll(".parks")
.data(topojson.feature(parks, parks.objects.parks).features)
.enter().append("path")
.attr("d", path)
.attr("fill", "lightgreen")
.attr("stroke", "lightgreen")
.attr("stroke-width", 1);
svg.append("g")
.attr("class", "boulevards")
.selectAll(".boulevards")
.data(topojson.feature(boulevards, boulevards.objects.boulevards).features)
.enter().append("path")
.attr("d", path)
.attr("fill", "lightgreen")
.attr("stroke", "lightgreen")
.attr("stroke-width", 1);
svg.append("g")
.attr("class", "corridors")
.selectAll(".corridors")
.data(topojson.feature(corridors, corridors.objects.corridors).features)
.enter().append("path")
.attr("d", path)
.attr("fill", "#ddd")
.attr("stroke", "#aaa")
.attr("stroke-width", 1);
svg.append("g")
.attr("class", "forests")
.selectAll(".forests")
.data(topojson.feature(forests, forests.objects.forests).features)
.enter().append("path")
.attr("d", path)
.attr("fill", "green")
.attr("stroke", "darkgreen")
.attr("stroke-width", 1);
svg.append("g")
.attr("class", "waterways")
.selectAll(".waterways")
.data(topojson.feature(waterways, waterways.objects.waterways).features)
.enter().append("path")
.attr("d", path)
.attr("clip-path", "url(#clip)")
.attr("fill", "lightblue")
.attr("stroke", "steelblue")
.attr("stroke-width", 1);
d3.select("#parks-box").on("change", update);
d3.select("#boulevards-box").on("change", update);
d3.select("#corridors-box").on("change", update);
d3.select("#forests-box").on("change", update);
d3.select("#waterways-box").on("change", update);
}
function update() {
checkbox = d3.select(this);
if(!checkbox.property("checked")) {
d3.select("g." + checkbox.property("value"))
.attr("opacity", 0);
} else {
d3.select("g." + checkbox.property("value"))
.attr("opacity", 1);
}
}
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"corridors":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"acres":"329.40910528","name":"Burnside","shape_area":"14349060.6259","hud_qualif":"3","miles":"0.51470173","objectid":"1","region_num":"0","region":"South","no":"4","shape_len":"41694.726115"},"arcs":[[0]]},{"type":"Polygon","properties":{"acres":"253.51474558","name":"Addison","shape_area":"11043102.3173","hud_qualif":"1","miles":"0.39611679","objectid":"2","region_num":"0","region":"North","no":"1","shape_len":"29276.756724"},"arcs":[[1]]},{"type":"Polygon","properties":{"acres":"129.55215464","name":"Ravenswood","shape_area":"5643291.85604","hud_qualif":"1","miles":"0.20242524","objectid":"3","region_num":"0","region":"North","no":"19","shape_len":"26079.48336"},"arcs":[[2]]},{"type":"Polygon","properties":{"acres":"126.44304234","name":"Peterson","shape_area":"5507858.9242","hud_qualif":"1","miles":"0.19756725","objectid":"4","region_num":"0","region":"North","no":"15","shape_len":"15075.530826"},"arcs":[[3]]},{"type":"Polygon","properties":{"acres":"83.68978189","name":"Kennedy","shape_area":"3645526.89932","hud_qualif":"2","miles":"0.13076528","objectid":"5","region_num":"0","region":"North","no":"9","shape_len":"10073.683786"},"arcs":[[4]]},{"type":"Polygon","properties":{"acres":"148.80408415","name":"Knox","shape_area":"6481905.90559","hud_qualif":"1","miles":"0.23250638","objectid":"6","region_num":"0","region":"North","no":"11","shape_len":"31745.856475"},"arcs":[[5]]},{"type":"Polygon","properties":{"acres":"206.018174","name":"Pulaski","shape_area":"8974151.65935","hud_qualif":"2","miles":"0.3219034","objectid":"7","region_num":"0","region":"North","no":"17","shape_len":"29213.392416"},"arcs":[[6]]},{"type":"Polygon","properties":{"acres":"92.65323875","name":"Elston / Armstrong","shape_area":"4035975.07974","hud_qualif":"1","miles":"0.14477069","objectid":"8","region_num":"0","region":"North","no":"6","shape_len":"13041.604677"},"arcs":[[7]]},{"type":"Polygon","properties":{"acres":"760.86089349","name":"North Branch","shape_area":"33143100.5203","hud_qualif":"2","miles":"1.18884515","objectid":"9","region_num":"0","region":"North","no":"13","shape_len":"48015.202916"},"arcs":[[8]]},{"type":"Polygon","properties":{"acres":"410.8590755","name":"Armitage","shape_area":"17897021.3289","hud_qualif":"2","miles":"0.64196731","objectid":"10","region_num":"0","region":"North","no":"2","shape_len":"38740.639525"},"arcs":[[9]]},{"type":"Polygon","properties":{"acres":"420.65796519","name":"Western / Ogden","shape_area":"18323860.9636","hud_qualif":"2","miles":"0.65727807","objectid":"11","region_num":"0","region":"West","no":"24","shape_len":"31553.146363"},"arcs":[[10]]},{"type":"Polygon","properties":{"acres":"1070.19879422","name":"Pilsen","shape_area":"46617859.4765","hud_qualif":"2","miles":"1.67218562","objectid":"12","region_num":"0","region":"West","no":"16","shape_len":"44279.324921"},"arcs":[[11]]},{"type":"Polygon","properties":{"acres":"1252.25960618","name":"Little Village","shape_area":"54548428.4452","hud_qualif":"2","miles":"1.95665563","objectid":"13","region_num":"0","region":"West","no":"12","shape_len":"53060.154803"},"arcs":[[12,13]]},{"type":"Polygon","properties":{"acres":"598.4005664","name":"Roosevelt/Cicero","shape_area":"26066328.6724","hud_qualif":"2","miles":"0.93500089","objectid":"14","region_num":"0","region":"West","no":"20","shape_len":"53441.010102"},"arcs":[[14]]},{"type":"Polygon","properties":{"acres":"1497.80388308","name":"Stockyards","shape_area":"65244337.147","hud_qualif":"3","miles":"2.34031857","objectid":"15","region_num":"0","region":"West","no":"22","shape_len":"60770.650881"},"arcs":[[15]]},{"type":"Polygon","properties":{"acres":"1022.91122233","name":"Greater Southwest","shape_area":"44558012.8444","hud_qualif":"3","miles":"1.59829878","objectid":"16","region_num":"0","region":"West","no":"7","shape_len":"66556.920137"},"arcs":[[16]]},{"type":"Polygon","properties":{"acres":"150.24550271","name":"Harlem","shape_area":"6544694.09788","hud_qualif":"2","miles":"0.2347586","objectid":"17","region_num":"0","region":"West","no":"8","shape_len":"12527.04899"},"arcs":[[17]]},{"type":"Polygon","properties":{"acres":"399.93797723","name":"Brighton Park","shape_area":"17421298.288","hud_qualif":"2","miles":"0.62490309","objectid":"18","region_num":"0","region":"West","no":"3","shape_len":"31793.406207"},"arcs":[[18,19]]},{"type":"Polygon","properties":{"acres":"192.33467881","name":"West Pullman","shape_area":"8378098.60886","hud_qualif":"1","miles":"0.30052294","objectid":"19","region_num":"0","region":"South","no":"23","shape_len":"16439.61881"},"arcs":[[20]]},{"type":"Polygon","properties":{"acres":"4197.0273707","name":"Calumet","shape_area":"182822512.268","hud_qualif":"3","miles":"6.55785527","objectid":"20","region_num":"0","region":"South","no":"5","shape_len":"134394.713971"},"arcs":[[21]]},{"type":"Polygon","properties":{"acres":"1245.3648621","name":"Stevenson","shape_area":"54248093.3925","hud_qualif":"2","miles":"1.9458826","objectid":"21","region_num":"0","region":"West","no":"21","shape_len":"78971.268528"},"arcs":[[-13,22,-19,23]]},{"type":"Polygon","properties":{"acres":"799.61073552","name":"Northwest","shape_area":"34831043.6391","hud_qualif":"2","miles":"1.249329","objectid":"22","region_num":"0","region":"North","no":"14","shape_len":"59138.183062"},"arcs":[[24]]},{"type":"Polygon","properties":{"acres":"48.85039698","name":"Wright Business Park","shape_area":"2127923.29278","hud_qualif":"","miles":"0.0","objectid":"23","region_num":"0","region":"North","no":"26","shape_len":"10676.426684"},"arcs":[[25]]},{"type":"Polygon","properties":{"acres":"831.10484722","name":"Kinzie","shape_area":"36202927.1521","hud_qualif":"","miles":"1.33501594","objectid":"24","region_num":"0","region":"West","no":"10","shape_len":"54084.466702"},"arcs":[[26]]},{"type":"Polygon","properties":{"acres":"692.08221608","name":"Pullman","shape_area":"30147101.3327","hud_qualif":"2","miles":"1.08137846","objectid":"25","region_num":"0","region":"South","no":"18","shape_len":"45704.019933"},"arcs":[[27]]},{"type":"Polygon","properties":{"acres":"142.56530986","name":"Northwest Highway","shape_area":"6210144.88075","hud_qualif":"","miles":"0.0","objectid":"26","region_num":"0","region":"North","no":"25","shape_len":"42463.617773"},"arcs":[[28]]}]}},"arcs":[[[72450,19323],[92,328],[32,119],[39,138],[56,204],[19,65],[27,98],[37,137],[30,104],[34,122],[14,50],[20,72],[39,142],[20,73],[37,133],[102,1],[360,5],[0,-4],[-3,-64],[25,2],[165,12],[63,4],[242,-25],[52,187],[151,2],[12,0],[13,0],[259,3],[144,2],[70,3],[1,-14],[2,-8],[0,-2],[5,-11],[-3,-9],[-1,-3],[-1,-6],[3,-87],[0,-63],[0,-19],[1,-40],[3,-54],[3,-61],[1,-36],[0,-17],[0,-2],[1,-7],[1,-6],[3,-7],[-1,-11],[-4,-39],[-2,-14],[-48,-1],[-100,-1],[-57,-1],[-1,0],[-56,-1],[-12,0],[-20,-1],[-9,-2],[-8,-2],[-28,-7],[-46,-17],[-3,-1],[-13,-5],[-19,-10],[-3,-2],[-3,-2],[-28,-14],[-31,-23],[-6,-5],[-34,-32],[-9,-9],[-34,-34],[-21,-22],[-8,-8],[-6,-6],[-6,-6],[-42,-3],[-37,-12],[-38,-18],[-42,-16],[-44,-14],[-47,-10],[-48,-8],[-48,-5],[-477,-5],[-213,-3],[-172,-2],[-69,-249],[-64,-231],[-79,-281],[209,4],[16,0],[40,1],[153,2],[4,0],[206,3],[179,2],[27,1],[138,2],[68,1],[191,3],[16,1],[102,2],[103,1],[194,2],[12,0],[58,1],[149,1],[166,3],[39,0],[96,1],[111,2],[45,0],[72,1],[69,1],[20,0],[38,1],[167,2],[82,0],[56,1],[68,2],[59,1],[146,1],[209,2],[43,1],[161,3],[1,0],[127,2],[82,2],[53,1],[155,1],[119,1],[21,1],[6,-1],[-3,-6],[130,2],[170,401],[20,48],[62,388],[-13,339],[-10,239],[-10,255],[0,38],[5,40],[9,40],[15,39],[19,39],[23,36],[1,2],[29,36],[33,35],[37,33],[0,39],[150,2],[101,1],[59,0],[69,1],[100,1],[55,1],[39,0],[46,1],[-5,284],[-26,36],[-29,40],[-70,96],[-42,58],[-17,6],[-22,5],[-10,1],[-13,1],[-75,3],[-63,3],[-20,1],[-14,8],[-18,12],[-13,15],[-236,331],[-17,24],[-27,42],[-3,10],[2,9],[0,29],[-108,-3],[-106,-1],[-51,-1],[-1,45],[-2,77],[0,5],[-3,95],[-1,33],[-1,43],[-2,84],[0,25],[-1,70],[2,14],[-3,10],[-1,0],[-6,3],[-5,2],[-23,2],[-172,-1],[-1,0],[-122,-1],[-73,-1],[-10,0],[-1,0],[-2,99],[-4,107],[-3,86],[-3,95],[-2,95],[-1,13],[-1,6],[-3,6],[-2,3],[-1,1],[-6,2],[-24,3],[-166,-2],[-1,0],[-203,-1],[-6,83],[-2,38],[0,5],[-1,13],[-1,40],[0,6],[-1,40],[-3,174],[-3,105],[-4,115],[0,12],[-2,79],[-3,107],[-3,91],[-3,78],[0,13],[0,4],[-4,3],[-2,1],[-4,3],[-8,1],[-15,1],[-30,0],[-59,0],[-21,0],[-65,-1],[-6,0],[-61,-1],[-138,-2],[-1,0],[-132,-1],[-74,-2],[-8,0],[-200,-4],[-4,137],[-4,100],[-4,147],[-40,-1],[-101,-1],[-157,-2],[11,-375],[-65,-60],[-97,-88],[-355,-208],[-130,-76],[-8,-7],[-108,-60],[-18,-27],[-16,-4],[-5,-1],[-10,-7],[-8,-11],[-13,-21],[-13,-22],[-11,-22],[-22,-44],[-1,-2],[-15,-29],[-7,-17],[-4,-21],[-7,-29],[-1,-50],[0,-28],[2,-78],[2,-90],[0,-35],[-1,0],[-97,-1],[-13,0],[-95,-1],[-8,0],[7,25],[128,462],[7,25],[7,25],[413,1485],[7,26],[-1,0],[2,0],[1,0],[153,2],[89,1],[34,0],[84,1],[10,0],[32,1],[269,3],[67,1],[47,0],[38,1],[0,-17],[4,-158],[3,-113],[1,-47],[2,-84],[3,-69],[1,-25],[19,2],[370,5],[25,0],[362,4],[53,1],[71,-2],[425,9],[0,-1],[183,-253],[844,-1169],[70,-97],[4,-6],[23,-32],[70,-96],[247,-343],[36,-50],[331,-459],[36,-50],[64,-88],[5,-7],[241,-334],[1,-27],[1,-45],[0,-5],[1,-30],[4,-153],[1,-19],[45,1],[20,0],[166,2],[208,2],[10,1],[158,2],[123,1],[1,-53],[0,-75],[0,-4],[-1,-9],[0,-78],[6,-67],[1,-8],[24,-175],[8,-35],[14,-58],[5,-97],[3,-56],[0,-1],[0,-5],[0,-9],[0,-1],[0,-1],[2,-32],[2,-48],[0,-3],[0,-12],[1,-12],[0,-14],[1,-18],[1,-21],[0,-12],[1,-18],[2,-45],[1,-98],[2,-65],[4,-89],[2,-77],[1,-21],[3,-59],[3,-35],[-4,-115],[3,-79],[4,-69],[6,-82],[5,-77],[2,-21],[2,-45],[3,-42],[0,-57],[3,-55],[14,-199],[4,-70],[-1,-1],[-33,0],[-43,-1],[-82,-1],[-85,-1],[-371,-5],[-1,-1],[-39,-18],[-38,-18],[-89,-37],[-80,-30],[-126,-41],[-103,-28],[-78,-18],[-58,-12],[-109,-18],[-38,-5],[-36,-5],[-59,-6],[-36,-4],[-29,-3],[-85,-6],[-85,-2],[-50,-1],[-73,-1],[-89,-1],[-76,-2],[-96,-1],[-35,0],[-60,-1],[-53,-1],[-51,-2],[-26,-1],[-28,-2],[-16,-2],[-40,-8],[-24,-7],[-29,-12],[-9,-5],[-18,-11],[-12,-8],[-25,-25],[-9,-11],[-13,-34],[-7,-17],[-219,-3],[-284,-5],[-100,-1],[-65,-1],[-131,-1],[-710,-8],[-115,-2],[-77,-1],[-107,-1],[-99,-2],[-85,0],[-21,0],[-130,-1],[-104,1],[-151,1],[-36,1],[-366,15],[-316,12],[-158,3],[-12,0],[-62,0],[-80,2],[-170,0],[-185,-2],[-217,-3],[-142,-1],[-144,-1],[-68,-1],[-89,-2]],[[38753,83714],[42,0],[105,19],[65,1],[18,22],[56,20],[60,33],[20,1],[18,18],[24,28],[1,1],[21,31],[16,31],[11,33],[6,33],[2,33],[-21,0],[-1,20],[0,13],[156,1],[9,-1],[12,-12],[53,-51],[39,0],[97,0],[1,0],[155,1],[139,0],[114,3],[16,0],[-3,51],[-1,32],[-15,382],[-3,95],[-1,21],[10,0],[68,2],[166,1],[105,0],[78,0],[208,1],[98,0],[25,1],[84,0],[3,0],[147,1],[196,1],[85,1],[51,0],[50,0],[35,1],[59,0],[-4,37],[1,17],[0,15],[-2,15],[-1,6],[-4,13],[-3,12],[-4,14],[0,6],[-4,14],[-4,8],[-4,9],[-4,15],[-3,12],[-2,10],[-1,9],[0,9],[-4,23],[-3,12],[-5,16],[-6,19],[-12,24],[-20,36],[-1,3],[-22,72],[-14,49],[-9,34],[-1,1],[-4,29],[-9,35],[-14,45],[-2,10],[-3,13],[-4,15],[-1,16],[-7,27],[-6,25],[-1,11],[-1,10],[-7,28],[-3,16],[-2,11],[-3,13],[-5,13],[-5,12],[-3,16],[-3,21],[-1,13],[0,14],[-3,12],[-2,12],[8,65],[4,10],[7,12],[0,1],[7,19],[7,13],[9,13],[13,16],[14,26],[11,15],[10,16],[10,14],[11,16],[14,15],[10,12],[11,13],[11,9],[37,49],[7,8],[8,11],[7,12],[6,10],[5,9],[8,16],[7,14],[12,20],[8,10],[7,11],[9,16],[10,13],[9,14],[8,13],[8,10],[10,10],[12,21],[15,22],[5,9],[5,9],[6,10],[5,7],[8,10],[32,37],[46,60],[9,14],[12,10],[22,17],[111,111],[63,72],[32,31],[50,58],[7,10],[7,10],[7,15],[5,14],[6,18],[1,6],[3,14],[3,16],[7,36],[2,8],[1,10],[2,13],[3,15],[-1,12],[1,12],[2,13],[3,14],[5,14],[4,10],[2,13],[0,14],[-1,16],[0,17],[1,8],[1,9],[1,15],[-3,4],[0,19],[-10,9],[5,61],[-2,6],[0,21],[6,7],[6,34],[5,35],[1,12],[1,14],[0,15],[1,7],[2,5],[0,2],[3,12],[0,105],[0,34],[7,47],[2,75],[0,4],[31,7],[-1,25],[1,7],[0,9],[3,9],[-38,8],[1,102],[8,38],[1,15],[0,3],[1,3],[21,0],[113,0],[28,1],[83,0],[42,0],[58,1],[3,0],[43,0],[59,0],[79,1],[13,0],[0,-1],[4,-61],[2,-53],[1,-43],[1,-2],[2,-53],[0,-23],[1,-20],[1,-23],[1,-24],[2,-64],[1,-19],[2,-40],[2,-83],[2,-42],[2,-66],[3,-64],[2,-55],[2,-62],[4,-82],[-41,0],[-60,0],[-97,-1],[-2,0],[1,-32],[4,-91],[0,-3],[0,-14],[-46,0],[18,-506],[829,6],[28,0],[0,-9],[0,-5],[2,-50],[1,-28],[1,-35],[0,-9],[1,-17],[2,-61],[2,-50],[1,-46],[3,-61],[0,-20],[1,-15],[2,-54],[1,-37],[3,-11],[0,-3],[4,-4],[7,-2],[5,-1],[5,0],[32,0],[47,0],[35,1],[58,0],[168,1],[24,0],[2,-15],[1,-10],[9,-257],[8,-215],[0,-19],[-61,0],[-60,-1],[-77,0],[-57,-1],[-118,0],[-30,0],[-1,0],[0,-1],[0,-5],[3,-84],[0,-3],[3,-74],[3,-107],[2,-54],[2,-49],[0,-3],[3,-87],[1,-25],[0,-9],[-90,0],[-29,0],[-234,-2],[-112,0],[-66,0],[-17,-1],[-76,0],[-124,0],[-83,-1],[1,-18],[22,-704],[3,-89],[-300,-2],[-42,-1],[1,-4],[4,-17],[3,-12],[10,-26],[13,-26],[32,-50],[29,-36],[25,-30],[10,-12],[7,-8],[7,-10],[20,-24],[16,-19],[18,-21],[21,-26],[12,-14],[10,-11],[8,-10],[8,-12],[8,-12],[6,-9],[11,-19],[10,-20],[10,-24],[4,-10],[4,-16],[4,-16],[2,-9],[2,-12],[3,-32],[1,-26],[1,-25],[1,-26],[1,-25],[1,-16],[1,-26],[2,-31],[0,-28],[2,-14],[6,-21],[13,-21],[20,-20],[18,-12],[3,-1],[11,-6],[18,-7],[21,-7],[20,-4],[9,-1],[30,-4],[51,-1],[109,1],[83,0],[104,1],[89,1],[98,0],[133,1],[2,-65],[2,-35],[1,-26],[1,-38],[0,-18],[1,-20],[1,-26],[1,-35],[2,-72],[1,-23],[95,1],[67,0],[0,-1],[2,-77],[0,-13],[1,-35],[0,-16],[0,-12],[1,-45],[1,-64],[1,-44],[1,-16],[0,-28],[1,-13],[0,-13],[0,-9],[109,1],[39,0],[82,0],[95,1],[58,0],[118,0],[1,-121],[2,0],[22,0],[62,0],[80,0],[43,0],[2,-44],[1,-19],[2,-64],[1,-44],[1,-42],[0,-43],[1,-34],[0,-10],[0,-16],[0,-19],[0,-10],[1,-59],[0,-25],[1,-39],[1,-19],[1,-51],[1,-16],[1,-30],[1,-13],[2,-98],[3,-78],[1,-78],[1,-56],[1,-22],[2,-93],[-64,0],[-89,-1],[-55,0],[-30,-1],[-100,0],[-82,-1],[-4,0],[-77,0],[-28,0],[-162,-1],[-135,-1],[-4,0],[4,21],[2,14],[1,8],[1,11],[0,20],[0,29],[-2,64],[-45,19],[-573,325],[-47,-1],[-98,0],[-47,-1],[-20,0],[-15,0],[-2,0],[-2,48],[-1,39],[-1,31],[-1,13],[-38,18],[-17,9],[-238,134],[-16,0],[-33,0],[-60,0],[-21,21],[-6,27],[-3,31],[-196,109],[-1,30],[0,20],[-2,25],[-1,35],[0,9],[-3,172],[77,0],[58,1],[68,0],[24,0],[93,0],[16,0],[91,1],[13,0],[173,1],[-1,34],[1,19],[-2,32],[0,16],[-1,14],[-1,4],[-4,17],[-3,8],[-4,13],[-3,11],[-1,3],[-6,17],[-2,5],[-2,12],[-2,9],[0,6],[1,23],[0,1],[18,0],[10,0],[12,0],[72,1],[39,0],[-33,8],[-23,9],[-22,10],[-15,14],[-9,8],[-22,16],[-24,18],[-21,15],[-25,14],[-21,8],[-14,8],[-25,13],[-23,16],[-15,15],[-15,15],[-22,12],[-25,25],[-10,8],[-3,7],[-5,13],[-5,10],[-4,5],[-4,6],[-13,14],[-21,17],[-13,16],[-7,13],[-4,13],[-2,9],[-26,26],[-10,16],[-16,22],[-9,13],[-11,15],[-14,9],[-8,8],[-10,10],[-11,16],[-3,5],[-8,12],[-10,12],[-14,16],[-11,11],[-85,0],[-15,0],[-47,0],[-146,-1],[-435,-1],[-61,-1],[-39,0],[1,-192],[1,-1],[-53,0],[-54,0],[-17,-1],[-13,0],[-10,1],[-5,-1],[-2,-1],[-2,-1],[-1,-3],[-1,-4],[0,-27],[1,-40],[0,-43],[-38,-1],[-176,-1],[-4,121],[-1,20],[-1,36],[-2,53],[-3,106],[-2,58],[-3,64],[-4,91],[-2,52],[0,36],[-1,25],[-1,23],[0,27],[0,2],[-1,0],[-107,-1],[-101,0],[-57,-1],[-101,0],[-15,0],[-55,0],[-190,-1],[-77,-1],[-157,0],[-21,0],[-79,-1],[-285,-1],[-210,-1],[-22,0],[-20,0],[-167,-1],[-6,0],[-135,0],[-1,0],[-70,39],[-94,53],[-23,13],[-2,1],[-29,17],[-66,37],[0,1],[-2,72]],[[46276,94120],[30,14],[22,10],[10,4],[17,8],[28,12],[42,18],[9,3],[32,14],[45,19],[52,22],[40,17],[69,29],[11,5],[60,25],[16,7],[56,23],[32,14],[7,3],[43,18],[32,13],[38,16],[16,7],[23,10],[44,16],[4,1],[8,1],[6,0],[32,-1],[16,-1],[11,48],[1,12],[0,11],[0,10],[0,30],[-1,40],[-1,33],[-1,40],[-1,48],[-1,21],[-1,25],[4,24],[12,14],[5,4],[7,4],[12,4],[9,2],[22,2],[12,1],[27,0],[14,0],[26,1],[28,-2],[13,-2],[41,1],[55,1],[106,-1],[65,1],[21,0],[61,1],[72,1],[10,0],[150,2],[135,2],[78,1],[8,0],[67,1],[111,3],[135,2],[124,1],[98,2],[24,1],[14,0],[1,0],[3,0],[48,1],[17,0],[39,9],[0,-9],[1,-20],[2,-61],[3,-80],[1,-51],[1,-23],[0,-32],[5,-116],[3,-79],[1,-29],[1,-27],[4,-97],[3,-98],[1,-33],[1,-32],[4,-98],[4,-108],[15,-18],[16,-18],[4,-117],[3,-91],[1,-28],[1,-33],[2,-57],[1,-48],[1,-29],[1,-19],[1,-28],[0,-18],[0,-23],[0,-1],[-21,-1],[-6,-7],[-2,-22],[2,-60],[3,-83],[0,-7],[2,-54],[1,-21],[0,-18],[2,-47],[3,-97],[3,-66],[1,-27],[0,-1],[1,-24],[3,-99],[3,-109],[1,-23],[0,-1],[0,-24],[5,-106],[1,-43],[3,-59],[0,-22],[1,-18],[0,-7],[0,-40],[2,-56],[0,-7],[2,-40],[2,-62],[8,-25],[10,-26],[2,-93],[1,-21],[3,-88],[1,-22],[0,-3],[1,-35],[2,-52],[0,-4],[1,-34],[2,-36],[1,-28],[2,-29],[3,-69],[0,-14],[0,-3],[263,3],[6,-202],[2,-77],[4,-103],[3,-106],[3,-87],[2,-78],[1,-33],[2,-30],[1,-2],[1,-25],[2,-53],[0,-11],[3,-99],[2,-66],[4,-118],[1,-38],[2,-81],[1,-18],[0,-2],[1,-15],[3,-82],[4,-144],[4,-126],[0,-3],[4,-139],[0,-21],[2,-74],[1,-13],[3,-117],[4,-110],[2,-72],[2,-49],[1,-37],[1,-17],[0,-4],[1,-9],[3,-89],[0,-2],[4,-135],[5,-141],[3,-75],[1,-32],[0,-23],[1,-21],[1,-42],[3,-60],[4,-120],[3,-81],[2,-46],[9,-243],[0,-19],[4,-100],[4,-111],[3,-87],[3,-79],[0,-3],[-1,-9],[-2,-17],[4,-99],[4,-104],[1,-24],[3,-91],[1,-43],[4,-105],[2,-24],[0,-1],[1,-11],[2,-82],[3,-92],[3,-90],[3,-101],[1,-42],[4,-97],[-274,-4],[-78,-1],[-64,-1],[-230,-2],[-3,136],[24,0],[-4,103],[-3,26],[-3,24],[-4,93],[0,12],[-3,93],[-1,26],[-1,24],[-3,97],[0,5],[0,7],[-28,0],[-5,96],[24,0],[-3,51],[-4,102],[-21,0],[-4,104],[-1,23],[19,0],[0,1],[-1,25],[-5,116],[-8,216],[-6,153],[-8,211],[-5,115],[-6,154],[-1,30],[0,1],[-1,30],[-1,32],[0,12],[-1,27],[-2,38],[-1,39],[-9,-1],[-2,39],[-1,38],[-1,20],[0,19],[-2,38],[-1,19],[0,20],[-2,38],[0,8],[-1,30],[-1,33],[-8,0],[-1,31],[-1,30],[8,0],[-1,32],[-2,39],[-1,38],[-1,39],[-1,17],[10,0],[-1,21],[-1,38],[-2,39],[-1,38],[-1,19],[0,20],[-10,-1],[0,22],[-1,17],[0,10],[-1,28],[-1,33],[-23,31],[-20,29],[-1,33],[-1,4],[-12,0],[-1,11],[0,6],[-2,64],[-3,92],[0,15],[-2,69],[-3,105],[-2,64],[-1,18],[-2,21],[-4,108],[-4,88],[0,11],[0,6],[-1,20],[256,3],[-5,152],[1,0],[-1,12],[-1,33],[-2,59],[0,3],[33,0],[14,0],[-2,30],[-16,482],[-16,481],[-1,26],[0,4],[-1,26],[-7,196],[0,26],[0,2],[-16,0],[-34,-2],[-4,98],[-1,37],[-1,14],[-3,73],[-1,47],[-1,51],[0,15],[-1,7],[-3,34],[0,20],[-1,18],[0,52],[0,41],[-2,25],[-1,58],[-5,176],[18,0],[15,0],[-1,25],[-8,232],[-15,0],[-23,-1],[-49,0],[11,5],[9,10],[2,16],[0,22],[-1,25],[-1,32],[-1,14],[-4,80],[-2,50],[-5,128],[0,2],[-2,37],[-2,89],[0,1],[-1,23],[-3,103],[-1,25],[-3,103],[-47,-1],[-67,0],[-64,-1],[-39,-1],[-158,-2],[-101,-1],[-39,0],[-156,-2],[-166,-2],[-65,-1],[-31,-1],[-49,0],[-126,-2],[-6,0],[-90,-1],[-58,-1],[-71,-1],[-17,0],[-27,-1],[-123,-2],[-1,0],[-19,0],[-96,-1],[-68,-1],[-50,-1],[-90,-1],[-88,-1],[-12,0],[-4,0],[-107,-2],[-72,-1],[-62,0],[-99,-1],[-67,-1],[-2,37],[-1,33],[-2,42],[-1,19],[-1,35],[-2,35],[-2,55],[-2,61]],[[27173,94670],[9,19],[81,163],[53,114],[37,86],[38,97],[18,51],[32,96],[2,6],[31,109],[4,13],[27,114],[22,115],[18,116],[8,72],[2,21],[44,15],[10,3],[20,8],[15,5],[41,14],[3,2],[27,10],[26,10],[74,30],[47,20],[72,29],[95,38],[90,37],[49,19],[65,25],[61,24],[59,23],[45,17],[45,18],[21,10],[2,1],[15,7],[14,9],[17,27],[8,14],[39,43],[17,18],[28,31],[42,46],[60,65],[35,38],[46,50],[41,44],[36,39],[18,21],[37,44],[7,9],[3,3],[12,1],[116,0],[1,0],[-2,95],[0,1],[0,2],[-1,29],[135,1],[56,0],[8,1],[4,0],[2,1],[1,0],[1,1],[0,1],[1,1],[0,2],[0,2],[0,15],[0,16],[-1,51],[0,31],[-1,27],[-1,59],[0,9],[0,36],[10,0],[289,0],[99,108],[47,50],[131,143],[40,43],[1,2],[41,44],[109,119],[36,39],[28,30],[1,1],[23,26],[22,23],[1,2],[24,25],[83,91],[40,44],[0,32],[-1,37],[0,64],[-1,59],[0,54],[-1,53],[-1,35],[199,2],[10,0],[1,26],[-3,201],[244,1],[53,57],[19,21],[39,42],[0,14],[-1,97],[-1,25],[40,0],[93,0],[144,1],[-23,-25],[-587,-634],[-68,-76],[-69,-74],[-43,-47],[-41,-47],[1,-72],[-2,-2],[0,-5],[0,-1],[1,-68],[0,-43],[1,-101],[1,-48],[0,-49],[1,-37],[1,-59],[0,-27],[1,-64],[1,-117],[0,-55],[0,-25],[3,-29],[7,-69],[3,-14],[2,-9],[2,-12],[3,-6],[13,-31],[34,-85],[6,-22],[1,-7],[3,-18],[1,-12],[4,-29],[0,-34],[4,-87],[1,-19],[4,-96],[3,-86],[2,-80],[2,-42],[1,-33],[2,-64],[2,-64],[4,-139],[1,-34],[1,-25],[1,-51],[1,-8],[0,-5],[1,-58],[1,-23],[0,-8],[1,-23],[2,-42],[1,-26],[0,-2],[0,-10],[0,-5],[2,-82],[1,-11],[2,-94],[3,-86],[3,-84],[-1456,-10],[8,-172],[4,-181],[5,-212],[0,-16],[-65,-1],[-87,0],[-60,-1],[-22,0],[-82,-1],[-97,-1],[-59,0],[-86,-1],[-60,0],[-67,-1],[-94,-1],[-56,0],[-76,-1],[-105,0],[-60,-1],[-38,-1],[-55,0],[-70,-1],[-68,0],[-62,-1],[-69,0],[-35,-1],[-27,0],[-15,1],[-9,1],[-18,0],[-18,1],[-11,1],[-9,1],[-4,0],[-14,-1],[-9,0],[-4,0],[-12,-1],[-14,-2],[-14,-1],[-8,-1],[-3,-1],[-14,-1],[-1,0],[-14,-1],[-16,-1],[-11,0],[-13,-1],[-5,0],[-7,0],[-20,0],[-22,2],[-24,-3]],[[34192,84277],[81,-1],[35,1],[18,0],[357,4],[18,0],[16,0],[1,-25],[0,-2],[167,-77],[51,2],[68,-28],[173,1],[11,0],[79,1],[-2,69],[77,1],[-8,247],[-2,46],[0,25],[50,1],[1,0],[139,1],[68,1],[13,0],[77,1],[75,0],[45,1],[1,0],[3,0],[124,2],[80,1],[48,0],[160,2],[1,0],[53,1],[96,1],[18,0],[41,0],[36,0],[114,1],[35,1],[175,2],[0,-25],[1,-61],[2,-68],[3,-82],[2,-51],[38,0],[21,0],[155,3],[-2,-83],[-8,-33],[28,1],[6,-15],[-5,-10],[-8,-13],[-13,-23],[-38,-54],[-120,-127],[21,15],[33,21],[36,18],[39,16],[42,14],[44,10],[45,8],[47,4],[46,2],[246,5],[40,1],[0,-11],[1,-15],[2,-74],[2,-49],[4,-121],[2,-72],[3,-81],[0,-13],[0,-2],[1,-18],[1,-29],[4,-72],[13,-401],[2,-73],[2,-65],[1,-48],[1,-26],[1,-8],[0,-24],[2,-39],[1,-26],[1,-9],[1,-108],[2,-83],[-625,291],[-126,68],[-43,24],[-38,22],[-56,31],[-31,18],[-9,5],[-45,24],[-22,12],[-26,14],[-27,14],[-26,13],[-34,17],[-27,13],[-28,13],[-43,20],[-43,20],[-33,15],[-33,15],[-44,21],[-36,16],[-2,1],[-35,17],[-21,10],[-42,19],[-41,19],[-31,15],[-24,12],[-22,10],[-81,40],[0,-38],[2,-17],[-122,0],[-78,-1],[-39,-1],[-71,-1],[-54,0],[-82,-1],[-28,0],[-47,-1],[-11,0],[-47,1],[-18,1],[-12,1],[-19,3],[-7,1],[-1,0],[-11,3],[-8,2],[-18,6],[-7,3],[-23,11],[-23,10],[-16,7],[-29,13],[-14,7],[-39,18],[-28,13],[-34,17],[-63,41],[-25,19],[-19,14],[-14,11],[-14,11],[-25,19],[-20,16],[-2,2],[-29,24],[-15,13],[-21,19],[-38,37],[-2,2],[-15,16],[-17,20],[-25,28],[-11,12],[-11,13],[-7,11],[-3,5],[-5,14],[-4,21],[-1,28],[0,44],[3,45],[7,8],[4,3],[11,4],[0,44],[-313,146],[-89,138]],[[22829,89521],[229,2],[-3,52],[-1,26],[-1,28],[-4,7],[0,1],[-3,22],[0,25],[-1,49],[-1,29],[0,23],[-3,68],[-3,68],[-1,24],[0,8],[-3,69],[0,9],[0,3],[-8,185],[-3,78],[1,5],[0,14],[-1,13],[0,1],[-3,8],[-2,6],[-4,7],[-2,4],[-24,38],[-11,17],[-8,12],[0,1],[-10,15],[-29,46],[-4,6],[-16,29],[-15,25],[-1,1],[19,0],[48,0],[15,0],[25,1],[22,0],[19,0],[25,0],[40,1],[40,0],[154,2],[159,1],[271,3],[52,0],[1,0],[32,1],[40,0],[6,0],[-1,-264],[6,-143],[4,-97],[0,-8],[8,-188],[2,-38],[2,-57],[4,-78],[2,-54],[3,-56],[5,-42],[2,-20],[6,-15],[23,-41],[21,-39],[18,-34],[27,-43],[31,-47],[22,-34],[40,-62],[12,-21],[16,-28],[6,-26],[-2,-7],[-1,-6],[-8,-11],[22,-19],[5,-5],[193,-162],[101,-86],[289,-135],[296,-138],[64,-30],[1,0],[-10,-1],[-88,0],[-23,-1],[-22,0],[-39,0],[1,-10],[42,-20],[151,-70],[41,-27],[38,-30],[31,-28],[73,-82],[22,-28],[35,-51],[31,-52],[25,-52],[5,-12],[56,-136],[1,-3],[9,-21],[9,-21],[9,-22],[8,-19],[1,-4],[10,-23],[9,-21],[9,-23],[9,-23],[5,-11],[-9,0],[25,-61],[0,-1],[16,-50],[4,-11],[12,-48],[10,-55],[0,-3],[9,-29],[10,-52],[6,-54],[1,-20],[19,-591],[14,-236],[2,-37],[0,-1],[7,0],[31,0],[2,-38],[1,-50],[42,-66],[8,-12],[148,-235],[25,-39],[25,-39],[15,-25],[16,-26],[15,-23],[18,-28],[20,-32],[20,-31],[32,-52],[43,-67],[39,-62],[273,-433],[10,-16],[64,-101],[11,-17],[13,-21],[27,-42],[254,-403],[5,-8],[87,-137],[16,-25],[1,-1],[110,1],[97,1],[221,3],[105,1],[-1,-52],[-4,-52],[0,-23],[1,-4],[1,-43],[2,-53],[2,-66],[0,-85],[0,-63],[0,-8],[1,-20],[1,-19],[2,-22],[5,-44],[2,-36],[1,-53],[6,-133],[5,-43],[4,-40],[-12,-7],[1,-13],[4,-115],[1,-26],[-11,0],[-39,0],[-16,25],[-608,963],[-16,25],[-53,-1],[-73,0],[-59,-1],[4,-127],[-105,-2],[-41,-1],[-49,0],[-16,-1],[-9,0],[-42,0],[-54,0],[-62,-1],[-2,0],[-39,0],[-41,1],[-43,-1],[-49,-1],[-44,0],[-32,-1],[1,-42],[1,-51],[2,-52],[1,-48],[3,-60],[1,-48],[2,-54],[1,-22],[-25,-1],[-168,-1],[2,-56],[4,-89],[4,-95],[1,-50],[1,-6],[1,-29],[1,-43],[0,-33],[3,-112],[60,2],[94,1],[38,0],[81,1],[131,1],[3,-76],[2,-39],[0,-7],[1,-27],[0,-11],[2,-50],[1,-58],[2,-44],[2,-36],[1,-36],[1,-25],[1,-37],[0,-18],[1,-18],[1,-32],[-318,-3],[-102,-1],[1,-3],[-303,-4],[-83,0],[0,-23],[0,-19],[1,-19],[1,-19],[0,-19],[1,-20],[1,-19],[0,-19],[1,-19],[1,-19],[1,-19],[0,-19],[1,-20],[1,-19],[0,-19],[1,-8],[0,-11],[1,-19],[0,-19],[1,-19],[1,-20],[0,-19],[1,-19],[1,-19],[0,-19],[1,-19],[-1,-26],[-47,0],[-82,-1],[-55,-1],[-1,0],[-5,0],[-13,0],[-3,0],[-67,-1],[-97,-1],[-71,-1],[-1,50],[0,32],[-2,51],[-2,76],[-1,21],[-1,36],[-1,33],[-1,18],[-1,34],[0,13],[-1,29],[-1,18],[0,18],[-3,37],[-2,45],[3,0],[26,0],[36,0],[102,1],[180,1],[-2,27],[0,19],[-1,19],[-1,19],[0,7],[0,12],[-1,13],[0,7],[-1,19],[0,19],[-1,7],[0,12],[0,13],[-1,7],[0,19],[-1,19],[0,6],[-1,13],[0,13],[0,7],[-1,19],[-1,19],[0,19],[-1,20],[0,6],[-1,13],[0,13],[0,6],[-1,19],[-1,20],[0,3],[-1,16],[0,7],[0,12],[-1,19],[3,26],[10,0],[22,0],[13,0],[22,0],[-3,46],[0,14],[-2,55],[0,13],[-2,55],[-2,43],[0,4],[-2,49],[-2,47],[-2,57],[-2,58],[-2,42],[-2,54],[-1,42],[-2,32],[-1,23],[1,33],[-1,36],[-2,44],[-2,56],[-1,49],[-1,30],[-1,13],[0,1],[0,8],[0,21],[-1,15],[-1,79],[0,1],[30,0],[131,2],[23,0],[96,1],[6,0],[-1,24],[-4,96],[0,12],[-3,96],[-1,25],[-1,26],[-4,96],[0,12],[-3,96],[-1,25],[-17,0],[0,1],[-3,112],[-1,15],[-1,48],[-2,80],[-1,39],[-2,72],[0,19],[0,92],[-3,37],[-1,13],[-6,66],[-2,25],[0,4],[-1,18],[0,19],[2,30],[6,29],[1,2],[58,-30],[19,-9],[1,-1],[17,-8],[38,-19],[72,-36],[61,-30],[129,-65],[226,-113],[-82,135],[-16,26],[-9,14],[-9,14],[-10,16],[-10,16],[-8,13],[-9,15],[-19,29],[-14,23],[-18,28],[-9,14],[-9,14],[-10,16],[-10,15],[-8,14],[-9,14],[-18,29],[-19,29],[-18,29],[-9,14],[-9,14],[-10,16],[-10,16],[-8,13],[-9,15],[-17,26],[-122,193],[-132,210],[-40,63],[-25,40],[-24,37],[-168,266],[-257,407],[-132,-1],[-63,0],[-62,-1],[-188,-1],[-42,-2],[0,1],[-6,141],[-2,38],[-4,102],[-1,24],[0,7],[-1,14],[-3,82],[-1,26],[-4,88],[-1,39],[-1,61],[-1,51],[0,16],[-81,0],[-48,0],[-61,-1],[-61,0],[-37,0],[-1,36],[-1,24],[-1,32],[-4,32],[-10,25],[-12,22],[-27,43],[-13,24],[-6,17],[-1,1],[-3,20],[-2,23],[-1,33],[-2,31],[-1,19],[-1,18],[-1,28],[0,30],[-1,30],[-1,18],[0,18],[-1,25],[-1,38],[-7,50],[0,1],[46,0],[17,0],[-19,31],[-44,69],[-26,42],[-34,53],[-120,191],[-29,46],[-7,10],[-30,17],[-41,19],[-65,30],[-115,-1],[-23,-1],[-31,-1],[-68,0],[-74,-1],[-132,-1],[-72,-1],[-50,-1],[-87,-1],[-73,0],[-3,0],[-23,-1],[-189,-1],[-2,25],[0,1],[-2,56],[-1,24],[-4,81],[-1,32],[-1,35],[-2,43],[-1,32],[-2,49],[-1,31],[0,3],[-3,15],[-1,6],[-6,3],[-1,23],[-4,52]],[[27851,82421],[108,2],[62,0],[39,1],[40,0],[20,0],[5,0],[13,0],[56,1],[155,2],[84,0],[104,2],[61,0],[142,2],[37,0],[108,1],[5,-128],[2,-47],[1,-23],[2,-57],[5,-127],[3,-78],[0,-6],[0,-38],[0,-7],[-1,-73],[0,-4],[1,-49],[2,-53],[1,-31],[3,-41],[0,-4],[2,-32],[4,-54],[5,-14],[3,-9],[8,-22],[2,-3],[18,-27],[27,-42],[34,-54],[16,-25],[34,-52],[31,-50],[37,-57],[43,-69],[31,-48],[25,-40],[25,-39],[1,-3],[50,-79],[18,-28],[4,-5],[2,-1],[4,-2],[3,-1],[4,0],[6,0],[29,0],[175,2],[212,2],[192,2],[127,2],[122,1],[293,3],[200,2],[16,0],[144,2],[63,-1],[2,-62],[4,-115],[3,-77],[0,-1],[0,-4],[0,-16],[1,-23],[4,-130],[3,-87],[3,-76],[2,-52],[2,-52],[2,-76],[2,-68],[4,-106],[4,-78],[0,-4],[1,-55],[2,-62],[4,-115],[5,-131],[0,-15],[5,-135],[1,-47],[4,-83],[2,-49],[4,-132],[5,-138],[2,-57],[2,-75],[4,-121],[4,-122],[2,-58],[3,-68],[3,-70],[0,-1],[1,-26],[2,-32],[1,-35],[1,-46],[176,0],[33,1],[1,0],[3,-93],[4,-98],[2,-81],[1,-71],[0,-23],[1,-4],[0,-2],[198,2],[1,-25],[4,-122],[0,-6],[0,-3],[2,0],[82,1],[97,2],[27,0],[1,0],[1,-19],[1,-45],[0,-4],[0,-43],[2,-15],[5,0],[5,0],[168,2],[41,0],[0,-1],[0,-10],[1,-5],[3,-87],[4,-130],[-205,-1],[-38,0],[-221,-2],[-14,0],[9,-13],[2,-4],[5,-7],[60,-97],[4,-6],[198,2],[2,-42],[2,-64],[1,-22],[-10,0],[-113,-1],[16,-25],[60,-96],[69,-109],[16,-25],[15,-25],[60,-95],[1,-1],[7,-12],[11,-16],[0,-1],[48,-76],[44,-70],[118,-188],[16,-25],[-8,0],[16,-25],[53,-84],[16,-25],[22,-34],[23,-37],[60,-95],[8,-12],[53,-83],[23,-37],[31,-50],[16,-25],[24,0],[156,1],[26,0],[175,2],[32,1],[2,0],[45,0],[64,1],[58,0],[42,1],[178,1],[28,1],[2,0],[28,0],[3,0],[6,0],[129,1],[43,1],[177,2],[31,0],[1,-30],[4,-109],[0,-10],[4,-99],[5,-144],[3,-72],[1,-5],[-1,0],[-40,0],[-335,-3],[-41,-1],[-6,0],[-2,0],[-14,0],[-20,0],[-157,-2],[-20,0],[-157,-1],[-42,-1],[1,-15],[-262,-2],[-48,75],[-55,89],[-43,66],[-33,52],[-60,95],[-32,50],[-33,54],[-67,-1],[-183,-2],[-38,0],[-37,-1],[-61,0],[-92,-1],[-15,0],[-1,18],[-2,31],[-2,54],[-1,22],[-1,6],[-2,59],[-2,55],[-3,62],[-2,70],[-41,-1],[-135,-1],[-33,0],[-60,0],[-88,-1],[-59,-1],[-38,0],[-115,-1],[-55,-1],[-2,0],[-3,90],[-2,43],[-3,43],[-3,85],[-3,72],[-2,55],[-2,58],[-2,65],[-3,71],[-1,38],[-1,24],[81,1],[151,2],[111,1],[43,0],[0,25],[-3,103],[-112,-1],[-2,104],[-2,25],[-148,-2],[-127,-2],[0,1],[-3,68],[0,13],[0,4],[-3,68],[0,2],[-2,61],[-1,40],[-71,-1],[-135,-1],[0,24],[-5,63],[-2,64],[-1,27],[-3,98],[-3,75],[-2,82],[-3,79],[-1,0],[-76,-1],[-60,0],[-25,0],[-47,-1],[-1,14],[-2,66],[-5,119],[-1,40],[-3,90],[-2,42],[0,1],[-5,140],[-115,-1],[-31,0],[-62,0],[-34,-1],[-87,0],[-89,-1],[-175,-2],[-116,-1],[-27,0],[-99,-1],[-142,-2],[-42,-1],[-79,-1],[-154,-1],[-5,98],[-1,43],[-6,153],[-5,135],[-3,82],[-2,66],[-8,202],[-40,-1],[-158,-1],[-9,0],[0,1],[-1,15],[-5,86],[-85,-1],[-92,-1],[-32,-1],[-4,135],[-46,-1],[-3,0],[-3,0],[-34,0],[-1,32],[-4,96],[0,6],[-40,0],[-7,0],[-69,-1],[-49,-1],[-9,0],[-92,-1],[-55,0],[-11,0],[-1,0],[-2,71],[0,1],[-2,56],[0,1],[-1,28],[-1,31],[-1,33],[-1,10],[-1,24],[-1,35],[-1,13],[0,18],[-1,1],[-2,61],[-3,77],[-1,22],[-1,28],[-2,46],[-3,82],[-2,49],[-1,49],[-2,30],[0,2],[-1,49],[-4,77],[-173,-2],[-144,-2],[-102,-1],[-2,79],[-2,49],[72,0],[7,0],[50,1],[27,0],[52,1],[68,0],[27,0],[15,1],[35,1],[66,1],[85,1],[77,1],[46,0],[74,1],[50,0],[3,0],[80,1],[-4,119],[-3,99],[-7,170],[71,1],[26,0],[99,2],[1,0],[0,1],[-20,30],[-57,90],[-15,25],[-36,57],[-36,57],[-142,225],[-32,50],[-94,150],[-13,20],[-145,229],[-35,56],[-14,23],[-60,0],[-110,-3],[-31,0],[-89,-1],[-8,0],[-1,0],[-108,-1],[-94,0],[-6,0],[-3,75],[-2,54],[-1,11],[-2,43],[-1,26],[-1,25],[0,20],[-1,16],[-2,40],[-2,51],[0,7],[0,5],[-4,82],[-2,52]],[[16844,95306],[1,40],[1,0],[41,0],[188,2],[20,0],[134,1],[77,1],[73,0],[289,3],[311,3],[557,5],[559,5],[28,1],[353,3],[412,4],[134,1],[34,-53],[104,-166],[264,-416],[2,-4],[1,-1],[522,-829],[16,-25],[16,-25],[235,-374],[23,-35],[194,-306],[21,-42],[78,-40],[71,-36],[41,-20],[40,-21],[70,-35],[77,-39],[56,-28],[23,-12],[65,-33],[66,-33],[48,-24],[-26,-20],[-85,-63],[-32,0],[-15,0],[-29,13],[-220,-2],[64,-101],[16,-25],[17,-25],[10,-16],[32,-52],[18,-28],[5,-7],[-89,-1],[-26,0],[-1,0],[-52,0],[-40,0],[-26,-1],[-38,0],[-29,0],[-35,-1],[-24,0],[0,7],[-1,19],[-1,19],[-1,20],[-154,-2],[-42,0],[-1,21],[-1,42],[0,1],[0,32],[-1,24],[-2,57],[0,4],[-1,28],[-1,49],[-1,36],[-2,39],[-2,78],[-2,56],[-2,61],[-2,47],[-1,48],[1,53],[1,4],[0,1],[-5,2],[-83,42],[-60,30],[-13,7],[-61,30],[-94,47],[-85,43],[-35,18],[-58,28],[-61,31],[-20,10],[-51,26],[-24,12],[-93,47],[-56,28],[-26,14],[-56,28],[-42,21],[-32,17],[-47,23],[-57,29],[-33,16],[-40,20],[-14,8],[-8,3],[-31,16],[-42,21],[-45,23],[-48,24],[-49,24],[-41,21],[-15,7],[-53,27],[-27,13],[-38,20],[-63,32],[-83,42],[-42,22],[-34,17],[-16,8],[-43,22],[-68,34],[-60,31],[-55,27],[-1,0],[-54,28],[-87,43],[-30,15],[-62,31],[-16,8],[-83,42],[-51,26],[-55,28],[-29,15],[-59,29],[-69,35],[-78,40],[-33,16],[-64,31],[-38,19],[-45,23],[-46,22],[-38,20],[-84,38],[-6,3],[-40,17],[-1,0],[-41,18],[-38,16],[-48,20],[-51,22],[-4,1],[-48,21],[-57,24],[-65,28],[-35,15],[-39,16],[-49,20],[-69,30],[-17,7],[-33,15],[-56,24],[-52,22],[-50,21],[-36,15],[-49,21],[-12,6],[-52,21],[-26,11],[-58,24],[-15,6],[-49,21],[-28,12],[-33,14],[-4,2],[-47,20],[-2,1],[-49,21],[-49,21],[-86,37],[-1,0]],[[47600,79206],[6,166],[106,-17],[200,-50],[232,-71],[226,-98],[10,-4],[304,-159],[66,-64],[27,-32],[38,-48],[14,-54],[2,-60],[11,-187],[4,-65],[13,-53],[2,-5],[56,-67],[46,-30],[121,-80],[104,-60],[39,-25],[127,-83],[37,-22],[240,-143],[94,-42],[81,-30],[183,-39],[76,-10],[89,2],[23,0],[-42,76],[-46,82],[-42,75],[-22,41],[-87,156],[-17,30],[-14,25],[-14,26],[-7,12],[-115,208],[-17,31],[16,0],[36,1],[10,0],[7,0],[18,0],[104,1],[5,0],[73,1],[43,0],[37,0],[47,1],[183,2],[131,1],[140,2],[1,0],[58,-35],[36,-21],[50,-29],[183,-108],[4,-2],[76,-46],[1,-4],[1,-31],[1,-25],[0,-3],[-5,-16],[-13,-52],[0,-1],[-21,-81],[-11,-42],[-1,-4],[-3,-10],[-5,-20],[-1,-3],[-31,-119],[-45,-171],[-16,-61],[-10,-41],[-1,-1],[-6,-25],[-3,-10],[-6,-27],[0,-14],[0,-1],[88,2],[27,0],[26,1],[18,0],[30,1],[15,1],[61,1],[10,1],[16,0],[7,0],[136,3],[18,1],[95,0],[178,1],[3,-2],[63,-56],[19,-17],[44,-39],[19,-17],[51,-46],[39,-35],[21,-18],[17,-15],[36,-34],[11,-14],[15,-15],[24,-20],[21,-21],[24,-26],[25,-28],[12,-15],[26,-34],[29,-39],[207,1],[179,1],[16,0],[242,1],[-1,51],[0,6],[-1,33],[-1,45],[-2,43],[-1,26],[-7,44],[0,1],[3,27],[3,0],[41,1],[91,1],[45,0],[20,0],[11,0],[6,-7],[13,-9],[31,-19],[27,-16],[19,-12],[69,-40],[-26,-17],[-97,-60],[0,-1],[46,-27],[17,-10],[75,-45],[91,-53],[32,-19],[84,-49],[16,-10],[39,-24],[1,0],[33,22],[56,35],[41,26],[21,13],[30,-18],[57,-33],[42,-25],[26,-16],[85,-51],[35,-20],[0,-1],[82,-48],[64,-38],[42,-24],[1,-28],[2,-36],[-1,-9],[-3,-8],[-2,-3],[-6,-7],[-2,-2],[90,0],[62,1],[71,0],[11,0],[155,0],[41,0],[0,-6],[3,-73],[1,-17],[0,-3],[2,-50],[1,-36],[0,-5],[1,-35],[1,-68],[-3,-17],[-12,-16],[-11,-9],[29,-17],[2,-1],[84,-51],[115,-65],[92,-54],[1,-1],[97,-56],[23,-14],[9,-5],[22,-13],[1,0],[1,0],[27,19],[95,61],[7,5],[18,-11],[6,-3],[45,-27],[18,-10],[66,-39],[61,-36],[7,-5],[109,-65],[3,-1],[32,-19],[49,-29],[62,-35],[39,-23],[17,-10],[46,-27],[33,-19],[29,-17],[41,-24],[77,-44],[46,-27],[68,-41],[32,-19],[-7,-6],[-95,-61],[-29,-19],[-1,-1],[21,-12],[66,-38],[95,-56],[107,-63],[65,-38],[2,-51],[2,-33],[0,-16],[3,-68],[0,-3],[1,-29],[3,-52],[2,-63],[7,-146],[2,-45],[179,2],[13,0],[160,2],[103,1],[21,1],[61,0],[45,1],[181,2],[57,1],[239,-141],[15,-9],[14,-8],[152,-90],[1,0],[-183,-3],[-174,-2],[-124,-2],[-66,-1],[-186,-3],[-124,-1],[-239,-3],[-134,-2],[-145,-3],[-66,0],[-116,-2],[-4,0],[60,-58],[57,-54],[10,-9],[44,-42],[52,-51],[79,-79],[83,-81],[53,-54],[77,-76],[44,-44],[74,-73],[17,-17],[5,-5],[42,-41],[61,-60],[73,-71],[57,-55],[73,-72],[105,-103],[3,-3],[44,-43],[65,-64],[49,-49],[47,-46],[64,-63],[28,-27],[1,-2],[34,-33],[56,-55],[37,-37],[42,-41],[47,-45],[1,-2],[4,-4],[36,-35],[6,-6],[33,-32],[4,-4],[12,-8],[9,-3],[2,-1],[4,0],[228,-239],[119,-124],[0,-1],[-75,-1],[-102,-2],[-6,0],[-289,-2],[1,-3],[4,-6],[2,-4],[12,-16],[58,-76],[157,-142],[45,-40],[24,-22],[83,-72],[27,-24],[46,-29],[41,-26],[7,-5],[18,-12],[20,-13],[64,-43],[22,-16],[51,-38],[153,-129],[174,-144],[11,-9],[7,-11],[247,-368],[28,-53],[19,-35],[108,-134],[102,-147],[35,-42],[36,-42],[57,-40],[62,-44],[68,-170],[4,-51],[2,-33],[8,-112],[6,-128],[10,-196],[2,-29],[0,-9],[2,-28],[2,-20],[0,-14],[2,-20],[1,-21],[15,-38],[5,-6],[7,-6],[21,-21],[57,-28],[8,-7],[3,-3],[16,-18],[11,-17],[24,-33],[26,-29],[19,-9],[25,-9],[20,-8],[32,-12],[19,-7],[93,-45],[17,-12],[30,-19],[30,-20],[49,-25],[42,-21],[56,-38],[53,-39],[19,-16],[12,-10],[14,-13],[24,-23],[7,-6],[36,-27],[21,-18],[57,-40],[23,-22],[17,-18],[20,-25],[22,-26],[22,-27],[26,-54],[5,-6],[-55,-4],[-53,-3],[-14,-1],[-12,0],[-30,-2],[-41,-3],[-45,-4],[-9,-1],[-53,-5],[-56,-5],[-61,-6],[-34,-2],[-57,-4],[-33,-2],[-24,-1],[-17,0],[-37,-1],[32,-39],[6,-7],[9,-10],[21,-19],[0,-1],[13,-9],[65,-48],[29,-19],[2,-2],[49,-40],[11,-9],[15,-12],[113,-121],[39,-42],[2,-2],[43,-47],[74,-79],[50,-54],[20,-22],[28,-30],[1,-1],[-65,-2],[-3,0],[-48,-2],[-16,0],[-112,1],[-15,0],[-59,0],[-78,-1],[-106,0],[-66,-1],[-2,0],[-82,0],[-195,-2],[-116,-1],[-105,-1],[0,13],[-2,75],[2,72],[-1,39],[-1,16],[0,26],[-1,5],[0,21],[-1,39],[0,1],[0,41],[0,7],[-1,14],[0,21],[-1,15],[0,11],[-2,81],[-1,25],[-1,34],[-1,58],[-2,45],[-2,82],[-1,88],[-1,15],[-1,34],[0,14],[-3,4],[-3,5],[-3,2],[-7,4],[-1,0],[-14,4],[-24,1],[-119,-1],[-78,-1],[-50,-1],[-151,-1],[-46,0],[-2,0],[-32,0],[-7,-1],[-158,-2],[-21,0],[-9,7],[-29,24],[-8,6],[-4,4],[-31,25],[-1,1],[-1,1],[-10,8],[-10,8],[-2,2],[0,1],[-1,0],[-30,25],[-11,9],[-9,7],[-4,3],[-24,20],[-11,9],[-20,16],[-10,9],[-13,10],[-19,16],[-2,2],[-10,7],[-9,8],[-1,1],[-17,14],[-6,4],[-25,21],[-1,1],[-14,12],[-36,30],[-1,0],[-18,15],[-5,4],[1,14],[-41,34],[-35,30],[-42,35],[-6,4],[-5,5],[-1,0],[-18,15],[-20,17],[-20,17],[-8,6],[-10,9],[-22,18],[-22,18],[-22,19],[-23,19],[-22,19],[-23,18],[-23,19],[-12,10],[-39,33],[-46,38],[-40,33],[-31,26],[17,1],[2,0],[38,0],[25,0],[31,2],[61,3],[10,2],[12,3],[20,6],[12,2],[25,0],[59,1],[31,1],[-1,9],[0,19],[-1,19],[-1,19],[0,19],[-1,27],[-1,24],[-2,77],[0,14],[-24,0],[-33,-1],[-28,0],[-5,0],[-32,-1],[-33,0],[-33,-1],[-43,0],[1,-21],[2,-62],[1,-29],[0,-4],[-55,0],[-161,-2],[-69,0],[-1,1],[-27,22],[-1,1],[-1,1],[-13,11],[-16,13],[-30,25],[-29,24],[-1,1],[-16,13],[-1,1],[-3,2],[-11,9],[-30,25],[-31,25],[-28,23],[-1,1],[-11,9],[-25,21],[-1,1],[18,0],[28,0],[17,0],[29,0],[-2,31],[0,8],[-1,23],[-1,15],[-2,32],[0,6],[0,6],[-1,13],[0,3],[-1,16],[-1,19],[-1,19],[-1,19],[-1,19],[-126,-1],[-51,-1],[-1,0],[-2,38],[-2,13],[-3,6],[-5,4],[-1,1],[-2,57],[-2,40],[-2,32],[0,10],[-6,132],[-62,29],[-280,-4],[2,-58],[0,-15],[1,-11],[1,-24],[0,-6],[1,-14],[1,-19],[0,-2],[-8,2],[-42,9],[-124,27],[-3,1],[-81,19],[-14,4],[-59,5],[-83,6],[-75,10],[-25,7],[-40,9],[-65,15],[-28,5],[-9,2],[-113,20],[-161,26],[-168,-3],[-12,0],[0,2],[-42,8],[-1,0],[-40,8],[-13,3],[-43,9],[-39,8],[-38,9],[-38,9],[-34,8],[-36,9],[-33,8],[-31,9],[-32,9],[-32,9],[-45,14],[-1,1],[-43,14],[-45,15],[-51,18],[-32,13],[-17,6],[-47,19],[-44,19],[-20,8],[-1,0],[-5,3],[-6,2],[-6,3],[-5,3],[-6,2],[-2,1],[-3,2],[-6,2],[-3,2],[-3,1],[-5,3],[-6,2],[-5,3],[-6,2],[-6,3],[-5,3],[-6,2],[-31,16],[-89,45],[0,1],[-5,2],[-5,3],[-5,3],[-26,14],[-4,3],[-4,2],[-4,2],[-4,2],[-3,2],[-4,3],[-4,2],[-4,2],[-4,2],[-3,3],[-4,2],[-4,2],[-4,2],[-3,2],[-4,3],[-4,2],[-3,2],[-4,3],[-4,2],[-3,2],[-4,2],[-4,3],[-22,14],[-16,10],[-16,11],[-32,22],[-26,18],[-3,2],[-4,3],[-4,3],[-4,3],[-4,3],[-4,3],[-16,11],[-12,10],[-20,15],[-32,26],[-16,13],[-2,2],[-3,2],[-3,3],[-3,2],[-3,3],[-3,2],[-3,3],[-3,2],[-3,3],[-3,3],[-3,2],[-2,3],[-3,2],[-3,3],[-3,2],[-3,3],[-3,2],[-2,3],[-3,2],[-3,3],[-24,22],[-42,42],[-17,17],[-8,9],[-46,52],[-51,62],[-14,19],[-22,31],[-11,16],[-1,2],[-39,62],[-23,41],[-32,65],[-28,66],[-9,28],[-21,68],[-3,12],[-11,46],[-11,69],[-3,38],[-4,39],[-4,115],[0,12],[-3,71],[-1,21],[-3,23],[1,12],[0,26],[-1,72],[-7,72],[-2,15],[-5,29],[-4,23],[-1,5],[-4,18],[-12,53],[-10,35],[-3,12],[-35,88],[-20,46],[-9,23],[-10,21],[-6,12],[-16,27],[-8,13],[-7,11],[-1,3],[-13,23],[-3,5],[-16,24],[-17,23],[-10,13],[-2,3],[-6,9],[-24,26],[-14,15],[-13,14],[-19,23],[-3,4],[-26,29],[-3,2],[-27,28],[-7,7],[-9,9],[-12,12],[-15,14],[-7,7],[-32,29],[-3,2],[-29,26],[-9,7],[-16,14],[-26,21],[-1,0],[-20,16],[-14,12],[-9,7],[-3,2],[-15,12],[-9,8],[-3,2],[-23,19],[-4,3],[-17,14],[-2,2],[-24,19],[-13,11],[-15,12],[-19,15],[-42,31],[-63,46],[-34,25],[-55,49],[-158,165],[-188,240],[-21,25],[-32,0],[-13,25],[-79,103],[-63,84],[-81,76],[-38,34],[-25,24],[-19,21],[6,3],[-12,8],[-12,10],[-17,14],[-25,23],[-24,23],[-33,37],[-24,29],[-40,49],[-36,50],[-38,45],[-46,61],[-37,47],[-39,53],[-31,44],[-26,36],[-29,39],[-39,55],[-21,27],[-24,35],[-26,36],[-36,47],[-23,32],[-20,27],[-26,34],[-23,28],[-29,35],[-23,27],[-23,27],[-70,77],[2,107],[1,30],[2,47],[0,8],[0,7],[1,9],[1,13],[4,45],[2,32],[1,11],[1,22],[0,40],[1,27],[0,17],[-5,18],[-9,23],[-4,12],[-5,11],[-9,24],[-9,22],[-6,16],[-4,9],[-3,7],[-14,48],[-45,0],[-64,0],[-22,0],[-14,-1],[-39,0],[-19,0],[-34,-1],[-143,-2],[-36,0],[-10,-1],[-24,0],[-11,0],[-21,0],[-1,0],[-41,-1],[-12,-1],[-35,25],[-49,33],[-72,43],[-33,18],[-9,5],[-67,35],[-813,380],[-42,20],[-5,3],[-37,17],[-87,41],[-249,116],[-42,19],[-42,20],[-8,4],[-39,18],[-39,18],[-38,18],[-39,18],[-172,81],[-69,32],[-47,22],[-5,2],[-53,25],[-341,160],[78,60],[17,11],[113,84],[28,20],[-27,13],[-14,8],[-80,41],[27,18],[122,84],[8,4],[-39,22],[-84,47],[-42,23],[-67,38],[115,76],[27,18],[1,1],[-45,25],[-44,24],[-21,12],[-48,27],[-3,2],[-1,1],[-113,64],[-110,63],[-63,35],[-1,1],[-163,92],[-12,171],[-8,53],[-8,48],[-5,40],[-3,18],[-18,126],[-7,57],[0,1],[-6,82]],[[7699,76992],[0,1],[51,-15],[1132,-338],[-9,236],[348,4],[-2,40],[-9,300],[-1,49],[-8,265],[-1,34],[-32,81],[64,1],[50,0],[-10,270],[-5,131],[-1,26],[-1,18],[0,32],[45,0],[18,0],[29,0],[69,1],[26,0],[27,0],[15,0],[24,0],[97,1],[35,1],[40,0],[58,0],[6,0],[48,0],[36,1],[68,0],[14,0],[11,0],[10,0],[220,2],[6,-118],[2,-67],[0,-2],[3,-59],[0,-18],[1,-31],[1,-6],[1,-34],[2,-53],[1,-21],[0,-20],[2,-42],[1,-28],[0,-10],[2,-36],[0,-3],[1,-22],[0,-14],[1,-22],[2,-39],[2,-53],[1,-39],[2,-53],[1,-39],[2,-41],[1,-30],[0,-13],[1,-22],[0,-1],[-41,0],[-177,-2],[-8,0],[-1,0],[4,-101],[6,-165],[3,-69],[9,-3],[179,-52],[41,-12],[1,0],[1,-32],[2,-46],[1,-40],[1,-40],[0,-2],[1,-28],[1,-33],[1,-21],[0,-21],[2,-47],[2,-43],[0,-3],[1,-11],[0,-17],[2,-39],[1,-22],[0,-20],[1,-17],[0,-7],[1,-11],[0,-6],[0,-6],[6,-7],[1,-1],[6,-3],[13,-4],[32,-7],[19,-4],[8,-2],[19,-4],[16,-3],[13,-3],[20,-4],[20,-4],[22,-5],[15,-3],[25,-4],[18,-3],[20,-4],[32,-5],[22,-3],[28,-4],[27,-4],[39,-5],[46,-5],[19,-2],[24,-3],[18,-2],[27,-2],[21,-2],[23,-2],[30,-2],[2,0],[21,-1],[20,-1],[32,-2],[22,-1],[28,0],[21,-1],[64,-1],[-2,38],[-1,52],[-1,31],[0,4],[-2,36],[-1,42],[-2,48],[-2,52],[-1,31],[-2,46],[-1,29],[0,24],[-1,11],[0,1],[72,1],[37,0],[61,1],[38,0],[14,0],[84,1],[45,0],[64,1],[84,1],[42,1],[39,0],[45,0],[13,1],[45,0],[150,2],[4,-62],[0,-7],[3,-62],[1,-40],[2,-35],[2,-60],[1,-32],[1,-33],[1,-39],[0,-16],[1,-22],[0,-12],[0,-7],[1,-4],[2,-5],[6,-6],[1,0],[9,-3],[10,-3],[10,-1],[7,-1],[85,-1],[12,0],[6,0],[9,0],[52,1],[0,-15],[43,1],[135,1],[56,9],[85,15],[74,10],[94,16],[83,13],[50,5],[-10,254],[-2,46],[6,-12],[13,-6],[3,-1],[9,-1],[14,-1],[26,0],[58,1],[47,1],[33,0],[44,1],[50,0],[22,0],[92,1],[115,2],[91,1],[95,1],[113,1],[1,0],[148,2],[58,0],[99,1],[111,1],[72,1],[136,2],[30,0],[176,2],[1,0],[94,1],[113,1],[61,1],[146,2],[1,0],[41,0],[83,1],[82,1],[110,2],[100,1],[127,1],[84,1],[99,2],[106,1],[87,1],[34,0],[87,1],[96,1],[111,1],[1,0],[106,2],[26,0],[75,1],[73,1],[98,-1],[38,7],[29,6],[97,1],[82,1],[-5,86],[-5,134],[187,-27],[22,-5],[8,-2],[13,-3],[23,-3],[121,-18],[10,-1],[34,-5],[111,-16],[98,-15],[-1,14],[-6,123],[84,-12],[156,-23],[50,-7],[89,-13],[32,-5],[8,-1],[39,-6],[3,0],[89,-13],[74,-11],[439,-70],[127,-19],[257,-38],[171,-26],[198,-30],[141,-21],[74,-12],[66,-10],[3,0],[61,-9],[15,-3],[18,-2],[325,-49],[100,-15],[91,-14],[140,-21],[89,-14],[1,0],[51,-7],[27,-5],[92,-14],[124,-18],[10,-2],[115,-17],[125,-19],[127,-20],[22,-3],[145,-23],[1,0],[35,-6],[47,-4],[102,-4],[53,-1],[116,-3],[104,-1],[91,-2],[34,-1],[7,0],[4,0],[202,-4],[15,0],[34,0],[9,0],[21,0],[223,1],[193,3],[91,1],[14,0],[12,0],[13,0],[119,1],[95,1],[42,1],[30,0],[1,0],[121,1],[119,1],[140,1],[1,0],[125,2],[6,-126],[-52,2],[-129,-2],[-13,0],[2,-32],[3,-90],[195,3],[1,-10],[0,-10],[3,-52],[1,-66],[3,-74],[5,-2],[102,-32],[54,-18],[4,-1],[43,-18],[20,-11],[12,-7],[14,-13],[25,-25],[22,-23],[23,-24],[9,-9],[18,-16],[22,-16],[21,-10],[13,-4],[11,-1],[3,-1],[11,-2],[18,-1],[22,-2],[98,-10],[96,-9],[82,-9],[54,-7],[19,-3],[30,-4],[46,-13],[29,-9],[29,-9],[-9,-33],[-5,-89],[2,-8],[2,-22],[1,-25],[4,-67],[-130,-2],[-246,-3],[-138,-1],[-1,0],[-187,-2],[-217,-3],[-114,-2],[-120,-1],[-194,-2],[-162,-2],[-39,0],[-35,-1],[-198,-2],[-32,0],[-87,-1],[-161,-2],[-46,0],[-4,102],[-41,0],[-157,-2],[-10,0],[-1,6],[0,8],[-1,5],[-2,3],[-3,2],[-6,0],[-9,0],[-34,0],[-21,0],[-89,-1],[-56,0],[-40,-1],[-36,0],[-102,-1],[-51,0],[-42,-1],[-64,-1],[-72,0],[-98,-1],[-94,-2],[-1,0],[-113,-3],[-51,0],[-64,-1],[-25,0],[-69,-1],[-95,-2],[-207,-4],[-97,-2],[-94,-1],[-18,1],[-19,1],[-92,-1],[-135,-2],[-97,-1],[-75,0],[-69,-1],[-51,-1],[-42,-1],[-85,-1],[-63,0],[-106,-2],[-1,24],[-3,67],[-5,107],[-2,52],[-6,127],[-100,-1],[-15,0],[-64,0],[-74,-1],[-190,-3],[-60,-1],[-195,-2],[-134,-1],[-75,0],[-139,-2],[-60,-1],[-80,-1],[-44,-2],[-5,-1],[-16,1],[-1,0],[-17,0],[-55,0],[-65,0],[-69,-1],[-52,0],[-65,-1],[-32,0],[-15,0],[-9,-1],[-2,-1],[-48,0],[-1,0],[5,-126],[13,-373],[-1,-49],[2,-52],[-195,-2],[-316,-3],[-160,-2],[-6,0],[-141,-1],[-225,-2],[-251,-3],[-130,-1],[-168,-2],[-33,-1],[-1,0],[-137,-1],[-65,-1],[-198,-2],[-5,101],[-5,90],[-2,52],[-3,74],[-5,108],[-2,51],[-213,-3],[-64,0],[-150,-2],[-104,-1],[-109,-1],[-62,-1],[-151,-2],[-214,-2],[-214,-3],[-5,107],[-1,30],[-9,0],[-278,-3],[-16,0],[-117,-1],[-132,-1],[-50,-1],[-1061,-10],[-276,-3],[-59,-2],[-1,0],[-8,3],[-11,1],[-4,0],[-11,0],[-18,0],[-15,0],[-24,-1],[-34,-2],[-52,-2],[-15,0],[-21,0],[-37,-1],[-60,-1],[-1,0],[-58,-1],[-36,-1],[-28,0],[-39,-1],[-31,0],[-37,-1],[-17,0],[-10,0],[-30,0],[-31,0],[-27,0],[-110,-2],[-2,0],[-98,-1],[-46,0],[-46,-1],[-36,0],[-50,-1],[-5,0],[-27,0],[-62,-2],[-48,0],[-34,-1],[-33,-1],[-77,-1],[-3,0],[-74,-1],[-20,-1],[-50,0],[-46,-1],[-58,0],[-28,-1],[-2,0],[-30,0],[-107,-2],[-46,0],[-93,-1],[-53,0],[-58,-1],[-18,1],[-22,1],[-48,0],[-79,-1],[-58,-1],[-52,0],[-46,0],[-54,-1],[-69,0],[-47,0],[-27,-1],[-45,-2],[-37,0],[-74,-1],[-48,-1],[-19,0],[-94,-1],[-63,-1],[-102,0],[-1,31],[0,6],[-2,35],[-2,29],[-2,56],[-2,33],[-2,39],[-2,46],[-1,24],[0,31],[-1,29],[-2,47],[0,25],[-1,19],[-1,34],[-1,10],[-1,6],[-8,7],[-4,3],[-1,1],[-2,0],[-12,3],[-12,1],[-4,0],[-19,-1],[-18,0],[-20,0],[-70,-2],[-42,-1],[-8,0],[-69,-1],[-44,-1],[-82,0],[-101,-1],[-70,0],[-38,-1],[-31,0],[-51,-1],[-38,0],[-89,-1],[-113,-1],[-44,-1],[-44,0],[-9,0],[-54,-1],[-51,-1],[-102,0],[-87,-1],[-38,-1],[-69,0],[-10,-1],[-41,0],[-63,-1],[-6,0],[-53,0],[-50,-1],[-2,37],[-1,35],[-1,33],[-1,22],[-1,15],[-2,45],[-1,28],[-1,23],[-2,37],[-2,51],[-1,33],[-1,30],[-1,30],[-1,37],[-2,54],[-2,40],[-1,25],[-1,30],[-1,31],[0,2],[-2,43],[0,12],[-1,24],[-2,54],[-1,30],[-1,31],[-1,22],[-1,39],[0,4],[-1,20]],[[41499,63241],[206,1],[0,26],[-1,15],[94,1],[64,0],[55,1],[2,0],[52,0],[64,1],[52,0],[66,1],[17,0],[28,0],[46,1],[88,0],[-1,33],[-3,74],[-1,20],[0,1],[-2,50],[-1,30],[-1,36],[-1,11],[0,1],[-1,30],[-1,77],[-1,19],[0,1],[-3,45],[-1,35],[-1,35],[-1,12],[-1,27],[0,16],[-1,36],[-1,48],[-1,19],[-2,60],[-1,38],[0,9],[-1,39],[-2,47],[-1,23],[-8,19],[-1,1],[134,1],[87,0],[22,1],[57,0],[76,1],[82,1],[94,1],[111,0],[69,1],[21,0],[7,-228],[5,-149],[4,-107],[2,-51],[6,-204],[1,-25],[62,1],[21,0],[14,0],[15,0],[22,1],[4,0],[40,-2],[99,1],[128,1],[18,1],[95,1],[139,2],[68,0],[58,1],[108,1],[50,0],[14,0],[1,0],[0,-30],[3,-80],[1,-17],[0,-1],[0,-21],[2,-43],[2,-62],[0,-1],[1,-43],[1,-39],[2,-44],[0,-2],[0,-10],[2,-47],[2,-70],[0,-1],[1,-31],[3,-69],[1,-26],[0,-1],[1,-27],[1,-50],[2,-50],[0,-2],[1,-43],[2,-45],[1,-37],[0,-2],[0,-4],[2,-49],[2,-46],[1,-26],[1,-45],[2,-65],[0,-10],[2,-41],[2,-94],[112,1],[17,1],[145,1],[165,1],[97,1],[62,0],[40,0],[14,0],[57,1],[122,1],[2,-56],[0,-1],[0,-4],[0,-3],[2,-109],[2,-39],[1,-52],[0,-7],[3,-64],[5,-144],[1,-29],[0,-1],[1,-9],[1,-35],[2,-61],[1,-2],[0,-1],[5,-112],[0,-58],[0,-7],[133,-8],[110,-8],[75,-6],[92,-9],[63,-8],[123,-15],[91,-12],[110,-17],[83,-18],[158,-15],[1,-1],[20,-9],[53,-18],[53,-18],[53,-17],[83,-14],[122,-11],[215,-21],[41,0],[42,1],[94,1],[563,6],[95,2],[41,0],[42,0],[375,5],[282,3],[82,1],[13,0],[38,1],[0,23],[170,3],[150,2],[137,2],[45,0],[66,1],[156,1],[113,2],[81,1],[66,0],[118,2],[85,1],[90,1],[79,1],[48,1],[23,0],[116,2],[128,1],[1,0],[2,-80],[2,-47],[0,-23],[2,-42],[2,-62],[2,-47],[1,-52],[1,-26],[1,-29],[5,-62],[0,-35],[0,-2],[4,0],[215,2],[104,2],[38,0],[117,2],[130,2],[24,0],[5,0],[14,0],[11,0],[9,0],[92,1],[69,1],[0,-1],[1,-31],[3,-91],[0,-12],[1,0],[42,0],[30,0],[30,1],[30,0],[30,0],[30,1],[30,0],[30,0],[30,1],[30,0],[30,0],[30,1],[30,0],[31,0],[30,1],[30,0],[30,0],[30,0],[30,1],[30,0],[20,0],[0,-3],[160,2],[40,0],[22,0],[0,-3],[2,-39],[1,-48],[0,-10],[0,-6],[3,-107],[2,-45],[0,-7],[3,-87],[1,-26],[0,-1],[-22,0],[-55,-1],[-157,-1],[-444,-5],[-135,-1],[-41,0],[-1,0],[-88,-1],[-73,0],[-8,0],[-15,-1],[-10,0],[-5,0],[-146,-1],[-33,0],[-8,-1],[-264,-3],[-134,-2],[-48,-1],[-1,0],[-67,-2],[-125,-2],[-114,-1],[-112,-1],[-241,-2],[-147,1],[-29,0],[-1,0],[0,1],[-110,-1],[-724,-8],[-1,-19],[5,-102],[0,-2],[-41,-7],[-749,-132],[-41,-1],[-208,-2],[1,-37],[-587,-6],[-41,-1],[3,-94],[-1,0],[2,-91],[2,-33],[-49,-1],[-703,-6],[-80,-2],[-59,-2],[-106,-2],[-91,-1],[-60,-1],[-36,-3],[-52,-7],[-109,-19],[-109,-20],[-147,-27],[-66,-12],[0,-3],[4,-24],[2,-6],[0,-1],[0,-4],[0,-3],[0,-1],[0,-10],[3,-83],[1,-34],[2,-71],[2,-55],[0,-2],[2,-96],[1,-35],[-50,2],[-175,-2],[-186,-2],[-163,0],[-183,0],[-26,0],[-112,-2],[0,-5],[13,-385],[-45,-1],[-30,0],[-31,0],[-30,-1],[-30,0],[-30,0],[-30,-1],[-31,0],[-30,0],[-30,-1],[-30,0],[-30,-1],[-31,0],[-30,0],[-30,-1],[-30,0],[-282,-3],[0,12],[-1,8],[0,6],[0,2],[-1,27],[-2,44],[-1,33],[-2,55],[-2,53],[-1,18],[-2,0],[-108,-1],[-31,0],[-41,-1],[-47,0],[-35,0],[-36,-1],[-41,0],[-41,-1],[-54,0],[-47,-1],[-45,-1],[-31,-1],[-11,0],[-46,-1],[-43,0],[-56,-1],[-124,-1],[-2,28],[0,42],[-1,22],[-4,35],[0,1],[-2,18],[-1,4],[0,6],[0,20],[0,5],[1,14],[0,19],[0,14],[0,21],[-2,56],[-1,33],[2,23],[-5,60],[0,3],[-2,53],[-1,28],[-1,3],[0,24],[-2,43],[0,4],[-2,57],[-2,43],[-2,58],[-2,34],[0,1],[-3,74],[-1,20],[-1,28],[-1,39],[-2,57],[-1,24],[0,4],[-1,16],[-2,56],[0,1],[3,57],[0,1],[1,24],[1,20],[-1,38],[-2,47],[-1,39],[-1,33],[-2,52],[81,1],[70,1],[76,1],[113,2],[30,0],[53,1],[184,2],[-4,128],[-101,-1],[-37,-1],[-13,0],[0,6],[-3,96],[-1,25],[25,0],[105,1],[18,0],[3,0],[89,1],[134,2],[2,0],[0,1],[0,35],[-2,60],[0,27],[-1,21],[-3,47],[-2,41],[-2,59],[-1,54],[0,6],[-2,60],[0,26],[-4,63],[-3,40],[-2,40],[-1,17],[-2,21],[-2,72],[0,1],[-44,0],[-51,-10],[-101,-31],[-7,304],[-226,-2],[-2,39],[-1,28],[-1,51],[-2,52],[-1,43],[-3,73],[1,37],[1,54],[-2,55],[-1,18],[-1,36],[-1,84],[0,1],[-88,-1],[-124,-1],[-87,-1],[-29,0],[-95,-1],[-2,0],[-97,-1],[-108,-1],[-116,-1],[-112,-1],[0,1],[-14,20],[-2,3],[-2,31],[0,50],[0,2],[-1,51],[-2,52],[-1,63],[-2,36],[0,5],[-1,61],[-2,47],[0,12],[-2,75],[-2,87],[-2,48],[0,2],[0,17],[0,4],[-1,11],[0,12],[0,11],[-1,59],[-29,0],[-12,0],[-122,-1],[-19,-1],[-7,0],[-3,0],[-10,0],[-45,0],[-71,-1],[-40,1],[-41,1],[-2,0],[0,29],[-2,51],[-1,42],[-2,50],[-2,54],[0,32],[-2,60],[0,3],[0,1],[1,0],[-1,22]],[[45100,56068],[4,0],[14,3],[86,25],[102,32],[91,29],[120,38],[171,54],[66,20],[174,55],[252,79],[108,34],[199,62],[20,6],[27,9],[87,27],[133,42],[142,45],[105,33],[3,1],[50,15],[57,18],[91,29],[58,18],[16,5],[90,29],[215,67],[88,28],[100,31],[97,31],[129,40],[145,45],[267,84],[1,1],[138,43],[22,7],[31,10],[266,84],[162,52],[1,0],[17,5],[12,4],[178,57],[1,0],[138,43],[124,39],[96,30],[92,29],[376,120],[2,0],[4,1],[44,15],[222,70],[67,21],[255,81],[233,74],[1,0],[395,126],[52,15],[303,87],[18,8],[41,19],[1,1],[21,18],[3,3],[88,2],[23,0],[162,3],[154,3],[92,2],[303,4],[299,4],[207,2],[330,5],[-5,126],[-1,14],[-4,111],[-3,111],[0,5],[-5,115],[-1,29],[2,0],[60,0],[118,2],[6,0],[457,6],[80,1],[113,1],[1,0],[209,4],[55,0],[48,1],[105,1],[60,1],[148,2],[97,1],[82,0],[29,0],[3,-75],[1,-32],[0,-2],[3,-34],[0,-1],[194,3],[75,1],[89,1],[58,1],[55,1],[43,0],[21,1],[117,1],[161,2],[175,3],[106,0],[96,1],[341,5],[100,1],[24,0],[439,6],[180,2],[83,1],[139,2],[39,0],[119,1],[95,1],[25,1],[153,1],[117,1],[20,1],[63,0],[11,1],[0,-1],[1,-25],[2,-37],[0,-18],[1,-6],[0,-5],[0,-10],[1,-17],[1,-32],[2,-34],[2,-37],[1,-41],[1,-25],[2,-78],[75,2],[117,1],[3,0],[97,2],[20,0],[73,1],[24,0],[25,0],[10,0],[36,1],[42,0],[3,0],[14,0],[34,1],[11,0],[5,0],[50,0],[37,1],[18,0],[21,0],[8,0],[22,0],[45,0],[-3,163],[6,36],[18,50],[19,46],[56,102],[25,39],[21,0],[10,1],[41,0],[75,1],[93,0],[-4,93],[0,13],[0,6],[-1,18],[0,1],[-1,17],[26,0],[127,2],[11,0],[11,0],[120,1],[29,0],[0,1],[0,6],[0,30],[-1,38],[-1,11],[-1,27],[-1,36],[-1,16],[-2,59],[-1,22],[980,12],[-1,70],[-1,32],[-3,95],[0,19],[-7,99],[-1,13],[-3,37],[-1,48],[-5,135],[-146,-2],[-162,-2],[-4,96],[-1,12],[-1,28],[-3,58],[-3,72],[-1,37],[-1,27],[-3,56],[-2,66],[-2,51],[-2,50],[-4,107],[149,0],[159,2],[105,2],[247,3],[101,0],[313,-2],[166,6],[68,2],[508,15],[150,4],[228,7],[2,-209],[-19,-48],[-74,-85],[-5,-9],[-101,-190],[-12,-91],[-10,-43],[-56,-139],[-59,-80],[-227,-181],[-292,-181],[1,-144],[0,-5],[1,-41],[4,-135],[0,-27],[3,-90],[8,-344],[-134,-8],[-19,0],[-1,0],[-102,-2],[-44,-1],[-4,0],[-44,0],[-35,0],[-16,0],[-20,0],[-40,-1],[-75,-1],[2,-60],[0,-16],[1,-41],[1,-38],[1,-11],[0,-2],[1,-36],[0,-7],[1,-33],[0,-7],[3,-67],[1,-24],[4,-134],[-80,-31],[-77,-31],[-121,-48],[-11,-4],[-101,-41],[-5,-3],[-58,-28],[-58,-46],[-124,-86],[-41,-25],[-37,-19],[-43,-20],[-151,-72],[-92,-40],[-87,-34],[-196,-79],[-57,-23],[-52,-18],[-61,-22],[-55,-17],[-73,-22],[-24,-7],[-27,-6],[-198,-45],[-203,-48],[-77,-25],[-51,-19],[-53,-20],[-19,-8],[-2,-1],[-23,-10],[-36,-16],[-80,-31],[-102,-42],[-120,-46],[-106,-45],[-28,-12],[-105,-44],[-101,-33],[-103,-42],[-1,0],[-56,-23],[-2,-1],[-127,-51],[-132,-53],[-20,-8],[-4,-1],[-39,-16],[-15,-6],[-99,-41],[-74,-29],[-48,-19],[-36,-15],[-124,-48],[-41,-17],[-44,-17],[-103,-40],[-80,-31],[-13,-5],[-21,-8],[-12,-5],[-33,30],[-19,18],[-9,8],[-24,21],[-22,21],[-6,5],[-13,11],[-5,5],[-19,19],[-5,5],[-57,55],[-1,1],[-52,51],[-4,5],[-5,4],[-59,53],[-9,8],[-24,21],[-23,20],[-19,18],[-9,8],[-8,3],[-3,1],[-6,1],[-8,-1],[-13,-3],[-21,-6],[-100,-41],[-57,-20],[-19,-5],[-20,-3],[-7,-1],[-13,0],[-13,1],[-15,3],[-14,7],[-9,5],[-14,13],[-22,18],[-30,32],[-14,14],[-17,15],[-16,12],[-23,6],[-11,3],[-12,1],[-16,-3],[-14,-4],[-25,-11],[-17,-7],[-12,-5],[-36,-12],[-5,-2],[-28,-11],[-27,28],[-48,18],[-28,5],[-20,2],[-1,0],[-32,-2],[-179,-16],[-1,0],[-108,-9],[-50,-4],[-150,-13],[-171,-14],[-19,-1],[-15,-2],[-109,-8],[-13,-2],[-40,-6],[-13,-3],[-8,-2],[-12,-2],[-28,-13],[-68,-25],[-56,-25],[-59,-27],[-52,-23],[-74,-33],[-140,-63],[-97,-44],[-1,0],[-11,-5],[-143,-64],[-129,-58],[-34,-15],[-124,-56],[-138,-63],[-56,55],[-67,106],[-32,53],[-3,6],[-13,23],[-13,23],[-16,30],[-18,35],[-2,-1],[-293,-137],[-168,-68],[-134,-54],[-123,-45],[-193,-69],[-53,-27],[-59,-32],[-37,-55],[-11,-27],[-133,-336],[-22,-30],[-75,-104],[-122,-170],[-6,-27],[11,-27],[32,-78],[67,-99],[25,-37],[11,-27],[4,-65],[-10,-117],[-2,-31],[-1,-5],[10,-91],[43,-72],[9,-14],[34,-52],[6,-9],[71,-87],[4,-5],[3,-3],[-82,-37],[0,-1],[-50,-23],[-115,-54],[-38,-19],[-123,-61],[-78,-40],[-1,0],[-10,-5],[-85,-41],[-11,289],[-70,-13],[-67,-15],[-64,-21],[-70,-22],[-70,-34],[-63,-32],[-47,-24],[-60,-29],[-54,-26],[-72,-30],[-57,-5],[-136,-1],[-106,-9],[-71,-17],[-108,-52],[-103,-61],[-86,-50],[-65,-44],[-56,-25],[-43,-12],[-53,-6],[-114,-4],[-825,-12],[-342,-5],[-317,-5],[-132,-2],[-47,-1],[4,-16],[0,-64],[6,-163],[0,-7],[-71,-1],[-83,0],[-160,-1],[-86,-2],[-81,-1],[-222,-2],[-126,-1],[-17,0],[-178,-2],[-31,0],[-97,-1],[-106,-1],[-42,0],[-137,-1],[-56,-1],[-88,-3],[-6,0],[-121,-30],[-48,-12],[-64,-17],[-103,-26],[-40,-10],[-52,-13],[-156,-38],[-68,-16],[-140,-36],[-16,-4],[-110,-28],[-78,-21],[-42,-10],[-98,-25],[-52,-14],[-183,-46],[-113,-29],[-2,-1],[-43,-11],[0,2],[0,47],[-1,132],[-3,77],[0,27],[-1,21],[-1,30],[-1,31],[-1,11],[0,19],[-1,28],[-8,74],[-17,70],[-11,41],[-5,21],[-4,11],[-14,44],[-5,12],[-30,97],[-22,71],[-9,30],[-8,25],[-5,15],[-11,38],[-20,70],[-13,42],[-10,31],[-24,106],[-2,85],[0,2],[-1,30],[-1,40],[-1,15],[-7,211],[-7,202],[-3,98],[-8,204],[-7,218],[0,23],[-2,28],[-7,90],[-4,58],[-9,126],[-12,151],[0,1],[-1,14],[-2,18],[0,5],[0,2],[0,4],[-1,3],[0,14],[-1,14],[-2,26],[-1,19]],[[44168,53112],[-46,-12],[-36,-12],[-94,-25],[-209,-54],[-189,-48],[-34,-9],[-77,-20],[-113,-29],[-217,-56],[-33,-9],[-97,-25],[-76,-19],[-111,-29],[-107,-27],[-20,-5],[-92,-24],[-111,-28],[-125,-32],[-112,-29],[-146,-38],[-110,-29],[-12,-3],[-91,-23],[-25,-7],[-29,-8],[-101,-26],[-4,-1],[-126,-34],[-86,-23],[-135,-36],[-95,-26],[-246,-66],[-116,-31],[-23,-6],[-110,-29],[-398,-94],[-102,-26],[-57,-15],[-74,-19],[-136,-35],[-103,-26],[-104,-27],[-98,-25],[-90,-23],[-94,-24],[-75,-20],[-45,-12],[-469,-127],[-91,-21],[-105,-24],[-103,-26],[-94,-24],[-101,-26],[-59,-15],[-87,-23],[-107,-28],[-139,-36],[-108,-28],[-134,-34],[-32,-8],[-23,-6],[-67,-18],[-134,-35],[-86,-22],[-126,-32],[-139,-36],[-118,-31],[-130,-33],[-73,-19],[-63,-16],[-120,-31],[-293,-75],[-121,-30],[-87,-23],[-115,-30],[-26,-6],[-148,-39],[-131,-34],[-5,-1],[-280,-73],[-230,-60],[-27,-7],[-8,-2],[-16,-4],[-6,-1],[-220,-57],[-126,-32],[-44,-12],[-98,-25],[-77,-20],[-144,-38],[-132,-35],[-43,-12],[-571,-145],[-196,-50],[-164,-42],[-363,-94],[-277,-72],[-85,-22],[-112,-29],[-100,-26],[-347,-89],[-15,-4],[-99,-26],[-89,-23],[-91,-23],[-70,-18],[-114,-30],[-65,-16],[-61,-16],[-73,-19],[-102,-26],[-131,-35],[-145,-37],[-63,-17],[-57,-14],[-135,-35],[-105,-27],[-425,-110],[-356,-91],[-72,-19],[-149,-39],[-134,-35],[-161,-42],[-156,-39],[-126,-33],[-183,-47],[-134,-35],[-122,-32],[-144,-37],[-65,-17],[-86,-22],[-13,-4],[-166,-43],[-138,-37],[-136,-33],[-9,-3],[-418,-109],[-540,-137],[-52,-14],[-133,-34],[-131,-33],[-102,-24],[-199,-44],[-110,-23],[-132,-26],[-134,-24],[-65,-12],[-113,-20]],[[25819,48420],[-135,-26],[-60,-13],[-125,-28],[-44,-12],[-122,-32],[-3,0],[-133,-40],[-116,-28],[-117,-40],[-61,-16],[-34,1499],[426,4],[55,0],[20,1],[43,0],[601,7],[70,1],[37,0],[716,9],[119,1],[-31,0],[31,0],[15,0],[41,1],[-1,36],[-7,261],[-25,1001],[-1,34],[-1,44],[-17,669],[-11,360],[-1,38],[-2,94],[-13,448],[-2,76],[-13,448],[-14,465],[-3,113],[-38,1025],[-6,177],[786,7],[6,-175],[20,-512],[3,0],[116,1],[93,1],[2,-31],[0,-35],[1,-24],[0,-23],[1,-24],[1,-26],[1,-22],[1,-25],[0,-16],[2,-33],[1,-25],[1,-28],[1,-25],[1,-20],[1,-28],[0,-7],[-31,0],[-32,0],[-31,0],[-31,-1],[-41,0],[-43,0],[-2,-23],[-3,-44],[-9,-56],[60,0],[40,0],[100,1],[74,1],[111,1],[128,1],[125,1],[125,1],[16,0],[28,0],[38,1],[3,0],[101,1],[131,1],[110,0],[70,1],[137,3],[91,0],[3,0],[0,-25],[2,-85],[1,-11],[0,-12],[-7,0],[-5,-3],[1,-16],[0,-20],[1,-19],[0,-19],[1,-19],[0,-19],[1,-20],[0,-19],[1,-19],[0,-19],[1,-19],[0,-20],[1,-19],[0,-19],[1,-19],[0,-20],[1,-19],[0,-24],[1,-31],[0,-20],[1,-19],[0,-19],[1,-19],[0,-20],[1,-19],[0,-19],[1,-20],[0,-19],[1,-20],[0,-19],[1,-19],[0,-20],[1,-19],[0,-19],[1,-20],[0,-19],[1,-19],[0,-20],[1,-19],[0,-19],[1,-20],[0,-19],[1,-19],[0,-19],[0,-15],[1025,18],[10,0],[6,-3],[9,-3],[13,-2],[18,-2],[53,1],[56,0],[45,1],[8,0],[71,0],[127,2],[66,0],[141,4],[205,5],[2,-5],[0,-7],[21,0],[21,0],[372,4],[379,4],[33,1],[3,0],[-1,12],[207,4],[12,0],[33,0],[21,1],[63,1],[84,1],[2,0],[67,1],[52,1],[30,0],[49,1],[4,0],[4,0],[58,0],[57,0],[90,1],[52,0],[101,0],[55,1],[22,1],[65,1],[122,2],[69,1],[65,1],[71,0],[3,0],[87,1],[80,1],[41,1],[2,0],[80,1],[71,3],[58,2],[7,1],[71,1],[52,1],[76,0],[54,1],[66,0],[88,1],[-1,14],[0,19],[-1,22],[0,29],[-1,25],[0,11],[-1,6],[0,4],[0,20],[12,0],[159,2],[41,0],[-2,48],[42,0],[165,1],[-1,58],[-1,39],[209,3],[-2,32],[-1,33],[-1,42],[-2,36],[0,27],[-2,35],[-1,26],[-1,53],[-2,42],[-1,40],[-2,37],[-1,38],[-1,39],[-2,50],[-1,42],[-1,17],[-1,39],[-1,27],[-2,62],[103,1],[105,2],[27,0],[104,2],[76,1],[1,0],[105,2],[103,1],[22,0],[99,2],[40,1],[47,0],[209,4],[208,3],[9,0],[61,1],[93,1],[45,1],[37,1],[93,1],[78,1],[42,0],[46,1],[120,2],[7,0],[100,2],[99,1],[3,0],[90,1],[87,1],[18,1],[12,0],[93,1],[5,0],[85,2],[24,0],[2,0],[110,1],[37,1],[90,1],[103,1],[72,1],[73,1],[107,1],[4,0],[60,1],[128,2],[88,2],[124,2],[138,2],[34,1],[80,1],[1,0],[61,2],[61,1],[81,0],[37,1],[58,0],[37,1],[83,1],[-3,82],[0,1],[41,0],[168,3],[-1,19],[-1,19],[0,19],[9,1],[159,2],[41,0],[-11,312],[-1,32],[-4,10],[-10,7],[-16,5],[-13,1],[-157,-1],[0,27],[-17,482],[-140,0],[-48,0],[-78,-1],[44,39],[34,31],[41,37],[51,45],[34,32],[46,42],[34,34],[37,30],[46,43],[43,39],[37,36],[53,46],[42,36],[24,25],[2,0],[294,3],[0,-1],[2,-72],[0,-9],[1,-18],[3,-59],[3,-73],[3,-81],[2,-90],[1,-45],[0,-37],[2,-5],[0,-1],[3,-4],[5,-3],[4,-1],[5,-2],[9,-1],[167,3],[13,0],[57,1],[54,1],[101,1],[0,-11],[1,-13],[0,-4],[2,-65],[2,-53],[3,-59],[0,-5],[0,-3],[0,-3],[3,-67],[3,-76],[2,-64],[3,-81],[2,-36],[1,-42],[2,-69],[1,-10],[2,-70],[2,-68],[3,-68],[2,-61],[3,-69],[1,-25],[263,4],[143,2],[102,2],[172,2],[117,3],[8,0],[11,0],[72,1],[117,2],[143,2],[119,2],[128,2],[143,2],[121,0],[10,0],[102,1],[111,1],[101,1],[102,2],[125,2],[152,3],[26,0],[99,2],[83,1],[47,1],[113,1],[122,2],[95,1],[27,2],[18,2],[18,2],[51,12],[67,17],[96,24],[57,14],[105,26],[47,13],[47,13],[17,9],[15,7],[12,10],[8,10],[3,8],[2,21],[119,2],[98,1],[101,2],[3,0],[61,1],[1,0],[16,0],[18,0],[109,2],[52,1],[19,0],[76,1],[24,0],[3,1],[35,1],[11,0],[40,1],[30,2],[35,5],[38,8],[48,17],[40,16],[54,25],[37,16],[36,15],[43,10],[50,5],[64,-3],[50,-10],[36,-14],[41,-21],[26,-25],[20,-32],[4,-11],[19,-54],[18,-57],[4,-12],[13,-50],[11,-38],[3,-10],[27,-94],[10,-77],[1,-13],[2,-47],[1,-34],[1,-33],[3,-121],[2,-70],[1,-28],[1,-8],[0,-13],[1,-9],[1,-28],[0,-3],[1,-24],[-82,-20],[-200,-50],[-546,-140],[-23,-6],[-239,-61]],[[16466,63213],[1634,-113],[53,-4],[0,1],[16,-2],[1,-5],[0,-8],[23,-2],[26,-2],[28,-2],[74,-5],[68,-5],[182,-13],[137,-9],[109,-8],[202,-15],[146,-10],[118,-9],[185,-13],[257,-18],[168,-12],[10,-1],[19,-1],[212,-14],[190,-14],[244,-18],[174,-12],[266,-19],[233,-17],[216,-15],[1,0],[4,0],[38,-3],[0,4],[-2,48],[-3,50],[-3,70],[-1,35],[-3,53],[-2,45],[0,4],[0,9],[-1,17],[-2,62],[-2,36],[-1,12],[-1,23],[-5,80],[0,11],[108,0],[107,3],[23,0],[64,1],[214,2],[180,2],[96,1],[34,0],[59,1],[113,1],[99,1],[87,1],[80,1],[102,1],[89,0],[101,1],[94,2],[100,1],[79,1],[97,0],[5,-113],[0,-12],[0,-1],[2,-47],[3,-79],[0,-1],[3,-62],[2,-58],[0,-5],[0,-1],[3,-62],[2,-65],[144,2],[90,0],[33,1],[83,1],[89,0],[103,1],[107,2],[64,0],[47,1],[97,1],[108,1],[105,0],[63,1],[32,1],[68,0],[180,1],[5,0],[-2,52],[153,2],[47,1],[21,0],[76,1],[87,1],[82,1],[81,1],[42,1],[63,0],[177,2],[-2,45],[-2,57],[-2,25],[0,12],[-1,20],[-1,22],[-2,27],[-1,25],[-1,21],[0,21],[-2,31],[-2,38],[-2,39],[-4,85],[72,1],[74,12],[72,13],[51,9],[92,7],[101,2],[110,0],[130,5],[155,11],[49,3],[20,2],[49,3],[104,5],[122,0],[2,-86],[4,-64],[2,-53],[2,-40],[1,-30],[1,-26],[3,-60],[0,-18],[1,-25],[3,-56],[0,-12],[2,-27],[1,-26],[0,-12],[5,-98],[13,3],[58,13],[73,17],[92,21],[63,14],[59,14],[32,8],[75,17],[3,0],[1,1],[52,11],[40,9],[68,16],[48,11],[26,6],[107,23],[31,8],[73,17],[84,19],[8,2],[84,19],[123,28],[19,4],[59,14],[1,0],[111,25],[90,21],[77,17],[49,11],[69,16],[20,5],[105,23],[16,4],[67,15],[94,22],[10,2],[70,16],[22,5],[31,7],[7,1],[42,10],[81,18],[84,19],[81,19],[57,13],[57,13],[1,-48],[3,-56],[1,-2],[1,-29],[1,-18],[1,-12],[1,-41],[3,-50],[5,-124],[34,0],[25,0],[84,2],[67,0],[3,-49],[2,-41],[0,-13],[1,-30],[0,-8],[208,2],[-1,11],[90,1],[44,0],[57,1],[67,0],[60,0],[51,1],[53,0],[55,1],[62,0],[48,1],[6,0],[41,0],[27,0],[46,1],[32,0],[94,1],[3,0],[38,1],[398,6],[1,0],[24,0],[43,0],[68,0],[58,0],[65,1],[24,0],[111,0],[0,-10],[2,-54],[0,-4],[1,-36],[1,-27],[2,-43],[3,-73],[0,-19],[0,-5],[0,-7],[1,-12],[0,-14],[1,-7],[1,-29],[5,-53],[2,-44],[-145,-2],[-78,-1],[-93,-1],[-87,-1],[-92,-1],[-99,-1],[-135,-1],[-103,-2],[-123,-1],[-126,-2],[-132,-1],[-108,-2],[-115,-1],[-86,-1],[-100,-1],[-44,-1],[-1,0],[-97,-1],[-89,-1],[-21,0],[-92,-1],[-86,-2],[-123,-1],[-114,-1],[-200,-3],[1,-16],[1,-28],[4,-82],[4,-81],[2,-48],[2,-43],[3,-85],[2,-57],[0,-12],[-3,-58],[-172,-2],[-174,-2],[-19,0],[-57,0],[-28,-1],[-61,0],[-2,0],[-39,-1],[-244,-2],[-46,-1],[0,-1],[2,-48],[3,-79],[1,-36],[9,-267],[3,-81],[2,-45],[6,-155],[6,-122],[2,-61],[3,-69],[3,-59],[-1,0],[-93,0],[-114,-2],[-151,-2],[-57,-1],[-70,0],[-138,-2],[-42,-1],[-155,-2],[-12,-1],[0,-53],[9,-247],[3,-77],[3,-98],[1,-34],[0,-1],[4,-89],[0,-1],[13,-292],[5,-103],[0,-12],[1,-14],[44,0],[3,0],[42,1],[279,3],[48,1],[54,1],[297,4],[64,1],[1,0],[0,-1],[5,-130],[2,-54],[2,-73],[1,-28],[8,-190],[2,-37],[1,-31],[0,-7],[10,-249],[9,-212],[3,-62],[0,-2],[1,-24],[0,-19],[4,-99],[1,-30],[1,-43],[1,-7],[3,-79],[0,-5],[0,-16],[0,-2],[1,-21],[3,-55],[1,-28],[1,-33],[4,-95],[3,-97],[2,-30],[1,-34],[4,-94],[5,-133],[1,-27],[0,-5],[1,-21],[0,-7],[2,-44],[3,-80],[-40,3],[-143,-1],[-11,-8],[-145,-2],[-42,0],[1,-24],[0,-1],[0,-18],[0,-1],[1,-19],[4,-108],[5,-107],[3,-102],[4,-96],[5,-162],[1,-14],[0,-10],[3,-143],[5,-12],[0,-6],[2,-65],[3,-103],[43,12],[35,10],[17,6],[88,27],[153,48],[40,11],[66,18],[11,3],[49,13],[117,32],[42,11],[81,23],[76,21],[106,31],[95,28],[88,27],[289,85],[76,21],[37,11],[189,55],[307,90],[17,5],[4,1],[273,79],[52,15],[11,3],[135,39],[9,2],[3,1],[61,19],[3,0],[71,21],[94,28],[317,91],[64,19],[474,137],[32,9],[40,11],[1,-46],[3,-90],[4,-131],[3,-93],[1,-25],[3,-106],[6,-131],[-550,-101],[-551,-100],[-498,-92],[-3312,-608],[-61,1597],[-41,0],[-41,-1],[-3,58],[-4,88],[0,13],[-5,87],[-2,50],[-8,189],[-2,51],[-13,255],[-11,206],[-9,216],[-13,296],[-7,159],[-11,230],[-2,63],[-2,59],[-1,50],[-6,105],[-3,102],[-1,48],[-5,168],[-2,79],[-4,118],[-2,47],[-4,123],[-1,33],[-1,22],[-1,30],[-1,29],[-2,68],[-2,51],[-2,66],[-2,45],[-2,47],[-1,38],[-1,41],[-2,40],[-3,82],[-3,102],[-2,51],[-3,95],[-1,13],[-8,246],[-4,92],[-1,39],[-30,0],[-33,0],[-77,-1],[-592,-7],[-61,-1],[-114,-1],[-181,-2],[-538,-5],[-2,0],[-109,-1],[-225,-3],[-83,-1],[-121,-1],[-207,-3],[-87,-1],[-108,-1],[-228,-3],[-81,-1],[-77,-1],[-225,-3],[-115,-1],[-113,-2],[-220,-2],[-84,-1],[-78,-1],[-215,-3],[-123,-2],[-81,-1],[-11,0],[-38,0],[-201,-3],[-86,-1],[-122,-1],[-139,-2],[-86,-1],[-70,-1],[-2,0],[-70,-1],[-95,-1],[-244,-3],[-424,-5],[-122,-2],[-35,0],[-527,-7],[-146,-1],[-1,0],[-114,-2],[-211,-2],[-334,-5],[-63,0],[-43,-1],[-42,0],[-274,-4],[-481,-5],[-104,-3],[-4,0],[-4,44],[-3,73],[-1,60],[-16,35],[-23,302],[-312,-2],[-390,-4],[-109,-2],[-416,-6],[-3,0],[0,17],[-12,258],[-10,0],[-382,-4],[-27,0],[0,10],[-4,76],[-2,57],[-1,20],[-2,36],[-1,34],[-1,15],[-2,40],[-2,37],[-1,33],[-2,39],[-2,26],[0,42],[-4,0],[-3,7],[-1,12],[-3,78]],[[45569,47911],[385,2],[-8,255],[24,0],[-7,255],[494,2],[-271,319],[-1,25],[-11,14],[-420,495],[-18,0],[-125,147],[107,1],[82,0],[39,1],[19,0],[154,1],[153,2],[5,0],[845,7],[1214,11],[-1,18],[0,9],[-1,38],[-1,24],[-1,44],[-1,49],[-3,94],[-1,32],[-1,38],[-1,45],[-2,53],[-2,87],[47,1],[72,0],[156,2],[143,4],[1,0],[14,0],[72,1],[156,2],[175,2],[37,0],[134,1],[125,1],[43,0],[75,1],[3,0],[135,1],[227,2],[58,1],[91,1],[200,2],[117,1],[1,0],[8,0],[69,0],[275,3],[63,1],[1,0],[201,2],[9,0],[36,1],[3,0],[94,-2],[71,-2],[3,0],[57,-2],[94,-2],[1,0],[26,0],[102,-2],[79,-3],[64,-1],[59,-2],[29,1],[88,0],[12,0],[130,2],[46,0],[0,11],[0,59],[-1,113],[0,4],[4,39],[0,40],[0,5],[-2,96],[-2,157],[-5,256],[0,2],[-2,68],[1,31],[2,59],[-2,96],[0,1],[-1,60],[-2,96],[-4,167],[-5,187],[-5,188],[-7,144],[0,15],[-1,4],[-4,160],[17,0],[120,1],[16,1],[75,1],[124,1],[80,1],[-3,129],[-2,64],[0,14],[-1,13],[0,24],[-3,73],[-6,197],[0,1],[109,1],[83,0],[142,1],[45,0],[93,0],[88,1],[95,1],[100,1],[176,3],[63,0],[114,0],[60,0],[25,0],[43,-1],[11,0],[32,-2],[24,-6],[8,-3],[14,-5],[13,-6],[14,-8],[5,-4],[13,-9],[47,-45],[28,-28],[52,-52],[24,9],[14,6],[1,0],[337,130],[15,5],[2,1],[83,35],[33,-30],[267,-242],[85,-78],[11,-32],[11,-56],[-5,-54],[-2,-25],[32,0],[323,3],[104,1],[71,1],[36,0],[225,3],[325,3],[30,1],[216,2],[171,2],[384,5],[33,0],[6,0],[40,0],[25,0],[16,1],[9,0],[47,0],[96,2],[0,-1],[1,-50],[1,-40],[2,-60],[1,-35],[0,-3],[1,-17],[1,-31],[2,-53],[1,-52],[1,-30],[1,-11],[2,-57],[1,-33],[1,-38],[1,-3],[0,-3],[0,-27],[1,-38],[0,-23],[1,-17],[0,-25],[1,-5],[1,-38],[1,-47],[2,-54],[1,-48],[1,-32],[2,-54],[1,-32],[0,-9],[1,-30],[1,-34],[2,-49],[1,-37],[1,-39],[47,1],[35,-2],[31,-5],[52,1],[77,1],[44,0],[110,1],[94,1],[63,1],[0,-53],[1,-47],[1,-27],[2,-42],[1,-39],[3,-50],[0,-33],[95,1],[63,1],[93,1],[55,1],[80,1],[95,-1],[68,1],[79,1],[82,0],[88,1],[55,1],[6,0],[71,1],[174,2],[1,-38],[1,-40],[1,-52],[1,-46],[2,-54],[1,-61],[2,-34],[1,-39],[1,-34],[0,-43],[1,-44],[1,-5],[1,-32],[0,-4],[5,-61],[1,0],[100,1],[74,1],[30,0],[23,0],[1,0],[23,0],[22,0],[46,1],[37,0],[55,1],[4,0],[124,0],[84,1],[30,0],[84,2],[65,1],[28,1],[1,0],[59,1],[107,0],[11,0],[25,0],[66,0],[11,0],[21,1],[114,1],[46,0],[114,1],[45,1],[61,2],[23,0],[64,1],[60,0],[1,0],[64,1],[98,1],[81,1],[12,0],[72,1],[31,0],[57,1],[1,0],[104,1],[78,1],[29,0],[89,0],[71,1],[46,1],[83,1],[9,0],[6,0],[69,0],[79,1],[103,0],[77,2],[1,0],[28,1],[57,2],[79,0],[62,0],[30,1],[7,0],[18,0],[42,0],[32,0],[4,0],[37,1],[10,0],[19,0],[11,0],[2,0],[14,0],[5,1],[97,1],[98,1],[118,1],[68,1],[49,0],[100,1],[129,1],[58,1],[54,0],[92,1],[26,1],[48,0],[14,0],[3,-114],[1,-14],[0,-30],[2,-52],[2,-48],[1,-44],[1,-16],[2,-63],[3,-62],[1,-30],[1,-7],[27,0],[153,2],[55,1],[28,0],[43,0],[110,7],[10,0],[11,1],[153,8],[40,2],[0,-6],[0,-8],[1,-16],[2,-26],[0,-8],[1,-35],[0,-25],[2,-73],[2,-44],[1,-54],[1,-55],[2,-55],[2,-49],[0,-16],[1,-34],[2,-53],[0,-29],[1,-35],[1,-13],[1,-45],[2,-42],[1,-31],[0,-18],[1,-7],[0,-21],[-137,-2],[-19,0],[-33,0],[-99,-1],[-48,-1],[-60,-1],[-123,-2],[-19,0],[-61,-1],[-53,-1],[-46,0],[-78,-1],[-28,-1],[-60,-1],[-53,0],[-176,-3],[-209,-3],[-108,0],[-27,-1],[-31,0],[-33,0],[-7,-1],[-11,0],[0,-2],[-35,0],[-22,0],[-22,0],[-3,0],[-24,0],[-7,0],[-7,0],[-41,0],[-1,24],[-3,95],[-1,13],[-3,96],[-1,25],[0,5],[-83,-1],[-506,-11],[-10,0],[-95,-1],[-90,-2],[0,1],[-1,34],[-1,14],[0,31],[-2,56],[-2,41],[-2,72],[-1,0],[-143,-5],[-55,-1],[-1,0],[-92,-1],[-67,-1],[-84,0],[-72,0],[-90,-1],[-13,0],[-66,0],[-149,0],[-1,0],[2,-32],[0,-4],[0,-1],[0,-18],[0,-7],[1,-19],[0,-6],[1,-32],[1,-30],[1,-30],[0,-38],[2,-28],[0,-2],[1,-1],[2,-28],[2,-76],[0,-18],[0,-26],[0,-6],[1,-11],[0,-4],[0,-2],[0,-3],[0,-3],[3,-76],[-42,0],[-55,-1],[-111,-1],[-26,0],[-115,-1],[-66,-1],[-72,-1],[-119,-1],[-20,0],[-92,-1],[-110,-1],[-105,-1],[-98,-1],[-53,-1],[-89,0],[-68,0],[-2,0],[-39,6],[-29,1],[-23,0],[-53,-1],[-53,-1],[-34,0],[-46,0],[-45,-1],[-93,-1],[0,-7],[1,-5],[0,-16],[1,-29],[1,-36],[3,-127],[1,-3],[1,-63],[4,-79],[0,-26],[3,-60],[3,-96],[3,-114],[3,-72],[0,-20],[1,-24],[0,-1],[1,-14],[0,-4],[4,-122],[4,-122],[2,-86],[1,-34],[2,-56],[2,-86],[1,-22],[2,-77],[1,-57],[2,-42],[1,-34],[0,-4],[0,-9],[2,-32],[1,-53],[3,-87],[3,-84],[0,-7],[0,-10],[1,-36],[2,-40],[2,-78],[1,-27],[4,-98],[3,-99],[0,-4],[3,-82],[1,-31],[0,-1],[0,-25],[2,-56],[2,-89],[1,-16],[3,-100],[2,-105],[3,-62],[3,-57],[2,-51],[5,-54],[0,-31],[3,-121],[2,-73],[2,-60],[1,-22],[1,-37],[1,-24],[0,-38],[2,-64],[0,-8],[3,-74],[3,-81],[0,-28],[0,-1],[3,-87],[2,-61],[0,-21],[2,-52],[1,-29],[0,-4],[1,-26],[3,-96],[-225,-2],[-1283,-12],[-148,-1],[0,3],[-44,0],[-745,-9],[-82,0],[-371,-5],[-3,92],[-2,25],[-2,36],[1,39],[-1,27],[-1,33],[-1,16],[0,24],[-2,40],[-1,29],[-2,35],[-1,31],[-1,31],[-1,35],[0,40],[0,24],[1,20],[0,49],[0,1],[408,4],[1,0],[48,1],[64,0],[100,1],[4,0],[43,0],[123,1],[105,1],[108,1],[106,1],[125,2],[3,0],[0,11],[-1,14],[0,10],[-1,42],[-2,51],[-1,50],[-1,48],[-2,28],[-3,52],[-2,36],[-1,40],[-1,26],[-3,102],[-10,0],[-69,0],[-100,-2],[-65,0],[-164,-2],[-138,-2],[-101,-1],[-99,-1],[-80,0],[-79,-1],[-83,-1],[-110,-1],[-99,-1],[-120,-2],[-116,-1],[-2,0],[-1,0],[-5,0],[-98,0],[-113,-2],[-92,-1],[-20,0],[-107,-1],[-82,-1],[-60,-1],[-55,0],[-55,-1],[-7,0],[-84,-1],[-109,-2],[-108,-2],[-50,0],[-3,0],[-80,0],[-76,-1],[-69,0],[-33,-1],[-109,-1],[-6,0],[-42,-1],[-1,0],[-50,0],[-82,-1],[-118,-1],[-108,-2],[-53,0],[-1,1],[0,25],[-7,218],[-1,24],[-1,17],[0,1],[-6,198],[-1,13],[0,1],[0,2],[0,9],[0,2],[-1,0],[-18,0],[-4,0],[-19,-1],[0,24],[-5,127],[-6,189],[0,22],[-1,17],[0,19],[-2,48],[-1,33],[0,6],[-2,4],[-3,2],[-3,3],[-4,1],[-5,1],[-6,0],[-10,0],[-21,0],[-41,-1],[-50,0],[-72,-1],[-59,-1],[-57,-1],[-33,0],[-146,-2],[-65,-1],[-69,-1],[-144,-1],[-149,-1],[-56,0],[-106,-1],[-102,-1],[-371,-3],[-43,4],[0,5],[-3,93],[-1,32],[-4,114],[-3,104],[-1,45],[-2,59],[-2,62],[-2,85],[-2,70],[0,13],[-2,45],[-1,38],[0,1],[-4,94],[-1,119],[-1,42],[-1,35],[0,11],[-1,48],[-3,103],[-3,104],[-2,58],[0,24],[-3,107],[-1,25],[-377,-5],[-1,0],[-16,-1],[-16,0],[0,-1],[0,-83],[2,-57],[0,-26],[2,-87],[1,-6],[2,-90],[2,-96],[0,-43],[-4,-23],[0,-1],[-4,0],[-49,0],[-10,0],[-170,-1],[-123,0],[-59,-1],[-80,-1],[-117,0],[-198,-2],[-18,0],[-52,0],[-64,0],[-91,-1],[-37,0],[-169,-1],[-85,0],[-31,0],[-92,-1],[-7,0],[-134,-2],[-66,0],[-120,-2],[-84,0],[-9,0],[-135,-1],[-67,-1],[0,-17],[5,-82],[2,-64],[2,-82],[3,-99],[2,-89],[3,-74],[1,-38],[3,-72],[3,-83],[2,-76],[3,-89],[0,-28],[1,-22],[1,-61],[1,-40],[0,-1],[2,-36],[2,-70],[0,-2],[1,-26],[2,-35],[2,-68],[3,-70],[2,-79],[0,-10],[2,-66],[2,-47],[-2,0],[-31,0],[-90,0],[-86,-1],[-15,0],[-115,-2],[-77,0],[-44,0],[-86,-1],[-76,-1],[-36,0],[-81,-1],[-76,0],[0,24],[-7,473],[0,4],[0,6],[0,4],[0,1],[-11,-1],[-11,0],[-47,0],[-173,-1],[-218,-1],[1,-24],[0,-3],[-12,-4],[-1,0],[-27,-8],[-139,-42],[-246,-112],[-278,-181],[-74,-185],[-9,54],[-9,-16],[-45,-84],[-47,-89],[-1,-3],[-2,-3],[-2,-4],[-2,-3],[-2,-3],[-2,-4],[-2,-3],[-2,-3],[-2,-3],[-2,-4],[-2,-3],[-2,-3],[-2,-4],[-2,-3],[-2,-3],[-2,-4],[-2,-3],[-2,-3],[-2,-4],[-2,-3],[-2,-3],[-2,-3],[-2,-4],[-3,-3],[-2,-3],[-2,-4],[-2,-3],[-2,-3],[-2,-3],[-2,-4],[-3,-3],[-2,-3],[-2,-4],[-2,-3],[-2,-3],[-42,-62],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-2,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[0,-1],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[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],[-1,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[1,-4],[0,-7],[1,-25],[0,-4],[-18,0],[-59,0],[-24,-1],[-12,0],[-27,0],[-15,0],[-48,0],[-14,0],[-19,0],[-12,0],[-146,-2],[-49,0],[-128,-1],[-187,-2],[-60,0],[-77,-1],[-90,-1],[-2,0],[0,5],[-1,21],[-3,95],[0,6],[-19,537],[-1,77],[-1,22],[-17,1],[-88,-1],[-40,0],[-93,-1],[-94,-1],[-73,0],[-89,0],[-146,0],[-1,47],[-1,55],[-2,48],[-3,105],[0,7],[0,7],[-1,25],[-2,65],[-2,39],[-1,30],[-1,12],[-2,54],[-2,39],[0,3],[-4,85],[-3,72],[-1,45],[-1,49],[-3,94],[-3,103],[-3,93],[-4,85],[-4,112]],[[25814,34781],[213,9],[66,3],[1,-42],[3,1],[2,0],[3,0],[3,0],[2,0],[3,0],[3,0],[2,0],[3,0],[3,0],[2,0],[3,0],[3,1],[2,0],[3,0],[3,0],[2,0],[3,0],[2,0],[3,1],[3,0],[2,0],[3,0],[3,0],[2,1],[3,0],[3,0],[2,0],[3,0],[3,1],[2,0],[3,0],[2,0],[3,1],[3,0],[2,0],[1,0],[97,11],[108,11],[123,13],[204,30],[3,1],[3,1],[2,0],[3,1],[3,0],[2,1],[3,1],[2,0],[3,1],[3,0],[2,1],[3,1],[2,0],[3,1],[3,1],[2,0],[3,1],[2,1],[3,0],[2,1],[3,1],[2,0],[3,1],[3,1],[2,0],[3,1],[2,1],[3,0],[2,1],[3,1],[2,1],[3,0],[2,1],[3,1],[2,1],[3,0],[2,1],[3,1],[2,1],[3,1],[2,0],[3,1],[2,1],[3,1],[2,1],[2,0],[3,1],[2,1],[3,1],[2,1],[3,1],[2,0],[2,1],[3,1],[2,1],[3,1],[2,1],[2,1],[3,1],[2,0],[3,1],[2,1],[2,1],[3,1],[2,1],[2,1],[3,1],[2,1],[2,1],[3,1],[2,1],[2,1],[3,0],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[3,1],[2,2],[2,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[2,2],[2,1],[2,1],[2,1],[3,1],[2,1],[2,1],[2,1],[2,2],[2,1],[2,1],[2,1],[2,1],[2,1],[2,2],[2,1],[2,1],[2,1],[2,1],[2,2],[2,1],[2,1],[2,1],[2,1],[2,2],[2,1],[2,1],[2,1],[2,1],[2,2],[2,1],[2,1],[2,1],[1,2],[2,1],[2,1],[2,1],[2,2],[2,1],[2,1],[2,2],[1,1],[2,1],[2,1],[2,2],[2,1],[2,1],[1,2],[2,1],[2,1],[2,2],[1,1],[2,1],[2,2],[2,1],[1,1],[2,2],[2,1],[2,1],[1,2],[2,1],[2,1],[1,2],[2,1],[2,2],[1,1],[2,1],[2,2],[1,1],[2,1],[1,2],[2,1],[2,2],[1,1],[2,1],[1,2],[2,1],[1,2],[2,1],[2,2],[1,1],[2,1],[1,2],[2,1],[1,2],[2,1],[1,2],[2,1],[1,2],[1,1],[2,2],[1,1],[2,1],[1,2],[2,1],[1,2],[1,1],[2,2],[1,1],[1,2],[2,1],[1,2],[2,1],[1,2],[1,1],[2,2],[1,1],[1,2],[1,1],[2,2],[1,1],[1,2],[1,2],[2,1],[1,2],[1,1],[1,2],[2,1],[1,2],[1,1],[1,2],[1,1],[1,2],[2,2],[1,1],[1,2],[1,1],[1,2],[1,1],[1,2],[1,2],[2,1],[1,2],[1,1],[1,2],[1,1],[1,2],[1,2],[1,1],[1,2],[1,1],[1,2],[1,2],[1,1],[1,2],[1,1],[1,2],[1,2],[0,1],[1,2],[1,2],[1,1],[1,2],[1,1],[1,2],[1,2],[0,1],[1,2],[1,2],[1,1],[1,2],[1,1],[0,2],[1,2],[1,1],[1,2],[0,2],[1,1],[1,2],[1,2],[0,1],[1,2],[1,2],[0,1],[1,2],[1,2],[0,1],[1,2],[1,2],[0,1],[1,2],[0,2],[1,1],[1,2],[0,2],[1,1],[0,2],[1,2],[0,1],[1,2],[0,2],[1,1],[0,2],[1,2],[0,1],[1,2],[0,2],[1,2],[11,47],[1,4],[1,3],[1,4],[1,4],[1,4],[1,3],[1,4],[0,4],[1,4],[1,3],[1,4],[1,4],[1,4],[0,3],[1,4],[1,4],[1,4],[1,4],[0,3],[1,4],[1,4],[1,4],[0,1],[0,2],[1,4],[1,4],[1,4],[0,3],[1,4],[1,4],[0,4],[1,3],[1,4],[0,4],[1,4],[0,4],[1,3],[1,4],[0,4],[1,4],[0,3],[1,4],[0,4],[1,4],[0,3],[1,4],[0,4],[1,4],[0,5],[2,24],[169,2],[1,0],[17,0],[29,1],[19,0],[1,-2],[0,-2],[1,-3],[1,-2],[1,-3],[0,-2],[1,-3],[1,-2],[1,-3],[0,-2],[1,-1],[0,-2],[1,-3],[1,-2],[1,-3],[1,-2],[0,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[0,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[2,-3],[1,-2],[1,-3],[1,-2],[1,-3],[1,-2],[1,-2],[1,-3],[1,-1],[1,-3],[1,-2],[2,-3],[0,-1],[1,-1],[1,-3],[1,-1],[0,-1],[1,-2],[2,-3],[1,-2],[1,-3],[1,-2],[2,-3],[1,-2],[1,-2],[1,-3],[2,-2],[1,-3],[1,-2],[2,-3],[1,-2],[1,-2],[2,-3],[1,-2],[2,-3],[1,-2],[1,-2],[2,-3],[1,-2],[2,-3],[1,-2],[2,-2],[1,-3],[1,-2],[2,-3],[1,-2],[2,-2],[1,-3],[2,-2],[1,-2],[2,-3],[2,-2],[1,-3],[2,-2],[1,-2],[2,-3],[1,-2],[2,-2],[2,-3],[1,-2],[2,-2],[2,-3],[1,-2],[2,-2],[1,-3],[2,-2],[2,-2],[2,-3],[1,-2],[2,-2],[2,-3],[1,-2],[2,-2],[2,-3],[2,-2],[1,-2],[2,-3],[2,-2],[2,-2],[1,-3],[2,-2],[2,-2],[2,-2],[2,-3],[2,-2],[1,-2],[2,-3],[2,-2],[2,-2],[2,-2],[2,-3],[2,-2],[2,-2],[2,-2],[2,-3],[1,-2],[2,-2],[2,-3],[2,-2],[2,-2],[2,-2],[2,-2],[2,-3],[2,-2],[2,-2],[2,-2],[2,-3],[2,-2],[3,-2],[2,-2],[2,-2],[2,-3],[2,-2],[2,-2],[2,-2],[2,-2],[2,-3],[2,-2],[3,-2],[2,-2],[2,-2],[2,-3],[2,-2],[2,-2],[3,-2],[2,-2],[2,-2],[2,-3],[2,-2],[3,-2],[2,-2],[2,-2],[2,-2],[3,-2],[2,-3],[2,-2],[3,-2],[2,-2],[2,-2],[2,-2],[3,-2],[2,-2],[2,-3],[3,-2],[2,-2],[3,-2],[2,-2],[2,-2],[3,-2],[2,-2],[3,-2],[2,-2],[2,-2],[3,-2],[2,-3],[3,-2],[2,-2],[3,-2],[2,-2],[3,-2],[2,-2],[3,-2],[99,-78],[3,-2],[3,-1],[3,-2],[3,-2],[3,-2],[2,-2],[3,-2],[3,-2],[3,-2],[3,-2],[3,-2],[3,-2],[3,-2],[3,-1],[3,-2],[2,-2],[3,-2],[3,-2],[3,-2],[3,-2],[3,-2],[3,-2],[3,-1],[3,-2],[3,-2],[3,-2],[3,-2],[3,-2],[3,-1],[3,-2],[3,-2],[3,-2],[3,-2],[3,-1],[4,-2],[3,-2],[3,-2],[3,-2],[3,-1],[3,-2],[3,-2],[3,-2],[3,-2],[3,-1],[4,-2],[3,-2],[3,-2],[3,-1],[3,-2],[3,-2],[4,-2],[1,0],[2,-1],[3,-2],[3,-2],[3,-1],[4,-2],[3,-2],[3,-2],[3,-1],[3,-2],[4,-2],[3,-1],[3,-2],[3,-2],[4,-1],[3,-2],[3,-2],[4,-1],[3,-2],[3,-2],[3,-1],[4,-2],[3,-1],[3,-2],[4,-2],[3,-1],[3,-2],[4,-2],[3,-1],[3,-2],[4,-1],[3,-2],[4,-2],[3,-1],[3,-2],[4,-1],[3,-2],[4,-1],[3,-2],[3,-1],[4,-2],[3,-2],[4,-1],[3,-2],[3,-1],[1,0],[3,-2],[3,-1],[4,-2],[3,-1],[4,-2],[3,-1],[3,-1],[710,-293],[177,-73],[221,-91],[240,-100],[382,-157],[848,-346],[391,-164],[27,-11],[53,-22],[348,3],[15,0],[449,7],[294,-14],[33,-2],[50,-8],[12,-2],[0,-2],[16,-482],[169,-68],[28,-12],[63,-23],[30,-11],[32,-13],[26,-11],[16,-7],[9,-3],[245,-99],[210,-85],[214,-87],[221,-89],[18,-4],[59,-2],[126,1],[5,0],[70,1],[67,0],[73,2],[4,0],[63,1],[108,1],[33,0],[41,1],[26,0],[78,1],[64,0],[49,1],[88,1],[70,1],[10,0],[77,2],[75,1],[48,0],[32,0],[19,-8],[1,0],[20,-5],[31,-4],[42,-2],[75,1],[81,1],[58,1],[59,0],[88,0],[57,0],[53,1],[53,1],[44,1],[1,0],[8,0],[10,0],[6,3],[3,4],[0,1],[3,5],[2,3],[18,0],[6,0],[64,0],[63,0],[21,0],[-2,-40],[-1,-37],[0,-51],[1,-128],[0,-31],[1,-45],[2,-29],[2,-22],[0,-13],[2,-31],[1,-21],[2,-28],[10,-27],[2,-7],[3,-11],[4,-23],[0,-31],[-2,-23],[0,-20],[2,-8],[5,-4],[6,-4],[11,-4],[17,0],[51,2],[61,1],[52,1],[55,0],[64,1],[59,0],[72,1],[61,1],[69,0],[48,1],[40,0],[35,0],[34,1],[50,1],[51,1],[47,0],[58,1],[86,1],[71,1],[74,0],[31,1],[52,1],[48,0],[44,1],[51,0],[49,1],[41,0],[47,1],[7,0],[5,1],[8,1],[5,2],[7,2],[7,5],[1,0],[7,5],[1,1],[6,6],[1,9],[1,20],[-1,43],[-1,31],[-2,40],[-1,32],[0,16],[-1,8],[0,34],[0,9],[-1,34],[-2,43],[-2,41],[-3,48],[-2,34],[-2,25],[-2,21],[-3,26],[-2,16],[-1,12],[-4,37],[-5,36],[0,5],[17,3],[18,0],[15,0],[102,3],[52,1],[41,1],[55,0],[116,2],[99,1],[105,1],[208,2],[106,1],[105,2],[12,0],[82,1],[113,2],[127,2],[82,1],[3,0],[76,1],[68,1],[31,0],[30,-4],[0,-7],[1,-25],[0,-15],[2,-49],[1,-24],[4,-99],[2,-72],[3,-96],[3,-91],[2,0],[58,0],[150,-9],[9,-1],[201,-12],[417,4],[418,5],[415,7],[417,4],[420,6],[159,3],[0,-10],[4,-121],[34,1],[248,-31],[390,-54],[2,0],[2,-52],[1382,-139],[248,-9],[41,-2],[1,-24],[2,-51],[396,5],[492,7],[476,6],[225,3],[17,0],[62,1],[2,0],[-1,3],[-1,37],[-1,46],[-1,24],[0,4],[-1,16],[44,5],[51,3],[68,3],[54,-1],[16,-1],[12,-1],[29,-1],[4,-1],[4,0],[34,-4],[39,-4],[18,-2],[77,-7],[1,0],[29,-1],[10,1],[28,0],[88,1],[62,3],[19,1],[12,1],[66,4],[31,4],[32,9],[13,4],[27,14],[-3,101],[-3,88],[-2,62],[-1,22],[-2,89],[106,1],[78,0],[11,1],[14,0],[49,0],[60,0],[50,1],[45,1],[3,0],[202,-1],[213,0],[1,-26],[12,-364],[5,-140],[0,-12],[1,-15],[3,-76],[1,-46],[1,-31],[1,-30],[1,-27],[1,-27],[1,-27],[1,-27],[1,-27],[1,-27],[2,-59],[2,-50],[2,-59],[1,-34],[0,-10],[2,-47],[2,-69],[2,-69],[2,-46],[1,-46],[3,-69],[2,-69],[1,-46],[2,-47],[2,-69],[2,-69],[1,-45],[2,-47],[2,-69],[2,-69],[2,-46],[8,-275],[4,-115],[3,-96],[1,-25],[-3,0],[-57,-1],[-26,0],[-71,-1],[-20,0],[-23,0],[-11,0],[-88,-1],[-81,-1],[-57,-1],[-74,0],[-7,-1],[-123,-2],[-122,-4],[-17,0],[-65,-1],[-44,-1],[-71,-2],[-96,-2],[-119,-2],[-21,0],[-51,-1],[-44,-1],[-153,0],[-179,2],[-76,1],[0,1],[-1,15],[-3,76],[-1,42],[-2,60],[-1,19],[0,18],[-1,16],[-1,38],[-2,59],[-1,37],[0,1],[0,22],[-1,23],[-2,85],[0,1],[-2,56],[-5,177],[-3,76],[-4,128],[-2,47],[-1,25],[0,1],[-2,59],[-3,101],[-3,86],[-1,28],[-6,160],[0,21],[-2,0],[-64,-1],[-148,-2],[-2,0],[-199,-2],[-106,-1],[-104,-2],[-206,-2],[-209,-4],[-209,-4],[-58,-1],[-24,-18],[-1,-1],[-3,-2],[-2,-1],[-2,-2],[-2,-2],[-3,-2],[-2,-1],[-2,-2],[-2,-2],[-2,-2],[-3,-2],[-2,-1],[-2,-2],[-2,-2],[-2,-2],[-2,-1],[-3,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-1],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-1],[-3,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-1],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-1],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-1],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-2],[-2,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-2],[-2,-2],[-1,-1],[-2,-2],[-1,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-2],[-1,-2],[-2,-2],[-1,-2],[-2,-2],[-2,-2],[-1,-2],[-2,-2],[-1,-2],[-2,-2],[-1,-2],[-2,-2],[-1,-2],[-2,-2],[-1,-2],[-2,-2],[-1,-2],[-2,-2],[-1,-2],[-1,-2],[-2,-2],[-1,-2],[-2,-2],[-1,-2],[-1,-2],[-2,-2],[-1,-2],[-1,-3],[-2,-2],[-1,-2],[-1,-2],[-2,-2],[-1,-2],[-1,-2],[-2,-2],[-1,-2],[-1,-2],[-2,-2],[-1,-2],[-1,-2],[-1,-3],[-1,-2],[-2,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-2,-2],[-1,-2],[-1,-3],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-2,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-3],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-3],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-3],[-1,-2],[-1,-2],[0,-2],[-1,-2],[-1,-2],[-1,-3],[-1,-2],[-1,-2],[-1,-2],[0,-2],[-1,-2],[-1,-3],[-1,-2],[-1,-2],[0,-2],[-1,-2],[-1,-2],[-1,-3],[0,-2],[-1,-2],[-1,-2],[-1,-2],[0,-2],[-1,-3],[-1,-2],[0,-2],[-1,-2],[-1,-2],[0,-3],[-1,-2],[-1,-2],[0,-2],[-1,-2],[0,-3],[-1,-2],[-1,-2],[0,-2],[-1,-2],[0,-3],[-1,-2],[0,-2],[-1,-2],[0,-2],[-1,-3],[0,-2],[-1,-2],[0,-2],[-1,-2],[0,-3],[-1,-2],[0,-2],[0,-2],[-1,-2],[-1,-8],[-2,-18],[0,-4],[28,-883],[4,-133],[-51,-1],[-4909,-64],[55,26],[86,41],[65,31],[-118,123],[-25,26],[26,10],[9,3],[80,30],[92,33],[55,20],[14,5],[83,31],[26,9],[112,41],[87,32],[95,36],[102,37],[55,20],[21,8],[27,10],[27,9],[26,10],[9,3],[81,29],[68,26],[83,30],[43,16],[1,0],[92,34],[130,47],[9,3],[46,17],[20,7],[73,27],[121,44],[119,43],[90,33],[0,1],[-8,17],[-4,15],[-3,46],[1,18],[-111,-2],[-78,0],[-61,-1],[-128,-2],[-7,0],[-33,0],[-94,-1],[-170,-2],[-74,-1],[-76,-1],[-90,-2],[-115,-1],[-47,-1],[-97,-1],[-70,-1],[-68,-1],[-54,-1],[-73,-1],[-67,-1],[-82,-1],[-71,-1],[-1,0],[-5,0],[-195,-2],[-21,-1],[-4,0],[-4,0],[-107,-1],[-19,0],[-61,0],[-5,-1],[-26,-6],[-178,-4],[-203,-5],[-199,-4],[-10,0],[-207,-3],[-211,-4],[-19,0],[-40,1],[-35,0],[-38,0],[-73,-1],[-81,-2],[-112,-1],[-19,0],[-42,-1],[-51,0],[-64,-1],[-34,0],[-5,0],[-11,0],[-3,1],[-9,1],[-4,9],[-5,10],[-3,21],[-2,46],[-1,28],[-1,13],[0,19],[-1,28],[0,28],[1,33],[0,2],[0,25],[0,23],[-1,29],[-2,41],[-2,29],[-1,34],[-1,36],[-4,85],[-1,57],[-2,47],[0,16],[-2,66],[-2,48],[-3,71],[-2,50],[-3,75],[-1,29],[-2,8],[-3,4],[-3,3],[-1,1],[-5,1],[-13,1],[-75,-1],[-64,-1],[-75,-1],[-111,-1],[-51,-1],[-75,-1],[-78,-1],[-78,0],[-63,-1],[-47,-1],[-33,0],[-19,-4],[-6,-2],[-8,-2],[-6,-1],[-1,0],[-20,2],[-13,1],[-47,0],[-69,-1],[-72,0],[-67,-1],[-124,-2],[-90,-1],[-95,-1],[-86,-1],[-56,-1],[-3,-49],[1,-34],[2,-40],[0,-1],[1,-7],[1,-32],[1,-41],[2,-34],[1,-40],[2,-45],[2,-42],[0,-1],[2,-37],[1,-37],[1,-30],[1,-23],[1,-31],[1,-51],[2,-39],[0,-7],[2,-40],[1,-33],[0,-27],[2,-28],[2,-51],[2,-46],[1,-31],[0,-3],[1,-30],[2,-37],[2,-56],[1,-31],[2,-52],[1,-45],[0,-1],[2,-50],[2,-43],[1,-34],[2,-42],[1,-37],[2,-36],[0,-12],[0,-1],[1,-38],[2,-40],[1,-28],[1,-21],[2,-40],[1,-41],[1,-29],[1,-17],[0,-6],[2,-52],[1,-38],[2,-33],[2,-40],[-96,0],[-31,-1],[-32,0],[-31,0],[-31,-1],[-31,0],[-32,0],[-31,-1],[-31,0],[-31,-1],[-32,0],[-31,0],[-31,-1],[-31,0],[-32,0],[-31,-1],[-31,0],[-31,-1],[-31,0],[-32,0],[-31,-1],[-34,0],[-4,1],[0,4],[-2,63],[-3,84],[-1,45],[-2,45],[-1,36],[0,13],[-2,43],[-2,59],[-2,69],[-2,39],[0,1],[-1,33],[-1,35],[-2,39],[-2,57],[-1,39],[-1,29],[-2,32],[-1,44],[-2,65],[-1,29],[-1,24],[-1,32],[-2,50],[-2,52],[-2,43],[-1,27],[-1,31],[-2,57],[-2,53],[-1,34],[-1,27],[-1,42],[-1,50],[-2,46],[-1,37],[0,34],[-3,59],[-1,18],[-2,55],[0,16],[-1,4],[-1,3],[-4,4],[-1,1],[-3,1],[-4,2],[-1,0],[-9,1],[-15,0],[-57,0],[-49,-1],[-63,-1],[-70,0],[0,23],[-4,94],[-14,0],[-32,-1],[-1,0],[-30,0],[-14,0],[-18,0],[-28,-1],[-4,0],[-31,0],[-10,0],[-22,0],[-24,-1],[-7,0],[-32,0],[-7,0],[-24,-1],[-21,0],[-11,0],[-31,0],[-3,0],[-29,-1],[-18,0],[-45,-1],[-12,0],[-31,0],[-3,0],[-29,0],[-17,-1],[-14,0],[-31,0],[-4,0],[-27,-1],[-18,0],[-13,0],[-32,0],[-1,0],[-21,-1],[-9,0],[-15,0],[-16,0],[-30,0],[-33,-1],[-12,0],[-19,0],[-26,-1],[-5,0],[-31,0],[-10,0],[-22,0],[-24,-1],[-7,0],[-31,0],[-7,0],[-24,-1],[-21,0],[-11,0],[-31,0],[-4,0],[-48,-1],[-21,0],[-23,0],[-8,-1],[-31,0],[-7,0],[-25,0],[-21,-1],[-10,0],[-31,0],[-5,0],[-26,0],[-20,-1],[-12,0],[-31,0],[-3,0],[-28,-1],[-18,0],[-13,0],[-32,0],[-1,0],[-30,-1],[-16,0],[-15,0],[-31,0],[0,-1],[-32,0],[-14,0],[-17,0],[-29,-1],[-2,0],[-31,0],[-15,0],[-17,0],[-29,-1],[-2,0],[-60,-1],[-17,0],[-31,0],[-14,0],[-17,0],[-29,-1],[-2,0],[-32,0],[-13,0],[-18,-1],[-29,0],[-2,0],[-31,0],[-13,0],[-19,-1],[-28,0],[-3,0],[-31,0],[-13,-1],[-18,0],[-28,0],[-3,0],[-1,0],[-31,-1],[-12,0],[-19,0],[-27,0],[-62,-1],[-9,0],[1,28],[0,27],[-1,3],[0,40],[1,20],[-1,78],[-5,84],[-1,38],[-1,24],[-70,0],[-421,-3],[-634,-5],[8,-295],[2,-51],[-16,0],[0,-1],[18,-474],[-81,-1],[-157,-1],[-118,-2],[-156,-2],[-217,-2],[-228,-3],[-107,-1],[-154,-2],[0,4],[0,11],[-145,-2],[-669,-8],[0,-13],[1,-2],[-137,-2],[-172,-2],[-14,0],[-3,0],[0,2],[-4,105],[-2,61],[-4,80],[-2,44],[-3,83],[-1,11],[-2,57],[-2,37],[-1,23],[-1,28],[-1,17],[-4,82],[-2,69],[-3,41],[-2,36],[-2,25],[-1,16],[-2,24],[0,11],[-1,15],[0,10],[-2,43],[-2,47],[0,6],[-1,0],[-28,0],[-405,-8],[-171,-3],[-293,-5],[-509,-9],[-59,-1],[-109,-2],[-145,-3],[-522,-10],[-50,-1],[-191,-3],[-88,-2],[-241,-4],[0,7],[-11,318],[-238,-2],[-72,-1],[-9,0],[-3,53],[-4,50],[-8,105],[-5,69],[-2,19],[-5,105],[3,125],[-13,178],[-5,73],[17,0],[59,0],[248,5],[1063,18],[42,1],[-2,61],[42,1],[-2,56],[75,0],[0,82],[123,2],[91,1],[-10,229],[-1,26],[-2,51],[-73,16],[-18,4],[-1502,328],[-171,38],[-9,2],[-4,135],[-12,477],[-3,97],[-6,223]],[[5631,38992],[1,0],[61,1],[326,5],[41,1],[41,1],[130,2],[243,3],[804,13],[43,1],[248,3],[138,3],[135,2],[125,1],[98,2],[99,1],[54,1],[166,3],[166,2],[83,2],[167,2],[168,3],[41,1],[32,0],[10,0],[166,3],[1,0],[3,-51],[4,-96],[1,-17],[0,-9],[1,-9],[0,-19],[-11,0],[-6,0],[-150,-2],[-28,0],[-2,-41],[4,-41],[197,3],[4,-87],[2,-41],[1,-30],[2,-37],[1,-27],[2,-30],[1,-32],[1,-31],[2,-38],[2,-32],[1,-33],[2,-43],[1,-30],[1,-22],[-46,0],[-150,-2],[2,-46],[2,-43],[2,-40],[2,-49],[2,-47],[2,-46],[3,-54],[0,-10],[30,1],[156,2],[10,0],[1,-10],[1,-26],[2,-44],[1,-31],[2,-29],[3,-38],[3,-31],[1,-22],[1,-31],[1,-30],[0,-10],[1,-15],[1,-22],[1,-25],[0,-20],[1,-20],[1,-15],[0,-18],[1,-17],[1,-22],[1,-22],[0,-20],[1,-18],[1,-28],[-41,0],[-4,0],[-36,-1],[-39,0],[-77,-1],[0,-16],[2,-46],[0,-43],[-3,-23],[-4,0],[-73,-2],[-58,-1],[-75,-2],[-17,-1],[-10,0],[-63,-2],[-121,-3],[-85,-1],[-62,-1],[-79,-2],[-66,-1],[-75,-1],[-59,-2],[-61,-1],[-58,-1],[-84,-2],[-63,-1],[-77,-1],[-77,-2],[-85,-1],[-11,0],[-1,25],[-1,30],[-1,30],[-1,30],[-1,30],[-1,29],[-1,30],[0,14],[-2,46],[-153,-1],[-1,0],[-1,0],[-154,-1],[-17,0],[-6,0],[0,-8],[3,-53],[2,-30],[1,-31],[1,-15],[3,-36],[1,-26],[2,-33],[2,-27],[0,-9],[-86,-1],[-94,-3],[-118,-2],[-89,-2],[-41,-1],[-27,0],[-1,0],[-63,-2],[-175,-4],[-113,-2],[38,35],[133,125],[75,69],[-37,0],[-51,-2],[-16,0],[-45,-1],[-173,-5],[-33,-31],[-54,-49],[-14,-13],[-93,-87],[-51,-47],[-3,-3],[-29,0],[-65,-1],[-46,0],[-41,1],[-7,0],[-2,0],[-80,1],[-85,-2],[-27,0],[-26,-1],[-139,-5],[-3,0],[-9,89],[-1,31],[-1,11],[-1,20],[-1,25],[-2,54],[-2,29],[0,16],[-3,53],[-4,47],[-7,97],[-7,44],[2,60],[-1,93],[-4,98],[-2,53],[-5,87],[-6,115],[-4,70],[-4,101],[-5,85],[-4,67],[-4,75],[-3,60],[-2,54],[-4,78],[-5,86],[-2,36],[-2,48],[-1,8],[-1,14],[0,14],[0,3],[-1,13]],[[34602,45745],[12,0],[39,1],[490,4],[29,1],[125,1],[2,0]],[[35299,45752],[6,0],[86,0],[15,0],[27,0],[31,1],[63,1],[235,3],[22,0],[77,1],[53,0],[107,2],[49,0],[158,3],[47,1],[67,1],[37,0],[11,-1],[84,0],[187,2],[50,1],[98,1],[18,0],[79,1],[15,0],[181,2],[4,0],[96,1],[51,0],[12,1],[26,0],[125,1],[109,1],[35,1],[93,1],[89,1],[13,0],[17,0],[58,1],[56,1],[28,0],[45,0],[104,1],[49,1],[31,0],[1,-24],[9,-317],[0,-24],[1,-22],[0,-10],[4,-198],[0,-9],[2,-50],[1,-25],[61,1],[70,1],[43,1],[1,-21],[3,-62],[9,-199],[3,-36],[427,5],[38,0],[0,17],[2,0],[42,0],[843,16],[-108,132],[-10,12],[-139,254],[-44,-1],[-16,0],[-540,-7],[0,-1],[-44,1],[-2,35],[0,3],[-1,21],[-1,33],[-1,41],[-2,40],[-1,36],[-1,23],[-1,22],[0,6],[2,0],[43,0],[259,4],[-3,79],[-4,100],[-4,109],[-1,25],[60,1],[49,0],[67,1],[81,1],[97,1],[70,1],[8,0],[53,1],[25,1],[19,1],[1,0],[23,1],[63,0],[32,-1],[68,1],[112,2],[76,1],[42,1],[47,0],[73,1],[70,1],[108,1],[71,1],[42,1],[6,0],[38,0],[70,1],[88,2],[84,1],[79,1],[58,0],[6,0],[110,2],[104,1],[114,1],[39,1],[43,0],[108,2],[88,1],[145,2],[75,2],[58,0],[2,0],[103,2],[48,1],[91,1],[113,1],[2,0],[3,-87],[1,-13],[0,-8],[40,1],[70,1],[61,0],[78,1],[70,1],[56,0],[4,0],[40,2],[0,10],[-3,51],[-2,46],[0,1],[103,1],[77,1],[26,1],[0,-1],[1,-25],[4,-96],[0,-4],[2,0],[184,3],[22,-1],[23,0],[97,1],[69,1],[10,0],[0,5],[-4,96],[-2,25],[0,1],[127,2],[91,1],[0,-1],[1,-43],[2,-40],[3,-49],[89,0],[61,1],[61,0],[2,-65],[1,-35],[2,-45],[1,-35],[1,-37],[1,-37],[1,-32],[1,-35],[2,-42],[10,0],[103,2],[41,0],[50,1],[1,0],[50,0],[127,2],[19,0],[13,0],[32,1],[110,1],[66,1],[53,1],[96,0],[61,1],[27,0],[104,1],[61,1],[14,0],[1,0],[11,0],[6,-9],[2,-1],[9,-256],[21,1],[9,-231],[4,-127],[-43,-2],[-22,-1],[-17,-1],[-157,-2],[-20,0],[-158,-2],[-41,-1],[-42,0],[-157,-2],[-11,0],[-9,0],[-157,-2],[-39,0],[5,-151],[3,-127],[2,-61],[3,-66],[-2,0],[-90,-1],[-114,-2],[-137,-2],[-73,-1],[-66,-1],[-142,-2],[-132,-2],[-73,-1],[-81,-1],[-129,-2],[-139,-2],[-67,-1],[-94,-1],[-118,-2],[-207,-4],[0,-27],[10,-289],[2,-66],[2,-74],[2,-53],[-58,-1],[-150,-2],[-150,-2],[-57,-1],[-56,-1],[-154,-2],[-67,0],[-53,-1],[-39,-1],[-48,-1],[-46,0],[-164,-3],[-140,-2],[-67,0],[-75,-1],[-14,-1],[-8,0],[-110,-1],[-150,-3],[-57,-1],[-2,0],[-64,0],[-274,-4],[-78,-1],[-61,-1],[-272,-4],[-84,-1],[-111,-2],[-235,-3],[-1,0],[-68,-1],[-115,-2],[-96,-2],[-144,-1],[-58,-1],[-4,0],[-3,85],[-5,138],[-7,205],[-3,64],[0,24],[-5,133],[-2,73],[-1,47],[-5,111],[-1,47],[-38,-9],[-755,-132],[-51,-9],[8,-225],[1,-46],[-28,-1],[-157,-1],[-14,-1],[-6,0],[-19,0],[-93,-1],[-45,-1],[-42,0],[-41,-1],[-157,-1],[-12,-1],[-8,0],[-155,-2],[-42,0],[-2,-13],[1,-75],[0,-35],[1,-37],[1,-42],[0,-40],[1,-45],[0,-45],[2,-36],[1,-21],[1,-23],[2,-28],[5,-75],[-1,0],[-39,0],[-69,-1],[-4,0],[-61,-1],[-61,0],[-22,0],[-40,-1],[-38,0],[-77,-1],[-93,-2],[-80,0],[-84,-2],[-76,-1],[-12,0],[-80,-1],[0,-1],[1,-25],[4,-91],[0,-10],[3,-55],[2,-55],[3,-58],[2,-60],[3,-47],[2,-48],[2,-33],[0,-8],[2,-20],[4,-51],[1,-37],[2,-42],[1,-48],[1,-52],[1,-38],[1,-38],[2,-55],[1,-43],[1,-42],[1,-32],[0,-35],[-835,-10],[-62,0],[-10,0],[-142,-2],[-51,-1],[-81,-1],[-73,-1],[0,1],[-1,22],[-3,64],[-1,42],[-2,45],[-1,41],[-1,37],[-1,31],[-2,44],[-2,39],[-1,27],[-1,23],[0,17],[-1,24],[-1,21],[-1,35],[-1,38],[-1,29],[0,14],[-1,19],[-2,60],[-2,56],[-1,47],[-1,21],[-1,17],[-1,37],[-2,59],[0,1],[0,4],[-2,40],[-3,71],[45,1],[81,1],[51,0],[109,1],[42,1],[3,0],[25,0],[-1,26],[-13,489],[-11,383],[-14,1],[-13,-1],[-13,0],[-12,0],[-16,-1],[-17,-1],[-17,-1],[-12,-1],[-21,-3],[-21,-5],[-26,-5],[-25,-6],[-26,-5],[-26,-6],[-21,-6],[-27,-7],[-28,-6],[-24,-7],[-23,-7],[-27,-7],[-24,-8],[-24,-8],[-28,-9],[-17,-5],[-17,-7],[-33,-11],[-1,-1],[-1,-2],[-2,-2],[-1,-2],[-2,-1],[-1,-2],[-2,-2],[-1,-2],[-1,-1],[-2,-2],[-1,-2],[-2,-2],[-1,-2],[-1,-1],[-2,-2],[-1,-2],[-1,-2],[-2,-1],[-1,-2],[-1,-2],[-2,-2],[-1,-2],[-1,-1],[-1,-2],[-2,-2],[-1,-2],[-1,-2],[-1,-1],[-2,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-2,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[-2,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[0,-2],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[-98,-2],[-36,0],[0,31],[-1,10],[0,19],[-2,48],[0,11],[0,15],[-1,18],[-1,48],[-2,42],[-1,27],[-2,63],[-2,35],[-1,37],[-1,45],[-2,39],[-1,54],[-2,48],[-2,56],[-2,48],[-2,66],[-2,37],[-1,43],[-2,35],[-4,111],[-2,28],[-3,38],[0,6],[-5,63],[-1,12],[0,23],[-2,34],[0,10],[-1,35],[-2,38],[0,11],[-2,44],[-2,63]],[[54939,9732],[4,29],[2,0],[21,0],[100,0],[87,1],[68,1],[82,1],[91,1],[70,1],[103,1],[66,0],[76,1],[68,1],[84,0],[123,1],[58,1],[21,0],[52,1],[59,0],[2,0],[13,0],[2,0],[3,0],[41,1],[54,0],[65,1],[17,0],[1,0],[10,0],[4,0],[4,0],[4,0],[34,1],[7,0],[1,0],[3,0],[14,0],[28,0],[10,0],[115,-2],[1,0],[49,0],[64,1],[95,1],[0,13],[-3,72],[-2,57],[-2,63],[-2,76],[-1,43],[-2,52],[8,0],[-5,111],[0,6],[-1,18],[0,6],[4,0],[18,0],[1,0],[30,1],[145,1],[82,1],[104,1],[20,0],[96,1],[113,1],[142,2],[65,1],[40,0],[147,1],[20,0],[0,-1],[1,-3],[0,-1],[5,-143],[3,-66],[41,0],[166,2],[9,-293],[210,2],[2,-47],[1,-23],[3,-59],[3,-90],[3,-82],[3,-70],[6,-138],[73,1],[156,2],[33,1],[54,0],[98,2],[105,1],[8,0],[73,1],[146,1],[82,1],[1,0],[0,-1],[2,-35],[3,-49],[2,-43],[3,-82],[1,-36],[0,-10],[41,0],[573,6],[8,1],[4,-62],[11,-192],[-1,-39],[-1,-5],[1,-25],[1,-31],[2,-39],[0,-21],[1,-18],[4,-137],[1,-57],[1,-20],[-6,0],[-157,-1],[3,-78],[-41,-1],[-42,0],[-333,-3],[4,-77],[156,1],[10,1],[10,0],[157,1],[82,1],[159,1],[10,1],[2,-40],[8,-195],[-4,0],[-6,0],[-160,-2],[-41,0],[0,-13],[4,-85],[2,-37],[0,-3],[0,-5],[0,-8],[5,-61],[0,-25],[-61,-1],[-57,-1],[-46,0],[-42,-1],[-80,-1],[-63,-1],[-68,-1],[-42,-1],[-52,-1],[-102,-1],[-11,0],[-11,0],[-120,1],[-76,-1],[-67,-1],[-140,-2],[-7,0],[-120,-2],[-82,-1],[-61,0],[-130,-2],[-16,0],[-153,-2],[-54,-1],[-53,0],[-129,-2],[-26,0],[-130,-2],[-79,-1],[-1,25],[-8,230],[-9,222],[-41,-1],[-157,-1],[-20,0],[-157,-2],[-83,-1],[-156,-1],[-10,0],[-10,0],[-28,-1],[-11,0],[-117,-1],[1,-5],[0,-1],[-23,-2],[-1,0],[-17,0],[-1,0],[-38,0],[-29,0],[-46,0],[-60,-1],[-32,0],[-28,-1],[-63,0],[-53,0],[-67,-1],[-47,-1],[-33,-1],[-48,-1],[-47,-3],[-31,-2],[-25,-1],[-53,-4],[-31,-3],[-49,-6],[-49,-9],[-9,-2],[-21,-4],[-33,-4],[-42,-6],[-35,-8],[-32,-7],[-35,-8],[-36,-8],[-43,-10],[-27,-6],[-39,-9],[-34,-8],[-27,-9],[-36,-12],[-16,-5],[-33,-9],[-38,-14],[-39,-17],[-29,-14],[-10,-6],[-57,-29],[-39,-21],[-39,-21],[-61,-30],[-5,-3],[-2,-1],[-1,0],[-2,-1],[-11,-6],[-3,0],[-1,15],[0,4],[-3,62],[-4,78],[-3,58],[-3,43],[-3,34],[-1,36],[-1,44],[-1,56],[-1,57],[-2,49],[-2,53],[-1,36],[-3,48],[-1,34],[-1,8],[0,4],[-2,52],[-1,70],[14,0],[108,1],[164,2],[162,2],[-1,26],[-20,417],[-2,42],[-2,25],[-14,0],[-61,0],[-120,-2],[-94,-1],[-140,-1],[-3,12],[-9,49],[-2,34],[-2,45],[-1,19],[-2,49],[-2,63],[-1,48],[-2,44],[-1,47],[-2,45],[0,24]],[[73768,10722],[999,-4],[1737,-6],[1231,-4],[442,-2],[1680,-6],[813,-3],[-20,202],[11,2],[33,6],[25,5],[34,9],[29,7],[35,9],[19,4],[38,9],[45,11],[35,10],[23,4],[30,7],[21,5],[5,1],[23,4],[22,4],[24,5],[27,8],[36,12],[37,9],[32,8],[18,5],[16,4],[22,4],[18,4],[41,10],[25,7],[36,11],[29,6],[27,7],[17,5],[21,3],[13,2],[10,2],[28,4],[22,5],[25,7],[18,5],[18,2],[19,6],[16,6],[7,2],[15,3],[18,1],[14,3],[17,5],[11,2],[272,63],[187,44],[58,13],[0,-19],[6,-32],[1,-12],[8,-49],[18,-60],[18,-60],[39,-116],[45,-136],[26,-80],[17,-50],[50,-145],[44,-133],[4,-15],[10,-26],[1,-3],[8,-23],[9,-29],[6,-19],[4,-19],[3,-11],[4,-26],[3,-21],[4,-45],[0,-7],[3,-75],[2,-59],[5,-166],[4,-149],[3,-120],[4,-107],[4,-140],[2,-160],[1,-36],[4,-210],[1,-91],[4,-218],[3,-419],[4,-48],[10,-324],[-3,-598],[0,-647],[-7,-452],[-3,-382],[-1,-123],[-2,-259],[0,-26],[66,-6],[495,-32],[1,0],[2,-1],[200,-17],[3,0],[414,-7],[296,-33],[301,-9],[218,48],[203,68],[2,0],[61,20],[443,239],[57,31],[40,34],[-11,92],[83,81],[-13,32],[2,22],[1,6],[13,5],[492,210],[81,25],[7,2],[60,19],[132,18],[74,10],[75,1],[51,-13],[9,-3],[68,-3],[5,0],[45,19],[57,54],[337,209],[724,450],[188,80],[14,3],[43,7],[55,-8],[68,-26],[36,-2],[0,83],[0,83],[-1,40],[0,4],[0,1],[0,92],[1,147],[0,153],[0,74],[0,29],[1,104],[0,113],[0,80],[1,47],[0,94],[-1,75],[0,1],[-2,146],[-1,57],[0,54],[-3,245],[0,5],[-1,9],[-6,469],[0,18],[0,11],[-4,274],[-3,223],[-2,112],[-5,370],[-1,22],[0,14],[-2,149],[0,26],[-4,259],[-1,60],[0,17],[-1,58],[0,56],[-4,246],[-2,143],[0,3],[-158,0],[-52,-1],[-40,0],[-105,0],[-72,0],[-76,1],[-158,-1],[-160,-1],[-41,-1],[-58,-1],[-136,-3],[-96,-2],[-106,-2],[-15,-1],[-28,0],[-84,-2],[-55,-1],[-123,-2],[-43,-1],[-41,-1],[-38,-1],[-3,0],[0,6],[-15,1010],[-15,0],[-29,2007],[0,25],[0,1],[57,0],[43,1],[538,6],[64,0],[85,1],[123,2],[791,8],[-1,73],[-2,125],[-2,182],[0,13],[-1,67],[-1,151],[0,8],[-1,41],[-1,59],[-1,81],[-2,135],[-1,78],[0,33],[-4,168],[-2,144],[-2,107],[-1,57],[0,1],[-1,30],[-3,218],[-2,76],[0,14],[-1,30],[0,18],[-2,117],[1,0],[291,-1],[73,0],[4,0],[62,-1],[27,0],[2,3],[23,30],[42,52],[24,26],[27,29],[18,16],[21,20],[55,47],[38,30],[21,16],[63,43],[66,40],[69,39],[53,26],[79,39],[16,8],[26,13],[55,26],[5,2],[61,30],[6,3],[271,132],[29,14],[59,30],[13,7],[51,27],[97,55],[93,57],[89,59],[64,45],[29,22],[54,41],[79,64],[75,66],[70,68],[67,70],[62,71],[58,73],[53,73],[5,9],[4,26],[6,9],[12,21],[28,48],[25,45],[29,55],[2,4],[23,43],[36,70],[33,67],[34,67],[17,30],[5,10],[8,17],[6,13],[35,71],[36,70],[33,71],[34,70],[34,70],[39,69],[10,20],[28,49],[36,80],[38,79],[34,68],[5,11],[13,25],[25,48],[33,75],[4,8],[6,13],[7,14],[9,17],[1,2],[0,1],[13,28],[1,0],[27,57],[225,462],[191,392],[62,127],[15,30],[0,1],[14,30],[30,61],[22,44],[45,93],[123,253],[16,32],[172,354],[16,36],[16,46],[5,23],[5,23],[2,15],[1,11],[1,6],[3,30],[0,1],[-1,19],[0,28],[-7,47],[-11,46],[-16,46],[-4,9],[-16,36],[-26,44],[-21,30],[-9,13],[-35,42],[-39,40],[-43,38],[-17,24],[53,1],[17,0],[52,0],[56,0],[127,1],[5,0],[46,1],[52,0],[11,0],[21,1],[27,1],[26,0],[51,2],[62,3],[109,9],[-4,3],[-146,94],[-58,34],[-102,61],[-63,37],[-7,4],[-24,14],[-29,17],[-20,12],[-39,23],[-4,2],[-50,30],[30,13],[69,30],[27,13],[23,10],[2,1],[16,8],[8,4],[11,7],[22,13],[42,29],[34,31],[48,51],[53,56],[65,73],[50,53],[43,47],[42,45],[6,6],[30,31],[6,7],[103,106],[53,55],[39,40],[24,25],[49,51],[54,56],[75,76],[38,33],[40,32],[46,32],[42,27],[83,46],[122,49],[47,18],[2,1],[34,15],[19,28],[0,3],[0,1],[5,49],[68,26],[56,29],[57,37],[53,35],[42,26],[45,28],[39,25],[84,50],[10,6],[20,10],[2,1],[33,16],[46,19],[183,64],[95,34],[25,8],[47,18],[9,4],[1,1],[8,4],[8,4],[5,5],[2,2],[2,3],[2,3],[2,4],[1,6],[0,1],[49,0],[95,1],[52,1],[-23,-24],[-18,-25],[-14,-26],[-9,-26],[-4,-28],[1,-27],[6,-27],[10,-27],[16,-26],[20,-24],[17,-17],[19,-17],[87,-85],[12,-12],[86,-105],[23,-27],[1,0],[37,15],[93,0],[689,220],[973,310],[599,191],[820,264],[5,-1],[19,39],[6,14],[184,-263],[1,-2],[12,-19],[13,-4],[4,-5],[3,-4],[0,-5],[-2,-5],[0,-1],[35,-47],[19,-15],[17,-16],[15,-16],[14,-17],[3,-4],[3,-11],[2,-12],[0,-11],[-1,-2],[21,-29],[188,-270],[6,-13],[10,-19],[23,-22],[20,-47],[31,-36],[53,-66],[52,-68],[50,-67],[48,-69],[46,-68],[44,-69],[43,-70],[40,-70],[33,-58],[-1,-5],[0,-5],[3,-4],[5,-4],[6,-3],[7,-2],[1,-1],[31,-21],[9,-10],[7,-9],[0,-6],[21,-28],[3,-3],[5,-2],[5,-1],[6,1],[13,3],[13,3],[14,1],[6,0],[44,7],[9,5],[9,3],[11,3],[11,1],[8,0],[7,-1],[7,0],[8,2],[3,1],[60,17],[9,4],[10,4],[11,3],[11,1],[12,1],[1,0],[12,-2],[12,-2],[11,-4],[5,-3],[3,-3],[1,-3],[-1,-3],[-2,-4],[-4,-2],[-6,-1],[-4,-1],[-5,-5],[-7,-4],[-8,-3],[-9,-2],[-234,-64],[-6,-2],[-5,-4],[-3,-4],[-1,-4],[0,-5],[1,-2],[2,-5],[0,-4],[-2,-5],[-2,-2],[200,-285],[63,-89],[3,-17],[-6,-30],[1,-7],[4,-8],[1,0],[1,-6],[0,-5],[0,-1],[0,-9],[-2,-10],[-2,-4],[3,-7],[5,-6],[7,-6],[5,-3],[14,-19],[16,-17],[7,-7],[8,-6],[1,0],[9,-4],[9,-4],[128,-23],[3,-128],[3,-23],[-2,-28],[0,-30],[-4,-17],[-2,-8],[28,-1],[0,-6],[-6,0],[-24,3],[0,6],[-7,0],[-32,-1],[-56,-1],[-301,-21],[-315,-14],[-1299,-7],[-1033,-5],[-24,-1],[-290,-1],[-102,-1],[2,-5],[0,-5],[2,-4],[1,-2],[-68,-1],[-103,34],[-13,5],[-25,24],[-509,492],[-33,32],[1,1],[3,8],[0,12],[-6,13],[-17,18],[-18,17],[-18,17],[-4,4],[-25,25],[-23,24],[-34,34],[-29,29],[-49,46],[-50,47],[-56,51],[-16,-4],[-99,-28],[-21,1],[-31,-2],[-36,-8],[-19,-6],[-36,-15],[-34,-15],[-40,-25],[-38,-23],[101,-101],[64,-64],[49,-49],[36,-36],[-21,-7],[-20,-8],[-134,-50],[-17,-6],[137,-138],[54,-54],[17,-17],[8,-7],[137,-138],[-93,-1],[0,-16],[1,-96],[0,-31],[-5,0],[-190,-2],[-123,-1],[1,-93],[0,-41],[0,-2],[0,-3],[0,-4],[1,-110],[0,-121],[1,-78],[1,-79],[0,-156],[0,-106],[0,-68],[0,-94],[0,-1],[0,-2],[1,-93],[0,-143],[2,-138],[0,-67],[0,-3],[0,-52],[0,-12],[0,-43],[0,-12],[0,-80],[-1,-126],[0,-106],[-1,-147],[0,-3],[0,-137],[0,-46],[-1,-205],[-1,-163],[1,-1],[11,0],[-8,-323],[0,-112],[0,-100],[0,-1],[-1,-126],[0,-10],[1,-176],[0,-76],[0,-146],[-34,-5],[-50,-7],[-134,-10],[0,-4],[0,-28],[0,-20],[0,-19],[0,-19],[0,-19],[0,-19],[0,-19],[0,-20],[0,-19],[0,-19],[0,-19],[0,-19],[-155,0],[0,-20],[0,-19],[0,-19],[0,-19],[0,-19],[0,-20],[0,-27],[0,-19],[0,-19],[0,-19],[0,-19],[0,-26],[0,-6],[-41,0],[-3,0],[-186,0],[-21,0],[-207,0],[-160,0],[-32,0],[0,-501],[0,-509],[0,-383],[0,-97],[0,-31],[-27,0],[-197,0],[-1,0],[-202,0],[-35,0],[-130,1],[-43,0],[-1,-46],[-2,-85],[0,-6],[-1,-55],[0,-13],[0,-32],[0,-48],[0,-83],[0,-79],[0,-60],[-41,0],[-49,0],[-68,0],[-43,-1],[-10,0],[0,-1],[-2,-39],[0,-29],[0,-17],[1,-51],[0,-27],[1,-59],[0,-32],[1,-39],[0,-48],[0,-28],[1,-49],[0,-30],[1,-40],[0,-18],[0,-1],[-1,-23],[0,-29],[0,-4],[0,-17],[1,-26],[0,-23],[-1,-17],[1,-32],[0,-21],[0,-17],[0,-34],[0,-26],[0,-38],[-1,-23],[0,-26],[0,-44],[0,-21],[0,-36],[0,-9],[-1,-40],[-1,-31],[1,-24],[0,-22],[0,-55],[0,-30],[-1,-32],[0,-23],[0,-38],[0,-30],[-1,-59],[0,-21],[0,-81],[2,-60],[0,-2],[5,-25],[1,-20],[0,-19],[0,-20],[0,-19],[0,-19],[0,-20],[0,-19],[0,-20],[0,-19],[1,-20],[0,-19],[0,-19],[0,-20],[0,-19],[0,-20],[0,-19],[0,-20],[0,-19],[1,-19],[0,-20],[0,-19],[0,-20],[0,-19],[0,-16],[18,0],[156,0],[29,0],[16,-1556],[618,5],[17,0],[76,0],[65,0],[1,0],[42,0],[4,0],[0,-1],[1,0],[162,1],[41,0],[210,0],[1,-181],[-1,-174],[-1,-5],[-3,-141],[-2,-46],[-4,-144],[-1,-114],[0,-74],[1,-79],[0,-61],[0,-34],[0,-33],[1,-37],[0,-31],[1,-13],[1,-127],[0,-4],[1,-143],[0,-63],[0,-22],[1,-88],[0,-69],[1,-124],[0,-17],[1,-81],[0,-20],[1,-27],[1,-85],[0,-1],[1,-139],[1,-71],[1,-55],[3,-76],[1,-11],[2,-61],[3,-61],[2,-32],[0,-6],[0,-13],[1,-20],[3,-54],[1,-22],[2,-39],[2,-60],[1,-44],[1,-49],[1,-72],[0,-55],[1,-55],[0,-47],[0,-57],[1,-71],[0,-110],[2,-72],[0,-25],[1,-26],[2,-113],[0,-33],[0,-32],[0,-71],[1,-105],[0,-31],[0,-35],[0,-23],[0,-50],[1,-74],[0,-17],[1,-46],[0,-3],[0,-13],[0,-33],[1,-45],[1,-79],[0,-38],[0,-14],[1,-89],[0,-11],[0,-11],[5,-63],[3,-49],[2,-12],[4,-22],[4,-22],[4,-17],[1,-3],[8,-35],[3,-9],[13,-44],[6,-21],[9,-23],[3,-9],[5,-10],[17,-40],[7,-16],[6,-11],[20,-41],[13,-24],[27,-46],[3,-4],[45,-74],[36,-60],[3,-6],[64,-107],[52,-95],[30,-56],[7,-81],[12,-74],[-16,-88],[-33,-103],[-43,-201],[-49,-187],[-33,-110],[-55,-243],[-65,-258],[-338,1],[-59,-244],[-163,-670],[-136,-558],[0,-2],[-233,1],[-386,1],[-40,0],[-210,1],[-36,0],[-542,2],[-1,505],[-8,0],[-123,0],[-11,31],[-9,23],[-18,60],[-14,59],[-8,60],[-4,61],[0,195],[0,25],[-1,26],[-1,459],[-1,50],[-2,459],[0,25],[-188,1],[-483,3],[0,-116],[-173,0],[0,-22],[-155,1],[-41,-2],[1,155],[-42,0],[-211,0],[-200,1],[-105,1],[-290,1],[-7,0],[-39,48],[-129,-8],[-79,-5],[-91,-8],[-93,-7],[-65,-6],[-53,-8],[-163,-20],[-83,-9],[-91,-11],[-121,-16],[-62,-8],[-145,-19],[-120,-9],[-62,-5],[-123,-3],[-105,-3],[-298,-2],[-78,-1],[-41,0],[-73,1],[-31,1],[-93,3],[-9,0],[-69,2],[1,-33],[-3,-37],[0,-40],[-4,-61],[3,-234],[1,-62],[-2,-138],[-1,-302],[1,-50],[2,-154],[-1,-137],[-3,-77],[-1,-35],[-10,-32],[-14,-47],[-18,-42],[-21,-47],[-22,-46],[-12,-39],[-13,-44],[-12,-47],[-10,-71],[-4,-184],[6,1],[90,3],[32,1],[51,1],[9,0],[32,-1],[95,-1],[97,-1],[0,-92],[0,-54],[0,-39],[2,-28],[4,-28],[7,-29],[9,-24],[1,-2],[14,-22],[51,-53],[29,-23],[110,-78],[63,-43],[119,-83],[15,-10],[223,-153],[178,-123],[99,-67],[81,-55],[124,-84],[114,-76],[81,-55],[141,-92],[192,-123],[72,-46],[48,-31],[71,-45],[161,-102],[122,-78],[135,-82],[18,-11],[104,-62],[82,-49],[159,-95],[29,-18],[16,-10],[69,-44],[90,-56],[61,-39],[50,-31],[130,-84],[8,-5],[107,-69],[94,-60],[74,-47],[91,-58],[38,-24],[129,-82],[96,-61],[171,-108],[29,-18],[91,-58],[119,-75],[58,-37],[72,-47],[39,-25],[87,-55],[124,-79],[46,-29],[2,-2],[182,-116],[1,0],[23,-15],[64,-41],[71,-46],[77,-50],[2,-1],[35,-23],[57,-37],[38,-24],[138,-89],[102,-64],[90,-57],[76,-48],[7,-5],[10,-6],[38,-24],[55,-35],[105,-68],[121,-76],[8,-4],[17,-11],[-74,0],[-195,1],[-50,0],[-114,0],[-117,0],[-90,1],[-18,0],[-630,1],[-40,1],[-1716,0],[-750,5],[-145,0],[-26,10],[-220,74],[-148,62],[-194,111],[-111,82],[-6,5],[-66,32],[-94,18],[-251,43],[-83,-10],[-110,-72],[-122,-86],[-415,-101],[-144,-36],[-355,-116],[-6,-2],[-1,0],[0,29],[1,102],[0,51],[1,189],[1,138],[0,18],[0,5],[1,90],[1,56],[1,52],[0,64],[4,201],[0,1],[-4,70],[-1,21],[-2,42],[-1,14],[0,125],[1,203],[0,12],[0,49],[1,116],[0,143],[1,131],[-3,98],[-4,113],[3,57],[-1,41],[7,83],[0,3],[0,127],[0,59],[0,41],[0,75],[0,32],[0,229],[-1,130],[0,51],[1,80],[1,253],[1,115],[0,42],[0,63],[-201,119],[-115,17],[-65,7],[-90,6],[-90,4],[-91,0],[0,-4],[-808,-15],[-191,-26],[-89,-12],[-1564,-4],[-901,-2],[-1,0],[-58,0],[-18,23],[-9,48],[-58,0],[-26,0],[0,-48],[-115,0],[-2,24],[-4,65],[-20,70],[-13,115],[5,74],[-153,1],[-18,0],[-39,0],[-41,0],[-16,0],[-138,0],[-220,1],[-380,0],[-122,-1],[-166,-1],[-71,-2],[-72,-2],[-61,0],[-173,3],[-257,0],[-128,0],[-31,0],[-62,0],[-47,0],[-134,-1],[-137,1],[-204,1],[-36,0],[-58,0],[-47,1],[-102,2],[-167,4],[-78,4],[-99,8],[-62,6],[-50,5],[-94,13],[-99,16],[-17,4],[-98,18],[-4,2],[19,48],[0,3],[2,11],[-2,11],[-4,15],[-8,12],[-9,7],[-16,10],[-22,9],[-19,8],[-54,21],[-123,45],[-130,49],[-255,94],[-103,39],[-21,8],[-80,29],[-54,21],[-61,23],[-21,8],[-53,20],[-110,42],[-79,29],[-94,37],[-92,34],[-87,27],[-56,15],[-23,5],[-39,8],[-53,9],[-24,4],[-38,5],[-31,3],[-18,2],[-23,2],[-13,1],[-18,1],[-33,1],[-38,3],[-62,3],[-65,4],[-31,1],[-56,4],[-29,1],[-36,2],[-28,3],[-19,2],[-28,5],[-37,9],[-28,8],[-34,13],[-29,14],[-33,21],[-75,59],[-47,39],[-47,40],[-63,52],[-45,38],[-60,52],[-89,81],[-13,12],[-5,5],[-2,2],[-4,3],[-103,100],[-59,65],[-44,57],[-22,26],[-39,41],[-108,106],[-23,22],[-54,52],[-83,79],[-52,49],[-30,29],[-65,61],[-16,15],[-39,38],[-4,3],[-49,48],[-78,74],[-55,52],[-56,54],[-2,2],[-77,74],[-3,2],[-98,98],[-1,1],[-60,60],[-11,11],[-25,26],[-27,26],[-28,28],[-20,21],[-32,31],[-27,26],[-28,27],[-13,13],[-24,22],[-29,28],[-20,20],[-25,23],[-28,27],[-48,47],[-25,24],[-40,37],[-22,21],[-29,29],[-22,20],[-19,18],[-27,25],[-17,17],[-19,18],[-20,19],[-24,23],[-11,11],[-13,12],[-19,18],[-20,19],[-38,36],[-36,34],[-25,25],[-33,31],[-42,40],[-25,23],[-2,3],[-39,36],[-21,21],[-5,4],[-47,45],[-39,37],[-21,20],[-20,19],[-7,7],[-15,15],[-12,11],[-21,19],[-26,25],[-16,16],[-17,16],[-23,23],[-12,11],[-22,20],[-12,12],[-20,20],[-16,14],[-24,23],[-14,14],[-5,5],[-15,14],[-23,22],[-17,16],[-17,17],[-9,8],[-13,13],[-23,22],[-13,11],[-11,12],[-19,18],[-21,21],[-12,13],[-16,17],[-18,19],[-14,15],[-1,2],[-13,14],[-9,11],[-14,16],[-15,18],[-13,16],[-4,5],[-10,13],[-9,11],[-19,25],[-9,11],[-14,20],[-10,14],[-10,15],[-9,13],[-3,4],[-8,12],[-5,8],[-9,14],[-9,14],[-10,16],[-11,18],[-11,20],[-7,12],[-8,13],[-7,14],[-11,22],[-4,7],[-1,3],[-6,12],[-28,61],[-14,33],[-3,6],[-47,130],[-13,43],[-10,40],[-8,36],[-2,12],[-4,19],[-6,36],[-3,21],[-2,21],[-3,22],[-2,32],[-2,32],[-1,28],[-2,43],[-1,43],[-2,56],[-2,50],[-2,57],[-4,103],[-1,18],[-2,71],[-2,53],[-3,75],[-4,96],[-4,121],[-5,137],[-2,51],[-4,117],[-1,42],[-2,66],[-3,89],[-1,17],[-1,25],[-3,90],[-4,100],[-2,60],[-1,38],[0,8]],[[44168,53112],[161,41],[6,-89],[17,-676],[11,-409],[-2,0],[-8,0],[-51,-1],[-64,-1],[-113,-2],[-53,-1],[-88,-1],[-59,-1],[-36,-1],[-90,-1],[-20,0],[-84,-2],[-55,0],[-68,-1],[-1,0],[-61,-2],[-115,-1],[-31,-1],[-43,0],[-118,-2],[-123,-2],[-9,0],[-92,-2],[-32,0],[-34,-1],[-41,-1],[-61,-1],[-74,-1],[-1,0],[-110,-3],[-96,-1],[-109,-1],[-106,-2],[-96,-1],[-108,-2],[-10,-1],[-68,-1],[-95,-5],[-25,-1],[-8,-1],[-14,0],[-10,-1],[-42,-2],[-88,-2],[-55,-1],[-8,0],[-88,-2],[-41,-1],[-72,-1],[-152,-2],[-55,-2],[-5,0],[-90,-2],[-116,-4],[-57,-2],[-69,-2],[-36,-1],[-41,-1],[-4,0],[-44,-1],[-44,-2],[-49,-1],[-7,0],[-9,-1],[-7,-1],[-4,-2],[-5,-2],[-1,-1],[-1,-1],[-4,-2],[-4,-4],[-1,-4],[0,-12],[0,-28],[0,-55],[0,-41],[-1,-43],[0,-41],[0,-70],[12,-187],[-19,0],[-89,-2],[-81,-1],[-44,-1],[-32,0],[-86,-2],[-89,-1],[-4,-1],[-86,-1],[-109,-2],[-7,0],[-110,-1],[-86,-2],[-28,0],[-72,-1],[-87,-2],[-38,0],[-55,-1],[-152,-2],[0,-1],[2,-66],[2,-51],[1,-43],[2,-46],[3,-50],[150,3],[56,1],[39,0],[83,1],[101,1],[98,2],[84,1],[14,0],[97,1],[105,2],[6,0],[68,1],[95,1],[43,1],[110,1],[123,2],[151,2],[37,1],[45,1],[23,0],[61,1],[79,2],[88,2],[84,1],[34,0],[40,1],[22,0],[43,0],[59,1],[101,1],[93,1],[65,1],[52,0],[66,1],[87,2],[61,2],[66,1],[52,1],[29,1],[50,1],[93,2],[107,2],[99,2],[101,1],[68,2],[108,4],[82,3],[54,0],[69,1],[23,1],[94,-1],[109,2],[135,2],[51,1],[11,0],[33,1],[172,3],[2,-50],[0,-6],[1,-34],[2,-58],[3,-58],[0,-9],[2,-13],[40,1],[155,2],[20,0],[138,3],[16,0],[10,0],[28,1],[23,0],[1,-55],[3,-162],[2,-117],[1,-53],[0,-7],[0,-39],[0,-11],[1,-95],[-26,-1],[0,1],[-3,-1],[-47,-1],[-22,0],[-46,-1],[-31,0],[-93,-2],[-66,-1],[-46,0],[-15,0],[-25,-1],[-1,24],[-2,54],[-1,21],[0,2],[0,1],[-1,41],[-2,41],[-3,72],[-1,0],[-169,-3],[-37,0],[-53,-1],[-88,-2],[-91,-1],[-99,-2],[-79,-2],[-8,0],[-72,-1],[-79,-1],[-56,-1],[-1,7],[-3,70],[-2,41],[0,5],[-2,44],[-3,54],[0,14],[-39,-1],[-595,-9],[-156,-3],[-42,0],[-1,0],[2,-38],[0,-2],[1,-42],[2,-49],[2,-56],[1,-50],[3,-67],[2,-53],[1,-41],[2,-26],[0,-23],[1,-22],[1,-22],[-65,-1],[-93,-2],[-87,-1],[-125,-2],[-120,-2],[-101,-2],[-5,128],[-1079,-18],[0,18],[-1,34],[-1,28],[-1,30],[0,3],[0,3],[-1,2],[-2,2],[-2,1],[-3,1],[-5,1],[-4,1],[-4,0],[-4,0],[-106,-1],[-68,-1],[-8,0],[-81,-2],[-98,-1],[-103,-2],[-82,-1],[-59,-1],[-33,0],[-98,-2],[-52,0],[-21,-1],[-1,0],[-35,0],[-130,-3],[-41,0],[-50,-1],[-82,-2],[-26,0],[-61,-1],[-70,-1],[-29,-1],[-39,-1],[-5,0],[-61,-1],[-13,0],[-60,-1],[-54,-1],[-30,-1],[-49,-2],[-38,-1],[-52,-1],[-75,-1],[-41,0],[-2,0],[-76,-1],[-129,-2],[-4,0],[0,-9],[1,-16],[3,-96],[1,-12],[3,-96],[0,-26],[-9,0],[-60,-1],[-59,0],[-60,-1],[-19,0],[-57,-1],[-65,0],[-76,-1],[-12,-1],[-1,0],[-1,34],[-3,94],[-4,106],[-1,22],[0,22],[0,40],[-1,57],[-1,0],[-20,1],[-22,1],[-2,0],[-29,0],[-31,0],[-31,-1],[-32,0],[-31,0],[-31,-1],[-13,0],[-19,0],[-25,0],[-6,0],[-31,-1],[-7,0],[-25,0],[-19,0],[-12,0],[-31,-1],[-30,0],[-30,0],[-31,-1],[-30,0],[-30,0],[-30,-1],[-30,0],[-30,0],[-30,-1],[-30,0],[-3,0],[-27,-1],[-10,0],[-38,0],[0,-1],[0,-3],[-40,0],[1,-10],[-411,-3],[0,-5],[2,-80],[1,-25],[0,-1],[-1,0],[-15,0],[1,-15],[1,-9],[0,-1],[4,-85],[0,-11],[0,-6],[0,-6],[0,-8],[3,-88],[1,-26],[0,-1],[-410,-5],[-2,0],[-139,0],[-14,0],[-97,0],[-51,-2],[-4,0],[-56,-3],[-6,0],[-27,-2],[-73,-6],[-65,-6],[-36,-3],[-34,-1],[-41,-2],[-15,0],[-35,-1],[-2,0],[-32,0],[-10,0],[-22,-1],[-31,0],[1,-19],[3,-82],[0,-12],[3,-96],[1,-25],[1,-25],[3,-96],[1,-12],[2,-64],[1,-32],[2,-23],[0,-1],[0,-1],[83,1],[107,2],[172,1],[335,5],[91,1],[37,0],[258,3],[7,0],[231,3],[193,2],[109,1],[2,0],[105,2],[256,3],[374,4],[91,1],[10,0],[1,0],[52,1],[73,1],[83,0],[1,0],[97,1],[68,1],[82,1],[71,0],[66,1],[20,0],[17,0],[20,1],[4,0],[44,0],[46,1],[78,1],[-1,-2],[-25,-53],[-3,-19],[-1,-28],[1,-26],[1,-24],[2,-32],[2,-31],[1,-38],[2,-37],[2,-42],[2,-39],[2,-39],[3,-52],[2,-42],[2,-58],[1,-10],[1,-21],[2,-42],[1,-15],[1,-19],[0,-6],[2,-53],[2,-27],[3,-65],[0,-1],[1,-9],[0,-9],[2,-38],[1,-14],[0,-9],[1,-20],[1,-21],[1,-17],[2,-50],[1,-43],[2,-43],[2,-32],[0,-3],[2,-39],[2,-40],[2,-51],[1,-35],[1,-29],[4,-84],[3,-44],[1,-16],[2,-42],[2,-24],[1,-52],[1,-11],[3,-69],[2,-47],[2,-49],[1,-31],[3,-54],[3,-59],[1,-6],[2,-42],[2,-47],[1,-7],[-64,5],[-114,0],[-27,0],[-5,0],[-57,-1],[-85,-1],[-67,-1],[-62,-1],[-68,0],[-79,-1],[-8,0],[-55,-1],[-81,-1],[-7,0],[-57,0],[-67,-1],[-15,0],[-127,-1],[-116,-1],[-24,0],[-69,-1],[-50,-1],[-161,-2],[-94,-1],[-63,-1],[-2,0],[-48,0],[-75,-1],[-116,0],[-120,-1],[-74,-1],[-65,-1],[-127,-1],[-115,-1],[-76,-1],[-47,-1],[-140,-1],[-54,-1],[-78,0],[-51,-1],[-26,-1],[-8,-1],[-7,-1],[-6,-2],[-5,-4],[-3,-4],[-1,-5],[-1,-3],[-1,-4],[3,-43],[1,-51],[7,-127],[9,-181],[4,-85],[5,-111],[4,-78],[13,-268],[3,-57],[1,-25],[12,-225],[7,-151],[0,-7],[2,-29],[4,-90],[0,-15],[1,-23],[5,-115],[2,-49],[-120,-60],[-32,-17],[-1,0],[-34,-18],[-194,-98],[-80,-40],[-3,-2],[-62,-31],[-71,-36],[-3,-1]],[[34602,45745],[-50,-1],[-92,-1],[-67,-1],[-11,0],[-99,-1],[-59,0],[-39,-1],[-1,0],[-80,0],[-83,-1],[-44,-1],[-74,-1],[-90,-1],[-36,0],[-10,0],[-3,26],[-44,992],[-21,-1],[-2,3],[-1,1],[-2,0],[-9,4],[-5,2],[-72,2],[-44,0],[-1,0],[-74,-1],[-55,-2],[-56,-1],[-75,0],[-2,-1],[-47,0],[-73,0],[-59,-1],[-30,0],[-37,-1],[-75,-1],[-95,1],[-3,0],[-2,30],[-3,49],[-1,29],[-2,38],[-3,55],[-1,28],[-3,56],[-2,47],[-1,33],[-2,37],[-6,105],[-51,0],[-99,-1],[-58,-1],[-1,25],[-5,201],[-267,-3],[-300,-3],[-62,-2],[0,1],[-2,46],[-4,69],[-2,50],[-3,72],[-2,25],[-1,25],[-87,-1],[-83,-1],[-23,0],[-13,0],[-11,0],[-18,-1],[-65,0],[-117,-2],[-59,0],[-13,0],[-48,-1],[-54,0],[-33,0],[-25,-1],[-81,-1],[-45,-1],[-58,0],[-67,-1],[-62,0],[-77,-1],[-17,-1],[-31,0],[-64,-1],[-35,0],[-63,-1],[-64,0],[-67,-1],[-40,-1],[-26,0],[-9,0],[-11,0],[-36,-1],[-49,0],[-112,-1],[-1,0],[0,-1],[1,-26],[3,-62],[2,-53],[1,-34],[3,-49],[2,-52],[2,-58],[3,-54],[2,-62],[3,-62],[1,-29],[2,-40],[2,-36],[1,-28],[1,-24],[1,-33],[1,-21],[1,-9],[1,-30],[1,-32],[2,-32],[2,-50],[1,-29],[2,-35],[2,-50],[2,-33],[1,-28],[0,-24],[1,-14],[3,-60],[1,-41],[3,-50],[1,-38],[2,-35],[2,-34],[2,-35],[1,-34],[1,-10],[1,-35],[3,-46],[1,-23],[0,-6],[1,-31],[3,-61],[0,-19],[2,-43],[1,-29],[0,-4],[1,-1],[1,-40],[1,-39],[3,-60],[3,-49],[0,-9],[2,-34],[2,-40],[3,-54],[-43,0],[-71,-1],[-53,0],[-4,-1],[-25,0],[-57,-1],[-33,0],[-54,0],[-80,-1],[-29,0],[-41,-1],[-80,-1],[-57,0],[-82,-1],[-22,0],[-66,-1],[-38,0],[-2,0],[-53,-1],[-43,0],[-76,-1],[-87,-1],[-74,-1],[-43,0],[-42,-1],[-31,0],[-46,-1],[-77,0],[-44,-1],[-46,0],[-63,-1],[-41,0],[-66,-1],[-7,0],[-31,0],[-68,-1],[-54,-1],[-51,0],[-23,0],[-48,-1],[-49,-1],[-48,0],[-19,-1],[-14,0],[-7,0],[-27,0],[-58,-1],[-66,0],[-58,-1],[-2,0],[-28,0],[-65,-1],[-53,0],[-42,-1],[-17,0],[-1,0],[1,-25],[6,-168],[4,-109],[2,-44],[1,-38],[1,-38],[1,-30],[-1,-3],[3,-56],[1,-40],[1,-2],[1,-58],[3,-79],[0,-1],[1,-31],[2,-36],[0,-6],[0,-18],[3,-73],[1,-25],[1,-50],[2,-51],[2,-58],[0,-3],[1,-25],[2,-55],[1,-47],[2,-32],[2,-69],[2,-61],[2,-54],[2,-45],[2,-41],[2,-44],[0,-19],[10,0],[0,-1],[5,-124],[2,-54],[2,-51],[2,-57],[2,-55],[1,-34],[2,-53],[2,-71],[-3,-12],[-72,-2],[-75,0],[-69,0],[-1,0],[-70,0],[-73,0],[-72,-1],[1,-43],[2,-35],[8,-134],[3,-41],[2,-60],[0,-9],[1,-24],[0,-8],[2,-49],[1,-40],[3,-68],[2,-64],[2,-53],[3,-77],[1,-41],[1,-21],[0,-25],[1,-34],[3,-70],[1,-53],[2,-50],[2,-23],[41,0],[76,1],[47,0],[44,0],[1,-37],[1,-23],[1,-24],[1,-29],[0,-22],[1,-32],[2,-31],[1,-13],[9,0],[158,1],[41,1],[0,-1],[0,-11],[1,-20],[3,-59],[0,-19],[3,-70],[1,-13],[0,-2],[0,-2],[0,-7],[0,-9],[3,-107],[0,-7],[1,-34],[1,-59],[-41,0],[-167,-2],[1,-39],[1,-21],[1,-33],[1,-36],[1,-31],[1,-36],[1,-23],[1,-46],[-42,0],[-26,0],[-38,-1],[-40,0],[-39,-1],[-36,0],[-17,0],[-1,-26],[1,-18],[0,-21],[1,-21],[1,-41],[0,-1],[-46,0],[-131,-1],[-141,-2],[-24,0],[-19,0],[-16,0],[-9,0],[-28,0],[-12,0],[-1,0],[-9,-1],[-11,0],[-7,0],[-22,0],[-83,0],[-142,-1],[-65,0],[-79,1],[-144,-2],[-1,0],[-130,-2],[-100,0],[-3,0],[-131,-1],[-131,-2],[-128,-1],[-19,0],[-159,-3],[-89,138],[-137,229],[-24,41],[-9,21],[-7,22],[-8,35],[-8,48],[-4,101],[0,24],[-11,362],[409,5],[9,-216],[627,8],[-1,53],[0,27],[-1,28],[-1,25],[0,24],[0,21],[-2,35],[11,0],[76,0],[123,1],[-4,111],[-1,61],[-4,77],[-2,70],[-2,45],[-2,66],[-1,51],[-1,57],[-1,17],[-1,24],[0,17],[-2,48],[-2,68],[0,2],[-1,33],[-3,70],[-2,71],[0,8],[-1,22],[-1,28],[0,20],[-1,17],[-1,39],[0,1],[79,0],[45,1],[2,0],[83,0],[2,0],[48,1],[57,1],[51,0],[9,0],[0,1],[7,1],[-1,25],[-15,458],[-1,25],[-1,26],[-16,459],[0,25],[-175,0],[-1,25],[-1,25],[-1,27],[-2,27],[-1,25],[-1,31],[-1,28],[-1,31],[-1,32],[-5,0],[0,4],[-1,23],[-1,23],[-161,-1],[-41,0],[-1,40],[-2,58],[-2,58],[-2,53],[-1,34],[-1,43],[-1,18],[-1,23],[0,17],[-2,49],[-2,46],[-1,37],[-1,46],[-2,40],[-1,35],[0,4],[-2,46],[-1,25],[0,7],[0,8],[-1,33],[-1,30],[-5,30],[-4,40],[-2,27],[-1,12],[-1,46],[-1,37],[-1,33],[-1,32],[-1,37],[0,34],[-2,50],[0,21],[0,18],[-1,37],[0,26],[-1,1],[0,24],[-2,47],[-1,37],[-2,41],[-2,49],[-1,48],[-2,47],[-1,40],[-2,44],[-1,36],[-1,52],[1,47],[0,45],[-1,44],[-1,36],[-1,32],[-2,34],[-1,37],[-1,39],[-2,53],[-2,36],[-1,31],[-1,31],[-2,37],[0,9],[0,12],[-3,32],[-42,4],[-40,0],[-63,-1],[-60,-1],[-24,0],[-61,-1],[-82,-1],[-43,-1],[0,25],[-2,29],[-2,41],[-1,14],[-2,24],[-2,57],[-2,51],[-2,58],[-2,61],[-2,51],[-2,45],[0,55],[-411,-4],[-13,498],[-5,210],[66,13]],[[21499,67914],[79,-4],[0,31],[-3,66],[-4,94],[37,0],[31,1],[41,0],[41,1],[16,0],[52,0],[77,1],[23,0],[17,0],[18,1],[47,0],[65,1],[18,0],[4,0],[40,1],[2,0],[47,0],[105,1],[56,1],[44,0],[98,1],[65,1],[66,1],[122,1],[23,0],[137,1],[69,-1],[2,0],[40,-1],[126,1],[125,1],[166,1],[321,3],[55,0],[87,1],[230,3],[310,3],[11,1],[12,0],[185,2],[1,0],[-2,34],[-1,15],[-2,24],[-1,17],[-3,61],[0,6],[0,9],[-2,49],[-1,29],[-1,15],[-2,50],[-1,36],[-1,11],[-2,32],[0,6],[-2,33],[-2,35],[-1,33],[-1,35],[-1,11],[-2,29],[-1,23],[2,0],[79,1],[25,0],[14,0],[14,0],[28,0],[46,0],[64,1],[59,0],[46,1],[41,0],[29,1],[47,0],[35,1],[29,0],[41,1],[29,0],[46,1],[30,0],[35,0],[29,0],[17,1],[54,1],[-3,61],[-3,63],[-2,41],[-1,35],[-1,29],[-1,16],[0,9],[-1,11],[-3,68],[-5,44],[70,1],[31,1],[60,0],[97,1],[108,2],[72,1],[84,1],[55,1],[78,1],[50,1],[-11,250],[-3,125],[-8,126],[-2,37],[-2,33],[-1,49],[-1,27],[-1,18],[-3,50],[-1,12],[-11,10],[-12,11],[-5,5],[-15,267],[-19,0],[-64,-1],[-72,-3],[-79,-2],[-108,-3],[-121,-1],[-54,-1],[-2,0],[-99,-1],[-110,-2],[-100,-1],[-116,-2],[-35,0],[-52,-1],[-75,-1],[-69,-2],[-42,-1],[-35,0],[-30,-1],[-30,0],[-103,-2],[-30,0],[-62,-1],[-2,64],[-1,31],[-2,45],[-1,48],[-2,78],[-1,37],[-3,92],[-1,57],[-1,27],[-1,32],[-1,9],[33,4],[108,0],[48,0],[9,0],[0,25],[0,20],[-1,19],[0,19],[-1,19],[0,20],[-1,12],[0,19],[-1,19],[0,19],[-1,19],[0,19],[0,27],[-58,-1],[-105,-2],[-33,-3],[0,2],[-1,1],[-3,67],[-1,58],[0,1],[-1,46],[-1,12],[0,6],[-2,64],[0,5],[-2,50],[0,10],[-3,94],[-1,44],[0,10],[-2,42],[-1,52],[-1,63],[-2,64],[-2,78],[0,17],[-1,53],[-3,111],[-3,77],[-1,27],[-1,26],[-6,160],[0,2],[-1,42],[0,1],[-2,69],[0,5],[0,39],[-1,75],[0,20],[0,1],[0,44],[1,56],[-4,136],[-3,63],[-3,70],[-2,104],[-1,35],[-1,45],[-2,66],[0,126],[-2,62],[-2,71],[-3,115],[0,94],[0,25],[212,4],[21,6],[197,2],[4,-184],[210,1],[211,3],[-11,253],[-2,74],[-2,55],[-1,40],[-3,87],[-1,35],[-3,89],[-2,88],[0,7],[-1,27],[0,18],[7,116],[494,6],[1,40],[-7,161],[-23,542],[-1,29],[-161,52],[-10,4],[-62,20],[-127,41],[-94,31],[-21,7],[-111,36],[-26,8],[-118,37],[-104,35],[-34,11],[-77,26],[-20,6],[-47,17],[-52,19],[-97,32],[-118,36],[-4,100],[-1,22],[-1,20],[-1,17],[0,2],[-1,17],[53,-6],[352,-36],[144,-14],[-6,148],[78,31],[154,1],[41,1],[-25,547],[100,1],[93,1],[134,2],[2,0],[9,0],[80,0],[66,0],[10,1],[80,0],[139,1],[0,1],[-1,25],[-3,102],[-3,102],[-1,25],[-7,232],[-1,26],[-15,486],[-1,26],[-13,0],[-65,0],[-115,-2],[-102,-1],[-5,167],[-3,86],[0,3],[-2,105],[-1,5],[0,24],[-2,71],[-2,50],[-1,54],[-1,33],[-1,30],[0,17],[-6,185],[-1,53],[-1,0],[-106,-1],[-23,0],[-76,-1],[-1,0],[-95,-2],[-34,0],[-29,0],[-49,-1],[-1,0],[-2,37],[-3,103],[120,2],[203,2],[93,1],[93,1],[25,1],[9,0],[149,2],[16,0],[24,0],[20,1],[16,0],[19,0],[46,0],[10,0],[185,2],[235,3],[2,0],[13,0],[205,2],[9,0],[19,0],[150,2],[0,-1],[3,-88],[1,-11],[1,-41],[4,-123],[1,-17],[5,-164],[3,-67],[-41,-1],[-368,-3],[-420,-5],[1,-25],[3,-97],[0,-12],[3,-96],[0,-16],[1,-4],[830,3],[2,-65],[2,-63],[-235,-3],[0,-6],[3,-97],[1,-24],[26,0],[0,-1],[4,-89],[1,-38],[1,-10],[1,-28],[2,-59],[2,-45],[2,-63],[2,-48],[2,-56],[0,-4],[1,-27],[1,-45],[1,-45],[3,-59],[2,-45],[1,-37],[1,-22],[0,-16],[2,-29],[1,-38],[2,-41],[1,-28],[1,-22],[1,-2],[1,-1],[55,0],[44,1],[107,2],[2,-28],[3,-100],[5,-127],[0,-1],[-204,-2],[-120,-2],[0,-1],[0,-3],[4,-96],[1,-25],[2,0],[117,1],[5,0],[97,1],[103,1],[3,-63],[1,-41],[2,-43],[1,-45],[2,-12],[3,-33],[3,-9],[1,-3],[6,-4],[8,-2],[5,-1],[8,0],[28,0],[69,1],[60,1],[14,0],[7,0],[62,1],[144,2],[164,2],[46,1],[79,1],[129,0],[0,-1],[1,-36],[2,-27],[2,-70],[0,-7],[3,-81],[7,-165],[1,-58],[2,-47],[0,-23],[0,-1],[1,-19],[-40,0],[-218,-3],[-129,0],[-135,3],[-20,1],[-115,6],[-134,9],[-42,3],[25,-666],[1,-5],[4,-98],[2,-44],[3,-69],[-1,0],[2,-55],[3,-70],[0,-17],[0,-2],[-89,-1],[-118,-1],[-28,0],[-180,-2],[-132,-1],[2,-37],[0,-23],[3,-93],[11,-307],[1,-35],[1,-30],[6,-191],[3,-89],[4,-122],[3,-86],[498,6],[693,7],[68,1],[41,1],[0,-1],[2,-42],[1,-29],[0,-21],[1,-35],[3,-69],[0,-11],[1,-46],[1,-8],[1,-60],[2,-58],[2,-60],[1,-29],[1,-38],[1,-1],[0,-22],[1,-28],[3,-77],[2,-66],[1,-20],[1,-40],[1,-20],[1,-32],[2,-43],[0,-14],[0,-18],[1,-85],[2,-42],[3,-50],[1,-51],[1,-29],[1,-34],[3,-93],[-131,-3],[-265,-4],[-151,-2],[-291,-4],[2,-64],[2,-62],[-101,-2],[-2,0],[-9,0],[-20,0],[-95,-1],[-97,-1],[-115,-3],[0,-3],[1,-44],[1,-23],[0,-12],[1,-41],[1,-58],[2,-70],[440,6],[1,-7],[2,-71],[1,-35],[1,-13],[0,-15],[1,-39],[3,-73],[3,-83],[1,-49],[0,-1],[3,-88],[0,-1],[2,-42],[2,-64],[2,-63],[1,-40],[2,-56],[1,-28],[0,-2],[3,-103],[0,-2],[1,-21],[2,-59],[0,-27],[1,-41],[0,-9],[1,-10],[0,-9],[1,-31],[2,-67],[58,1],[164,2],[151,2],[66,1],[89,1],[312,5],[1,-33],[2,-41],[1,-40],[0,-5],[1,-11],[2,-83],[1,-23],[2,-30],[85,1],[27,1],[130,2],[84,1],[93,2],[80,1],[38,0],[109,2],[78,1],[34,0],[18,0],[64,2],[15,0],[74,2],[100,1],[136,2],[106,2],[38,0],[108,2],[64,1],[42,0],[122,1],[35,1],[5,0],[50,1],[131,2],[28,1],[35,0],[132,3],[40,0],[71,1],[146,2],[146,3],[1,-39],[17,-494],[423,-37],[21,0],[28,1],[387,6],[42,-1],[1,0],[2,-69],[2,-44],[0,-1],[2,-43],[1,-34],[0,-5],[1,-11],[0,-10],[2,-59],[0,-2],[3,-54],[1,-27],[1,-65],[2,-27],[0,-1],[1,-32],[2,-75],[1,-38],[1,-30],[2,-85],[3,-114],[0,-6],[1,-5],[3,-88],[1,-39],[0,-1],[1,-18],[0,-4],[1,-24],[1,-29],[3,-83],[3,-90],[2,-60],[3,-42],[3,-43],[0,-9],[0,-6],[0,-7],[0,-12],[0,-21],[0,-11],[0,-11],[1,-12],[0,-2],[0,-1],[0,-1],[0,-20],[0,-10],[0,-7],[0,-9],[1,-29],[1,0],[206,2],[10,0],[159,2],[42,0],[41,0],[165,2],[51,1],[156,1],[79,1],[22,0],[157,2],[40,0],[0,-7],[1,-10],[0,-14],[-40,-1],[-11,0],[-42,-1],[-53,-1],[-33,0],[-12,0],[-5,0],[-1,0],[-1,0],[-7,0],[0,-5],[0,-8],[0,-15],[0,-21],[1,-53],[4,-82],[2,-85],[2,-71],[2,-54],[2,-69],[1,-43],[0,-23],[1,-5],[1,-4],[2,-4],[5,-5],[11,-3],[8,-1],[12,-1],[12,-1],[6,0],[11,-1],[45,-2],[97,-4],[0,-4],[3,-118],[0,-12],[-104,4],[-73,4],[-106,5],[-6,0],[-204,10],[-201,9],[-36,2],[-4,0],[-179,6],[-216,8],[-1,0],[-158,4],[-7,-37],[-1,-9],[-10,-58],[-2,-9],[-16,0],[-95,1],[-134,3],[-129,2],[-108,2],[-132,3],[-22,1],[-20,1],[-18,1],[-43,1],[-68,1],[-102,1],[-123,2],[-129,2],[-114,3],[-100,2],[-97,2],[-43,2],[-2,0],[-28,1],[-93,0],[-93,1],[-130,3],[-80,2],[-149,2],[-66,2],[-64,1],[-72,2],[-56,2],[-35,2],[-22,0],[-423,-5],[-70,0],[-67,0],[-68,0],[-158,-1],[-1,0],[-1,12],[-1,30],[-127,-1],[1,0],[-2,38],[0,22],[0,7],[-63,3],[-68,4],[-74,3],[-84,4],[-6,0],[-87,4],[-72,3],[-94,5],[-49,2],[-22,1],[-95,5],[2,-26],[0,-1],[0,-2],[-752,35],[-45,2],[-84,20],[-221,5],[-28,0],[-300,7],[-251,5],[-47,1],[-184,4],[-150,3],[-206,3],[-55,1],[-31,1],[-81,2],[-84,1],[-2,56],[0,9],[-3,65],[-2,42],[0,17],[-35,3],[-114,6],[-51,2],[-128,6],[-391,18],[-120,6],[-1,0],[-177,8],[-251,12],[-279,13],[-127,6],[0,-12],[1,-33],[4,-110],[-142,-1],[-44,-1],[-16,0],[-65,-1],[-42,0],[-82,-1],[-103,-1],[-4,0],[-94,-1],[-13,0],[-108,-2],[-8,0],[-179,-2],[-48,0],[-38,-1],[-38,0],[-37,0],[-9,0],[-29,-1],[-37,0],[-38,-1],[-28,0],[-146,-1],[-70,-1],[-14,0],[-7,0],[-1,23],[-1,17],[-1,14],[0,11],[-1,8],[-1,13],[0,9],[-2,9],[0,10],[0,3],[-7,121]],[[8758,88340],[21,-435],[18,-466],[35,1],[5,-213],[9,-460],[131,-272],[18,-37],[19,-64],[4,-93],[771,13],[23,-343],[-612,-7],[9,-168],[-225,-3],[-8,169],[-826,-10],[-14,337],[115,1],[-8,171],[478,6],[-62,103],[-36,77],[-15,56],[-30,567],[-206,-4],[-573,-10],[-5,264],[-6,226],[67,24],[-360,367],[416,162],[101,24],[746,17]],[[40527,67339],[310,2],[0,-3],[1,-22],[0,-15],[3,0],[65,0],[66,1],[0,-1],[11,0],[113,1],[1,0],[8,0],[1,0],[0,-3],[1,-19],[0,-9],[1,-12],[-9,-39],[127,5],[6,-131],[142,5],[-1,15],[-1,20],[-2,56],[-1,9],[0,37],[-1,48],[-3,103],[-2,67],[-3,82],[-2,75],[-3,70],[-1,58],[0,2],[-1,15],[-1,46],[-1,37],[0,17],[-4,63],[-1,55],[-41,0],[-25,-1],[-479,-4],[6,-81],[-296,-7],[-3,13],[-1,0],[-106,-1],[-90,-1],[-19,0],[-152,-2],[-121,-1],[-68,-1],[-41,0],[-121,-2],[-96,-1],[-17,330],[-1699,-22],[0,7],[-1,17],[-4,115],[16,0],[26,0],[158,2],[10,0],[3,0],[7,0],[159,2],[82,1],[159,1],[20,1],[159,1],[41,0],[1,0],[-1,21],[-6,162],[19,3],[241,4],[143,2],[0,33],[-2,52],[-1,26],[-1,31],[-1,26],[-2,41],[0,1],[-3,67],[0,28],[-8,0],[-12,0],[-31,-1],[-31,0],[-94,-1],[-7,122],[40,0],[-1,28],[-1,15],[-1,28],[-2,47],[-2,20],[-2,2],[-9,2],[-8,2],[-10,0],[-54,-1],[-18,0],[-54,2],[-109,5],[-1,15],[-1,31],[-2,61],[0,8],[-2,27],[-1,38],[-3,86],[-4,94],[0,7],[-1,31],[-3,58],[-1,31],[0,7],[-4,95],[-1,27],[-1,37],[-2,50],[-2,34],[0,10],[-1,30],[-1,25],[-3,72],[-41,-1],[-159,-1],[-7,0],[-1,13],[4,27],[-1,53],[0,8],[-2,4],[-2,2],[-3,2],[-5,3],[-9,5],[-15,7],[-21,7],[-23,6],[-8,1],[-13,3],[-59,11],[-13,3],[-18,1],[-29,0],[-41,0],[-4,0],[-60,-1],[-94,0],[-11,-1],[3,-68],[4,-88],[-11,0],[-158,-1],[-42,0],[-5,119],[-1,37],[0,16],[-5,117],[0,2],[-3,85],[-7,139],[-3,87],[-40,18],[-9,5],[-40,18],[-40,19],[-39,18],[-19,9],[-21,10],[-38,18],[-38,19],[-38,19],[-34,16],[-42,21],[-42,21],[-37,18],[-38,20],[-39,20],[-34,17],[-10,5],[-10,5],[-28,15],[-36,19],[-36,19],[-36,19],[-11,6],[-43,22],[1,-8],[-537,307],[2,0],[-15,9],[-2,1],[-30,17],[-95,57],[-20,13],[-12,7],[-31,19],[-121,74],[-42,26],[-42,28],[-17,10],[-1,1],[-87,56],[-97,63],[-20,13],[-19,14],[-75,50],[-67,45],[-177,124],[-67,49],[-106,77],[-170,128],[-126,100],[-39,30],[-1,1],[34,0],[50,0],[34,1],[40,-1],[-1,1],[40,0],[64,0],[357,2],[306,1],[155,1],[1,-38],[4,-82],[1,-30],[2,-64],[5,-113],[3,-94],[3,-78],[0,-12],[0,-1],[2,-57],[1,-28],[3,-27],[1,-1],[5,-13],[10,-17],[13,-19],[17,-28],[14,-13],[11,-8],[3,-2],[1,0],[143,-48],[76,-24],[72,-24],[60,-19],[48,-16],[66,-22],[103,-34],[57,-18],[25,-8],[47,-16],[40,-13],[139,-45],[2,0],[39,0],[97,0],[144,2],[153,1],[11,1],[65,0],[17,1],[50,0],[85,1],[46,1],[20,0],[0,-1],[2,-38],[2,-72],[1,-21],[2,-54],[2,-62],[141,-46],[31,-10],[60,-19],[93,-31],[41,-13],[79,-26],[83,-27],[23,-8],[16,-5],[24,-8],[109,-35],[133,-44],[11,-4],[7,-2],[7,-2],[171,-56],[5,-2],[57,-18],[8,-3],[22,-7],[9,-3],[131,-42],[56,-18],[66,-21],[33,-11],[89,-29],[45,-15],[76,-25],[51,-17],[78,-25],[99,-33],[130,-42],[56,-19],[44,-14],[56,-19],[157,-52],[210,2],[45,0],[1,0],[74,1],[41,0],[74,1],[123,1],[103,1],[223,1],[104,0],[96,0],[1,0],[60,0],[103,0],[92,0],[90,1],[76,0],[217,2],[28,0],[39,0],[1,0],[30,1],[105,0],[1,-55],[3,-72],[0,-4],[2,-32],[0,-5],[1,-37],[2,-53],[2,-64],[3,-62],[0,-11],[2,-49],[2,-64],[1,-3],[1,-50],[1,-23],[1,-6],[2,-64],[47,-16],[98,-32],[21,-7],[159,-52],[142,-47],[106,-34],[75,-25],[50,-17],[152,-49],[2,-1],[230,-74],[35,-12],[98,-31],[91,-30],[123,-40],[271,-88],[1,0],[100,-33],[123,-40],[63,-21],[140,-46],[3,-86],[1,-9],[-142,-2],[-44,-2],[-15,0],[-5,-2],[-2,-5],[-2,-9],[2,-28],[0,-17],[2,-38],[2,-35],[0,-5],[2,-3],[23,0],[38,1],[103,1],[42,1],[0,-10],[3,-117],[2,0],[9,0],[65,1],[28,0],[22,0],[66,1],[67,1],[160,1],[4,0],[-3,50],[-2,43],[-1,31],[-2,48],[0,9],[-1,11],[462,5],[28,0],[32,1],[42,1],[39,0],[7,1],[20,0],[42,1],[2,0],[74,1],[44,2],[42,1],[13,0],[75,3],[58,1],[91,1],[81,1],[43,0],[55,1],[58,1],[53,1],[79,1],[78,1],[86,1],[33,-1],[31,-1],[32,-1],[104,1],[96,1],[129,2],[108,1],[131,2],[79,1],[81,1],[76,2],[1,0],[89,3],[42,1],[15,0],[59,1],[21,0],[35,0],[118,2],[98,1],[154,3],[40,0],[74,1],[87,2],[1,0],[66,1],[78,0],[132,5],[109,1],[82,2],[137,2],[106,2],[97,0],[26,4],[19,3],[5,1],[98,2],[10,0],[41,0],[20,1],[52,0],[96,1],[58,1],[93,1],[16,1],[93,1],[131,1],[101,2],[47,1],[55,0],[118,2],[159,1],[38,1],[83,1],[143,2],[3,0],[70,1],[117,-2],[1,0],[25,0],[43,-1],[59,1],[61,1],[21,0],[204,3],[15,0],[32,0],[28,1],[31,0],[29,0],[23,1],[37,0],[14,0],[16,0],[16,0],[13,0],[31,1],[23,0],[63,0],[38,-3],[7,-1],[1,0],[46,-5],[72,2],[62,0],[116,1],[30,0],[75,0],[154,1],[1,-30],[3,0],[102,1],[95,1],[122,1],[3,0],[55,0],[40,0],[46,1],[49,0],[27,0],[94,1],[155,1],[26,0],[68,0],[56,1],[121,1],[47,0],[0,-24],[5,-123],[0,-3],[3,0],[73,-1],[48,-1],[111,2],[28,0],[42,0],[22,0],[135,2],[121,1],[71,0],[45,1],[49,0],[37,0],[31,1],[133,1],[19,0],[115,1],[29,0],[174,2],[5,0],[191,2],[3,0],[137,1],[41,0],[1,0],[195,2],[2,0],[112,1],[36,0],[21,1],[44,0],[132,1],[126,1],[58,0],[25,0],[47,1],[142,1],[116,1],[83,1],[18,0],[79,0],[102,1],[149,1],[51,1],[43,0],[64,0],[89,1],[1,0],[200,2],[5,0],[93,1],[88,0],[11,0],[61,1],[127,1],[205,2],[5,0],[2,0],[54,0],[312,-182],[81,-52],[59,-41],[28,-22],[278,-270],[1,-17],[1,-11],[1,-26],[0,-3],[4,-105],[1,-19],[1,-23],[1,-31],[3,-58],[2,-54],[2,-56],[2,-76],[1,-30],[2,-42],[0,-38],[1,-21],[2,-46],[0,-8],[-168,-3],[-36,0],[-118,-2],[-75,-1],[-53,-1],[-106,-1],[-145,-2],[-95,-1],[-52,0],[-111,-2],[-169,-3],[-65,-1],[-63,-1],[-8,0],[-18,0],[-129,-2],[-82,-1],[-98,-2],[-149,-2],[-50,-1],[-40,0],[-86,-2],[-39,0],[-33,-1],[-144,-1],[-90,-2],[-94,-1],[-70,-1],[-1,0],[-96,-1],[-10,0],[-103,-2],[-106,-1],[-83,-1],[0,-1],[-41,0],[-68,-2],[-98,-1],[-75,-1],[-71,-1],[-30,0],[-12,0],[-1,0],[-74,-1],[-75,-1],[-15,0],[-176,-3],[-137,-1],[-141,-2],[-82,-1],[-1,0],[-116,-2],[-41,0],[-19,0],[-59,-1],[-88,-1],[-61,0],[-78,-1],[-51,-1],[-26,0],[-109,-2],[-3,0],[-142,-2],[-150,-2],[-59,-1],[-113,-1],[-95,-2],[-6,0],[-64,-1],[-24,0],[-43,-1],[-154,-2],[-211,-4],[-106,-1],[-33,-1],[-15,0],[-142,-2],[-197,-3],[-3,0],[-36,0],[-70,-1],[-165,-3],[-124,-2],[-158,-3],[-2,0],[-7,0],[-137,-3],[-21,-1],[-38,-1],[-10,0],[-82,-3],[-12,0],[-112,-3],[-5,-1],[-150,-4],[-113,-3],[-88,-3],[-1,0],[-61,-3],[-2,0],[-43,-1],[-64,-3],[-59,-2],[-14,0],[-78,-2],[-39,-1],[-118,-3],[-102,-3],[-155,-5],[-157,-4],[-1,0],[-33,-1],[-116,-3],[-26,0],[-64,-2],[-106,-3],[-130,-4],[-57,-2],[-39,-1],[-116,-4],[-145,-4],[-1,0],[-123,-3],[-57,-2],[-25,-1],[-35,-1],[-63,-2],[-41,-1],[-73,-2],[-16,-1],[-73,-2],[-134,-4],[-193,-5],[-2,0],[-107,-3],[-44,-2],[-37,-1],[-81,-2],[-216,-7],[-185,-6],[-7,0],[-79,-2],[-75,-2],[-1,0],[-134,-4],[-72,-3],[-156,-4],[-150,-5],[-113,-3],[-6,0],[-201,-7],[-1,0],[-68,-2],[-199,-6],[-179,-5],[-149,-4],[-90,-3],[-146,-5],[-1,0],[-54,-2],[-84,-3],[-57,-1],[-117,-4],[-33,-1],[-122,-3],[-29,-1],[-76,-1],[-75,-2],[-76,-1],[-62,-1],[-55,-1],[-120,-3],[-85,-3],[-81,-2],[-130,-5],[-3,0],[-53,-1],[-223,-8],[0,-5],[0,-6],[4,-106],[3,-106],[-1,0],[-146,-4],[-38,-1],[-31,-1],[-37,-1],[-33,-1],[-28,-1],[-30,-1],[-54,-1],[-38,-2],[-31,0],[-24,-1],[-59,-2],[-21,-1],[-17,0],[-1,0],[-76,0],[-37,1],[-30,1],[-53,2],[-23,1],[-46,1],[-10,0],[-34,0],[-1,0],[-2,0],[-81,-1],[-1,0],[-5,0],[-44,-2],[-8,0],[-34,-1],[-2,-1],[-9,0],[-22,-1],[-20,-1],[-76,-3],[-59,0],[-1,0],[-1,21],[-1,39],[-1,37],[0,14],[-1,23],[-3,37],[-3,31],[-244,-8],[1,-31],[3,-66],[1,-5],[-8,0],[-3,0],[-49,-1],[-28,0],[-51,-1],[-46,-1],[-39,-1],[-18,0],[-26,-1],[-35,0],[-9,-1],[-30,0],[-26,-1],[-42,-1],[-31,0],[-37,-1],[-2,0],[-37,-1],[-53,-1],[-32,1],[-35,-1],[-5,0],[-38,-1],[-45,0],[-6,0],[-50,-1],[-24,-1],[-11,-2],[-14,-1],[-15,-3],[-9,-2],[-11,-3],[-17,-2],[-4,0],[-15,-1],[-21,0],[-18,0],[-2,-1],[-24,0],[-21,-1],[-6,0],[-4,0],[-5,0],[-12,0],[-30,-1],[-27,-1],[-59,-2],[-23,-1],[0,-15],[1,-13],[-25,-1],[-87,-2],[-36,-1],[-39,-1],[-33,-1],[-34,-1],[-57,-2],[-73,-2],[-36,-1],[-1,25],[-2,61],[2,14],[4,10],[5,7],[4,12],[-87,-3],[-246,-8],[-102,-4],[-77,-2],[-257,-8],[-249,-7],[-204,-6],[-52,1],[-1,16],[-1,26],[-4,152],[-2,42],[1,0],[28,-2],[92,1],[108,1],[52,0],[60,1],[106,1],[171,2],[134,2],[87,0],[-1,43],[0,2]],[[69813,9846],[74,266],[31,112],[81,288],[140,502],[21,0],[-1,27],[130,1],[173,404],[50,0],[5,0],[53,1],[117,1],[197,1],[126,1],[21,0],[95,1],[171,1],[84,1],[41,0],[1,0],[109,1],[139,1],[37,0],[126,1],[100,1],[28,0],[8,26],[40,29],[43,31],[57,39],[53,40],[49,43],[45,44],[41,46],[36,47],[12,19],[20,29],[26,50],[23,50],[5,15],[0,25],[-7,0],[-1,26],[4,21],[3,17],[-1,21],[-27,1209],[0,12],[-2,82],[-2,94],[-1,37],[0,2],[-42,0],[-73,-1],[-74,-1],[-46,0],[-93,-1],[-81,-1],[-127,-1],[-66,0],[-78,-1],[-7,0],[-39,0],[-58,-1],[-30,0],[-89,-2],[-62,-1],[-48,0],[-1,0],[-81,-1],[-46,0],[-68,-1],[-37,0],[-63,-1],[-121,0],[-8,-1],[-70,0],[10,38],[10,35],[15,56],[18,58],[16,50],[22,78],[23,83],[16,58],[21,76],[41,147],[18,64],[13,49],[2,5],[43,153],[22,78],[23,84],[35,126],[45,163],[5,20],[29,104],[11,0],[250,3],[7,0],[147,2],[30,1],[27,0],[119,1],[45,1],[118,2],[6,0],[68,1],[12,0],[-12,36],[-4,59],[-2,25],[-1,51],[-3,86],[-2,60],[-2,33],[-2,78],[-2,56],[-2,35],[0,1],[-1,31],[-1,31],[-2,56],[-3,79],[0,28],[-4,95],[-3,91],[-3,69],[-1,31],[0,1],[128,1],[232,3],[226,3],[29,0],[166,2],[50,0],[1,0],[10,1],[90,1],[71,1],[41,0],[39,1],[112,1],[30,1],[11,3],[1,1],[5,3],[3,0],[41,0],[452,6],[41,57],[55,67],[59,67],[64,65],[15,15],[183,189],[75,80],[100,112],[105,110],[17,17],[91,91],[57,55],[97,104],[-32,0],[-1,25],[-1,25],[-5,25],[-11,25],[-15,24],[-20,22],[-24,21],[-13,9],[-15,10],[-32,17],[-34,14],[-38,11],[-21,5],[-18,4],[-40,6],[-41,3],[-42,0],[0,15],[-97,-1],[-156,-2],[-219,-3],[-41,0],[-34,-1],[-8,222],[1,26],[1,4],[-141,-2],[-48,0],[-3,0],[-2,31],[-30,751],[63,0],[368,5],[3,-65],[206,3],[0,-3],[0,-9],[250,3],[180,3],[206,3],[1102,14],[85,47],[15,-7],[36,63],[92,-72],[8,-6],[20,-16],[65,-60],[12,-11],[-47,-41],[-24,-32],[-3,-15],[-2,-24],[-1,-30],[1,-44],[0,-20],[2,-77],[4,-84],[2,-57],[2,-32],[-8,-66],[-12,-48],[-10,-74],[-1,-4],[-23,-90],[-9,-53],[-5,-58],[-2,-61],[1,-43],[1,-44],[2,-80],[2,-36],[2,-72],[1,-29],[2,-58],[8,-202],[6,-183],[3,-55],[2,-49],[3,-102],[4,-99],[1,-37],[3,-80],[1,-38],[1,-20],[3,-76],[0,-13],[1,-22],[2,-57],[2,-31],[0,-26],[2,-35],[1,-35],[1,-19],[0,-19],[1,-13],[0,-8],[0,-2],[0,-3],[0,-1],[0,-2],[1,-27],[0,-13],[-4,-5],[-4,-17],[-4,-16],[-4,-16],[-6,-16],[-6,-17],[-10,-20],[-2,-3],[-8,-15],[-9,-16],[-10,-15],[-11,-16],[-21,-33],[-28,-42],[-39,-59],[-117,-179],[-150,-227],[-152,-232],[-137,-208],[-73,-112],[-66,-101],[-84,-129],[-25,-39],[-20,-30],[-10,-19],[-20,-31],[-12,-17],[-17,-22],[-16,-18],[-21,-20],[-24,-21],[-16,-15],[-49,12],[-427,107],[-594,149],[-489,-744],[-18,-33],[4,0],[94,1],[259,1],[78,-4],[62,-3],[0,-1],[0,-2],[-8,-27],[0,-1],[-2,-4],[-15,-53],[-6,-24],[-2,-8],[-4,-36],[0,-73],[-1,-79],[-4,-38],[-9,-85],[-8,-71],[-3,-25],[-6,-28],[-1,-3],[-5,-19],[-8,-21],[-4,-11],[-17,-35],[-22,-36],[-64,-97],[-32,-48],[-34,-52],[-7,-10],[-17,-27],[-32,-48],[-57,13],[-54,8],[-40,5],[-42,3],[-29,1],[-40,0],[-58,0],[-25,-1],[-131,-1],[-201,-2],[-82,-1],[-259,-3],[-76,0],[-34,0],[-18,-1],[-23,0],[-17,0],[-11,3],[0,-28],[2,-82],[-81,-1],[3,-137],[2,-114],[4,-205],[0,-23],[9,-28],[-5,-13],[-21,-53],[-27,-52],[-31,-50],[-36,-50],[-41,-48],[-38,-40],[-6,-7],[-49,-45],[-53,-43],[-57,-41],[-61,-40],[-41,-26],[217,2],[5,0],[356,3],[100,1],[54,2],[35,2],[21,3],[22,4],[28,5],[108,35],[127,42],[50,-54],[13,-11],[12,-7],[15,-5],[22,-7],[26,-3],[69,0],[83,-3],[24,-8],[24,-14],[18,-13],[10,-12],[13,-17],[14,-22],[11,-25],[3,-12],[3,-14],[4,-93],[-3,-114],[-1,-55],[-1,-69],[4,-100],[7,-194],[1,-35],[5,-117],[4,-117],[0,-8],[0,-4],[1,-20],[1,-19],[2,-46],[0,-25],[1,-17],[1,-25],[2,-50],[1,-50],[2,-50],[3,-98],[4,-93],[1,-22],[2,-71],[5,-128],[3,-106],[2,-61],[3,-74],[1,-16],[0,-2],[1,-43],[2,-50],[2,-50],[1,-42],[3,-64],[3,-64],[2,-50],[1,-28],[7,-85],[0,-4],[3,-32],[1,-16],[6,-29],[5,-25],[9,-37],[15,-58],[16,-56],[21,-65],[20,-52],[15,-35],[17,-40],[5,-12],[4,-10],[11,-24],[4,-8],[9,-18],[17,-33],[-1775,19],[1251,-1230],[-208,-85],[-31,-11],[205,-193],[-870,313],[-578,253],[-209,91],[-1354,593],[-38,0],[-153,1],[-4,352],[-5,393],[-2,56],[-7,62],[-4,20],[-15,72],[-20,72],[-25,71],[-30,70],[-35,70],[-5,-1],[-16,438]],[[17801,91473],[-982,331],[15,442],[-65,28],[3,8],[-5235,2439],[-63,-1],[-929,430],[-310,146],[-1026,478],[-1335,619],[-431,203],[-1319,613],[-1212,563],[-1199,550],[-4,-105],[-180,0],[-288,134],[-686,3],[2,93],[484,-6],[-539,257],[-293,131],[-2209,1026],[177,144],[633,-298],[90,73],[514,-244],[113,80],[401,-201],[-109,-76],[1386,-643],[3,-2],[509,-237],[0,207],[642,-314],[885,-434],[376,-182],[-130,-102],[1082,-504],[113,83],[431,-206],[166,131],[527,-246],[-157,-128],[790,-366],[-109,-86],[455,-210],[109,90],[62,-29],[899,-411],[384,-3],[-6,-171],[97,-44],[128,100],[146,-66],[42,-3],[-5,-177],[100,-43],[126,103],[143,-68],[50,-5],[-6,-175],[396,-181],[11,31],[2,64],[207,1],[-1,-35],[165,-75],[39,-12],[-1,-86],[206,1],[-1,-9],[5,-7],[156,-73],[46,-2],[-2,-90],[422,-1],[15,-24],[-5,-197],[239,-1],[160,-71],[-3,-120],[401,-1],[-4,-172],[209,-1],[161,-74],[43,0],[-1,-105],[201,-4],[164,-77],[42,1],[-5,-177],[406,-185],[-142,-115],[251,-116],[2,182],[423,-196],[160,121],[84,-52],[-142,-116],[1135,-522],[281,-129],[785,-357],[626,-574],[-392,-163]]],"bbox":[-87.81769144531316,41.64455970611525,-87.52447113055383,42.001765440845034],"transform":{"scale":[0.000002932232469917941,0.000003572093068228497],"translate":[-87.81769144531316,41.64455970611525]}}
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment