Skip to content

Instantly share code, notes, and snippets.

@rogerfischer
Created April 11, 2016 23:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rogerfischer/338b7fcd478eea7af0eec61f3c5e8c1b to your computer and use it in GitHub Desktop.
Save rogerfischer/338b7fcd478eea7af0eec61f3c5e8c1b to your computer and use it in GitHub Desktop.
SF Precincts
<!DOCTYPE html>
<meta charset="utf-8">
<head>
<title>San Francisco Precincts / Prop F</title>
<style>
body {
height: 100%;
margin: 0;
padding: 0;
font-family: 'Lato', sans-serif;
color: #272a2f;
}
#mapcanvas {
width: 960px;
height: 600px;
margin: 10px 10px 10px 10px;
/*padding: 5px 5px 5px 5px;*/
border: 0.5px solid #555;
}
p {
margin: 10px 10px 10px 10px;
}
.precinct {
fill: #555;
}
.precinct-boundary {
fill: none;
stroke: #fff;
stroke-width: none;
}
</style>
<link href='https://fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="mapcanvas" ></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.19/topojson.min.js"></script>
<script src="https://d3js.org/queue.v1.min.js"></script>
<script>
var width = 960,
height = 600;
// PROJECTION
// SF_DOE_Precincts_20120702.prj
// You can also center the map on: -122.51494800050519,37.70813100002812 like in the TopoJSON
/*var projection = d3.geo.conicConformal()
.rotate([0, 0, 0])
.center([-122.433701, 37.767683])
.scale(235000)
.parallels([37.06666666666667, 38.43333333333333])
.translate([width / 2, height / 2])
.precision(.1);*/
// MERCATOR
var projection = d3.geo.mercator()
.center([-122.433701, 37.767683])
.scale(211000)
.translate([width / 2, 310]);
var path = d3.geo.path()
.projection(projection);
var svg = d3.select("#mapcanvas").append("svg")
.attr("width", width)
.attr("height", height);
// Title inside the Map
svg.append("text")
.attr("x", "50")
.attr("y", "29")
.attr("text-anchor", "start")
.style("font-size", "16px")
.style("text-decoration", "none")
.text("San Francisco Precincts");
queue()
.defer(d3.json, 'san_francisco_precinct_20120702.topojson')
.defer(d3.csv, 'san_francisco_precinct_20120702.csv') // REF
.await(ready);
function ready(error, MAP, REF) {
if (error) throw error;
console.log(MAP)
console.log(REF)
var precincts = topojson.feature(MAP, MAP.objects.precinct);
svg.append("g")
.attr("class", "precinct")
.selectAll("path")
.data(precincts.features)
.enter()
.append("path")
.attr("d", path)
.append('svg:title').text(function(d) {
return ("GeoID: " + d.id); });
//Borders
svg.append("path")
.datum(topojson.mesh(MAP, MAP.objects.precinct, function(a, b) { return a !== b; }))
.attr("class", "precinct-boundary")
.attr("d", path);
};
</script>
<p>Let us know about your needs at <a href="https://www.datamap.io/contact">https://www.datamap.io/contact</a></p>
</html>
id pct_2012 pct_2010 neighborhood supervisorial_district BART_district assembly_district congressional_district
84006075PCT1101 1101 1101 EXCELSIOR 11 9 19 14
84006075PCT1102 1102 1104 EXCELSIOR 11 9 19 14
84006075PCT1103 1103 1102 EXCELSIOR 11 9 19 14
84006075PCT1104 1104 1105 EXCELSIOR 11 9 19 14
84006075PCT1105 1105 1105 EXCELSIOR 11 9 19 14
84006075PCT1106 1106 1113 INGLESIDE 11 8 19 14
84006075PCT1107 1107 1114 INGLESIDE 11 8 19 14
84006075PCT1108 1108 1115 INGLESIDE 11 8 19 14
84006075PCT1109 1109 1116 INGLESIDE 11 8 19 14
84006075PCT1111 1111 1117 INGLESIDE 11 8 19 14
84006075PCT1112 1112 1118 INGLESIDE 11 8 19 14
84006075PCT1113 1113 1119 EXCELSIOR 11 9 19 14
84006075PCT1114 1114 1121 EXCELSIOR 11 9 19 14
84006075PCT1115 1115 1125 INGLESIDE 11 8 19 14
84006075PCT1116 1116 1126 INGLESIDE 11 8 19 14
84006075PCT1117 1117 1127 INGLESIDE 11 8 19 14
84006075PCT1118 1118 1128 INGLESIDE 11 8 19 14
84006075PCT1119 1119 1129 INGLESIDE 11 8 19 14
84006075PCT1121 1121 1133 EXCELSIOR 11 8 19 14
84006075PCT1122 1122 1119 EXCELSIOR 11 8 19 14
84006075PCT1123 1123 1128 INGLESIDE 11 8 19 14
84006075PCT1124 1124 1131 INGLESIDE 11 8 19 14
84006075PCT1125 1125 1132 EXCELSIOR 11 8 19 14
84006075PCT1126 1126 1141 EXCELSIOR 11 8 19 14
84006075PCT1127 1127 1142 EXCELSIOR 11 8 19 14
84006075PCT1128 1128 1134 EXCELSIOR 11 8 19 14
84006075PCT1129 1129 1143 EXCELSIOR 11 8 19 14
84006075PCT1131 1131 1144 EXCELSIOR 11 8 19 14
84006075PCT1132 1132 1135 EXCELSIOR 11 8 19 14
84006075PCT1133 1133 1145 EXCELSIOR 11 8 19 14
84006075PCT1134 1134 1146 EXCELSIOR 11 8 19 14
84006075PCT1135 1135 1147 EXCELSIOR 11 8 19 14
84006075PCT1136 1136 2008 EXCELSIOR 11 8 19 14
84006075PCT1141 1141 1103 EXCELSIOR 11 9 17 12
84006075PCT1142 1142 1106 EXCELSIOR 11 9 17 12
84006075PCT1143 1143 1107 EXCELSIOR 11 9 17 12
84006075PCT1144 1144 1108 EXCELSIOR 11 9 17 12
84006075PCT1145 1145 1109 EXCELSIOR 11 9 17 12
84006075PCT1146 1146 1122 EXCELSIOR 11 9 17 12
84006075PCT1147 1147 1123 EXCELSIOR 11 9 17 12
84006075PCT1148 1148 1138 EXCELSIOR 11 9 17 12
84006075PCT1149 1149 1124 EXCELSIOR 11 9 17 12
84006075PCT1151 1151 2001 VISITA VLY 11 8 17 12
84006075PCT1152 1152 1136 EXCELSIOR 11 9 17 12
84006075PCT1153 1153 1137 EXCELSIOR 11 9 17 12
84006075PCT1154 1154 1137 EXCELSIOR 11 8 17 12
84006075PCT7001 7001 3647 MISSION 10 9 17 12
84006075PCT7002 7002 3001 POTRERO HILL 10 9 17 12
84006075PCT7003 7003 3001 POTRERO HILL 10 9 17 12
84006075PCT7004 7004 3002 POTRERO HILL 10 9 17 12
84006075PCT7005 7005 3002 POTRERO HILL 10 9 17 12
84006075PCT7006 7006 3003 POTRERO HILL 10 9 17 12
84006075PCT7007 7007 3004 POTRERO HILL 10 9 17 12
84006075PCT7008 7008 3005 POTRERO HILL 10 9 17 12
84006075PCT7009 7009 3010 BAYVW/HTRSPT 10 9 17 12
84006075PCT7011 7011 3009 POTRERO HILL 10 9 17 12
84006075PCT7012 7012 3007 POTRERO HILL 10 9 17 12
84006075PCT7013 7013 3011 POTRERO HILL 10 7 17 12
84006075PCT7014 7014 3037 POTRERO HILL 10 7 17 12
84006075PCT7015 7015 3012 BAYVW/HTRSPT 10 7 17 12
84006075PCT7016 7016 3013 BAYVW/HTRSPT 10 7 17 12
84006075PCT7017 7017 3014 BAYVW/HTRSPT 10 7 17 12
84006075PCT7018 7018 3017 BAYVW/HTRSPT 10 7 17 12
84006075PCT7019 7019 3018 BAYVW/HTRSPT 10 7 17 12
84006075PCT7021 7021 3019 BAYVW/HTRSPT 10 7 17 12
84006075PCT7022 7022 3020 BAYVW/HTRSPT 10 7 17 12
84006075PCT7023 7023 3022 BAYVW/HTRSPT 10 7 17 12
84006075PCT7024 7024 3016 BAYVW/HTRSPT 10 7 17 12
84006075PCT7025 7025 3015 BAYVW/HTRSPT 10 7 17 12
84006075PCT7026 7026 3023 BAYVW/HTRSPT 10 7 17 12
84006075PCT7027 7027 3024 BAYVW/HTRSPT 10 7 17 12
84006075PCT7028 7028 3025 BAYVW/HTRSPT 10 7 17 12
84006075PCT7029 7029 3022 BAYVW/HTRSPT 10 7 17 12
84006075PCT7030 7030 3028 BAYVW/HTRSPT 10 7 17 12
84006075PCT7031 7031 3028 BAYVW/HTRSPT 10 7 17 12
84006075PCT7032 7032 3031 BAYVW/HTRSPT 10 7 17 12
84006075PCT7033 7033 3032 BAYVW/HTRSPT 10 7 17 12
84006075PCT7034 7034 3027 BAYVW/HTRSPT 10 7 17 12
84006075PCT7035 7035 3034 BAYVW/HTRSPT 10 7 17 12
84006075PCT7036 7036 2011 VISITA VLY 10 8 17 12
84006075PCT7037 7037 2012 VISITA VLY 10 8 17 12
84006075PCT7038 7038 2001 VISITA VLY 10 8 17 12
84006075PCT7039 7039 2006 VISITA VLY 10 8 17 12
84006075PCT7041 7041 2005 PORTOLA 10 9 17 12
84006075PCT7042 7042 2005 VISITA VLY 10 7 17 12
84006075PCT7043 7043 3029 BAYVW/HTRSPT 10 7 17 12
84006075PCT7044 7044 3035 BAYVW/HTRSPT 10 7 17 12
84006075PCT7045 7045 2001 VISITA VLY 10 8 17 12
84006075PCT7046 7046 2007 VISITA VLY 10 7 17 12
84006075PCT7047 7047 2018 VISITA VLY 10 8 17 12
84006075PCT7048 7048 2014 VISITA VLY 10 8 17 12
84006075PCT7049 7049 2016 VISITA VLY 10 8 17 12
84006075PCT7051 7051 2017 VISITA VLY 10 8 17 12
84006075PCT7052 7052 2019 BAYVW/HTRSPT 10 8 17 12
84006075PCT7053 7053 3039 BAYVW/HTRSPT 10 7 17 12
84006075PCT7054 7054 3036 BAYVW/HTRSPT 10 7 17 12
84006075PCT7101 7101 3101 HAIGHT ASH 1 9 17 12
84006075PCT7201 7201 3205 MAR/PAC HTS 2 8 17 12
84006075PCT7202 7202 3302 MAR/PAC HTS 2 8 17 12
84006075PCT7203 7203 3229 MAR/PAC HTS 2 8 17 12
84006075PCT7204 7204 3221 MAR/PAC HTS 2 8 17 12
84006075PCT7205 7205 3306 MAR/PAC HTS 2 8 17 12
84006075PCT7206 7206 3502 MAR/PAC HTS 2 9 17 12
84006075PCT7207 7207 3504 MAR/PAC HTS 2 9 17 12
84006075PCT7208 7208 3243 MAR/PAC HTS 2 9 17 12
84006075PCT7209 7209 3242 MAR/PAC HTS 2 9 17 12
84006075PCT7301 7301 3301 N EMBRCDRO 3 8 17 12
84006075PCT7302 7302 3305 N EMBRCDRO 3 8 17 12
84006075PCT7303 7303 3302 CHINA 3 8 17 12
84006075PCT7304 7304 3303 N EMBRCDRO 3 8 17 12
84006075PCT7305 7305 3304 N EMBRCDRO 3 8 17 12
84006075PCT7306 7306 3307 CHINA 3 8 17 12
84006075PCT7307 7307 3308 N EMBRCDRO 3 8 17 12
84006075PCT7308 7308 3309 N EMBRCDRO 3 8 17 12
84006075PCT7309 7309 3312 CHINA 3 8 17 12
84006075PCT7311 7311 3313 CHINA 3 8 17 12
84006075PCT7312 7312 3315 CHINA 3 8 17 12
84006075PCT7313 7313 3316 CHINA 3 8 17 12
84006075PCT7314 7314 3317 CHINA 3 8 17 12
84006075PCT7315 7315 3318 CHINA 3 8 17 12
84006075PCT7316 7316 3319 CHINA 3 8 17 12
84006075PCT7317 7317 3311 N EMBRCDRO 3 8 17 12
84006075PCT7318 7318 3314 CHINA 3 8 17 12
84006075PCT7319 7319 3322 CHINA 3 9 17 12
84006075PCT7321 7321 3326 CHINA 3 8 17 12
84006075PCT7322 7322 3326 CHINA 3 8 17 12
84006075PCT7323 7323 3331 CHINA 3 9 17 12
84006075PCT7324 7324 3323 CHINA 3 9 17 12
84006075PCT7325 7325 3324 CHINA 3 8 17 12
84006075PCT7326 7326 3325 CHINA 3 8 17 12
84006075PCT7327 7327 3336 CHINA 3 8 17 12
84006075PCT7328 7328 3337 CVC CTR/DWTN 3 8 17 12
84006075PCT7329 7329 3328 CVC CTR/DWTN 3 8 17 12
84006075PCT7331 7331 3329 N EMBRCDRO 3 8 17 12
84006075PCT7332 7332 3338 CVC CTR/DWTN 3 9 17 12
84006075PCT7333 7333 3333 CHINA 3 9 17 12
84006075PCT7334 7334 3332 CVC CTR/DWTN 3 9 17 12
84006075PCT7335 7335 3333 CVC CTR/DWTN 3 9 17 12
84006075PCT7336 7336 3343 CVC CTR/DWTN 3 9 17 12
84006075PCT7337 7337 3335 CVC CTR/DWTN 3 9 17 12
84006075PCT7338 7338 3344 CVC CTR/DWTN 3 8 17 12
84006075PCT7339 7339 3338 CVC CTR/DWTN 3 9 17 12
84006075PCT7341 7341 3339 CVC CTR/DWTN 3 9 17 12
84006075PCT7342 7342 3342 CVC CTR/DWTN 3 9 17 12
84006075PCT7343 7343 3345 CVC CTR/DWTN 3 9 17 12
84006075PCT7344 7344 3351 CVC CTR/DWTN 3 9 17 12
84006075PCT7345 7345 3346 CVC CTR/DWTN 3 9 17 12
84006075PCT7346 7346 3349 CVC CTR/DWTN 3 9 17 12
84006075PCT7347 7347 3603 CVC CTR/DWTN 3 9 17 12
84006075PCT7348 7348 3347 CVC CTR/DWTN 3 9 17 12
84006075PCT7349 7349 3348 CVC CTR/DWTN 3 9 17 12
84006075PCT7501 7501 3502 MAR/PAC HTS 5 9 17 12
84006075PCT7502 7502 3503 MAR/PAC HTS 5 9 17 12
84006075PCT7503 7503 3504 MAR/PAC HTS 5 9 17 12
84006075PCT7504 7504 3505 WST ADDITION 5 9 17 12
84006075PCT7505 7505 3506 WST ADDITION 5 9 17 12
84006075PCT7506 7506 3508 WST ADDITION 5 9 17 12
84006075PCT7507 7507 3509 WST ADDITION 5 9 17 12
84006075PCT7508 7508 3608 WST ADDITION 5 9 17 12
84006075PCT7509 7509 3243 MAR/PAC HTS 5 9 17 12
84006075PCT7511 7511 3609 WST ADDITION 5 9 17 12
84006075PCT7512 7512 3519 WST ADDITION 5 9 17 12
84006075PCT7513 7513 3510 WST ADDITION 5 9 17 12
84006075PCT7514 7514 3522 WST ADDITION 5 9 17 12
84006075PCT7515 7515 3523 WST ADDITION 5 9 17 12
84006075PCT7516 7516 3650 WST ADDITION 5 9 17 12
84006075PCT7517 7517 3524 HAIGHT ASH 5 9 17 12
84006075PCT7518 7518 3525 HAIGHT ASH 5 9 17 12
84006075PCT7519 7519 3516 HAIGHT ASH 5 9 17 12
84006075PCT7521 7521 3526 HAIGHT ASH 5 9 17 12
84006075PCT7522 7522 3518 WST ADDITION 5 9 17 12
84006075PCT7523 7523 3527 WST ADDITION 5 9 17 12
84006075PCT7524 7524 3521 WST ADDITION 5 9 17 12
84006075PCT7525 7525 3532 WST ADDITION 5 9 17 12
84006075PCT7526 7526 3533 WST ADDITION 5 9 17 12
84006075PCT7527 7527 GG Park NA 5 9 17 12
84006075PCT7528 7528 3528 WST ADDITION 5 9 17 12
84006075PCT7529 7529 3529 WST ADDITION 5 9 17 12
84006075PCT7531 7531 3531 WST ADDITION 5 9 17 12
84006075PCT7532 7532 3533 WST ADDITION 5 9 17 12
84006075PCT7533 7533 3534 HAIGHT ASH 5 9 17 12
84006075PCT7534 7534 3535 HAIGHT ASH 5 9 17 12
84006075PCT7535 7535 3536 HAIGHT ASH 5 9 17 12
84006075PCT7536 7536 3537 HAIGHT ASH 5 9 17 12
84006075PCT7537 7537 3538 HAIGHT ASH 5 9 17 12
84006075PCT7538 7538 3539 HAIGHT ASH 5 9 17 12
84006075PCT7539 7539 3541 WST ADDITION 5 9 17 12
84006075PCT7541 7541 3542 WST ADDITION 5 9 17 12
84006075PCT7542 7542 3543 WST ADDITION 5 9 17 12
84006075PCT7543 7543 3803 WST ADDITION 5 9 17 12
84006075PCT7544 7544 3544 WST ADDITION 5 9 17 12
84006075PCT7545 7545 3545 WST ADDITION 5 9 17 12
84006075PCT7546 7546 3548 HAIGHT ASH 5 9 17 12
84006075PCT7547 7547 3546 HAIGHT ASH 5 9 17 12
84006075PCT7548 7548 3547 HAIGHT ASH 5 9 17 12
84006075PCT7549 7549 2515 INNER SUNSET 5 9 17 12
84006075PCT7551 7551 3551 HAIGHT ASH 5 9 17 12
84006075PCT7552 7552 3552 HAIGHT ASH 5 9 17 12
84006075PCT7553 7553 2510 INNER SUNSET 5 9 17 12
84006075PCT7554 7554 2703 INNER SUNSET 5 9 17 12
84006075PCT7555 7555 3553 HAIGHT ASH 5 9 17 12
84006075PCT7556 7556 3554 HAIGHT ASH 5 9 17 12
84006075PCT7557 7557 3555 HAIGHT ASH 5 9 17 12
84006075PCT7601 7601 3601 CVC CTR/DWTN 6 9 17 12
84006075PCT7602 7602 3602 CVC CTR/DWTN 6 9 17 12
84006075PCT7603 7603 3602 CVC CTR/DWTN 6 9 17 12
84006075PCT7604 7604 3604 CVC CTR/DWTN 6 9 17 12
84006075PCT7605 7605 3605 CVC CTR/DWTN 6 9 17 12
84006075PCT7606 7606 3611 CVC CTR/DWTN 6 9 17 12
84006075PCT7607 7607 3610 CVC CTR/DWTN 6 9 17 12
84006075PCT7608 7608 3613 CVC CTR/DWTN 6 9 17 12
84006075PCT7609 7609 3614 CVC CTR/DWTN 6 9 17 12
84006075PCT7611 7611 3606 CVC CTR/DWTN 6 9 17 12
84006075PCT7612 7612 3651 CVC CTR/DWTN 6 9 17 12
84006075PCT7613 7613 3617 CVC CTR/DWTN 6 9 17 12
84006075PCT7614 7614 3618 CVC CTR/DWTN 6 9 17 12
84006075PCT7615 7615 3619 CVC CTR/DWTN 6 9 17 12
84006075PCT7616 7616 3616 CVC CTR/DWTN 6 9 17 12
84006075PCT7617 7617 3621 CVC CTR/DWTN 6 9 17 12
84006075PCT7618 7618 3623 MISSION 6 9 17 12
84006075PCT7619 7619 3624 SOMA 6 9 17 12
84006075PCT7621 7621 3625 SOMA 6 9 17 12
84006075PCT7622 7622 3625 SOMA 6 9 17 12
84006075PCT7623 7623 3636 SOMA 6 9 17 12
84006075PCT7624 7624 3626 SOMA 6 9 17 12
84006075PCT7625 7625 3627 SOMA 6 9 17 12
84006075PCT7626 7626 3657 SOMA 6 9 17 12
84006075PCT7627 7627 3628 SOMA 6 7 17 12
84006075PCT7628 7628 3634 MISSION 6 9 17 12
84006075PCT7629 7629 3620 SOMA 6 9 17 12
84006075PCT7631 7631 3630 SOMA 6 9 17 12
84006075PCT7632 7632 3635 SOMA 6 9 17 12
84006075PCT7633 7633 3637 SOMA 6 9 17 12
84006075PCT7634 7634 3638 SOMA 6 9 17 12
84006075PCT7635 7635 3639 SOMA 6 7 17 12
84006075PCT7636 7636 3641 SOMA 6 7 17 12
84006075PCT7637 7637 3653 SOMA 6 7 17 12
84006075PCT7638 7638 3652 SOMA 6 7 17 12
84006075PCT7639 7639 3640 SOMA 6 7 17 12
84006075PCT7641 7641 3648 SOMA 6 7 17 12
84006075PCT7642 7642 3642 SOMA 6 7 17 12
84006075PCT7643 7643 3658 POTRERO HILL 6 7 17 12
84006075PCT7644 7644 3654 POTRERO HILL 6 7 17 12
84006075PCT7645 7645 3654 POTRERO HILL 6 7 17 12
84006075PCT7646 7646 3643 POTRERO HILL 6 7 17 12
84006075PCT7647 7647 3631 SOMA 6 7 17 12
84006075PCT7648 7648 3655 SOMA 6 7 17 12
84006075PCT7701 7701 2707 W TWIN PKS 7 9 17 12
84006075PCT7702 7702 2708 W TWIN PKS 7 9 17 12
84006075PCT7703 7703 2716 W TWIN PKS 7 9 17 12
84006075PCT7704 7704 2717 W TWIN PKS 7 9 17 12
84006075PCT7705 7705 2709 W TWIN PKS 7 9 17 12
84006075PCT7706 7706 2736 W TWIN PKS 7 8 17 12
84006075PCT7707 7707 2737 W TWIN PKS 7 8 17 12
84006075PCT7708 7708 2742 W TWIN PKS 7 8 17 12
84006075PCT7709 7709 2743 W TWIN PKS 7 8 17 12
84006075PCT7711 7711 3701 W TWIN PKS 7 8 17 12
84006075PCT7712 7712 3703 W TWIN PKS 7 9 17 12
84006075PCT7801 7801 3808 UPRMKT/EURKA 8 9 17 12
84006075PCT7802 7802 3801 UPRMKT/EURKA 8 9 17 12
84006075PCT7803 7803 3809 UPRMKT/EURKA 8 9 17 12
84006075PCT7804 7804 3809 UPRMKT/EURKA 8 9 17 12
84006075PCT7805 7805 3805 UPRMKT/EURKA 8 9 17 12
84006075PCT7806 7806 3802 UPRMKT/EURKA 8 9 17 12
84006075PCT7807 7807 3812 UPRMKT/EURKA 8 9 17 12
84006075PCT7808 7808 3806 UPRMKT/EURKA 8 9 17 12
84006075PCT7809 7809 3804 UPRMKT/EURKA 8 9 17 12
84006075PCT7811 7811 3622 MISSION 8 9 17 12
84006075PCT7812 7812 3807 MISSION 8 9 17 12
84006075PCT7813 7813 3814 UPRMKT/EURKA 8 9 17 12
84006075PCT7814 7814 3644 MISSION 8 9 17 12
84006075PCT7815 7815 3816 UPRMKT/EURKA 8 9 17 12
84006075PCT7816 7816 3817 UPRMKT/EURKA 8 9 17 12
84006075PCT7817 7817 3823 UPRMKT/EURKA 8 9 17 12
84006075PCT7818 7818 3813 UPRMKT/EURKA 8 9 17 12
84006075PCT7819 7819 3815 MISSION 8 9 17 12
84006075PCT7821 7821 3819 UPRMKT/EURKA 8 9 17 12
84006075PCT7822 7822 3821 UPRMKT/EURKA 8 9 17 12
84006075PCT7823 7823 3822 UPRMKT/EURKA 8 9 17 12
84006075PCT7824 7824 3823 UPRMKT/EURKA 8 9 17 12
84006075PCT7825 7825 3824 UPRMKT/EURKA 8 9 17 12
84006075PCT7826 7826 3825 MISSION 8 9 17 12
84006075PCT7827 7827 3833 MISSION 8 9 17 12
84006075PCT7828 7828 3826 UPRMKT/EURKA 8 9 17 12
84006075PCT7829 7829 3827 UPRMKT/EURKA 8 9 17 12
84006075PCT7831 7831 3828 UPRMKT/EURKA 8 9 17 12
84006075PCT7832 7832 3832 UPRMKT/EURKA 8 9 17 12
84006075PCT7833 7833 3834 MISSION 8 9 17 12
84006075PCT7834 7834 3833 MISSION 8 9 17 12
84006075PCT7835 7835 3835 NOE VALLEY 8 9 17 12
84006075PCT7836 7836 3836 NOE VALLEY 8 9 17 12
84006075PCT7837 7837 3837 NOE VALLEY 8 9 17 12
84006075PCT7838 7838 3838 NOE VALLEY 8 9 17 12
84006075PCT7839 7839 3831 NOE VALLEY 8 9 17 12
84006075PCT7841 7841 3842 NOE VALLEY 8 9 17 12
84006075PCT7842 7842 3849 MISSION 8 9 17 12
84006075PCT7843 7843 3844 MISSION 8 9 17 12
84006075PCT7844 7844 3843 MISSION 8 9 17 12
84006075PCT7845 7845 3845 NOE VALLEY 8 9 17 12
84006075PCT7846 7846 3839 NOE VALLEY 8 9 17 12
84006075PCT7847 7847 3829 NOE VALLEY 8 9 17 12
84006075PCT7848 7848 3841 NOE VALLEY 8 9 17 12
84006075PCT7849 7849 3848 NOE VALLEY 8 9 17 12
84006075PCT7851 7851 3857 DIAMD HTS 8 9 17 12
84006075PCT7852 7852 3852 DIAMD HTS 8 9 17 12
84006075PCT7853 7853 3858 DIAMD HTS 8 9 17 12
84006075PCT7854 7854 3846 NOE VALLEY 8 9 17 12
84006075PCT7855 7855 3847 NOE VALLEY 8 9 17 12
84006075PCT7856 7856 3856 NOE VALLEY 8 9 17 12
84006075PCT7857 7857 3851 NOE VALLEY 8 9 17 12
84006075PCT7858 7858 3911 MISSION 8 9 17 12
84006075PCT7859 7859 3854 DIAMD HTS 8 9 17 12
84006075PCT7861 7861 3855 DIAMD HTS 8 9 17 12
84006075PCT7862 7862 3855 NOE VALLEY 8 9 17 12
84006075PCT7863 7863 3861 NOE VALLEY 8 9 17 12
84006075PCT7864 7864 3859 NOE VALLEY 8 9 17 12
84006075PCT7865 7865 3865 NOE VALLEY 8 9 17 12
84006075PCT7866 7866 3862 DIAMD HTS 8 9 17 12
84006075PCT7867 7867 3866 DIAMD HTS 8 9 17 12
84006075PCT7868 7868 3863 DIAMD HTS 8 9 17 12
84006075PCT7869 7869 3864 S BERNAL HTS 8 9 17 12
84006075PCT7871 7871 3869 DIAMD HTS 8 9 17 12
84006075PCT7872 7872 3867 S BERNAL HTS 8 9 17 12
84006075PCT7873 7873 3868 S BERNAL HTS 8 9 17 12
84006075PCT7874 7874 3935 S BERNAL HTS 8 9 17 12
84006075PCT7875 7875 3935 S BERNAL HTS 8 9 17 12
84006075PCT7901 7901 3632 MISSION 9 9 17 12
84006075PCT7902 7902 3634 MISSION 9 9 17 12
84006075PCT7903 7903 3645 MISSION 9 9 17 12
84006075PCT7904 7904 3646 MISSION 9 9 17 12
84006075PCT7905 7905 3647 MISSION 9 9 17 12
84006075PCT7906 7906 3646 MISSION 9 9 17 12
84006075PCT7907 7907 3902 MISSION 9 9 17 12
84006075PCT7908 7908 3903 MISSION 9 9 17 12
84006075PCT7909 7909 3904 MISSION 9 9 17 12
84006075PCT7911 7911 3905 MISSION 9 9 17 12
84006075PCT7912 7912 3906 MISSION 9 9 17 12
84006075PCT7913 7913 3907 MISSION 9 9 17 12
84006075PCT7914 7914 3908 MISSION 9 9 17 12
84006075PCT7915 7915 3909 MISSION 9 9 17 12
84006075PCT7916 7916 3906 MISSION 9 9 17 12
84006075PCT7917 7917 3912 MISSION 9 9 17 12
84006075PCT7918 7918 3913 MISSION 9 9 17 12
84006075PCT7919 7919 3917 MISSION 9 9 17 12
84006075PCT7921 7921 3913 MISSION 9 9 17 12
84006075PCT7922 7922 3914 MISSION 9 9 17 12
84006075PCT7923 7923 3619 MISSION 9 9 17 12
84006075PCT7924 7924 3916 MISSION 9 9 17 12
84006075PCT7925 7925 3919 N BERNAL HTS 9 9 17 12
84006075PCT7926 7926 3921 N BERNAL HTS 9 9 17 12
84006075PCT7927 7927 3924 N BERNAL HTS 9 9 17 12
84006075PCT7928 7928 3924 N BERNAL HTS 9 9 17 12
84006075PCT7929 7929 3923 N BERNAL HTS 9 9 17 12
84006075PCT7931 7931 3924 N BERNAL HTS 9 9 17 12
84006075PCT7932 7932 3926 N BERNAL HTS 9 9 17 12
84006075PCT7933 7933 3012 BAYVW/HTRSPT 9 9 17 12
84006075PCT7934 7934 3922 N BERNAL HTS 9 9 17 12
84006075PCT7935 7935 3927 N BERNAL HTS 9 9 17 12
84006075PCT7936 7936 3928 N BERNAL HTS 9 9 17 12
84006075PCT7937 7937 3929 N BERNAL HTS 9 9 17 12
84006075PCT7938 7938 3931 S BERNAL HTS 9 9 17 12
84006075PCT7939 7939 3932 S BERNAL HTS 9 9 17 12
84006075PCT7941 7941 3933 S BERNAL HTS 9 9 17 12
84006075PCT7942 7942 3934 S BERNAL HTS 9 9 17 12
84006075PCT7943 7943 3936 S BERNAL HTS 9 9 17 12
84006075PCT7944 7944 3937 S BERNAL HTS 9 9 17 12
84006075PCT7945 7945 3937 S BERNAL HTS 9 9 17 12
84006075PCT7946 7946 2901 PORTOLA 9 9 17 12
84006075PCT7947 7947 2902 PORTOLA 9 9 17 12
84006075PCT7948 7948 2903 PORTOLA 9 9 17 12
84006075PCT7949 7949 2905 PORTOLA 9 9 17 12
84006075PCT7951 7951 2905 PORTOLA 9 9 17 12
84006075PCT7952 7952 2906 PORTOLA 9 9 17 12
84006075PCT7953 7953 2904 PORTOLA 9 9 17 12
84006075PCT7954 7954 2001 VISITA VLY 9 8 17 12
84006075PCT7955 7955 2002 PORTOLA 9 9 17 12
84006075PCT7956 7956 2004 PORTOLA 9 9 17 12
84006075PCT7957 7957 2005 PORTOLA 9 9 17 12
84006075PCT7958 7958 2004 PORTOLA 9 7 17 12
84006075PCT9001 9001 2009 VISITA VLY 10 8 19 14
84006075PCT9101 9101 2101 RICHMOND 1 8 19 12
84006075PCT9102 9102 2101 RICHMOND 1 8 19 12
84006075PCT9103 9103 2103 RICHMOND 1 8 19 12
84006075PCT9104 9104 2104 RICHMOND 1 8 19 12
84006075PCT9105 9105 2105 SECLF/PREHTS 1 8 19 12
84006075PCT9106 9106 2106 SECLF/PREHTS 1 8 19 12
84006075PCT9107 9107 2107 RICHMOND 1 8 19 12
84006075PCT9108 9108 2108 RICHMOND 1 8 19 12
84006075PCT9109 9109 2111 RICHMOND 1 8 19 12
84006075PCT9111 9111 2109 RICHMOND 1 8 19 12
84006075PCT9112 9112 2112 RICHMOND 1 8 19 12
84006075PCT9113 9113 2204 SECLF/PREHTS 1 8 19 12
84006075PCT9114 9114 2113 RICHMOND 1 8 19 12
84006075PCT9115 9115 2114 RICHMOND 1 8 19 12
84006075PCT9116 9116 2115 RICHMOND 1 8 19 12
84006075PCT9117 9117 2118 RICHMOND 1 8 19 12
84006075PCT9118 9118 2121 RICHMOND 1 8 19 12
84006075PCT9119 9119 2119 RICHMOND 1 8 19 12
84006075PCT9121 9121 2121 RICHMOND 1 8 19 12
84006075PCT9122 9122 2122 RICHMOND 1 8 19 12
84006075PCT9123 9123 2123 RICHMOND 1 8 19 12
84006075PCT9124 9124 2124 RICHMOND 1 8 19 12
84006075PCT9125 9125 2125 RICHMOND 1 8 19 12
84006075PCT9126 9126 2126 RICHMOND 1 8 19 12
84006075PCT9127 9127 2127 RICHMOND 1 8 19 12
84006075PCT9128 9128 2128 RICHMOND 1 8 19 12
84006075PCT9129 9129 2128 RICHMOND 1 8 19 12
84006075PCT9131 9131 2129 RICHMOND 1 8 19 12
84006075PCT9132 9132 2131 RICHMOND 1 8 19 12
84006075PCT9133 9133 2132 RICHMOND 1 8 19 12
84006075PCT9134 9134 2133 LRL HTS/ANZA 1 8 19 12
84006075PCT9135 9135 2117 RICHMOND 1 8 19 12
84006075PCT9136 9136 2135 RICHMOND 1 8 19 12
84006075PCT9137 9137 2136 RICHMOND 1 8 19 12
84006075PCT9138 9138 2137 RICHMOND 1 8 19 12
84006075PCT9139 9139 2138 RICHMOND 1 8 19 12
84006075PCT9141 9141 2139 RICHMOND 1 8 19 12
84006075PCT9142 9142 2141 RICHMOND 1 8 19 12
84006075PCT9143 9143 2142 RICHMOND 1 8 19 12
84006075PCT9144 9144 2143 RICHMOND 1 8 19 12
84006075PCT9145 9145 2145 RICHMOND 1 8 19 12
84006075PCT9146 9146 2147 RICHMOND 1 8 19 12
84006075PCT9147 9147 2147 RICHMOND 1 8 19 12
84006075PCT9148 9148 2149 RICHMOND 1 8 19 12
84006075PCT9149 9149 2150 LRL HTS/ANZA 1 8 19 12
84006075PCT9151 9151 2134 LRL HTS/ANZA 1 8 19 12
84006075PCT9152 9152 2151 LRL HTS/ANZA 1 8 19 12
84006075PCT9201 9201 3200 MAR/PAC HTS 2 8 19 12
84006075PCT9202 9202 3201 MAR/PAC HTS 2 8 19 12
84006075PCT9203 9203 3202 MAR/PAC HTS 2 8 19 12
84006075PCT9204 9204 3203 MAR/PAC HTS 2 8 19 12
84006075PCT9205 9205 3204 MAR/PAC HTS 2 8 19 12
84006075PCT9206 9206 3207 MAR/PAC HTS 2 8 19 12
84006075PCT9207 9207 3210 MAR/PAC HTS 2 8 19 12
84006075PCT9208 9208 3208 MAR/PAC HTS 2 8 19 12
84006075PCT9209 9209 9205 MAR/PAC HTS 2 8 19 12
84006075PCT9211 9211 3213 MAR/PAC HTS 2 8 19 12
84006075PCT9212 9212 3209 MAR/PAC HTS 2 8 19 12
84006075PCT9213 9213 3212 MAR/PAC HTS 2 8 19 12
84006075PCT9214 9214 3214 MAR/PAC HTS 2 8 19 12
84006075PCT9215 9215 3215 MAR/PAC HTS 2 8 19 12
84006075PCT9216 9216 3216 MAR/PAC HTS 2 8 19 12
84006075PCT9217 9217 3217 MAR/PAC HTS 2 8 19 12
84006075PCT9218 9218 3218 MAR/PAC HTS 2 8 19 12
84006075PCT9219 9219 3219 MAR/PAC HTS 2 8 19 12
84006075PCT9221 9221 3223 MAR/PAC HTS 2 8 19 12
84006075PCT9222 9222 3224 MAR/PAC HTS 2 8 19 12
84006075PCT9223 9223 3225 MAR/PAC HTS 2 8 19 12
84006075PCT9224 9224 3226 MAR/PAC HTS 2 8 19 12
84006075PCT9225 9225 3228 MAR/PAC HTS 2 8 19 12
84006075PCT9226 9226 3227 MAR/PAC HTS 2 8 19 12
84006075PCT9227 9227 2202 SECLF/PREHTS 2 8 19 12
84006075PCT9228 9228 2200 SECLF/PREHTS 2 8 19 12
84006075PCT9229 9229 2201 SECLF/PREHTS 2 8 19 12
84006075PCT9231 9231 2203 SECLF/PREHTS 2 8 19 12
84006075PCT9232 9232 2205 SECLF/PREHTS 2 8 19 12
84006075PCT9233 9233 2206 SECLF/PREHTS 2 8 19 12
84006075PCT9234 9234 2207 SECLF/PREHTS 2 8 19 12
84006075PCT9235 9235 2208 SECLF/PREHTS 2 8 19 12
84006075PCT9236 9236 2209 MAR/PAC HTS 2 8 19 12
84006075PCT9237 9237 3231 MAR/PAC HTS 2 8 19 12
84006075PCT9238 9238 3232 MAR/PAC HTS 2 8 19 12
84006075PCT9239 9239 3233 MAR/PAC HTS 2 8 19 12
84006075PCT9241 9241 3234 MAR/PAC HTS 2 8 19 12
84006075PCT9242 9242 3239 MAR/PAC HTS 2 8 19 12
84006075PCT9243 9243 2215 MAR/PAC HTS 2 8 19 12
84006075PCT9244 9244 3235 MAR/PAC HTS 2 8 19 12
84006075PCT9245 9245 3236 MAR/PAC HTS 2 8 19 12
84006075PCT9246 9246 3237 MAR/PAC HTS 2 8 19 12
84006075PCT9247 9247 3238 MAR/PAC HTS 2 8 19 12
84006075PCT9248 9248 3241 MAR/PAC HTS 2 8 19 12
84006075PCT9249 9249 2211 LRL HTS/ANZA 2 8 19 12
84006075PCT9251 9251 2212 LRL HTS/ANZA 2 8 19 12
84006075PCT9252 9252 2213 LRL HTS/ANZA 2 8 19 12
84006075PCT9253 9253 2214 LRL HTS/ANZA 2 8 19 12
84006075PCT9254 9254 2216 WST ADDITION 2 9 19 12
84006075PCT9255 9255 2217 LRL HTS/ANZA 2 8 19 12
84006075PCT9256 9256 3501 WST ADDITION 2 9 19 12
84006075PCT9257 9257 2219 WST ADDITION 2 9 19 12
84006075PCT9258 9258 2218 LRL HTS/ANZA 2 8 19 12
84006075PCT9401 9401 2401 SUNSET 4 8 19 12
84006075PCT9402 9402 2402 SUNSET 4 8 19 12
84006075PCT9403 9403 2403 SUNSET 4 8 19 12
84006075PCT9404 9404 2404 SUNSET 4 8 19 12
84006075PCT9405 9405 2405 SUNSET 4 8 19 12
84006075PCT9406 9406 2406 SUNSET 4 8 19 12
84006075PCT9407 9407 2407 SUNSET 4 8 19 12
84006075PCT9408 9408 2408 SUNSET 4 8 19 12
84006075PCT9409 9409 2505 INNER SUNSET 4 9 19 12
84006075PCT9411 9411 2409 SUNSET 4 8 19 12
84006075PCT9412 9412 2409 SUNSET 4 8 19 12
84006075PCT9413 9413 2412 SUNSET 4 8 19 12
84006075PCT9414 9414 2413 SUNSET 4 8 19 12
84006075PCT9415 9415 2414 SUNSET 4 8 19 12
84006075PCT9416 9416 2416 SUNSET 4 8 19 12
84006075PCT9417 9417 2417 SUNSET 4 8 19 12
84006075PCT9418 9418 2418 SUNSET 4 8 19 12
84006075PCT9419 9419 2419 SUNSET 4 8 19 12
84006075PCT9421 9421 2422 SUNSET 4 8 19 12
84006075PCT9422 9422 2423 SUNSET 4 8 19 12
84006075PCT9423 9423 2415 SUNSET 4 8 19 12
84006075PCT9424 9424 2416 SUNSET 4 8 19 12
84006075PCT9425 9425 2429 SUNSET 4 8 19 12
84006075PCT9426 9426 2425 SUNSET 4 8 19 12
84006075PCT9427 9427 2421 SUNSET 4 8 19 12
84006075PCT9428 9428 2427 SUNSET 4 8 19 12
84006075PCT9429 9429 2431 SUNSET 4 8 19 12
84006075PCT9431 9431 2432 SUNSET 4 8 19 12
84006075PCT9432 9432 2426 SUNSET 4 8 19 12
84006075PCT9433 9433 2434 SUNSET 4 8 19 12
84006075PCT9434 9434 2428 SUNSET 4 8 19 12
84006075PCT9435 9435 2436 SUNSET 4 8 19 12
84006075PCT9436 9436 2437 SUNSET 4 8 19 12
84006075PCT9437 9437 2438 SUNSET 4 8 19 12
84006075PCT9438 9438 2439 SUNSET 4 8 19 12
84006075PCT9439 9439 2433 SUNSET 4 8 19 12
84006075PCT9441 9441 2441 SUNSET 4 8 19 12
84006075PCT9442 9442 2435 SUNSET 4 8 19 12
84006075PCT9443 9443 2442 SUNSET 4 8 19 12
84006075PCT9444 9444 2443 SUNSET 4 8 19 12
84006075PCT9445 9445 2444 SUNSET 4 8 19 12
84006075PCT9446 9446 2445 SUNSET 4 8 19 12
84006075PCT9447 9447 2446 SUNSET 4 8 19 12
84006075PCT9448 9448 2447 SUNSET 4 8 19 12
84006075PCT9449 9449 2448 SUNSET 4 8 19 12
84006075PCT9451 9451 2440 SUNSET 4 8 19 12
84006075PCT9452 9452 2451 SUNSET 4 8 19 12
84006075PCT9453 9453 2449 SUNSET 4 8 19 14
84006075PCT9501 9501 3501 WST ADDITION 5 9 19 12
84006075PCT9502 9502 2217 LRL HTS/ANZA 5 8 19 12
84006075PCT9503 9503 3501 WST ADDITION 5 9 19 12
84006075PCT9504 9504 3500 WST ADDITION 5 9 19 12
84006075PCT9505 9505 3507 WST ADDITION 5 9 19 12
84006075PCT9506 9506 3514 WST ADDITION 5 9 19 12
84006075PCT9507 9507 3512 LRL HTS/ANZA 5 9 19 12
84006075PCT9508 9508 3513 WST ADDITION 5 9 19 12
84006075PCT9509 9509 3511 LRL HTS/ANZA 5 9 19 12
84006075PCT9511 9511 3512 WST ADDITION 5 9 19 12
84006075PCT9512 9512 3517 WST ADDITION 5 9 19 12
84006075PCT9513 9513 3515 WST ADDITION 5 9 19 12
84006075PCT9514 9514 2514 NA 5 9 19 12
84006075PCT9515 9515 2504 INNER SUNSET 5 9 19 12
84006075PCT9516 9516 2506 INNER SUNSET 5 9 19 12
84006075PCT9517 9517 2507 INNER SUNSET 5 9 19 12
84006075PCT9518 9518 2508 INNER SUNSET 5 9 19 12
84006075PCT9519 9519 2509 INNER SUNSET 5 9 19 12
84006075PCT9521 9521 2512 INNER SUNSET 5 9 19 12
84006075PCT9522 9522 2513 INNER SUNSET 5 9 19 12
84006075PCT9701 9701 2701 INNER SUNSET 7 9 19 12
84006075PCT9702 9702 2702 INNER SUNSET 7 9 19 12
84006075PCT9703 9703 2704 W TWIN PKS 7 8 19 12
84006075PCT9704 9704 2705 W TWIN PKS 7 8 19 12
84006075PCT9705 9705 2706 W TWIN PKS 7 8 19 12
84006075PCT9706 9706 2706 W TWIN PKS 7 9 19 12
84006075PCT9707 9707 2712 W TWIN PKS 7 8 19 12
84006075PCT9708 9708 2713 W TWIN PKS 7 8 19 12
84006075PCT9709 9709 2711 W TWIN PKS 7 8 19 12
84006075PCT9711 9711 2714 W TWIN PKS 7 8 19 12
84006075PCT9712 9712 2710 W TWIN PKS 7 8 19 14
84006075PCT9713 9713 2718 W TWIN PKS 7 8 19 12
84006075PCT9714 9714 2721 W TWIN PKS 7 8 19 14
84006075PCT9715 9715 2715 W TWIN PKS 7 8 19 14
84006075PCT9716 9716 2723 W TWIN PKS 7 8 19 12
84006075PCT9717 9717 2724 W TWIN PKS 7 8 19 12
84006075PCT9718 9718 2725 W TWIN PKS 7 8 19 14
84006075PCT9719 9719 2726 W TWIN PKS 7 8 19 14
84006075PCT9721 9721 2722 W TWIN PKS 7 8 19 14
84006075PCT9722 9722 2720 W TWIN PKS 7 8 19 14
84006075PCT9723 9723 2728 LAKE MERCED 7 8 19 14
84006075PCT9724 9724 2729 LAKE MERCED 7 8 19 14
84006075PCT9725 9725 2731 LAKE MERCED 7 8 19 14
84006075PCT9726 9726 2730 LAKE MERCED 7 8 19 14
84006075PCT9727 9727 2732 W TWIN PKS 7 8 19 14
84006075PCT9728 9728 2733 W TWIN PKS 7 8 19 14
84006075PCT9729 9729 2734 W TWIN PKS 7 8 19 14
84006075PCT9731 9731 2735 W TWIN PKS 7 8 19 14
84006075PCT9732 9732 2740 W TWIN PKS 7 8 19 12
84006075PCT9733 9733 2727 W TWIN PKS 7 8 19 14
84006075PCT9734 9734 2738 W TWIN PKS 7 8 19 14
84006075PCT9735 9735 2739 W TWIN PKS 7 8 19 14
84006075PCT9736 9736 2741 W TWIN PKS 7 8 19 14
84006075PCT9737 9737 2750 W TWIN PKS 7 8 19 14
84006075PCT9738 9738 2728 LAKE MERCED 7 8 19 14
84006075PCT9739 9739 2756 LAKE MERCED 7 8 19 14
84006075PCT9741 9741 2745 LAKE MERCED 7 8 19 14
84006075PCT9742 9742 2746 W TWIN PKS 7 8 19 14
84006075PCT9743 9743 2759 LAKE MERCED 7 8 19 14
84006075PCT9744 9744 2757 LAKE MERCED 7 8 19 14
84006075PCT9745 9745 2758 LAKE MERCED 7 8 19 14
84006075PCT9746 9746 2747 W TWIN PKS 7 8 19 14
84006075PCT9747 9747 1111 W TWIN PKS 7 8 19 14
84006075PCT9748 9748 2749 W TWIN PKS 7 8 19 14
84006075PCT9749 9749 1112 INGLESIDE 7 8 19 14
84006075PCT9751 9751 2751 W TWIN PKS 7 8 19 14
84006075PCT9752 9752 2752 W TWIN PKS 7 8 19 14
84006075PCT9753 9753 2755 W TWIN PKS 7 8 19 14
84006075PCT9754 9754 2753 W TWIN PKS 7 9 19 14
84006075PCT9755 9755 3870 W TWIN PKS 7 9 19 14
84006075PCT9756 9756 2761 EXCELSIOR 7 8 19 14
84006075PCT9801 9801 1102 EXCELSIOR 8 9 19 14
84006075PCT9900 9900 4000 NA NA NA 17 13
84006075PCT9901 9901 1102 EXCELSIOR 8 9 17 14
84006075PCT9902 9902 1101 EXCELSIOR 7 9 17 14
84006075PCTGGP1 Golden Gate Park GG Park NA 1 9 19 12
84006075PCTGGP2 Golden Gate Park GG Park NA 1 8 19 12
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"precinct":{"type":"GeometryCollection","geometries":[
{"type":"Polygon","id":"84006075PCT9151","arcs":[[0,1,2,3,4,5]]},
{"type":"Polygon","id":"84006075PCT9134","arcs":[[-5,6,7,8,9,10]]},
{"type":"Polygon","id":"84006075PCT9152","arcs":[[11,-3,12,13,14,15]]},
{"type":"Polygon","id":"84006075PCT7101","arcs":[[16,-16,17,18]]},
{"type":"Polygon","id":"84006075PCT9133","arcs":[[-8,19,20,21,22,23]]},
{"type":"Polygon","id":"84006075PCT9132","arcs":[[-22,24,25,26,27]]},
{"type":"Polygon","id":"84006075PCT9148","arcs":[[28,29,30,-25,-21]]},
{"type":"Polygon","id":"84006075PCT9147","arcs":[[31,32,33,-26,-31]]},
{"type":"Polygon","id":"84006075PCT9131","arcs":[[-27,-34,34,35,36,37]]},
{"type":"Polygon","id":"84006075PCT9146","arcs":[[38,39,-35,-33]]},
{"type":"Polygon","id":"84006075PCT9129","arcs":[[-37,40,41,42]]},
{"type":"Polygon","id":"84006075PCT9145","arcs":[[43,44,-41,-36,-40,45]]},
{"type":"Polygon","id":"84006075PCT9128","arcs":[[-42,-45,46,47,48]]},
{"type":"Polygon","id":"84006075PCT9127","arcs":[[-47,49,50,51]]},
{"type":"Polygon","id":"84006075PCT9144","arcs":[[52,53,-50,-44,54]]},
{"type":"Polygon","id":"84006075PCT9126","arcs":[[-51,-54,55,56,57]]},
{"type":"Polygon","id":"84006075PCT9143","arcs":[[58,59,-56,-53,60]]},
{"type":"Polygon","id":"84006075PCT9125","arcs":[[-57,-60,61,62]]},
{"type":"Polygon","id":"84006075PCT9124","arcs":[[-62,63,64,65,66]]},
{"type":"Polygon","id":"84006075PCT9142","arcs":[[-64,-59,67,68,69]]},
{"type":"Polygon","id":"84006075PCT9141","arcs":[[70,71,-69,72]]},
{"type":"Polygon","id":"84006075PCT9123","arcs":[[-65,-70,-72,73,74,75,76]]},
{"type":"Polygon","id":"84006075PCT9139","arcs":[[77,78,-71,79]]},
{"type":"Polygon","id":"84006075PCT9122","arcs":[[-74,-79,80,81,82,83]]},
{"type":"Polygon","id":"84006075PCTGGP1","arcs":[[84,85,86,87,-46,-39,-32,-30,88,-17]]},
{"type":"Polygon","id":"84006075PCT9109","arcs":[[-52,89,90,91,92]]},
{"type":"Polygon","id":"84006075PCT9106","arcs":[[93,94,95,-92,96]]},
{"type":"Polygon","id":"84006075PCT9108","arcs":[[97,98,-97,-91,99]]},
{"type":"Polygon","id":"84006075PCT9105","arcs":[[100,101,102,103,-94,-99,104]]},
{"type":"Polygon","id":"84006075PCT9101","arcs":[[105,106,107,108]]},
{"type":"Polygon","id":"84006075PCTGGP2","arcs":[[109,110,111,112,113,114,115,116,117,118,119,120,121,122,-80,-73,-68,-61,-55,-88]]},
{"type":"Polygon","id":"84006075PCT9102","arcs":[[123,124,125,-83,126,127,-106,128,129]]},
{"type":"Polygon","id":"84006075PCT9103","arcs":[[-75,-84,-126,130,131]]},
{"type":"Polygon","id":"84006075PCT9104","arcs":[[-76,-132,132,-101,133]]},
{"type":"Polygon","id":"84006075PCT9111","arcs":[[-90,-58,-63,-67,134,-100]]},
{"type":"Polygon","id":"84006075PCT9107","arcs":[[-66,-77,-134,-105,-98,-135]]},
{"type":"Polygon","id":"84006075PCT9116","arcs":[[-23,135,136,137,138,139]]},
{"type":"Polygon","id":"84006075PCT9115","arcs":[[-28,140,141,-136]]},
{"type":"Polygon","id":"84006075PCT9113","arcs":[[-137,-142,142,143,144]]},
{"type":"Polygon","id":"84006075PCT9114","arcs":[[-141,-38,-43,-49,145,-143]]},
{"type":"Polygon","id":"84006075PCT9112","arcs":[[-144,-146,-48,-93,-96,146]]},
{"type":"Polygon","id":"84006075PCT9149","arcs":[[-29,-20,-7,-4,-12,-89]]},
{"type":"Polygon","id":"84006075PCT9135","arcs":[[-129,-109,147,148,149,-120,150]]},
{"type":"Polygon","id":"84006075PCT9118","arcs":[[151,152,153,-107,-128]]},
{"type":"Polygon","id":"84006075PCT9121","arcs":[[-82,154,155,156,-152,-127]]},
{"type":"Polygon","id":"84006075PCT9138","arcs":[[157,-155,-81,-78,-123]]},
{"type":"Polygon","id":"84006075PCT9117","arcs":[[-154,158,-148,-108]]},{"type":"Polygon","id":"84006075PCT9137","arcs":[[159,160,-156,-158,-122]]},{"type":"Polygon","id":"84006075PCT9136","arcs":[[-150,161,-160,-121]]},{"type":"Polygon","id":"84006075PCT9119","arcs":[[-162,-149,-159,-153,-157,-161]]},{"type":"Polygon","id":"84006075PCT7208","arcs":[[162,163,164,165,166]]},{"type":"Polygon","id":"84006075PCT7209","arcs":[[167,-166,168,169]]},{"type":"Polygon","id":"84006075PCT7207","arcs":[[-165,170,171,172,173,-169]]},{"type":"Polygon","id":"84006075PCT9248","arcs":[[174,175,176,177,-173]]},{"type":"Polygon","id":"84006075PCT9242","arcs":[[178,179,180,181,-176]]},{"type":"Polygon","id":"84006075PCT9241","arcs":[[182,183,184,-181]]},{"type":"Polygon","id":"84006075PCT9226","arcs":[[185,-184,186,187]]},{"type":"Polygon","id":"84006075PCT9225","arcs":[[-188,188,189,190,191,192]]},{"type":"Polygon","id":"84006075PCT9219","arcs":[[193,-191,194,195,196,197]]},{"type":"Polygon","id":"84006075PCT9213","arcs":[[-197,198,199]]},{"type":"Polygon","id":"84006075PCT9205","arcs":[[200,-199,-196,201,202,203,204]]},{"type":"Polygon","id":"84006075PCT7203","arcs":[[-192,-194,205,206]]},{"type":"Polygon","id":"84006075PCT7204","arcs":[[207,-206,-198,208,209,210]]},{"type":"Polygon","id":"84006075PCT7205","arcs":[[211,212,-211,213,214]]},{"type":"Polygon","id":"84006075PCT7202","arcs":[[215,216,-214,-210,217,218]]},{"type":"Polygon","id":"84006075PCT7201","arcs":[[-218,-209,-200,-201,219]]},{"type":"Polygon","id":"84006075PCT9247","arcs":[[220,221,222,223,-179,-175,-172,224]]},{"type":"Polygon","id":"84006075PCT9239","arcs":[[-180,-224,225,226,227,-183]]},{"type":"Polygon","id":"84006075PCT9224","arcs":[[228,229,-189,-187,-228]]},{"type":"Polygon","id":"84006075PCT9218","arcs":[[-195,-190,-230,230,231]]},{"type":"Polygon","id":"84006075PCT9212","arcs":[[-232,232,233,234,-202]]},{"type":"Polygon","id":"84006075PCT9209","arcs":[[-235,235,236,-203]]},{"type":"Polygon","id":"84006075PCT9204","arcs":[[-204,-237,237,238,239]]},{"type":"Polygon","id":"84006075PCT9208","arcs":[[-234,240,241,-238,-236]]},{"type":"Polygon","id":"84006075PCT9207","arcs":[[242,243,244,245,-242]]},{"type":"Polygon","id":"84006075PCT9211","arcs":[[-244,246,247,248]]},{"type":"Polygon","id":"84006075PCT9206","arcs":[[249,250,-245,-249]]},{"type":"Polygon","id":"84006075PCT9203","arcs":[[-239,-246,-251,251,252]]},{"type":"Polygon","id":"84006075PCT7206","arcs":[[253,254,255,256]]},{"type":"Polygon","id":"84006075PCT9245","arcs":[[-222,-255,257,258,259]]},{"type":"Polygon","id":"84006075PCT9246","arcs":[[-223,-260,260,-226]]},{"type":"Polygon","id":"84006075PCT9238","arcs":[[261,262,263,264,-227,-261,-259]]},{"type":"Polygon","id":"84006075PCT9223","arcs":[[265,266,-229,-265]]},{"type":"Polygon","id":"84006075PCT9217","arcs":[[-231,-267,267,268,-233]]},{"type":"Polygon","id":"84006075PCT9216","arcs":[[-269,269,270,-243,-241]]},{"type":"Polygon","id":"84006075PCT9222","arcs":[[271,272,-270,-268,-266,-264,273]]},{"type":"Polygon","id":"84006075PCT9215","arcs":[[-271,-273,274,275,-247]]},{"type":"Polygon","id":"84006075PCT9214","arcs":[[-276,276,277,-250,-248]]},{"type":"Polygon","id":"84006075PCT9221","arcs":[[-275,-272,278,279,280,281,-277]]},{"type":"Polygon","id":"84006075PCT9254","arcs":[[282,283,284,-254,285,286]]},{"type":"Polygon","id":"84006075PCT9244","arcs":[[287,288,-262,-258,-285]]},{"type":"Polygon","id":"84006075PCT9237","arcs":[[289,290,-279,-274,-263,-289]]},{"type":"Polygon","id":"84006075PCT9236","arcs":[[291,292,-280,-291]]},{"type":"Polygon","id":"84006075PCT9243","arcs":[[-290,-288,-284,293,294,-292]]},{"type":"Polygon","id":"84006075PCT9255","arcs":[[295,296,297,298,299,300,301]]},{"type":"Polygon","id":"84006075PCT9253","arcs":[[-294,-283,-297,302,303,304,305]]},{"type":"Polygon","id":"84006075PCT9235","arcs":[[-306,306,307,308,-293,-295]]},{"type":"Polygon","id":"84006075PCT9252","arcs":[[-296,309,-6,-11,310,-303]]},{"type":"Polygon","id":"84006075PCT9251","arcs":[[-10,311,312,313,-304,-311]]},{"type":"Polygon","id":"84006075PCT9249","arcs":[[-9,-24,-140,314,315,-312]]},{"type":"Polygon","id":"84006075PCT9234","arcs":[[-305,-314,316,317,-307]]},{"type":"Polygon","id":"84006075PCT9233","arcs":[[-313,-316,318,319,-317]]},{"type":"Polygon","id":"84006075PCT9232","arcs":[[-315,-139,320,321,-319]]},{"type":"Polygon","id":"84006075PCT9231","arcs":[[-138,-145,-147,322,323,-321]]},{"type":"Polygon","id":"84006075PCT9229","arcs":[[-323,-95,-104,324,325]]},{"type":"Polygon","id":"84006075PCT9228","arcs":[[-325,-103,326,-124,327,328]]},{"type":"Polygon","id":"84006075PCT9227","arcs":[[-102,-133,-131,-125,-327]]},{"type":"Polygon","id":"84006075PCT9201","arcs":[[-326,-329,329,330]]},{"type":"Polygon","id":"84006075PCT9202","arcs":[[331,-308,-318,-320,-322,-324,-331,332,-252,-278,-282]]},{"type":"Polygon","id":"84006075PCT9258","arcs":[[333,-1,334,-301,335]]},{"type":"Polygon","id":"84006075PCT9257","arcs":[[336,-336,-300,337,338,339]]},{"type":"Polygon","id":"84006075PCT9256","arcs":[[-298,-287,340,341,342,343]]},{"type":"Polygon","id":"84006075PCT7301","arcs":[[344,345,-216,346,347]]},{"type":"Polygon","id":"84006075PCT7304","arcs":[[348,-345,349,350]]},{"type":"Polygon","id":"84006075PCT7305","arcs":[[351,352,-350,353]]},{"type":"Polygon","id":"84006075PCT7302","arcs":[[354,355,-354,-348,356]]},{"type":"Polygon","id":"84006075PCT7307","arcs":[[-353,357,358,359,360,-351]]},{"type":"Polygon","id":"84006075PCT7308","arcs":[[361,362,363,-358,-352,-356]]},{"type":"Polygon","id":"84006075PCT7303","arcs":[[-215,-217,-346,-349,-361,364]]},{"type":"Polygon","id":"84006075PCT7349","arcs":[[365,366,367,368,369,370]]},{"type":"Polygon","id":"84006075PCT7348","arcs":[[371,372,373,374,375,376,377,-367]]},{"type":"Polygon","id":"84006075PCT7345","arcs":[[378,379,380,-377]]},{"type":"Polygon","id":"84006075PCT7344","arcs":[[381,382,383,-379,-376,384]]},{"type":"Polygon","id":"84006075PCT7347","arcs":[[-375,385,386,387,388,389,-385]]},{"type":"Polygon","id":"84006075PCT7346","arcs":[[390,391,392,393,-389,394,395]]},{"type":"Polygon","id":"84006075PCT7339","arcs":[[396,-392,397,398,-170,399]]},{"type":"Polygon","id":"84006075PCT7341","arcs":[[400,401,-393,-397,402,403]]},{"type":"Polygon","id":"84006075PCT7343","arcs":[[-402,404,-382,-390,-394]]},{"type":"Polygon","id":"84006075PCT7342","arcs":[[-401,405,406,407,-383,-405]]},{"type":"Polygon","id":"84006075PCT7334","arcs":[[-406,-404,408,409,410]]},{"type":"Polygon","id":"84006075PCT7332","arcs":[[-400,-174,-178,411,412,-409,-403]]},{"type":"Polygon","id":"84006075PCT7338","arcs":[[413,414,-369,415]]},{"type":"Polygon","id":"84006075PCT7327","arcs":[[416,417,418,419,-414]]},{"type":"Polygon","id":"84006075PCT7335","arcs":[[-407,-411,420,421,422]]},{"type":"Polygon","id":"84006075PCT7333","arcs":[[-410,-413,423,424,425,-421]]},{"type":"Polygon","id":"84006075PCT7323","arcs":[[-177,-182,426,427,-424,-412]]},{"type":"Polygon","id":"84006075PCT7324","arcs":[[-428,428,429,-425]]},{"type":"Polygon","id":"84006075PCT7319","arcs":[[430,431,-429,-427,-185,432]]},{"type":"Polygon","id":"84006075PCT7309","arcs":[[-193,-207,433,434]]},{"type":"Polygon","id":"84006075PCT7316","arcs":[[435,436,-363,437,438]]},{"type":"Polygon","id":"84006075PCT7315","arcs":[[439,440,-359,-364,-437]]},{"type":"Polygon","id":"84006075PCT7317","arcs":[[441,442,443,-438,-362,-355]]},{"type":"Polygon","id":"84006075PCT7329","arcs":[[444,-371,445,446,-439,-444,447]]},{"type":"Polygon","id":"84006075PCT7331","arcs":[[448,-448,-443,449]]},{"type":"Polygon","id":"84006075PCT7306","arcs":[[450,451,-212,-365,-360,-441,452]]},{"type":"Polygon","id":"84006075PCT7312","arcs":[[453,454,-452,455,456]]},{"type":"Polygon","id":"84006075PCT7313","arcs":[[457,458,-456,-451]]},{"type":"Polygon","id":"84006075PCT7314","arcs":[[-458,-453,-440,-436,459]]},{"type":"Polygon","id":"84006075PCT7311","arcs":[[-434,-208,-213,-455,460]]},{"type":"Polygon","id":"84006075PCT7328","arcs":[[-415,-420,461,-446,-370]]},{"type":"Polygon","id":"84006075PCT7322","arcs":[[462,463,-460,-447,-462,-419]]},{"type":"Polygon","id":"84006075PCT7326","arcs":[[-463,-418,464,465,466,467]]},{"type":"Polygon","id":"84006075PCT7325","arcs":[[-430,-432,468,-467,-422,-426]]},{"type":"Polygon","id":"84006075PCT7321","arcs":[[-468,-469,-431,-457,-459,-464]]},{"type":"Polygon","id":"84006075PCT7337","arcs":[[-368,-378,-381,469,-465,-417,-416]]},{"type":"Polygon","id":"84006075PCT7336","arcs":[[-380,-384,-408,-423,-466,-470]]},{"type":"Polygon","id":"84006075PCT7318","arcs":[[-186,-435,-461,-454,-433]]},{"type":"Polygon","id":"84006075PCT9409","arcs":[[470,471,472,473]]},{"type":"Polygon","id":"84006075PCT9408","arcs":[[474,475,-111,-473,476,477]]},{"type":"Polygon","id":"84006075PCT9407","arcs":[[-476,478,479,-112]]},{"type":"Polygon","id":"84006075PCT9406","arcs":[[-480,480,481,-113]]},{"type":"Polygon","id":"84006075PCT9405","arcs":[[-482,482,483,-114]]},{"type":"Polygon","id":"84006075PCT9403","arcs":[[484,485,486,-116]]},{"type":"Polygon","id":"84006075PCT9411","arcs":[[487,488,489,490]]},{"type":"Polygon","id":"84006075PCT9413","arcs":[[491,492,493,494,495,-486]]},{"type":"Polygon","id":"84006075PCT9415","arcs":[[496,-481,-479,-475,497,498]]},{"type":"Polygon","id":"84006075PCT9422","arcs":[[499,-498,-478,500,501]]},{"type":"Polygon","id":"84006075PCT9418","arcs":[[502,-493,503,504,505]]},{"type":"Polygon","id":"84006075PCT9417","arcs":[[506,507,508,-494,-503,509]]},{"type":"Polygon","id":"84006075PCT9412","arcs":[[-491,510,-495,-509,511]]},{"type":"Polygon","id":"84006075PCT9416","arcs":[[512,-488,-512,-508,513,514]]},{"type":"Polygon","id":"84006075PCT9423","arcs":[[515,516,517,518,-515]]},{"type":"Polygon","id":"84006075PCT9424","arcs":[[-507,519,520,-516,-514]]},{"type":"Polygon","id":"84006075PCT9425","arcs":[[521,522,523,-520,-510,-506,524,525]]},{"type":"Polygon","id":"84006075PCT9434","arcs":[[526,-517,-521,-524,527,528]]},{"type":"Polygon","id":"84006075PCT9435","arcs":[[529,530,531,-528,-523,532]]},{"type":"Polygon","id":"84006075PCT9436","arcs":[[533,534,-533,-522]]},{"type":"Polygon","id":"84006075PCT9443","arcs":[[535,536,537,538,-531,539]]},{"type":"Polygon","id":"84006075PCT9444","arcs":[[-540,-530,-535,540,541]]},{"type":"Polygon","id":"84006075PCT9449","arcs":[[-542,542,543,-536]]},{"type":"Polygon","id":"84006075PCT9427","arcs":[[544,545,546,547,548]]},{"type":"Polygon","id":"84006075PCT9432","arcs":[[549,550,551,-547,552,553]]},{"type":"Polygon","id":"84006075PCT9431","arcs":[[-551,554,555,556,557,558]]},{"type":"Polygon","id":"84006075PCT9429","arcs":[[-558,559,-526,560]]},{"type":"Polygon","id":"84006075PCT9438","arcs":[[561,-556,562,563,564]]},{"type":"Polygon","id":"84006075PCT9445","arcs":[[-541,565,566,567,568]]},{"type":"Polygon","id":"84006075PCT9451","arcs":[[569,570,-543,-569,571,572]]},{"type":"Polygon","id":"84006075PCT9452","arcs":[[573,-572,-568,574,575,576,577]]},{"type":"Polygon","id":"84006075PCT9453","arcs":[[578,579,580,-573,-574]]},{"type":"Polygon","id":"84006075PCT9421","arcs":[[581,582,-499,-500,583,-545]]},{"type":"Polygon","id":"84006075PCT9437","arcs":[[-534,-560,-557,-562,-566]]},{"type":"Polygon","id":"84006075PCT9426","arcs":[[-552,-559,-561,-525,-505,584,-548]]},{"type":"Polygon","id":"84006075PCT9419","arcs":[[-504,585,-582,-549,-585]]},{"type":"Polygon","id":"84006075PCT9414","arcs":[[-492,586,-483,-497,-583,-586]]},{"type":"Polygon","id":"84006075PCT9404","arcs":[[-484,-587,-485,-115]]},{"type":"Polygon","id":"84006075PCT9402","arcs":[[-487,-496,-511,-490,587,-117]]},{"type":"Polygon","id":"84006075PCT9439","arcs":[[588,-563,-555,-550,589,590,591]]},{"type":"Polygon","id":"84006075PCT9401","arcs":[[-588,-489,-513,-519,592,593,-118]]},{"type":"Polygon","id":"84006075PCT9442","arcs":[[-529,-532,-539,594]]},{"type":"Polygon","id":"84006075PCT9441","arcs":[[-518,-527,-595,-538,595,596,597,-593]]},{"type":"Polygon","id":"84006075PCT9428","arcs":[[598,-553,-546,-584,-502,599,600]]},{"type":"Polygon","id":"84006075PCT9433","arcs":[[601,-590,-554,-599]]},{"type":"Polygon","id":"84006075PCT9448","arcs":[[-577,602,-592,603,604]]},{"type":"Polygon","id":"84006075PCT9446","arcs":[[605,-575,-567,-565]]},{"type":"Polygon","id":"84006075PCT9447","arcs":[[-603,-576,-606,-564,-589]]},{"type":"Polygon","id":"84006075PCT9515","arcs":[[606,607,-471,608]]},{"type":"Polygon","id":"84006075PCT9516","arcs":[[609,610,611,-607,612]]},{"type":"Polygon","id":"84006075PCT9517","arcs":[[613,614,-610,615]]},{"type":"Polygon","id":"84006075PCT7553","arcs":[[616,617,618,619]]},{"type":"Polygon","id":"84006075PCT9514","arcs":[[620,621,622,623,624,625,626,-616,-613,-609,-474,-110,-87,627]]},{"type":"Polygon","id":"84006075PCT7503","arcs":[[-171,-164,628,629,-225]]},{"type":"Polygon","id":"84006075PCT7505","arcs":[[630,631,632,-629,-163]]},{"type":"Polygon","id":"84006075PCT7504","arcs":[[633,634,635,636,637,-632]]},{"type":"Polygon","id":"84006075PCT7502","arcs":[[-633,-638,638,-256,-221,-630]]},{"type":"Polygon","id":"84006075PCT7501","arcs":[[-342,639,-257,-639,-637]]},{"type":"Polygon","id":"84006075PCT9501","arcs":[[-286,-640,-341]]},{"type":"Polygon","id":"84006075PCT9504","arcs":[[640,-343,-636,641]]},{"type":"Polygon","id":"84006075PCT9503","arcs":[[-641,642,-338,643,-344]]},{"type":"Polygon","id":"84006075PCT9502","arcs":[[-644,-299]]},{"type":"Polygon","id":"84006075PCT9505","arcs":[[644,645,646,-339,-643,-642]]},{"type":"Polygon","id":"84006075PCT7549","arcs":[[647,648,649,-623,650]]},{"type":"Polygon","id":"84006075PCT7557","arcs":[[651,652,653,654,655,656]]},{"type":"Polygon","id":"84006075PCT7556","arcs":[[-657,657,658,659,660,661]]},{"type":"Polygon","id":"84006075PCT7555","arcs":[[-656,662,663,-658]]},{"type":"Polygon","id":"84006075PCT7552","arcs":[[664,665,-660,666,667,668]]},{"type":"Polygon","id":"84006075PCT7551","arcs":[[-667,-659,-664,669,-651,670]]},{"type":"Polygon","id":"84006075PCT7546","arcs":[[-622,671,672,-668,-671]]},{"type":"Polygon","id":"84006075PCT7533","arcs":[[673,674,-672,-621,675]]},{"type":"Polygon","id":"84006075PCT7527","arcs":[[676,677,-676,-628,-86,678,679,680,681,682]]},{"type":"Polygon","id":"84006075PCT7535","arcs":[[683,684,685,-677,686]]},{"type":"Polygon","id":"84006075PCT7531","arcs":[[687,688,689,690,691,692,693]]},{"type":"Polygon","id":"84006075PCT7528","arcs":[[694,695,-682,696,697,698]]},{"type":"Polygon","id":"84006075PCT7521","arcs":[[699,700,701,-697,-681]]},{"type":"Polygon","id":"84006075PCT7518","arcs":[[702,-700,-680,703,-18,-15]]},{"type":"Polygon","id":"84006075PCT7517","arcs":[[-85,-19,-704,-679]]},{"type":"Polygon","id":"84006075PCT7519","arcs":[[-703,-14,704,705,706,-701]]},{"type":"Polygon","id":"84006075PCT7522","arcs":[[707,-689,708,709,-707,710,711,712]]},{"type":"Polygon","id":"84006075PCT7524","arcs":[[-690,-708,713,714,715,716]]},{"type":"Polygon","id":"84006075PCT7512","arcs":[[717,718,-714]]},{"type":"Polygon","id":"84006075PCT7513","arcs":[[-715,-719,719,720,721,722]]},{"type":"Polygon","id":"84006075PCT7514","arcs":[[-716,-723,723,724,725]]},{"type":"Polygon","id":"84006075PCT7516","arcs":[[726,727,728,729,730]]},{"type":"Polygon","id":"84006075PCT7508","arcs":[[731,732,-631,733,734]]},{"type":"Polygon","id":"84006075PCT7506","arcs":[[735,-721,-645,-635]]},{"type":"Polygon","id":"84006075PCT9522","arcs":[[-650,736,737,-624]]},{"type":"Polygon","id":"84006075PCT7554","arcs":[[-655,738,-648,-670,-663]]},{"type":"Polygon","id":"84006075PCT7511","arcs":[[-735,739,740,741,-728]]},{"type":"Polygon","id":"84006075PCT7509","arcs":[[-740,-734,-167,-168,-399,742]]},{"type":"Polygon","id":"84006075PCT7525","arcs":[[-691,-717,-726,743,744,745]]},{"type":"Polygon","id":"84006075PCT7507","arcs":[[-722,-736,-634,-733,-724]]},{"type":"Polygon","id":"84006075PCT7523","arcs":[[746,-698,-702,-710]]},{"type":"Polygon","id":"84006075PCT7529","arcs":[[747,-699,-747,-709,-688,748]]},{"type":"Polygon","id":"84006075PCT9512","arcs":[[749,-712,750,751]]},{"type":"Polygon","id":"84006075PCT9509","arcs":[[-13,752,753,-705]]},{"type":"Polygon","id":"84006075PCT9511","arcs":[[-706,-754,754,-751,-711]]},{"type":"Polygon","id":"84006075PCT9507","arcs":[[755,-755,-753,-2,-334,-337]]},{"type":"Polygon","id":"84006075PCT9519","arcs":[[-626,756,-617,757,758,759]]},{"type":"Polygon","id":"84006075PCT9521","arcs":[[-738,-618,-757,-625]]},{"type":"Polygon","id":"84006075PCT9518","arcs":[[-760,760,761,-614,-627]]},{"type":"Polygon","id":"84006075PCT9506","arcs":[[762,763,-340,-647]]},{"type":"Polygon","id":"84006075PCT9508","arcs":[[-752,-756,-764,764]]},{"type":"Polygon","id":"84006075PCT9513","arcs":[[-713,-750,-765,-763,-646,-720,-718]]},{"type":"Polygon","id":"84006075PCT7547","arcs":[[-669,-673,-675,765,766]]},{"type":"Polygon","id":"84006075PCT7548","arcs":[[767,-767,768,-685]]},{"type":"Polygon","id":"84006075PCT7534","arcs":[[-686,-769,-766,-674,-678]]},{"type":"Polygon","id":"84006075PCT7536","arcs":[[769,770,-687,-683,-696,771]]},{"type":"Polygon","id":"84006075PCT7537","arcs":[[-772,-695,-748,772,773,774]]},{"type":"Polygon","id":"84006075PCT7539","arcs":[[775,776,-773,-749,777]]},{"type":"Polygon","id":"84006075PCT7538","arcs":[[-774,-777,778]]},{"type":"Polygon","id":"84006075PCT7541","arcs":[[779,780,-778,-694,781,782]]},{"type":"Polygon","id":"84006075PCT7542","arcs":[[-782,-693,783,784,785]]},{"type":"Polygon","id":"84006075PCT7543","arcs":[[-783,-786,786,787]]},{"type":"Polygon","id":"84006075PCT7545","arcs":[[788,789,790,791,792]]},{"type":"Polygon","id":"84006075PCT7544","arcs":[[793,794,795,-787,-785,796,-789]]},{"type":"Polygon","id":"84006075PCT7532","arcs":[[-784,-692,-746,797,-790,-797]]},{"type":"Polygon","id":"84006075PCT7526","arcs":[[-745,798,-731,799,-791,-798]]},{"type":"Polygon","id":"84006075PCT7515","arcs":[[-744,-725,-732,-727,-799]]},{"type":"Polygon","id":"84006075PCT7603","arcs":[[800,-395,-388,801,802]]},{"type":"Polygon","id":"84006075PCT7607","arcs":[[803,804,-803,805,806,807]]},{"type":"Polygon","id":"84006075PCT7604","arcs":[[-806,-802,-387,808,809]]},{"type":"Polygon","id":"84006075PCT7605","arcs":[[-809,-386,-374,810,811]]},{"type":"Polygon","id":"84006075PCT7609","arcs":[[812,813,814,-812,815]]},{"type":"Polygon","id":"84006075PCT7615","arcs":[[816,817,-814,818]]},{"type":"Polygon","id":"84006075PCT7608","arcs":[[-807,-810,-815,-818]]},{"type":"Polygon","id":"84006075PCT7612","arcs":[[-729,-742,819,820,821]]},{"type":"Polygon","id":"84006075PCT7646","arcs":[[822,823,824,825,826,827]]},{"type":"Polygon","id":"84006075PCT7639","arcs":[[828,829,830,831]]},{"type":"Polygon","id":"84006075PCT7644","arcs":[[832,-829,833,834,835]]},{"type":"Polygon","id":"84006075PCT7618","arcs":[[836,837,-794,-793,838,839]]},{"type":"Polygon","id":"84006075PCT7619","arcs":[[-839,840,841,842,843,844]]},{"type":"Polygon","id":"84006075PCT7621","arcs":[[-843,845,846,847,848]]},{"type":"Polygon","id":"84006075PCT7635","arcs":[[-830,-833,849,850,851,852,853]]},{"type":"Polygon","id":"84006075PCT7641","arcs":[[854,-834,-832,855,856,857]]},{"type":"Polygon","id":"84006075PCT7643","arcs":[[858,-850,-836,859,-828]]},{"type":"Polygon","id":"84006075PCT7645","arcs":[[860,-823,-860,-835,-855,861]]},{"type":"Polygon","id":"84006075PCT7642","arcs":[[-862,-858,862,863,864]]},{"type":"Polygon","id":"84006075PCT7611","arcs":[[865,866,-816,-811,-373]]},{"type":"Polygon","id":"84006075PCT7648","arcs":[[867,868]]},{"type":"Polygon","id":"84006075PCT7647","arcs":[[-868,869]]},{"type":"Polygon","id":"84006075PCT7601","arcs":[[-743,-398,-391,870,871]]},{"type":"Polygon","id":"84006075PCT7602","arcs":[[872,-871,-396,-801,-805]]},{"type":"Polygon","id":"84006075PCT7606","arcs":[[-804,873,-820,-741,-872,-873]]},{"type":"Polygon","id":"84006075PCT7617","arcs":[[874,875,876,-819,-813,-867,-846,-842]]},{"type":"Polygon","id":"84006075PCT7614","arcs":[[877,-808,-817,-877]]},{"type":"Polygon","id":"84006075PCT7613","arcs":[[878,-821,-874,-878,-876]]},{"type":"Polygon","id":"84006075PCT7616","arcs":[[-879,-875,-841,-792,-800,-730,-822]]},{"type":"Polygon","id":"84006075PCT7627","arcs":[[879,880,881,882,883,-445,-449]]},{"type":"Polygon","id":"84006075PCT7637","arcs":[[884,885,886,-882,887,-863,-857]]},{"type":"Polygon","id":"84006075PCT7636","arcs":[[-854,888,889,-885,-856,-831]]},{"type":"Polygon","id":"84006075PCT7632","arcs":[[890,-852,891,892,893,894]]},{"type":"Polygon","id":"84006075PCT7628","arcs":[[895,-840,-845,896,-894]]},{"type":"Polygon","id":"84006075PCT7629","arcs":[[-895,-897,897,898,899]]},{"type":"Polygon","id":"84006075PCT7622","arcs":[[900,-848,901]]},{"type":"Polygon","id":"84006075PCT7623","arcs":[[-898,-844,-849,-901,902,903]]},{"type":"Polygon","id":"84006075PCT7624","arcs":[[904,-903,-902,-847,-866,905]]},{"type":"Polygon","id":"84006075PCT7631","arcs":[[906,-899,-904,-905,907,908]]},{"type":"Polygon","id":"84006075PCT7633","arcs":[[-891,-900,-907,909,-889,-853]]},{"type":"Polygon","id":"84006075PCT7626","arcs":[[-887,910,911,-883]]},{"type":"Polygon","id":"84006075PCT7634","arcs":[[-890,-910,-909,912,-911,-886]]},{"type":"Polygon","id":"84006075PCT7625","arcs":[[-912,-913,-908,-906,-372,-366,-884]]},{"type":"Polygon","id":"84006075PCT7638","arcs":[[-864,-888,-881,913]]},{"type":"Polygon","id":"84006075PCT9738","arcs":[[914,915,916,917,918,919,920,921,-597,922]]},{"type":"Polygon","id":"84006075PCT9741","arcs":[[923,924,925,-917,926,927]]},{"type":"Polygon","id":"84006075PCT9756","arcs":[[928,929,930,-921,931]]},{"type":"Polygon","id":"84006075PCT9742","arcs":[[932,933,934,-924,935,936]]},{"type":"Polygon","id":"84006075PCT9727","arcs":[[937,938,-937,939,940,941]]},{"type":"Polygon","id":"84006075PCT9748","arcs":[[942,943,944,945,946,947]]},{"type":"Polygon","id":"84006075PCT9728","arcs":[[948,-946,949,-938,950]]},{"type":"Polygon","id":"84006075PCT9755","arcs":[[951,952,953,954,955]]},{"type":"Polygon","id":"84006075PCT9902","arcs":[[-952,956,957,958,959]]},{"type":"Polygon","id":"84006075PCT7712","arcs":[[-957,-956,960,961]]},{"type":"Polygon","id":"84006075PCT7709","arcs":[[962,963,964,965,966]]},{"type":"Polygon","id":"84006075PCT7708","arcs":[[967,968,969,970,971]]},{"type":"Polygon","id":"84006075PCT9737","arcs":[[-970,-966,972,973,974]]},{"type":"Polygon","id":"84006075PCT9736","arcs":[[-973,-965,975,976,977]]},{"type":"Polygon","id":"84006075PCT7706","arcs":[[978,-971,-975,979,980,981,982]]},{"type":"Polygon","id":"84006075PCT7707","arcs":[[983,-972,-979,984,985]]},{"type":"Polygon","id":"84006075PCT9733","arcs":[[-985,-983,986,987,988]]},{"type":"Polygon","id":"84006075PCT9732","arcs":[[989,990,991,-987,-982]]},{"type":"Polygon","id":"84006075PCT9731","arcs":[[992,993,994,995,996,-990,-981]]},{"type":"Polygon","id":"84006075PCT9729","arcs":[[-951,997,-995,998]]},{"type":"Polygon","id":"84006075PCT9722","arcs":[[-942,-579,-578,999,1000,1001,-998]]},{"type":"Polygon","id":"84006075PCT9716","arcs":[[1002,-1000,-605,1003]]},{"type":"Polygon","id":"84006075PCT9717","arcs":[[1004,-1001,-1003,1005,1006]]},{"type":"Polygon","id":"84006075PCT9718","arcs":[[-996,-1002,-1005,1007,1008]]},{"type":"Polygon","id":"84006075PCT9721","arcs":[[-988,-992,1009,1010,1011]]},{"type":"Polygon","id":"84006075PCT7703","arcs":[[1012,-1012,1013,1014,1015,1016]]},{"type":"Polygon","id":"84006075PCT9713","arcs":[[1017,-1006,-1004,-604,-591,1018,1019]]},{"type":"Polygon","id":"84006075PCT9704","arcs":[[1020,1021,1022,1023,1024,1025]]},{"type":"Polygon","id":"84006075PCT9701","arcs":[[1026,-1024,1027,-477,-472,-608,-612]]},{"type":"Polygon","id":"84006075PCT9702","arcs":[[1028,-1025,-1027,-611,-615,-762]]},{"type":"Polygon","id":"84006075PCT9706","arcs":[[1029,-758,1030]]},{"type":"Polygon","id":"84006075PCT7704","arcs":[[1031,1032,-1017,1033,1034]]},{"type":"Polygon","id":"84006075PCT9749","arcs":[[1035,1036,1037,1038,1039]]},{"type":"Polygon","id":"84006075PCT9751","arcs":[[1040,1041,-1040,1042,-943,1043]]},{"type":"Polygon","id":"84006075PCT9754","arcs":[[-955,1044,1045]]},{"type":"Polygon","id":"84006075PCT9724","arcs":[[1046,-915,1047,-570,-581]]},{"type":"Polygon","id":"84006075PCT9725","arcs":[[-941,1048,-927,-916,-1047,-580]]},{"type":"Polygon","id":"84006075PCT9726","arcs":[[-936,-928,-1049,-940]]},{"type":"Polygon","id":"84006075PCT9723","arcs":[[-537,-544,-571,-1048,-923,-596]]},{"type":"Polygon","id":"84006075PCT9739","arcs":[[1049,1050,1051,-918,-926]]},{"type":"Polygon","id":"84006075PCT9743","arcs":[[1052,-919,-1052,1053]]},{"type":"Polygon","id":"84006075PCT9744","arcs":[[1054,-1054,-1051]]},{"type":"Polygon","id":"84006075PCT9745","arcs":[[1055,-920,-1053,-1055,-1050,-925,-935]]},{"type":"Polygon","id":"84006075PCT9746","arcs":[[1056,1057,-933,-939,-950,-945]]},{"type":"Polygon","id":"84006075PCT9747","arcs":[[-1043,-1039,1058,1059,1060,1061,-1057,-944]]},{"type":"MultiPolygon","id":"84006075PCT9752","arcs":[[[1062,-1044,-948,1063,-976,-964]],[[-963,1064]]]},{"type":"Polygon","id":"84006075PCT9753","arcs":[[-1045,-954,1065,1066,1067,-1041,-1063,-1065]]},{"type":"Polygon","id":"84006075PCT7711","arcs":[[1068,-961,-1046,-967,-969,1069]]},{"type":"Polygon","id":"84006075PCT9735","arcs":[[-980,-974,-978,1070,-993]]},{"type":"Polygon","id":"84006075PCT9734","arcs":[[-1064,-947,-949,-999,-994,-1071,-977]]},{"type":"Polygon","id":"84006075PCT9719","arcs":[[-991,-997,-1009,1071,-1010]]},{"type":"Polygon","id":"84006075PCT9714","arcs":[[1072,-1008,-1007,-1018,1073,1074]]},{"type":"Polygon","id":"84006075PCT9712","arcs":[[1075,-1075,1076,1077,1078,-1015]]},{"type":"Polygon","id":"84006075PCT9715","arcs":[[-1014,-1011,-1072,-1073,-1076]]},{"type":"MultiPolygon","id":"84006075PCT9709","arcs":[[[1079,1080,1081,-1019,-602]],[[-601,1082]]]},{"type":"Polygon","id":"84006075PCT9703","arcs":[[-1080,-1083,-600,-501,-1028,-1023,1083]]},{"type":"Polygon","id":"84006075PCT9711","arcs":[[-1077,-1074,-1020,-1082,1084]]},{"type":"Polygon","id":"84006075PCT9707","arcs":[[1085,-1085,-1081,-1084,-1022]]},{"type":"Polygon","id":"84006075PCT9708","arcs":[[1086,-1078,-1086,-1021,1087]]},{"type":"Polygon","id":"84006075PCT9705","arcs":[[1088,-1088,-1026,-1029,-761,-759,-1030]]},{"type":"Polygon","id":"84006075PCT7701","arcs":[[-1079,-1087,-1089,-1031,-620,1089]]},{"type":"Polygon","id":"84006075PCT7702","arcs":[[-654,1090,-1034,-1016,-1090,-619,-737,-649,-739]]},{"type":"Polygon","id":"84006075PCT7705","arcs":[[-1035,-1091,-653,1091,1092,1093]]},{"type":"Polygon","id":"84006075PCT7809","arcs":[[-796,1094,1095,1096,1097,1098,-780,-788]]},{"type":"Polygon","id":"84006075PCT7808","arcs":[[1099,-1098,1100]]},{"type":"Polygon","id":"84006075PCT7807","arcs":[[1101,1102,-1101,-1097,1103,1104]]},{"type":"Polygon","id":"84006075PCT7811","arcs":[[-1095,-795,-838,1105,1106]]},{"type":"Polygon","id":"84006075PCT7812","arcs":[[1107,1108,1109,-1096,-1107]]},{"type":"Polygon","id":"84006075PCT7813","arcs":[[1110,-1104,-1110,1111,1112,1113]]},{"type":"Polygon","id":"84006075PCT7843","arcs":[[1114,1115,1116,1117,1118]]},{"type":"Polygon","id":"84006075PCT7844","arcs":[[1119,-1116,1120,1121]]},{"type":"Polygon","id":"84006075PCT7825","arcs":[[1122,1123,1124,1125,1126,1127]]},{"type":"Polygon","id":"84006075PCT7824","arcs":[[1128,-1124,1129]]},{"type":"Polygon","id":"84006075PCT7823","arcs":[[-1125,-1129,1130,1131,1132,1133,1134]]},{"type":"Polygon","id":"84006075PCT7832","arcs":[[-1131,-1130,-1123,1135,1136,1137,1138]]},{"type":"Polygon","id":"84006075PCT7822","arcs":[[1139,1140,1141,1142,-1134]]},{"type":"Polygon","id":"84006075PCT7821","arcs":[[-1141,1143,1144,1145]]},{"type":"Polygon","id":"84006075PCT7837","arcs":[[1146,1147,1148,1149,1150,1151]]},{"type":"Polygon","id":"84006075PCT7845","arcs":[[1152,1153,1154,-1147,1155]]},{"type":"Polygon","id":"84006075PCT7839","arcs":[[1156,1157,1158,1159,1160,-1132,-1139]]},{"type":"Polygon","id":"84006075PCT7848","arcs":[[1161,1162,-1158,1163,1164]]},{"type":"Polygon","id":"84006075PCT7853","arcs":[[1165,1166,1167,1168,1169,-1154,1170]]},{"type":"Polygon","id":"84006075PCT7869","arcs":[[1171,1172,1173,1174,1175]]},{"type":"Polygon","id":"84006075PCT9801","arcs":[[1176,1177,1178,1179,1180,1181]]},{"type":"Polygon","id":"84006075PCT7874","arcs":[[1182,-1180,1183,1184,1185,1186,1187]]},{"type":"Polygon","id":"84006075PCT7871","arcs":[[1188,-1185,1189,-958,-962,-1069,1190,1191]]},{"type":"Polygon","id":"84006075PCT7867","arcs":[[1192,-1192,1193,1194]]},{"type":"Polygon","id":"84006075PCT7868","arcs":[[1195,-1174,1196,1197,-1195,1198,-1167,1199]]},{"type":"Polygon","id":"84006075PCT7851","arcs":[[-1149,1200,-1169,1201,-986,-989,-1013,-1033,1202,1203]]},{"type":"Polygon","id":"84006075PCT7835","arcs":[[1204,-1203,-1032,-1094,1205]]},{"type":"Polygon","id":"84006075PCT7852","arcs":[[-1201,-1148,-1155,-1170]]},{"type":"Polygon","id":"84006075PCT7806","arcs":[[-1103,1206,1207,1208,-779,-776,-781,-1099,-1100]]},{"type":"MultiPolygon","id":"84006075PCT7805","arcs":[[[-1207,-1102,1209,1210,1211]],[[1212,-1208]],[[1213,-1209]]]},{"type":"Polygon","id":"84006075PCT7804","arcs":[[-1212,1214,1215,1216,-770,-775,-1214,-1213]]},{"type":"Polygon","id":"84006075PCT7803","arcs":[[1217,1218,1219,-1216]]},{"type":"Polygon","id":"84006075PCT7802","arcs":[[-1220,1220,-665,-768,-684,-771,-1217]]},{"type":"Polygon","id":"84006075PCT7818","arcs":[[1221,-1114,1222,-1126]]},{"type":"Polygon","id":"84006075PCT7817","arcs":[[-1210,-1105,-1111,-1222,-1135]]},{"type":"Polygon","id":"84006075PCT7834","arcs":[[1223,-1119,1224,1225,1226,1227]]},{"type":"Polygon","id":"84006075PCT7858","arcs":[[1228,-1122,1229]]},{"type":"Polygon","id":"84006075PCT7831","arcs":[[1230,1231,-1144,-1140,-1133,-1161]]},{"type":"Polygon","id":"84006075PCT7838","arcs":[[-1160,1232,1233,-1152,1234,-1231]]},{"type":"Polygon","id":"84006075PCT7829","arcs":[[-1232,-1235,-1151,1235,1236,-1145]]},{"type":"Polygon","id":"84006075PCT7841","arcs":[[1237,1238,-1164,-1157,-1138,1239]]},{"type":"Polygon","id":"84006075PCT7856","arcs":[[1240,1241,1242,1243,1244,1245]]},{"type":"Polygon","id":"84006075PCT7861","arcs":[[-1175,-1196,1246,1247,1248]]},{"type":"Polygon","id":"84006075PCT7859","arcs":[[-1247,-1200,-1166,1249]]},{"type":"Polygon","id":"84006075PCT7862","arcs":[[1250,1251,-1248,1252,1253,-1243]]},{"type":"Polygon","id":"84006075PCT7864","arcs":[[-1249,-1252,1254,1255,-1176]]},{"type":"Polygon","id":"84006075PCT7865","arcs":[[-1172,-1256,1256,1257,1258]]},{"type":"Polygon","id":"84006075PCT7863","arcs":[[-1257,-1255,-1251,-1242,1259]]},{"type":"Polygon","id":"84006075PCT9901","arcs":[[-959,-1190,-1184,-1179]]},{"type":"Polygon","id":"84006075PCT7875","arcs":[[-1188,1260,1261,1262,1263,1264]]},{"type":"Polygon","id":"84006075PCT7836","arcs":[[-1204,-1205,1265,-1150]]},{"type":"Polygon","id":"84006075PCT7828","arcs":[[-1236,-1266,-1206,-1093,1266]]},{"type":"Polygon","id":"84006075PCT7815","arcs":[[-1142,-1146,-1237,-1267,-1092,-652,-662,1267,1268]]},{"type":"Polygon","id":"84006075PCT7816","arcs":[[-1143,-1269,1269,-1218,-1215,-1211]]},{"type":"Polygon","id":"84006075PCT7801","arcs":[[-1219,-1270,-1268,-661,-666,-1221]]},{"type":"Polygon","id":"84006075PCT7847","arcs":[[1270,1271,1272,-1233,-1159,-1163]]},{"type":"Polygon","id":"84006075PCT7846","arcs":[[1273,-1156,-1234,-1273]]},{"type":"Polygon","id":"84006075PCT7854","arcs":[[-1250,-1171,-1153,-1274,-1272,1274,-1253]]},{"type":"Polygon","id":"84006075PCT7872","arcs":[[1275,-1186,-1189,-1193,-1198]]},{"type":"Polygon","id":"84006075PCT7873","arcs":[[-1187,-1276,-1197,-1173,-1259,-1261]]},{"type":"Polygon","id":"84006075PCT7855","arcs":[[1276,-1244,-1254,-1275,-1271,-1162]]},{"type":"Polygon","id":"84006075PCT7857","arcs":[[1277,1278,-1246,1279,1280,-1229]]},{"type":"Polygon","id":"84006075PCT7842","arcs":[[1281,-1238,1282,-1117,-1120,-1281]]},{"type":"Polygon","id":"84006075PCT7826","arcs":[[1283,-1136,-1128,1284,1285,-1226]]},{"type":"Polygon","id":"84006075PCT7827","arcs":[[-1286,1286,1287,1288,1289,-1227]]},{"type":"Polygon","id":"84006075PCT7814","arcs":[[1290,-1112,-1109,1291,1292,-1288]]},{"type":"Polygon","id":"84006075PCT7849","arcs":[[-1280,-1245,-1277,-1165,-1239,-1282]]},{"type":"Polygon","id":"84006075PCT7833","arcs":[[-1137,-1284,-1225,-1118,-1283,-1240]]},{"type":"Polygon","id":"84006075PCT7819","arcs":[[-1127,-1223,-1113,-1291,-1287,-1285]]},{"type":"Polygon","id":"84006075PCT7866","arcs":[[-1202,-1168,-1199,-1194,-1191,-1070,-968,-984]]},{"type":"Polygon","id":"84006075PCT7902","arcs":[[1293,1294,1295,1296,1297,-896]]},{"type":"Polygon","id":"84006075PCT7908","arcs":[[1298,-1121,-1115,1299,1300,1301]]},{"type":"Polygon","id":"84006075PCT7903","arcs":[[-1297,1302,-1289,-1293,1303]]},{"type":"Polygon","id":"84006075PCT7918","arcs":[[1304,1305,1306,1307,1308,1309]]},{"type":"Polygon","id":"84006075PCT7917","arcs":[[1310,1311,1312,-1305,1313,1314]]},{"type":"Polygon","id":"84006075PCT7916","arcs":[[1315,-1311,1316,1317,-1278,-1230,-1299]]},{"type":"Polygon","id":"84006075PCT7919","arcs":[[-1315,1318,1319,1320,-1317]]},{"type":"Polygon","id":"84006075PCT7921","arcs":[[1321,1322,1323,-1319,-1314,-1310,1324]]},{"type":"Polygon","id":"84006075PCT7952","arcs":[[1325,1326,1327,1328]]},{"type":"Polygon","id":"84006075PCT7958","arcs":[[1329,1330,1331,1332,1333]]},{"type":"Polygon","id":"84006075PCT7954","arcs":[[1334,1335,1336,1337,1338,1339,1340,1341,1342]]},{"type":"Polygon","id":"84006075PCT7957","arcs":[[1343,1344,-1339,1345,-1330,1346]]},{"type":"Polygon","id":"84006075PCT7951","arcs":[[1347,1348,1349,1350,-1327,1351,1352]]},{"type":"Polygon","id":"84006075PCT7948","arcs":[[-1336,1353,1354,1355,1356,1357,1358]]},{"type":"Polygon","id":"84006075PCT7953","arcs":[[-1348,1359,-1337,-1359,1360]]},{"type":"Polygon","id":"84006075PCT7956","arcs":[[1361,-1331,1362,-1352,-1326]]},{"type":"Polygon","id":"84006075PCT7955","arcs":[[-1363,-1346,-1338,-1360,-1353]]},{"type":"Polygon","id":"84006075PCT7947","arcs":[[-1328,-1351,1363,1364,1365,1366]]},{"type":"Polygon","id":"84006075PCT7936","arcs":[[1367,1368,1369,1370,1371]]},{"type":"Polygon","id":"84006075PCT7926","arcs":[[1372,1373,1374,-1320,-1324]]},{"type":"Polygon","id":"84006075PCT7933","arcs":[[-1366,1375,1376,1377,1378,1379,1380,1381,1382]]},{"type":"Polygon","id":"84006075PCT7901","arcs":[[-1298,-1304,-1292,-1108,-1106,-837]]},{"type":"Polygon","id":"84006075PCT7904","arcs":[[1383,-1290,-1303,-1296,1384]]},{"type":"Polygon","id":"84006075PCT7905","arcs":[[1385,1386,1387,1388,-1385,-1295,1389]]},{"type":"Polygon","id":"84006075PCT7907","arcs":[[-1224,1390,-1388,1391,-1300]]},{"type":"Polygon","id":"84006075PCT7906","arcs":[[-1228,-1384,-1389,-1391]]},{"type":"Polygon","id":"84006075PCT7924","arcs":[[1392,-1379,1393,1394,-1308,1395]]},{"type":"Polygon","id":"84006075PCT7909","arcs":[[1396,-1301,-1392,-1387,1397,1398,1399]]},{"type":"Polygon","id":"84006075PCT7913","arcs":[[-1313,1400,-1400,1401,-1306]]},{"type":"Polygon","id":"84006075PCT7914","arcs":[[-1402,-1399,1402,1403,-1307]]},{"type":"Polygon","id":"84006075PCT7911","arcs":[[1404,-1403,-1398,-1386,1405,1406]]},{"type":"Polygon","id":"84006075PCT7915","arcs":[[1407,-1396,-1404,-1405]]},{"type":"Polygon","id":"84006075PCT7912","arcs":[[-1312,-1316,-1302,-1397,-1401]]},{"type":"Polygon","id":"84006075PCT7923","arcs":[[1408,1409,-1322,1410,-1395]]},{"type":"Polygon","id":"84006075PCT7922","arcs":[[-1309,-1411,-1325]]},{"type":"Polygon","id":"84006075PCT7925","arcs":[[-1375,1411,1412,1413,-1262,-1258,-1260,-1241,-1279,-1318,-1321]]},{"type":"Polygon","id":"84006075PCT7929","arcs":[[1414,1415,1416,1417,-1412,-1374]]},{"type":"Polygon","id":"84006075PCT7938","arcs":[[-1263,-1414,1418,1419,1420,1421]]},{"type":"Polygon","id":"84006075PCT7945","arcs":[[1422,1423,1424,1425,1426]]},{"type":"Polygon","id":"84006075PCT7927","arcs":[[1427,1428,-1415,-1373,-1323,-1410]]},{"type":"Polygon","id":"84006075PCT7932","arcs":[[1429,1430,1431,1432,-1377]]},{"type":"Polygon","id":"84006075PCT7928","arcs":[[-1433,1433,-1428,-1409,-1394,-1378]]},{"type":"Polygon","id":"84006075PCT7949","arcs":[[-1361,-1358,1434,-1349]]},{"type":"Polygon","id":"84006075PCT7937","arcs":[[-1431,1435,1436,-1368,1437]]},{"type":"Polygon","id":"84006075PCT7943","arcs":[[-1425,1438,1439,-1183,-1265,1440]]},{"type":"Polygon","id":"84006075PCT7942","arcs":[[-1365,-1423,1441,-1436,-1430,-1376]]},{"type":"Polygon","id":"84006075PCT7941","arcs":[[-1437,-1442,-1427,1442,1443,-1369]]},{"type":"Polygon","id":"84006075PCT7931","arcs":[[-1432,-1438,-1372,1444,-1416,-1429,-1434]]},{"type":"Polygon","id":"84006075PCT7939","arcs":[[1445,-1421,1446,-1370,-1444]]},{"type":"Polygon","id":"84006075PCT7944","arcs":[[-1443,-1426,-1441,-1264,-1422,-1446]]},{"type":"Polygon","id":"84006075PCT7935","arcs":[[-1371,-1447,-1420,1447,-1417,-1445]]},{"type":"Polygon","id":"84006075PCT7934","arcs":[[-1419,-1413,-1418,-1448]]},{"type":"Polygon","id":"84006075PCT7946","arcs":[[-1350,-1435,-1357,1448,-1439,-1424,-1364]]},{"type":"Polygon","id":"84006075PCT7011","arcs":[[1449,1450,1451,1452]]},{"type":"Polygon","id":"84006075PCT7027","arcs":[[1453,1454,1455,1456,1457,1458,1459,1460]]},{"type":"Polygon","id":"84006075PCT7021","arcs":[[-1454,1461,1462,1463,1464]]},{"type":"Polygon","id":"84006075PCT7041","arcs":[[1465,1466,-1344]]},{"type":"Polygon","id":"84006075PCT9001","arcs":[[1467,1468,1469]]},{"type":"Polygon","id":"84006075PCT7048","arcs":[[1470,1471,1472,1473,1474,1475]]},{"type":"Polygon","id":"84006075PCT7036","arcs":[[1476,1477,1478,1479,-1473,1480,-1468,1481,1482,1483,1484]]},{"type":"Polygon","id":"84006075PCT7052","arcs":[[1485,1486,1487,1488,1489,1490]]},{"type":"Polygon","id":"84006075PCT7037","arcs":[[-1479,1491]]},{"type":"Polygon","id":"84006075PCT7043","arcs":[[1492,-1490,1493,1494,-1333,1495,1496,1497,1498,1499]]},{"type":"Polygon","id":"84006075PCT7044","arcs":[[1500,1501]]},{"type":"Polygon","id":"84006075PCT7035","arcs":[[1502,1503,1504,1505,1506,1507]]},{"type":"Polygon","id":"84006075PCT7019","arcs":[[1508,1509,1510,-1462,-1461]]},{"type":"Polygon","id":"84006075PCT7018","arcs":[[1511,-1367,-1383,1512,1513,-1510]]},{"type":"Polygon","id":"84006075PCT7028","arcs":[[1514,-1455,-1465,1515,1516,1517]]},{"type":"Polygon","id":"84006075PCT7032","arcs":[[1518,-1504,1519,-1501,1520,-1499,1521,-1456,-1515]]},{"type":"Polygon","id":"84006075PCT7038","arcs":[[1522,1523,-1474,-1480,-1492,-1478,1524,-1341]]},{"type":"Polygon","id":"84006075PCT7054","arcs":[[1525,1526,-1500,-1521,-1502,-1520,-1503]]},{"type":"Polygon","id":"84006075PCT7015","arcs":[[1527,-1513,-1382,1528,1529,1530]]},{"type":"Polygon","id":"84006075PCT7030","arcs":[[1531,1532,-1496,-1332,-1362,1533,-1459]]},{"type":"Polygon","id":"84006075PCT7026","arcs":[[-1509,-1460,-1534,-1329,-1512]]},{"type":"Polygon","id":"84006075PCT7016","arcs":[[1534,1535,1536,-1463,-1511,-1514,-1528,1537]]},{"type":"Polygon","id":"84006075PCT7017","arcs":[[1538,1539,1540,1541,1542,1543,-1535,1544]]},{"type":"Polygon","id":"84006075PCT7014","arcs":[[1545,-1545,-1538,-1531,1546,1547]]},{"type":"Polygon","id":"84006075PCT7001","arcs":[[1548,1549,-1406,-1390,-1294,-893]]},{"type":"Polygon","id":"84006075PCT7002","arcs":[[-827,1550,1551,1552,1553,-1549,-892,-851,-859]]},{"type":"Polygon","id":"84006075PCT7005","arcs":[[1554,-1551,-826,1555,1556,1557]]},{"type":"Polygon","id":"84006075PCT7013","arcs":[[1558,-1548,1559,-1556,-825]]},{"type":"Polygon","id":"84006075PCT7003","arcs":[[1560,1561,-1553,1562]]},{"type":"Polygon","id":"84006075PCT7006","arcs":[[1563,-1380,-1393,-1408,-1407,-1550,-1554,-1562,1564]]},{"type":"Polygon","id":"84006075PCT7009","arcs":[[1565,-1529,-1381,-1564,1566,-1453]]},{"type":"Polygon","id":"84006075PCT7012","arcs":[[-1530,-1566,-1452,1567,-1557,-1560,-1547]]},{"type":"Polygon","id":"84006075PCT7007","arcs":[[-1450,-1567,-1565,-1561,1568,1569]]},{"type":"Polygon","id":"84006075PCT7008","arcs":[[-1558,-1568,-1451,-1570,1570]]},{"type":"Polygon","id":"84006075PCT7004","arcs":[[-1571,-1569,-1563,-1552,-1555]]},{"type":"Polygon","id":"84006075PCT7025","arcs":[[1571,-1540,1572,-1507,1573,1574,-1542]]},{"type":"Polygon","id":"84006075PCT7024","arcs":[[-1572,-1541]]},{"type":"Polygon","id":"84006075PCT7034","arcs":[[-1506,1575,1576,-1574]]},{"type":"Polygon","id":"84006075PCT7023","arcs":[[1577,1578,-1536,-1544]]},{"type":"Polygon","id":"84006075PCT7022","arcs":[[-1516,-1464,-1537,-1579,1579]]},{"type":"Polygon","id":"84006075PCT7033","arcs":[[-1519,-1518,1580,-1576,-1505]]},{"type":"Polygon","id":"84006075PCT7029","arcs":[[-1543,-1575,-1577,-1581,-1517,-1580,-1578]]},{"type":"Polygon","id":"84006075PCT7046","arcs":[[1581,1582,1583]]},{"type":"Polygon","id":"84006075PCT7042","arcs":[[1584,-1584,-1466,-1347,-1334,-1495]]},{"type":"Polygon","id":"84006075PCT7045","arcs":[[1585,-1475,-1524,1586]]},{"type":"Polygon","id":"84006075PCT7047","arcs":[[-1582,-1585,-1494,-1489,1587,1588]]},{"type":"Polygon","id":"84006075PCT7039","arcs":[[-1467,-1583,-1589,-1587,-1523,-1340,-1345]]},{"type":"Polygon","id":"84006075PCT7051","arcs":[[-1488,1589,-1476,-1586,-1588]]},{"type":"Polygon","id":"84006075PCT7049","arcs":[[-1487,1590,-1471,-1590]]},{"type":"Polygon","id":"84006075PCT1106","arcs":[[1591,1592,-934,-1058,-1062,1593]]},{"type":"Polygon","id":"84006075PCT1115","arcs":[[-1056,-1593,1594,-932]]},{"type":"Polygon","id":"84006075PCT1116","arcs":[[1595,1596,-929,-1595,-1592,1597,1598,1599]]},{"type":"Polygon","id":"84006075PCT1107","arcs":[[-1598,-1594,-1061,1600]]},{"type":"Polygon","id":"84006075PCT1108","arcs":[[1601,1602,-1599,-1601,-1060]]},{"type":"Polygon","id":"84006075PCT1117","arcs":[[1603,-1600,-1603,1604,1605]]},{"type":"Polygon","id":"84006075PCT1109","arcs":[[1606,1607,-1605,-1602,-1059,-1038]]},{"type":"Polygon","id":"84006075PCT1111","arcs":[[1608,1609,1610,-1607,-1037]]},{"type":"Polygon","id":"84006075PCT1118","arcs":[[1611,-1606,-1608,-1611,1612,1613]]},{"type":"Polygon","id":"84006075PCT1112","arcs":[[-1068,1614,1615,1616,1617,-1609,-1036,-1042]]},{"type":"Polygon","id":"84006075PCT1119","arcs":[[-1618,1618,1619,1620,-1613,-1610]]},{"type":"Polygon","id":"84006075PCT1124","arcs":[[1621,1622,1623,-1614,-1621]]},{"type":"Polygon","id":"84006075PCT1126","arcs":[[1624,1625,-1622,-1620,1626,1627,1628]]},{"type":"Polygon","id":"84006075PCT1122","arcs":[[1629,1630,-1616,1631]]},{"type":"Polygon","id":"84006075PCT1129","arcs":[[1632,1633,-1629,1634,1635]]},{"type":"Polygon","id":"84006075PCT1135","arcs":[[1636,1637,1638,1639]]},{"type":"Polygon","id":"84006075PCT1104","arcs":[[1640,1641,1642,1643,1644]]},{"type":"Polygon","id":"84006075PCT1114","arcs":[[1645,1646,1647,1648,-1645]]},{"type":"Polygon","id":"84006075PCT1113","arcs":[[-1648,1649,1650,1651,-1632,-1615,-1067,1652,1653]]},{"type":"Polygon","id":"84006075PCT1102","arcs":[[-1649,-1654,1654,1655,-1641]]},{"type":"Polygon","id":"84006075PCT1101","arcs":[[-1655,-1653,-1066,-953,-960,-1178,1656]]},{"type":"Polygon","id":"84006075PCT1103","arcs":[[-1177,1657,-1642,-1656,-1657]]},{"type":"Polygon","id":"84006075PCT1141","arcs":[[-1449,-1356,1658,1659,-1181,-1440]]},{"type":"Polygon","id":"84006075PCT1142","arcs":[[-1355,1660,1661,1662,1663,-1659]]},{"type":"Polygon","id":"84006075PCT1143","arcs":[[1664,1665,1666,-1646,-1644,1667,-1663,1668]]},{"type":"Polygon","id":"84006075PCT1151","arcs":[[-1525,-1477,1669,-1342]]},{"type":"Polygon","id":"84006075PCT1125","arcs":[[-1626,1670,-930,-1597,1671,-1623]]},{"type":"Polygon","id":"84006075PCT1136","arcs":[[-1470,1672,-1640,1673,1674,-1482]]},{"type":"Polygon","id":"84006075PCT1105","arcs":[[-1664,-1668,-1643,-1658,-1182,-1660]]},{"type":"Polygon","id":"84006075PCT1145","arcs":[[-1335,1675,1676,-1661,-1354]]},{"type":"Polygon","id":"84006075PCT1144","arcs":[[-1677,1677,1678,-1669,-1662]]},{"type":"Polygon","id":"84006075PCT1149","arcs":[[-1343,-1670,-1485,1679,1680,-1678,-1676]]},{"type":"Polygon","id":"84006075PCT1147","arcs":[[1681,1682,1683,-1666,1684]]},{"type":"Polygon","id":"84006075PCT1148","arcs":[[1685,-1685,-1665,-1679,-1681]]},{"type":"Polygon","id":"84006075PCT1146","arcs":[[-1650,-1647,-1667,-1684,1686]]},{"type":"Polygon","id":"84006075PCT1152","arcs":[[1687,1688,1689,-1651,-1687,-1683]]},{"type":"Polygon","id":"84006075PCT1134","arcs":[[-1674,-1639,1690,1691,-1689,1692,1693]]},{"type":"Polygon","id":"84006075PCT1153","arcs":[[-1680,-1484,1694,-1693,-1688,-1682,-1686]]},{"type":"Polygon","id":"84006075PCT1154","arcs":[[-1675,-1694,-1695,-1483]]},{"type":"Polygon","id":"84006075PCT1128","arcs":[[1695,1696,-1630,-1652,1697,1698]]},
{"type":"Polygon","id":"84006075PCT1121","arcs":[[-1627,-1619,-1617,-1631,-1697,1699]]},
{"type":"Polygon","id":"84006075PCT1127","arcs":[[1700,-1635,-1628,-1700,-1696]]},
{"type":"Polygon","id":"84006075PCT1131","arcs":[[1701,1702,-1636,-1701,-1699]]},
{"type":"Polygon","id":"84006075PCT1132","arcs":[[-1692,1703,-1702,-1698,-1690]]},
{"type":"Polygon","id":"84006075PCT1133","arcs":[[1704,-1633,-1703,-1704,-1691,-1638]]},
{"type":"Polygon","id":"84006075PCT1123","arcs":[[-1624,-1672,-1596,-1604,-1612]]},
{"type":"Polygon","id":"84006075PCT7053","arcs":[[-1527,1705,-1491,-1493]]},
{"type":"Polygon","id":"84006075PCT9900","arcs":[[1706]]},
{"type":"Polygon","id":"84006075PCT7031","arcs":[[-1498,-1532,1707,-1457,-1522]]}]}},
"arcs":[[[3616,5974],[0,-17],[-10,-39],[-2,-15],[4,-28],[-3,-7],[4,-5],[6,-62],[-1,-7],[3,-8],[15,-107],[-2,-8]],[[3630,5671],[11,-77]],[[3641,5594],[-51,-10],[-47,-9],[-48,-9],[-47,-9],[-48,-10],[-47,-9],[-51,-10]],[[3302,5528],[-11,79],[-3,12],[-12,86]],[[3276,5705],[-6,44],[-3,24],[-1,19],[-1,9],[52,10],[55,10],[55,11],[55,10],[18,3],[10,2],[27,5],[-14,105],[-50,-10],[-6,5]],[[3467,5952],[4,7],[50,9],[5,3],[50,10],[37,6],[3,-10],[0,-3]],[[3276,5705],[-49,-9],[-46,-9],[-46,-9]],[[3135,5678],[-10,79],[35,20],[-8,12],[-5,14],[-11,90]],[[3136,5893],[3,5],[32,3],[6,-4]],[[3177,5897],[3,6],[5,1],[5,-5],[4,6],[49,10],[6,-5],[6,7],[43,8],[5,-5]],[[3303,5920],[4,7],[45,8],[6,-4],[4,7],[44,9],[6,-6],[4,7],[46,9],[5,-5]],[[3222,5360],[1,16],[-5,46],[96,18],[-12,88]],[[3641,5594],[10,-75],[10,-75]],[[3661,5444],[-52,-10],[-33,-7]],[[3576,5427],[-42,-8],[-46,-8],[-88,-18]],[[3400,5393],[-78,-14],[-10,-2],[-90,-17]],[[3243,5210],[-9,66],[-10,75],[-2,9]],[[3400,5393],[10,-74]],[[3410,5319],[-88,-17],[10,-75],[-89,-17]],[[3135,5678],[14,-98],[-44,-7]],[[3105,5573],[-78,-16],[-14,4],[-4,7],[-18,10],[-39,-3]],[[2952,5575],[-7,149],[-57,-4],[-57,-4],[-8,155]],[[2823,5871],[7,-5],[44,3],[7,6],[7,-5],[44,3],[6,6],[6,-5],[45,3],[10,6]],[[2999,5883],[7,7],[48,2],[5,-5],[4,7],[55,3],[12,1],[6,-5]],[[2952,5575],[-57,-4]],[[2895,5571],[-57,-4],[-58,-4],[-57,-4]],[[2723,5559],[-7,149],[-7,155]],[[2709,5863],[8,-5],[43,3],[6,7],[7,-5],[43,2],[7,6]],[[3105,5573],[7,-47],[4,-33],[4,-31],[6,-44],[-105,-19],[4,-75]],[[3025,5324],[-60,-12],[-57,-11],[-57,-11]],[[2851,5290],[-6,127],[28,2],[29,2],[-7,150]],[[2851,5290],[-57,-10],[-57,-11]],[[2737,5269],[-7,140],[-57,-4],[-7,144],[1,6]],[[2667,5555],[56,4]],[[2667,5555],[-58,-4],[-57,-4]],[[2552,5547],[-58,-4]],[[2494,5543],[-7,150],[57,4],[57,4],[58,4],[-8,154]],[[2651,5859],[7,-5],[44,3],[7,6]],[[2737,5269],[-57,-11],[-27,-6],[-30,-2],[-57,-3]],[[2566,5247],[-7,150],[-7,150]],[[2494,5543],[-57,-4]],[[2437,5539],[-7,150],[-7,154]],[[2423,5843],[6,-4],[45,3],[6,6],[7,-5],[44,3],[6,6],[7,-5],[44,3],[6,6],[7,-5],[44,2],[6,6]],[[2309,5230],[3,8],[-7,134],[-4,8]],[[2301,5380],[29,2],[57,3],[57,4],[-7,150]],[[2566,5247],[-57,-4],[-57,-4],[-58,-4],[-57,-4],[-28,-1]],[[2301,5380],[3,7],[-6,135],[-4,8],[4,8],[-6,133],[-5,8],[4,10],[-7,134],[-5,11]],[[2279,5834],[9,-5],[16,2],[4,5],[6,-5],[45,3],[6,6]],[[2365,5840],[7,-5],[45,3],[6,5]],[[2301,5380],[-28,-2],[-60,-5]],[[2213,5373],[-8,151],[-60,-5],[-57,-4],[-7,150],[-8,155]],[[2073,5820],[7,-5],[45,3],[6,6],[7,-5],[46,4],[6,5],[8,-5],[48,3],[5,6],[6,-5],[14,1],[8,6]],[[1931,5204],[-8,150],[58,4]],[[1981,5358],[57,4],[58,3],[56,4],[61,4]],[[2309,5230],[-29,-2],[-60,-5],[-60,-4],[-57,-4],[-58,-4],[-57,-4],[-57,-3]],[[1981,5358],[-7,150],[-58,-4]],[[1916,5504],[-7,149],[57,4],[57,4],[-7,156]],[[2016,5817],[7,-6],[44,3],[6,6]],[[1702,5188],[-8,150],[58,4],[57,4],[-7,150]],[[1802,5496],[57,4],[57,4]],[[1931,5204],[-58,-4],[-57,-4],[-57,-4],[-57,-4]],[[1802,5496],[-7,150],[-8,154]],[[1787,5800],[7,-4],[44,2],[6,6],[7,-5],[45,3],[5,6],[8,-4],[44,2],[6,6],[7,-5],[44,4],[6,6]],[[1802,5496],[-58,-4],[-57,-4],[-57,-4],[-7,150]],[[1623,5634],[-8,155]],[[1615,5789],[8,-5],[43,2],[7,7],[7,-5],[44,3],[6,6]],[[1730,5797],[6,-5],[45,2],[6,6]],[[1702,5188],[-58,-4],[-57,-4]],[[1587,5180],[-7,150],[-7,150],[-8,150]],[[1565,5630],[58,4]],[[1416,5168],[-8,150],[-7,150]],[[1401,5468],[57,4],[-7,150],[57,4],[57,4]],[[1587,5180],[-57,-4],[-57,-4],[-57,-4]],[[1401,5468],[-7,150],[-58,-4],[-7,155]],[[1329,5769],[7,-5],[44,3],[7,6]],[[1387,5773],[6,-5],[45,3],[6,6],[7,-5],[43,3],[7,6],[6,-5],[44,3],[7,6]],[[1558,5785],[7,-5],[44,3],[6,6]],[[1129,5148],[-7,151]],[[1122,5299],[57,3],[57,4],[-7,151],[57,3],[58,4],[57,4]],[[1416,5168],[-58,-4],[-57,-4],[-57,-4],[-58,-4],[-57,-4]],[[1122,5299],[-8,150]],[[1114,5449],[-7,149],[-7,155]],[[1100,5753],[6,-4],[44,3],[8,4],[7,-4],[43,3],[6,6]],[[1214,5761],[7,-5],[45,3],[5,6],[6,-5],[46,4],[6,5]],[[3243,5210],[11,-78]],[[3254,5132],[3,-25],[2,-15]],[[3259,5092],[-3,-7],[-45,-27],[-22,-6],[-34,-4],[-31,6],[-17,3],[-60,11],[-13,3],[-41,9],[-11,3],[-8,-31],[-6,-14],[-6,-9],[-11,-11],[-8,-5],[-11,-4],[-35,-6],[-19,2],[-17,-2],[-20,-3],[-51,-18],[-88,-32],[-19,-11],[-23,-23],[-31,-36],[-28,-28],[-38,-35],[-16,14],[-55,48],[-21,13],[-22,12],[-33,9],[-19,1],[-26,0],[-17,-2],[-20,-4],[-15,-6],[-14,-10],[-12,-12],[-10,-15],[-5,-13],[-5,-18],[-2,-13],[-2,-17],[-4,-17],[-3,-8],[-3,-8],[-10,-15],[-13,-11],[-8,-5],[-14,-7],[-92,-40],[-31,-12],[-52,-16],[-30,-5]],[[2009,4660],[3,11],[0,5],[-4,13],[-6,18],[-15,33],[-10,23],[-7,25],[-4,21],[-4,32],[-1,26],[-1,22],[-5,28],[-4,20],[-20,55],[-14,37],[-3,9],[-12,34],[-7,7],[5,11],[0,10],[3,11],[3,12],[5,8],[8,10],[9,8],[9,5],[16,5],[25,2],[89,7],[28,4],[37,6],[20,0],[15,-1],[23,-5],[72,-10],[11,0],[7,2],[10,4],[9,9],[8,10],[4,13],[2,10],[1,12],[-5,8]],[[3025,5324],[111,19],[55,11],[31,6]],[[2073,5820],[-7,155]],[[2066,5975],[-2,42],[-5,108]],[[2059,6125],[57,4],[60,4],[60,4],[29,2]],[[2265,6139],[-4,-6],[7,-137],[4,-7],[-4,-7],[7,-134],[4,-14]],[[1887,6113],[-7,150]],[[1880,6263],[57,4],[57,4],[57,3],[58,5],[60,4],[60,4],[34,3]],[[2263,6290],[-6,-9],[0,-8],[0,-49],[3,-76],[5,-9]],[[2059,6125],[-57,-4],[-58,-4],[-57,-4]],[[1780,5955],[-7,151]],[[1773,6106],[57,3],[57,4]],[[2066,5975],[-57,-4],[-57,-4],[-58,-4],[-57,-4],[-57,-4]],[[1600,6094],[-57,-4]],[[1543,6090],[-7,150]],[[1536,6240],[57,4],[57,4]],[[1650,6248],[58,3],[57,4],[57,4],[58,4]],[[1773,6106],[-58,-4],[-57,-4],[-58,-4]],[[276,6106],[123,-149],[0,11],[-3,11],[-5,9],[-1,7],[1,12],[3,9],[5,7],[37,27],[6,3],[3,2],[8,2],[20,3],[8,-2],[10,-4],[9,-8],[2,-2],[6,-7],[6,-5],[11,-4],[41,-3],[6,1],[6,4],[9,10],[7,3],[8,-1],[5,-7],[3,-6],[0,-6],[-4,-21],[-6,-84],[0,-13],[8,-4],[12,-4],[8,-3],[4,-6],[2,-12],[58,4],[57,4],[57,4],[8,-155]],[[814,5733],[-6,-4],[-46,-3],[-6,3]],[[756,5729],[-7,7],[-51,6],[-58,8],[-58,8],[-57,7],[-58,8],[-58,7],[-29,-2],[-28,-3],[-57,-5]],[[295,5770],[-13,9],[-24,21],[-23,42],[-16,55],[-9,40],[-5,41],[-1,8],[-8,33],[-4,18],[4,12],[7,13],[53,11],[20,33]],[[2009,4660],[5,-9],[1,-33],[-3,-7]],[[2012,4611],[-9,3],[-39,-3],[-6,-4]],[[1958,4607],[-1,3],[-49,-3],[-7,-4],[-7,2],[-44,-2],[-7,-4],[-6,3],[-44,-3],[-7,-3],[-6,2],[-45,-3],[-6,-3]],[[1729,4592],[-7,2],[-42,-2],[-9,-4],[-6,3],[-45,-3],[-6,-4],[-5,4],[-47,-4],[-5,-4],[-7,4],[-43,-3],[-8,-5]],[[1499,4576],[-6,4],[-44,-4],[-7,-3],[-6,2],[-45,-3],[-6,-3],[-7,2],[-40,-2],[-10,-4],[-7,2],[-43,-2],[-8,-4]],[[1270,4561],[-7,3],[-43,-3],[-7,-4],[-7,3],[-44,-3],[-6,-4],[-5,4],[-48,-3],[-5,-4],[-6,3],[-44,-2],[-7,-5],[-6,4],[-18,-1],[-9,0]],[[1008,4549],[-18,-2],[-6,-5],[-5,5],[-44,-4],[-8,-5],[-7,4],[-46,-4],[-5,-4],[-4,4],[-47,-3],[-6,-4],[-5,3],[-47,-3],[-5,-4],[-6,3],[-47,-3],[-4,-4]],[[698,4523],[-7,3],[-45,-3],[-6,-4],[-6,3],[-45,-3],[-6,-4],[-6,3],[-44,-3],[-8,-3]],[[525,4512],[-6,2],[-45,-3],[-6,-3],[-7,3],[-44,-3],[-6,-4],[-6,3],[-45,-3],[-6,-3],[-7,2],[-44,-2],[-6,-4],[-10,5],[-16,0],[-15,-1],[-10,-7],[-108,-33]],[[138,4461],[-5,9],[-2,12],[-3,7],[-5,15],[-3,2],[-2,3],[0,9],[-2,6],[0,4],[1,8],[-1,5],[0,6],[0,6],[1,11],[1,5],[1,3],[2,16],[2,23],[0,2],[1,13],[-3,13],[-1,8],[-1,4],[1,10],[-3,5],[-2,7],[1,9],[-1,5],[-4,10],[-1,36],[-2,3],[-5,1],[-2,5],[-1,10],[-2,3],[2,5],[-2,17],[2,3],[0,5],[-1,3],[1,12],[1,4],[1,3],[-1,4],[-1,4],[0,5],[0,61],[-1,6],[-1,21],[1,7],[-2,5],[2,9],[1,12],[-4,38],[3,17],[1,21],[-4,21]],[[96,5038],[112,47],[62,4],[57,4],[58,4]],[[385,5097],[57,4],[57,4],[57,4],[57,4]],[[613,5113],[58,4],[57,4],[57,4],[58,4],[57,4]],[[900,5133],[57,4],[57,4],[58,3],[57,4]],[[1134,6394],[3,-91]],[[1137,6303],[10,-240],[53,4]],[[1200,6067],[2,-51],[5,-100],[7,-155]],[[1100,5753],[-6,-5],[-45,-2],[-6,3],[-7,-5],[-44,-3],[-7,4]],[[985,5745],[-6,-4],[-44,-3],[-7,4],[-6,-5],[-45,-3],[-6,4],[-6,-5],[-45,-3],[-6,3]],[[276,6106],[-2,31],[-2,30]],[[272,6167],[3,2],[5,7],[2,8],[5,10],[5,8],[7,7],[5,2],[2,9],[6,11],[17,13],[7,0],[5,4],[4,5],[2,6],[11,11],[2,4],[4,3],[2,-1],[4,-1],[3,3],[3,5],[6,10],[1,2],[0,3],[2,-1],[1,2],[2,6],[-1,6],[4,12],[6,9],[6,3],[4,5],[4,8],[3,9],[5,10],[3,0],[4,14],[4,3],[9,0],[1,-4],[3,2],[7,1],[6,9],[4,5],[3,5],[2,5],[0,2],[2,0],[2,3],[2,1],[-1,5],[2,5],[0,6],[2,10],[2,2],[16,4],[5,1],[2,-1],[5,0],[5,-1],[5,1],[7,1],[5,-4],[5,-5],[8,-1],[4,0],[2,-1],[1,-2],[2,-1],[6,-1],[5,-1],[2,0],[16,3],[5,2],[1,-1],[2,0],[9,-2],[12,-4],[5,0],[2,1],[1,-2],[5,0],[2,0],[4,2],[1,1],[-1,2],[3,0],[3,-1],[4,2],[3,4],[3,0],[2,1],[1,-1],[4,-8],[2,-1],[5,0],[10,4],[4,1],[3,2],[3,-1],[4,2],[4,-3],[4,1],[1,3],[0,3],[7,0],[2,-4],[0,-2],[2,0],[0,2],[2,7],[2,2],[2,-2],[2,-6],[1,2],[1,-1],[4,1],[2,2],[-1,2],[3,2],[1,-3],[3,0],[1,2],[6,-1],[9,6],[4,1],[4,-2],[2,1],[-1,3],[2,1],[4,-2],[1,-1],[2,0],[1,1],[3,0],[1,-2],[1,2],[4,1],[2,0],[3,-2],[0,2],[3,3],[2,0],[0,1],[6,4],[4,0],[0,4],[1,7],[3,2],[1,-2],[0,-4],[2,1],[2,-2],[0,-3],[2,0],[0,2],[3,-2],[2,-3],[5,4],[3,0],[3,5],[-2,2],[0,3],[2,4],[1,-1],[1,-3],[2,4],[3,3],[3,1],[1,-2],[2,-5],[2,-7],[2,-6],[6,-3],[3,-1],[4,0],[4,-1],[1,-2],[3,-3],[5,1],[2,4],[1,1],[3,0],[1,-4],[-2,-7],[3,-3],[1,0],[3,4],[2,3],[4,1],[1,-6],[-1,-4],[1,-4],[3,-2],[2,1],[1,3],[5,-2],[2,-3],[-1,-6],[6,-1],[3,-8],[4,-4],[6,-1],[3,3],[1,-6],[4,-2],[2,5],[-1,5],[1,2],[3,2],[3,-4],[2,-1],[3,2],[5,-5],[2,-3],[-3,-3],[1,-3],[2,-2],[-1,-4],[2,-7],[1,-2],[3,-1],[2,0],[3,2],[2,-1],[3,0],[3,-3],[3,-6],[3,-1],[3,-1],[4,-1],[1,-3],[2,-3],[3,-1],[3,1],[1,-2],[2,1],[3,-3],[5,-2],[1,1],[3,0],[7,2],[3,0],[2,1],[8,6],[1,2],[3,1],[2,1],[4,3],[1,0],[3,0],[3,3],[8,1],[1,2],[4,2],[1,1],[2,1],[2,2],[3,1],[1,1],[2,3],[2,2],[5,1],[3,0],[2,0],[1,1],[2,1],[6,1],[0,3],[3,1],[1,-1],[3,1],[3,5],[0,4],[3,11],[-1,4],[4,0],[6,-10],[-1,-4],[2,-4],[-1,-6],[2,-3],[3,2],[1,1],[0,3],[1,2],[2,-1],[0,-5],[1,0],[1,-1],[3,0],[5,-1],[2,-4],[1,-1],[2,-5],[4,-8],[1,1],[2,1],[2,2],[3,1],[4,-1],[2,-1]],[[1200,6067],[57,3],[57,4],[32,3],[26,1],[29,2],[28,2]],[[1429,6082],[7,-150],[-57,-4],[8,-155]],[[1429,6082],[57,4],[57,4]],[[1600,6094],[8,-150],[-57,-4],[7,-155]],[[1730,5797],[-8,155],[7,-1],[44,3],[7,1]],[[2823,5871],[-7,155],[57,4],[-7,150],[-58,-4]],[[2808,6176],[-1,29]],[[2807,6205],[57,11]],[[2864,6216],[57,11],[61,12]],[[2982,6239],[2,-51],[5,-99],[2,-51],[8,-155]],[[2709,5863],[-8,155],[-57,-4],[-7,158]],[[2637,6172],[57,-5],[30,3],[27,2],[57,4]],[[2637,6172],[-57,-11],[-57,-4],[7,-150],[-58,-4]],[[2472,6003],[-7,150],[-57,-4],[-7,150]],[[2401,6299],[57,4],[57,4],[51,4],[6,-1],[49,3],[9,2],[57,3],[6,-135],[57,11],[57,11]],[[2365,5840],[-7,155],[57,4],[57,4]],[[2263,6290],[23,1],[57,4],[58,4]],[[295,5770],[3,-72],[8,-154],[3,-76]],[[309,5468],[2,-35],[0,-4],[2,-35],[57,3]],[[370,5397],[7,-150],[8,-150]],[[96,5038],[1,37],[0,9],[2,8],[-1,9],[0,13],[1,3],[-1,5],[1,8],[-4,27],[1,2],[1,3],[-2,6],[0,3],[2,6],[0,3],[-1,3],[1,24],[-1,5],[1,3],[-1,7],[2,4],[0,6],[0,5],[-1,4],[0,9],[1,10],[-1,11],[0,8],[2,13],[-1,51],[-3,28],[0,17],[1,8],[-1,7],[2,7],[-1,3],[2,6],[0,40],[-6,52],[-2,10],[0,7],[-4,28],[-1,11],[-3,9],[-4,8],[-1,5],[-5,2],[-10,6],[-10,3],[-8,13],[-8,18],[-7,11],[-12,19],[-2,11],[2,9],[3,8],[0,10],[4,14],[0,8],[-4,14],[-5,2],[-10,6],[-5,16],[3,10],[8,2],[5,-4],[4,6],[2,15],[1,15],[2,13],[1,14],[-10,21],[-4,22],[3,5],[4,8],[7,0],[9,-2],[-1,6],[1,6],[3,3],[20,-3],[6,4],[-7,11],[4,10],[6,13],[1,7],[8,8],[3,9],[-4,7],[-2,9],[4,3],[3,7],[-2,5],[-1,4],[0,6],[3,6],[7,3],[8,-5],[4,2],[1,9],[5,12],[-2,8],[0,5],[8,3],[1,9],[3,10],[5,6],[10,6],[3,10],[-10,10],[-4,5],[4,7],[-2,8],[6,3],[15,-17],[10,-12],[10,12],[-1,13],[-3,4],[-1,6],[2,5],[3,3],[7,-2],[8,2],[8,-3],[10,-1],[-2,11],[2,11],[4,3],[11,-9],[3,1],[7,7],[5,7],[13,2],[7,1],[7,2],[3,-2],[10,2],[7,5]],[[985,5745],[8,-154],[-58,-4],[-57,-4],[-57,-4],[-57,-4]],[[764,5575],[-57,-4],[-58,-4],[-57,-4]],[[592,5563],[-8,155],[6,-4],[48,3],[4,5],[4,-4],[47,3],[6,5],[6,-6],[45,3],[6,6]],[[1114,5449],[-57,-4],[-58,-4],[-57,-4],[-57,-4]],[[885,5433],[-57,-4],[-56,-4]],[[772,5425],[-8,150]],[[900,5133],[-7,150],[-8,150]],[[592,5563],[-58,-4],[-57,-4],[-57,-3],[4,-76],[-57,-4],[-58,-4]],[[613,5113],[-7,150]],[[606,5263],[58,4],[-8,150],[58,4],[58,4]],[[370,5397],[57,4],[58,4],[57,4],[57,4],[7,-150]],[[4826,6211],[-10,69],[-10,75]],[[4806,6355],[-5,38],[-5,38],[-5,37]],[[4791,6468],[88,17]],[[4879,6485],[5,-37],[5,-39],[5,-37],[5,-38],[5,-37]],[[4904,6297],[10,-74],[-28,-6],[-14,-3],[-33,2],[-7,0],[-6,-5]],[[4992,6314],[-88,-17]],[[4879,6485],[-5,37],[88,17]],[[4962,6539],[6,-7],[4,-29],[4,-30],[-4,-9],[6,-6],[5,-31],[4,-30],[-5,-8],[7,-7],[4,-30],[4,-30],[-5,-8]],[[4791,6468],[-5,37],[-87,-17],[-11,77]],[[4688,6565],[88,17]],[[4776,6582],[88,17],[88,17]],[[4952,6616],[6,-9],[8,-60],[-4,-8]],[[4776,6582],[-10,74],[-10,71]],[[4756,6727],[88,17],[88,17]],[[4932,6761],[-4,-9],[7,-56],[7,-6]],[[4942,6690],[-5,-9],[8,-57],[7,-8]],[[4756,6727],[-9,71]],[[4747,6798],[-10,71]],[[4737,6869],[88,17],[88,17]],[[4913,6903],[-4,-9],[7,-56],[7,-7],[-5,-8],[8,-56],[6,-6]],[[4737,6869],[-88,-17],[-9,71],[-10,74]],[[4630,6997],[16,3],[8,1],[64,13],[88,17],[88,16]],[[4894,7047],[-5,-9],[8,-58],[7,-7],[-5,-8],[8,-56],[6,-6]],[[4884,7124],[6,-7],[8,-60],[-4,-10]],[[4630,6997],[-10,77],[-10,74]],[[4610,7148],[88,17],[87,17],[10,-75],[42,8],[47,9]],[[4610,7148],[-10,75]],[[4600,7223],[-11,76],[88,16]],[[4677,7315],[45,9],[43,8],[88,17]],[[4853,7349],[-4,-9],[8,-60],[6,-6]],[[4863,7274],[7,-7],[8,-60],[-5,-8],[7,-7],[4,-29],[4,-31],[-4,-8]],[[4843,7424],[-4,-8],[8,-61],[6,-6]],[[4677,7315],[-10,75],[-88,-17],[-9,72]],[[4570,7445],[5,6],[76,15],[7,-4]],[[4658,7462],[5,6],[76,14],[7,-3],[5,6],[62,11],[9,2],[11,-3]],[[4833,7495],[-4,-8],[8,-57],[6,-6]],[[4658,7462],[-11,78],[-10,75],[-10,75],[38,8],[50,9],[59,11],[29,6]],[[4803,7724],[-4,-10],[8,-59],[6,-7],[-4,-8],[8,-60],[6,-6],[-4,-9],[8,-60],[6,-10]],[[4730,8040],[-7,6],[1,-7],[5,-33],[13,-38],[25,-37],[8,-21],[8,-36],[10,-75],[-5,-9],[8,-60],[7,-6]],[[4570,7445],[-11,78],[-10,75],[-88,-16],[-9,71]],[[4452,7653],[-6,44],[-5,35],[-4,30],[-5,41],[-2,6]],[[4430,7809],[-14,62]],[[4416,7871],[1,1],[3,2],[2,1],[2,1],[1,2],[1,3],[-1,4],[-2,0],[-1,5],[2,2],[0,4],[-1,4],[-5,38],[-4,24],[-10,111],[-2,0],[0,2],[1,0],[13,0],[14,-104],[5,-3],[29,6],[3,5],[-18,137],[21,3],[18,-136],[5,-4],[29,6],[3,5],[-17,138],[28,4],[14,-112],[31,6],[-1,6],[56,35],[66,-24],[0,2],[-29,41],[-25,-6],[-2,11],[27,6],[1,-4],[12,3],[1,-5],[-11,-2],[31,-43],[3,-3],[7,5],[-5,36],[0,6],[-1,8],[0,2],[0,12],[-1,4],[1,4],[1,11],[2,15],[4,14],[1,6],[3,8],[5,13],[6,13],[8,12],[3,5],[2,3],[1,2],[8,8],[7,7],[7,5],[10,6],[9,5],[9,3],[9,2],[8,1],[1,0],[9,-1],[6,-1],[7,-3],[2,-1],[1,0],[1,-2],[2,-2],[2,-4],[1,-2],[0,-4],[0,-3],[-1,-4],[-3,-3],[-3,-2],[-3,-1],[-3,1],[-3,1],[-2,3],[-2,3],[0,4],[0,2],[-1,2],[-1,2],[-2,1],[-5,0],[-4,0],[-9,-1],[-9,-3],[-9,-3],[-10,-6],[-7,-6],[-7,-6],[-5,-6],[-3,-2],[-1,-3],[-7,-10],[-6,-12],[-5,-12],[-5,-12],[-1,-3],[-2,-10],[-3,-13],[-1,-14],[-1,-16],[-1,-9],[1,2],[1,-16],[4,-27],[0,-11],[2,1],[1,-7]],[[4843,7424],[78,15],[10,2],[88,17],[10,-75],[10,-75]],[[5039,7308],[-88,-17],[-88,-17]],[[5127,7326],[-49,-9],[-7,-1],[-13,-3],[-13,-2],[-6,-3]],[[4833,7495],[12,6],[76,15],[-10,75],[30,5],[13,3],[5,1],[1,1],[22,3],[15,3]],[[4997,7607],[90,19]],[[5087,7626],[10,-75],[10,-75],[10,-75],[7,-51],[0,-1],[3,-23]],[[5293,7434],[4,-32],[6,-42]],[[5303,7360],[-39,-8],[-48,-9],[-5,-1],[-40,-7],[-44,-9]],[[5087,7626],[40,7],[48,10],[10,-76]],[[5185,7567],[5,-39],[4,-36],[60,12],[29,6],[5,-38],[5,-38]],[[5118,8070],[0,-5],[7,-47],[9,-75],[7,-51],[22,-21],[61,-65],[22,-22]],[[5246,7784],[7,-50],[5,-36],[5,-38],[10,-76],[-88,-17]],[[4997,7607],[2,9],[-3,37],[-4,11],[-5,8],[-6,3],[-3,1],[6,37],[-5,45],[-6,40],[-4,35],[-10,75],[-88,-17],[-7,23],[-1,9]],[[4863,7923],[4,1],[8,2],[3,1],[16,10],[13,10],[19,16],[21,21],[3,3],[11,12],[13,15],[20,24],[0,2],[-14,24],[2,2],[14,-23],[9,13],[-2,4],[-3,2],[-7,9],[2,2],[-4,5],[2,1],[3,-5],[1,1],[6,-10],[2,-3],[2,-4],[12,21],[0,5],[-2,15],[-21,26],[3,3],[-77,84],[2,3],[79,-88],[8,3],[10,-19],[5,1],[1,-14],[3,0],[8,8],[-3,15],[4,0],[1,-5],[14,0],[3,-1],[-1,-6],[-16,2],[2,-16],[5,1],[2,-16],[2,-22],[67,12]],[[4730,8040],[0,-5],[3,-15],[3,-14],[2,-6],[2,-3],[9,8],[6,-10],[3,2],[-7,11],[2,1],[14,-23],[-2,-1],[-1,3],[-2,-1],[-2,4],[1,1],[-2,4],[-3,-3],[2,-3],[-8,-7],[-2,-1],[10,-12],[11,-11],[11,-9],[12,-9],[13,-7],[14,-6],[9,-3],[11,-3],[10,0],[9,0],[5,1]],[[4600,6548],[-88,-16]],[[4512,6532],[-10,74]],[[4502,6606],[-9,71],[87,17],[-9,70]],[[4571,6764],[88,17],[88,17]],[[4688,6565],[-88,-17]],[[4571,6764],[-9,71],[-88,-17],[-6,45],[-4,26]],[[4464,6889],[-10,74]],[[4454,6963],[88,17],[88,17]],[[4454,6963],[-5,38],[-5,39],[-10,75],[-10,75]],[[4424,7190],[41,8],[47,9],[88,16]],[[4424,7190],[-10,75],[-5,37],[-6,38],[-5,37],[-4,34]],[[4394,7411],[6,7],[75,14],[7,-4],[5,6],[76,15],[7,-4]],[[4394,7411],[-7,4],[-75,-14],[-6,-6],[-7,3],[-75,-14],[-6,-6]],[[4218,7378],[-9,70],[-3,8],[89,17],[-19,147]],[[4276,7620],[88,16],[88,17]],[[4276,7620],[-92,-18],[-7,12],[-8,58],[4,8],[-6,7],[-6,46],[4,8]],[[4165,7741],[9,16],[81,16],[68,13],[10,5],[5,5],[7,-2],[79,15],[6,0]],[[4165,7741],[-51,-10],[-67,-12]],[[4047,7719],[-67,54],[-17,14],[-63,51],[-11,18],[5,43],[-1,18],[-21,32]],[[3872,7949],[-1,8],[-1,2],[1,2],[1,2],[2,1],[2,0],[2,-1],[2,-2],[1,-3],[0,-3],[2,-15],[1,-3],[2,-2],[0,4],[-4,30],[-13,-3],[0,2],[14,3],[1,-8],[3,1],[2,10],[1,-1],[-2,-8],[2,0],[3,10],[1,-1],[-2,-8],[2,0],[2,10],[2,-1],[-2,-8],[6,2],[3,10],[1,-1],[-2,-8],[5,1],[2,7],[1,0],[-1,-6],[4,1],[2,7],[1,0],[-1,-6],[5,1],[1,7],[2,0],[-1,-6],[1,1],[2,6],[1,-1],[-1,-5],[2,1],[1,6],[2,0],[-1,-6],[4,2],[1,5],[2,0],[-2,-5],[4,2],[2,5],[1,0],[-1,-5],[4,2],[2,5],[1,0],[-1,-5],[4,1],[1,6],[2,0],[-1,-4],[2,-8],[-2,-1],[-1,6],[-4,-1],[1,-7],[-2,0],[-1,6],[-4,-1],[1,-7],[-1,0],[-2,6],[-4,-1],[1,-6],[-1,-1],[-2,6],[-3,-1],[1,-6],[-1,-1],[-2,7],[-4,-2],[2,-6],[-2,-1],[-1,7],[-4,-1],[1,-6],[-2,0],[-1,5],[-4,-1],[1,-5],[-2,-1],[-1,5],[-3,-1],[1,-5],[-2,-1],[-1,5],[-3,-1],[1,-5],[-2,0],[-1,5],[-3,-1],[1,-6],[-2,0],[-1,5],[-3,-1],[1,-5],[-2,0],[-1,4],[-3,-1],[1,-4],[-2,-1],[-1,5],[-4,-1],[3,-22],[4,1],[-1,5],[2,0],[1,-5],[3,1],[0,5],[1,1],[1,-6],[3,1],[0,5],[1,0],[1,-5],[3,1],[0,5],[2,0],[0,-5],[3,1],[0,5],[2,0],[0,-5],[4,1],[0,5],[1,0],[1,-5],[4,1],[-1,5],[2,0],[1,-5],[3,0],[0,7],[2,0],[0,-6],[4,1],[-1,7],[1,0],[1,-6],[2,0],[-1,6],[2,0],[0,-5],[2,0],[-1,6],[2,0],[0,-7],[4,1],[0,7],[1,0],[1,-6],[4,1],[0,6],[1,0],[1,-6],[5,1],[-1,6],[1,0],[1,-7],[-28,-7],[0,-2],[6,0],[2,1],[1,0],[3,2],[8,1],[7,1],[13,1],[7,1],[4,2],[18,2],[12,3],[12,3],[8,2],[6,1],[17,2],[18,4],[43,7],[31,8],[6,1],[6,1],[7,1],[7,3],[9,2],[6,3],[3,0],[3,-1],[11,2],[3,1],[14,0],[7,1],[-1,11],[104,20],[5,-3],[9,23],[39,-20],[1,2],[1,-1],[-2,-6],[-1,1],[1,2],[-38,20],[-9,-21],[3,-2],[-1,-1],[-9,4],[-102,-20],[1,-1],[102,19],[1,-9],[-1,0],[-1,7],[-6,-1],[1,-7],[-1,0],[-1,6],[-5,0],[1,-7],[-2,0],[-1,6],[-5,-1],[1,-6],[-1,-1],[-1,7],[-5,-1],[0,-7],[-1,0],[-1,7],[-4,-1],[0,-7],[-1,0],[-1,7],[-4,-1],[0,-7],[-1,0],[-1,6],[-5,0],[1,-7],[-1,-1],[-1,7],[-5,-1],[1,-6],[-2,-1],[-1,7],[-4,-1],[1,-6],[-1,-1],[-1,7],[-4,-1],[0,-7],[-1,0],[-1,7],[-4,-1],[0,-7],[-1,0],[-1,7],[-4,-1],[1,-7],[-2,0],[-1,7],[-3,-1],[0,-7],[-1,0],[-1,7],[-4,-1],[1,-7],[-2,0],[-1,7],[-4,-1],[1,-7],[-1,0],[-1,7],[-4,-1],[2,-7],[-2,0],[-1,7],[-5,-1],[1,-5],[2,-1],[2,-1],[1,-3],[2,-8],[0,-13],[2,1],[-1,8],[1,0],[2,-8],[3,1],[-1,7],[2,1],[1,-8],[3,1],[0,8],[1,0],[2,-8],[3,1],[-1,8],[2,0],[1,-8],[4,1],[-1,8],[1,0],[2,-8],[3,1],[0,8],[1,0],[1,-8],[4,1],[-1,8],[2,0],[1,-7],[4,0],[-1,8],[2,0],[1,-7],[4,0],[-1,8],[2,0],[1,-7],[4,0],[-1,8],[1,0],[2,-7],[4,1],[-1,7],[2,1],[1,-8],[4,1],[-1,8],[2,0],[1,-8],[4,1],[-1,8],[2,0],[1,-8],[4,1],[-1,8],[2,0],[1,-7],[5,0],[-1,8],[1,0],[2,-7],[4,1],[-1,7],[2,0],[1,-7],[5,1],[-1,7],[1,1],[2,-8],[4,1],[-1,8],[2,0],[1,-8],[6,1],[-1,8],[1,0],[2,-15],[-1,0],[-1,6],[-4,-1],[0,-6],[-1,0],[-1,5],[-4,0],[0,-6],[-1,0],[-1,5],[-4,-1],[0,-5],[-2,-1],[-1,6],[-4,-1],[1,-6],[-2,0],[-1,6],[-3,-1],[0,-6],[-1,0],[-2,6],[-3,-1],[0,-6],[-1,0],[-1,6],[-4,-1],[0,-6],[-1,0],[-1,6],[-4,-1],[1,-6],[-2,0],[-1,6],[-4,-1],[1,-6],[-2,0],[-1,5],[-4,0],[1,-6],[-2,-1],[-1,6],[-3,0],[0,-6],[-1,-1],[-1,6],[-4,0],[1,-6],[-2,-1],[-1,6],[-3,0],[0,-6],[-1,-1],[-1,6],[-4,0],[1,-6],[-2,-1],[-1,6],[-3,0],[1,-6],[-2,-1],[-1,6],[-4,0],[1,-6],[-2,-1],[-1,6],[-3,0],[1,-7],[-2,0],[0,6],[-2,-1],[1,-5],[-1,0],[-1,5],[-2,0],[1,-6],[-2,0],[-1,6],[-3,0],[1,-6],[-2,-1],[0,6],[-2,0],[4,-27],[1,1],[0,6],[1,0],[1,-6],[3,0],[0,7],[1,0],[1,-6],[3,0],[0,7],[2,0],[1,-6],[3,0],[0,7],[1,0],[2,-6],[2,0],[0,7],[2,1],[1,-7],[3,1],[0,6],[1,1],[1,-7],[3,1],[0,6],[1,0],[2,-6],[3,1],[-1,6],[2,1],[1,-7],[3,1],[0,6],[1,1],[2,-7],[3,1],[-1,6],[2,1],[1,-7],[3,1],[0,7],[1,0],[2,-7],[3,1],[0,6],[1,1],[2,-7],[3,1],[0,7],[1,0],[1,-7],[4,1],[-1,7],[2,0],[1,-6],[4,0],[-1,7],[2,0],[1,-6],[3,0],[0,7],[1,0],[2,-6],[3,0],[0,7],[1,0],[2,-6],[3,1],[0,6],[2,0],[1,-6],[3,1],[0,6],[2,1],[1,-7],[3,1],[0,6],[2,1],[1,-7],[4,1],[-1,7],[2,0],[1,-7],[4,1],[-1,7],[2,0],[1,-6],[4,0],[-1,7],[2,0],[1,-6],[4,1],[-1,6],[2,0],[2,-14],[-2,0],[-1,6],[-4,-1],[1,-6],[-2,0],[-1,6],[-4,-1],[1,-6],[-2,-1],[-1,6],[-3,0],[0,-6],[-2,-1],[-1,6],[-3,0],[1,-6],[-2,-1],[-1,6],[-3,0],[0,-6],[-2,-1],[-1,6],[-3,0],[1,-6],[-2,-1],[-1,6],[-3,0],[0,-6],[-1,-1],[-1,6],[-2,-1],[1,-5],[-2,0],[0,5],[-2,0],[1,-6],[-2,0],[0,6],[-4,0],[0,-7],[-1,0],[-2,6],[-19,-4],[0,-3],[9,1],[2,-1],[3,-2],[2,-3],[0,-2],[2,-6],[2,-5],[0,-2],[3,0],[0,6],[2,0],[1,-5],[4,0],[0,6],[1,0],[1,-5],[4,0],[-1,6],[2,0],[1,-5],[3,0],[0,6],[2,1],[1,-6],[2,1],[0,5],[2,1],[1,-6],[3,1],[0,5],[1,1],[2,-6],[2,1],[0,5],[1,0],[2,-5],[2,0],[0,6],[2,0],[1,-5],[3,0],[-1,6],[2,0],[1,-5],[3,1],[0,5],[1,1],[2,-6],[3,1],[-1,5],[2,1],[2,-13],[-2,0],[-1,5],[-3,-1],[0,-5],[-1,0],[-1,5],[-4,-1],[0,-5],[-1,0],[-1,5],[-4,-1],[1,-5],[-1,0],[-1,5],[-4,-1],[1,-5],[-2,0],[-1,5],[-3,-1],[0,-5],[-2,0],[0,5],[-4,-1],[1,-5],[-2,0],[-1,5],[-3,-1],[1,-5],[-2,0],[-1,5],[-3,-1],[1,-5],[-2,0],[-1,5],[-3,-1],[1,-5],[-2,0],[-1,5],[-3,-1],[1,-5],[-2,0],[-1,5],[-3,-1],[1,-5],[-2,0],[0,5],[-2,0],[0,-4],[2,-14],[1,-5],[1,0],[0,5],[1,1],[1,-6],[3,1],[-1,5],[2,1],[1,-6],[3,1],[0,5],[1,1],[1,-6],[3,1],[0,5],[1,1],[1,-6],[3,1],[0,5],[2,1],[1,-6],[2,1],[0,5],[1,1],[2,-6],[2,1],[0,6],[2,0],[1,-6],[3,1],[0,5],[1,1],[1,-6],[3,1],[0,6],[1,0],[1,-6],[4,1],[0,6],[1,0],[1,-6],[4,1],[-1,6],[2,0],[1,-5],[3,0],[0,6],[1,0],[2,-12],[-2,-1],[0,5],[-4,0],[0,-5],[-1,-1],[-1,5],[-4,0],[1,-5],[-2,-1],[-1,5],[-3,0],[0,-6],[-2,0],[0,5],[-4,-1],[1,-5],[-2,0],[-1,5],[-3,0],[0,-6],[-1,0],[-1,5],[-3,-1],[0,-5],[-1,0],[-1,5],[-3,-1],[0,-5],[-2,0],[0,5],[-3,-1],[0,-5],[-2,0],[-1,5],[-3,-1],[1,-5],[-2,0],[-1,5],[-3,-1],[0,-5],[-1,0],[-1,5],[-3,-1],[1,-5],[-1,0],[-1,6],[-2,-1],[0,-4],[1,-2],[2,-9],[-1,-3],[1,-5],[2,1],[-1,5],[2,0],[1,-5],[2,0],[0,6],[2,0],[1,-5],[2,0],[0,6],[2,0],[1,-5],[2,0],[0,6],[2,0],[1,-5],[3,0],[-1,6],[2,0],[1,-5],[3,0],[-1,6],[2,0],[1,-5],[3,0],[0,6],[1,0],[1,-5],[3,0],[0,6],[1,0],[1,-5],[4,0],[-1,6],[2,0],[1,-5],[3,0],[0,6],[1,0],[1,-5],[4,0],[0,6],[1,0],[1,-5],[4,0],[-1,6],[1,0],[2,-12],[-1,0],[-1,5],[-3,-1],[0,-5],[-2,0],[-1,5],[-3,-1],[0,-5],[-2,-1],[-1,6],[-3,-1],[0,-5],[-1,0],[-1,5],[-3,-1],[0,-5],[-2,-1],[0,5],[-3,0],[0,-5],[-2,-1],[-1,5],[-3,0],[0,-5],[-1,-1],[-1,5],[-3,0],[0,-5],[-1,-1],[-1,5],[-3,0],[0,-5],[-1,0],[-1,4],[-3,0],[0,-5],[-1,-1],[-1,5],[-3,0],[0,-5],[-2,-1],[-1,5],[-2,0],[0,-5],[-1,0],[-1,5],[-2,0],[3,-23],[4,0],[-1,6],[2,0],[0,-4],[2,0],[-1,5],[2,0],[0,-5],[2,0],[-1,5],[2,0],[0,-5],[3,0],[0,6],[2,0],[0,-5],[4,0],[-1,6],[2,0],[1,-5],[2,0],[0,6],[1,0],[1,-5],[4,0],[-1,6],[2,0],[1,-5],[3,0],[0,6],[1,0],[1,-5],[3,0],[0,6],[2,0],[0,-5],[4,0],[-1,6],[2,0],[1,-5],[4,1],[-1,5],[2,0],[1,-5],[3,1],[-1,5],[2,0],[2,-11],[-2,0],[-1,4],[-3,-1],[0,-4],[-1,0],[-1,4],[-3,-1],[-1,-4],[-1,0],[-1,4],[-3,-1],[0,-4],[-1,0],[-1,4],[-3,-1],[0,-4],[-2,0],[0,4],[-3,-1],[0,-4],[-2,0],[-1,4],[-2,-1],[0,-4],[-2,0],[-1,4],[-3,-1],[1,-4],[-2,0],[-1,4],[-3,-1],[0,-4],[-1,0],[-1,4],[-3,-1],[0,-4],[-1,0],[-1,4],[-6,-1],[0,-3],[-2,0],[0,2],[-1,0],[1,-7],[2,-4],[3,-3],[3,-2],[4,-1],[4,0],[44,11],[3,2],[2,3],[2,6],[5,6],[6,2],[-1,1],[-6,-1],[-6,-7],[-1,1],[6,8],[7,1],[0,6],[0,2],[-6,-1],[0,2],[6,2],[-5,18],[3,1],[-4,17],[1,0],[4,-17],[1,0],[5,-23],[-3,-1],[-1,-6],[2,1],[0,-3]],[[4218,7378],[-7,4],[-75,-15],[-6,-6],[-7,4],[-75,-15],[-6,-6]],[[4042,7344],[-9,71],[0,8],[1,8],[-6,41],[-5,42],[49,37],[39,41],[3,4],[-33,27],[-9,6],[-17,16],[-7,13],[-3,16],[-5,40],[7,5]],[[4042,7344],[-7,4],[-75,-14],[-5,-7]],[[3955,7327],[-11,79],[-10,75],[-89,-18],[-10,75]],[[3835,7538],[89,17],[-6,37],[-5,39],[-8,61]],[[3905,7692],[47,9],[44,8],[51,10]],[[3955,7327],[-6,3],[-81,-15],[-3,-5],[-4,4],[-82,-16],[-3,-5]],[[3776,7293],[-5,4],[-5,0],[-11,2],[-6,-2],[-2,7],[-4,3],[-5,4],[-19,19],[-25,25],[-6,2],[0,6],[-13,13],[-43,44],[-6,1]],[[3626,7421],[41,9],[88,16],[-10,75],[90,17]],[[3626,7421],[-1,6],[-30,30]],[[3595,7457],[-6,65],[64,12],[-6,46],[-10,75],[88,16],[89,17],[89,18],[2,-14]],[[3595,7457],[-7,7],[-70,73],[-12,16],[-48,79],[-9,16],[-37,24],[-16,9],[-22,8],[-25,0],[53,12],[120,29],[20,13],[19,20],[3,7],[-2,22],[-9,88],[6,11],[10,9],[2,1],[-2,33],[3,11]],[[3572,7945],[16,13],[35,34],[8,1],[21,3],[9,-1],[65,9],[25,-2],[59,10],[52,20],[4,2],[6,2],[53,8],[31,6],[16,7],[5,5],[5,5],[4,6],[9,15],[10,13],[6,-4],[-19,-45],[-3,-3],[-4,-3],[-3,0],[-9,-3],[-8,-1],[-54,-9],[0,-6],[16,2],[1,-2],[4,-6],[-1,-2],[-6,9],[-5,-1],[5,-8],[-1,-1],[-6,9],[-6,-1],[4,-8],[-1,-1],[-5,8],[-7,-1],[5,-7],[-1,-1],[-6,8],[0,2],[9,1],[-1,6],[-26,-4],[-3,-2],[-3,-3],[-1,-5],[0,-2],[5,2],[0,2],[17,3],[1,-11],[-1,-1],[-1,9],[0,1],[-8,-1],[1,-13],[-2,0],[-1,12],[-4,-1],[0,-1],[1,-11],[-1,-1],[-2,11],[-2,-5],[1,-5],[-1,-2],[-1,7],[1,5],[-4,-1],[2,-11],[-14,-4],[-1,16],[-3,2],[0,-3],[2,-21],[-8,-1],[0,2],[6,1],[-1,2],[-6,-1],[0,2],[6,1],[0,2],[-6,-1],[0,2],[6,0],[0,3],[-6,-1],[0,2],[5,0],[0,2],[-6,0],[0,1],[6,1],[0,2],[-6,-1],[0,2],[6,1],[0,2],[-5,-1],[-5,-1],[-4,-2],[-3,-1],[-7,-3],[-2,0],[0,-2],[7,1],[0,-2],[-6,-1],[1,-2],[6,1],[0,-2],[-6,-1],[0,-2],[6,1],[0,-1],[-5,-1],[0,-3],[6,2],[0,-2],[-6,-1],[0,-2],[6,1],[0,-2],[-5,-1],[0,-2],[6,1],[0,-2],[-14,-2],[0,2],[5,1],[0,1],[-5,-1],[0,2],[5,1],[0,2],[-6,-1],[0,2],[5,1],[0,2],[-5,-1],[0,2],[5,1],[-1,2],[-5,-1],[0,2],[5,0],[0,3],[-5,-1],[0,1],[4,1],[0,2],[-6,-1],[-12,-6],[0,-3],[0,-6],[-2,-2],[-9,-2],[1,-6],[8,3],[2,2],[1,-1],[0,-1],[2,1],[5,-6],[-1,-2],[-4,6],[-2,-1],[4,-5],[-1,-1],[-5,6],[-1,0],[3,-5],[-1,-2],[-4,6],[-2,0],[5,-5],[-2,-2],[-4,6],[-2,0],[4,-5],[-1,-1],[-4,5],[-5,-1],[6,-8],[-1,-1],[-7,9],[-2,-1],[7,-9],[-1,-1],[-8,9],[-2,0],[4,-7],[-1,-1],[-5,7],[-3,-1],[7,-9],[-1,-1],[-8,10],[-2,-1],[7,-10],[-1,-1],[-7,10],[-3,-1],[7,-9],[-1,-1],[-7,9],[-3,-1],[7,-9],[-1,-1],[-7,10],[-6,-3],[7,-9],[-1,-1],[-8,9],[-4,-1],[0,1],[11,5],[-3,6],[-16,-8],[-24,-11],[2,-4],[7,1],[1,1],[1,-2],[-6,-1],[-1,-2],[3,-2],[15,3],[0,-2],[-10,-2],[-2,-2],[3,-2],[10,2],[0,-2],[-3,-1],[0,-3],[14,3],[0,-2],[-16,-3],[-5,4],[2,-6],[-2,0],[-3,8],[-3,3],[4,-12],[-1,-1],[-5,15],[-4,3],[-6,-3],[5,-19],[-1,0],[-6,18],[-5,-2],[7,-18],[-2,-1],[-6,19],[-3,-2],[6,-18],[-2,-1],[-6,18],[-6,-2],[3,-9],[0,-1],[-13,7],[8,4],[-1,2],[-33,-14],[6,0],[4,1],[1,0],[10,4],[21,-12],[-1,-2],[-21,12],[-7,-3],[23,-13],[-1,-2],[-24,14],[-5,-2],[14,-14],[-1,-2],[-15,15],[-6,-3],[14,-13],[-1,-1],[-15,13],[-6,-2],[9,-8],[-1,-2],[-6,6],[-5,-2],[-1,5],[-4,-1],[-12,-6],[-1,1],[13,6],[-1,3],[-14,-7],[0,-7],[8,1],[0,-2],[-7,-1],[0,-4],[10,2],[0,-2],[-10,-1],[0,-3],[11,2],[0,-2],[-10,-2],[1,-6],[7,1],[0,-2],[-7,-2],[1,-6],[7,2],[1,-2],[-7,-1],[0,-3],[11,1],[0,-2],[-10,-1],[0,-3],[10,2],[1,-2],[-12,-1],[1,-6],[11,1],[0,-2],[-11,-2],[1,-6],[11,2],[0,-2],[-10,-2],[0,-2],[10,2],[1,-2],[-10,-2],[0,-2],[10,2],[0,-2],[-10,-2],[0,-2],[10,2],[1,-2],[-10,-2],[0,-1],[4,0],[0,-1],[-5,-1],[1,-4],[5,1],[0,-2],[-4,-1],[0,-2],[5,1],[0,-2],[-5,-1],[1,-5],[41,8],[-1,6],[-28,-5],[0,1],[1,1],[0,5],[1,0],[1,-4],[1,-1],[1,1],[-1,5],[2,0],[0,-5],[2,1],[-1,10],[1,0],[2,-10],[2,0],[-2,10],[2,1],[1,-10],[2,0],[-1,10],[1,0],[2,-11],[4,1],[-1,11],[1,1],[2,-10],[2,0],[-1,10],[1,1],[2,-11],[2,1],[-2,10],[2,0],[1,-10],[2,0],[-1,11],[1,0],[2,-10],[2,0],[-2,10],[2,1],[1,-11],[3,1],[-2,10],[2,0],[1,-10],[2,1],[-1,10],[1,0],[1,-10],[3,0],[-2,11],[2,0],[1,-10],[3,0],[-2,10],[2,0],[1,-10],[3,1],[-2,10],[2,0],[1,-10],[2,1],[-1,7],[2,1],[1,-8],[2,0],[-1,10],[2,0],[1,-10],[2,1],[-1,9],[2,0],[1,-9],[2,1],[-1,9],[2,0],[1,-9],[2,0],[-1,9],[1,1],[1,-10],[2,1],[-1,9],[2,0],[1,-9],[2,0],[-1,10],[1,0],[1,-10],[5,1],[-1,10],[1,0],[2,-9],[2,0],[-1,10],[1,0],[2,-9],[2,0],[-1,10],[1,0],[1,-9],[2,0],[-1,10],[2,0],[1,-10],[2,0],[-2,10],[2,1],[1,-10],[2,0],[-1,10],[2,0],[1,-9],[2,0],[-1,8],[1,0],[1,-8],[2,1],[-1,8],[2,0],[1,-8],[2,0],[-1,8],[1,1],[1,-8],[2,0],[-1,8],[1,0],[1,-8],[2,0],[-1,9],[2,0],[1,-8],[1,0],[0,8],[1,0],[1,-7],[2,0],[-1,8],[1,0],[1,-9],[3,1],[2,1],[-1,8],[2,0],[1,-8],[2,1],[-1,8],[1,0],[1,-8],[2,0],[-1,8],[1,1],[1,-9],[3,0],[2,2],[-1,8],[2,0],[1,-8],[2,0],[-1,8],[1,1],[1,-8],[2,0],[-1,8],[2,0],[1,-8],[1,0],[-1,9],[2,0],[1,-8],[1,0],[-1,8],[2,0],[1,-8],[2,0],[-1,9],[1,0],[1,-8],[2,0],[-1,8],[2,1],[1,-8],[1,-1],[-1,9],[2,0],[1,-8],[1,0],[-1,9],[2,0],[1,-8],[2,0],[-1,8],[1,1],[1,-9],[2,1],[-1,8],[1,0],[1,-9],[4,1],[-1,9],[2,0],[0,-8],[3,1],[-1,7],[1,1],[1,-8],[2,0],[-1,8],[1,0],[1,-9],[4,1],[-1,9],[2,0],[1,-8],[4,0],[-1,9],[2,0],[1,-8],[3,0],[-1,9],[2,0],[1,-8],[2,0],[1,-1],[-26,-5],[0,-6],[27,5],[5,8],[-5,37],[-3,6],[-30,-6],[1,-5],[27,4],[0,-2],[-2,0],[1,-9],[-2,0],[0,7],[-2,0],[1,-7],[-2,0],[0,7],[-2,0],[0,-8],[-1,0],[-1,9],[-4,-1],[1,-9],[-1,0],[-1,8],[-2,-1],[1,-7],[-1,0],[-1,7],[-1,0],[1,-8],[-2,0],[-1,8],[-1,-1],[0,-7],[-1,0],[-1,7],[-2,0],[1,-8],[-1,0],[-1,8],[-2,0],[1,-8],[-1,0],[-1,7],[-2,0],[0,-8],[-1,0],[-1,9],[-4,-1],[1,-9],[-2,0],[-1,9],[-4,-1],[1,-8],[-2,-1],[-1,8],[-1,0],[1,-8],[-2,0],[-1,7],[-2,0],[1,-8],[-2,0],[-1,9],[-4,0],[1,-10],[-2,0],[-1,9],[-4,0],[1,-10],[-2,0],[0,8],[-2,0],[1,-8],[-2,0],[-1,7],[-1,0],[0,-7],[-1,0],[-1,7],[-2,0],[1,-8],[-1,0],[-1,7],[-2,1],[1,-8],[-2,-1],[0,8],[-2,0],[0,-8],[-1,0],[-1,8],[-1,-1],[1,-8],[-2,0],[-1,8],[-2,-1],[1,-7],[-1,0],[-1,7],[-2,0],[1,-8],[-2,0],[-1,9],[-5,-1],[1,-9],[-1,0],[-2,8],[-5,-1],[1,-9],[-2,0],[-1,9],[-4,-1],[1,-8],[-2,0],[-1,7],[-2,-1],[1,-7],[-2,0],[0,7],[-2,0],[0,-6],[-1,0],[-1,6],[-3,0],[0,-7],[-1,0],[-1,6],[-4,0],[1,-7],[-2,0],[-1,6],[-3,0],[0,-7],[-1,0],[-1,6],[-4,-1],[1,-6],[-2,0],[0,5],[-2,0],[1,-6],[-2,0],[0,6],[-2,-1],[1,-5],[-2,0],[0,5],[-2,0],[1,-6],[-2,0],[0,6],[-2,0],[1,-6],[-2,0],[0,5],[-2,0],[1,-6],[-2,0],[0,5],[-2,0],[1,-5],[-2,0],[-2,14],[2,0],[0,-6],[2,1],[-1,5],[2,0],[1,-5],[1,0],[-1,6],[2,0],[1,-6],[4,0],[-1,7],[2,0],[1,-6],[3,1],[0,6],[1,1],[1,-6],[2,0],[-1,6],[2,0],[0,-5],[2,0],[-1,6],[1,0],[1,-7],[4,1],[-1,7],[1,0],[1,-6],[2,1],[0,5],[1,1],[1,-6],[1,0],[-1,6],[2,0],[1,-7],[3,1],[-1,6],[2,1],[1,-7],[3,1],[0,7],[1,0],[2,-7],[3,1],[-1,7],[2,0],[1,-7],[3,1],[-1,10],[2,0],[1,-9],[5,1],[-1,9],[2,0],[1,-8],[2,1],[-1,9],[2,0],[1,-9],[2,0],[-1,9],[1,0],[2,-10],[4,1],[-1,10],[2,0],[1,-9],[7,1],[-1,6],[-1,0],[-1,2],[2,0],[-1,2],[0,2],[-7,-1],[0,2],[6,1],[0,3],[-6,-1],[0,2],[6,1],[0,2],[-7,-1],[0,2],[6,0],[0,3],[-6,-2],[0,2],[6,1],[0,3],[-7,-1],[0,1],[7,2],[-1,2],[-6,-1],[-1,2],[15,3],[0,-2],[-5,-1],[0,-2],[6,1],[0,-2],[-6,-1],[1,-1],[5,1],[0,-2],[-5,-1],[0,-1],[6,0],[-1,-1],[-5,-1],[0,-2],[6,1],[0,-2],[-5,-1],[0,-1],[5,1],[0,-2],[-5,-1],[1,-2],[5,0],[0,-1],[-6,-1],[0,-3],[0,-2],[6,1],[-1,2],[16,5],[-4,25],[1,5],[2,0],[-1,-4],[4,1],[1,6],[1,0],[0,-5],[4,2],[1,5],[1,0],[-1,-5],[4,2],[1,6],[2,-1],[-1,-4],[4,1],[1,6],[1,0],[0,-5],[4,2],[1,5],[1,0],[-1,-5],[5,2],[0,6],[2,-1],[-1,-4],[4,1],[1,6],[1,0],[-1,-5],[3,-7],[-2,-1],[-1,6],[-4,-1],[2,-6],[-2,-1],[-2,6],[-3,-2],[1,-5],[-1,-1],[-2,6],[-3,-2],[1,-4],[-1,-1],[-2,5],[-3,-2],[1,-4],[-1,-1],[-2,5],[-3,-2],[1,-4],[-1,-1],[-2,5],[-3,-2],[1,-4],[-1,0],[-1,4],[-4,-2],[1,-4],[-1,-1],[-2,4],[-3,-1],[2,-17],[3,1],[0,4],[2,0],[0,-4],[2,0],[-1,5],[2,0],[0,-5],[1,1],[0,4],[2,0],[0,-4],[3,1],[0,4],[1,1],[1,-5],[3,1],[0,5],[1,0],[1,-5],[3,1],[0,5],[2,0],[0,-4],[3,0],[0,6],[2,0],[0,-5],[3,0],[0,6],[2,0],[1,-5],[3,0],[-1,6],[2,0],[1,-5],[3,0],[-1,6],[2,0],[0,-5],[2,1],[0,4],[1,0],[1,-4],[1,1],[0,4],[3,0],[1,-6],[-19,-4],[1,-6],[1,1],[9,2],[4,1],[4,2],[1,1],[2,5],[-1,1],[-1,2],[2,0],[-2,5],[0,4]],[[4258,6404],[-10,77]],[[4248,6481],[88,17],[44,8],[44,9],[88,17]],[[4512,6532],[10,-77],[-88,-17]],[[4434,6438],[-44,-9],[-44,-8],[-88,-17]],[[4248,6481],[-5,38],[-5,37],[-9,70],[-10,71],[-9,71]],[[4210,6768],[88,17]],[[4298,6785],[9,-71],[10,-71],[23,5],[65,12],[9,-70],[88,16]],[[4298,6785],[87,17],[-4,35],[-5,35],[88,17]],[[4210,6768],[-88,-17]],[[4122,6751],[-9,70],[-10,75]],[[4103,6896],[87,16]],[[4190,6912],[88,17],[88,17],[39,7],[49,10]],[[4190,6912],[-3,28],[-7,49],[88,17],[-10,75],[-10,75]],[[4248,7156],[88,17],[88,17]],[[4248,7156],[-88,-17]],[[4160,7139],[-10,75],[-5,38],[88,17],[-5,37],[-5,38],[-5,34]],[[4160,7139],[-88,-16],[-88,-17]],[[3984,7106],[-10,75],[-10,75],[-9,71]],[[3926,6862],[-3,23],[-8,54],[-10,75],[-10,75]],[[3895,7089],[89,17]],[[4103,6896],[-88,-17],[-44,-8],[-45,-9]],[[3895,7089],[-89,-17],[-88,-17],[-10,75]],[[3708,7130],[88,17],[-10,74],[-10,72]],[[3708,7130],[-76,-15]],[[3632,7115],[-8,76],[-8,75],[-2,8],[-6,67],[-8,75],[-2,29],[-3,12]],[[3926,6862],[4,-30],[6,-44]],[[3936,6788],[-71,-14],[-19,-3],[-88,-17],[-88,-17]],[[3670,6737],[-8,75]],[[3662,6812],[-4,42],[-3,35],[-4,34],[-22,-2],[-6,68],[21,3],[-4,48],[-8,75]],[[3827,6245],[-10,75],[-11,77]],[[3806,6397],[88,16]],[[3894,6413],[89,17],[89,17],[88,17],[88,17]],[[4258,6404],[-87,-16],[-88,-17],[10,-75]],[[4093,6296],[-89,-17],[-89,-17],[-88,-17]],[[3894,6413],[-10,75]],[[3884,6488],[89,17],[89,17],[-4,35],[-5,35],[-9,72],[-10,70],[88,17]],[[3884,6488],[-10,71]],[[3874,6559],[-9,70],[-9,71],[89,17],[-9,71]],[[3874,6559],[-87,-17],[-10,70],[-87,-16]],[[3690,6596],[-10,70],[-10,71]],[[3806,6397],[-88,-17],[-10,74]],[[3708,6454],[-9,71],[-9,71]],[[3617,5974],[6,26],[2,25],[-22,151],[-1,8],[-3,6]],[[3599,6190],[65,24],[74,14],[89,17]],[[3827,6245],[10,-75]],[[3837,6170],[-88,-17],[-76,-14],[11,-75],[75,14],[88,17]],[[3847,6095],[11,-81]],[[3858,6014],[-89,-17],[-67,-13],[-5,0],[-2,0],[-1,-1],[-49,-4]],[[3645,5979],[-28,-5]],[[3599,6190],[-88,-31],[1,9],[-5,52],[-7,39],[-5,11],[-12,6],[-10,-1]],[[3473,6275],[-7,57]],[[3466,6332],[88,17],[-10,74]],[[3544,6423],[90,17],[74,14]],[[3544,6423],[-10,71],[-87,-17],[-10,70],[-9,71],[-9,65]],[[3419,6683],[87,23],[-1,9],[163,45]],[[3668,6760],[2,-23]],[[3617,5974],[-1,0]],[[3303,5920],[-26,188],[48,1],[26,2],[14,1],[7,2],[-7,63],[-2,36],[-1,41],[22,4],[22,4],[45,9],[22,4]],[[3177,5897],[-10,205],[-59,-4],[-8,163],[15,3]],[[3115,6264],[44,9],[43,8],[15,3],[73,14],[7,1],[81,15]],[[3378,6314],[82,16],[6,2]],[[2982,6239],[-5,75],[128,25]],[[3105,6339],[10,-75]],[[3378,6314],[-10,75],[-9,71],[-10,70],[-88,-17],[-9,71],[-7,47],[87,26]],[[3332,6657],[87,26]],[[3105,6339],[-10,71],[-10,70],[-115,-22],[-3,72],[-1,33]],[[2966,6563],[24,0],[82,25],[88,27],[86,25],[80,24],[6,-7]],[[2864,6216],[-5,114],[-58,-4],[-57,-4],[-7,158],[9,10]],[[2746,6490],[196,59],[24,14]],[[2263,6290],[4,7],[3,30],[5,29],[2,7]],[[2277,6363],[7,0],[57,0],[13,-1],[45,15],[112,36],[56,23],[58,17],[57,17],[64,20]],[[1650,6248],[-1,45],[0,13],[-1,27],[-2,10],[-1,27],[2,28],[18,6]],[[1665,6404],[103,-42],[47,-12],[62,-22],[57,9],[58,-9],[57,0],[57,-1],[60,16],[0,4],[-1,20],[-6,29],[-1,16],[-10,0],[-9,1],[-5,5],[-25,49],[-3,8],[5,7],[10,17],[15,22],[3,1],[43,3],[2,-2],[4,-8],[-1,-5],[1,-10],[-1,-5],[-3,-7],[-1,-9],[1,-5],[2,-5],[5,-3],[7,-4],[15,-2],[12,1],[-4,7],[-3,20],[-1,18],[2,10],[3,7],[6,4],[30,5],[22,5],[3,-2],[-2,-7],[-2,-23],[-5,-27],[-5,-33],[-1,-10],[-10,-31],[-7,-15],[-5,-6],[-20,-13],[-1,-10],[46,3],[6,0]],[[1536,6240],[-57,-4],[-26,-2],[-20,-1],[-3,7],[-5,20],[-5,24],[-8,2],[-50,-2],[-18,5],[-24,4],[-9,-7],[-7,1],[-7,-4],[-21,-7],[-19,-1],[-20,8],[-14,12],[-28,23],[-11,1],[-17,-8],[-14,-4],[-14,-3],[-2,-1]],[[1134,6394],[3,-1],[10,2],[2,0],[2,2],[2,-1],[2,1],[3,2],[2,1],[3,0],[1,2],[3,2],[2,-1],[1,1],[2,0],[3,0],[1,2],[2,2],[3,0],[0,5],[1,3],[4,0],[0,-5],[1,3],[4,-9],[2,1],[10,1],[3,1],[4,2],[7,3],[3,2],[3,2],[1,2],[13,8],[2,3],[3,4],[3,1],[2,3],[7,5],[2,0],[3,1],[6,4],[4,3],[1,3],[7,5],[11,11],[1,3],[1,3],[7,8],[9,12],[6,6],[0,2],[5,4],[3,4],[11,11],[7,11],[5,10],[7,0],[6,-2],[15,-3],[6,-6],[11,-5],[27,13],[20,-1],[4,8],[9,5],[7,-1],[8,-6],[1,-2],[0,-3],[5,3],[1,-4],[4,0],[14,15],[3,8],[6,10],[12,16],[9,9],[7,7],[5,10],[5,4],[0,7],[5,9],[2,6],[4,6],[4,5],[1,1]],[[1551,6653],[27,-81],[21,-24],[34,9],[4,25],[1,10],[17,-25],[-29,-44],[39,-119]],[[1551,6653],[2,5],[8,10],[18,36],[7,20],[15,19],[13,21],[12,25],[9,17],[10,26],[6,19],[11,28],[14,32],[16,51],[-12,4],[23,71],[5,24],[8,22],[10,51],[8,27],[9,28],[9,27],[0,13],[2,11],[3,8],[-2,5],[0,3],[2,11],[2,3],[5,3],[4,0],[2,3],[-4,12],[-1,4],[2,0],[6,-7],[1,8],[2,1],[0,4],[2,0],[7,-8],[1,3],[-7,8],[-1,3],[3,1],[1,1],[3,7],[0,4],[1,4],[2,6],[2,4],[3,6],[2,2],[-1,3],[0,4],[4,6],[6,3],[5,4],[2,8],[1,9],[1,4],[3,5],[0,7],[0,25],[6,4],[6,5],[4,11],[1,6],[4,6],[3,7],[3,11],[5,12],[5,15],[5,10],[1,12],[6,23],[2,17],[-1,14],[2,13],[2,17],[2,12],[2,12],[15,42],[6,12],[8,23],[10,38],[1,12],[5,17],[5,15],[8,33],[4,16],[1,15],[1,13],[1,10],[3,4],[-2,6],[2,3],[-2,4],[2,14],[0,10],[2,13],[2,26],[1,9],[0,9],[0,6],[2,5],[0,8],[0,11],[1,23],[4,20],[12,10],[6,5],[9,14],[0,7],[-2,11],[-1,47],[1,42],[-1,27],[1,17],[-2,18],[15,6],[-3,26],[4,1],[5,1],[6,2]],[[2004,8275],[7,-91],[1,-9],[38,75],[8,-39],[6,-24],[12,-35],[9,-10],[26,-12],[32,-11],[43,-7],[35,0],[19,-1],[12,-3],[34,-8],[26,-14],[12,-11],[7,-8],[3,1],[3,2],[3,-2],[5,-2],[5,-3],[2,-3],[2,-4],[2,-6],[0,-4],[1,-4],[1,-4],[0,-4],[2,-7],[3,-7],[2,-7],[2,-5],[3,-3],[3,-5],[3,-6],[1,-5],[0,-4],[-1,-5],[7,-10],[4,-5],[4,-5],[5,-3],[5,-5],[5,-5],[5,-3],[3,-4],[3,-2],[4,-5],[3,-6],[2,-5],[2,-5],[2,-5],[2,-5],[2,-4],[3,-3],[3,-2],[3,-2],[5,-3],[7,3],[3,2],[3,0],[3,-2],[2,-3],[1,-6],[2,-13],[1,-7],[1,-7],[2,-7],[1,-8],[2,-8],[2,-8],[2,-8],[2,-7],[1,-8],[2,-7],[3,-7],[2,-8],[2,-7],[3,-7],[3,-7],[2,-7],[2,-7],[3,-6],[3,-7],[2,-6],[3,-7],[4,-6],[3,-6],[3,-5],[3,-4],[3,-4],[2,-3],[2,-3],[1,-4],[4,-3],[-9,-9],[20,-50],[7,-12],[-53,17],[-30,9],[-14,5],[-26,9],[2,-4],[0,-3],[2,-21],[-1,-59],[0,-33],[-1,-66],[0,-60],[0,-35],[-1,-44],[-2,-112],[0,-25],[0,-90],[0,-23],[-1,-75],[-2,-189],[0,-26],[-1,-28],[-3,-23],[-7,-39],[-9,-33],[-8,-21],[-5,-12],[-9,-19],[-14,-29],[-13,-28],[-32,-66],[-15,-28],[-12,-24],[-3,-8],[-4,-12],[-7,-19],[-4,-16],[-3,-9],[-3,-12]],[[3662,6812],[6,-52]],[[2004,8275],[8,2],[19,-3],[18,-9],[3,2],[5,-5],[4,-6],[8,-27],[3,-15],[2,-30],[6,-18],[4,-5],[9,-8],[14,-7],[31,-11],[8,-6],[18,-3],[22,-3],[43,-1],[31,-5],[23,-5],[23,-8],[10,-1],[3,0],[18,-5],[16,-6],[15,-9],[3,-1],[30,67],[3,2],[3,-2],[28,-18],[1,-3],[-3,-8],[-4,-1],[-29,19],[-26,-57],[7,-11],[10,-8],[7,-7],[4,-5],[11,-8],[12,-12],[15,-18],[4,-13],[6,-16],[13,-24],[5,-5],[8,-7],[18,-8],[8,13],[6,-5],[-9,-14],[3,-4],[12,-11],[8,-8],[22,-26],[8,-10],[12,-8],[17,-9],[11,15],[22,35],[9,-9],[-4,-6],[-5,5],[-1,-1],[-3,3],[-28,-43],[31,-17],[9,0],[4,-2],[10,-5],[10,-8],[48,-22],[17,-9],[13,-5],[22,-5],[17,1],[17,2],[28,8],[11,0],[10,-5],[7,-2],[16,2],[18,5],[14,6],[66,13],[10,3],[13,6],[10,3],[13,2],[12,1],[14,3],[11,3],[12,5],[12,6],[11,5],[12,4],[8,3],[17,2],[18,4],[16,5],[17,6],[19,8],[58,29],[6,1],[3,-2],[1,-7],[11,-1],[14,-5],[28,-3],[28,1],[18,0],[42,6],[40,15],[24,9],[29,6],[5,0],[5,0],[5,1],[8,5],[4,2],[5,1],[8,0],[3,0],[3,-1],[2,-3],[7,-5],[8,-1],[9,4],[14,5],[5,2],[4,4]],[[3956,5730],[-9,1],[-50,-10],[-88,-17],[-88,-16],[-37,-7],[-54,-10]],[[3616,5974],[29,5]],[[3858,6014],[5,-20],[47,-27],[7,-6],[9,-11],[9,-69],[10,-76],[11,-75]],[[3986,5736],[-30,-6]],[[3847,6095],[88,17],[5,-38],[5,-38]],[[3945,6036],[1,-11],[9,-63],[10,-75]],[[3965,5887],[10,-75],[11,-76]],[[4093,6296],[88,17],[87,16]],[[4268,6329],[11,-75]],[[4279,6254],[-88,-17],[-88,-16]],[[4103,6221],[-89,-17],[-89,-17],[-88,-17]],[[5604,7801],[-20,-4],[-68,-13],[-89,-17],[-86,-16],[-54,-10]],[[5287,7741],[-41,43]],[[5118,8070],[6,2],[-1,6],[8,1],[0,-6],[58,10],[-2,16],[-6,3],[-2,0],[-44,-1],[0,-6],[-2,0],[0,10],[-54,2],[0,9]],[[5079,8116],[8,0],[69,-4],[11,-2],[16,-9],[6,-3],[12,-65],[12,2],[88,16],[-4,35],[1,26],[15,0],[12,0],[10,-4],[127,-6],[12,-7],[2,-11],[6,0],[91,-20],[11,-3],[70,-10],[7,-8],[-9,-3],[-78,-15],[10,-74],[10,-76],[3,-19],[7,-55]],[[5412,7611],[-62,64],[-30,32],[-33,34]],[[5604,7801],[5,-38],[5,-37],[5,-36],[5,-39]],[[5624,7651],[-32,-6],[-56,-11],[-49,-9],[-38,-7],[-32,-6],[-5,-1]],[[5841,7692],[-48,-9],[8,0],[5,-2],[4,-3],[1,-5],[-1,-5],[-2,-4],[-6,-7],[-5,-3],[-2,-2],[-4,-3],[-3,-5],[-1,-6],[-1,-6],[1,-7],[2,-7],[7,-12]],[[5796,7606],[-9,-1],[-38,-8],[-29,-5],[-16,-3],[-25,-5],[-45,-8],[-10,75]],[[5604,7801],[31,6],[13,2],[42,8],[44,8],[5,-38],[3,-24],[10,2],[1,-6],[2,-10],[29,0],[3,3],[4,3],[20,6],[16,5],[9,-64],[3,-7],[2,-3]],[[6114,7875],[-64,-57],[-26,-15],[-47,-1],[54,-58],[9,-26],[-74,-3],[-87,-16]],[[5879,7699],[-18,-8],[-6,-2],[-8,-1],[-3,1],[-3,3]],[[5079,8116],[0,9],[46,-3],[0,5],[11,-6],[28,-1],[2,6],[-35,20],[2,5],[56,-34],[-3,-7],[0,-6],[-2,0],[0,-2],[3,-1],[4,0],[2,-15],[5,0],[-1,-4],[6,0],[1,-1],[3,0],[3,0],[1,-13],[-3,-1],[-3,0],[1,-2],[-5,-1],[1,-7],[8,2],[6,1],[2,-15],[53,10],[0,5],[3,1],[-2,11],[-45,2],[0,3],[45,-2],[3,-2],[7,1],[0,3],[-3,1],[1,25],[-66,6],[0,19],[-40,40],[-60,59],[-1,-1],[-28,28],[1,2],[-42,41],[13,19],[19,-18],[8,3],[-5,20],[2,0],[10,-35],[8,-5],[19,-14],[2,2],[4,-1],[6,-6],[3,4],[-10,11],[4,6],[-22,23],[6,8],[27,-1],[108,-107],[79,-79],[8,0],[-1,3],[3,3],[-1,1],[-1,-1],[-12,11],[3,3],[12,-11],[6,-6],[7,3],[-5,5],[1,1],[-1,1],[-1,-2],[-12,11],[3,5],[12,-11],[-1,-2],[7,-6],[3,2],[0,7],[-30,31],[3,7],[39,-22],[29,-8],[32,-19],[2,7],[-6,7],[-7,7],[-35,37],[4,6],[9,9],[14,-19],[-4,-5],[66,-61],[6,-1],[6,4],[0,3],[-2,4],[-2,-1],[-9,15],[3,4],[10,-15],[-1,-1],[2,-4],[2,0],[2,-1],[11,9],[0,3],[-2,5],[-2,-2],[-9,16],[4,3],[9,-15],[-1,-1],[2,-4],[2,0],[2,-1],[5,5],[-51,91],[7,6],[1,-1],[64,52],[1,-1],[-64,-53],[66,-117],[2,1],[9,-16],[5,-1],[4,0],[-11,18],[2,1],[12,-20],[0,2],[4,-1],[0,-2],[11,-3],[1,2],[4,-1],[0,-2],[6,-1],[5,41],[2,-3],[-5,-39],[1,0],[5,38],[-13,35],[-4,-3],[4,-10],[-1,-1],[-4,10],[-2,0],[3,-8],[-2,-1],[-3,8],[-1,-1],[3,-8],[-2,-1],[-3,8],[-2,-1],[3,-8],[-2,-1],[-3,8],[-1,-1],[3,-8],[-2,-1],[-3,8],[-2,-1],[3,-8],[-2,-1],[-3,8],[-2,-1],[4,-8],[-2,-1],[-7,20],[1,1],[4,-10],[2,1],[-3,10],[1,1],[4,-10],[2,1],[-3,10],[1,1],[4,-10],[2,1],[-4,10],[2,1],[4,-10],[2,1],[-4,10],[2,1],[4,-10],[2,1],[-4,10],[2,1],[3,-10],[6,3],[-14,36],[-4,-2],[4,-10],[-2,0],[-4,10],[-2,-2],[4,-10],[-2,-1],[-4,10],[-2,-1],[4,-10],[-2,-1],[-4,10],[-2,-1],[4,-10],[-2,-1],[-4,10],[-1,-1],[3,-10],[-1,-1],[-4,10],[-3,-1],[4,-10],[-2,-1],[-3,10],[-2,-1],[4,-10],[-2,-1],[-4,10],[-2,-1],[4,-10],[-2,-1],[-4,10],[-2,-1],[4,-10],[-2,-1],[-4,10],[-2,-1],[4,-10],[-2,-1],[-4,9],[-2,-1],[4,-10],[-2,-1],[-4,10],[-1,-1],[4,-10],[-2,0],[-9,23],[2,1],[4,-12],[2,1],[-4,12],[2,1],[4,-12],[2,1],[-4,12],[2,1],[4,-12],[3,2],[-5,12],[2,1],[5,-12],[2,1],[-4,12],[1,1],[5,-12],[2,1],[-4,12],[1,1],[5,-12],[2,2],[-4,12],[2,0],[4,-11],[3,1],[-5,12],[2,1],[5,-12],[2,1],[-5,12],[2,1],[4,-12],[2,1],[-4,12],[1,1],[5,-12],[3,1],[-4,12],[1,1],[5,-11],[4,2],[-16,44],[-5,-3],[5,-12],[-2,-1],[-4,12],[-2,-1],[4,-12],[-2,-1],[-4,12],[-7,-3],[5,-13],[-2,-1],[-4,12],[-7,-3],[5,-12],[-2,-1],[-5,12],[-1,-1],[3,-12],[-1,-1],[-4,12],[-3,-1],[4,-13],[-1,0],[-4,12],[-4,-2],[5,-12],[-2,-1],[-4,12],[1,-14],[-2,0],[0,14],[-6,-3],[5,-12],[-2,-1],[-5,14],[1,0],[46,25],[-5,14],[4,15],[16,8],[1,5],[13,7],[4,-1],[24,12],[88,-18],[51,-200],[-2,0],[-50,199],[-86,17],[-14,-7],[1,-1],[3,-1],[7,-3],[9,5],[0,2],[78,-16],[-2,-12],[-1,0],[1,11],[-2,0],[-1,-11],[-2,1],[1,11],[-2,0],[-2,-11],[-2,1],[2,10],[-2,1],[-2,-11],[-2,1],[2,10],[-2,1],[-2,-11],[-2,0],[1,11],[-2,1],[-2,-11],[-2,0],[2,11],[-2,1],[-2,-11],[-2,0],[2,11],[-3,1],[-1,-11],[-2,0],[1,11],[-2,1],[-2,-11],[-2,0],[2,11],[-2,0],[-1,-10],[-3,0],[2,11],[-2,0],[-2,-11],[-2,1],[1,11],[-1,0],[-2,-11],[-2,1],[1,11],[-2,0],[-2,-11],[-2,1],[2,11],[-2,0],[-2,-11],[-2,1],[2,10],[-3,1],[-1,-11],[-2,1],[1,10],[-2,1],[-2,-11],[-1,1],[1,10],[-2,1],[-2,-11],[-2,0],[2,11],[-3,1],[-2,-11],[-1,0],[-3,8],[-2,-1],[3,-8],[-2,-1],[-2,8],[-4,-2],[10,-25],[-1,-5],[-1,-1],[-1,-4],[5,-1],[2,11],[1,-1],[-1,-10],[2,0],[1,10],[2,-1],[-1,-10],[2,-1],[2,11],[1,-1],[-1,-10],[2,-1],[2,11],[2,0],[-2,-11],[3,-1],[1,11],[2,0],[-1,-11],[2,-1],[2,11],[1,0],[-1,-11],[2,-1],[2,11],[2,0],[-2,-11],[3,0],[2,10],[1,0],[-1,-11],[2,0],[2,10],[2,0],[-2,-11],[3,0],[1,10],[2,0],[-1,-11],[2,0],[2,11],[1,-1],[-1,-11],[2,0],[2,11],[2,-1],[-2,-10],[2,-1],[2,11],[2,-1],[-2,-10],[3,-1],[2,11],[1,0],[-1,-11],[2,-1],[2,11],[2,0],[-2,-11],[3,-1],[2,11],[1,0],[-1,-11],[2,-1],[2,11],[2,0],[-2,-11],[4,-1],[-2,-12],[-1,0],[1,11],[-2,0],[-2,-10],[-1,0],[1,11],[-2,0],[-2,-10],[-2,0],[2,11],[-3,0],[-1,-10],[-2,0],[1,10],[-2,1],[-2,-10],[-2,0],[2,10],[-3,1],[-1,-10],[-2,0],[1,10],[-2,1],[-2,-11],[-2,1],[2,10],[-2,1],[-2,-11],[-2,1],[2,10],[-3,1],[-1,-11],[-2,1],[1,10],[-2,0],[-2,-10],[-2,0],[2,11],[-2,0],[-2,-10],[-2,0],[2,11],[-3,0],[-1,-10],[-2,0],[1,11],[-2,0],[-2,-10],[-1,0],[1,11],[-2,0],[-2,-10],[-2,0],[1,11],[-2,0],[-1,-10],[-2,0],[1,10],[-2,1],[-2,-10],[-2,0],[2,10],[-3,1],[-1,-11],[-2,1],[1,10],[-2,0],[-1,-10],[-2,1],[2,10],[-5,1],[0,-2],[0,-2],[0,-5],[-1,-1],[-1,-8],[0,-2],[0,-4],[-2,-2],[-1,-8],[1,-2],[0,-2],[2,-1],[1,9],[2,0],[-2,-8],[2,-1],[1,8],[1,0],[-1,-9],[2,0],[1,9],[2,-1],[-1,-10],[2,0],[1,10],[2,0],[-1,-10],[2,-1],[1,10],[2,0],[-1,-10],[2,-1],[1,10],[2,0],[-1,-10],[1,0],[2,10],[2,-1],[-2,-10],[2,0],[1,10],[2,-1],[-1,-9],[2,-1],[2,10],[1,0],[-1,-10],[2,-1],[2,10],[1,0],[-1,-10],[2,0],[2,9],[1,0],[-1,-10],[2,0],[1,10],[1,-1],[0,-10],[2,0],[1,10],[2,-1],[-1,-9],[2,-1],[1,10],[2,0],[-1,-10],[2,-1],[1,10],[2,0],[-2,-10],[3,0],[1,9],[2,0],[-2,-10],[2,0],[2,10],[1,-1],[-1,-9],[2,-1],[2,10],[1,-1],[-1,-9],[2,-1],[1,10],[2,0],[-1,-10],[2,0],[2,9],[1,0],[-1,-10],[2,0],[2,9],[1,0],[-1,-10],[2,0],[1,10],[2,-1],[-1,-9],[2,-1],[1,10],[2,0],[-1,-10],[2,-1],[1,10],[2,0],[-2,-10],[4,-1],[-1,-10],[-2,1],[1,8],[-2,0],[-1,-8],[-1,0],[1,9],[-2,0],[-1,-8],[-1,0],[1,8],[-2,1],[-1,-9],[-2,1],[2,8],[-2,0],[-1,-8],[-2,0],[1,9],[-1,0],[-1,-8],[-2,0],[1,8],[-1,1],[-2,-9],[-1,1],[1,8],[-2,0],[-1,-8],[-1,0],[1,9],[-2,0],[-1,-8],[-1,0],[1,8],[-2,1],[-1,-9],[-2,1],[2,8],[-2,0],[-1,-8],[-2,0],[1,9],[-1,0],[-1,-8],[-2,0],[1,8],[-1,1],[-2,-9],[-1,1],[1,8],[-2,0],[-1,-8],[-2,0],[2,9],[-2,0],[-1,-8],[-2,0],[1,8],[-1,1],[-1,-9],[-2,0],[1,9],[-1,0],[-1,-8],[-2,0],[1,9],[-1,0],[-2,-9],[-1,1],[1,8],[-2,1],[-1,-9],[-2,0],[2,9],[-2,0],[-1,-8],[-1,0],[1,9],[-2,0],[-1,-9],[-2,1],[1,8],[-1,1],[-1,-9],[-2,0],[1,9],[-1,0],[-2,-8],[-1,0],[1,9],[-2,0],[-1,-9],[-2,1],[2,8],[-2,0],[-1,-8],[-2,0],[2,9],[-2,0],[-1,-8],[-2,0],[1,8],[-1,1],[-1,-9],[-2,1],[1,8],[-1,0],[-2,-8],[-1,0],[1,7],[-1,0],[-1,-7],[-2,1],[1,7],[-1,0],[-1,-7],[-1,0],[1,10],[-3,0],[-1,-2],[-1,-7],[1,-2],[-1,-9],[6,-15],[1,0],[1,9],[2,0],[-1,-9],[1,0],[1,8],[2,0],[-1,-9],[1,0],[1,9],[2,0],[-1,-9],[2,-1],[1,9],[2,0],[-1,-9],[1,0],[1,8],[2,0],[-1,-9],[1,0],[2,9],[1,-1],[-1,-8],[2,-1],[1,9],[1,0],[-1,-9],[2,0],[1,8],[2,0],[-1,-9],[1,0],[1,9],[2,-1],[-1,-8],[1,-1],[1,9],[2,0],[-1,-9],[2,0],[1,9],[2,-1],[-1,-9],[1,0],[1,9],[2,0],[-1,-9],[1,0],[2,8],[1,0],[-1,-9],[2,0],[1,9],[2,-1],[-2,-8],[2,-1],[1,9],[2,0],[-1,-9],[1,-1],[1,9],[2,0],[-1,-9],[1,0],[1,9],[2,-1],[-1,-8],[2,-1],[1,9],[1,0],[-1,-9],[2,0],[1,8],[2,0],[-1,-9],[1,0],[1,9],[2,-1],[-1,-8],[2,-1],[1,9],[1,0],[-1,-9],[2,-1],[1,9],[2,0],[-1,-9],[1,0],[1,9],[2,-1],[-1,-9],[1,0],[2,9],[1,0],[-1,-9],[2,0],[1,8],[2,0],[-2,-9],[2,0],[2,9],[1,-1],[-1,-8],[1,-1],[1,9],[2,0],[-1,-9],[2,0],[1,8],[1,0],[-1,-9],[2,0],[1,9],[2,-1],[-1,-8],[1,-1],[2,9],[1,0],[-2,-18],[-1,0],[1,7],[-2,0],[-1,-7],[-1,1],[1,7],[-2,0],[0,-7],[-2,0],[1,7],[-1,1],[-1,-8],[-2,1],[1,7],[-1,0],[-1,-7],[-2,0],[1,7],[-1,1],[-1,-7],[-1,0],[0,7],[-1,0],[-1,-7],[-1,0],[0,8],[-1,0],[-1,-7],[-1,0],[0,7],[-1,0],[-1,-7],[-1,1],[1,7],[-2,0],[-1,-7],[-1,0],[1,7],[-2,1],[-1,-8],[-1,1],[1,7],[-2,0],[-1,-7],[-1,0],[0,8],[-1,0],[-1,-7],[-1,0],[1,7],[-2,0],[-1,-7],[-1,1],[1,7],[-2,0],[-1,-7],[-1,0],[1,7],[-2,1],[0,-8],[-2,1],[1,7],[-2,0],[0,-7],[-2,0],[1,7],[-1,1],[-1,-8],[-2,1],[1,7],[-1,0],[-1,-7],[-2,0],[1,8],[-1,0],[-1,-7],[-1,0],[0,7],[-1,0],[-1,-7],[-1,1],[0,7],[-1,0],[-1,-7],[-1,0],[1,7],[-2,0],[-1,-7],[-1,1],[1,7],[-2,0],[-1,-7],[-1,0],[1,7],[-2,1],[-1,-7],[-1,0],[1,7],[-2,0],[-1,-7],[-1,0],[1,8],[-2,0],[0,-7],[-2,0],[1,7],[-2,0],[0,-7],[-2,1],[1,7],[-2,0],[0,-7],[-2,0],[1,7],[-1,1],[-1,-8],[-2,1],[1,7],[-2,0],[0,-7],[-1,0],[0,5],[-1,2],[-7,2],[14,-39],[5,4],[-3,2],[-2,0],[1,9],[1,0],[-1,-7],[2,-1],[1,7],[1,0],[-1,-7],[2,0],[1,7],[1,-1],[-1,-6],[2,-1],[1,7],[1,0],[-1,-7],[2,0],[0,7],[2,-1],[-1,-7],[1,0],[1,7],[2,0],[-1,-7],[1,-1],[1,7],[2,0],[-1,-7],[1,0],[1,7],[1,0],[0,-7],[1,-1],[1,7],[1,0],[0,-7],[1,0],[1,7],[1,-1],[-1,-7],[2,0],[0,7],[2,0],[-1,-7],[2,-1],[1,7],[1,0],[-1,-7],[2,0],[1,7],[1,-1],[-1,-7],[2,0],[1,7],[1,0],[-1,-7],[2,0],[1,7],[1,-1],[-1,-7],[2,0],[0,7],[2,0],[-1,-7],[2,-1],[0,7],[2,0],[-1,-7],[1,0],[1,7],[2,0],[-1,-7],[1,-1],[1,7],[2,0],[-1,-7],[1,0],[1,7],[1,-1],[0,-7],[1,0],[1,7],[1,0],[0,-7],[1,-1],[1,7],[1,0],[0,-7],[1,0],[1,7],[1,0],[-1,-7],[2,-1],[1,7],[1,0],[-1,-7],[2,0],[1,7],[1,-1],[-1,-7],[2,0],[1,7],[1,0],[-1,-7],[2,0],[0,7],[2,-1],[-1,-7],[2,0],[0,7],[2,0],[-1,-7],[2,-1],[0,7],[2,0],[-1,-7],[2,0],[0,7],[2,-1],[-1,-6],[1,-1],[1,7],[2,0],[-1,-7],[1,0],[1,7],[1,-1],[-1,-7],[3,-1],[-1,-9],[-1,0],[1,8],[-2,0],[-1,-7],[-1,0],[1,7],[-2,1],[-1,-8],[-1,0],[1,8],[-2,0],[-1,-7],[-1,0],[1,7],[-2,1],[-1,-8],[-1,1],[1,7],[-2,0],[-1,-7],[-1,0],[1,8],[-1,0],[-1,-7],[-2,0],[1,7],[-1,0],[-1,-7],[-2,0],[1,8],[-2,0],[0,-7],[-2,0],[1,7],[-1,1],[-1,-8],[-1,1],[0,7],[-1,0],[-1,-7],[-1,0],[0,8],[-1,0],[-1,-7],[-2,0],[1,7],[-1,0],[-1,-7],[-1,0],[1,8],[-2,0],[-1,-7],[-1,0],[1,7],[-2,1],[-1,-8],[-1,1],[1,7],[-2,0],[-1,-7],[-1,0],[1,7],[-2,1],[0,-7],[-2,0],[1,7],[-2,0],[0,-7],[-2,0],[1,8],[-2,0],[0,-7],[-2,0],[1,7],[-2,1],[0,-8],[-2,1],[1,7],[-1,0],[-1,-7],[-2,0],[1,7],[-2,1],[0,-7],[-2,0],[1,7],[-1,0],[-1,-7],[-1,0],[0,8],[-1,0],[-1,-7],[-2,0],[1,7],[-1,1],[-1,-8],[-1,1],[0,7],[-1,0],[-1,-7],[-1,0],[1,8],[-2,0],[-1,-8],[-1,1],[1,7],[-2,0],[-1,-7],[-1,0],[1,8],[-2,0],[-1,-7],[-1,0],[1,7],[-2,1],[-1,-8],[-1,1],[1,5],[-7,-3],[1,-3],[6,-21],[3,-2],[3,-1],[1,9],[2,0],[-1,-7],[1,-1],[1,7],[2,0],[-1,-7],[1,0],[1,7],[2,0],[-1,-7],[1,-1],[1,7],[2,0],[-1,-7],[1,0],[1,7],[2,-1],[-1,-7],[1,0],[1,7],[1,0],[-1,-7],[2,-1],[1,7],[1,0],[-1,-7],[2,0],[1,7],[1,0],[-1,-7],[2,-1],[1,7],[1,0],[-1,-7],[2,0],[1,7],[1,-1],[-1,-7],[2,0],[1,7],[1,0],[-1,-7],[1,-1],[2,7],[1,0],[-1,-7],[1,0],[1,7],[2,0],[-1,-7],[1,-1],[1,7],[2,0],[-1,-7],[1,0],[1,7],[2,-1],[-1,-7],[1,0],[1,7],[1,0],[-1,-7],[2,0],[1,7],[1,-1],[-1,-7],[2,0],[1,7],[1,0],[-1,-7],[2,-1],[1,7],[1,0],[-1,-7],[2,0],[1,7],[1,-1],[-1,-7],[2,0],[1,7],[1,0],[-1,-7],[2,0],[1,7],[1,-1],[-1,-7],[2,0],[1,7],[1,0],[-1,-7],[1,-1],[1,7],[2,0],[-1,-7],[2,0],[0,7],[2,-1],[-1,-7],[1,0],[1,7],[2,0],[-1,-7],[1,0],[1,6],[2,0],[-1,-7],[1,0],[1,7],[1,0],[-1,-7],[2,-1],[1,7],[2,0],[-1,-7],[1,0],[1,7],[1,0],[-1,-8],[3,-1],[-1,-9],[-1,1],[1,7],[-2,0],[-1,-7],[-1,0],[1,7],[-2,1],[-1,-8],[-1,1],[1,7],[-2,0],[-1,-7],[-1,0],[1,8],[-2,0],[-1,-7],[-1,0],[1,7],[-2,0],[0,-7],[-2,0],[1,8],[-1,0],[-2,-7],[-1,0],[1,7],[-2,1],[-1,-8],[-1,1],[1,7],[-1,0],[-1,-7],[-2,0],[1,8],[-1,0],[-1,-7],[-2,0],[1,7],[-1,0],[-1,-7],[-2,0],[1,8],[-1,0],[-1,-7],[-2,0],[1,7],[-1,1],[-1,-8],[-2,1],[1,7],[-1,0],[-1,-7],[-2,0],[1,8],[-1,0],[-1,-8],[-2,1],[1,7],[-1,1],[-1,-8],[-1,0],[1,8],[-2,0],[-1,-7],[-1,0],[1,7],[-1,1],[-1,-8],[-2,1],[1,7],[-2,0],[-1,-7],[-1,0],[1,8],[-1,0],[-1,-7],[-2,0],[1,7],[-1,0],[-1,-7],[-2,0],[1,8],[-1,0],[-1,-7],[-2,0],[1,7],[-1,1],[-1,-8],[-2,1],[1,7],[-1,0],[-1,-7],[-2,0],[1,7],[-1,1],[-1,-7],[-2,0],[1,7],[-1,0],[-1,-7],[-1,0],[1,8],[-2,0],[-1,-7],[-1,0],[1,7],[-2,1],[-1,-8],[-1,1],[1,7],[-2,0],[-1,-7],[-1,0],[1,5],[-3,2],[-5,1],[1,-1],[0,-3],[8,-22],[4,-2],[3,6],[1,-1],[-2,-6],[2,-1],[2,6],[1,-1],[-2,-6],[2,0],[2,6],[1,0],[-2,-7],[1,-1],[3,7],[1,0],[-2,-7],[1,-1],[2,7],[2,0],[-3,-7],[2,-1],[2,7],[1,-1],[-2,-7],[1,0],[3,8],[1,-1],[-2,-8],[1,0],[3,7],[1,0],[-2,-8],[2,-1],[2,8],[2,-1],[-3,-8],[2,0],[2,8],[2,0],[-3,-9],[2,-1],[3,9],[2,-1],[-3,-9],[2,-1],[3,9],[1,-1],[-2,-8],[2,-1],[2,8],[2,0],[-3,-9],[2,-1],[3,9],[2,0],[-3,-9],[2,-2],[3,10],[2,-1],[-3,-9],[2,-1],[3,9],[2,-1],[-3,-9],[2,-1],[3,9],[1,0],[-4,-12],[1,-4],[4,-3],[2,1],[5,15],[2,-1],[-4,-12],[-1,-5],[6,-4],[1,1],[6,17],[2,-1],[-6,-19],[4,-2],[5,20],[2,0],[-4,-16],[11,4],[-3,10],[5,2],[6,-23],[-2,0],[0,-3],[4,-3],[1,-2],[-2,-7],[3,-2],[4,12],[38,-19],[-9,175],[1,2],[33,4],[2,-1],[1,-1],[0,-2],[12,-230],[31,-23],[49,160],[1,1],[2,0],[2,-4],[20,-5],[1,-1],[0,-3],[-43,-140],[41,-31],[64,115],[1,1],[2,-1],[19,-14],[0,-2],[0,-3],[-58,-105],[33,-36],[100,130],[2,0],[27,-30],[-10,-100]],[[5796,7606],[5,-9],[6,-19],[7,-21],[4,-8],[5,-6],[6,-6],[2,-1],[-18,-3],[-4,-1]],[[5809,7532],[-13,-2],[-24,-5],[-26,-5],[-16,-3],[-19,-4],[-23,-4],[-20,-4],[-24,-4],[-88,-16],[-19,-4]],[[5537,7481],[-62,65]],[[5475,7546],[-20,20],[-43,45]],[[5879,7699],[10,-75],[68,12],[19,4],[10,-75],[5,-38],[5,-37],[10,-75],[-25,-5],[-34,-6],[-7,-1],[-21,-4],[-13,-3],[-31,-6],[-17,-3],[-12,-2],[-13,-3]],[[5833,7382],[-10,76]],[[5823,7458],[-9,71],[-1,2],[-2,1],[-2,0]],[[5475,7546],[-17,-3],[-44,-9],[-43,-8],[5,-37],[5,-38],[-31,-6],[-57,-11]],[[6035,6483],[-1,-7],[-40,-47],[-27,-31],[-5,-2]],[[5962,6396],[-3,26],[-5,37],[-83,-15],[-5,37],[-83,-16],[-5,39],[-5,36],[-5,38],[-5,37],[-19,-3],[-19,-4],[-8,53],[-3,22],[-5,-1]],[[5709,6682],[-1,7],[-10,69]],[[5698,6758],[15,3],[29,6],[2,0],[42,8],[42,8]],[[5828,6783],[15,3],[66,12],[32,7],[56,10]],[[5997,6815],[11,-76],[10,-75],[10,-75],[11,-75],[2,-15],[-6,-16]],[[5962,6396],[-6,-1],[-54,-65],[-2,-7],[-5,-2],[-58,-68],[-2,-3],[-1,-4],[0,-2],[-8,-5],[-1,-1],[-71,-84],[-1,-6],[-5,0],[-33,-39],[-1,-6]],[[5714,6103],[-25,29],[2,8],[-43,-9],[-10,76],[38,7],[6,1],[-6,24],[-3,12],[-6,37],[-20,-4],[-19,-3],[-88,-17]],[[5540,6264],[-10,76]],[[5530,6340],[-3,22],[-4,28],[-2,17],[-1,8]],[[5520,6415],[-3,24],[-4,25],[-3,26]],[[5510,6490],[49,9],[39,8],[-10,75],[88,17],[-8,52],[-3,23]],[[5665,6674],[32,6],[12,2]],[[5510,6490],[-10,75],[-4,31],[-6,44]],[[5490,6640],[67,13],[20,4]],[[5577,6657],[88,17]],[[5421,6473],[-10,75]],[[5411,6548],[-10,75]],[[5401,6623],[89,17]],[[5520,6415],[-35,-7],[-10,-2],[-11,-2],[-33,-6],[-3,24],[-7,51]],[[5530,6340],[-44,-9],[-44,-8]],[[5442,6323],[-22,-4],[-66,-13]],[[5354,6306],[-10,75]],[[5344,6381],[-10,75]],[[5334,6456],[87,17]],[[5169,6348],[-89,-17]],[[5080,6331],[-5,36],[-5,39],[88,16]],[[5158,6422],[24,5],[64,12]],[[5246,6439],[15,3],[73,14]],[[5344,6381],[-88,-17]],[[5256,6364],[-19,-3],[-68,-13]],[[5050,6555],[5,-36],[88,17],[5,-38],[5,-38],[5,-38]],[[5080,6331],[5,-38],[-82,-15]],[[5003,6278],[-4,29],[-7,7]],[[4962,6539],[88,16]],[[5226,6590],[10,-76]],[[5236,6514],[10,-75]],[[5050,6555],[88,17],[-10,77]],[[5128,6649],[88,15],[10,-74]],[[5236,6514],[67,13],[21,4],[46,9],[41,8]],[[5226,6590],[69,13],[19,3],[-6,45],[-5,32]],[[5303,6683],[88,17]],[[5391,6700],[10,-77]],[[5128,6649],[-10,74]],[[5118,6723],[87,18]],[[5205,6741],[69,13],[19,4],[3,-21],[4,-27],[3,-27]],[[4942,6690],[87,16],[-9,72],[88,17]],[[5108,6795],[4,-34],[6,-38]],[[5635,6896],[19,3],[25,5],[44,9],[32,6],[26,5],[27,5]],[[5808,6929],[5,-35],[5,-36],[10,-75]],[[5698,6758],[-27,-5],[-16,-3],[-5,35],[-5,40],[-7,47],[-2,18],[-1,6]],[[5635,6896],[-9,71]],[[5626,6967],[-10,71]],[[5616,7038],[19,3],[11,2],[14,3],[18,3],[2,1],[24,4],[24,5],[13,2],[7,2],[6,1],[13,2],[23,5]],[[5790,7071],[4,-35],[5,-36],[9,-71]],[[5205,6741],[-4,33],[-5,38],[70,13],[18,3],[31,6],[15,3],[10,2],[0,2],[0,10],[-8,59]],[[5332,6910],[30,7]],[[5362,6917],[1,-6],[2,-15],[7,-51],[4,-35],[5,-36],[10,-74]],[[5108,6795],[-6,44],[-3,26]],[[5099,6865],[87,17],[88,17]],[[5274,6899],[33,6],[25,5]],[[4913,6903],[88,16],[88,17]],[[5089,6936],[10,-71]],[[5089,6936],[44,9],[44,8],[-5,36],[-5,37],[69,13],[19,3]],[[5255,7042],[10,-72],[9,-71]],[[5246,7109],[4,-32]],[[5250,7077],[2,-14],[3,-21]],[[4894,7047],[88,17],[7,5],[34,6],[41,4],[6,-3],[74,14],[7,1],[7,1],[11,3],[59,10],[18,4]],[[5039,7308],[3,-23],[7,-53],[10,-74]],[[5059,7158],[-88,-17],[-87,-17]],[[5789,7219],[-22,23],[-42,44],[-62,63]],[[5663,7349],[46,9],[25,5],[16,4],[-10,75],[29,5],[13,3],[21,4],[3,0],[17,4]],[[5833,7382],[2,-14],[9,-61],[3,-22],[3,-26],[3,-19],[0,-9]],[[5853,7231],[-41,-8],[-23,-4]],[[5663,7349],[-63,67],[-40,41]],[[5560,7457],[-23,24]],[[6114,7875],[-20,-198],[6,-11],[20,3],[103,92],[2,-1],[-3,-5],[18,-21],[0,-1],[-1,-1],[-92,-82],[20,-34],[95,81],[1,0],[15,-26],[0,-2],[-112,-95],[-6,-9],[17,-28],[6,1],[5,3],[3,1],[109,92],[1,-1],[51,-85],[-1,-3],[-119,-100],[21,-36],[119,100],[1,0],[16,-25],[0,-2],[-112,-95],[-3,-5],[-3,-4],[14,-24],[1,1],[4,-5]],[[6290,7350],[-20,-21]],[[6270,7329],[-20,-17],[-4,-3],[-5,-3],[-5,-1],[-21,-5],[-63,-12],[-63,-12],[-33,-6],[-30,-6],[-38,-7],[-7,-1],[-24,-5],[-18,-4],[-44,-8],[-42,-8]],[[6285,6780],[-5,-2],[-40,-47],[-2,-7],[-5,-2],[-41,-47],[-1,-7],[-6,-2],[-13,-15],[-21,-25],[-14,-17],[-64,-75],[-1,-7],[-6,-2],[-2,-3],[-12,-14],[-10,-12],[-7,-13]],[[5997,6815],[-10,75],[-5,35],[-4,36],[-5,32],[-5,38],[-40,43],[-19,19],[-46,49],[-12,12]],[[5851,7154],[-39,40],[-23,25]],[[6270,7329],[-2,-13],[41,-68],[-20,-5],[-65,-12],[-62,-17],[-63,-12],[10,-71],[10,-72],[4,-35],[5,-35],[5,-35],[4,-35],[5,-36],[6,-39],[62,12],[63,12],[12,-88]],[[6574,6897],[-11,5],[-17,-13],[-36,-43],[-34,41],[-50,59],[-6,-1],[-45,-54],[-31,-36],[-1,-7],[-6,-2],[-3,-4],[-2,-7],[-6,-1],[-39,-48],[-2,-6]],[[6290,7350],[2,-4],[15,13],[4,2],[-2,-4],[-17,-15],[28,-45],[2,1],[1,-2],[3,2],[1,0],[1,-1],[47,40],[1,5],[6,5],[4,0],[55,47],[-1,1],[1,4],[-1,3],[3,3],[5,-2],[5,-7],[0,-6],[-3,-3],[-2,2],[-4,0],[0,1],[-55,-47],[-1,-5],[-6,-5],[-4,0],[-26,-22],[-21,-19],[1,-2],[0,-1],[-3,-2],[2,-3],[-3,-2],[4,-7],[2,2],[6,-10],[-2,-1],[29,-47],[6,2],[5,2],[6,3],[91,79],[1,0],[14,-23],[0,-1],[-102,-88],[-2,-6],[4,-6],[6,0],[10,8],[7,-12],[-10,-9],[-1,-7],[1,-2],[9,0],[9,8],[-2,3],[90,80],[1,-1],[14,-22],[0,-1],[-1,-2],[-5,-3],[-21,-19],[-10,-13],[-13,-16],[-37,-33],[1,-1],[-15,-13],[7,-11],[62,55],[-2,3],[21,17],[4,-7],[-21,-17],[-1,2],[-34,-30],[11,-17],[4,3],[6,-9],[-8,-6],[16,-24],[4,3],[6,-11],[-4,-4],[11,-18],[4,3],[10,-17],[-2,-2],[3,-6],[75,52],[21,-34],[-65,-77],[8,-13],[17,15],[16,-24],[-10,-8],[2,-3],[-8,-6],[8,-14],[3,3],[4,-6],[-3,-2],[3,-4],[-17,-15]],[[5576,7334],[-42,-8],[-27,-5],[-18,-3],[-7,50],[-1,4],[-2,21],[-89,-17]],[[5390,7376],[-87,-16]],[[5560,7457],[6,-47],[10,-76]],[[5246,7109],[-1,8],[-5,36],[0,2],[-5,38]],[[5235,7193],[-10,74],[-5,38],[88,17],[-5,38]],[[5390,7376],[5,-37],[6,-38],[10,-75],[3,-24],[6,-50],[2,-11]],[[5422,7141],[-88,-16],[-88,-16]],[[5576,7334],[10,-74],[11,-77]],[[5597,7183],[-7,-5],[-24,-8],[-15,-4],[-9,-3],[-31,-5],[-1,0],[-25,-5],[-33,-6],[-30,-6]],[[5789,7219],[-19,-4],[-39,-7],[-46,-8],[-21,-4],[-37,-7],[-30,-6]],[[5235,7193],[-88,-17],[-44,-9],[-44,-9]],[[5790,7071],[-10,70],[16,4],[55,9]],[[5616,7038],[-4,32],[-1,3]],[[5611,7073],[-4,35],[-5,35],[-5,40]],[[5626,6967],[-19,-4],[-25,-4],[-44,-9],[-16,-3],[-72,-13]],[[5450,6934],[-79,-16],[-9,-1]],[[5362,6917],[-9,70],[12,2],[31,7],[44,8],[-9,71]],[[5431,7075],[30,6],[14,3],[2,0],[17,3],[25,5],[5,-35],[87,16]],[[5250,7077],[88,17],[4,1],[84,16],[5,-36]],[[5577,6657],[-7,52],[-3,25],[-15,-3],[-33,-7],[-40,-7],[-10,74],[-5,36],[-5,35],[-9,72]],[[2129,4619],[7,-152],[7,-150]],[[2143,4317],[-5,-4],[-48,-3],[-4,3],[-3,-3],[-47,-4],[-8,3]],[[2028,4309],[3,9],[-8,133],[-4,8],[3,9],[-6,133],[-4,10]],[[2012,4611],[10,4],[44,3],[6,-3],[7,4],[43,2],[7,-2]],[[1922,4151],[-7,151]],[[1915,4302],[-7,150],[57,3],[-7,152]],[[2028,4309],[5,-9],[9,-131],[-3,-10]],[[2039,4159],[-60,-4],[-35,-2],[-22,-2]],[[1915,4302],[-58,-4],[-57,-4],[-57,-4]],[[1743,4290],[-7,150],[-7,152]],[[1743,4290],[-58,-3],[-57,-4],[-57,-4],[-58,-4]],[[1513,4275],[-7,150],[-7,151]],[[1513,4275],[-57,-4],[-57,-3],[-57,-4],[-58,-4]],[[1284,4260],[-7,150],[-7,151]],[[1008,4549],[1,-9],[6,-139],[5,-8],[-4,-9],[6,-133],[4,-8]],[[1026,4243],[-28,-2],[-57,-4],[-58,-4],[-7,150],[-57,-4],[-57,-4]],[[762,4375],[-58,-3],[-6,151]],[[382,3899],[-59,-4]],[[323,3895],[-11,150],[5,7],[-7,143],[58,4],[-7,150],[57,4],[57,3]],[[475,4356],[7,-149]],[[482,4207],[7,-150],[-57,-4],[-57,-4],[7,-150]],[[1026,4243],[-3,-9],[6,-136],[4,-6]],[[1033,4092],[-28,-1],[-57,-4],[-58,-4],[-57,-4]],[[833,4079],[-57,-3],[-57,-4],[-58,-4]],[[661,4068],[-7,150]],[[654,4218],[57,4],[58,4],[-7,149]],[[1520,4125],[-7,150]],[[1922,4151],[-58,-3],[-57,-4],[-57,-4]],[[1750,4140],[-58,-4],[-57,-4],[-57,-3],[-58,-4]],[[1764,3841],[-7,149],[-7,150]],[[2039,4159],[-4,-9],[6,-132],[5,-9],[-4,-5],[7,-139],[4,-5]],[[2053,3860],[-31,-2],[-30,-2],[-56,-4],[-58,-4],[-57,-4],[-57,-3]],[[854,3629],[-7,150],[-7,150],[-7,150]],[[1033,4092],[-3,-5],[6,-139],[4,-5],[-3,-10],[6,-132],[4,-8]],[[1047,3793],[-4,-5],[7,-135],[4,-10]],[[1054,3643],[-28,-2],[-58,-4],[-57,-4],[-57,-4]],[[739,3622],[-57,-4],[-7,149]],[[675,3767],[-7,151]],[[668,3918],[-7,150]],[[854,3629],[-57,-3],[-58,-4]],[[482,4207],[57,4],[58,3],[57,4]],[[668,3918],[-57,-4],[-57,-4],[-58,-3],[-57,-4],[-57,-4]],[[348,3596],[-13,150],[-12,149]],[[675,3767],[-57,-3],[-57,-3],[-58,-4],[7,-150]],[[510,3607],[-57,-4],[-57,-4],[-48,-3]],[[510,3607],[7,-151],[57,4],[7,-150]],[[581,3310],[-57,-3],[-57,-4],[7,-150],[-58,-4],[-28,-2]],[[388,3147],[-13,150]],[[375,3297],[-14,149],[-13,150]],[[739,3622],[7,-150],[7,-150],[-57,-4],[-57,-4]],[[639,3314],[-58,-4]],[[1082,3043],[-28,-2],[-58,-4],[-57,-4],[-7,150],[-57,-4],[-57,-4]],[[818,3175],[-58,-3],[-57,-4],[-57,-4]],[[646,3164],[-7,150]],[[1054,3643],[-3,-11],[6,-131],[4,-9]],[[1061,3492],[-4,-9],[7,-132],[4,-8],[-3,-9],[6,-133],[4,-8],[-3,-10],[6,-132],[4,-8]],[[415,2848],[-14,149],[-13,150]],[[646,3164],[-58,-4],[7,-150],[7,-149]],[[602,2861],[-57,-4],[-57,-4],[-58,-4],[-15,-1]],[[839,2725],[-58,-4]],[[781,2721],[-57,-4]],[[724,2717],[-7,151],[-57,-4],[-58,-3]],[[818,3175],[7,-150],[7,-149],[7,-151]],[[1082,3043],[-3,-6],[6,-136],[4,-8],[-3,-9],[6,-133],[4,-8]],[[1096,2743],[-28,-2],[-58,-4],[-57,-4],[-57,-4],[-57,-4]],[[853,2426],[7,-151],[4,-91],[0,-17],[-4,-18],[-9,-23],[-9,-20]],[[842,2106],[-2,12],[-44,36],[-23,16],[-22,12],[-10,-4],[-5,11],[-22,8],[-23,6]],[[691,2203],[-3,61],[-7,150],[-7,150]],[[674,2564],[-7,149],[57,4]],[[781,2721],[7,-150],[8,-149],[57,4]],[[1096,2743],[-3,-9],[6,-135],[4,-7],[-3,-5],[6,-136],[4,-8]],[[1110,2443],[-29,-2],[-57,-4],[-57,-4],[-57,-3],[-57,-4]],[[1110,2443],[-3,-8],[6,-136],[4,-6],[-4,-6],[6,-124],[4,-83]],[[1123,2080],[-25,-2],[-109,-7],[-10,-8],[-12,7],[-33,5],[-30,8],[-30,13],[-23,14],[-9,-4]],[[1470,3971],[7,-150],[57,4],[58,4],[57,4],[57,4]],[[1706,3837],[7,-151]],[[1713,3686],[-57,-3],[-57,-4],[-58,-4],[-57,-4],[-57,-4],[-57,-3]],[[1370,3664],[-58,-4],[-7,150],[-57,-4]],[[1248,3806],[-7,150],[57,4],[58,3],[57,4],[57,4]],[[1791,3240],[-57,-4],[-57,-3],[-57,-4],[-58,-4]],[[1562,3225],[-7,150],[-57,-4],[-57,-4],[-57,-3],[-7,150]],[[1377,3514],[-7,150]],[[1713,3686],[57,4]],[[1770,3690],[7,-150],[7,-150],[7,-150]],[[1562,3225],[7,-150]],[[1569,3075],[-57,-4],[-57,-4],[-57,-4]],[[1398,3063],[-58,-3],[-57,-4]],[[1283,3056],[-7,150],[57,4],[-7,150],[-57,-4],[-7,150]],[[1262,3506],[57,4],[58,4]],[[1283,3056],[-58,-4],[-57,-4],[-57,-4],[-29,-1]],[[1061,3492],[29,2],[57,4],[58,4],[57,4]],[[1411,2764],[-7,150],[-6,149]],[[1569,3075],[58,4],[57,3],[7,-149]],[[1691,2933],[7,-150],[-58,-4]],[[1640,2779],[-57,-4],[-57,-4],[-57,-4],[-58,-3]],[[1096,2743],[29,2],[57,3],[57,4],[58,4],[57,4],[57,4]],[[1411,2764],[7,-151],[7,-149]],[[1425,2464],[-57,-4],[-57,-4]],[[1311,2456],[-59,-4],[-56,-3],[-58,-4],[-28,-2]],[[1262,2082],[-9,6],[-40,-2],[-58,-4],[-24,-2]],[[1131,2080],[-8,0]],[[1311,2456],[3,-59]],[[1314,2397],[-6,-8],[-11,-8],[-11,-9],[-16,-25],[-8,-1],[-6,-10],[7,-148],[2,-51],[2,-45],[-4,-8],[-1,-2]],[[2120,2359],[-57,-4],[-58,-4],[-56,-3],[-59,-4],[-57,-4],[-57,-4],[-15,15],[-20,9],[-24,0],[-22,0],[-39,-6],[-17,-16],[-35,-6],[-6,-3],[-18,-16],[-20,-10],[-25,0],[-34,11],[-32,5],[-22,1],[-20,1],[-14,2],[-22,12],[-13,19],[-7,12],[-14,15],[-12,7],[-10,11],[-21,-2]],[[1425,2464],[58,4],[57,3],[57,4],[57,4],[58,4],[57,4],[57,3]],[[1826,2490],[57,4],[58,4]],[[1941,2498],[57,4],[58,4],[58,3]],[[2114,2509],[4,-8],[6,-134],[-4,-8]],[[2120,2359],[-3,-7],[3,-80],[6,-130],[4,-11]],[[2130,2131],[-11,8],[-42,0],[-16,1],[-31,-2],[-6,-7],[-5,7],[-45,-3],[-72,-3],[-5,-8],[-13,6],[-29,-1],[-47,-4],[-19,-1],[-22,-1],[-6,-8],[-5,7],[-13,-1],[-28,-2],[-19,-1],[-24,-2],[-5,-7]],[[1667,2109],[-6,6],[-10,-1],[-34,-2],[-14,-1],[-30,-1],[-13,-1],[-9,-8],[-9,7],[-15,-1],[-46,-3],[-50,-4],[-30,-2],[-11,-8],[-7,7],[-67,-5],[-6,-7],[-6,6],[-31,-2],[-11,-7]],[[1470,3971],[-7,150]],[[1463,4121],[57,4]],[[1764,3841],[-58,-4]],[[1047,3793],[29,2],[57,4],[58,3],[57,4]],[[1033,4092],[29,2],[29,2],[28,2],[58,4],[57,4],[57,4],[58,3],[57,4],[57,4]],[[1026,4243],[29,2],[28,2],[29,2],[58,3],[57,4],[57,4]],[[475,4356],[57,4],[-7,152]],[[1805,2940],[-57,-4],[-57,-3]],[[1791,3240],[58,4],[57,4],[57,4],[58,3],[59,4]],[[2080,3259],[4,-8],[6,-133],[-3,-9]],[[2087,3109],[-60,-4],[-57,-4],[7,-149],[-57,-4],[-115,-8]],[[375,3297],[-22,-13],[-6,-3],[-23,-7],[-44,1]],[[280,3275],[0,9],[0,10],[-1,3],[0,4],[-2,11],[-4,12],[-3,10],[-6,11],[-7,14],[-8,16],[-5,13],[-3,8],[-3,13],[-2,15],[-1,15],[0,16],[1,12],[1,9],[0,9],[-1,10],[-2,8],[-2,9],[-3,5],[-2,3],[0,3],[0,2],[-2,9],[-8,22],[-3,5],[-1,1],[-2,6],[-1,5],[-1,6],[1,31],[1,15],[-4,30],[-2,13],[-6,21],[-4,11],[2,3],[1,4],[-1,3],[-2,6],[0,3],[1,3],[2,2],[1,1],[1,5],[2,0],[-1,10],[1,4],[-1,6],[1,6],[0,12],[-1,1],[0,5],[3,6],[0,6],[-1,10],[-2,7],[-1,3],[-1,5],[-1,3],[0,2],[-2,3],[1,5],[-2,10],[1,2],[-1,3],[-2,5],[-1,8],[-1,3],[-1,10],[-1,5],[-2,7],[0,6],[0,3],[-1,5],[0,8],[-1,7],[-1,7],[0,4],[0,5],[-2,7],[2,2],[-2,3],[0,5],[0,3],[0,5],[0,11],[-1,3],[1,7],[-1,9],[-4,10],[1,9],[-1,4],[-3,30],[-3,17],[-5,46],[-1,30],[0,7],[-4,16],[-1,10],[0,8],[3,44],[2,11],[0,10],[0,11],[-1,11],[-2,10],[-3,10],[-1,5],[-2,3],[-2,3],[-3,14],[-1,3],[-3,3],[0,1],[-5,23],[-2,16],[-4,14],[0,10],[-4,9],[3,13],[1,9],[4,17],[1,5],[2,11],[-4,20],[-1,11]],[[674,2564],[-58,-4],[-57,-4],[-57,-4],[-60,-3],[-14,143],[4,6],[-5,7],[-12,143]],[[691,2203],[-29,3],[-23,0],[-6,-7],[-6,7],[-52,0],[-51,1],[-6,-7],[-6,7],[-41,0],[-20,0],[-11,-8]],[[440,2199],[-97,-5]],[[343,2194],[2,13],[-1,2],[-1,1],[1,3],[0,2],[0,7],[0,3],[0,1],[2,0],[1,2],[-1,4],[1,5],[0,11],[0,4],[0,15],[-2,13],[-1,15],[-5,13],[-3,11],[-1,8],[-2,8],[-1,13],[-1,10],[-2,9],[1,7],[-1,5],[2,7],[0,7],[1,7],[-1,34],[-3,18],[0,8],[-3,17],[-1,7],[-1,9],[1,10],[3,14],[2,12],[1,15],[1,3],[1,2],[-2,3],[0,4],[1,2],[0,3],[-1,4],[1,3],[0,2],[1,3],[0,4],[0,2],[1,3],[-1,6],[-5,11],[1,4],[-3,4],[1,4],[-1,6],[0,6],[-1,2],[-1,1],[-1,3],[0,6],[-1,2],[-2,4],[-1,3],[-1,3],[0,4],[-1,4],[-2,5],[-1,2],[-2,3],[-3,0],[-1,3],[-2,4],[0,4],[1,5],[0,3],[0,2],[1,2],[2,5],[-2,4],[1,4],[0,7],[2,4],[0,2],[0,4],[1,4],[2,5],[0,2],[0,4],[2,2],[0,3],[0,4],[-1,3],[0,4],[1,4],[0,4],[0,4],[-1,6],[-1,2],[-1,3],[0,4],[-1,2],[0,3],[-1,3],[-1,2],[-1,4],[0,2],[1,2],[-1,10],[0,2],[0,4],[-1,2],[-2,2],[0,2],[0,2],[0,3],[-1,3],[-2,8],[0,8],[-2,7],[-1,2],[-1,4],[-1,2],[0,3],[-2,4],[1,2],[0,3],[-2,2],[-1,2],[0,2],[-1,1],[-1,4],[0,3],[-3,6],[0,5],[-1,2],[-2,6],[-1,4],[0,4],[0,2],[-1,2],[0,3],[0,3],[-2,3],[0,4],[2,4],[0,5],[1,2],[0,3],[0,2],[1,4],[0,4],[1,2],[5,5],[2,2],[1,2],[-1,2],[1,6],[0,3],[1,8],[2,10],[2,33],[1,19],[-5,35],[-3,14],[-3,14],[-2,14],[-1,14],[0,7],[-9,28],[-2,10],[-1,10],[-1,10],[1,8],[6,66],[0,4]],[[2067,3560],[-60,-4],[-58,-4],[-57,-4],[-57,-4],[-7,150],[-58,-4]],[[2053,3860],[-4,-5],[7,-137],[4,-9]],[[2060,3709],[-3,-9],[6,-132],[4,-8]],[[2067,3560],[-3,-10],[6,-132],[4,-9],[-3,-9],[6,-132],[3,-9]],[[1941,2498],[-7,150],[-7,150],[-57,-4],[-58,-4],[-7,150]],[[2087,3109],[-2,-9],[6,-132],[3,-9]],[[2094,2959],[-2,-9],[6,-131],[3,-10],[-3,-8],[5,-135],[4,-7],[-4,-7],[7,-134],[4,-9]],[[1640,2779],[7,-151],[58,4],[57,4],[57,4],[7,-150]],[[2247,4626],[7,-152],[7,-149]],[[2261,4325],[-6,-4],[-50,-3],[-4,3],[-5,-4],[-48,-3],[-5,3]],[[2129,4619],[6,-5],[46,4],[6,5],[6,-4],[47,3],[7,4]],[[2422,4638],[7,-152],[7,-150]],[[2436,4336],[-5,-3],[-49,-4],[-4,3],[-3,-3],[-50,-3],[-4,3]],[[2321,4329],[-4,-4],[-52,-3],[-4,3]],[[2247,4626],[6,-3],[47,3],[7,4],[5,-3],[46,3],[6,4],[6,-3],[45,3],[7,4]],[[2536,4645],[7,-151],[7,-150]],[[2550,4344],[-3,-4],[-51,-3],[-3,3],[-4,-4],[-49,-3],[-4,3]],[[2422,4638],[6,-4],[44,3],[7,5],[8,-4],[43,3],[6,4]],[[2786,4209],[-7,150]],[[2779,4359],[57,4],[57,21]],[[2893,4384],[14,-167]],[[2907,4217],[-64,-4],[-57,-4]],[[3264,5062],[9,-77],[10,-75],[10,-74]],[[3293,4836],[10,-76],[6,-45],[3,-21],[3,-9]],[[3315,4685],[-88,-16],[-124,-24],[-15,1],[-16,4],[-16,6]],[[3056,4656],[-10,2],[-32,15],[-14,0],[-6,3],[-6,-4],[-51,-3],[-50,-4],[-8,3]],[[2879,4668],[-5,-4],[-47,-3],[-5,3],[-6,-4],[-47,-4],[-4,4],[-7,-4],[-50,-4]],[[2708,4652],[-52,-3],[-6,4]],[[2650,4653],[-6,-4],[-44,-3],[-7,3],[-6,-4],[-42,-3],[-9,3]],[[3259,5092],[5,-30]],[[4806,6355],[-86,-16]],[[4720,6339],[-11,75],[-89,-17],[-10,74],[-10,77]],[[4826,6211],[-12,8],[-85,-16],[-75,-14],[-5,-9]],[[4649,6180],[-9,67],[-4,37],[-6,38]],[[4630,6322],[90,17]],[[4649,6180],[-6,6],[-51,-10],[-25,-4],[-82,-15],[-8,-8]],[[4477,6149],[-10,3],[-80,-15],[-1,-5],[-3,4],[-41,-7],[-39,-8],[-5,-5]],[[4298,6116],[-9,63],[-10,75]],[[4279,6254],[88,17],[53,10],[38,8]],[[4458,6289],[85,16],[87,17]],[[4458,6289],[-5,4],[-9,62],[1,8],[-6,38],[-5,37]],[[4268,6329],[-4,38],[-6,37]],[[4209,6103],[-8,60],[-88,-17],[-10,75]],[[4298,6116],[-6,3],[-83,-16]],[[4209,6103],[-82,-16],[-5,-6],[-9,4],[-14,-5],[-15,-9],[-20,-12],[-23,-4],[-6,-7],[-9,4],[-81,-16]],[[3847,6095],[-10,75]],[[4298,6116],[11,-86],[10,-75],[10,-75]],[[4329,5880],[-88,-17]],[[4241,5863],[-30,-6],[-58,-11],[-10,74],[-44,-8],[-45,-8],[-89,-17]],[[3325,4610],[-88,-16],[10,-75],[-67,-12],[-17,-7],[-14,-6]],[[3149,4494],[-20,-9],[-13,-5],[-47,-21]],[[3069,4459],[-8,80],[-1,21],[-2,43],[-2,38],[0,15]],[[3315,4685],[10,-75]],[[3620,4138],[-8,-16],[-16,-15],[-21,-8],[-24,-3]],[[3551,4096],[-128,-26],[-24,-12]],[[3399,4058],[-8,59],[-2,13]],[[3389,4130],[-21,162]],[[3368,4292],[73,6]],[[3441,4298],[9,-64],[8,-58],[56,-35],[34,3],[23,2],[49,-8]],[[3441,4298],[78,7],[-9,70],[-7,55],[70,13],[-8,67],[-9,68]],[[3556,4578],[43,8]],[[3599,4586],[3,-27],[14,-44],[17,-123]],[[3633,4392],[9,-71],[2,-5]],[[3644,4316],[14,-31],[6,-24],[-1,-7],[-8,-9],[-15,-38],[-5,-21],[-11,-41],[-4,-7]],[[3368,4292],[-8,55],[-7,54],[-9,67],[-9,67]],[[3335,4535],[72,14],[78,15],[71,14]],[[3666,4753],[22,-161]],[[3688,4592],[7,-51],[-13,-31],[-1,-4],[-22,-35],[-5,-8],[-8,-21],[-13,-50]],[[3599,4586],[-10,75],[-115,-22],[-10,75]],[[3464,4714],[58,11],[56,11]],[[3578,4736],[44,9],[44,8]],[[3335,4535],[-10,75]],[[3315,4685],[88,18],[61,11]],[[3293,4836],[8,0],[82,16],[61,12]],[[3444,4864],[57,11],[57,11],[20,-150]],[[3440,5095],[10,-76],[11,-75]],[[3461,4944],[-27,-5],[10,-75]],[[3264,5062],[6,-3],[82,17],[20,6],[68,13]],[[3880,5178],[-88,-16],[-91,-18],[-85,-16]],[[3616,5128],[-88,-17],[-88,-16]],[[3254,5132],[7,6],[81,15],[10,0],[78,15],[88,17]],[[3518,5185],[88,17],[85,16]],[[3691,5218],[90,17],[89,18]],[[3870,5253],[88,16],[10,-74]],[[3968,5195],[-88,-17]],[[3900,5028],[-70,-13]],[[3830,5015],[-18,-4],[-10,75],[-91,-17]],[[3711,5069],[-85,-17],[-10,76]],[[3880,5178],[10,-75],[10,-75]],[[4410,5279],[-9,67],[-1,9],[-1,8],[-9,67]],[[4390,5430],[87,16]],[[4477,5446],[88,17]],[[4565,5463],[5,-37],[5,-38]],[[4575,5388],[5,-37],[5,-38]],[[4585,5313],[-88,-16]],[[4497,5297],[-81,-16],[-6,-2]],[[4145,5229],[-89,-17]],[[4056,5212],[-88,-17]],[[3870,5253],[-10,75],[88,16]],[[3948,5344],[87,17],[90,18],[-2,-7],[8,-62],[4,-6]],[[4135,5304],[-2,-7],[8,-61],[4,-7]],[[3691,5218],[-10,76],[-10,75]],[[3671,5369],[90,17],[88,17],[88,17]],[[3937,5420],[11,-76]],[[3576,5427],[10,-75],[85,17]],[[3518,5185],[-10,76],[-10,75],[-88,-17]],[[3661,5444],[90,17],[88,17]],[[3839,5478],[88,17]],[[3927,5495],[10,-75]],[[4369,5580],[11,-76],[87,17],[10,-75]],[[4390,5430],[-88,-17],[-88,-17]],[[4214,5396],[-10,75],[-90,-17],[-89,-17],[-88,-17]],[[3927,5495],[62,11],[26,6]],[[4015,5512],[89,17],[90,17],[87,17]],[[4281,5563],[88,17]],[[4369,5580],[88,16],[-6,48],[-4,27]],[[4447,5671],[60,12],[32,6]],[[4539,5689],[-3,-10],[9,-57],[5,-8],[-4,-10],[8,-58],[4,-8]],[[4558,5538],[-3,-7],[3,-26],[3,-4],[1,-15],[3,-23]],[[4369,5580],[-10,75],[-10,75]],[[4349,5730],[88,16],[10,-75]],[[4349,5730],[-10,75],[-10,75]],[[4329,5880],[39,7],[49,9],[34,7],[58,11]],[[4509,5914],[-4,-9],[5,-30],[3,-28],[6,-8]],[[4519,5839],[-2,-10],[7,-57],[5,-8],[-4,-10],[8,-56],[6,-9]],[[4519,5839],[94,18],[72,14],[6,0]],[[4691,5871],[10,-74],[6,-47],[4,-28],[4,-30],[6,-45]],[[4721,5647],[-77,-15],[5,-41],[-6,-37],[-36,-6],[-49,-10]],[[4907,5606],[-10,75],[-5,37],[-5,37],[-10,76],[-5,37],[-5,37]],[[4867,5905],[81,16],[6,1],[88,17]],[[5042,5939],[-3,-9],[4,-28],[4,-30],[6,-8],[-4,-9],[4,-27],[5,-31],[5,-9]],[[5063,5788],[-4,-13],[19,-129],[4,-5]],[[5082,5641],[-10,-4],[-77,-15],[-88,-16]],[[4867,5905],[-176,-34]],[[4691,5871],[-6,43],[-4,33],[-5,37],[-5,38],[-11,75],[-11,83]],[[4826,6211],[10,-80]],[[4836,6131],[10,-76],[5,-37],[5,-37],[11,-76]],[[4477,6149],[-2,-19],[9,-59],[5,-7],[-4,-9],[4,-24],[4,-34],[6,-9],[-3,-10],[7,-57],[6,-7]],[[3069,4459],[-15,-6],[-105,-45],[-56,-24]],[[2893,4384],[-7,132],[-3,76],[-4,76]],[[3389,4130],[-14,-1],[-47,-13],[-33,-9],[-1,-2],[-12,-9],[-24,-21],[-4,1],[-20,0],[-26,-4],[-17,22],[-27,-1],[-45,18],[-11,4],[-5,9],[-3,8],[-2,11],[4,12],[40,41],[3,6],[1,9],[1,10],[-3,10],[-11,9],[-28,18],[-10,6],[-29,-2],[-7,3],[-81,40],[-3,3],[-1,6],[6,14],[4,0],[41,-17],[24,-4],[25,0],[12,5],[12,12],[10,12],[20,27],[9,31],[7,43],[5,57]],[[4836,6131],[75,11],[13,5],[88,17]],[[5012,6164],[5,-8],[5,-28],[3,-30],[-3,-9]],[[5022,6089],[-2,-9],[4,-29],[4,-30],[4,-7],[-3,-9],[4,-29],[4,-29],[5,-8]],[[5003,6278],[4,-30],[-5,-9],[5,-8],[4,-29],[4,-28],[-3,-10]],[[4721,5647],[5,-37],[5,-39]],[[4731,5571],[5,-36],[5,-38],[5,-38],[6,-37]],[[4752,5422],[-89,-17],[-88,-17]],[[4214,5396],[10,-75],[-89,-17]],[[4234,5246],[-89,-17]],[[4410,5279],[-88,-16],[-88,-17]],[[4183,5621],[88,17],[10,-75]],[[4015,5512],[-10,75],[-10,75]],[[3995,5662],[89,17],[-2,-7],[9,-61],[3,-7],[7,1],[82,16]],[[3641,5594],[90,18],[88,16],[10,-75]],[[3829,5553],[10,-75]],[[3829,5553],[88,17],[-10,75],[88,17]],[[3986,5736],[9,-74]],[[2708,4652],[3,-72],[57,4],[4,-75],[7,-150]],[[2786,4209],[-58,-4]],[[2728,4205],[-57,-4]],[[2671,4201],[-7,150],[-7,150],[-7,152]],[[2671,4201],[-57,-3]],[[2614,4198],[-7,150],[-4,-4],[-49,-3],[-4,3]],[[4241,5863],[10,-75]],[[4251,5788],[-88,-17],[-44,-8],[-45,-9],[-88,-18]],[[4251,5788],[5,-36],[5,-39],[-88,-17],[10,-75]],[[3461,4944],[30,6],[57,11],[88,17],[85,16]],[[3721,4994],[9,-70],[4,-5],[-44,-8],[-44,-8],[20,-150]],[[3830,5015],[2,-23],[6,-17],[7,-12],[14,-13],[6,2],[8,0],[6,-7],[-1,-9],[-40,-36],[-11,-8],[-27,-113],[-46,-9],[-44,-8],[-44,-9]],[[3721,4994],[-10,75]],[[4086,4987],[-39,-8]],[[4047,4979],[-11,31],[-12,11],[-31,14],[-5,10],[-88,-17]],[[4056,5212],[10,-75],[10,-75],[10,-75]],[[4234,5246],[10,-74]],[[4244,5172],[-89,-18],[-2,-6],[9,-64],[3,-5],[-2,-7],[8,-62],[4,-5]],[[4175,5005],[-51,-11],[-38,-7]],[[4440,5055],[-44,-9],[-44,-8]],[[4352,5038],[-10,75],[-10,75],[-88,-16]],[[4410,5279],[10,-74],[10,-75],[5,-38],[5,-37]],[[4352,5038],[-46,-9],[-42,-8],[-89,-16]],[[4538,4997],[-88,-17]],[[4450,4980],[-5,37],[-5,38]],[[4497,5297],[11,-75],[10,-75],[4,-38],[6,-37]],[[4528,5072],[5,-38],[5,-37]],[[4585,5313],[88,17]],[[4673,5330],[5,-37],[5,-38]],[[4683,5255],[-88,-17],[6,-39],[5,-36],[5,-37],[5,-38],[-88,-16]],[[4683,5255],[88,17],[5,-38],[5,-37]],[[4781,5197],[-88,-17],[5,-37],[5,-38],[11,-75],[-88,-17],[-43,-8],[-45,-8]],[[4959,5211],[-2,20],[-68,-13],[-20,-4],[-5,37],[-5,38],[-4,37],[-4,26],[-2,12]],[[4849,5364],[88,17],[-5,37],[-5,38]],[[4927,5456],[88,17],[87,16]],[[5102,5489],[-3,-8],[4,-30],[5,-38],[3,-15],[5,-7]],[[5116,5391],[-6,-1],[-46,-56],[-1,-6],[-8,-4],[-15,-18],[-1,-7],[-6,0],[-15,-18],[-44,-53],[-2,-7],[-6,-1],[-7,-9]],[[4959,5211],[-22,-26],[-1,-7],[-6,-1],[-29,-34]],[[4901,5143],[-17,-21],[-1,-7]],[[4883,5115],[-4,23],[-87,-17],[-11,76]],[[4673,5330],[88,17],[83,16],[5,1]],[[4752,5422],[87,17],[88,17]],[[4731,5571],[88,18],[88,17]],[[5082,5641],[-2,-11],[4,-31],[3,-28],[5,-7],[-3,-8],[8,-60],[5,-7]],[[5276,6214],[-4,28],[-6,47],[-10,75]],[[5354,6306],[5,-39],[5,-36]],[[5364,6231],[-22,-4],[-35,-7],[-31,-6]],[[5296,6064],[-10,75]],[[5286,6139],[-10,75]],[[5364,6231],[3,-20],[2,-19],[5,-36]],[[5374,6156],[4,-33],[6,-42]],[[5384,6081],[-18,-3],[-70,-14]],[[5442,6323],[10,-76],[5,-35],[0,-3],[5,-36]],[[5462,6173],[-7,-2],[-24,-5],[-21,-4],[-10,-2],[-19,-3],[-7,-1]],[[5540,6264],[10,-74]],[[5550,6190],[-38,-7],[-20,-4],[-30,-6]],[[5570,6040],[-88,-17]],[[5482,6023],[-10,75]],[[5472,6098],[-6,42],[-4,33]],[[5550,6190],[10,-75],[5,-36],[5,-39]],[[5404,5931],[-10,75],[-10,75]],[[5384,6081],[57,11],[31,6]],[[5482,6023],[10,-75],[-88,-17]],[[5022,6089],[88,17],[5,-37],[5,-38]],[[5120,6031],[3,-25],[7,-50],[5,-37],[5,-38],[5,-37]],[[5145,5844],[-83,-16],[5,-29],[-4,-11]],[[6659,5537],[9,-19],[8,3],[12,-21],[2,0],[0,7],[114,10],[3,3],[4,0],[3,-2],[3,-2],[3,-3],[3,-4],[1,-5],[0,-5],[0,-14],[11,1],[1,-18],[98,17]],[[6934,5485],[12,2],[1,-1],[1,-1],[-2,-3],[10,-71],[-2,0],[0,-5],[-113,-20],[3,-61],[274,23],[19,-217],[-174,116],[-4,1],[-4,1],[-102,-9],[10,-35],[0,-1],[-1,-2],[-7,-2],[2,-5],[0,-6],[0,-4],[2,-9],[-1,-1],[-2,-2],[1,-6],[2,1],[3,-12],[2,-11],[1,-11],[5,-1],[-1,-21],[3,0],[-1,-3],[3,-1],[0,-3],[1,0],[0,-2],[-1,0],[-1,-9],[6,0],[-1,-4],[2,-1],[2,0],[3,-4],[2,-1],[1,-1],[1,-2],[-3,-2],[3,-7],[2,2],[2,-1],[-1,-1],[7,-15],[-1,-14],[4,-11],[2,-1],[1,1],[0,1],[0,45],[9,73],[4,-1],[-7,-57],[9,-1],[2,8],[7,10],[3,-1],[-21,-70],[-2,-11],[0,-3],[8,3],[129,-74],[-12,-31],[-117,69],[4,-16],[1,-12],[24,-79],[7,2],[6,-18],[-12,-6],[0,-4],[-2,-3],[2,-5],[-4,-2],[2,-5],[-7,-4],[1,-12],[24,2],[4,-8],[40,4],[2,-30],[74,7],[1,-12],[-131,-12],[1,-24]],[[6954,4755],[-51,1],[-6,-18],[-36,-109],[-53,-96],[-17,-8],[-50,-5],[-53,-5],[-52,-4],[-51,-5],[-38,-4],[-7,0],[-5,-1],[-2,0],[-13,-1]],[[6520,4500],[-19,73],[-28,51]],[[6473,4624],[-17,31],[-22,30],[-13,15],[-50,60],[-40,49]],[[6331,4809],[-16,19],[-22,35],[-7,11],[-4,7],[-15,47],[-10,32],[-8,39],[-1,13],[0,5],[-1,19],[-1,22],[8,9],[8,8],[4,21],[12,5],[17,20],[120,140],[116,136],[5,6],[123,134]],[[6702,5770],[-10,1],[-47,-57],[-26,-27],[-35,-47],[-2,-9],[-10,-2],[-108,-130],[0,-12]],[[6464,5487],[-27,32],[-23,28]],[[6414,5547],[-41,49],[-42,51],[65,78],[25,29],[29,35],[37,44],[23,26],[30,37],[29,34]],[[6569,5930],[83,-100],[50,-60]],[[6209,5195],[7,9],[5,6],[43,46],[81,89],[0,13],[108,128],[11,1]],[[6702,5770],[38,-45]],[[6740,5725],[-120,-140]],[[6620,5585],[-119,-142],[-119,-142],[-119,-141],[-6,-7],[-1,-2],[-8,-8],[-10,-12],[-2,9],[-18,45],[-9,10]],[[5196,4962],[-8,-3],[-12,2],[-100,25],[-9,2],[-10,-2],[-6,1],[-23,3],[-17,3],[-22,8],[-6,3],[-28,18],[-10,13]],[[4945,5035],[-13,17],[-14,25],[-8,26],[-7,20],[-1,10],[-1,10]],[[5116,5391],[-1,-16],[14,-68],[15,-74],[6,-10],[1,-26],[7,-33],[6,-8],[-2,-10],[19,-98],[2,-9],[5,-12],[6,-15],[10,-2]],[[5204,5010],[-5,-4],[-3,-17],[-1,-14],[0,-5],[1,-4],[0,-4]],[[5116,5391],[5,11],[24,29],[58,68],[7,4],[1,6],[32,38],[26,31],[5,2]],[[5274,5580],[2,6],[13,16],[63,75],[5,1]],[[5357,5678],[32,-38],[53,-63],[29,-35],[24,-29]],[[5495,5513],[30,-35]],[[5525,5478],[-83,-99],[-23,-27],[-10,-12],[-9,-11],[-23,-27],[-64,-75],[-39,-52],[-4,-5],[-28,-54],[-4,-7],[-22,-60],[-12,-39]],[[5357,5678],[1,6],[73,86],[40,48],[5,2],[1,6],[28,32],[15,18],[13,16],[57,67],[5,2]],[[5595,5961],[12,-14],[20,-24]],[[5627,5923],[-6,-6],[-114,-135],[24,-29],[30,-35],[28,-34]],[[5589,5684],[25,-30],[-119,-141]],[[6209,5195],[-15,-17],[-65,-77],[-15,-18],[-12,-14]],[[6102,5069],[-45,54]],[[6057,5123],[-83,99],[-83,99],[-7,10],[-30,35],[-13,16]],[[5841,5382],[3,7],[32,49],[43,55],[5,4],[34,29],[30,25],[4,3],[37,28],[12,9],[25,20],[27,21],[7,8]],[[6100,5640],[1,-1],[28,-35],[29,-34],[54,-65],[42,-50],[41,-49],[119,141]],[[6688,6072],[-31,-37],[-47,-56],[64,-76],[19,-23],[20,23],[11,11],[10,5],[12,7],[23,0],[2,0],[10,-8],[-2,-24],[-5,-25],[-6,-19],[-2,-7],[20,-63],[-46,-55]],[[6569,5930],[-29,34],[-12,15],[-22,-26],[2,-6],[-1,-6],[-1,-7],[-30,-34],[-29,-35],[-5,-2],[-6,-1],[-5,2],[-22,-26],[-24,29],[-17,21]],[[6368,5888],[59,70],[60,71],[41,50],[13,14],[26,27]],[[6567,6120],[4,-3],[23,-28],[40,47],[15,-18],[39,-46]],[[6331,4809],[-7,-7],[-41,49],[-40,49],[-47,56],[-6,7],[-46,55],[-42,51]],[[6620,5585],[37,-44],[2,-4]],[[6807,6009],[5,-2],[6,-1],[143,12],[1,-1],[1,-12],[1,-19],[0,-1],[-2,0],[-152,-15],[-12,-5],[2,-39],[118,11],[1,-1],[1,-11],[31,2],[2,1],[2,-2],[-2,-3],[-1,1],[-32,-2],[1,-12],[-1,-1],[-1,-1],[-112,-10],[2,-39],[6,1],[-1,10],[2,0],[1,-10],[5,0],[-1,11],[2,0],[1,-11],[5,1],[-1,10],[2,1],[1,-11],[5,0],[0,11],[1,0],[1,-10],[5,0],[0,11],[1,0],[1,-11],[5,1],[-1,10],[2,0],[1,-10],[5,0],[0,11],[1,0],[1,-11],[5,1],[0,11],[1,0],[1,-11],[5,0],[0,11],[2,0],[0,-10],[5,0],[0,11],[1,0],[1,-11],[5,1],[0,10],[2,0],[0,-10],[5,0],[0,11],[1,0],[1,-11],[6,1],[-1,11],[2,0],[1,-11],[4,1],[0,10],[2,0],[0,-10],[6,0],[-1,11],[2,0],[1,-11],[5,1],[-1,10],[2,0],[1,-10],[5,0],[-1,11],[2,0],[1,-10],[5,0],[-1,11],[2,0],[1,-11],[5,1],[-1,10],[3,0],[0,-10],[5,0],[0,11],[1,0],[1,-11],[5,1],[-1,10],[2,0],[1,-22],[-1,0],[-1,10],[-5,0],[1,-10],[-2,0],[-1,10],[-5,-1],[1,-10],[-2,0],[-1,10],[-5,0],[1,-11],[-2,0],[-1,10],[-5,0],[0,-10],[-1,0],[-1,10],[-5,-1],[0,-10],[-1,0],[-1,10],[-5,0],[0,-10],[-2,0],[0,10],[-6,-1],[1,-10],[-2,0],[-1,10],[-4,0],[0,-11],[-1,0],[-1,10],[-6,0],[1,-10],[-2,0],[-1,10],[-4,-1],[0,-10],[-2,0],[0,10],[-6,0],[1,-10],[-2,-1],[-1,10],[-5,0],[1,-10],[-2,0],[-1,10],[-5,0],[1,-11],[-2,0],[-1,10],[-5,0],[1,-10],[-2,0],[-1,10],[-5,-1],[0,-10],[-1,0],[-1,10],[-5,0],[1,-10],[-2,-1],[-1,11],[-5,-1],[1,-10],[-2,0],[-1,10],[-5,-1],[0,-10],[-1,0],[-1,10],[-5,0],[0,-10],[-1,0],[-1,10],[-5,-1],[0,-10],[-1,0],[-1,10],[-6,0],[2,-35],[1,-2],[5,0],[-1,9],[2,0],[1,-9],[4,1],[-1,9],[2,0],[0,-9],[5,0],[0,9],[1,0],[1,-9],[5,1],[0,9],[1,0],[1,-9],[4,0],[0,9],[1,0],[1,-9],[4,1],[0,9],[1,0],[1,-9],[4,0],[0,9],[2,0],[0,-8],[5,0],[-1,9],[2,0],[1,-9],[4,1],[0,9],[1,0],[1,-9],[4,0],[0,9],[1,0],[1,-9],[5,1],[-1,9],[2,0],[0,-9],[5,0],[0,9],[1,0],[1,-9],[5,1],[-1,9],[2,0],[0,-9],[5,0],[0,9],[1,1],[1,-10],[4,1],[0,9],[1,0],[1,-9],[4,0],[0,10],[2,0],[0,-9],[5,0],[-1,9],[2,0],[0,-9],[5,1],[0,9],[1,0],[1,-9],[5,0],[-1,9],[2,0],[0,-9],[5,1],[0,9],[1,0],[1,-9],[4,0],[0,9],[1,0],[1,-9],[4,1],[0,9],[2,0],[0,-9],[4,0],[0,9],[2,1],[1,-19],[-2,0],[0,8],[-5,-1],[1,-8],[-2,0],[-1,8],[-4,0],[0,-8],[-1,0],[-1,8],[-4,-1],[0,-8],[-1,0],[-1,8],[-4,0],[0,-8],[-2,-1],[0,8],[-5,0],[0,-8],[-1,0],[-1,8],[-4,-1],[0,-8],[-2,0],[0,8],[-5,0],[1,-8],[-2,0],[0,8],[-5,-1],[1,-8],[-2,0],[-1,8],[-4,0],[0,-8],[-1,0],[-1,8],[-5,-1],[1,-8],[-2,0],[0,8],[-5,0],[0,-8],[-1,0],[-1,8],[-5,-1],[1,-8],[-2,0],[0,8],[-5,0],[1,-9],[-2,0],[-1,8],[-4,0],[0,-8],[-1,0],[-1,8],[-4,0],[0,-9],[-2,0],[0,8],[-5,0],[1,-8],[-2,0],[-1,8],[-4,-1],[0,-8],[-1,0],[-1,8],[-4,0],[1,-8],[-2,0],[-1,8],[-4,-1],[0,-8],[-1,0],[-1,8],[-5,0],[1,-9],[-2,0],[-1,9],[-4,-1],[0,-8],[-2,0],[0,8],[-4,0],[0,-9],[-2,0],[0,8],[-5,0],[0,-2],[1,-28],[1,-4],[5,1],[0,9],[1,0],[1,-9],[4,0],[-1,9],[2,0],[1,-9],[4,1],[0,9],[2,0],[0,-9],[5,0],[0,10],[1,0],[1,-9],[4,0],[0,9],[2,0],[0,-9],[4,1],[0,9],[2,0],[0,-9],[5,0],[-1,9],[2,0],[0,-9],[5,1],[-1,9],[2,0],[1,-9],[4,0],[0,9],[2,0],[0,-9],[4,1],[0,9],[2,0],[0,-9],[5,0],[-1,9],[2,0],[1,-9],[4,1],[0,9],[2,0],[0,-9],[5,0],[-1,9],[2,0],[1,-9],[4,1],[0,9],[2,0],[0,-9],[4,0],[0,9],[2,1],[0,-10],[5,1],[-1,9],[2,0],[1,-9],[4,0],[-1,9],[2,1],[1,-9],[4,0],[0,9],[2,0],[0,-9],[5,1],[-1,9],[2,0],[1,-9],[4,0],[0,9],[2,0],[0,-9],[4,1],[0,9],[2,0],[0,-9],[5,0],[-1,9],[2,0],[0,-9],[5,1],[-1,9],[2,0],[1,-19],[-2,0],[0,8],[-4,0],[0,-9],[-2,0],[0,8],[-5,0],[0,-8],[-1,0],[-1,8],[-4,-1],[0,-8],[-1,0],[-1,8],[-4,0],[0,-8],[-2,0],[0,8],[-5,-1],[1,-8],[-2,0],[-1,8],[-4,0],[0,-8],[-2,0],[0,8],[-4,-1],[0,-8],[-2,0],[0,8],[-5,0],[1,-8],[-2,0],[0,8],[-5,-1],[1,-8],[-2,0],[-1,8],[-4,0],[0,-8],[-2,0],[0,8],[-5,-1],[1,-8],[-2,0],[-1,8],[-4,0],[0,-8],[-2,0],[0,8],[-5,-1],[1,-8],[-2,0],[0,8],[-5,0],[0,-9],[-1,0],[-1,9],[-4,-1],[0,-8],[-2,0],[0,8],[-4,0],[0,-9],[-2,0],[0,8],[-5,0],[1,-8],[-2,0],[-1,8],[-4,0],[1,-9],[-2,0],[-1,8],[-4,0],[0,-8],[-1,0],[-1,8],[-5,0],[1,-9],[-2,0],[-1,8],[-4,0],[0,-8],[-2,0],[0,8],[-4,-1],[0,-8],[-2,0],[0,8],[-5,0],[0,-3],[1,-24],[1,-3],[4,0],[0,7],[1,0],[1,-7],[4,1],[-1,7],[2,0],[0,-7],[4,0],[0,7],[1,0],[1,-7],[4,1],[-1,7],[2,0],[1,-7],[3,0],[0,7],[1,0],[1,-7],[3,1],[0,7],[2,0],[0,-7],[4,0],[0,7],[1,0],[1,-7],[4,1],[-1,7],[2,0],[0,-7],[4,0],[0,7],[1,0],[1,-7],[4,1],[-1,7],[2,0],[0,-7],[4,0],[-1,7],[2,0],[1,-7],[4,0],[-1,8],[2,0],[1,-7],[3,0],[-1,7],[2,0],[1,-7],[3,0],[0,8],[1,0],[1,-7],[4,0],[-1,7],[2,0],[1,-7],[3,0],[0,8],[1,0],[1,-8],[4,1],[-1,7],[2,0],[0,-7],[4,0],[0,7],[2,1],[0,-8],[4,1],[0,7],[1,0],[1,-7],[4,0],[-1,7],[2,1],[0,-8],[4,1],[0,7],[1,0],[1,-7],[3,0],[0,7],[1,1],[1,-8],[4,1],[0,7],[1,0],[1,-7],[3,0],[0,7],[1,0],[1,-7],[4,1],[-1,7],[2,0],[1,-7],[3,0],[0,7],[2,0],[1,-16],[-2,0],[-1,7],[-3,0],[0,-8],[-2,0],[0,8],[-4,-1],[0,-7],[-1,0],[-1,7],[-3,0],[0,-8],[-2,0],[0,8],[-4,0],[0,-8],[-1,0],[-1,7],[-3,0],[0,-7],[-1,-1],[-1,8],[-3,0],[0,-8],[-2,0],[0,7],[-4,0],[0,-7],[-1,-1],[-1,8],[-4,0],[1,-8],[-2,0],[-1,8],[-3,-1],[0,-8],[-2,0],[0,8],[-4,0],[0,-8],[-1,0],[-1,8],[-3,-1],[0,-7],[-2,0],[0,7],[-4,0],[1,-8],[-2,0],[-1,8],[-3,-1],[0,-7],[-2,0],[0,7],[-3,0],[0,-8],[-2,0],[0,8],[-4,-1],[0,-7],[-1,0],[-1,7],[-3,0],[0,-8],[-2,0],[0,8],[-4,-1],[0,-7],[-1,0],[-1,7],[-4,0],[1,-8],[-2,0],[0,8],[-4,-1],[0,-7],[-1,0],[-1,7],[-4,0],[1,-8],[-2,0],[-1,8],[-3,-1],[0,-7],[-1,0],[-1,7],[-3,0],[0,-8],[-1,0],[-1,8],[-4,0],[0,-7],[-1,-1],[-1,7],[-4,0],[1,-7],[-2,0],[0,7],[-4,0],[0,-7],[-1,-1],[-1,7],[-4,0],[0,-3],[1,-22],[1,-3],[4,1],[0,6],[1,0],[1,-6],[4,0],[0,7],[1,0],[1,-7],[3,1],[0,7],[2,0],[0,-7],[4,0],[0,8],[1,0],[1,-8],[3,0],[0,8],[1,0],[1,-7],[3,0],[0,8],[2,0],[0,-8],[4,0],[0,8],[1,0],[1,-7],[3,0],[0,7],[2,1],[0,-8],[4,0],[0,8],[1,0],[1,-7],[3,0],[0,8],[2,0],[0,-8],[4,0],[0,8],[1,0],[1,-8],[4,1],[-1,8],[2,0],[0,-8],[4,0],[0,8],[1,0],[1,-8],[3,1],[0,7],[2,0],[0,-7],[4,0],[-1,8],[2,0],[0,-8],[4,1],[0,7],[2,1],[0,-8],[4,0],[0,8],[1,0],[1,-8],[3,1],[0,7],[2,0],[0,-7],[4,0],[0,8],[1,0],[1,-8],[3,1],[0,7],[2,0],[0,-7],[4,0],[0,8],[1,0],[1,-8],[3,1],[0,7],[1,0],[1,-7],[4,0],[-1,8],[2,0],[0,-8],[4,0],[0,8],[1,0],[1,-7],[4,0],[-1,8],[2,0],[0,-8],[4,1],[0,7],[2,0],[1,-16],[-2,-1],[-1,8],[-3,0],[0,-8],[-2,0],[0,7],[-4,0],[0,-7],[-1,-1],[-1,8],[-4,0],[1,-8],[-2,0],[0,7],[-4,0],[0,-7],[-1,0],[-1,7],[-3,0],[0,-8],[-1,0],[-1,8],[-4,-1],[0,-7],[-1,0],[-1,7],[-3,0],[0,-8],[-2,0],[0,8],[-4,-1],[0,-7],[-1,0],[-1,7],[-3,0],[0,-8],[-2,0],[0,8],[-4,-1],[1,-7],[-2,0],[-1,7],[-3,0],[0,-8],[-2,0],[0,8],[-4,-1],[0,-7],[-1,0],[-1,7],[-3,0],[0,-8],[-2,0],[0,8],[-4,-1],[1,-7],[-2,0],[0,7],[-4,0],[0,-8],[-2,0],[0,8],[-4,0],[1,-8],[-2,0],[0,7],[-4,0],[0,-8],[-2,0],[0,8],[-4,0],[0,-8],[-1,0],[-1,7],[-3,0],[0,-8],[-1,0],[-1,8],[-4,0],[1,-8],[-2,0],[0,7],[-4,0],[0,-8],[-2,0],[0,8],[-3,0],[0,-8],[-2,0],[0,7],[-4,0],[0,-7],[-1,0],[-1,7],[-3,0],[0,-7],[-2,0],[0,7],[-4,-1],[0,-6],[-2,0],[0,6],[-4,0],[0,-3],[1,-22],[1,-2],[3,0],[0,6],[2,0],[0,-6],[4,0],[0,6],[1,0],[0,-5],[4,0],[0,6],[1,0],[1,-6],[3,0],[0,7],[1,0],[1,-7],[3,1],[0,6],[1,0],[1,-6],[3,0],[0,7],[1,0],[1,-7],[3,1],[0,6],[2,0],[0,-6],[4,0],[-1,6],[2,0],[0,-6],[3,0],[0,7],[2,0],[0,-6],[4,0],[0,6],[1,0],[1,-6],[3,0],[-1,7],[2,0],[1,-6],[3,0],[0,6],[1,0],[1,-6],[3,0],[0,7],[1,0],[1,-7],[3,1],[0,6],[1,0],[1,-6],[4,0],[0,7],[1,0],[1,-7],[3,1],[0,6],[1,0],[1,-6],[3,0],[0,6],[1,1],[1,-7],[3,0],[0,7],[1,0],[1,-6],[3,0],[0,6],[2,0],[0,-6],[4,0],[-1,7],[2,0],[0,-6],[4,0],[0,6],[1,0],[0,-6],[4,0],[0,7],[1,0],[1,-7],[3,1],[0,6],[1,0],[1,-6],[3,0],[0,7],[2,0],[0,-7],[3,1],[0,6],[2,0],[0,-6],[3,0],[0,6],[2,0],[0,-6],[4,1],[-1,6],[2,0],[1,-15],[-2,0],[0,7],[-4,0],[0,-7],[-1,0],[-1,6],[-3,0],[0,-7],[-1,0],[-1,7],[-3,0],[0,-7],[-1,0],[-1,7],[-3,-1],[0,-6],[-2,0],[0,6],[-3,0],[0,-7],[-1,0],[-1,7],[-3,-1],[0,-6],[-2,0],[0,6],[-4,0],[1,-7],[-2,0],[0,7],[-4,0],[0,-7],[-1,0],[-1,6],[-3,0],[0,-7],[-1,0],[-1,7],[-3,0],[0,-7],[-1,0],[-1,7],[-3,-1],[0,-7],[-1,0],[-1,7],[-3,0],[0,-7],[-1,0],[-1,7],[-4,-1],[0,-6],[-1,0],[-1,6],[-3,0],[0,-7],[-1,0],[-1,7],[-3,-1],[0,-6],[-1,0],[-1,6],[-3,0],[0,-7],[-2,0],[0,7],[-3,0],[0,-7],[-2,0],[0,6],[-4,0],[1,-7],[-2,0],[-1,7],[-2,0],[0,-7],[-2,0],[0,7],[-4,-1],[1,-7],[-2,0],[0,7],[-4,0],[0,-7],[-1,0],[-1,7],[-3,-1],[0,-6],[-1,-1],[-1,7],[-3,0],[0,-7],[-1,0],[-1,7],[-3,-1],[0,-6],[-2,0],[0,6],[-3,0],[0,-6],[-2,0],[0,6],[-4,0],[1,-6],[-2,-1],[0,6],[-4,0],[-1,-3],[2,-20],[0,-2],[4,1],[0,5],[1,0],[1,-5],[3,0],[0,6],[2,0],[0,-6],[3,0],[0,7],[2,0],[0,-6],[4,0],[-1,7],[2,0],[0,-7],[4,0],[0,7],[1,0],[0,-6],[4,0],[0,6],[1,1],[1,-7],[3,0],[0,7],[1,0],[1,-7],[3,1],[0,6],[1,0],[1,-6],[4,0],[-1,7],[2,0],[0,-7],[3,1],[0,6],[2,0],[0,-6],[4,0],[0,7],[1,0],[1,-7],[3,1],[0,6],[1,0],[1,-6],[3,0],[0,7],[1,0],[1,-7],[3,0],[0,7],[2,0],[0,-6],[3,0],[0,6],[2,1],[0,-7],[4,0],[-1,7],[2,0],[0,-6],[4,0],[-1,6],[2,0],[0,-6],[4,0],[0,7],[1,0],[1,-7],[3,1],[0,6],[1,0],[1,-6],[3,0],[0,7],[1,0],[1,-7],[3,1],[0,6],[2,0],[0,-6],[3,0],[0,7],[2,0],[0,-7],[4,1],[0,6],[1,0],[1,-14],[-2,0],[0,6],[-4,0],[1,-7],[-2,0],[0,6],[-4,0],[0,-6],[-1,0],[-1,6],[-3,0],[0,-7],[-1,0],[-1,7],[-3,-1],[0,-6],[-2,0],[0,6],[-3,0],[0,-7],[-1,0],[-1,7],[-3,-1],[0,-6],[-2,0],[0,6],[-3,0],[0,-7],[-2,0],[0,7],[-4,0],[1,-7],[-2,0],[-1,6],[-3,0],[0,-6],[-1,0],[-1,6],[-3,0],[0,-7],[-1,0],[-1,6],[-3,0],[0,-6],[-1,0],[-1,6],[-3,0],[0,-7],[-1,0],[-1,7],[-4,-1],[1,-6],[-2,0],[0,6],[-4,0],[1,-7],[-2,0],[0,7],[-4,-1],[0,-6],[-1,0],[-1,6],[-3,0],[0,-7],[-1,0],[-1,7],[-3,-1],[0,-6],[-1,0],[-1,6],[-3,0],[0,-6],[-2,-1],[0,7],[-3,0],[0,-7],[-2,0],[0,6],[-4,0],[0,-6],[-1,0],[-1,6],[-3,0],[0,-6],[-1,0],[-1,6],[-3,-1],[0,-5],[-1,0],[-1,5],[-3,0],[-1,-2],[1,-16],[107,9],[3,-2],[-3,-3],[-2,2],[-3,0],[10,-171]],[[6688,6072],[50,-60],[19,-25],[4,-13],[6,-12],[16,17],[24,30]],[[6567,6120],[-5,6],[17,21],[19,32],[5,11],[4,6],[2,10],[1,8],[-5,18],[20,17],[47,66]],[[6672,6315],[27,-33],[46,55],[10,12],[11,4],[32,-1],[7,7],[0,10],[-3,59],[-1,18],[-7,37],[-1,7],[25,51]],[[6818,6541],[4,-10],[107,38],[2,0],[1,-2],[10,-36],[-1,-2],[-1,-1],[-1,-5],[-109,-36],[8,-44],[95,24],[2,-1],[1,-1],[5,-29],[-1,-1],[-1,-1],[-111,-28],[-8,-3],[-1,-39],[20,0],[133,13],[1,-1],[1,-2],[8,-131],[-1,-2],[-1,-1],[-158,-15],[-6,-1],[-6,-3],[-1,-2],[-2,-46],[116,10],[2,-31],[-97,-8],[-13,-3],[-6,-2],[-5,-4],[-2,-42],[76,7],[3,-44],[-70,-7],[-8,-4],[-3,-2],[-1,-31],[8,-3]],[[5714,6103],[-5,-2],[-28,-33],[-13,-16],[-1,-6],[-6,-2],[-7,-8],[-46,-55],[-12,-14],[-1,-6]],[[5595,5961],[-12,6],[-4,6],[-6,41],[-3,26]],[[7642,8648],[49,32]],[[7691,8680],[3,-5],[179,-285],[455,209],[32,-40],[-38,-64],[-85,-97],[16,-80],[0,-24],[-32,-66],[-11,-23],[231,-5],[13,4],[-3,-25],[-42,-136],[-24,-60],[-81,-122],[-73,-82],[-78,-25],[-102,-11],[-70,11],[-84,31],[-37,13],[29,214],[-27,16],[-263,255],[34,43],[26,281],[-17,41]],[[7642,8648],[-3,7],[-391,894],[9,43],[21,95],[17,74],[17,77],[262,161],[240,-97],[70,-88],[2,-53],[12,6],[-1,16],[0,11],[6,1],[8,-27],[9,7],[-3,26],[8,0],[4,-21],[20,9],[-22,71],[10,10],[54,-145],[-22,-8],[-19,45],[-11,-7],[5,-25],[-11,-4],[-6,26],[-13,-9],[4,-22],[-6,-6],[-4,26],[-7,-2],[4,-46],[54,-112],[117,-266],[48,-112],[-6,-44],[60,-34],[7,-4],[-2,-7],[-4,-20],[-64,29],[-10,0],[-8,-35],[11,0],[63,-25],[-5,-19],[-74,27],[-10,-40],[75,-25],[-5,-19],[-83,19],[-6,-29],[-3,0],[7,-60],[-51,-40],[9,-17],[44,36],[1,-8],[-38,-29],[10,-15],[-8,-11],[-33,48],[-204,-133],[-106,-68]],[[5169,6348],[4,-38],[5,-38],[5,-37]],[[5183,6235],[-88,-16],[5,-38],[-88,-17]],[[5286,6139],[-87,-17],[-6,38],[-5,37],[-5,38]],[[5296,6064],[-88,-16],[-28,-6],[-21,-4],[-39,-7]],[[5274,5580],[-6,18],[-9,76],[-10,74],[-10,71]],[[5239,5819],[8,5],[36,7],[44,8]],[[5327,5839],[44,9],[43,8],[-10,75]],[[5327,5839],[-11,76],[-10,74],[-8,60],[-2,15]],[[5239,5819],[-88,-17],[-6,42]],[[6574,6897],[21,-27],[-7,-8],[47,-59]],[[6635,6803],[-4,-15],[-10,-6],[12,-1],[7,-11],[6,-15],[4,-11],[10,-32],[11,-28],[8,-15],[0,-17],[-15,-17],[-36,-43],[-47,-57],[-47,-55],[59,-71],[24,-28]],[[6617,6381],[-47,-55],[-47,-56],[-27,32],[-26,31],[-30,36],[-42,-50],[-20,-24],[-6,-7],[-3,-4],[-48,-57]],[[6321,6227],[-28,34],[-25,30],[-29,36],[-29,34],[-5,-7],[-33,-39],[-25,31],[-29,35],[-16,20]],[[6102,6401],[-12,15],[-25,31],[-30,36]],[[6368,5888],[-29,34],[-4,6]],[[6335,5928],[16,20],[43,70],[35,40],[17,20],[-1,1],[-7,8],[-34,41]],[[6404,6128],[-39,47],[-44,52]],[[6617,6381],[54,-65],[1,-1]],[[6100,5640],[29,36],[87,106],[1,2]],[[6217,5784],[29,35],[10,12],[79,97]],[[5809,5421],[10,-13],[3,-3],[14,-17],[5,-6]],[[6057,5123],[-119,-141],[-11,-7],[-16,-18],[-32,-3],[-12,-1],[-11,-1],[-9,-1],[-14,-1],[-5,0],[-15,-16],[-10,-8],[-17,-5],[-9,0],[-20,-2],[-11,-1],[-29,-2]],[[5717,4916],[-29,1],[-38,-3],[-15,2],[-65,15],[-4,-1],[-5,0]],[[5561,4930],[-2,1],[-1,2],[-80,95],[34,40],[30,36],[-33,40],[-49,59],[32,38],[33,39],[82,99]],[[5607,5379],[31,37],[29,34],[5,6],[25,29],[6,-6],[12,-15],[65,-77],[25,29],[4,5]],[[5561,4930],[-8,-1],[-114,7],[-9,1],[-5,0],[-55,3],[-44,2],[-9,1],[-4,1],[-9,-1],[-57,6],[-47,8],[-2,4],[-2,1]],[[5525,5478],[29,-35],[24,-29],[29,-35]],[[5525,5478],[31,37],[28,33],[31,37],[28,34],[30,35],[30,36]],[[5703,5690],[83,-99]],[[5786,5591],[-16,-19],[29,-35],[54,-64],[-44,-52]],[[5734,5795],[-60,-70],[-12,14],[-13,15],[-60,-70]],[[5627,5923],[24,-29],[29,-34],[29,-35],[25,-30]],[[5734,5795],[29,-34]],[[5763,5761],[-29,-34],[-31,-37]],[[5910,5868],[-119,-142],[-28,35]],[[5714,6103],[31,-38],[16,-19],[9,-10],[29,-35],[29,-35],[25,-30],[29,-34],[28,-34]],[[6113,5909],[-96,-113],[-24,-28],[-55,-67],[-64,-75],[-29,35],[-28,-34],[-16,-18],[-15,-18]],[[5910,5868],[26,-30],[28,-35],[61,72],[17,20],[41,49]],[[6083,5944],[30,-35]],[[6113,5909],[17,-21],[7,-9],[29,-34],[29,-34],[4,-5],[7,-9],[4,-5],[7,-8]],[[6404,6128],[-29,-34],[-30,-36],[-60,-71],[-30,36],[-52,63]],[[6203,6086],[-29,35],[-23,27],[-31,38],[-28,33],[-9,11],[-17,20],[-29,34],[-29,35],[40,48],[2,-1],[11,-14],[41,49]],[[6083,5944],[42,50],[78,92]],[[6635,6803],[109,-138],[-7,-8],[17,-46],[30,16],[2,-6],[-19,-10],[5,-12],[-2,-1],[4,-11],[1,-1],[8,3],[125,75],[1,0],[1,-1],[3,-10],[-36,-48],[-69,-36],[10,-28]],[[1148,1727],[2,-9],[7,-10],[41,-33],[15,-9],[18,-4],[11,3],[15,3],[23,17],[2,3],[22,35],[1,8],[6,3],[16,25],[12,14],[17,9],[20,3],[17,-5],[116,-54],[9,0]],[[1518,1726],[4,-7],[40,-17],[17,-22],[73,-129],[5,-26],[5,-5]],[[1662,1520],[2,-8],[-3,-20],[-27,-99],[-13,-45],[-18,-64],[-6,-7]],[[1597,1277],[-3,-5],[1,-63],[-2,-21],[1,-344],[3,-4],[-3,-3],[0,-14],[3,-3]],[[1597,820],[-3,-4],[0,-18],[-4,-148],[-4,-114],[3,-8],[10,-6],[170,-8],[78,-3],[5,5],[5,-5],[75,-2],[95,2],[20,-2],[18,-5],[16,-7],[22,-13],[7,1],[3,-8],[66,-52],[31,-19],[40,-21],[7,1],[4,-10],[6,-2],[13,-5],[18,-3],[11,0],[23,1],[-1,9]],[[2331,376],[10,0]],[[2341,376],[1,-9],[2,-22],[3,-39],[0,-103],[1,-68],[1,-58],[0,-45],[0,-22]],[[2349,10],[-4,1],[-13,3],[-8,2],[-3,0],[-12,0],[-4,0],[-495,-8],[-144,8],[-59,0],[-12,-4],[-14,-4],[-11,0],[-3,0],[-3,0],[-19,0],[-34,0],[-369,0],[-224,-8],[-21,0],[-3,0],[-228,0],[-15,0],[-3,0],[-1,17],[-4,14],[-3,20],[-1,16],[-1,12],[-12,43],[-2,32],[-3,22],[-5,24],[-4,23],[4,10],[-5,20],[-4,9],[-3,34],[-17,13],[-3,13],[-4,35],[-1,20],[-4,15],[0,22],[-6,16],[-3,19],[-1,15],[-15,77],[-6,24],[-6,20],[-7,27],[-2,17],[-3,14],[-11,47],[-5,17],[-4,15],[-5,16],[0,19],[-4,22],[-6,22],[-3,19],[2,16],[-5,15],[-5,10],[-5,21],[-1,21],[-1,21],[-2,11],[1,12],[1,6],[1,13],[-1,12],[-3,30],[-5,19],[-4,10],[-6,29],[-6,22],[-60,548],[-2,6],[-3,7],[0,9],[-2,10],[0,15],[-1,9],[-3,10],[-2,12],[-2,8],[-3,9],[-2,1],[0,3],[-1,5],[0,4],[0,8],[0,11],[-1,4],[0,6],[-1,6],[0,7],[0,6],[-1,9],[-2,9],[-1,10],[1,5],[0,5],[-1,6],[1,4],[4,5],[1,3],[2,7],[0,4],[-1,6],[0,3],[2,7],[-1,3],[-1,5],[1,4],[0,4],[-1,7],[-1,5],[0,6],[-2,9],[-1,3],[-2,4],[-2,11],[-1,5],[-2,6],[0,7],[-1,5],[-2,6],[-1,6],[-2,4],[-2,11],[-1,6],[4,6],[2,4],[1,4],[0,4],[-1,6],[1,3],[0,3],[0,4],[2,2],[0,4],[-1,5],[0,8],[0,3],[0,6],[0,4],[-1,3],[-1,5],[3,6],[1,37],[-1,6],[0,2],[-1,5],[1,1],[0,3],[-2,3],[1,3],[0,11],[0,4],[-2,7],[-2,9],[-3,3],[-3,4],[0,1],[-1,3],[0,2],[-1,6],[-2,6],[0,6]],[[440,2199],[3,-12],[0,-18],[-4,-30],[-13,-96],[-3,-34],[2,-27],[4,-33],[-2,-21],[1,-47],[9,-68],[12,-124],[3,-49],[4,-33],[1,-15],[9,-38],[19,-42],[17,-26],[16,-18],[15,-13],[42,-25],[36,-27],[26,-25],[28,111],[40,141],[14,39],[32,65],[83,122],[15,30],[45,-16],[12,-8],[-3,-9],[10,-35],[27,-84],[1,-1],[6,-15],[12,-15],[17,-14],[18,-7],[17,-2],[19,4],[75,27],[43,16]],[[2142,1300],[-3,-97],[-6,-151],[-9,-12]],[[2124,1040],[-12,-9],[-16,-7],[-15,-3],[-3,-3],[-5,3],[-75,4],[-69,3],[-6,-2]],[[1923,1026],[-4,2],[-86,5],[2,73],[-66,4],[-10,-5],[-14,-7],[-10,6],[-4,8],[-46,59],[-13,5],[-4,14],[-62,80],[-9,7]],[[1662,1520],[103,7],[24,18],[6,7]],[[1795,1552],[2,-9],[79,-157],[8,-8],[50,12],[92,-5],[13,-42],[82,-36],[13,-7],[8,0]],[[2607,352],[26,1],[23,-3],[13,-2],[34,-14],[1,0],[31,-26],[34,-34],[7,-9],[22,-12],[4,-8]],[[2802,245],[-1,-30],[0,-2],[0,-17],[-49,-1],[-38,-1],[-10,-1],[-21,-4],[-43,-9],[-35,-12],[-33,-19],[-25,-17],[-26,-25],[-28,-36],[-22,-30],[-11,-14],[-10,-12],[3,-7]],[[2453,8],[-9,0],[-88,0],[-7,2]],[[2341,376],[14,0],[30,1],[18,-3],[37,-11],[34,-10],[12,-2],[23,-3],[44,2],[6,-5],[7,5],[41,2]],[[2293,1504],[5,-11],[-9,-236],[-5,-159],[-5,-13]],[[2279,1085],[4,-9],[-5,-150],[-5,-142],[-2,-46],[-6,-11]],[[2265,727],[-8,24],[-104,170],[-16,27],[-5,31],[-8,11],[8,10],[0,30],[-8,10]],[[2142,1300],[2,49],[2,56],[3,103],[-8,9]],[[2141,1517],[13,-7],[23,-1],[47,-3],[52,-2],[17,0]],[[2319,2138],[7,-9],[-2,-57],[-2,-49],[0,-4],[-4,-85],[0,-18],[-3,-68],[-8,-6]],[[2307,1842],[8,-11],[-5,-21],[-2,-28],[-1,-39],[-3,-72],[-4,-102],[-2,-55],[-5,-10]],[[2141,1517],[9,4],[5,153],[0,4],[-5,110],[-3,51],[-4,6],[4,9],[-4,89],[-5,14]],[[2138,1957],[3,8],[-7,155],[-4,11]],[[2130,2131],[9,-6],[44,2],[47,1],[48,2],[32,1],[9,7]],[[2938,1658],[6,-67],[0,-26],[0,-17],[-2,-30],[0,-8],[-3,-20],[-1,-19],[3,-21],[6,-27],[-5,-3],[-13,-4],[-8,-1],[-32,2],[-16,-64]],[[2873,1353],[-6,-2],[-44,22],[-4,5],[-5,0],[-24,14],[-3,4],[-5,0],[-17,8],[-30,18],[-3,4],[-5,-1],[-13,7],[-2,6]],[[2712,1438],[-5,-2],[-12,7],[-2,5],[-4,0],[-33,18],[-2,4],[-6,1],[-15,9],[-19,15],[-1,6]],[[2613,1501],[32,48],[14,25],[25,53],[36,-8],[23,52],[4,22],[41,-31],[14,-9],[13,-2],[15,2],[11,3],[15,48],[-11,57]],[[2845,1761],[6,-2],[16,1],[23,11],[16,17],[1,6],[7,0],[7,5],[13,9],[16,8],[15,4],[13,2]],[[2978,1822],[3,-14],[-9,-7],[-11,-12],[-12,-21],[-5,-18],[-3,-14],[-3,-15],[-2,-26],[2,-37]],[[2718,1924],[2,-5],[15,-29],[2,-8],[14,-54],[9,-15],[49,-43],[17,-9],[14,-2],[5,2]],[[2613,1501],[-4,0],[-8,8],[-19,22],[-2,6],[-5,2],[-29,35],[0,6],[-5,3],[-9,16],[-9,20],[1,6],[-5,5],[-14,41],[1,6],[1,6],[-4,11],[-4,3],[-6,3],[-13,19],[-2,2],[-1,6],[-4,1],[-13,13],[-19,11],[-3,5],[-5,0],[-34,22],[-2,5],[-5,0],[-79,52],[-6,6]],[[2319,2138],[22,-5],[-5,-8],[-4,-106],[7,-4],[37,-2],[4,4],[5,-3],[37,-2],[5,3],[4,-4],[38,-2],[5,3],[4,-4],[34,-1],[6,3],[5,-4],[35,-2],[5,4],[5,-4],[29,-2],[5,1],[18,3],[11,4],[4,3],[2,-5],[59,-63],[5,-2],[2,-5],[11,-12],[4,-2]],[[4030,1775],[4,-7],[1,-1],[9,-13]],[[4044,1754],[-34,-19],[-2,-1],[-8,-5],[-7,-4],[-37,-23],[-34,-19],[-14,-9],[-31,-21],[-27,-18],[-15,-13],[-6,1],[-18,0]],[[3811,1623],[-2,0],[-31,-4]],[[3778,1619],[0,67],[-1,65],[0,65],[0,29],[0,36],[0,7]],[[3777,1888],[117,1],[5,-3],[5,4],[111,0],[6,-3],[0,-69],[0,-28],[3,-5],[6,-10]],[[4030,1775],[55,30],[19,10],[63,34],[30,17],[17,12],[12,8]],[[4226,1886],[16,2],[11,2]],[[4253,1890],[-6,-7],[-14,-16],[-6,-6],[-17,-8],[3,-4],[8,-9]],[[4221,1840],[-43,-19],[-4,-3],[-2,0],[-32,-14],[-89,-46],[-7,-4]],[[3777,1888],[0,54],[-1,6],[122,1]],[[3898,1949],[122,1],[123,0],[65,1],[44,0],[13,-3],[5,-2],[5,-2],[-25,-16],[-66,-45],[35,2],[7,1]],[[3533,1883],[-6,4],[-111,-1],[-5,-3]],[[3411,1883],[-5,3],[-112,-1],[-4,-3]],[[3290,1882],[-1,63],[0,59],[5,1],[116,0]],[[3410,2005],[122,1]],[[3532,2006],[1,-60],[0,-63]],[[3878,2374],[-1,-16],[-3,-12],[-9,-14],[-47,-42],[-4,-8]],[[3814,2282],[-4,3],[-9,4],[-10,-1],[-8,-4],[-6,-9],[-6,-15],[4,-13],[0,-18],[2,-8],[3,-8],[2,-8],[3,-4],[9,-9],[24,-18],[18,-13],[11,-6],[1,-29],[-73,0],[1,-60],[0,-24],[0,-34],[-122,-1],[-122,-1]],[[3532,2006],[0,60],[-1,37],[0,9],[1,5],[0,42],[-1,67],[1,9],[19,37],[1,1],[-44,24],[-2,53],[-5,54]],[[3501,2404],[7,1],[22,-2],[11,2],[12,3],[18,1]],[[3571,2409],[13,-2],[20,-6],[9,-3],[42,-28],[19,-23],[21,-26],[5,-20],[0,-19],[-4,-12],[-7,-11],[-8,-8],[-9,-10],[-6,-18],[-2,-13],[22,0],[67,164],[125,0]],[[3410,2005],[0,60],[-72,0],[-15,49],[-16,56]],[[3307,2170],[14,5],[52,-4],[8,2],[-2,12],[3,14],[10,17],[1,15],[-5,16],[-17,-12],[-12,-17],[-8,-5],[-16,0],[-16,0],[-1,0],[-11,-2],[-2,-1],[-35,34],[2,6],[0,38],[-3,8]],[[3269,2296],[8,-1],[12,3],[5,4],[7,9],[35,51],[11,13],[11,6],[11,4],[12,1],[5,-3],[9,-1],[30,30],[6,8],[40,-30],[3,3],[11,7],[16,4]],[[3290,1882],[-5,-3],[-5,0],[-57,-2],[-8,-2],[-6,2],[-4,-4],[-26,-4],[-10,-3],[-5,2],[-4,-5],[-21,-5],[-15,-5],[-5,2],[-2,-5],[-36,-12],[-8,1],[-6,-6],[-34,-11],[-14,-2],[-11,0]],[[3008,1820],[-1,7],[3,13],[6,23],[2,27],[-2,32],[-4,42],[-8,34],[-7,28],[-9,26]],[[2988,2052],[16,14],[16,5],[12,1],[26,-10],[14,1],[11,2],[19,23],[8,7],[14,8],[-6,14],[-9,7],[-14,3],[-19,-7],[-8,0],[7,9],[4,8],[10,14],[11,8],[13,6],[17,1],[17,-5],[24,-19],[16,4],[19,10],[11,2],[11,-3],[8,-5],[9,-8],[13,-4],[13,3],[13,9],[11,13],[12,7]],[[3419,2802],[11,-19],[5,-21],[3,-19],[2,-30],[10,-10],[18,-13],[21,-22],[14,-17],[12,-21],[12,-23],[21,-22],[19,-18],[20,-15],[0,-15],[1,-23],[0,-22],[-2,-18],[-5,-24],[-10,-41]],[[3269,2296],[-21,32],[-8,5],[-32,1],[-18,3],[-30,16],[-22,20],[-17,25],[-20,24],[-18,15],[-15,5],[-8,-2],[-50,-7],[-5,0],[-37,14],[-9,-1],[15,38]],[[2974,2484],[4,6],[5,5],[9,3],[7,-2],[17,-10],[13,1],[11,4],[11,13],[5,14],[-1,15],[-3,9],[2,18],[5,9],[39,28],[21,16],[36,25],[16,12],[3,3],[11,11],[12,19],[9,16],[3,8]],[[3209,2707],[7,19],[8,25],[9,19],[13,22],[15,21],[10,10]],[[3271,2823],[6,7],[11,8],[27,-31],[4,-2],[13,-9],[17,-6],[17,-1],[21,3],[25,12],[7,-2]],[[3688,2660],[4,-6],[8,-8],[12,-4],[17,-4],[15,-4],[13,-6],[8,-9],[8,-9],[13,-24],[2,-3],[9,-12],[3,-2],[9,-8],[15,-5],[21,-7],[9,-4],[8,-7],[6,-11],[1,-2],[3,-6],[1,-17],[-7,-54],[1,-20],[2,-11],[7,-30],[2,-13]],[[3419,2802],[34,5],[16,-2],[7,-2],[4,23]],[[3480,2826],[3,0],[12,-16],[12,-11],[11,-8],[17,-6],[18,-4],[59,-7],[15,-3],[14,-5],[10,-6],[7,-7],[6,-6],[2,-3],[3,-5],[3,-9],[1,-4],[3,-12],[2,-27],[3,-14],[2,-7],[5,-6]],[[3271,2823],[-38,40]],[[3233,2863],[11,13],[3,8],[9,4],[6,9],[11,12],[15,15],[4,9],[8,2],[51,45],[6,6],[22,15],[6,8]],[[3385,3009],[2,-9],[54,-97],[0,-10],[36,-66],[3,-1]],[[3209,2707],[-44,24]],[[3165,2731],[9,24],[7,20],[11,25],[-2,9]],[[3190,2809],[9,4],[4,8],[12,18],[18,24]],[[2974,2484],[-37,22],[-13,-11],[-8,0],[-24,5],[-16,-3],[-12,-9],[-7,-15],[-2,-17],[6,-44],[19,-161],[7,-25],[8,-21],[14,-23],[3,-6]],[[2912,2176],[-41,48],[-42,46],[-59,54]],[[2770,2324],[-86,70],[-59,49],[-17,59]],[[2608,2502],[8,1],[12,10],[4,4],[21,15],[5,7]],[[2658,2539],[4,-2],[34,14],[18,4],[7,2],[26,4],[25,5],[15,1],[45,8],[40,6],[9,6],[6,-3],[32,6],[69,10],[8,7],[2,-1],[6,-2],[31,11],[12,7],[26,20],[68,55],[13,16],[11,18]],[[2319,2138],[16,17],[17,24],[57,72],[34,43],[26,33],[18,18],[6,11],[10,3],[33,40],[45,62],[5,9],[18,22],[4,10]],[[2770,2324],[14,-65],[-2,-16],[-9,-14],[-16,-9],[-21,-5],[3,-15],[6,-22],[8,-15],[17,-23],[7,-13],[1,-12],[-5,-45],[1,-12],[5,-13],[10,-14],[2,-11],[-1,-8],[-5,-11],[-10,-8],[-12,-12],[-11,-13],[-34,-44]],[[2114,2509],[56,4],[7,-152],[51,3],[6,3],[57,3]],[[2291,2370],[61,5],[19,1],[50,67],[-10,15],[-5,20],[-2,51]],[[2404,2529],[17,5],[25,18],[20,8],[26,6],[4,-1],[14,-1],[7,-1],[38,-16],[9,-6],[8,-5],[36,-34]],[[2206,2967],[7,-150],[57,3],[7,-149],[7,-150],[7,-151]],[[2094,2959],[55,4],[57,4]],[[2390,2828],[7,-150],[7,-149]],[[2206,2967],[41,2],[39,3],[37,3],[5,13],[5,41],[2,32],[-2,54],[-1,11],[44,2]],[[2376,3128],[1,-9],[6,-140],[7,-151]],[[2390,2828],[58,4],[58,4],[17,2],[48,7],[44,5],[12,1],[57,7],[57,7]],[[2741,2865],[44,-29],[4,-6],[21,-14],[19,-11],[5,1],[-24,-53],[-22,-48],[-23,-48],[-57,37],[-18,-28],[-8,-16],[-9,-19],[-5,-15],[-8,-35],[-3,-18],[1,-24]],[[3190,2809],[-5,9],[-23,24],[-5,2],[-4,7],[-19,20],[-7,16],[-4,3],[-3,2],[-13,-4],[-8,1],[-93,24],[-20,5],[-5,-2],[-19,-22],[-31,37],[-3,4],[-29,35],[-14,-7],[0,12],[-3,8],[-4,7],[-6,8],[-4,5],[-4,9]],[[2864,3012],[109,127],[9,11]],[[2982,3150],[7,-2],[19,-33],[-2,-8],[3,6],[10,3],[30,0],[36,-9],[4,-4],[5,2],[21,-6],[16,-5],[4,-5],[4,2],[21,-7],[16,-6],[4,-5],[5,1],[30,-10],[5,-3],[3,-6],[4,0],[17,-16],[17,-12],[2,-5],[5,2],[9,-2],[15,-1],[61,1],[22,-2],[7,-5],[3,-6]],[[3419,3035],[-31,-16],[-3,-10]],[[2982,3150],[8,1],[16,24],[5,14],[-2,21],[-10,18],[-34,53],[-7,2]],[[2958,3283],[-1,6],[-41,60],[-8,14],[-26,82],[-20,39],[-6,5]],[[2856,3489],[20,15],[26,10],[78,9],[8,1]],[[2988,3524],[0,-10],[43,-17],[60,-74],[133,3],[2,-170],[124,-1],[9,0],[1,-13],[4,-13],[14,-23],[31,-50],[8,-12],[0,-9],[1,-74],[1,-26]],[[2427,3280],[6,-143],[-4,-5],[-53,-4]],[[2080,3259],[55,4],[57,4],[57,4],[30,1],[30,3],[9,-3],[45,3],[8,2]],[[2371,3277],[56,3]],[[2507,4040],[7,-150]],[[2514,3890],[-58,-4],[-57,-4],[-46,-3],[0,22],[-5,19],[-8,14],[-12,11],[-26,16],[-7,8],[-1,-11],[-5,-18],[-11,-24],[-13,-23],[-2,-9],[-1,-7],[-4,-3],[-52,-4]],[[2206,3870],[6,24],[7,25],[-12,60],[-2,41],[-3,79],[0,5],[1,7],[5,5],[5,2],[3,1],[-7,21],[-1,31]],[[2208,4171],[64,4],[56,4]],[[2328,4179],[57,4],[57,3],[58,4]],[[2500,4190],[7,-150]],[[2321,4329],[7,-150]],[[2208,4171],[-58,-4],[-57,-4],[-54,-4]],[[2614,4198],[-57,-4],[-57,-4]],[[2735,4055],[-7,150]],[[2786,4209],[2,-58],[-24,-20],[-7,-21],[-1,-17],[7,-24],[2,-12],[-30,-2]],[[3594,3384],[35,-16],[8,-3],[60,-53],[7,-13],[2,-13],[-4,-10],[-11,-8],[-13,-2],[-9,4],[-10,7],[-34,38],[-11,9],[-11,5],[-8,-2],[-5,-6],[-25,-67],[-21,-48],[-4,-14],[-17,-59],[-5,-17],[-9,-12],[-7,-5],[-19,-17],[-20,-14],[-19,-5],[-11,-2],[-7,-8],[1,-21]],[[3427,3032],[-7,4],[-1,-1]],[[2988,3524],[4,1],[55,-23],[49,-21],[32,6],[19,26],[4,24],[0,21],[-1,40],[0,2],[6,21],[7,21],[13,30]],[[3176,3672],[102,-33],[20,-3],[15,4],[22,13],[52,29],[13,5],[13,-3],[9,-4],[8,-9],[4,-12],[38,26],[15,11],[8,5],[13,-30],[4,-18],[2,-16],[1,-16],[0,-12],[-1,-14],[-2,-14],[-4,-20],[-5,-38],[-6,-42],[-6,-11],[-9,-8],[-11,-3],[-1,-27],[-4,-34],[-9,-45],[-4,-36],[-1,-17],[0,-25],[67,-29],[52,112],[8,10],[15,16]],[[3306,1216],[0,-91],[0,-21]],[[3306,1104],[-53,0],[-55,0],[-54,-1],[-55,0],[-54,0]],[[3035,1103],[-55,0],[-54,-1]],[[2926,1102],[-1,146],[55,1],[0,70]],[[2980,1319],[4,2],[48,-16],[2,-3],[4,1],[40,-13],[2,-2],[2,1],[6,-2],[1,-2],[3,1],[30,-9],[2,-3],[2,1],[16,-5],[1,-3],[4,2],[49,-16],[2,-3],[3,1],[49,-15],[2,-3],[5,1],[47,-15],[2,-3]],[[3259,1663],[0,-23],[83,-1],[6,-16],[-3,-35],[1,-91],[1,-200],[0,-57],[1,-37]],[[3348,1203],[-3,-2],[-36,12],[-3,3]],[[2980,1319],[-3,4],[-34,10],[-3,-1],[-2,3],[-10,3],[-3,-1],[-3,-1],[-46,14],[-3,3]],[[2938,1658],[4,30],[6,16],[11,21],[4,7],[13,12],[17,12],[14,8],[14,2],[12,1],[10,0],[11,-2],[19,-8],[13,-9],[13,-13],[8,-10],[18,12],[5,-41],[-1,-17],[-1,-24],[12,3],[18,6],[15,2],[19,1],[24,-3],[12,-3],[19,1],[12,1]],[[3778,1619],[-6,2],[-116,-1],[-59,0],[-21,6],[-42,2],[0,57],[-1,65],[0,65],[0,68]],[[3533,1883],[6,4],[73,0],[5,-3],[5,4],[27,0],[6,-4],[6,4],[116,0]],[[1667,2109],[-6,-7],[-41,-2],[7,-154],[-47,-4],[5,-107],[-47,-5],[0,-23],[-7,-30],[-11,-34],[-2,-17]],[[1148,1727],[-1,14],[-7,163],[-5,9],[4,8],[-2,30],[-2,59],[-3,56],[-1,14]],[[2138,1957],[-37,20],[-21,-1],[-48,-3],[-49,-4],[-4,-17],[5,-17],[27,-57],[5,-17],[0,-12],[21,0],[49,-1],[0,-79],[-7,-4],[-64,-1],[-52,0],[-6,-2],[-5,-6],[-3,-6],[0,-10],[2,-28],[-51,-2],[-65,-41],[-68,-63],[28,-54]],[[1923,1026],[-3,-59],[54,-3],[-4,-115],[-20,-6],[-4,-6]],[[1946,837],[2,9],[-55,71],[-11,3],[-37,-40],[-11,-3],[-42,2],[-90,4],[-2,-47],[-1,-20]],[[1699,816],[-86,4],[-16,0]],[[1969,752],[21,-5],[19,11],[3,6],[6,4],[65,-59],[4,-13],[11,-4],[60,-55],[7,-12],[12,-5],[60,-55],[6,-12],[11,-6],[47,-43],[11,-13],[3,-20],[3,-11],[6,-34],[7,-50]],[[1699,816],[-1,-26],[-1,-29],[-3,-84],[-1,-24],[89,-5],[15,-19],[72,80],[20,-25],[23,-21],[57,89]],[[1946,837],[-5,-5],[-7,-15],[1,-18],[4,-13],[13,-16],[17,-18]],[[2265,727],[3,-6],[6,-15],[5,-33],[6,-24],[26,-106],[7,-33],[8,-38],[9,-55],[4,-26],[2,-15]],[[2712,1438],[-4,-11],[-2,-17],[1,-17],[5,-21],[-11,3],[-43,8],[-56,10],[2,-65],[-10,-56],[-14,-45],[-54,10],[-55,10],[-29,-65],[-21,11],[-28,17],[-20,-71],[-7,-47],[-5,-6]],[[2361,1086],[-47,0],[-5,3],[-12,-1],[-18,-3]],[[2926,1102],[-55,0]],[[2871,1102],[-53,0],[-1,0],[0,-11],[-23,0],[-48,-1],[-48,0],[-49,-1],[-9,0],[-38,0]],[[2602,1089],[-17,0],[-32,0],[-22,-1],[-25,0],[-31,0],[-17,0],[-41,-1],[-7,0]],[[2410,1087],[-49,-1]],[[3411,1883],[0,-69],[1,-65],[0,-65],[-70,-1],[-5,3],[-15,0],[-48,6],[-16,0],[1,-29]],[[2978,1822],[19,-2],[11,0]],[[3533,1883],[-5,-3],[-112,-1],[-5,4]],[[3811,1623],[-7,-6],[-34,-35],[-14,-17],[-19,-23],[-30,-45],[-6,-10],[-12,-20],[-19,-31],[-5,-10],[-25,-52],[-18,-46],[-2,-6],[-16,-45],[-3,-10],[-1,-4],[-14,-66]],[[3586,1197],[-2,-8],[-4,-19],[-7,-55],[-5,-47]],[[3568,1068],[-6,4],[-5,-5],[-6,8],[-35,21],[-6,0],[-3,5],[-35,21],[-6,0],[-7,0],[-88,54],[-23,27]],[[4010,2150],[-20,-4],[-40,13],[-38,37],[-13,-2],[0,-81],[1,-47],[0,-58],[-2,-5],[0,-54]],[[3814,2282],[-3,-6],[-4,-6],[-3,-9],[-2,-8],[0,-10],[2,-7],[3,-6],[4,-5],[5,-5],[6,-3],[8,-1],[8,1],[39,16],[15,7],[6,1],[6,-2],[3,1],[9,-2],[17,-7],[12,-12],[8,-12],[17,-40],[36,-13],[4,-4]],[[2988,2052],[-24,52],[-27,41],[-17,22],[-8,9]],[[2741,2865],[14,18],[109,129]],[[2704,3190],[-4,-19],[-1,-19],[1,-14],[-3,-13],[-10,-13],[27,-33],[33,-40],[-56,-65],[24,-53],[26,-56]],[[2427,3280],[53,3],[4,0],[25,5],[34,2],[56,4]],[[2599,3294],[3,-77],[14,-3],[10,8],[5,19],[5,23],[-6,13],[1,6],[1,5],[9,1],[18,-4],[27,-11],[-5,-19],[-10,-21],[-7,-16],[-3,-10],[43,-18]],[[2958,3283],[-23,-20],[-4,1],[-4,5],[-7,7],[-11,6],[-14,5],[-21,-1],[-35,0],[-5,1],[-3,6],[-3,13],[2,11],[3,13],[0,12],[-4,18],[-1,12],[-1,18],[-18,-7],[-15,-4],[-11,1],[-23,2],[8,-9],[10,-21],[5,-20],[1,-20],[-1,-11],[2,-18],[4,-15],[6,-12],[-1,-7],[-2,-11],[-22,-22],[-34,40],[-8,-13],[-13,-26],[-11,-27]],[[2599,3294],[-7,150],[-7,150]],[[2585,3594],[57,4],[57,3],[15,1],[40,10],[4,1]],[[2758,3613],[1,-3],[12,-18],[21,-24],[17,-21],[15,-26],[17,-19],[12,-8],[3,-5]],[[2067,3560],[54,3],[-7,150],[57,4],[7,4],[44,3],[7,-3]],[[2229,3721],[7,-150],[30,2],[30,2],[58,4]],[[2354,3579],[15,-30],[3,-10],[1,-8],[0,-15],[-3,-14],[-11,-46],[-2,-10],[1,-4],[-6,-8],[-2,-6],[-2,-10],[0,-18],[1,-50],[18,-65],[4,-8]],[[2060,3709],[3,-8],[7,-133],[-3,-8]],[[2206,3870],[18,-55],[5,-94]],[[2354,3579],[4,-3],[9,-17],[42,33],[-18,24],[-9,15],[-2,12],[0,13],[7,25],[6,5],[5,0],[7,-2],[8,-4],[7,-7],[7,-9],[4,-7],[20,-54],[17,11],[6,5],[18,10],[8,-23],[8,-14],[6,-4],[6,-1],[9,3],[56,4]],[[2514,3890],[6,-150],[58,4],[7,-150]],[[2742,3912],[1,-29],[5,-89],[-2,-22],[-2,-19],[1,-4],[-3,-12],[-6,-36],[0,-26],[1,-5],[2,-11],[7,-23],[12,-23]],[[2507,4040],[57,4],[7,-150],[57,4],[32,2],[25,2],[5,7],[47,3],[5,0]],[[2735,4055],[7,-143]],[[2907,4217],[31,-97],[-19,-6],[21,-58],[-23,-7],[-18,-7],[-4,-5],[-2,-11],[6,-11],[13,-16],[16,-26],[15,-16],[6,-14],[4,-12],[4,-34],[2,-28],[2,-23],[5,-26],[6,-12],[34,-30],[15,-2],[8,-36],[-17,-2],[-16,1],[-9,-3],[-6,-5],[-23,-28],[-29,-34],[-73,-180]],[[3399,4058],[-36,-19],[-4,-1],[-10,-4],[-13,-7],[-15,-7],[-4,-3],[-22,-20],[-15,-16],[-4,-5],[-5,-7],[-6,-7],[-8,-16],[-3,-13],[-5,-41],[-4,-13],[-31,-65],[-12,-34],[-2,-12],[-2,-8],[-2,-43],[-4,-11],[-16,-34]],[[3551,4096],[3,-8],[-1,-27],[10,-47],[6,-14],[15,-21]],[[3584,3979],[5,-8],[6,-12],[8,-12],[13,-12],[8,-10],[2,-4],[5,-9],[4,-17]],[[3635,3895],[10,-20],[23,-31],[11,-9],[11,2],[25,13],[10,-6],[3,-14],[-7,-10],[-23,-9],[-20,-3],[-22,-10],[-13,0],[-11,8],[-28,30],[-8,4],[-9,-4],[-6,-11],[1,-12],[13,-56],[14,-41],[4,-9],[8,-14],[19,-22],[7,-15],[1,-15],[-3,-11],[-24,-33],[-7,-10],[-10,-19],[7,-18],[17,-27],[3,-12],[0,-9],[-3,-13],[-29,-48],[-7,-6],[-9,-3],[-43,9],[-6,-6],[-18,-16],[-7,-7],[-6,-11],[-4,-12],[-10,-35],[-2,-23],[4,-18],[6,-11],[7,-6],[9,0],[10,6],[9,13],[33,67],[7,6],[9,2],[13,-6]],[[4883,5115],[-6,-2],[-15,-17],[-44,-52],[-1,-7],[-6,-2],[-71,-83],[-1,-7],[-13,-9],[-21,-25]],[[4705,4911],[-28,-33],[-63,-74],[-1,-9]],[[4613,4795],[-16,-1]],[[4597,4794],[-5,76],[-4,63],[-42,-4],[-18,-1],[-59,-6],[-11,-1]],[[4458,4921],[-8,59]],[[4419,4778],[-9,139],[48,4]],[[4597,4794],[-60,-5],[-24,-2],[-35,-3],[-59,-6]],[[4377,4510],[-2,14],[-3,56],[-5,64],[-4,65],[-4,64]],[[4359,4773],[60,5]],[[4613,4795],[-1,-10],[-7,-8],[-7,-1],[-13,-7],[-84,-99],[-4,-14]],[[4497,4656],[0,-7],[-4,-4],[-6,0],[-11,-7],[-91,-106],[-8,-22]],[[4945,5035],[5,-69],[3,-47]],[[4953,4919],[-116,-10],[-5,-2],[-5,-2],[-55,-5],[-55,-5],[-8,5],[-4,11]],[[4953,4919],[2,-42],[4,-50]],[[4959,4827],[-119,-10]],[[4840,4817],[-50,-5],[-10,-1],[-62,-5],[-14,-2],[-48,-4],[-43,-5]],[[4545,4660],[-48,-4]],[[4840,4817],[-2,-12],[7,-106],[3,-11]],[[4848,4688],[-50,-5],[-71,-6]],[[4727,4677],[-15,-2],[-51,-4],[-56,-5],[-60,-6]],[[5008,4052],[4,-64],[4,-65],[4,-64]],[[5020,3859],[-116,-11]],[[4904,3848],[-3,57],[-3,8]],[[4898,3913],[2,9],[-4,55],[-4,57],[-2,7],[2,11],[-4,52],[-3,58],[-4,8]],[[4881,4170],[41,4],[4,-59],[3,-38],[2,-32],[77,7]],[[4922,3527],[2,7],[-3,58],[-4,55],[-3,8],[2,9],[-4,56],[-3,56],[-3,8],[2,8],[-4,56]],[[5020,3859],[5,-65]],[[5025,3794],[-26,-2],[-2,-65],[-2,-64],[1,-7],[-3,-58],[-2,-59],[0,-6],[-69,-6]],[[4751,4287],[-122,-11]],[[4629,4276],[-4,65],[-119,-1]],[[4506,4340],[-3,54]],[[4503,4394],[118,11],[-3,55],[71,18],[39,10],[10,4]],[[4738,4492],[-4,-5],[4,-62],[5,-9]],[[4743,4416],[-4,-10],[4,-55],[5,-5],[-5,-5],[3,-45],[5,-9]],[[4396,4191],[-4,64],[-4,64],[119,11],[-1,10]],[[4629,4276],[5,-64],[-119,-11],[-119,-10]],[[4396,4191],[4,-65],[5,-64],[4,-65]],[[4409,3997],[-60,-5]],[[4349,3992],[-8,129],[-59,-6]],[[4282,4115],[-8,129],[-7,123],[-3,20]],[[4264,4387],[13,-13],[47,4],[60,5],[44,4],[31,3],[44,4]],[[4751,4287],[-4,-9],[7,-110],[6,-9]],[[4760,4159],[-4,-11],[2,-44],[6,-10],[-4,-10],[3,-45],[5,-9]],[[4768,4030],[-122,-11]],[[4646,4019],[-119,-11],[-91,-8],[-17,-14],[-4,-5],[-1,-7],[0,-10],[-3,-10],[-2,9],[-1,15],[1,19]],[[4282,4115],[-59,-5],[-58,-5],[-57,-5]],[[4108,4100],[-8,128],[-58,-5],[-36,-3],[-49,-5],[-3,44]],[[3954,4259],[5,-3],[27,0],[7,1],[11,2],[3,1],[11,8],[17,12],[3,7]],[[4038,4287],[6,0],[16,8],[29,10],[5,5],[7,-1],[45,12],[5,4],[6,-2],[37,11],[10,5],[4,6],[4,0],[44,32],[2,2],[6,8]],[[4108,4100],[-57,-6],[3,-45],[2,-49]],[[4056,4000],[-29,9],[-23,12],[-7,9],[-18,21],[-2,27],[-13,16],[-12,-1],[-61,-6],[-5,-2],[-39,-1],[-21,-1],[-3,2],[-19,18],[-29,-44],[-7,6],[-8,12],[-5,1]],[[3755,4078],[-6,13],[-1,10],[1,24],[0,3],[2,7],[4,8],[4,6],[3,4],[55,54],[2,7],[6,0],[31,30],[10,8],[10,3],[74,1],[4,3]],[[4080,3580],[-115,-11],[5,-64],[4,-64],[-57,-6],[8,-129],[-57,-5],[4,-77],[0,-2]],[[3872,3222],[-3,-8],[-31,-47],[-43,-59]],[[3795,3108],[-7,-4],[-25,-2],[-12,20]],[[3751,3122],[4,-2],[8,5],[13,9],[8,13],[8,22],[0,21],[-3,20],[-2,26],[9,27],[12,25],[8,12],[7,22],[8,46],[-3,7],[5,6],[8,49],[21,129],[-7,0],[1,10],[5,5]],[[3861,3574],[4,6],[12,76],[3,7],[26,-24],[4,8],[27,33],[8,17],[4,7],[8,-6],[58,5],[-5,81],[-5,5],[21,7],[36,6],[6,3]],[[4068,3805],[-2,-7],[6,-90],[4,-64],[4,-64]],[[4213,3333],[4,-64]],[[4217,3269],[-111,-10],[-5,2]],[[4101,3261],[-33,-1],[-46,-1],[-52,0],[-38,-3],[-8,-3],[-20,-8],[-32,-23]],[[4080,3580],[4,-65],[4,-64],[5,-65],[116,11],[1,-6],[3,-58]],[[4646,4019],[4,-64],[4,-64],[4,-65]],[[4658,3826],[-119,-11],[-118,-11]],[[4421,3804],[-119,-10]],[[4302,3794],[-4,64]],[[4298,3858],[-4,64],[-4,65],[59,5]],[[4556,3558],[-119,-11]],[[4437,3547],[-4,65],[-4,64],[-4,64],[-4,64]],[[4658,3826],[5,-64],[8,-129]],[[4671,3633],[-31,-3],[-29,-2],[5,-68],[-29,-3],[-25,-2],[-6,3]],[[4225,3141],[4,-65],[4,-66],[5,-63],[4,-62],[2,-67]],[[4244,2818],[2,-37],[1,-9],[2,-25],[4,-29],[-2,-18],[-5,-3],[-5,-10]],[[4241,2687],[2,6],[-12,40],[-16,33],[-20,30],[-40,43],[-15,14],[-9,1],[-1,1]],[[4130,2855],[-2,9],[-96,86],[-13,14],[-10,20],[-7,6]],[[4002,2990],[0,9],[-2,14],[-1,19],[3,42],[39,-14],[7,1],[7,2],[53,4],[5,-2],[-4,66],[-4,63],[-4,67]],[[4217,3269],[4,-65],[4,-63]],[[4710,2731],[12,-189]],[[4722,2542],[-55,-5],[-14,-1],[9,-8],[17,-56],[-36,-15],[-5,-1],[-29,-13],[1,-7],[0,-7]],[[4610,2429],[-41,21],[-7,-1],[-11,-3],[-51,-6],[-5,21],[-6,15],[-8,12],[-2,8],[-7,10],[-25,42],[54,44],[1,6],[-6,3],[-12,10],[-25,31],[-23,44],[-13,21]],[[4423,2707],[11,1],[48,3],[12,0],[50,5],[56,5],[9,1]],[[4609,2722],[46,4],[55,5]],[[4329,1703],[-34,41],[-4,6],[-51,65]],[[4240,1815],[-5,7],[-6,7],[-8,11]],[[4221,1840],[15,6],[13,6],[6,2],[4,2],[8,3],[13,5],[30,12],[13,5],[28,12],[43,18],[8,3],[31,11],[12,2],[3,0],[25,4],[19,1],[0,8],[-1,7]],[[4491,1947],[32,2],[11,-2],[30,-3],[22,-6],[34,-8],[17,-6],[9,-3]],[[4646,1921],[-8,-13],[-26,-39]],[[4612,1869],[-43,-19],[-5,-7],[-9,1],[-64,-29],[-8,-3],[-5,-7],[-7,2],[-60,-26],[-24,-13],[-19,-13],[-8,-14],[-8,-2],[-11,-12],[-11,-15],[-1,-9]],[[4734,2055],[-50,-77],[-38,-57]],[[4491,1947],[-19,0],[-22,-4],[-4,-2],[-3,0],[-43,-12],[-12,-4],[-31,-11],[-13,-6],[-40,-17],[-3,8],[-28,-16],[-7,-3],[-5,1],[-1,0],[5,11]],[[4265,1892],[2,1],[8,12],[3,4],[11,11],[29,22],[-6,3],[-2,1],[-4,0],[-11,0],[9,17],[48,28],[44,25],[8,4]],[[4404,2020],[88,50],[28,21],[32,23],[11,9],[11,9]],[[4574,2132],[29,24],[13,10],[2,2],[7,-10]],[[4625,2158],[4,-3],[28,-18],[23,-15],[-20,-30],[5,-47],[69,10]],[[4245,2145],[-16,-74],[6,2],[36,-9],[3,-6],[6,3],[35,-10],[5,-6],[7,3],[43,-12],[12,-10],[10,2],[12,-8]],[[4265,1892],[-12,-2]],[[4010,2150],[7,29],[5,25],[-1,5],[1,24]],[[4022,2233],[48,-18],[40,-20],[78,-39],[11,-2],[31,-4],[15,-5]],[[4290,2343],[7,-38],[9,-47],[-11,-9],[-9,-17],[-11,-16],[-5,-8],[-16,-19],[-1,-3],[-8,-41]],[[4022,2233],[1,105],[2,4],[-2,15],[-7,23],[-2,4],[-3,2],[-1,4],[-6,10],[-3,15],[5,22],[11,14],[11,4],[3,3],[4,-3],[98,-30],[9,-1],[4,2],[5,-1],[20,11],[14,23],[-1,4],[7,6],[33,86],[5,12],[0,9]],[[4229,2576],[17,-8],[15,0],[16,2],[33,3],[1,-54],[-54,1],[-5,-19],[-11,-50],[30,19],[12,9],[6,-2],[8,-13],[-3,-38],[-5,-60],[0,-10],[1,-13]],[[4364,2764],[3,-47],[19,2],[7,-3],[10,-7],[8,-3],[12,1]],[[4610,2429],[-30,-29],[-12,-11],[-30,-31],[-69,-66]],[[4469,2292],[-1,-4],[-57,-56],[-5,-2],[-18,-1],[-12,18],[-33,46],[-15,20],[-12,19],[-8,10],[-13,2],[-5,-1]],[[4229,2576],[5,6],[12,35],[5,25],[-2,24],[-4,17],[-4,4]],[[4244,2818],[50,5],[4,-33],[4,-21],[15,-9],[47,4]],[[3795,3108],[6,-2],[4,-5],[7,-5],[7,-1],[6,-4],[1,-53],[1,-23],[8,-20],[14,-17],[14,-4],[16,-2],[27,9],[33,4],[63,5]],[[4130,2855],[0,-1],[-15,-23],[-15,-6],[2,-6],[-48,-16],[-47,-1],[-43,-21],[-16,-16],[-7,-15],[-253,-90]],[[3427,3032],[6,-5],[13,5],[42,10],[45,13],[53,19],[5,8],[8,-2],[14,5],[24,10],[40,11],[61,13],[10,3]],[[3748,3122],[1,2],[2,-2]],[[3781,3817],[-10,-9],[-11,-9],[-7,-12],[0,-13],[6,-21],[1,-12],[-2,-20],[-6,-24],[-6,-13],[-9,-15],[-7,-15],[-3,-13],[0,-15],[-1,-6],[-11,-35],[0,-10],[17,-47],[4,-15],[2,-17],[-3,-21],[-10,-31],[-27,-35],[6,-15],[5,-9],[33,-44],[5,-13],[3,-10],[0,-10],[-3,-11],[-6,-17],[-4,-10],[0,-4],[-1,-6],[2,-23],[2,-29],[8,-86]],[[3635,3895],[54,-11],[5,1],[11,2],[19,10],[14,3],[14,-4],[12,-11],[2,-4],[1,-2],[8,-14],[3,-12],[2,-9],[1,-27]],[[4359,4773],[-8,138],[-71,-5],[-48,-5]],[[4232,4901],[0,5],[-7,20],[-6,16],[-5,11],[-4,4]],[[4210,4957],[0,5],[-6,11],[-6,9],[-6,5],[-8,6],[-4,8],[-5,4]],[[4377,4510],[-18,-10],[-61,-75],[-32,-32],[-2,-6]],[[4264,4387],[-4,64],[-3,52]],[[4257,4503],[-4,66],[-4,64],[-4,65],[-4,64],[-9,139]],[[4232,4901],[-4,4],[-7,19],[-11,27],[0,6]],[[4210,4957],[-4,2],[-4,10],[-6,8],[-5,5],[-6,5],[-4,3],[-4,8],[-2,7]],[[4257,4503],[-7,2],[-47,-3],[-11,-9]],[[4192,4493],[-23,62],[19,11],[3,4],[-27,74],[-80,35],[9,30],[5,5],[4,-2],[18,-8],[11,-1],[10,4],[5,5],[3,5],[3,12],[-1,25],[-5,90],[-8,56],[-42,-3]],[[4096,4897],[-1,14],[-25,41],[-18,20],[-5,7]],[[4192,4493],[-22,-17],[-21,-1],[1,-34],[-38,-3],[-34,8],[-26,7],[-15,11],[-9,-11],[-3,0],[-3,-1],[-2,2],[-3,3],[-3,0],[-4,1],[-3,0],[-3,1],[-3,2],[-4,2],[-4,0],[-4,-1],[2,-3],[1,-5],[3,-58]],[[3995,4396],[-35,-3],[-3,3],[-4,-3],[-62,-5],[-3,2],[35,20],[3,3],[1,8],[-3,9],[-6,3],[-17,1],[-97,4],[5,1],[6,6],[20,2],[7,3],[6,5],[3,7],[0,4],[-2,2],[0,35],[-13,29],[-1,7],[-3,14],[0,39],[-4,10]],[[3828,4602],[7,0],[60,-1],[9,-2],[36,-2],[93,105],[16,47],[-5,81],[26,18],[26,49]],[[3828,4602],[-10,-1],[-26,-24],[-1,-6],[2,-12],[0,-9],[-2,-8],[-25,9],[-12,1],[-9,0],[-10,-3],[-1,6],[8,4],[8,7],[6,10],[2,10],[-2,9],[-13,19],[-15,-14],[-40,-8]],[[4503,4394],[-9,130],[41,4],[19,2],[-9,130]],[[4727,4677],[-5,-8],[2,-28],[5,-4],[-4,-6],[5,-74],[5,-11],[-4,-12],[2,-35],[5,-7]],[[5000,4181],[4,-59],[4,-70]],[[4881,4170],[-65,-6]],[[4816,4164],[-9,129],[66,6]],[[4873,4299],[45,4],[10,1],[19,1],[45,4]],[[4992,4309],[8,-128]],[[5057,3280],[-25,-2],[-25,-2],[-5,89],[-3,39],[-69,-6],[2,11],[-7,109],[-3,9]],[[5025,3794],[8,-128],[8,-129],[8,-128],[8,-129]],[[4298,3858],[-6,2],[-52,-6],[-9,127],[-58,-5],[-57,-5],[-57,-6]],[[4059,3965],[-3,35]],[[4302,3794],[5,-64],[-47,-5],[-10,-5],[-23,-1],[-2,2],[-36,-2],[4,-66]],[[4193,3653],[3,-63],[-55,-5],[-61,-5]],[[4068,3805],[1,8],[-7,120],[-2,6],[-1,26]],[[3861,3574],[-2,7],[5,32],[7,45],[3,9],[30,65],[4,12],[7,25],[23,52],[9,21],[1,17],[-1,6],[-4,7],[-5,10],[-17,10],[-4,0],[-7,1],[-8,1],[-14,8],[-1,10],[-10,11],[-5,7],[-11,23],[-9,22],[-9,15],[-2,3],[-6,3],[0,6],[-8,9],[-17,16],[-5,0]],[[3805,4027],[-5,8],[-11,9],[-10,7],[-7,5],[-2,1],[-12,14],[-3,7]],[[4839,3907],[8,-128],[-29,-3],[-34,-3],[-4,-7],[4,-59],[4,-56],[5,-7]],[[4793,3644],[-13,-1],[-22,-2],[-28,-3],[-29,-2],[-30,-3]],[[4768,4030],[-4,-7],[3,-51],[5,-6],[-4,-7],[3,-51],[5,-6],[34,3],[29,2]],[[4943,3208],[6,-9],[2,-46],[-2,-12]],[[4949,3141],[-124,-12]],[[4825,3129],[-121,-10],[-5,64],[-4,64],[-119,-11]],[[4576,3236],[-4,64],[119,12],[-4,64]],[[4687,3376],[122,11]],[[4809,3387],[-4,-10],[3,-46],[5,-8],[-4,-9],[3,-47],[5,-9],[-4,-10],[3,-46],[5,-8],[10,1],[91,8],[21,5]],[[4364,2764],[-3,55],[3,10],[119,11],[-5,65],[-4,64],[-3,64],[-5,64]],[[4466,3097],[119,11],[2,-33],[2,-32],[4,-64]],[[4593,2979],[4,-64],[4,-65],[4,-64],[4,-64]],[[4225,3141],[48,4],[34,2],[37,4],[3,-50],[-3,-15],[6,3],[26,4],[54,4],[3,-3],[33,3]],[[4825,3129],[-4,-9],[3,-45],[6,-9],[-122,-12],[3,-64]],[[4711,2990],[-118,-11]],[[4466,3097],[-3,65],[-4,56],[-1,8]],[[4458,3226],[118,10]],[[4711,2990],[122,11],[-3,-9],[3,-46],[5,-9]],[[4838,2937],[-4,-10],[3,-46],[5,-9],[-4,-9],[3,-47],[5,-8],[-122,-11],[4,-65],[-18,-1]],[[4838,2937],[108,10],[-15,-58],[2,-8]],[[4933,2881],[-5,-7],[-15,-60],[-13,-55],[0,-11],[-6,-7],[-11,-43],[-18,-63],[-5,-18],[10,-1],[-10,-57],[-6,-6]],[[4854,2553],[-19,-1],[-57,-5],[-56,-5]],[[4949,3141],[52,4],[-16,-65],[72,6],[-87,-202],[-37,-3]],[[4625,2158],[37,37],[25,27],[39,42],[3,2],[30,40],[26,33],[18,28],[11,17],[7,17],[4,10],[9,21],[13,47],[12,67],[-5,7]],[[4854,2553],[31,1]],[[4885,2554],[-12,-26],[-7,-26],[-1,-31],[-3,-75],[-2,-41],[-1,-13],[-9,-41]],[[4850,2301],[-13,-54]],[[4837,2247],[-12,-56],[-10,-10],[-47,-71],[-2,-7],[-3,-1],[-14,-21],[0,-4],[-3,-1],[-11,-16],[-1,-5]],[[3781,3817],[1,-34],[1,-11],[10,-33],[2,-12],[-2,-16],[-3,-7],[51,-11],[5,-2],[-6,-13],[-8,-28],[-24,-51],[-1,-4],[46,-3],[-1,-3],[0,-7],[1,-4],[3,-2],[5,-2]],[[3584,3979],[8,6],[15,11],[9,7],[15,23],[14,22],[20,33],[7,-9],[13,-2],[8,1],[51,-33],[19,0],[17,-5],[13,-9],[12,3]],[[3644,4316],[22,3],[57,5],[60,5],[44,4],[24,2],[147,14]],[[3998,4349],[2,-29],[3,-53],[13,10],[17,12],[5,-2]],[[3998,4349],[-3,47]],[[4437,3547],[4,-63],[5,-65]],[[4446,3419],[-119,-11]],[[4327,3408],[-4,65],[-4,63],[-4,65],[-4,64],[-7,-2],[-111,-10]],[[4327,3408],[4,-64],[-118,-11]],[[4446,3419],[4,-65],[4,-64],[3,-57],[1,-7]],[[4469,2292],[30,-43],[68,67],[29,-43],[29,-43],[-30,-30],[-37,-36],[15,-22],[1,-10]],[[4556,3558],[4,-63],[59,5],[4,-65],[60,5],[4,-64]],[[5057,3280],[4,-63]],[[5061,3217],[-10,3],[-44,-1],[-5,-2],[-49,-4],[-10,-5]],[[4809,3387],[-5,8],[-3,47],[4,9],[-5,9],[-3,46],[4,10]],[[4801,3516],[33,3],[29,3],[59,5]],[[4801,3516],[-5,7],[-2,27],[-2,29],[-3,59],[4,6]],[[4839,3907],[28,3],[31,3]],[[4816,4164],[-56,-5]],[[4743,4416],[76,7],[45,4]],[[4864,4427],[-2,-10],[4,-56],[4,-52],[3,-10]],[[4864,4427],[-3,10],[-6,108],[2,12]],[[4857,4557],[53,5],[14,1],[12,2],[39,3]],[[4975,4568],[8,-130]],[[4983,4438],[2,-31],[2,-27],[5,-71]],[[4857,4557],[-3,10],[-7,109],[1,12]],[[4959,4827],[3,-49],[1,-15],[4,-64]],[[4967,4699],[4,-66],[4,-65]],[[5561,4930],[3,-7],[2,-8],[1,-14],[5,-71],[6,-102],[7,-104]],[[5585,4624],[-52,-5],[-51,-5],[-37,-3],[-87,-8],[-31,-3]],[[5327,4600],[-58,-5],[-59,-5],[9,-130],[-62,-6]],[[5157,4454],[-3,6],[-8,124]],[[5146,4584],[6,0],[-3,46],[-5,85],[17,1],[41,4],[-8,129],[-2,6],[-1,57],[2,39],[1,5],[2,6]],[[5084,3800],[-59,-6]],[[5008,4052],[41,4],[36,3],[42,4],[58,5],[58,5]],[[5243,4073],[8,-128]],[[5251,3945],[-58,-6],[-58,-5],[-42,-4],[-17,-1],[8,-129]],[[5157,4454],[-55,-6],[-119,-10]],[[4967,4699],[27,2],[26,2],[22,3],[8,-131],[44,4],[52,5]],[[5334,3564],[-8,129]],[[5326,3693],[58,5],[59,5],[58,5]],[[5501,3708],[50,5],[48,4],[52,5]],[[5651,3722],[0,-11],[-1,-3],[7,-115]],[[5657,3593],[-50,-5],[-48,-4],[-50,-4],[-30,-3],[-28,-2],[-28,-3]],[[5423,3572],[-31,-2],[-58,-6]],[[5168,3420],[-9,128],[-8,129]],[[5151,3677],[58,5],[59,5]],[[5268,3687],[58,6]],[[5334,3564],[9,-129]],[[5343,3435],[-29,-2],[-30,-3],[-30,-3],[-28,-2],[-28,-3],[-30,-2]],[[5084,3800],[8,-129],[59,6]],[[5168,3420],[-31,-3],[8,-129],[-29,-2],[4,-64]],[[5120,3222],[-51,-2],[-8,-3]],[[5343,3435],[8,-128],[2,-31],[-8,-6],[3,-44]],[[5348,3226],[-6,3],[-38,-1],[-7,-4],[-8,3],[-109,-3],[-9,-3]],[[5171,3221],[-7,2],[-44,-1]],[[5526,3323],[2,-41],[3,-51]],[[5531,3231],[-7,4],[-52,-2],[-50,-1],[-7,-4]],[[5415,3228],[-8,3],[-54,-2],[-5,-3]],[[5423,3572],[8,-129],[8,-128],[28,2],[59,6]],[[5987,1582],[-8,-3],[-26,-10],[-27,97],[-15,-6],[-38,-15],[-53,-21],[-52,-21],[-53,-21]],[[5715,1582],[-27,97],[-26,97],[-23,84]],[[5639,1860],[30,14],[21,10],[52,24],[42,19],[10,4],[52,24],[15,13]],[[5861,1968],[8,-23],[28,-65],[25,-82],[9,-30],[27,-84],[1,-3],[28,-99]],[[5983,1037],[-29,105],[-26,96]],[[5928,1238],[51,20],[54,21],[2,-9],[33,-12],[5,-1]],[[6073,1257],[16,-6],[9,-3],[5,-2]],[[6103,1246],[22,-79],[-6,-26],[-8,-28],[-5,-21]],[[6106,1092],[-15,-1],[-3,-13],[-7,7],[-45,-17],[-1,-10],[-5,7],[-47,-18],[0,-10]],[[4820,1127],[53,125],[52,20]],[[4925,1272],[52,21],[53,20],[53,21],[27,-98],[52,22]],[[5162,1258],[26,-92],[7,-2],[46,18],[15,-54],[58,6],[-20,69],[53,21],[52,20],[53,21]],[[5452,1265],[27,-96],[26,-97]],[[5505,1072],[27,-97],[26,-95]],[[5558,880],[-37,-16],[0,-9]],[[5521,855],[-4,7],[-117,-46],[-11,-3],[-2,-9],[-4,6],[-21,-5],[-22,1],[-40,11],[-136,40],[-8,-1],[-9,6],[-25,8],[-24,4],[-12,1],[-22,-3],[-19,-5],[-24,-13],[-18,-13],[-56,-50],[-3,-6]],[[4944,785],[-9,11],[-13,5],[-8,6],[-22,44],[-5,20],[3,39],[-4,18],[-10,13],[-15,8],[-42,8],[-36,17]],[[4783,974],[64,135],[-27,18]],[[5878,996],[-6,8],[-52,-21],[-48,-19],[-1,-10]],[[5771,954],[-5,8],[-46,-18],[-1,-10],[-6,7],[-50,-19],[-52,-21],[-53,-21]],[[5505,1072],[46,18],[7,3],[53,21],[52,20],[53,21],[5,4],[47,19],[105,41],[6,1],[43,17],[6,1]],[[5983,1037],[0,-10],[-48,-18],[-4,8],[0,-10],[-48,-19],[-5,8]],[[5425,1361],[-32,118]],[[5393,1479],[-21,76],[53,20],[-27,97],[-13,50]],[[5385,1722],[16,9],[34,19],[35,20]],[[5470,1770],[16,9],[50,29],[44,25],[3,2],[56,25]],[[5715,1582],[26,-96]],[[5741,1486],[-52,-21],[-53,-21],[-53,-21],[-6,2],[-38,-15],[-25,-7],[-87,-34],[-2,-8]],[[4925,1272],[-27,96],[-11,42],[-32,23],[16,32],[38,75],[-11,42],[-10,33]],[[4888,1615],[-12,45]],[[4876,1660],[58,4],[42,4],[15,1],[30,2],[27,2]],[[5048,1673],[8,-30],[26,-95]],[[5082,1548],[27,-97]],[[5109,1451],[27,-97],[26,-96]],[[5425,1361],[27,-96]],[[5109,1451],[52,21],[54,21],[52,20],[19,-67],[9,-5],[18,7],[14,5],[66,26]],[[5987,1582],[26,-96],[24,-98],[2,-9],[22,-81],[8,-28],[4,-13]],[[5928,1238],[-3,6],[-25,90],[-53,-20],[-26,96],[-53,-21],[-27,97]],[[5470,1770],[-11,53],[-12,53],[-11,53],[-5,23],[-62,-23],[0,5],[-2,-1],[1,3],[8,18]],[[5376,1954],[32,20],[19,13],[72,50],[33,27],[44,35],[48,30],[7,3],[18,8],[24,12],[14,4],[22,7],[31,10],[16,5],[17,6],[4,1]],[[5777,2185],[4,-12]],[[5781,2173],[5,-14],[4,-13],[11,-24],[8,-19],[1,-3],[15,-36],[16,-38],[8,-24],[12,-34]],[[5472,2680],[-5,-96],[-33,3],[-5,-99],[5,-6]],[[5434,2482],[-34,-4],[-33,-4],[-6,0],[-27,4]],[[5334,2478],[-39,5],[-33,5],[-33,5]],[[5229,2493],[6,108],[5,97],[34,-3],[32,-2]],[[5306,2693],[33,-2],[34,-2],[33,-3],[5,-2],[28,-2],[33,-2]],[[5415,3228],[5,-87],[2,-33],[-7,3],[-36,-3],[9,-134],[-40,-4]],[[5348,2970],[-3,40],[-3,40],[-140,-13],[-10,6],[-24,59],[-45,7]],[[5123,3109],[48,112]],[[5777,2185],[-6,16],[-4,10],[-10,22],[-3,12],[-2,3],[-1,3],[-9,29],[-6,16],[-10,38],[-6,36],[-2,9],[-2,15],[-1,9],[-1,7],[-6,78],[1,35],[1,11]],[[5710,2534],[5,57],[5,26],[6,29],[5,19],[7,22],[9,26],[13,31],[2,4],[15,30],[40,70],[19,37],[2,3],[15,32],[1,5],[14,39],[7,32],[8,36],[10,55],[12,57],[2,27]],[[5907,3171],[1,11],[4,31],[-3,16],[-5,13],[-14,13],[-11,13],[-5,9],[-2,3],[-4,12],[-3,6]],[[5865,3298],[8,2]],[[5873,3300],[4,2],[7,3],[1,-1],[3,-3],[3,-4],[13,-13],[19,-21],[6,-8],[8,-13]],[[5937,3242],[9,-4],[6,-21],[3,-29]],[[5955,3188],[1,-2],[-2,-13],[-1,-30],[-8,-55],[-4,-40],[-4,-32],[-2,-19],[-3,-12],[-26,-103],[-30,-62],[-11,-11],[0,-11],[-18,-37],[-20,-40],[-23,-47],[-17,-45],[-5,-43],[-4,-47],[-6,-10],[4,-11],[-1,-16],[0,-2],[-1,-10],[0,-31],[2,-19],[2,-26],[-2,-14],[4,-10],[9,-113],[-2,-10],[4,-33],[9,-31],[4,-8],[5,-9]],[[5809,2186],[-12,-5],[-7,-4],[-9,-4]],[[5343,4341],[-57,-5],[-59,-5],[-58,-5],[-59,-6],[-41,-3],[-36,-4],[-41,-4]],[[5327,4600],[2,-25],[1,-24],[5,-81],[8,-129]],[[5623,4108],[-53,-5],[-44,-4]],[[5526,4099],[-49,-5]],[[5477,4094],[-6,84],[-2,21],[-2,24]],[[5467,4223],[-5,78],[-3,51],[-64,-6],[-52,-5]],[[5585,4624],[6,-105],[7,-103],[6,-102],[7,-102],[4,-74],[8,-30]],[[5000,4181],[41,4],[36,3],[42,4],[58,5],[58,5],[59,5],[58,6],[58,5],[57,5]],[[5477,4094],[-59,-5],[-58,-5],[-58,-6],[-59,-5]],[[5807,3610],[6,-103],[2,-29],[-2,-10],[1,-14],[2,-14],[29,-84],[22,-49],[6,-7]],[[5865,3298],[-14,-4],[-9,-3],[-34,-8],[-10,-5],[-12,-5],[-2,-4],[-7,0],[-14,-7],[-33,-17],[-6,-5]],[[5724,3240],[5,14],[-5,87],[-8,128],[-8,129],[-51,-5]],[[5651,3722],[48,4],[48,5],[9,-129],[41,4],[10,4]],[[5310,3950],[-59,-5]],[[5526,4099],[9,-129]],[[5535,3970],[-50,-4]],[[5485,3966],[-59,-6],[-58,-5],[-58,-5]],[[5268,3687],[-8,129],[58,5],[-8,129]],[[5485,3966],[8,-129],[8,-129]],[[5535,3970],[48,5],[50,4]],[[5633,3979],[6,-121],[2,-7],[4,-84],[6,-45]],[[5791,3864],[-52,-4],[-8,128],[-48,-4],[-50,-5]],[[5623,4108],[46,4],[52,5],[53,5]],[[5774,4122],[5,-7],[7,-115],[-4,-7],[4,-7],[4,-61],[-3,-7],[4,-7],[2,-39],[-2,-8]],[[5791,3864],[3,-7],[7,-114],[-2,-8],[3,-4],[1,-13],[-3,-6],[7,-102]],[[5724,3240],[-10,-1],[-29,1],[-5,-4],[-8,3],[-37,-1],[-5,-4],[-6,4],[-37,-1],[-5,-4]],[[5582,3233],[-6,3],[-37,-1],[-8,-4]],[[5526,3323],[50,4],[-9,129],[48,4],[50,5],[-8,128]],[[5123,3109],[-20,-48],[-21,-47]],[[5082,3014],[-7,-17],[-47,-108],[-31,-74],[-11,-24],[-15,-36],[-6,-14],[-15,-36],[-26,-59]],[[4924,2646],[-13,-31],[-26,-61]],[[5348,2970],[4,-62],[1,-18]],[[5353,2890],[-29,12],[-13,1],[-9,-9],[-8,-21],[-11,-14],[-3,-2],[-17,-14],[-7,-13],[0,-24],[-2,-7]],[[5254,2799],[-23,14],[-17,10],[-30,18],[-31,19]],[[5153,2860],[-19,11],[-31,19],[38,88],[-27,17],[-32,19]],[[4924,2646],[59,-36]],[[4983,2610],[47,-29],[31,-18],[30,-19],[8,-5]],[[5099,2539],[-13,-31],[-40,-93],[-6,-18]],[[5040,2397],[-13,-25],[-5,-13],[-4,-16],[-2,-14],[2,-21],[5,-23],[-136,10],[-6,2],[-31,4]],[[5413,2140],[-5,-93],[-1,-12],[-1,-12],[34,26],[7,5],[30,22],[85,64],[4,0],[1,-7],[-45,-37],[-43,-46],[-74,-48],[-19,-23],[-10,-25]],[[5376,1954],[-39,-15],[-18,-6]],[[5319,1933],[-11,4],[-35,-4],[-47,1],[-95,3],[-31,1],[-33,65]],[[5067,2003],[101,0],[1,11],[4,66],[-34,2],[5,78],[34,-2],[33,-3],[35,-3],[3,58],[3,38]],[[5252,2248],[35,-3],[33,-3],[-6,-95],[33,-2],[33,-3],[33,-2]],[[5582,3233],[4,-72],[-2,-6],[-5,-17],[-1,-16],[-53,-5],[8,-132],[52,5]],[[5585,2990],[2,-31],[3,-47],[-52,-5],[-49,-5],[-54,-4],[2,-22],[6,-7],[26,-4],[19,-12],[-4,-6],[-10,-9],[-12,-3],[-10,2],[-24,16],[-31,19],[-44,18]],[[5710,2534],[-6,1],[-34,3]],[[5670,2538],[4,75],[4,53]],[[5678,2666],[-6,5],[4,84],[3,61],[-1,2],[-26,7],[-7,1],[14,0],[15,2],[12,5],[2,2],[12,9],[8,13],[10,22],[5,12],[6,27],[10,39],[12,47],[-5,4],[-3,6],[-16,35]],[[5727,3049],[-16,35],[57,37],[30,-27],[22,34],[47,-43],[2,4],[8,66],[1,14],[0,6],[29,-4]],[[5727,3049],[-54,-35],[-7,5],[-82,-7],[1,-22]],[[5082,1548],[53,20],[53,21],[-25,93],[62,-16],[19,-4],[12,1],[25,9],[52,25],[34,16],[18,9]],[[5670,2538],[-3,-58],[-1,-9],[-32,3],[-4,-62],[-30,2],[-3,-1],[-33,2],[-4,2],[-30,3],[-33,2],[-33,3]],[[5464,2425],[-33,3],[3,54]],[[5472,2680],[33,-3],[33,-1],[9,0],[25,-1],[19,-2],[14,-1],[32,-2],[41,-4]],[[5319,1933],[-26,-7],[-38,-5],[-39,3],[-58,1],[-53,0],[-48,-4],[-42,-10],[-7,-1],[-23,-5]],[[4985,1905],[-60,-14],[-58,-7],[-4,0],[-30,0],[-5,0],[-18,1],[-31,1],[-29,6],[-16,3],[-39,11],[-11,4],[-38,11]],[[4837,2247],[65,-8],[6,-3],[24,-58],[5,-2],[18,-2],[8,0],[14,-1],[0,-40],[90,-130]],[[5413,2140],[6,93],[33,-3],[6,95],[6,100]],[[5252,2248],[1,19]],[[5253,2267],[3,58],[1,17],[35,-3],[33,-2],[6,99],[3,42]],[[5306,2693],[2,27],[1,15],[-12,0],[-21,-8],[-2,-1],[-6,-1],[-19,4],[-3,4],[-7,10],[-6,16],[2,15],[13,14],[6,11]],[[5253,2267],[-139,11],[11,16],[11,27],[4,13],[2,23],[-3,23],[-6,15],[-8,12],[-12,10],[-18,6],[-18,-1],[-20,-12],[-17,-13]],[[5099,2539],[22,-13],[31,-19],[6,-4],[37,-5],[34,-5]],[[4983,2610],[26,59],[47,-28],[17,41],[13,29],[17,39],[5,5],[45,105]],[[5048,1673],[-2,7],[8,21],[-9,2],[1,7],[-9,-4],[-38,-2],[14,35],[5,18],[4,21],[3,36],[1,51],[-44,-18],[2,21],[0,7],[0,14],[1,16]],[[6215,3750],[-6,88],[-7,117]],[[6202,3955],[20,2],[32,3],[52,5],[-14,205],[52,5]],[[6344,4175],[2,-7],[8,-133],[4,-65],[6,-7],[5,-12],[7,-16],[9,-10],[17,-23],[11,-19],[3,-27],[7,-87],[1,-18],[11,-188],[-52,-4]],[[6383,3559],[-51,-5],[-104,-9],[-2,33],[-5,87],[-1,11],[-5,74]],[[6430,1994],[19,-12],[10,-2],[48,-10],[47,-11],[29,-6],[16,2]],[[6599,1955],[-7,-11],[-9,-41],[1,-11],[-6,-8],[-11,-48],[2,-8],[-4,-3],[-2,-10],[2,-4],[-5,-5],[-7,-30],[1,-11]],[[6554,1765],[-5,-8],[-11,-48],[2,-8]],[[6540,1701],[-52,10],[-48,10],[-21,5],[-27,5]],[[6392,1731],[-34,8]],[[6358,1739],[-21,4],[-30,7],[-11,2],[17,113],[-45,10],[-47,10]],[[6221,1885],[-39,8],[-6,3],[2,9],[38,58],[42,36],[11,24]],[[6269,2023],[5,-3],[28,-39],[11,-11],[20,-16],[14,-9],[19,-23],[8,-9],[11,5],[45,76]],[[6430,1994],[21,37],[20,33],[30,50],[31,51],[-101,86]],[[6431,2251],[30,50],[31,50],[29,49],[101,-85],[50,-42]],[[6672,2273],[-5,-8],[-10,-44],[1,-12],[-6,-6],[-10,-46],[1,-12],[-5,-6],[-11,-45],[1,-12],[-5,-6],[-5,-20],[-6,-26],[1,-11]],[[6613,2019],[-5,-7],[-10,-45],[1,-12]],[[5878,996],[24,-89],[-5,-2],[-8,-6]],[[5889,899],[-28,22],[-13,6],[-13,7],[-16,8],[-17,-7],[-13,-43],[-18,62]],[[4897,90],[3,-5],[19,-10],[31,-13],[5,2],[3,-6],[27,-11],[5,2],[3,-6],[28,-12],[6,3],[3,-7],[26,-11],[9,-4],[7,2],[0,-6]],[[5072,8],[-123,0],[-75,0],[-6,0],[-75,6],[-17,1],[-20,1],[-6,1],[-5,0],[-4,0],[-5,1],[-30,2],[-10,0],[-3,1],[-40,2]],[[4653,23],[17,28],[18,12],[15,38],[14,21],[38,0],[26,16],[25,-17],[71,-30],[20,-1]],[[5673,287],[-48,20],[-38,-128],[-48,20],[-34,-112],[-14,-48],[-6,-23],[-2,-2]],[[5483,14],[-7,0],[-20,0],[-21,1],[-5,-1],[-5,-1]],[[5425,13],[-6,3],[-30,12],[-34,15]],[[5355,43],[14,48],[-39,16],[-14,9],[-24,10],[47,157],[117,-49],[33,-14],[38,129],[26,87]],[[5553,436],[50,-20],[35,-14]],[[5638,402],[62,-25],[-27,-90]],[[4748,829],[16,-13]],[[4764,816],[-29,-94],[-3,-23],[2,-25],[6,-19],[40,-94],[13,-23],[12,-15],[17,-16],[18,-12],[22,-11],[118,-49],[30,-18]],[[5010,417],[-13,-90],[-8,-1],[-18,-13],[-8,-24],[-7,-33],[69,-24],[78,-19],[39,-4]],[[5142,209],[-14,-32],[-15,-23],[-2,-8],[45,-19],[45,-19],[46,-19],[45,-19],[49,-21],[14,-6]],[[5425,13],[-14,-1],[-14,-2],[-10,-2],[-7,0],[-9,0],[-37,0],[-5,1],[-51,7],[-46,0],[-7,0],[-51,0],[-2,0],[-26,-4],[-23,-4],[-3,0],[-33,0],[-15,0]],[[4897,90],[-5,10],[-28,24],[-24,30],[-7,5],[0,5],[-26,30],[-26,20],[-49,26],[-16,9]],[[4716,249],[11,47],[52,218],[-94,44],[7,55]],[[4692,613],[18,72]],[[4710,685],[8,32],[1,3],[29,109]],[[6407,17],[-36,-1],[-22,0],[-219,0],[-37,0],[-18,0],[-1,0],[-8,0],[-6,-2],[-9,-2],[-12,-4],[-21,8],[-16,0],[-16,0],[-16,0],[-75,0],[-29,-5],[-3,0],[-4,-1],[-5,-1],[-2,0],[-5,-1]],[[5847,8],[7,10],[11,36],[7,4],[-2,9],[5,21],[20,57],[16,35],[8,3]],[[5919,183],[-1,9],[26,52],[6,2],[-2,7],[22,44],[10,12],[15,13],[8,5],[11,-1]],[[6014,326],[9,-2],[20,7],[18,8],[23,14],[8,9],[9,10],[9,14],[0,10],[10,5],[24,38],[14,22],[22,33],[8,21],[14,53],[-3,12]],[[6199,580],[24,8],[4,1],[3,1]],[[6230,590],[8,-26],[27,-48],[47,-88],[4,-8],[9,-19],[7,-15],[6,-17],[11,-26],[6,-25],[6,-20],[8,-36],[6,-38],[10,-64],[6,-37],[10,-70],[5,-31],[1,-5]],[[5010,417],[18,37],[30,15],[251,-99],[-19,-66],[-35,-116],[-46,18],[-18,3],[-39,-1],[-10,1]],[[6626,456],[-15,6],[-15,12],[-39,14],[-46,12],[-22,11],[-37,-3],[-12,2],[-34,14],[-18,4],[-31,8],[-22,11],[-20,11],[-42,28],[-17,5],[-5,1],[-10,0],[-1,0],[-10,-2]],[[6199,580],[-4,11],[-1,3],[-4,24],[-13,66],[-9,-15]],[[6168,669],[6,31],[2,13],[1,6],[-4,3],[-4,3],[-5,32],[-5,26],[1,2],[10,16],[-13,11],[-4,4],[-3,17],[-3,30],[-2,35],[0,5],[-1,4],[-5,53],[-2,21],[-9,8],[8,8],[2,2],[-4,21],[-13,54],[-4,14],[-11,4]],[[6103,1246],[38,-14],[46,-16],[47,-17],[36,-13]],[[6270,1186],[25,-9]],[[6295,1177],[31,-11],[43,-15],[10,-1]],[[6379,1150],[-6,-8],[-13,-41],[2,-8],[-5,-7],[-14,-44],[2,-8],[-6,-6],[-5,-14],[-9,-30],[1,-11],[64,-54]],[[6390,919],[-31,-50],[59,-50],[8,-5],[14,-4],[36,-24],[7,-8],[7,-24],[3,-6],[20,-60],[5,-14],[5,-9],[6,-6],[27,-20],[12,-10],[4,-9],[-6,-8],[-8,-8],[-4,-12],[13,2],[18,4],[10,-10],[23,-48],[9,-21],[7,-20],[-1,-35],[-7,-8]],[[6480,1068],[30,51],[30,50],[29,51],[4,4],[27,46],[100,-86],[93,-79],[7,-4],[101,-86],[88,-76],[7,-11]],[[6996,928],[-4,-12],[-53,-89],[-29,-49],[-30,-50],[-32,26],[-68,59],[-101,85],[-99,85],[-100,85]],[[7421,642],[-1,3],[-4,5],[-11,8],[-3,3],[-2,4],[-2,2],[-4,3],[-7,9],[-5,5],[-16,13],[-1,4],[-5,1],[-9,8],[-23,19],[-18,11],[-18,15],[-6,5],[-10,7],[-5,4],[-4,2],[-1,3],[-2,0],[-8,9],[-10,12],[-1,6],[-3,3],[-3,3],[-3,5],[-3,3],[-3,5],[-4,1],[-5,2],[-3,5],[-5,2],[-4,1],[-5,3],[-3,6],[-4,6],[-5,4],[-8,3],[-8,2],[-6,-1],[-6,-1],[-9,0],[-10,2],[-6,7],[-5,10],[-3,9],[-2,6],[-5,7],[-3,7],[-14,11],[-7,5],[-20,17],[-6,6],[-5,4],[-7,3],[-18,13],[-3,5],[0,11],[-3,2],[-1,4],[-2,-2],[-2,1],[-1,7],[1,6],[1,8],[3,7],[8,18],[3,4],[3,2],[3,3],[3,4],[2,5],[6,17],[3,16],[1,7],[0,4],[0,2],[-2,5],[-3,7]],[[7064,1105],[34,30]],[[7098,1135],[40,48],[34,44],[35,46],[34,58],[30,50],[30,51]],[[7301,1432],[29,51],[5,74],[-23,6],[-75,14],[-1,0],[23,40],[34,57],[14,2],[32,-27],[53,-8],[13,14],[72,84],[9,-7],[3,18],[9,15],[7,4],[19,4]],[[7524,1773],[50,-43],[37,-31],[19,30],[12,20],[30,50],[25,41],[65,110],[7,11],[24,39],[30,50],[30,51],[55,92],[-19,-2],[12,21]],[[7901,2212],[24,-19],[-13,-36],[-29,-43],[-26,-52],[-83,-110],[1,-2],[-1,-9],[1,-5],[3,-3],[8,-8],[6,-5],[3,0],[3,-1],[4,-3],[5,-1],[4,0],[4,0],[4,2],[2,3],[1,4],[1,5],[-1,5],[0,4],[2,2],[2,2],[2,1],[7,1],[7,-1],[7,-2],[8,-9],[8,-6],[4,-4],[3,-3],[5,-2],[5,-1],[5,0],[4,2],[4,2],[3,5],[6,6],[1,1],[3,1],[2,1],[4,5],[1,3],[2,2],[2,1],[2,-1],[2,-1],[4,-6],[45,75],[-1,4],[28,49],[2,0],[2,0],[2,-1],[1,-3],[0,-2],[-30,-52],[-42,-72],[5,-3],[7,11],[5,-4],[33,57],[3,4],[6,5],[6,-4],[-1,-9],[-5,-8],[-40,-65],[2,-1],[-2,-5],[10,-7],[39,66],[6,10],[8,5],[4,-6],[-2,-7],[-7,-13],[-36,-59],[-2,-5],[9,-7],[37,62],[7,12],[5,-5],[-8,-13],[-12,-21],[20,-16],[50,-42],[5,-4],[1,1],[37,62],[6,6],[14,-11],[-42,-72],[29,-25],[43,70],[8,-6],[7,-5],[-37,-63],[-5,-9],[21,-17],[10,-8],[-6,-10],[10,-10],[6,-1],[7,-1],[8,1],[7,1],[5,0],[7,-1],[5,-3],[4,-2],[6,-8],[7,4],[-3,3],[-1,3],[-1,4],[0,4],[2,4],[2,3],[1,1],[10,4],[13,3],[11,1],[10,0],[37,-26],[23,-18],[-8,-6],[6,-4],[-7,-12],[-131,-45],[-31,-12],[-6,-4],[-5,-6],[-4,-4],[-1,-3],[0,-4],[1,-2],[5,-3],[6,-2],[6,-1],[6,0],[21,7],[118,42],[20,10],[61,21],[14,-15],[-22,-24],[-118,-41],[-5,-3],[-5,-4],[-6,-8],[-1,-3],[0,-3],[1,-2],[7,-1],[7,-1],[9,2],[77,27],[73,27],[2,-13],[8,3],[-13,-65],[-26,-130],[-17,-19],[-194,-66],[21,-85],[176,63],[6,-26],[-187,-65],[-10,-4],[-25,23],[-5,-5],[-109,101],[-42,37],[-4,1],[-4,0],[-3,-1],[-4,-2],[-3,-3],[-2,-4],[-2,-4],[0,-5],[1,-5],[1,-3],[13,-13],[143,-124],[-20,-34],[148,-131],[-14,-22],[-147,130],[-44,-70],[245,-217],[2,-1],[2,-2],[1,-3],[0,-4],[-1,-4],[-36,-58],[-3,-2],[-3,-1],[-2,0],[-3,2],[-143,127],[-18,-30],[-2,-2],[-3,0],[-1,0],[-1,-3],[1,-2],[0,-3],[-1,-2],[-3,-5],[-23,-35],[61,-52],[2,-3],[1,-5],[0,-4],[-1,-5],[-2,-4],[210,-182],[-3,-6],[-93,-602],[-841,626],[-1,0]],[[6269,2023],[-48,29]],[[6221,2052],[5,14],[5,22],[3,18],[-48,28],[-7,7],[62,45],[10,17],[-16,43],[-12,31]],[[6223,2277],[47,34],[10,7],[37,18],[15,-1],[44,-38],[41,-35],[14,-11]],[[6221,2052],[-77,-107],[-29,44],[-83,127],[-4,4],[-25,-24],[-10,-9],[-35,-33],[-45,-42],[-17,-16],[-9,-7],[-2,-2],[-5,-3],[-9,-8],[-10,-8]],[[5809,2186],[36,17],[13,6],[33,22],[4,3],[23,18],[20,12],[6,6],[12,12],[25,24],[14,13],[21,21],[17,22],[29,36],[7,9]],[[6069,2407],[3,-2],[100,-86],[51,-42]],[[6811,1622],[-100,85],[-30,-50],[-100,85],[-27,23]],[[6613,2019],[88,-76]],[[6701,1943],[100,-85],[101,-85]],[[6902,1773],[-31,-51],[-30,-50],[-30,-50]],[[6811,1622],[-30,-51],[100,-85],[-30,-50],[-30,-50],[-30,-51],[30,-27],[5,-9],[25,-23],[35,-33],[50,-40],[37,-18],[-5,6],[-1,1],[-3,4],[-2,3],[-6,5],[-7,5],[-4,3],[-3,1],[-5,3],[-5,3],[-3,2],[-4,3],[-2,1],[-2,1],[-5,2],[-6,6],[-1,1],[-1,2],[-1,1],[-6,3],[-1,2],[-2,3],[-7,3],[-26,23],[-3,3],[-8,7],[-9,6],[-1,2],[0,6],[0,2],[2,2],[5,1],[1,1],[1,3],[3,3],[4,3],[8,3],[5,1],[8,0],[3,-1],[3,-2],[2,-3],[3,-2],[4,-2],[2,-3],[4,-3],[5,-3],[4,-3],[4,-5],[1,-1],[2,1],[5,1],[3,0],[4,-1],[3,-2],[3,-1],[4,0],[3,1],[2,0],[1,-2],[1,-2],[2,-3],[2,-6],[3,-4],[1,0],[1,-1],[2,-1],[2,-3],[2,-3],[4,-3],[3,-3],[2,-4],[3,-3],[4,-4],[3,-4],[4,-3],[6,-2],[13,-2],[1,-1],[1,-2],[2,-6],[0,-6],[1,-1],[1,-5],[1,-1],[2,1],[2,-1],[0,-2],[1,0],[2,-2],[2,-6],[1,-3],[14,-9],[5,-4],[4,-5],[4,-3],[4,-2],[3,-3],[2,-2],[1,-3],[4,-1],[5,-4],[6,-6],[3,-2],[0,-4],[1,-2],[2,-2],[3,0],[2,0],[1,-3],[3,-2],[2,-2],[3,0],[5,-4]],[[7064,1105],[-44,-117],[-24,-60]],[[6480,1068],[-30,-50],[-29,-49],[-4,-5],[-27,-45]],[[6379,1150],[-1,12],[13,44],[7,8],[-1,11],[12,41],[8,8],[-2,10],[14,46],[18,60],[6,5],[0,12],[5,19],[7,24],[6,7],[0,11],[12,42],[6,6],[-1,12],[13,43],[6,6],[0,11],[13,47],[5,3],[-2,9],[11,45],[6,9]],[[5521,855],[10,-39],[2,-19],[-1,-26],[-5,-20],[-11,-23],[-12,-17],[-14,-13],[-11,-6],[-5,-3],[-89,-39],[-38,-24],[-26,-19],[-13,-15],[14,-1]],[[5322,591],[-7,-14],[3,-45],[35,-14],[50,-21],[49,-20],[51,-20],[22,-9],[28,-12]],[[4764,816],[12,-11],[11,-21],[12,-31],[13,-19],[15,-10],[7,-5],[14,-4],[13,1],[13,5],[13,9],[56,49],[1,6]],[[7421,642],[1,-2],[0,-6],[-2,-6],[-2,-7],[-4,-5],[-4,-6],[-3,-6],[-3,-7],[-5,-6],[-4,-9],[-3,-7],[1,-3],[1,-1],[0,-2],[-4,-3],[-8,-15],[-7,-10],[-4,-5],[-2,-4],[-3,-10],[-4,-10],[-2,-4],[-1,-4],[-3,-4],[-6,-8],[-4,-4],[-11,-13],[-7,-6],[-9,-10],[-16,-18],[-2,-4],[-2,-5],[-2,-5],[-2,-3],[-9,-13],[-5,-4],[-5,-5],[-2,-3],[-4,-9],[-3,-11],[-2,-3],[-6,-13],[-7,-12],[-2,-8],[-3,-10],[-5,-10],[-3,-10],[-2,-2],[-2,-4],[-2,-5],[-1,-4],[-2,-5],[-4,-6],[-2,-2],[-2,-2],[-3,-1],[-3,-3],[-2,-4],[-2,-5],[-2,-6],[-1,-18],[-1,-13],[0,-13],[1,-3],[0,-7],[2,-9],[1,-2],[3,-4],[4,-4],[3,-1],[2,0],[1,1],[3,0],[1,-2],[4,-5],[4,-3],[4,-2],[4,-3],[4,-4],[7,-10],[5,-4],[5,-5],[3,-4],[3,-6],[1,-4],[0,-5],[1,-2],[1,-1],[2,0],[1,-1],[3,-10],[2,-6],[2,-5],[3,-2],[2,-5],[2,-2],[2,-2],[2,-3],[1,-3],[1,-4],[0,-8],[1,-9],[1,-7],[2,-5],[4,-6],[1,-2],[11,-7],[1,-1],[1,-1],[5,-4],[3,-1],[5,-1],[2,0],[3,2],[5,3],[5,3],[8,3],[7,3],[5,3],[8,6],[6,3],[2,2],[6,8],[1,5],[1,1],[1,1],[2,7],[7,13],[6,16],[-1,4],[0,2],[3,2],[9,2],[8,0],[6,0],[7,-2],[7,-3],[4,-3],[3,-3],[6,-9],[3,-4],[9,-5],[7,-7],[12,-8],[7,-3],[4,-4],[4,-4],[4,-6],[1,-2],[4,-11],[0,-4],[-1,-4],[-2,-3],[-7,-7],[-9,-3],[-6,0],[-11,-2],[-13,-2],[-18,-4],[-13,-1],[-10,-1],[-23,2],[-14,0],[-3,0],[-10,1],[-6,0],[-10,1],[-18,-1],[-20,2],[-17,0],[-7,-1],[-6,1],[-10,2],[-6,0],[-11,-3],[-7,-1],[-10,0],[-5,2],[-6,4],[-7,3],[-3,0],[1,1],[-8,5],[-4,1],[-4,3],[-6,4],[-7,4],[-7,3],[-8,1],[-8,0],[-13,2],[-14,3],[-9,0],[-5,2],[-4,-2],[-7,0],[-4,0],[-4,1],[-3,3],[-6,6],[-5,3],[-4,2],[-6,2],[-8,-1],[-7,2],[-7,2],[-8,2],[-15,2],[-13,2],[-7,1],[-8,-1],[-6,1],[-14,5],[-10,2],[-15,1],[-2,0],[-11,7],[-17,9],[-7,7],[-12,7],[-12,11],[-3,3],[-1,1],[-6,7],[-3,3],[-4,1],[-7,0],[-9,-2],[-7,-3],[-8,-4],[-6,-4],[-4,-2],[-4,-4],[-1,-2],[1,-3],[0,-2],[-1,-1],[-7,-4],[-6,-4],[-11,-10],[-8,-9],[-8,-12],[-3,-6],[-3,-4],[-4,-4],[-3,-4],[-4,-10],[-1,-3],[-3,-1],[-1,-3],[-1,-2],[-1,-2],[-2,-1],[-2,0],[-5,3],[-6,7],[-4,2],[-5,1],[-4,0],[-2,1],[-7,5],[-6,6],[-7,10],[-6,6],[-8,6],[-13,13],[-2,3],[-3,4],[-5,7],[-3,2],[-3,0],[-2,-1],[-6,-3],[-6,-4],[-12,-13],[-8,-11],[-3,-2],[-5,1],[-3,-1],[-3,4],[-4,3],[-1,0],[-10,9],[-8,8],[-9,8],[-11,8],[-2,0],[-6,-4],[-5,-3],[-8,-13],[-13,-16],[-3,-6],[-6,-14],[-4,-4],[-6,-3],[-2,-3],[-5,-7],[-6,-7],[-10,-9],[-2,-1],[-9,-11],[-3,-3],[-4,-10],[-5,-1],[-24,-3]],[[6478,8],[19,14],[22,27],[17,29],[73,84],[23,18],[102,8],[27,7],[109,49],[-20,23],[-12,12],[-22,28],[-10,15],[-6,10],[-5,12],[-3,11],[-3,18],[-37,36],[-49,15],[-48,14],[-29,18]],[[6459,3064],[-7,-18],[-3,-5],[-15,-31],[0,-1],[-10,-19],[-19,-33],[-61,-102],[-5,-9],[-12,-20],[-5,-8],[-14,-23],[-24,-40],[-60,-101],[-30,-50],[-30,-50],[-30,-50],[-25,-41],[-6,-9],[-16,-25],[-18,-22]],[[5955,3188],[1,29],[1,27],[5,31],[7,34],[3,10],[14,1],[6,6],[8,2],[28,-6],[7,-2],[255,23],[55,5],[51,4]],[[6396,3352],[105,9],[9,2],[42,7],[2,0]],[[6554,3370],[7,2],[-22,-67],[-12,-36],[-5,-15],[-1,-4],[-4,-13],[-8,-26],[-2,-4],[-17,-52],[-15,-45],[-8,-25],[-8,-21]],[[6358,1739],[-34,-280],[-24,-236],[-5,-46]],[[6295,1177],[-4,1],[-21,8]],[[5987,1582],[4,2],[12,4],[10,4],[9,4],[4,9],[1,2],[-29,101],[73,-63],[30,51],[30,50],[21,37],[48,-10],[16,106],[5,6]],[[6830,3127],[4,-54],[-3,-14],[4,-17],[3,-59],[-5,-11],[2,-14],[-1,-8],[-8,-35],[-6,-9],[1,-11],[-9,-41],[-5,-6],[-16,-67],[-5,-5],[-12,-53],[2,-7],[-5,-6],[-11,-47],[1,-10],[-5,-6],[-11,-48],[2,-10]],[[6747,2589],[-6,-6],[-6,-24],[-5,-23],[2,-10],[-6,-6],[-11,-47],[2,-10]],[[6717,2463],[-6,-7],[-11,-47],[2,-10],[-5,-6],[-11,-47],[1,-10],[-5,-6],[-11,-47],[1,-10]],[[6459,3064],[4,-5],[4,-3],[16,-13],[7,-7],[3,-2],[11,-9],[59,-51],[30,51],[30,51],[19,31],[4,7],[8,-4],[104,11],[18,2],[5,0],[27,2],[14,2],[8,0]],[[7405,3165],[16,-26],[64,-103],[-1,-3],[1,-3],[1,-3],[42,-62],[1,-1],[2,-1],[3,-1],[3,0],[3,2],[3,3],[1,3],[-1,3],[23,20],[4,3],[4,2],[6,1],[5,0],[5,-1],[1,-1],[11,10],[196,-311],[78,-122],[-13,-11],[-22,-1],[0,-12],[-157,-13],[-1,0],[-1,0],[-31,-8],[-114,-12],[4,-5],[4,-10],[4,-11],[3,-11],[3,-8],[5,-10],[6,-9],[6,-7],[6,-6],[7,-5],[8,-4],[8,-3],[9,-2],[9,-1],[5,0],[49,-6],[12,-2],[12,0],[11,0],[10,2],[2,-4],[8,4],[13,0],[17,2],[13,2],[6,1],[7,1],[7,-1],[4,0],[4,0],[4,-1],[13,0],[18,0],[18,3],[30,4],[1,0],[2,-1],[2,-2],[1,-3],[0,-3],[0,-3],[-4,-4],[-4,-3],[-5,-2],[-15,-4],[-12,-3],[-13,-2],[-3,-1],[-2,1],[-7,-2],[-7,-3],[-6,-3],[-5,-4],[-1,-2],[-2,-2],[-3,0],[-2,0],[-9,-1],[-11,-2],[-9,-4],[-9,-4],[-3,-2],[-3,-3],[-4,-1],[-9,-2],[-7,-3],[-7,-4],[-4,-4],[-2,-2],[-2,0],[-3,0],[-3,1],[-4,-1],[-3,-2],[-3,-3],[-4,-7],[-4,-5],[-5,-3],[-5,-3],[-4,-2],[-3,0],[-2,2],[1,-2],[-7,2],[-6,0],[-7,-1],[-6,-3],[-4,0],[-4,1],[-2,2],[-3,4],[-2,3],[-5,-1],[-3,-1],[-1,-2],[0,-1],[-11,-3],[-12,-1],[-10,0],[-7,0],[-8,2],[-7,2],[-7,4],[-4,3],[-22,26],[-20,23]],[[7518,2386],[-3,2],[-3,1],[-5,-1],[-13,10],[-12,9],[-8,8],[-8,7],[-7,5],[-10,6],[-9,5],[-10,3],[-6,0],[-5,-1],[-5,-3],[-4,-4],[-4,-5],[-2,-5],[23,-21],[8,1],[9,0],[8,-1],[6,-2],[6,-3],[5,-5],[6,-5],[4,-6],[3,-7],[2,-6],[2,-9],[1,-4],[1,-9],[0,-8],[-1,-8],[-2,-8],[-3,-7],[-3,-5],[1,-4],[0,-4],[-1,-4],[-4,-5],[-1,-5],[-1,-6],[0,-7],[-3,-9],[-1,-6],[-13,-14],[-4,-4],[-6,-9],[-4,-5],[-5,-1],[-28,24],[-56,48]],[[7353,2299],[-91,78],[-12,-23],[-4,-21],[0,-23],[-5,5],[-40,35],[-4,-4],[-14,12],[-10,9],[-5,-3],[-2,2],[-22,5],[-6,-5],[3,-20],[-2,-13],[-5,-10],[-7,-11],[0,-5],[-1,-3],[2,-13],[-5,-10],[12,-11],[-20,-32],[33,-28],[-5,-21],[-1,-2],[97,-83],[6,-16]],[[7245,2088],[-6,-4],[-15,-24],[-5,-12],[-1,-17],[1,-14],[17,-59]],[[7236,1958],[-9,-3],[-15,-2],[-7,1],[-8,0],[-16,7],[-19,11],[-18,13],[-28,31],[-10,15],[-13,20]],[[7093,2051],[-5,7],[-29,64],[-1,3],[-2,5],[-9,30],[-5,18],[-8,36],[-3,12],[-8,46],[-3,19],[-3,16],[-8,33],[-11,24],[-13,20],[-17,17],[-96,81],[-100,85],[-25,22]],[[6830,3127],[11,-15],[40,3],[208,21],[315,31],[1,-2]],[[7144,4009],[-1,-2],[-3,-10],[-3,-10],[-1,-10],[-1,-5],[3,1],[1,-14],[-3,-4],[1,-12],[0,-2],[7,0],[0,-3],[-2,0],[2,-44],[-1,-2],[-1,-3],[-3,-1],[1,-5],[2,0],[3,-2],[1,-3],[1,-3],[1,-34],[1,-2],[2,-1],[9,-1],[1,-2],[3,0],[0,-4],[-5,-1],[8,-7],[7,-8],[1,-6],[1,-6],[0,-6],[-1,-6],[-2,-3],[-3,-3],[-3,-2],[-7,0],[-6,-2],[-5,-3],[-5,-2],[-4,0],[-4,1],[-7,5],[-4,1],[-2,0],[-60,-10],[-45,-5],[-4,-2],[-4,-1],[-13,1],[-2,-3],[2,-20],[4,-3],[16,6],[8,3],[6,0],[6,0],[5,-2],[4,-3],[4,-3],[3,-3],[6,-11],[1,-2],[21,5],[53,11],[31,0],[29,-1],[15,-7],[3,-15],[0,-24],[2,-56],[-5,-6],[-5,-14],[-5,-16],[15,1],[4,-1],[3,-2],[1,-2],[0,-3],[0,-2],[-2,-1],[-5,-3],[-2,-2],[0,-2],[1,-19],[3,-35],[207,18],[17,-285],[-489,-45],[-1,3],[15,2],[-1,8],[-4,0],[-4,-2],[-3,-2],[-3,-2],[-4,-2],[-2,-1],[-1,-2],[0,-3],[-2,-1],[-2,-1],[-1,0],[-4,4],[-2,1],[-2,0],[-5,-4],[-4,-1],[-4,0],[-15,3],[-2,-1],[-1,-1],[-1,-3],[-1,-1],[-2,0],[-2,1],[-3,1],[-3,-1],[-2,-1],[-2,-3],[-1,-2],[-1,-4],[-1,-3],[0,-4],[-1,-6],[-1,-1],[-2,-2],[-3,0],[-2,2],[-7,-1],[-15,-2],[-5,-2],[-5,0],[-2,-3],[-4,-5],[-2,-2],[-5,0],[2,-34],[17,0],[35,3],[516,43],[3,-8],[5,-14]],[[6554,3370],[17,51],[2,4],[11,40],[5,31],[4,51],[1,31],[-3,0],[-6,101],[-8,36],[-15,66],[-2,10],[-11,95],[0,26],[-1,51],[1,24],[2,34],[-2,125],[-2,46]],[[6547,4192],[6,1],[6,0],[45,4],[0,5],[52,5],[45,3],[6,-2],[50,4],[53,5],[52,5],[13,-206],[46,4],[10,-16],[6,-7],[6,-6],[9,-3],[10,0],[12,0],[57,5],[113,16]],[[5717,4916],[7,-20],[1,-3],[1,-6],[0,-9],[2,-33],[6,-103],[9,-104],[6,-104],[6,-105],[4,-7],[6,-86],[-4,-8],[4,-7],[6,-87],[-3,-8]],[[5768,4226],[3,-8],[6,-89],[-3,-7]],[[6473,4624],[0,-12],[1,-12],[-52,-5],[-53,-5],[-51,-5]],[[6318,4585],[-52,-4],[-51,-5],[-52,-5],[-52,-4],[-51,-5],[-52,-5],[-51,-4],[6,-103]],[[5963,4450],[-51,-5],[-17,-2],[-19,-2],[-1,-4],[-12,-41],[-11,-33],[-11,-27],[-4,-10],[-3,-9],[-14,-36],[-1,-8],[-8,-41]],[[5811,4232],[-12,-1],[-12,-1],[-10,0],[-9,-4]],[[6279,4375],[-6,103],[52,4],[-7,103]],[[6520,4500],[3,-12],[9,-90]],[[6532,4398],[-10,-1],[-2,0],[-33,-3],[6,-103],[-52,-4],[-52,-5]],[[6389,4282],[-51,-5],[-52,-4],[-7,102]],[[6954,4755],[1,-18],[100,9],[7,1],[3,-29],[-164,-15],[-2,-6],[-2,-13],[1,-6],[-4,-9],[-16,-39],[-4,-7],[-8,-15],[-1,-10],[4,-1],[1,-17],[0,-11],[-2,-2],[-1,-7],[1,-16],[2,0],[0,-17],[-2,-1],[0,-2],[-7,-4],[1,-5],[1,0],[1,-2],[0,-2],[-9,-9],[-1,-6],[1,-2],[2,-1],[2,-1],[2,-1],[1,-2],[-1,-3],[0,-1],[-7,-6],[-6,-7],[-3,-3],[-3,-3],[-5,-1],[-11,-2],[1,-8],[18,3],[1,-6],[6,-5],[3,5],[5,-2],[2,-3],[5,-2],[-5,-16],[15,-7],[5,17],[38,1],[0,-7],[12,0],[0,11],[6,0],[4,-85],[22,-17],[21,2],[-9,154],[8,1],[10,-145],[37,4],[-1,13],[-10,-1],[-2,8],[-4,-1],[-8,129],[4,0],[1,7],[12,2],[2,-7],[4,0],[1,-3],[8,1],[10,-147],[44,4],[-12,180],[9,1],[12,-180],[20,2],[3,188],[3,0],[0,5],[8,0],[2,11],[15,-1],[2,-10],[8,0],[-2,-207],[-122,-12],[60,-97],[2,1],[2,0],[2,-2],[3,-5],[1,-4],[1,-5],[-1,-4],[16,1],[-8,118],[27,2],[10,-160],[29,3],[-16,253],[11,0],[16,-252],[23,2],[25,2],[-16,258],[1,2],[12,1],[2,-3],[17,-283],[-110,-22],[0,-7],[-11,-1],[1,-21],[3,0],[5,0],[6,-85],[-1,-7],[-2,-7],[-4,-9]],[[6547,4192],[-3,54],[-3,50],[-1,23],[-8,79]],[[6034,4146],[7,-102],[6,-103],[-52,-4],[-14,-2],[-21,-1]],[[5960,3934],[-7,15],[-10,16],[-12,17],[-15,18],[-27,30],[-31,33],[-19,31],[-10,20],[-6,13],[-2,6],[-6,27],[-6,34],[0,32],[2,6]],[[5963,4450],[52,4],[51,5],[2,-7],[7,-95],[-54,-5],[-52,-5],[7,-103],[6,-102],[52,4]],[[6060,3736],[7,-103],[5,-103],[-50,-4],[-21,-2],[-8,-1],[-1,-6],[-5,-33],[-6,-34],[-5,-25],[-15,-68],[-6,-31],[-3,-11],[-9,-43],[-6,-30]],[[5960,3934],[6,-14],[9,-28],[5,-26],[3,-33],[6,-104],[20,2],[51,5]],[[6383,3559],[11,-172],[2,-35]],[[6060,3736],[52,5],[47,4],[9,1],[47,4]],[[6344,4175],[52,4],[-7,103]],[[6034,4146],[-6,103],[7,1],[37,4],[9,0]],[[6081,4254],[6,-96],[-1,-7],[52,5],[11,-183],[1,-22],[52,4]],[[6081,4254],[50,5],[52,4],[51,5],[-6,103],[51,4]],[[7245,2088],[14,26],[33,-28],[38,64],[7,83],[52,-45],[-4,26],[-32,85]],[[7518,2386],[-7,-28],[11,-14],[15,-23],[3,-29],[0,-31],[0,-35],[34,-25],[46,-10],[58,2],[59,16],[32,35],[34,15],[29,-19],[36,-12],[33,-16]],[[7524,1773],[-73,49],[-16,11],[-20,5],[-40,3],[-32,1],[-17,9],[-12,14],[-7,5],[-18,10],[-10,5],[-8,8],[-8,3],[-14,-2]],[[7249,1894],[1,13],[-7,29],[-6,16],[-1,6]],[[7301,1432],[-100,85],[-77,66],[-23,19],[-100,86],[30,50]],[[7031,1738],[29,49],[6,6],[8,7],[19,9],[10,1],[16,-1],[19,-3],[42,-6],[18,2],[17,10],[5,5],[6,7],[7,12],[6,12],[4,10],[6,25],[0,11]],[[7093,2051],[-12,-13],[-49,-18],[-23,-2],[-31,13],[-7,8],[-1,-9],[-16,-21],[-7,-3],[-7,6],[-15,23],[-17,40],[-1,5]],[[6907,2080],[-9,38],[-9,26],[-17,25],[-12,14],[-25,23],[-4,9],[-8,0],[-68,58],[-3,8],[30,50],[30,50],[-95,82]],[[6907,2080],[-4,-1],[-5,-3],[-2,-1],[-2,-3],[0,-4],[6,-15],[5,-12],[6,-12],[8,-14],[2,-5],[0,-11],[-11,2],[-11,6],[-8,2],[-30,-51],[-30,-49],[-99,85],[-31,-51]],[[6902,1773],[30,50],[99,-85]],[[6139,679],[-53,-20],[-52,-21]],[[6034,638],[-2,6],[-126,74],[-45,18],[16,53],[-17,9],[29,101]],[[5889,899],[14,-11],[26,-19],[10,-8],[16,-40],[26,10],[52,21],[27,-97],[52,21],[27,-97]],[[6168,669],[-2,-14],[-7,-7],[-7,0],[-3,2],[-2,2],[-8,27]],[[5799,518],[-15,-54],[-16,-54],[-114,46],[-16,-54]],[[5322,591],[96,-39],[122,-50],[16,55],[15,55],[1,7],[12,40],[4,7],[3,23],[30,-8],[46,-11],[23,-13],[18,-11],[-7,-26],[-16,-55],[114,-47]],[[6014,326],[-1,20],[12,10],[7,13],[1,6],[0,16],[-7,-2],[-66,39],[-53,31],[-76,45],[-32,14]],[[5799,518],[15,54],[16,55],[15,54],[42,-16],[98,-58],[23,-10],[7,9],[7,15],[12,17]],[[5919,183],[-52,22],[-52,22],[-45,19],[-48,21],[-49,20]],[[5847,8],[-48,7],[-38,-7],[-5,0],[-5,0],[-80,2],[-80,2],[-57,1],[-50,1],[-1,0]],[[2508,786],[1,-145]],[[2509,641],[-48,0],[-48,0],[-48,-1],[-40,0],[-6,3],[-51,80],[-3,4]],[[2410,1087],[1,-160],[1,-142],[48,0],[48,1]],[[2509,641],[48,1],[48,0],[1,-147],[1,-136],[0,-7]],[[2751,496],[1,-143],[48,0],[0,-20],[0,-72]],[[2800,261],[2,-16]],[[2508,786],[48,0],[48,1]],[[2604,787],[48,0],[48,1],[48,0]],[[2748,788],[1,-144],[2,-148]],[[2602,1089],[1,-160],[1,-142]],[[2871,1102],[1,-146],[-55,0],[0,-7],[1,-93],[0,-44]],[[2818,812],[-21,-1],[-1,-22],[-48,-1]],[[2989,545],[-191,-2],[1,-46],[-48,-1]],[[2818,812],[54,1],[54,0],[55,-1]],[[2981,812],[6,-17],[0,-45],[1,-68],[0,-68],[1,-69]],[[3035,1103],[0,-146],[1,-144]],[[3036,813],[-55,-1]],[[3306,1104],[1,-146]],[[3307,958],[-54,0],[1,-150]],[[3254,808],[-6,5],[-49,0],[-53,0],[-56,0],[-54,0]],[[3148,545],[-6,2],[-153,-2]],[[3254,808],[2,-4],[36,-29],[39,-31],[40,-32],[39,-32]],[[3410,680],[-6,-13],[-1,-3],[-63,-113],[-3,-2],[-4,-2],[-185,-2]],[[3568,1068],[12,-7]],[[3580,1061],[-1,-11],[-1,-10],[-3,-43],[-6,-74]],[[3569,923],[0,-9],[-6,-73]],[[3563,841],[-15,-14],[-1,-1],[-11,9],[-19,14],[-45,27],[-44,27],[-44,27],[-36,22],[-10,5],[-3,1],[-28,0]],[[3563,841],[-2,-28],[-5,-54],[-3,-20],[-5,-26],[-9,-26],[-12,-37],[-7,-14],[-16,-33],[-9,-13],[-25,-38],[-7,-10],[-32,-41],[-36,-45],[-1,-2]],[[3394,454],[-3,-4],[-30,-42],[-34,-43]],[[3327,365],[-9,13],[32,41],[28,38],[7,10],[23,29],[13,16],[32,42],[-1,1],[-31,37],[31,55],[-42,33]],[[3327,365],[-2,-3],[-50,-60],[-8,-8],[-27,-25],[-29,-27],[-29,-18],[-3,-2],[-41,-21],[-8,-2]],[[3130,199],[19,26],[7,10],[5,14],[-12,15],[-158,-2]],[[2991,262],[-1,73],[0,71],[159,1],[-1,71],[0,67]],[[3259,8],[-19,0],[-1,0],[-74,0]],[[3165,8],[-10,10],[-93,95],[32,46],[14,10],[22,30]],[[3394,454],[50,-58]],[[3444,396],[-1,-1],[-18,-18],[-23,-26],[-26,-32],[-8,-3],[22,-27],[41,-49],[34,-41],[36,-43],[8,-10]],[[3509,146],[-42,-21],[-21,-11],[-21,-11],[-54,-28],[-41,-21],[-87,-44],[16,-2]],[[3882,780],[-1,-8],[-20,-22],[-31,-38],[-7,-1],[-1,-8],[-52,-62],[-7,-2]],[[3763,639],[-33,40],[-34,41],[-38,46],[-5,3],[19,46],[-82,49],[17,39],[-4,10],[-32,10],[-2,0]],[[3580,1061],[9,-6],[3,-7],[5,2],[50,-30],[7,-7],[8,-1],[56,-33],[11,-9],[4,-8],[5,-2],[69,-85],[2,-6],[5,-1],[16,-20],[22,-26],[1,-5],[3,0],[22,-26],[4,-11]],[[3864,96],[-13,-7],[-103,-53],[8,-22]],[[3756,14],[-21,-3],[-16,-3],[-26,0],[-27,0],[-45,1],[-3,-1],[-105,-1],[-17,0],[-10,0],[-22,-1],[-4,-1],[-8,1],[-69,-5],[-27,-1],[-44,4],[-43,3],[-10,1]],[[3509,146],[20,10],[30,24],[38,31],[69,55]],[[3666,266],[11,-32],[45,23],[50,23],[16,6],[22,-39],[19,-52],[17,-50],[18,-49]],[[4470,8],[-45,0],[-6,0],[-3,0],[-55,0],[-32,-8],[-18,0],[-30,0]],[[4281,0],[-6,13],[-1,1],[-17,31],[-22,30],[-13,19],[-11,9],[-22,38],[-5,11]],[[4184,152],[11,-1],[38,5],[42,14],[36,16],[38,30],[33,40],[18,36],[18,38]],[[4418,330],[8,-17],[16,-50],[2,-15],[24,-45],[8,-9],[21,-19],[8,-11],[24,-53],[9,-21],[9,-31],[-1,-14],[-5,-13],[-9,-9],[-11,-6],[-17,-3],[-34,-6]],[[4144,1254],[5,6],[2,22],[4,18],[6,20],[6,15],[0,9]],[[4167,1344],[5,4],[16,43],[18,51],[16,44],[-1,9],[0,11],[13,38],[12,23],[3,7],[21,36],[6,2]],[[4276,1612],[0,-8],[-23,-41],[109,-78]],[[4362,1485],[-14,-29],[-19,-38],[-24,-47],[-20,-39],[-4,-8],[-24,-47],[-3,-8]],[[4254,1269],[-57,-9],[-31,-6],[-22,0]],[[4254,1269],[-32,-62]],[[4222,1207],[-3,-7],[-23,-47],[-37,-71],[-3,-3],[-13,-26],[0,-5],[-4,-3],[-42,-83],[-1,-6],[-3,-2],[-25,-50],[0,-5],[-4,-2],[-30,-61],[0,-5],[-3,-1],[-30,-59],[0,-4]],[[4001,767],[-27,32],[-15,18],[-23,28],[-29,36],[-37,43],[62,20],[24,26],[13,31],[13,29],[19,47],[18,44],[-41,25],[-48,28],[-60,36]],[[3870,1210],[7,-1],[68,11],[6,4],[4,-2],[55,10],[5,3],[5,-2],[45,8],[6,3],[5,4],[14,2],[5,-2],[4,-3],[39,5],[6,4]],[[4001,767],[-4,-3],[-12,-26],[0,-5]],[[3985,733],[-33,-63]],[[3952,670],[-2,12],[-14,33],[-10,18],[-6,1],[-1,7],[-28,34],[-9,5]],[[3586,1197],[12,0],[-1,-8],[10,0],[8,0],[3,4],[3,-4],[128,0],[4,4],[6,-3],[7,-1],[60,11],[6,3]],[[3832,1203],[5,-1],[29,5],[4,3]],[[3832,1203],[33,80],[17,41],[16,38],[22,26],[-41,33],[43,78],[8,14],[18,41],[18,41],[8,18],[9,21],[15,33],[6,6]],[[4004,1673],[26,-22],[25,-20],[25,-20],[29,-24],[-8,-8],[-4,-12],[-1,-12],[5,-20],[4,-27],[-3,-29],[-29,-81],[36,-29],[8,-4],[7,-4],[19,-5],[24,-12]],[[4240,1815],[-9,-7],[-17,-10],[-15,-5],[-7,2],[-6,-6],[-37,-12],[-8,3],[-4,-6],[-13,-4],[-17,-9],[-12,-10],[-6,1],[-21,-19],[-7,-7],[-30,-28],[-27,-25]],[[4329,1703],[-6,-2],[-21,-36],[0,-8],[-6,-3],[-20,-34],[0,-8]],[[4876,1660],[-24,-2],[-37,-3],[-22,-2],[-36,-3],[-3,61],[-120,-9],[-3,59],[-95,-7]],[[4536,1754],[0,4],[39,59],[4,2],[23,35],[10,15]],[[4888,1615],[-75,-152],[-43,31],[-42,30],[-42,31]],[[4686,1555],[-44,31],[-62,-126],[-43,31],[-5,-10]],[[4532,1481],[-42,31],[-43,31],[-36,26]],[[4411,1569],[4,7],[30,42],[27,39],[2,6],[21,33],[3,1],[0,5],[30,44],[4,2],[4,6]],[[4454,1210],[-63,-125]],[[4391,1085],[-42,31],[-43,30]],[[4306,1146],[-43,31],[-41,30]],[[4362,1485],[24,47],[5,11],[20,26]],[[4532,1481],[-58,-115],[-63,-126],[43,-30]],[[4748,829],[-14,10],[22,44],[8,16],[19,75]],[[3165,8],[-77,0],[-39,1],[-32,-1],[-29,0],[-45,0],[-74,0],[-5,0],[-36,0],[-12,0],[-17,0],[-8,0],[-2,0],[-43,8],[-25,-7],[-2,-1],[-19,0],[-2,0],[-10,-2],[-12,-2],[-26,-4],[-20,0],[-28,0],[-19,3],[-8,2],[-9,1],[-1,0],[-11,2],[-38,0],[-39,0],[-14,0],[-2,0],[-1,0],[-7,0]],[[2800,261],[27,0],[164,1]],[[4653,23],[-9,1],[-11,-2],[-48,-6],[-8,-1],[-37,-3],[-46,-4],[-24,0]],[[4418,330],[20,43]],[[4438,373],[6,2],[115,-36],[17,-5],[29,-13],[30,-19],[60,-40],[9,-7],[12,-6]],[[4820,1127],[-3,-7],[-21,15],[-22,16],[-44,31],[-42,30],[-44,32]],[[4644,1244],[63,125],[-42,30],[-42,31],[63,125]],[[4644,1244],[-62,-126]],[[4582,1118],[-42,30],[-43,31],[-43,31]],[[4710,685],[-39,28],[-42,31]],[[4629,744],[63,126],[-43,31],[-44,31],[62,124],[-42,30],[-43,32]],[[4457,868],[-63,-126],[-43,31],[-63,-125]],[[4288,648],[-42,31],[63,125],[-43,31],[-43,31]],[[4223,866],[63,125],[-43,30],[63,125]],[[4391,1085],[43,-31],[43,-30],[-63,-126],[43,-30]],[[4629,744],[-43,31],[-43,31],[-43,31],[-43,31]],[[4223,866],[-63,-125],[-41,-82],[-46,25],[-47,26],[-41,23]],[[4288,648],[43,-31],[43,-30],[-27,-54],[-48,-103]],[[4299,430],[-8,1],[-32,22],[-4,7],[-9,1],[-28,19],[-7,9]],[[4211,489],[-9,2],[-29,20],[-5,7],[-9,2],[-31,21],[-4,7],[-5,7],[-30,21],[-9,1],[-4,8],[-32,21],[-7,1],[-4,6],[-31,21],[-9,2],[-5,8],[-29,19],[-7,7]],[[4184,152],[-5,11],[-11,39],[0,8],[-32,10],[-42,22],[24,51],[6,12]],[[4124,305],[17,36],[45,95],[25,53]],[[4299,430],[5,-8],[20,-14],[11,-5],[8,0]],[[4343,403],[8,-6],[38,-12],[3,6],[37,-11],[9,-7]],[[4692,613],[-61,21],[-50,16],[-51,15],[-24,4],[-22,8],[-4,4],[-63,-125],[-24,-49],[-3,-4],[-43,-89],[-4,-11]],[[3681,278],[-38,46],[32,37],[40,46],[-71,86],[31,36],[30,35],[3,9],[4,11]],[[3712,584],[20,15],[30,33],[1,7]],[[3952,670],[-28,-57],[-8,-14],[-5,-12],[-6,-10],[-35,-52],[-5,-7],[-37,-52]],[[3828,466],[-19,-27],[-13,-18],[-34,-47],[-9,-13],[-42,-59],[-30,-24]],[[3712,584],[-9,-7],[-8,0],[-7,-11],[-60,-41],[-10,-1],[-2,-7],[-78,-53],[-10,-1],[-2,-7],[-34,-23],[-25,-19],[-23,-18]],[[3681,278],[-15,-12]],[[3828,466],[12,-42],[53,21],[52,22],[30,-104],[26,-94]],[[4001,269],[-27,-10],[-28,-11],[-28,-11],[-26,-11],[14,-50],[14,-53],[-56,-27]],[[4124,305],[-13,8],[-27,-11],[-28,-11],[-27,-11],[-28,-11]],[[4281,0],[-12,0],[-15,0],[-27,8],[-16,0],[-1,0],[-20,0],[-86,0],[-20,0],[-7,0],[-11,1],[-7,1],[-5,1],[-5,1],[-25,4],[-42,1],[-2,-5],[-2,-4],[-4,2],[-5,2],[-4,2],[-4,2],[-20,0],[-1,-1],[0,-1],[-16,-2],[-14,-2],[-14,-2],[-57,2],[-4,2],[-68,4],[-11,-2]],[[6478,8],[-28,4],[-17,2],[-11,1],[-8,1],[-7,1]],[[9806,6340],[38,-92],[11,-26],[12,-29],[12,-28],[29,-69],[5,-12],[5,-11],[30,-72],[4,-10],[3,-9],[5,-11],[39,-93],[-143,6],[-39,52],[-3,50],[-8,354]],[[6358,1739],[5,-1],[29,-7]]],
"transform":{"scale":[0.000018704970563955877,0.000012430843125841072],
"translate":[-122.51494800050519,37.70813100002812]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment