",
6 | "description":"Visualizing realtime Twitter data using D3.js, node and several other things and libs",
7 | "scripts": {
8 | "start": "node app"
9 | },
10 | "dependencies": {
11 | "topojson": "1",
12 | "body-parser": "^1.8.2",
13 | "errorhandler": "^1.1.1",
14 | "express":"^4.13.3",
15 | "express-session": "^1.7.2",
16 | "method-override": "^2.1.2",
17 | "morgan": "^1.2.2",
18 | "multer": "^0.1.3",
19 | "serve-favicon": "^2.0.1",
20 | "request": "^2.53.0",
21 | "xml2js": "^0.4.10",
22 | "socket.io":"^1.3.7",
23 | "twit":"^2.1.0",
24 | "oauth":"0.9.14",
25 | "request": "2.53.0",
26 | "xml2js": "0.4.16"
27 | }
28 | }
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2016 Nenad Golubovic
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | what's going on
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/public/js/sockety.js:
--------------------------------------------------------------------------------
1 | var sockety = (function(){
2 |
3 | var socket, streamon = false;
4 |
5 | var emitMessage = function(signal) {
6 | if(socket) {
7 | socket.emit(signal);
8 | } else {
9 | console.log("Socket broken.");
10 | }
11 | };
12 |
13 | var newdata = function(tweet){
14 |
15 | if(!streamon){
16 | streamon = true;
17 | var connecting = document.querySelector('.connecting');
18 | connecting.remove();
19 | }
20 |
21 | var formatedTweet = {
22 | retweets: tweet.retweets,
23 | faves: tweet.faves,
24 | longitude: helpers.formatLocation(tweet.coords).straight[0],
25 | latitude: helpers.formatLocation(tweet.coords).straight[1],
26 | coords: tweet.coords,
27 | text: tweet.text,
28 | user: tweet.user,
29 | time: tweet.time,
30 | retweeted_status: tweet.retweeted_status
31 | };
32 |
33 | if(geomaniac.tweetLocations.length < 1000)
34 | geomaniac.tweetLocations.push(formatedTweet);
35 | else {
36 | geomaniac.tweetLocations.pop();
37 | geomaniac.tweetLocations.unshift(formatedTweet);
38 | }
39 | }
40 |
41 | var load = function(){
42 |
43 | if(io !== undefined) {
44 | console.log('sockety on...');
45 |
46 | // Here you create the connection with the server
47 | socket = io.connect();
48 |
49 | // This will listen when the server emits the "connected" signal
50 | // informing to the client that the connection has been stablished
51 | socket.on("connected", function(r) {
52 | // Here the client tells the server to "start stream"
53 | emitMessage("streamon");
54 | console.log('Streaming ....');
55 | // This will listen to the "new tweet" signal everytime
56 | // there's a new tweet incoming into the stream
57 | socket.on("newdata", newdata);
58 | });
59 |
60 | socket.on('disconnected', function(){
61 | emitMessage("disconnect");
62 | });
63 | }
64 | };
65 |
66 | return {
67 | load: load,
68 | newdata: newdata
69 | };
70 | })();
--------------------------------------------------------------------------------
/app.js:
--------------------------------------------------------------------------------
1 | // datalove <3
2 | // dependencies
3 | var http = require('http'),
4 | express = require('express'),
5 | app = express(),
6 | path = require('path'),
7 | favicon = require('serve-favicon'),
8 | twit = require("twit"),
9 | //logger = require('morgan'),
10 | //methodOverride = require('method-override'),
11 | //session = require('express-session'),
12 | //bodyParser = require('body-parser'),
13 | //multer = require('multer'),
14 | //errorHandler = require('errorhandler'),
15 | oauth = require('oauth');
16 | routes = require('./shared/routes');
17 |
18 | // all environments
19 | app.set('port', process.env.PORT || 3001);
20 | //app.use(logger('dev'));
21 | //app.use(methodOverride());
22 | // app.use(session({ resave: true,
23 | // saveUninitialized: true,
24 | // secret: 'bla'
25 | // }));
26 | //app.use(bodyParser.json());
27 | //app.use(bodyParser.urlencoded({ extended: false /*true*/ }));
28 | //app.use(multer());
29 | app.use(express.static(path.join(__dirname, 'public')));
30 |
31 | app.get('*', function(res, req, next){
32 | res.header('X-XSS-Protection' , '1; mode=block');
33 |
34 | next();
35 | });
36 |
37 | // error handling middleware should be loaded after the loading the routes
38 | // if ('development' == app.get('env')) {
39 | // app.use(errorHandler());
40 | // }
41 |
42 | var server = http.createServer(app),
43 | io = require("socket.io").listen(server, { log: false });
44 |
45 | global.io = io;
46 | global.oauth = oauth;
47 | global.twit = twit;
48 | global.app = app;
49 | global.users = [];
50 | global.stream;
51 |
52 |
53 | routes.stream(function(){
54 | console.log('Streaming should start ...');
55 | })
56 |
57 | /*global.appconfig = appconfig.config(app, oauth);
58 | global.io = require("socket.io").listen(server, { log: false });
59 | global.twit = require("twit");
60 | global.streaming = require('./shared/streaming');
61 | global.app = app;
62 | global.oauth = oauth;*/
63 |
64 | server.listen(app.get('port'), function(){
65 | console.log('Express server listening on port ' + app.get('port'));
66 |
67 |
68 | });
--------------------------------------------------------------------------------
/public/js/geojson-utils.js:
--------------------------------------------------------------------------------
1 | // part of:
2 | // https://github.com/maxogden/geojson-js-utils/blob/master/geojson-utils.js
3 | // modified to suit my needs
4 | (function () {
5 | var gju = this.gju = {};
6 |
7 | // Export the geojson object for **CommonJS**
8 | if (typeof module !== 'undefined' && module.exports) {
9 | module.exports = gju;
10 | }
11 |
12 | function boundingBoxAroundPolyCoords (coords) {
13 | var xAll = [], yAll = []
14 |
15 | for (var i = 0; i < coords[0].length; i++) {
16 | xAll.push(coords[0][i][1])
17 | yAll.push(coords[0][i][0])
18 | }
19 |
20 | xAll = xAll.sort(function (a,b) { return a - b })
21 | yAll = yAll.sort(function (a,b) { return a - b })
22 |
23 | return [ [xAll[0], yAll[0]], [xAll[xAll.length - 1], yAll[yAll.length - 1]] ]
24 | }
25 |
26 | gju.pointInBoundingBox = function (point, bounds) {
27 | return !(point[1] < bounds[0][0] || point[1] > bounds[1][0] || point[0] < bounds[0][1] || point[0] > bounds[1][1])
28 | }
29 |
30 | // Point in Polygon
31 | // http://www.ecse.rpi.edu/Homepages/wrf/Research/Short_Notes/pnpoly.html#Listing the Vertices
32 |
33 | function pnpoly (x,y,coords) {
34 | var vert = [ [0,0] ]
35 |
36 | for (var i = 0; i < coords.length; i++) {
37 | for (var j = 0; j < coords[i].length; j++) {
38 | vert.push(coords[i][j])
39 | }
40 | vert.push(coords[i][0])
41 | vert.push([0,0])
42 | }
43 |
44 | var inside = false
45 | for (var i = 0, j = vert.length - 1; i < vert.length; j = i++) {
46 | if (((vert[i][0] > y) != (vert[j][0] > y)) && (x < (vert[j][1] - vert[i][1]) * (y - vert[i][0]) / (vert[j][0] - vert[i][0]) + vert[i][1])) inside = !inside
47 | }
48 |
49 | return inside
50 | }
51 |
52 | gju.pointInPolygon = function (p, poly) {
53 | var coords = (poly.type == "Polygon") ? [ poly.coordinates ] : poly.coordinates
54 |
55 | var insideBox = false
56 | for (var i = 0; i < coords.length; i++) {
57 | if (gju.pointInBoundingBox(p, boundingBoxAroundPolyCoords(coords[i]))) insideBox = true
58 | }
59 | if (!insideBox) return false
60 |
61 | var insidePoly = false
62 | for (var i = 0; i < coords.length; i++) {
63 | if (pnpoly(p[1], p[0], coords[i])) insidePoly = true
64 | }
65 |
66 | return insidePoly
67 | }
68 |
69 | // support multi (but not donut) polygons
70 | gju.pointInMultiPolygon = function (p, poly) {
71 | var coords_array = (poly.type == "MultiPolygon") ? [ poly.coordinates ] : poly.coordinates
72 |
73 | var insideBox = false
74 | var insidePoly = false
75 | for (var i = 0; i < coords_array.length; i++){
76 | var coords = coords_array[i];
77 | for (var j = 0; j < coords.length; j++) {
78 | if (!insideBox){
79 | if (gju.pointInBoundingBox(p, boundingBoxAroundPolyCoords(coords[j]))) {
80 | insideBox = true
81 | }
82 | }
83 | }
84 | if (!insideBox) return false
85 | for (var j = 0; j < coords.length; j++) {
86 | if (!insidePoly){
87 | if (pnpoly(p[1], p[0], coords[j])) {
88 | insidePoly = true
89 | }
90 | }
91 | }
92 | }
93 |
94 | return insidePoly
95 | }
96 |
97 | })();
98 |
--------------------------------------------------------------------------------
/public/css/default.css:
--------------------------------------------------------------------------------
1 | body, html { margin: 0px; padding: 0px; }
2 | path { stroke: white; stroke-width: 0.25px; fill: lightsteelblue; opacity:0.6; }
3 |
4 | /*path:hover { fill: green; }*/
5 |
6 | div.tooltip { position: absolute; text-align: center; width: auto; height: auto; padding: 5px;
7 | text-transform: uppercase;
8 | font: 10px monospace; color: #fff; background: #4f4f4f; border: 0px; border-radius: 1px; pointer-events: none; }
9 |
10 | div.locationtip, div.locationtipfade, div.totalstatustip { position: absolute; text-align: left; width: auto; height: auto; padding: 5px;
11 | text-transform: uppercase; z-index: 10; max-width: 300px;
12 | font: 10px monospace; color: #000; background: #dfdfdf; border: 0px; border-radius: 1px; pointer-events: none; }
13 |
14 | div.locationtipfade {
15 | opacity: 0.2;
16 | }
17 |
18 | div.totalstatustip {
19 | text-align: left;
20 | width: 260px;
21 | background: rgba(207, 207, 220, 0.91);
22 | z-index: 11;
23 | line-height: 11px;
24 | }
25 |
26 | div.totalstatustip:after {
27 | content: "";
28 | position: absolute;
29 | top: 0px;
30 | left: -10px;
31 | border-width: 10px 0 0 10px;
32 | border-style: solid;
33 | border-color: #cfcfcf transparent;
34 | display: block;
35 | width: 0;
36 | opacity: 0.9;
37 | }
38 |
39 | div.totalstatustip .left-box {
40 | width: 99%;
41 | padding: 1px !important;
42 | margin: 1px !important;
43 | background-color: #cfcfcf;
44 | display: block
45 | }
46 | div.totalstatustip .right-box {
47 | width: 99%;
48 | padding: 1px !important;
49 | margin: 1px !important;
50 | background-color: #efefef;
51 | display: block;
52 | }
53 |
54 |
55 | div.locationtip:after {
56 | content: "";
57 | position: absolute;
58 | bottom: -10px;
59 | left: 10px;
60 | border-width: 10px 0 0 10px;
61 | border-style: solid;
62 | border-color: #dfdfdf transparent;
63 | display: block;
64 | width: 0;
65 | opacity: 0.9;
66 | }
67 |
68 | body {
69 | background: #111;
70 | }
71 |
72 | .cursor-wait {
73 | cursor: wait;
74 | }
75 |
76 | .cursor-normal {
77 | cursor: default;
78 | }
79 |
80 | .point {
81 | fill: transparent;
82 | stroke: white;
83 | fill-width: 10px;
84 | stroke-width: 2px;
85 | stroke-opacity: .8;
86 | }
87 |
88 | .point-inner {
89 | fill: transparent;
90 | stroke: #336699;
91 | fill-width: 10px;
92 | stroke-width: 2px;
93 | stroke-opacity: .8;
94 | }
95 |
96 | .tweet-spot {
97 | fill: transparent;
98 | stroke: red;
99 | fill-width: 2px;
100 | stroke-width: 2px;
101 | stroke-opacity: .8;
102 | }
103 |
104 |
105 | .stroke {
106 | fill: none;
107 | stroke: #000;
108 | stroke-width: 3px;
109 | }
110 |
111 | .fill {
112 | fill: #fff;
113 | }
114 |
115 | .graticule {
116 | fill: none;
117 | stroke: #defefe;
118 | stroke-width: .5px;
119 | stroke-opacity: .5;
120 | }
121 |
122 | .land {
123 | fill: #888881;
124 | }
125 |
126 | .boundary {
127 | fill: none;
128 | stroke: #fff;
129 | stroke-width: .5px;
130 | }
131 |
132 | .countries {
133 | fill: none;
134 | stroke: #fff;
135 | stroke-width: .5px;
136 | }
137 |
138 | .city {
139 | fill: green;
140 | stroke: #fff;
141 | stroke-width: .5px;
142 | z-index: 9999;
143 | }
144 |
145 | .labels {
146 | font-family: monospace;
147 | text-transform: uppercase;
148 | cursor: default;
149 |
150 | -webkit-user-select: none; /* Chrome/Safari */
151 | -moz-user-select: none; /* Firefox */
152 | -ms-user-select: none; /* IE10+ */
153 |
154 | /* Rules below not implemented in browsers yet */
155 | -o-user-select: none;
156 | user-select: none;
157 | opacity: 0
158 | }
159 | /*.bar {
160 | fill: none;
161 | stroke: url(#line-gradient);
162 | stroke-width: 2px;
163 | }*/
164 |
165 |
166 | body {
167 | overflow: hidden;
168 |
169 | }
170 |
171 | .connecting {
172 | right: 100px;
173 | bottom: 20px;
174 | width: 100px !important;
175 | }
176 |
177 | .twitter-tweet-button{
178 | position: absolute !important; left: 5px !important; bottom: 5px !important;
179 | }
180 |
181 | .adsense{
182 | position: absolute !important; left: 100px !important; bottom: 5px !important; height: 100px; width: 320px; background: #000;
183 | }
--------------------------------------------------------------------------------
/shared/routes.js:
--------------------------------------------------------------------------------
1 | exports.stream = function(next){
2 |
3 | var apiKey = 'l9UXjwAznY0eBFLpftzoTxLmI', // api key
4 | apiKeySecret = '37nAZBNdXIusFjczmTOm6ZX2INxNTV2VkqAmGD1gLljErw83ot', // api key secret
5 | accessToken = '3307057443-AHZEPweUTT3rk2Igbi3ZBZJfMNho22zOgpbQAq5', // access token
6 | accessTokenSecret = 'OHnWcQOFk4vyius60mIrKpbTyOB3bVnV6mzBpEus1qR6l'; // access token secret
7 |
8 | var client = new twit({
9 | consumer_key: apiKey,
10 | consumer_secret: apiKeySecret,
11 | access_token: accessToken,
12 | access_token_secret: accessTokenSecret
13 | });
14 |
15 |
16 | io.sockets.on("connection", function(socket) {
17 |
18 | // The user it's added to the array if it doesn't exist
19 | if(global.users.indexOf(socket.id) === -1) {
20 | console.log('Socket connected for id ' + socket.id);
21 | global.users.push(socket.id);
22 | }
23 |
24 | // Listener when a user emits the "start stream" signal
25 | socket.on("streamon", function() {
26 |
27 | console.log('Stream state is: ' + ( global.stream != undefined) );
28 | // The stream will be started only when the 1st user arrives
29 | if(global.stream == undefined) {
30 | console.log('Stream up and running ...');
31 | console.log('Users count ' + global.users.length);
32 | // 401 fix: sudo ntpdate ntp.org
33 | global.stream = client.stream('statuses/filter', { locations: ['-180,-90,180,90'], replies: 'all' });
34 |
35 | global.stream.on('tweet', function(tweet) {
36 |
37 | if(global.users.length > 0) {
38 |
39 | if(tweet.geo){
40 |
41 | var formatted = {
42 | retweets: tweet.retweet_count,
43 | faves: tweet.favorite_count,
44 | coords: tweet.geo.coordinates,
45 | text: tweet.text,
46 | user: { name: tweet.user ? tweet.user.name: null,
47 | screenName: tweet.user ? tweet.user.screen_name: null,
48 | image: tweet.user ? tweet.user.profile_background_image_url : null },
49 | time: tweet.created_at,
50 | retweeted_status: tweet.retweeted_status
51 | };
52 |
53 | if(global.users.length == 1)
54 | socket.emit("newdata", formatted);
55 | else
56 | socket.broadcast.emit ("newdata", formatted);
57 | }
58 | }
59 | else {
60 | // If there are no users connected we destroy the stream.
61 | // Why would we keep it running for nobody?
62 | global.stream && stream.stop();
63 | global.stream = undefined;
64 | }
65 | });
66 |
67 | global.stream.on('error', function(error) {
68 | throw error;
69 | });
70 | }
71 | });
72 |
73 | // This handles when a user is disconnected
74 | socket.on("disconnect", function(o) {
75 |
76 | // find the user in the array
77 | var index = global.users.indexOf(socket.id);
78 |
79 | if(index != -1) {
80 | // Eliminates the user from the array
81 | global.users.splice(index, 1);
82 | console.log('Socket disconnected for id ' + socket.id);
83 | }
84 |
85 | if( global.users.length == 0){
86 | global.stream && stream.stop();
87 | global.stream = undefined;
88 | }
89 | });
90 |
91 | // Emits signal when the user is connected sending
92 | // the tracking words the app it's using
93 | socket.emit("connected", { locations: '-180,-90,180,90' });
94 | });
95 |
96 | next && next();
97 | }
--------------------------------------------------------------------------------
/public/js/helpers.js:
--------------------------------------------------------------------------------
1 | var helpers = (function(){
2 | var lastXY;
3 |
4 | var formatLocation = function(p, k) {
5 |
6 | var format = d3.format("." + Math.floor(Math.log(k) / .2 - .2) + "f"), straight = [];
7 |
8 | if(p[1] < 0){
9 | straight.push((-format(-p[1])).toString());
10 | }
11 |
12 | if(p[1]> 1){
13 | straight.push(format(p[1]));
14 | }
15 |
16 | if(p[0] < 0){
17 | straight.push((-format(-p[0])).toString());
18 | }
19 |
20 | if(p[0] > 0){
21 | straight.push(format(p[0]));
22 | }
23 |
24 | var nice = (p[1] < 0 ? format(-p[1]) + "°S" : format(p[1]) + "°N") + " "
25 | + (p[0] < 0 ? format(-p[0]) + "°W" : format(p[0]) + "°E");
26 |
27 | return { nice: ((p[1] < 0 ? format(-p[1]) + "°S" : format(p[1]) + "°N") + " "
28 | + (p[0] < 0 ? format(-p[0]) + "°W" : format(p[0]) + "°E")), straight: straight };
29 | };
30 |
31 | var formatTipPosition = function(tipSelector, pointSelector, offset, useMouseLocation){
32 | var tip = d3.select(tipSelector),
33 | lastPoint = d3.selectAll(pointSelector),
34 | lastPoint = lastPoint? lastPoint[0][lastPoint[0].length - 1]: null;
35 | lastPointBB = lastPoint? lastPoint.getBoundingClientRect(): lastXY? { left: lastXY[0], top: lastXY[1] }: null;
36 |
37 | if(useMouseLocation){
38 | //var fi = formatLocation(projection.invert([mousepos.x, mousepos.y]), zoom.scale());
39 | tip.style("top", (mousepos.y + offset[0]) + "px");
40 | tip.style("left", (mousepos.x + offset[1]) + "px");
41 |
42 | } else {
43 | // offset - [top,left,bottom,right]
44 | if(lastPointBB){
45 |
46 | if(offset[0] != 0)
47 | tip.style("top", (lastPointBB.top + offset[0]) + "px");
48 | if(offset[1] != 0)
49 | tip.style("left", (lastPointBB.left + offset[1]) + "px");
50 | if(offset[2] != 0)
51 | tip.style("bottom", (lastPointBB.bottom - offset[2]) + "px")
52 | if(offset[3] != 0)
53 | tip.style("right", (lastPointBB.right - offset[3]) + "px");
54 | }
55 | }
56 | };
57 |
58 | var formatLabels = function(svg, path, projection, cityOpacity, startLongitude){
59 |
60 | svg.selectAll('.labels')
61 | //.attr('d', path.pointRadius(3))
62 | .attr('transform', function(d) {
63 | return 'translate(' + projection(d.geometry.coordinates) + ')';
64 | })
65 | .attr('style', 'font-size: 8px; opacity:' + cityOpacity + ' !important')
66 | .text(function(d) {
67 | return decodeURI(d.properties.city);
68 | })
69 | .attr('class', 'labels')
70 | .attr("mask", function (d) {
71 | // make the range from 0 to 360, so that it's easier to compare
72 | var longitude = Number(d.geometry.coordinates[0]) + 180;
73 | // +270 => -90 => the position of the left edge when the center is at 0
74 | // -value because a rotation to the right => left edge longitude is reducing
75 | // 360 because we want the range from 0 to 360
76 | //var startLongitude = 360 - ((projection.rotate()[0] + 270) % 360);
77 | // the right edge is start edge + 180
78 | var endLongitude = (startLongitude + 180) % 360;
79 | if ((startLongitude < endLongitude && longitude > startLongitude && longitude < endLongitude) ||
80 | // wrap around
81 | (startLongitude > endLongitude && (longitude > startLongitude || longitude < endLongitude)))
82 | return null;
83 | else
84 | return "url(#edge)";
85 | });
86 | };
87 |
88 | var tooltip = function(){
89 |
90 | d3.select('.tooltip').remove();
91 |
92 | var div = d3.select("body").append("div")
93 | .attr("class", "tooltip")
94 | .style("opacity", 0);
95 | };
96 |
97 | var locationtip = function(){
98 |
99 | d3.select('.locationtip').remove();
100 |
101 | var div = d3.select("body").append("div")
102 | .attr("class", "locationtip")
103 | .style("opacity", 0);
104 | };
105 |
106 | var totalstatustip = function(){
107 |
108 | d3.select('.totalstatustip').remove();
109 |
110 | var div = d3.select("body").append("div")
111 | .attr("class", "totalstatustip")
112 | .style("opacity", 0);
113 | };
114 |
115 | var prefixMatch = function(p) {
116 |
117 | var i = -1, n = p.length, s = document.body.style;
118 | while (++i < n) if (p[i] + "Transform" in s) return "-" + p[i].toLowerCase() + "-";
119 | return "";
120 | };
121 |
122 | var loadScript = function(file, type, callback) {
123 | var head = document.getElementsByTagName('head')[0],
124 | script = document.createElement('script');
125 |
126 | script.type = type || 'text/javascript';
127 | script.src = file;
128 | head.appendChild(script);
129 |
130 | var loadtimeout = setTimeout(function(){
131 | callback();
132 | clearTimeout(loadtimeout);
133 | }, 120);
134 | };
135 |
136 | var getRandomInRange = function(from, to, fixed) {
137 | return (Math.random() * (to - from) + from).toFixed(fixed) * 1;
138 | }
139 |
140 | return {
141 | formatLocation: formatLocation,
142 | formatTipPosition: formatTipPosition,
143 | formatLabels: formatLabels,
144 | tooltip: tooltip,
145 | locationtip: locationtip,
146 | totalstatustip: totalstatustip,
147 | prefixMatch: prefixMatch,
148 | loadScript: loadScript,
149 | getRandomInRange : getRandomInRange
150 | };
151 |
152 | })();
--------------------------------------------------------------------------------
/public/json/world-110m-country-names.tsv:
--------------------------------------------------------------------------------
1 | id name
2 | -1 Northern Cyprus
3 | -2 Kosovo, Self-proclaimed
4 | -3 Somaliland
5 | 4 Afghanistan
6 | 8 Albania
7 | 10 Antarctica
8 | 12 Algeria
9 | 16 American Samoa
10 | 20 Andorra
11 | 24 Angola
12 | 28 Antigua and Barbuda
13 | 31 Azerbaijan
14 | 32 Argentina
15 | 36 Australia
16 | 40 Austria
17 | 44 Bahamas
18 | 48 Bahrain
19 | 50 Bangladesh
20 | 51 Armenia
21 | 52 Barbados
22 | 56 Belgium
23 | 60 Bermuda
24 | 64 Bhutan
25 | 68 Bolivia, Plurinational State of
26 | 70 Bosnia and Herzegovina
27 | 72 Botswana
28 | 74 Bouvet Island
29 | 76 Brazil
30 | 84 Belize
31 | 86 British Indian Ocean Territory
32 | 90 Solomon Islands
33 | 92 Virgin Islands, British
34 | 96 Brunei Darussalam
35 | 100 Bulgaria
36 | 104 Myanmar
37 | 108 Burundi
38 | 112 Belarus
39 | 116 Cambodia
40 | 120 Cameroon
41 | 124 Canada
42 | 132 Cape Verde
43 | 136 Cayman Islands
44 | 140 Central African Republic
45 | 144 Sri Lanka
46 | 148 Chad
47 | 152 Chile
48 | 156 China
49 | 158 Taiwan, Province of China
50 | 162 Christmas Island
51 | 166 Cocos (Keeling) Islands
52 | 170 Colombia
53 | 174 Comoros
54 | 175 Mayotte
55 | 178 Congo
56 | 180 Congo, the Democratic Republic of the
57 | 184 Cook Islands
58 | 188 Costa Rica
59 | 191 Croatia
60 | 192 Cuba
61 | 196 Cyprus
62 | 203 Czech Republic
63 | 204 Benin
64 | 208 Denmark
65 | 212 Dominica
66 | 214 Dominican Republic
67 | 218 Ecuador
68 | 222 El Salvador
69 | 226 Equatorial Guinea
70 | 231 Ethiopia
71 | 232 Eritrea
72 | 233 Estonia
73 | 234 Faroe Islands
74 | 238 Falkland Islands (Malvinas)
75 | 239 South Georgia and the South Sandwich Islands
76 | 242 Fiji
77 | 246 Finland
78 | 248 Åland Islands
79 | 250 France
80 | 254 French Guiana
81 | 258 French Polynesia
82 | 260 French Southern Territories
83 | 262 Djibouti
84 | 266 Gabon
85 | 268 Georgia
86 | 270 Gambia
87 | 275 Palestinian Territory, Occupied
88 | 276 Germany
89 | 288 Ghana
90 | 292 Gibraltar
91 | 296 Kiribati
92 | 300 Greece
93 | 304 Greenland
94 | 308 Grenada
95 | 312 Guadeloupe
96 | 316 Guam
97 | 320 Guatemala
98 | 324 Guinea
99 | 328 Guyana
100 | 332 Haiti
101 | 334 Heard Island and McDonald Islands
102 | 336 Holy See (Vatican City State)
103 | 340 Honduras
104 | 344 Hong Kong
105 | 348 Hungary
106 | 352 Iceland
107 | 356 India
108 | 360 Indonesia
109 | 364 Iran, Islamic Republic of
110 | 368 Iraq
111 | 372 Ireland
112 | 376 Israel
113 | 380 Italy
114 | 384 Côte d'Ivoire
115 | 388 Jamaica
116 | 392 Japan
117 | 398 Kazakhstan
118 | 400 Jordan
119 | 404 Kenya
120 | 408 Korea, Democratic People's Republic of
121 | 410 Korea, Republic of
122 | 414 Kuwait
123 | 417 Kyrgyzstan
124 | 418 Lao People's Democratic Republic
125 | 422 Lebanon
126 | 426 Lesotho
127 | 428 Latvia
128 | 430 Liberia
129 | 434 Libya
130 | 438 Liechtenstein
131 | 440 Lithuania
132 | 442 Luxembourg
133 | 446 Macao
134 | 450 Madagascar
135 | 454 Malawi
136 | 458 Malaysia
137 | 462 Maldives
138 | 466 Mali
139 | 470 Malta
140 | 474 Martinique
141 | 478 Mauritania
142 | 480 Mauritius
143 | 484 Mexico
144 | 492 Monaco
145 | 496 Mongolia
146 | 498 Moldova, Republic of
147 | 499 Montenegro
148 | 500 Montserrat
149 | 504 Morocco
150 | 508 Mozambique
151 | 512 Oman
152 | 516 Namibia
153 | 520 Nauru
154 | 524 Nepal
155 | 528 Netherlands
156 | 531 Curaçao
157 | 533 Aruba
158 | 534 Sint Maarten (Dutch part)
159 | 535 Bonaire, Sint Eustatius and Saba
160 | 540 New Caledonia
161 | 548 Vanuatu
162 | 554 New Zealand
163 | 558 Nicaragua
164 | 562 Niger
165 | 566 Nigeria
166 | 570 Niue
167 | 574 Norfolk Island
168 | 578 Norway
169 | 580 Northern Mariana Islands
170 | 581 United States Minor Outlying Islands
171 | 583 Micronesia, Federated States of
172 | 584 Marshall Islands
173 | 585 Palau
174 | 586 Pakistan
175 | 591 Panama
176 | 598 Papua New Guinea
177 | 600 Paraguay
178 | 604 Peru
179 | 608 Philippines
180 | 612 Pitcairn
181 | 616 Poland
182 | 620 Portugal
183 | 624 Guinea-Bissau
184 | 626 Timor-Leste
185 | 630 Puerto Rico
186 | 634 Qatar
187 | 638 Réunion
188 | 642 Romania
189 | 643 Russian Federation
190 | 646 Rwanda
191 | 652 Saint Barthélemy
192 | 654 Saint Helena, Ascension and Tristan da Cunha
193 | 659 Saint Kitts and Nevis
194 | 660 Anguilla
195 | 662 Saint Lucia
196 | 663 Saint Martin (French part)
197 | 666 Saint Pierre and Miquelon
198 | 670 Saint Vincent and the Grenadines
199 | 674 San Marino
200 | 678 Sao Tome and Principe
201 | 682 Saudi Arabia
202 | 686 Senegal
203 | 688 Serbia
204 | 690 Seychelles
205 | 694 Sierra Leone
206 | 702 Singapore
207 | 703 Slovakia
208 | 704 Viet Nam
209 | 705 Slovenia
210 | 706 Somalia
211 | 710 South Africa
212 | 716 Zimbabwe
213 | 724 Spain
214 | 728 South Sudan
215 | 729 Sudan
216 | 732 Western Sahara
217 | 740 Suriname
218 | 744 Svalbard and Jan Mayen
219 | 748 Swaziland
220 | 752 Sweden
221 | 756 Switzerland
222 | 760 Syrian Arab Republic
223 | 762 Tajikistan
224 | 764 Thailand
225 | 768 Togo
226 | 772 Tokelau
227 | 776 Tonga
228 | 780 Trinidad and Tobago
229 | 784 United Arab Emirates
230 | 788 Tunisia
231 | 792 Turkey
232 | 795 Turkmenistan
233 | 796 Turks and Caicos Islands
234 | 798 Tuvalu
235 | 800 Uganda
236 | 804 Ukraine
237 | 807 Macedonia, the former Yugoslav Republic of
238 | 818 Egypt
239 | 826 United Kingdom
240 | 831 Guernsey
241 | 832 Jersey
242 | 833 Isle of Man
243 | 834 Tanzania, United Republic of
244 | 840 United States
245 | 850 Virgin Islands, U.S.
246 | 854 Burkina Faso
247 | 858 Uruguay
248 | 860 Uzbekistan
249 | 862 Venezuela, Bolivarian Republic of
250 | 876 Wallis and Futuna
251 | 882 Samoa
252 | 887 Yemen
253 | 894 Zambia
254 |
--------------------------------------------------------------------------------
/public/json/countries.csv:
--------------------------------------------------------------------------------
1 | "iso 3166 country","latitude","longitude"
2 | AD,42.5000,1.5000
3 | AE,24.0000,54.0000
4 | AF,33.0000,65.0000
5 | AG,17.0500,-61.8000
6 | AI,18.2500,-63.1667
7 | AL,41.0000,20.0000
8 | AM,40.0000,45.0000
9 | AN,12.2500,-68.7500
10 | AO,-12.5000,18.5000
11 | AP,35.0000,105.0000
12 | AQ,-90.0000,0.0000
13 | AR,-34.0000,-64.0000
14 | AS,-14.3333,-170.0000
15 | AT,47.3333,13.3333
16 | AU,-27.0000,133.0000
17 | AW,12.5000,-69.9667
18 | AZ,40.5000,47.5000
19 | BA,44.0000,18.0000
20 | BB,13.1667,-59.5333
21 | BD,24.0000,90.0000
22 | BE,50.8333,4.0000
23 | BF,13.0000,-2.0000
24 | BG,43.0000,25.0000
25 | BH,26.0000,50.5500
26 | BI,-3.5000,30.0000
27 | BJ,9.5000,2.2500
28 | BM,32.3333,-64.7500
29 | BN,4.5000,114.6667
30 | BO,-17.0000,-65.0000
31 | BR,-10.0000,-55.0000
32 | BS,24.2500,-76.0000
33 | BT,27.5000,90.5000
34 | BV,-54.4333,3.4000
35 | BW,-22.0000,24.0000
36 | BY,53.0000,28.0000
37 | BZ,17.2500,-88.7500
38 | CA,60.0000,-95.0000
39 | CC,-12.5000,96.8333
40 | CD,0.0000,25.0000
41 | CF,7.0000,21.0000
42 | CG,-1.0000,15.0000
43 | CH,47.0000,8.0000
44 | CI,8.0000,-5.0000
45 | CK,-21.2333,-159.7667
46 | CL,-30.0000,-71.0000
47 | CM,6.0000,12.0000
48 | CN,35.0000,105.0000
49 | CO,4.0000,-72.0000
50 | CR,10.0000,-84.0000
51 | CU,21.5000,-80.0000
52 | CV,16.0000,-24.0000
53 | CX,-10.5000,105.6667
54 | CY,35.0000,33.0000
55 | CZ,49.7500,15.5000
56 | DE,51.0000,9.0000
57 | DJ,11.5000,43.0000
58 | DK,56.0000,10.0000
59 | DM,15.4167,-61.3333
60 | DO,19.0000,-70.6667
61 | DZ,28.0000,3.0000
62 | EC,-2.0000,-77.5000
63 | EE,59.0000,26.0000
64 | EG,27.0000,30.0000
65 | EH,24.5000,-13.0000
66 | ER,15.0000,39.0000
67 | ES,40.0000,-4.0000
68 | ET,8.0000,38.0000
69 | EU,47.0000,8.0000
70 | FI,64.0000,26.0000
71 | FJ,-18.0000,175.0000
72 | FK,-51.7500,-59.0000
73 | FM,6.9167,158.2500
74 | FO,62.0000,-7.0000
75 | FR,46.0000,2.0000
76 | GA,-1.0000,11.7500
77 | GB,54.0000,-2.0000
78 | GD,12.1167,-61.6667
79 | GE,42.0000,43.5000
80 | GF,4.0000,-53.0000
81 | GH,8.0000,-2.0000
82 | GI,36.1833,-5.3667
83 | GL,72.0000,-40.0000
84 | GM,13.4667,-16.5667
85 | GN,11.0000,-10.0000
86 | GP,16.2500,-61.5833
87 | GQ,2.0000,10.0000
88 | GR,39.0000,22.0000
89 | GS,-54.5000,-37.0000
90 | GT,15.5000,-90.2500
91 | GU,13.4667,144.7833
92 | GW,12.0000,-15.0000
93 | GY,5.0000,-59.0000
94 | HK,22.2500,114.1667
95 | HM,-53.1000,72.5167
96 | HN,15.0000,-86.5000
97 | HR,45.1667,15.5000
98 | HT,19.0000,-72.4167
99 | HU,47.0000,20.0000
100 | ID,-5.0000,120.0000
101 | IE,53.0000,-8.0000
102 | IL,31.5000,34.7500
103 | IN,20.0000,77.0000
104 | IO,-6.0000,71.5000
105 | IQ,33.0000,44.0000
106 | IR,32.0000,53.0000
107 | IS,65.0000,-18.0000
108 | IT,42.8333,12.8333
109 | JM,18.2500,-77.5000
110 | JO,31.0000,36.0000
111 | JP,36.0000,138.0000
112 | KE,1.0000,38.0000
113 | KG,41.0000,75.0000
114 | KH,13.0000,105.0000
115 | KI,1.4167,173.0000
116 | KM,-12.1667,44.2500
117 | KN,17.3333,-62.7500
118 | KP,40.0000,127.0000
119 | KR,37.0000,127.5000
120 | KW,29.3375,47.6581
121 | KY,19.5000,-80.5000
122 | KZ,48.0000,68.0000
123 | LA,18.0000,105.0000
124 | LB,33.8333,35.8333
125 | LC,13.8833,-61.1333
126 | LI,47.1667,9.5333
127 | LK,7.0000,81.0000
128 | LR,6.5000,-9.5000
129 | LS,-29.5000,28.5000
130 | LT,56.0000,24.0000
131 | LU,49.7500,6.1667
132 | LV,57.0000,25.0000
133 | LY,25.0000,17.0000
134 | MA,32.0000,-5.0000
135 | MC,43.7333,7.4000
136 | MD,47.0000,29.0000
137 | ME,42.0000,19.0000
138 | MG,-20.0000,47.0000
139 | MH,9.0000,168.0000
140 | MK,41.8333,22.0000
141 | ML,17.0000,-4.0000
142 | MM,22.0000,98.0000
143 | MN,46.0000,105.0000
144 | MO,22.1667,113.5500
145 | MP,15.2000,145.7500
146 | MQ,14.6667,-61.0000
147 | MR,20.0000,-12.0000
148 | MS,16.7500,-62.2000
149 | MT,35.8333,14.5833
150 | MU,-20.2833,57.5500
151 | MV,3.2500,73.0000
152 | MW,-13.5000,34.0000
153 | MX,23.0000,-102.0000
154 | MY,2.5000,112.5000
155 | MZ,-18.2500,35.0000
156 | NA,-22.0000,17.0000
157 | NC,-21.5000,165.5000
158 | NE,16.0000,8.0000
159 | NF,-29.0333,167.9500
160 | NG,10.0000,8.0000
161 | NI,13.0000,-85.0000
162 | NL,52.5000,5.7500
163 | NO,62.0000,10.0000
164 | NP,28.0000,84.0000
165 | NR,-0.5333,166.9167
166 | NU,-19.0333,-169.8667
167 | NZ,-41.0000,174.0000
168 | OM,21.0000,57.0000
169 | PA,9.0000,-80.0000
170 | PE,-10.0000,-76.0000
171 | PF,-15.0000,-140.0000
172 | PG,-6.0000,147.0000
173 | PH,13.0000,122.0000
174 | PK,30.0000,70.0000
175 | PL,52.0000,20.0000
176 | PM,46.8333,-56.3333
177 | PR,18.2500,-66.5000
178 | PS,32.0000,35.2500
179 | PT,39.5000,-8.0000
180 | PW,7.5000,134.5000
181 | PY,-23.0000,-58.0000
182 | QA,25.5000,51.2500
183 | RE,-21.1000,55.6000
184 | RO,46.0000,25.0000
185 | RS,44.0000,21.0000
186 | RU,60.0000,100.0000
187 | RW,-2.0000,30.0000
188 | SA,25.0000,45.0000
189 | SB,-8.0000,159.0000
190 | SC,-4.5833,55.6667
191 | SD,15.0000,30.0000
192 | SE,62.0000,15.0000
193 | SG,1.3667,103.8000
194 | SH,-15.9333,-5.7000
195 | SI,46.0000,15.0000
196 | SJ,78.0000,20.0000
197 | SK,48.6667,19.5000
198 | SL,8.5000,-11.5000
199 | SM,43.7667,12.4167
200 | SN,14.0000,-14.0000
201 | SO,10.0000,49.0000
202 | SR,4.0000,-56.0000
203 | ST,1.0000,7.0000
204 | SV,13.8333,-88.9167
205 | SY,35.0000,38.0000
206 | SZ,-26.5000,31.5000
207 | TC,21.7500,-71.5833
208 | TD,15.0000,19.0000
209 | TF,-43.0000,67.0000
210 | TG,8.0000,1.1667
211 | TH,15.0000,100.0000
212 | TJ,39.0000,71.0000
213 | TK,-9.0000,-172.0000
214 | TM,40.0000,60.0000
215 | TN,34.0000,9.0000
216 | TO,-20.0000,-175.0000
217 | TR,39.0000,35.0000
218 | TT,11.0000,-61.0000
219 | TV,-8.0000,178.0000
220 | TW,23.5000,121.0000
221 | TZ,-6.0000,35.0000
222 | UA,49.0000,32.0000
223 | UG,1.0000,32.0000
224 | UM,19.2833,166.6000
225 | US,38.0000,-97.0000
226 | UY,-33.0000,-56.0000
227 | UZ,41.0000,64.0000
228 | VA,41.9000,12.4500
229 | VC,13.2500,-61.2000
230 | VE,8.0000,-66.0000
231 | VG,18.5000,-64.5000
232 | VI,18.3333,-64.8333
233 | VN,16.0000,106.0000
234 | VU,-16.0000,167.0000
235 | WF,-13.3000,-176.2000
236 | WS,-13.5833,-172.3333
237 | YE,15.0000,48.0000
238 | YT,-12.8333,45.1667
239 | ZA,-29.0000,24.0000
240 | ZM,-15.0000,30.0000
241 | ZW,-20.0000,30.0000
--------------------------------------------------------------------------------
/public/js/default.js:
--------------------------------------------------------------------------------
1 | var geomaniac = (function(){
2 |
3 | var width = window.innerWidth - 4,
4 | height = window.innerHeight - 4,
5 | startCountry = "France",
6 | globe, land, countries, borders, features, cities, scale = 1, moved = true,
7 | wasMoved = [], clickPoints = [], dragging, zoom, drag,
8 | tweetLocations = [], loadingTooltip = true;
9 |
10 | var orthographic = function(){
11 | // uncomment for testing
12 | /*for(var i = 0; i < 202; i++){
13 | var k = {"retweets":0,"faves":0,"coords":[-33.4394,-70.5521],"text":"Blablabla bla bla bla","user":{"name":"lessgeneric","screenName":"lessgeneric"},"time":"Wed Jun 22 18:50:37 +0000 2016"}
14 |
15 | k.coords[0] = helpers.getRandomInRange(-180, 180, 3);
16 | k.coords[1] = helpers.getRandomInRange(-90, 90, 3);
17 |
18 | var ft = {
19 | retweets: k.retweets,
20 | faves: k.faves,
21 | longitude: helpers.formatLocation(k.coords).straight[0],
22 | latitude: helpers.formatLocation(k.coords).straight[1],
23 | coords: k.coords,
24 | text: k.text,
25 | user: k.user,
26 | time: k.time,
27 | retweeted_status: k.retweeted_status
28 | }
29 |
30 | tweetLocations.push(ft);
31 | }*/
32 |
33 | var animate = function() {
34 |
35 | requestAnimationFrame(animate);
36 |
37 | now = Date.now();
38 | elapsed = now - then;
39 |
40 | // if enough time has elapsed, draw the next frame
41 | if (elapsed > fpsInterval) {
42 |
43 | // Get ready for next frame by setting then=now, but...
44 | // Also, adjust for fpsInterval not being multiple of 16.67
45 | then = now - (elapsed % fpsInterval);
46 |
47 | if(moved){
48 | draw();
49 | moved = false;
50 | }
51 | }
52 | };
53 |
54 | var projection = d3.geo.orthographic()
55 | .scale(300)
56 | .translate([width / 2, height / 2])
57 | .clipAngle(90)
58 | .precision(.1);
59 |
60 | var barProjection = d3.geo.orthographic()
61 | .scale(410.1)
62 | .translate([width / 2, height / 2])
63 | .clipAngle(90)
64 | .precision(.1);
65 |
66 | var canvas = d3.select("body").append("canvas")
67 | .attr("width", width)
68 | .attr("height", height);
69 |
70 | var c = canvas.node().getContext("2d");
71 |
72 |
73 | var path = d3.geo.path()
74 | .projection(projection) // put barProjection for testing distances
75 | .pointRadius(1.5)
76 | .context(c);
77 |
78 | var graticule = d3.geo.graticule();
79 |
80 | var elem = document.querySelector('canvas'),
81 | elemLeft = elem.offsetLeft,
82 | elemTop = elem.offsetTop,
83 | context = elem.getContext('2d'),
84 | elements = [],
85 | lastCountryName = '',
86 | lastCountryGeometry = null;
87 |
88 | var draw = function(){
89 |
90 | // Store the current transformation matrix
91 | c.save();
92 |
93 | // Use the identity matrix while clearing the canvas
94 | c.setTransform(1, 0, 0, 1, 0, 0);
95 | c.clearRect(0, 0, width, height);
96 |
97 | // Restore the transform
98 | c.restore();
99 |
100 | // sea //003366'
101 | c.fillStyle = '#003366', c.beginPath(), path.context(c)(globe), c.fill(), c.stroke();
102 | //graticule
103 | c.strokeStyle = "#333", c.lineWidth = .5, c.beginPath(), path.context(c)(graticule()), c.stroke();
104 | // land
105 | c.fillStyle = "#006699", c.beginPath(), path.context(c)(land) /*path(land)*/, c.fill();
106 | // countries
107 |
108 | // mobile
109 | /*for(var i in countries){
110 | c.fillStyle = "#f00", c.beginPath(), path(countries[i]), c.fill();
111 | }*/
112 | // borders
113 | c.strokeStyle = "rgba(225, 215, 255, 0.4)", c.lineWidth = 1, c.beginPath(), path(borders), c.stroke();
114 |
115 | var protate = projection.rotate(),
116 | mouseCoords = projection.invert([mousepos.x, mousepos.y]),
117 | scaleLevel = zoom && zoom.scale() || 0;
118 |
119 |
120 | // cities
121 | for(var i in cities){
122 |
123 | // no show
124 | //if(scaleLevel < 4)
125 | // return;
126 |
127 | c.fillStyle = "#fff", c.beginPath(), path(cities[i]), c.fill();
128 |
129 | var cds = cities[i].geometry.coordinates,
130 | xyFromCoordinates = projection([cds[0],cds[1]]);
131 |
132 | // mask and labels
133 | var longitude = Number(cds[0]) + 180,
134 | startLongitude = 360 - ((protate[0] + 270) % 360),
135 | endLongitude = (startLongitude + 180) % 360;
136 |
137 | if ((startLongitude < endLongitude && longitude > startLongitude && longitude < endLongitude) ||
138 | (startLongitude > endLongitude && (longitude > startLongitude || longitude < endLongitude))){
139 | // labels
140 | c.font = '8px Monospace';
141 | c.fillStyle = "#fb0", c.beginPath(), c.fillText(decodeURI(cities[i].properties.city).toUpperCase(), xyFromCoordinates[0], xyFromCoordinates[1]);
142 | // white outline
143 | c.fillStyle = 'rgba(144, 122, 122, 0.2)', c.beginPath(), c.fillRect(xyFromCoordinates[0] -1, xyFromCoordinates[1] -6, (decodeURI(cities[i].properties.city).toUpperCase().length * 5), 7);
144 | } else {
145 | c.font = '5px Monospace';
146 | c.fillStyle = "rgba(32, 45, 21, 0.2)", c.beginPath(), c.fillText(decodeURI(cities[i].properties.city).toUpperCase(), xyFromCoordinates[0], xyFromCoordinates[1]);
147 | c.fillStyle = 'rgba(255, 255, 255, 0.0)', c.beginPath(), c.fillRect(xyFromCoordinates[0] -1, xyFromCoordinates[1] -6, (decodeURI(cities[i].properties.city).toUpperCase().length * 5), 7);
148 | }
149 | }
150 |
151 | // tweet spots
152 | for(var i in tweetLocations){
153 | var tweetLocation = tweetLocations[i],
154 | loc = tweetLocation? projection([tweetLocation.longitude, tweetLocation.latitude]): null;
155 |
156 | if(loc){
157 | var longitude = Number(tweetLocation.longitude) + 180,
158 | startLongitude = 360 - ((protate[0] + 270) % 360),
159 | endLongitude = (startLongitude + 180) % 360;
160 |
161 | // mask
162 | if ((startLongitude < endLongitude && longitude > startLongitude && longitude < endLongitude) ||
163 | (startLongitude > endLongitude && (longitude > startLongitude || longitude < endLongitude))){
164 | drawLine(tweetLocation, 'rgba(255, 255, 255, 0.7)');
165 | drawSpot(tweetLocation, '0.9', 4);
166 | }
167 | else {
168 | drawLine(tweetLocation, 'rgba(32, 45, 21, 0.1)');
169 | drawSpot(tweetLocation, '0.1', 2);
170 | }
171 |
172 | removeTweet('clickpoint');
173 | }
174 | }
175 | };
176 |
177 | var drawSpot = function(tweet, style, tradius){
178 | var ending = barProjection([tweet.longitude, tweet.latitude]);
179 |
180 | var histo = {
181 | 5: 'rgba(229, 115, 238',
182 | 10: 'rgba(200, 239, 234',
183 | 30: 'rgba(248, 250, 212',
184 | 100: 'rgba(255, 242, 128',
185 | 300: 'rgba(240, 186, 50',
186 | 800: 'rgba(218, 80, 25',
187 | 1000: 'rgba(165, 33, 117',
188 | };
189 |
190 | var circ = Math.PI * 2;
191 | var quart = Math.PI / 2;
192 |
193 |
194 | var popularity = tweet.retweets + tweet.faves;
195 |
196 | if(popularity <= 5)
197 | c.strokeStyle = histo['5'] + ',' + style + ')';
198 |
199 | if(popularity > 5 && popularity <= 10)
200 | c.strokeStyle = histo['10'] + ',' + style + ')';
201 |
202 | if(popularity > 10 && popularity <= 30)
203 | c.strokeStyle = histo['30'] + ',' + style + ')';
204 |
205 | if(popularity > 30 && popularity <= 100)
206 | c.strokeStyle = histo['100'] + ',' + style + ')';
207 |
208 | if(popularity > 100 && popularity <= 300)
209 | c.strokeStyle = histo['300'] + ',' + style + ')';
210 |
211 | if(popularity > 300 && popularity <= 800)
212 | c.strokeStyle = histo['800'] + ',' + style + ')';
213 |
214 | if(popularity > 800 && popularity <= 1000)
215 | c.strokeStyle = histo['1000'] + ',' + style + ')';
216 |
217 | if(popularity > 1000)
218 | c.strokeStyle = 'rgba(144, 253, 222, ' + style + ')';
219 |
220 |
221 | var radius = Math.log(projection.scale()); // Math.floor(radius) ...
222 | c.lineWidth = 2, c.beginPath(), c.lineTo(ending[0], ending[1]), c.arc(ending[0], ending[1], 2, - (quart), ((circ) * (100 / 100)) - quart, false), c.stroke();
223 |
224 | }
225 |
226 | var drawLine = function(tweet, style){
227 | var beggining = projection([tweet.longitude, tweet.latitude]),
228 | ending = barProjection([tweet.longitude, tweet.latitude]);
229 |
230 | c.strokeStyle = style;
231 | c.beginPath();
232 | c.moveTo(beggining[0], beggining[1]);
233 | c.lineTo(ending[0], ending[1]);
234 | c.stroke();
235 | }
236 |
237 | var onDrag = function(){
238 | var dx = d3.event.dx,
239 | dy = d3.event.dy,
240 | rotation = projection.rotate(),
241 | radius = projection.scale(),
242 | barRotation = barProjection.rotate(),
243 | barRadius = barProjection.scale();
244 |
245 | scale = d3.scale.linear()
246 | .domain([-1 * radius, radius])
247 | .range([-90, 90]);
248 |
249 | var degX = scale(dx), degY = scale(dy);
250 |
251 | rotation[0] += degX;
252 | rotation[1] -= degY;
253 | if (rotation[1] > 90) rotation[1] = 90;
254 | if (rotation[1] < -90) rotation[1] = -90;
255 |
256 | if (rotation[0] >= 180) rotation[0] -= 360;
257 |
258 | // barprojection
259 | scale = d3.scale.linear()
260 | .domain([-1 * barRadius, barRadius])
261 | .range([-90, 90]);
262 |
263 | // barRotation sphere is ~~twice bigger thus degree scales must be twice
264 | // bigger as well (if you want 3d effect)
265 | var degrX = scale(dx) * 1.367, degrY = scale(dy)* 1.367;
266 |
267 | barRotation[0] += degrX;
268 | barRotation[1] -= degrY;
269 | if (barRotation[1] > 90) barRotation[1] = 90;
270 | if (barRotation[1] < -90) barRotation[1] = -90;
271 |
272 | if (barRotation[0] >= 180) barRotation[0] -= 360;
273 |
274 | projection.rotate(rotation);
275 | barProjection.rotate(barRotation);
276 |
277 | moved = true;
278 | dragging = true;
279 |
280 | wasMoved.push([dx, dy]);
281 | };
282 |
283 | var onZoom = function(){
284 | zoom.scaleExtent([zoom.scale()*0.9, zoom.scale()*1.1]);
285 |
286 | scale = (d3.event.scale >= 1) ? d3.event.scale : 1;
287 | projection.scale(300 * scale);
288 |
289 | // this is double scaled projection, if you change scale
290 | // you must also change rotation and control point factors
291 | // to reflect this scale size
292 | barProjection.scale(410.1 * zoom.scale());
293 |
294 | moved = true;
295 | dragging = true;
296 | };
297 |
298 | var detectCountry = function(inverted){
299 | if(!features)
300 | return;
301 |
302 | var foundCountryElement;
303 |
304 | features.forEach(function(element) {
305 | if(element.geometry.type == 'Polygon'){
306 | if(gju.pointInPolygon(inverted, element.geometry) && !foundCountryElement){
307 | foundCountryElement = element;
308 | }
309 | }
310 |
311 | else if(element.geometry.type == 'MultiPolygon'){
312 | if(gju.pointInMultiPolygon(inverted, element.geometry) && !foundCountryElement){
313 | foundCountryElement = element;
314 | }
315 | }
316 | });
317 |
318 | var name = foundCountryElement? foundCountryElement.name: null,
319 | geometry = foundCountryElement? foundCountryElement.geometry: null;
320 |
321 | return {
322 | name: name,
323 | geometry: geometry
324 | }
325 | };
326 |
327 | var addDomElement = function(id, text, cssclass, coords, removeOnRedraw){
328 | var oldh = document.querySelector('#' + id);
329 |
330 | if(oldh){
331 | oldh.remove();
332 | }
333 |
334 | var div = document.createElement("div");
335 | div.setAttribute('id', id);
336 | div.setAttribute('class', cssclass);
337 |
338 | var textContent = document.createElement('div');
339 | textContent.innerHTML = text;
340 | div.appendChild(textContent); //add the text node to the newly created div.
341 |
342 | div.style.cssText = 'position: absolute; top: ' + (coords[1] - 15) + 'px; left:' + (coords[0] - 21) +'px;';
343 |
344 | // add the newly created element and its content into the DOM
345 | var currentDiv = document.getElementById(id);
346 | document.body.insertBefore(div, currentDiv);
347 |
348 | var currentBoundingBox = div.getBoundingClientRect();
349 |
350 | // refine top position
351 | div.style.top = (parseFloat(div.style.top.replace('px','')) - currentBoundingBox.height) + 'px';
352 | };
353 |
354 | var addTweet = function(inverted){
355 |
356 | if(tweetLocations && tweetLocations.length > 0){
357 | for(var i in tweetLocations){
358 |
359 | // Using formula: sqrt((x2 - x1)^2 + (y2 - y1)^2)) for distance
360 | // TODO: in five kilometers metric should be better
361 | var _T = tweetLocations[i],
362 | distance = Math.sqrt(Math.pow(inverted[0] - _T.longitude, 2) + Math.pow(inverted[1] - _T.latitude, 2)),
363 |
364 | scaleFactor = parseInt(zoom.scale() / 6),
365 | isItInFiveKilometers = distance <= (0.05 / scaleFactor) *2;
366 |
367 |
368 |
369 | if(isItInFiveKilometers){
370 | // TODO: add twitter-like card
371 | var _DOM = ['@' + _T.user.screenName + '
',
372 | '' + _T.text + '
',
373 | 'Retweets: ' + _T.retweets + ', Favorties: ' + _T.faves + '
',
374 | '' + _T.time + ''
375 | ].join('');
376 |
377 | addDomElement('clickpoint', _DOM, 'locationtip', barProjection([_T.longitude, _T.latitude]), false);
378 | }
379 | }
380 | }
381 | };
382 |
383 | var removeTweet = function(id){
384 | var oldh = document.querySelector('#' + id);
385 |
386 | if(oldh){
387 | oldh.remove();
388 | }
389 | };
390 |
391 | elem.addEventListener('click', function(event){
392 |
393 | // prevents clicks on dragend
394 | if(wasMoved.length > 1){
395 | wasMoved = [];
396 | return;
397 | }
398 |
399 | var x = event.pageX - elemLeft,
400 | y = event.pageY - elemTop,
401 | inverted = projection.invert([x,y]),
402 | zoomBy = zoomByB = 1,
403 | initialProjectionScale = projection.scale(),
404 | initialBarProjectionScale = barProjection.scale(),
405 | zoomIn = initialProjectionScale > 3000 ? false: true;
406 |
407 | d3.transition()
408 | .duration(1250)
409 | .tween("rotate", function() {
410 | var r = d3.interpolate(projection.rotate(), [-inverted[0], -inverted[1]]);
411 |
412 | return function(t) {
413 | projection.rotate(r(t));
414 | barProjection.rotate(r(t));
415 |
416 | zoomBy = zoomIn ? initialProjectionScale + (t * 900) : initialProjectionScale - (t * 1200);
417 | zoomByB = zoomIn ? initialBarProjectionScale + (t * 1230.3) : initialBarProjectionScale - (1640.4)
418 |
419 | zoom.scale(t * 3.1);
420 |
421 | projection.scale(zoomBy);
422 | barProjection.scale(zoomByB);
423 |
424 | wasMoved = [];
425 | draw();
426 | };
427 | })
428 | .transition()
429 | .each('end',function(){
430 | wasMoved = [];
431 | });
432 |
433 | }, false);
434 |
435 | elem.addEventListener('mousemove', function(event) {
436 |
437 | // huge performance improvement for firefox
438 | if(dragging){
439 | return;
440 | }
441 |
442 | var x = event.pageX - elemLeft,
443 | y = event.pageY - elemTop,
444 | inverted = projection.invert([x,y]),
445 | country = detectCountry(inverted);
446 |
447 | // mouse out of current territory
448 | if(lastCountryGeometry && country.geometry && lastCountryGeometry.coordinates[0][0] != country.geometry.coordinates[0][0] ){
449 | draw();
450 | }
451 |
452 | // ocean
453 | if(country && !country.geometry){
454 | draw();
455 | }
456 |
457 | // mouse over territory
458 | if(country && country.name){
459 | if(lastCountryName != country.name){
460 |
461 | c.fillStyle = "rgba(198, 237, 219, 0.4)", c.beginPath(), path(country.geometry), c.fill();
462 |
463 | // country text
464 | c.fillStyle = 'rgba(244, 244, 244, 0.8)', c.beginPath(), c.fillRect(x -1, y -10, ((decodeURI(country.name)).toUpperCase().length * 7.5), 12);
465 |
466 | c.font = '12px Monospace';
467 | c.fillStyle = "#000", c.beginPath(), c.fillText((decodeURI(country.name)).toUpperCase(), x, y);
468 |
469 | lastCountryName = country.name;
470 | lastCountryGeometry = country.geometry;
471 | }
472 | }
473 |
474 | if(tweetLocations.length > 0 && zoom && zoom.scale() > 6){
475 |
476 | addTweet(barProjection.invert([x,y]));
477 | }
478 | }, false);
479 |
480 | var loader = function(error, world, names, _cities) {
481 | if (error) throw error;
482 |
483 | var countryById = { };
484 |
485 | names.forEach(function(d) {
486 |
487 | countryById[d.id] = d.name;
488 | });
489 |
490 | features = topojson.feature(world, world.objects.countries).features;
491 |
492 | features.forEach(function(object){
493 |
494 | object.name = countryById[object.id];
495 | });
496 |
497 | globe = {type: "Sphere"},
498 | land = topojson.feature(world, world.objects.land)
499 | countries = features,
500 | cities = _cities.features,
501 | borders = topojson.mesh(world, world.objects.countries, function(a, b) { return a !== b; });
502 |
503 | features = features.filter(function(d) {
504 | return names.some(function(n) {
505 | if (d.id == parseInt(n.id)){ return d.name = n.name; }
506 | });
507 | }).sort(function(a, b) {
508 | return a.name.localeCompare(b.name);
509 | });
510 |
511 | var startIDObj = features.filter(function(d){
512 | return (d.name).toLowerCase() == (startCountry).toLowerCase();
513 | })[0];
514 |
515 |
516 | var startGeom = features.filter(function(d){
517 | return d.id == startIDObj.id
518 | });
519 |
520 | var startCoord = d3.geo.centroid(startGeom[0]);
521 |
522 | var coords = [-startCoord[0], -startCoord[1]];
523 |
524 | projection.rotate(coords);
525 | barProjection.rotate(coords);
526 |
527 | animate();
528 |
529 | zoom = d3.behavior.zoom()
530 | .center([width / 2, height / 2])
531 | .on("zoom", onZoom)
532 | .on("zoomend", function(){ dragging = false; });
533 |
534 | drag = d3.behavior.drag()
535 | .on('drag', onDrag)
536 | .on('dragend', function(){ dragging = false; })
537 |
538 | canvas.call(zoom);
539 | canvas.call(drag);
540 | }
541 |
542 | queue()
543 | .defer(d3.json, "/json/world-110m.json")
544 | .defer(d3.tsv, "/json/world-110m-country-names.tsv")
545 | .defer(d3.json, "/json/cities.geojson")
546 | .await(loader);
547 |
548 | d3.select(self.frameElement).style("height", height + "px");
549 |
550 | };
551 |
552 | return {
553 | orthographic: orthographic,
554 | tweetLocations: tweetLocations
555 | };
556 |
557 | })();
558 |
559 | var mousepos = {};
560 |
561 | var frameCount = 0;
562 | var fps = 30, now, elapsed;
563 | var fpsInterval = 1000 / fps;
564 | var then = Date.now();
565 | var startTime = then;
566 |
567 | window.addEventListener('load', function(){
568 |
569 | document.addEventListener('mousemove', function(event){
570 | mousepos.x = (window.Event) ? event.pageX : event.clientX + (document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft);
571 | mousepos.y = (window.Event) ? event.pageY : event.clientY + (document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop);
572 | });
573 |
574 | prefix = helpers.prefixMatch(["webkit", "ms", "Moz", "O"]);
575 |
576 | helpers.loadScript(location.href + 'socket.io/socket.io.js', 'text/javascript', function(){
577 |
578 | // uncomment for testing
579 | /*geomaniac.orthographic();
580 | return;*/
581 |
582 | var iointerval = setInterval(function(){
583 | if(typeof io != 'undefined'){
584 | clearInterval(iointerval);
585 | sockety.load();
586 | geomaniac.orthographic();
587 | console.log('io ready.');
588 | }
589 | }, 50);
590 |
591 | var connecting = document.createElement('div');
592 | connecting.className = 'totalstatustip connecting';
593 | connecting.innerHTML = 'Connecting stream ...';
594 | connecting.style.cssText = 'position: absolute; right: 100; bottom: 50;'
595 |
596 | document.body.appendChild(connecting);
597 | });
598 | });
599 |
600 |
--------------------------------------------------------------------------------
/public/json/countries.json:
--------------------------------------------------------------------------------
1 | {"type":"Topology","transform":{"scale":[0.036003600360036005,0.016927109510951093],"translate":[-180,-85.609038]},"objects":{"countries":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":"AFG","arcs":[[0,1,2,3,4,5]],"properties":{"name":"Afghanistan"}},{"type":"MultiPolygon","id":"AGO","arcs":[[[6,7,8,9]],[[10,11,12]]],"properties":{"name":"Angola"}},{"type":"Polygon","id":"ALB","arcs":[[13,14,15,16,17]],"properties":{"name":"Albania"}},{"type":"Polygon","id":"ARE","arcs":[[18,19,20,21,22]],"properties":{"name":"United Arab Emirates"}},{"type":"MultiPolygon","id":"ARG","arcs":[[[23,24]],[[25,26,27,28,29,30]]],"properties":{"name":"Argentina"}},{"type":"Polygon","id":"ARM","arcs":[[31,32,33,34,35]],"properties":{"name":"Armenia"}},{"type":"MultiPolygon","id":"ATA","arcs":[[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]]],"properties":{"name":"Antarctica"}},{"type":"Polygon","id":"ATF","arcs":[[44]],"properties":{"name":"French Southern and Antarctic Lands"}},{"type":"MultiPolygon","id":"AUS","arcs":[[[45]],[[46]]],"properties":{"name":"Australia"}},{"type":"Polygon","id":"AUT","arcs":[[47,48,49,50,51,52,53]],"properties":{"name":"Austria"}},{"type":"MultiPolygon","id":"AZE","arcs":[[[54,-33]],[[55,-36,56,57,58]]],"properties":{"name":"Azerbaijan"}},{"type":"Polygon","id":"BDI","arcs":[[59,60,61]],"properties":{"name":"Burundi"}},{"type":"Polygon","id":"BEL","arcs":[[62,63,64,65,66]],"properties":{"name":"Belgium"}},{"type":"Polygon","id":"BEN","arcs":[[67,68,69,70,71]],"properties":{"name":"Benin"}},{"type":"Polygon","id":"BFA","arcs":[[72,73,-68,74,75,76]],"properties":{"name":"Burkina Faso"}},{"type":"Polygon","id":"BGD","arcs":[[77,78,79]],"properties":{"name":"Bangladesh"}},{"type":"Polygon","id":"BGR","arcs":[[80,81,82,83,84,85]],"properties":{"name":"Bulgaria"}},{"type":"MultiPolygon","id":"BHS","arcs":[[[86]],[[87]],[[88]]],"properties":{"name":"The Bahamas"}},{"type":"Polygon","id":"BIH","arcs":[[89,90,91]],"properties":{"name":"Bosnia and Herzegovina"}},{"type":"Polygon","id":"BLR","arcs":[[92,93,94,95,96]],"properties":{"name":"Belarus"}},{"type":"Polygon","id":"BLZ","arcs":[[97,98,99]],"properties":{"name":"Belize"}},{"type":"Polygon","id":"BOL","arcs":[[100,101,102,103,-31]],"properties":{"name":"Bolivia"}},{"type":"Polygon","id":"BRA","arcs":[[104,-103,105,106,107,108,109,110,111,112,-27]],"properties":{"name":"Brazil"}},{"type":"Polygon","id":"BRN","arcs":[[113,114]],"properties":{"name":"Brunei"}},{"type":"Polygon","id":"BTN","arcs":[[115,116]],"properties":{"name":"Bhutan"}},{"type":"Polygon","id":"BWA","arcs":[[117,118,119,120]],"properties":{"name":"Botswana"}},{"type":"Polygon","id":"CAF","arcs":[[121,122,123,124,125,126,127]],"properties":{"name":"Central African Republic"}},{"type":"MultiPolygon","id":"CAN","arcs":[[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138,139,140,141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]]],"properties":{"name":"Canada"}},{"type":"Polygon","id":"CHE","arcs":[[161,162,163,-50]],"properties":{"name":"Switzerland"}},{"type":"MultiPolygon","id":"CHL","arcs":[[[-24,164]],[[-30,165,166,-101]]],"properties":{"name":"Chile"}},{"type":"MultiPolygon","id":"CHN","arcs":[[[167]],[[168,169,170,171,172,173,-116,174,175,176,177,-3,178,179,180,181,182,183]]],"properties":{"name":"China"}},{"type":"Polygon","id":"CIV","arcs":[[184,185,186,-77,187,188]],"properties":{"name":"Ivory Coast"}},{"type":"Polygon","id":"CMR","arcs":[[189,190,191,192,193,-127,194,195]],"properties":{"name":"Cameroon"}},{"type":"Polygon","id":"COD","arcs":[[196,-62,197,198,-10,199,-11,200,-125,201,202]],"properties":{"name":"Democratic Republic of the Congo"}},{"type":"Polygon","id":"COG","arcs":[[-195,-126,-201,-13,203,204]],"properties":{"name":"Republic of the Congo"}},{"type":"Polygon","id":"COL","arcs":[[205,206,207,-107,208,209,210]],"properties":{"name":"Colombia"}},{"type":"Polygon","id":"CRI","arcs":[[211,212,213,214]],"properties":{"name":"Costa Rica"}},{"type":"Polygon","id":"CUB","arcs":[[215]],"properties":{"name":"Cuba"}},{"type":"Polygon","id":"-99","arcs":[[216,217]],"properties":{"name":"Northern Cyprus"}},{"type":"Polygon","id":"CYP","arcs":[[-217,218]],"properties":{"name":"Cyprus"}},{"type":"Polygon","id":"CZE","arcs":[[219,220,221,-52]],"properties":{"name":"Czech Republic"}},{"type":"Polygon","id":"DEU","arcs":[[222,-220,-51,-164,223,224,-63,225,226,227,228]],"properties":{"name":"Germany"}},{"type":"Polygon","id":"DJI","arcs":[[229,230,231,232]],"properties":{"name":"Djibouti"}},{"type":"MultiPolygon","id":"DNK","arcs":[[[233]],[[-228,234]]],"properties":{"name":"Denmark"}},{"type":"Polygon","id":"DOM","arcs":[[235,236]],"properties":{"name":"Dominican Republic"}},{"type":"Polygon","id":"DZA","arcs":[[237,238,239,240,241,242,243,244]],"properties":{"name":"Algeria"}},{"type":"Polygon","id":"ECU","arcs":[[-210,245,246]],"properties":{"name":"Ecuador"}},{"type":"Polygon","id":"EGY","arcs":[[247,248,249,250,251]],"properties":{"name":"Egypt"}},{"type":"Polygon","id":"ERI","arcs":[[252,253,-232,254]],"properties":{"name":"Eritrea"}},{"type":"Polygon","id":"ESP","arcs":[[255,256,257,258]],"properties":{"name":"Spain"}},{"type":"Polygon","id":"EST","arcs":[[259,260,261]],"properties":{"name":"Estonia"}},{"type":"Polygon","id":"ETH","arcs":[[-231,262,263,264,265,266,267,-255]],"properties":{"name":"Ethiopia"}},{"type":"Polygon","id":"FIN","arcs":[[268,269,270,271]],"properties":{"name":"Finland"}},{"type":"MultiPolygon","id":"FJI","arcs":[[[272]],[[273]],[[274]]],"properties":{"name":"Fiji"}},{"type":"Polygon","id":"FLK","arcs":[[275]],"properties":{"name":"Falkland Islands"}},{"type":"MultiPolygon","id":"FRA","arcs":[[[276,277,278,-111]],[[279]],[[280,-224,-163,281,282,-256,283,-65]]],"properties":{"name":"France"}},{"type":"Polygon","id":"GAB","arcs":[[284,-196,-205,285]],"properties":{"name":"Gabon"}},{"type":"MultiPolygon","id":"GBR","arcs":[[[286,287]],[[288]]],"properties":{"name":"United Kingdom"}},{"type":"Polygon","id":"GEO","arcs":[[289,-57,-35,290,291]],"properties":{"name":"Georgia"}},{"type":"Polygon","id":"GHA","arcs":[[-188,-76,292,293]],"properties":{"name":"Ghana"}},{"type":"Polygon","id":"GIN","arcs":[[294,295,296,297,298,-186,299]],"properties":{"name":"Guinea"}},{"type":"Polygon","id":"GMB","arcs":[[300]],"properties":{"name":"Gambia"}},{"type":"Polygon","id":"GNB","arcs":[[301,-297,302]],"properties":{"name":"Guinea Bissau"}},{"type":"Polygon","id":"GNQ","arcs":[[-190,-285,303]],"properties":{"name":"Equatorial Guinea"}},{"type":"MultiPolygon","id":"GRC","arcs":[[[304]],[[-14,305,-82,306,307]]],"properties":{"name":"Greece"}},{"type":"Polygon","id":"GRL","arcs":[[308]],"properties":{"name":"Greenland"}},{"type":"Polygon","id":"GTM","arcs":[[309,-98,310,311,312,313]],"properties":{"name":"Guatemala"}},{"type":"Polygon","id":"GUY","arcs":[[314,-109,315,316]],"properties":{"name":"Guyana"}},{"type":"Polygon","id":"HND","arcs":[[317,-312,318,319,320]],"properties":{"name":"Honduras"}},{"type":"Polygon","id":"HRV","arcs":[[-91,321,322,323,324,325]],"properties":{"name":"Croatia"}},{"type":"Polygon","id":"HTI","arcs":[[-236,326]],"properties":{"name":"Haiti"}},{"type":"Polygon","id":"HUN","arcs":[[327,328,329,330,-325,331,-54]],"properties":{"name":"Hungary"}},{"type":"MultiPolygon","id":"IDN","arcs":[[[332]],[[333,334]],[[335]],[[336]],[[337]],[[338]],[[339]],[[340]],[[341,342]],[[343]],[[344]],[[345,346]],[[347]]],"properties":{"name":"Indonesia"}},{"type":"Polygon","id":"IND","arcs":[[348,-175,-117,-174,349,-78,350,351,-177]],"properties":{"name":"India"}},{"type":"Polygon","id":"IRL","arcs":[[-287,352]],"properties":{"name":"Ireland"}},{"type":"Polygon","id":"IRN","arcs":[[-5,353,354,355,356,-55,-32,-56,357,358]],"properties":{"name":"Iran"}},{"type":"Polygon","id":"IRQ","arcs":[[359,360,361,362,-356,363,364]],"properties":{"name":"Iraq"}},{"type":"Polygon","id":"ISL","arcs":[[365]],"properties":{"name":"Iceland"}},{"type":"Polygon","id":"ISR","arcs":[[366,-251,367,368,369,370,371]],"properties":{"name":"Israel"}},{"type":"MultiPolygon","id":"ITA","arcs":[[[372]],[[373]],[[374,375,-282,-162,-49]]],"properties":{"name":"Italy"}},{"type":"Polygon","id":"JAM","arcs":[[376]],"properties":{"name":"Jamaica"}},{"type":"Polygon","id":"JOR","arcs":[[-361,377,378,-367,379,-371,380]],"properties":{"name":"Jordan"}},{"type":"MultiPolygon","id":"JPN","arcs":[[[381]],[[382]],[[383]]],"properties":{"name":"Japan"}},{"type":"Polygon","id":"KAZ","arcs":[[384,385,386,-181,387,388]],"properties":{"name":"Kazakhstan"}},{"type":"Polygon","id":"KEN","arcs":[[389,390,391,-265,392,393]],"properties":{"name":"Kenya"}},{"type":"Polygon","id":"KGZ","arcs":[[-180,394,395,-388]],"properties":{"name":"Kyrgyzstan"}},{"type":"Polygon","id":"KHM","arcs":[[396,397,398,399]],"properties":{"name":"Cambodia"}},{"type":"Polygon","id":"KOR","arcs":[[400,401]],"properties":{"name":"South Korea"}},{"type":"Polygon","id":"-99","arcs":[[-17,402,403,404]],"properties":{"name":"Kosovo"}},{"type":"Polygon","id":"KWT","arcs":[[405,-365,406]],"properties":{"name":"Kuwait"}},{"type":"Polygon","id":"LAO","arcs":[[407,-172,408,-398,409]],"properties":{"name":"Laos"}},{"type":"Polygon","id":"LBN","arcs":[[410,-369,411]],"properties":{"name":"Lebanon"}},{"type":"Polygon","id":"LBR","arcs":[[412,-300,-185,413]],"properties":{"name":"Liberia"}},{"type":"Polygon","id":"LBY","arcs":[[-244,414,415,-249,416,417,418]],"properties":{"name":"Libya"}},{"type":"Polygon","id":"LKA","arcs":[[419]],"properties":{"name":"Sri Lanka"}},{"type":"Polygon","id":"LSO","arcs":[[420]],"properties":{"name":"Lesotho"}},{"type":"Polygon","id":"LTU","arcs":[[-97,421,422,423,424]],"properties":{"name":"Lithuania"}},{"type":"Polygon","id":"LUX","arcs":[[-281,-64,-225]],"properties":{"name":"Luxembourg"}},{"type":"Polygon","id":"LVA","arcs":[[-261,425,-93,-425,426]],"properties":{"name":"Latvia"}},{"type":"Polygon","id":"MAR","arcs":[[-241,427,428]],"properties":{"name":"Morocco"}},{"type":"Polygon","id":"MDA","arcs":[[429,430]],"properties":{"name":"Moldova"}},{"type":"Polygon","id":"MDG","arcs":[[431]],"properties":{"name":"Madagascar"}},{"type":"Polygon","id":"MEX","arcs":[[-99,-310,432,433,434]],"properties":{"name":"Mexico"}},{"type":"Polygon","id":"MKD","arcs":[[435,-83,-306,-18,-405]],"properties":{"name":"Macedonia"}},{"type":"Polygon","id":"MLI","arcs":[[-238,436,-73,-187,-299,437,438]],"properties":{"name":"Mali"}},{"type":"Polygon","id":"MMR","arcs":[[-79,-350,-173,-408,439,440]],"properties":{"name":"Myanmar"}},{"type":"Polygon","id":"MNE","arcs":[[-322,-90,441,-403,-16,442]],"properties":{"name":"Montenegro"}},{"type":"Polygon","id":"MNG","arcs":[[-183,443]],"properties":{"name":"Mongolia"}},{"type":"Polygon","id":"MOZ","arcs":[[444,445,446,447,448,449,450,451]],"properties":{"name":"Mozambique"}},{"type":"Polygon","id":"MRT","arcs":[[452,-239,-439,453,454]],"properties":{"name":"Mauritania"}},{"type":"Polygon","id":"MWI","arcs":[[455,456,-450]],"properties":{"name":"Malawi"}},{"type":"MultiPolygon","id":"MYS","arcs":[[[457,458]],[[-346,459,-114,460]]],"properties":{"name":"Malaysia"}},{"type":"Polygon","id":"NAM","arcs":[[-8,461,-119,462,463]],"properties":{"name":"Namibia"}},{"type":"Polygon","id":"NCL","arcs":[[464]],"properties":{"name":"New Caledonia"}},{"type":"Polygon","id":"NER","arcs":[[-437,-245,-419,465,-193,466,-69,-74]],"properties":{"name":"Niger"}},{"type":"Polygon","id":"NGA","arcs":[[-70,-467,-192,467]],"properties":{"name":"Nigeria"}},{"type":"Polygon","id":"NIC","arcs":[[-320,468,-212,469]],"properties":{"name":"Nicaragua"}},{"type":"Polygon","id":"NLD","arcs":[[-226,-67,470]],"properties":{"name":"Netherlands"}},{"type":"MultiPolygon","id":"NOR","arcs":[[[471,-270,472,473]],[[474]],[[475]],[[476]]],"properties":{"name":"Norway"}},{"type":"Polygon","id":"NPL","arcs":[[-176,-349]],"properties":{"name":"Nepal"}},{"type":"MultiPolygon","id":"NZL","arcs":[[[477]],[[478]]],"properties":{"name":"New Zealand"}},{"type":"MultiPolygon","id":"OMN","arcs":[[[479,480,-21,481]],[[-19,482]]],"properties":{"name":"Oman"}},{"type":"Polygon","id":"PAK","arcs":[[-352,483,-354,-4,-178]],"properties":{"name":"Pakistan"}},{"type":"Polygon","id":"PAN","arcs":[[-214,484,-206,485]],"properties":{"name":"Panama"}},{"type":"Polygon","id":"PER","arcs":[[-246,-209,-106,-102,-167,486]],"properties":{"name":"Peru"}},{"type":"MultiPolygon","id":"PHL","arcs":[[[487]],[[488]],[[489]],[[490]],[[491]],[[492]],[[493]]],"properties":{"name":"Philippines"}},{"type":"MultiPolygon","id":"PNG","arcs":[[[494]],[[495]],[[-342,496]],[[497]]],"properties":{"name":"Papua New Guinea"}},{"type":"Polygon","id":"POL","arcs":[[498,-422,-96,499,500,-221,-223,501]],"properties":{"name":"Poland"}},{"type":"Polygon","id":"PRI","arcs":[[502]],"properties":{"name":"Puerto Rico"}},{"type":"Polygon","id":"PRK","arcs":[[-401,503,-169,504,505]],"properties":{"name":"North Korea"}},{"type":"Polygon","id":"PRT","arcs":[[-258,506]],"properties":{"name":"Portugal"}},{"type":"Polygon","id":"PRY","arcs":[[-105,-26,-104]],"properties":{"name":"Paraguay"}},{"type":"Polygon","id":"QAT","arcs":[[507,508]],"properties":{"name":"Qatar"}},{"type":"Polygon","id":"ROU","arcs":[[-430,509,510,-85,511,-330,512]],"properties":{"name":"Romania"}},{"type":"MultiPolygon","id":"RUS","arcs":[[[513]],[[-423,-499,514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[520]],[[521]],[[-505,-184,-444,-182,-387,522,-58,-290,523,524,-94,-426,-260,525,-271,-472,526]],[[527]],[[528]],[[529]]],"properties":{"name":"Russia"}},{"type":"Polygon","id":"RWA","arcs":[[-60,-197,530,531]],"properties":{"name":"Rwanda"}},{"type":"Polygon","id":"-99","arcs":[[-240,-453,532,-428]],"properties":{"name":"Western Sahara"}},{"type":"Polygon","id":"SAU","arcs":[[-378,-360,-406,533,-508,534,-22,-481,535,536]],"properties":{"name":"Saudi Arabia"}},{"type":"Polygon","id":"SDN","arcs":[[537,-417,-248,538,-253,-268,539,540,541,-122]],"properties":{"name":"Sudan"}},{"type":"Polygon","id":"SDS","arcs":[[-392,542,-202,-124,543,-541,544,-266]],"properties":{"name":"South Sudan"}},{"type":"Polygon","id":"SEN","arcs":[[-454,-438,-298,-302,545,546,547]],"properties":{"name":"Senegal"}},{"type":"MultiPolygon","id":"SLB","arcs":[[[548]],[[549]],[[550]],[[551]],[[552]]],"properties":{"name":"Solomon Islands"}},{"type":"Polygon","id":"SLE","arcs":[[-295,-413,553]],"properties":{"name":"Sierra Leone"}},{"type":"Polygon","id":"SLV","arcs":[[-313,-318,554]],"properties":{"name":"El Salvador"}},{"type":"Polygon","id":"-99","arcs":[[-263,-230,555,556]],"properties":{"name":"Somaliland"}},{"type":"Polygon","id":"SOM","arcs":[[-393,-264,-557,557]],"properties":{"name":"Somalia"}},{"type":"Polygon","id":"SRB","arcs":[[-84,-436,-404,-442,-92,-326,-331,-512]],"properties":{"name":"Republic of Serbia"}},{"type":"Polygon","id":"SUR","arcs":[[-278,558,-110,-315,559]],"properties":{"name":"Suriname"}},{"type":"Polygon","id":"SVK","arcs":[[560,-328,-53,-222,-501]],"properties":{"name":"Slovakia"}},{"type":"Polygon","id":"SVN","arcs":[[-332,-324,561,-375,-48]],"properties":{"name":"Slovenia"}},{"type":"Polygon","id":"SWE","arcs":[[-473,-269,562]],"properties":{"name":"Sweden"}},{"type":"Polygon","id":"SWZ","arcs":[[-446,563]],"properties":{"name":"Swaziland"}},{"type":"Polygon","id":"SYR","arcs":[[-370,-411,564,565,-362,-381]],"properties":{"name":"Syria"}},{"type":"Polygon","id":"TCD","arcs":[[-418,-538,-128,-194,-466]],"properties":{"name":"Chad"}},{"type":"Polygon","id":"TGO","arcs":[[-75,-72,566,-293]],"properties":{"name":"Togo"}},{"type":"Polygon","id":"THA","arcs":[[-458,567,-440,-410,-397,568]],"properties":{"name":"Thailand"}},{"type":"Polygon","id":"TJK","arcs":[[-179,-2,569,-395]],"properties":{"name":"Tajikistan"}},{"type":"Polygon","id":"TKM","arcs":[[-385,570,-6,-359,571]],"properties":{"name":"Turkmenistan"}},{"type":"Polygon","id":"TLS","arcs":[[-334,572]],"properties":{"name":"East Timor"}},{"type":"Polygon","id":"TTO","arcs":[[573]],"properties":{"name":"Trinidad and Tobago"}},{"type":"Polygon","id":"TUN","arcs":[[-415,-243,574]],"properties":{"name":"Tunisia"}},{"type":"MultiPolygon","id":"TUR","arcs":[[[-291,-34,-357,-363,-566,575]],[[-307,-81,576]]],"properties":{"name":"Turkey"}},{"type":"Polygon","id":"TWN","arcs":[[577]],"properties":{"name":"Taiwan"}},{"type":"Polygon","id":"TZA","arcs":[[-451,-457,578,-198,-61,-532,579,-390,580]],"properties":{"name":"United Republic of Tanzania"}},{"type":"Polygon","id":"UGA","arcs":[[-531,-203,-543,-391,-580]],"properties":{"name":"Uganda"}},{"type":"Polygon","id":"UKR","arcs":[[-510,-431,-513,-329,-561,-500,-95,-525,581]],"properties":{"name":"Ukraine"}},{"type":"Polygon","id":"URY","arcs":[[-28,-113,582]],"properties":{"name":"Uruguay"}},{"type":"MultiPolygon","id":"USA","arcs":[[[583]],[[584]],[[585]],[[586]],[[587]],[[-434,588,-139,589]],[[590]],[[591]],[[592]],[[-141,593]]],"properties":{"name":"United States of America"}},{"type":"Polygon","id":"UZB","arcs":[[-389,-396,-570,-1,-571]],"properties":{"name":"Uzbekistan"}},{"type":"Polygon","id":"VEN","arcs":[[-316,-108,-208,594]],"properties":{"name":"Venezuela"}},{"type":"Polygon","id":"VNM","arcs":[[-399,-409,-171,595]],"properties":{"name":"Vietnam"}},{"type":"MultiPolygon","id":"VUT","arcs":[[[596]],[[597]]],"properties":{"name":"Vanuatu"}},{"type":"Polygon","id":"PSE","arcs":[[-372,-380]],"properties":{"name":"West Bank"}},{"type":"Polygon","id":"YEM","arcs":[[-536,-480,598]],"properties":{"name":"Yemen"}},{"type":"Polygon","id":"ZAF","arcs":[[-463,-118,599,-447,-564,-445,600],[-421]],"properties":{"name":"South Africa"}},{"type":"Polygon","id":"ZMB","arcs":[[-449,601,-120,-462,-7,-199,-579,-456]],"properties":{"name":"Zambia"}},{"type":"Polygon","id":"ZWE","arcs":[[-121,-602,-448,-600]],"properties":{"name":"Zimbabwe"}}]}},"arcs":[[[6847,7264],[15,0],[21,-13]],[[6883,7251],[8,-7],[21,19],[9,-11],[9,27],[16,-1],[5,8],[3,24],[12,21],[15,-14],[-3,-18],[8,-3],[-3,-49],[11,-20],[10,13],[12,6],[18,26],[19,-4],[29,0]],[[7082,7268],[5,-17]],[[7087,7251],[-17,-7],[-14,-11],[-32,-7],[-29,-12],[-17,-26],[7,-25],[3,-29],[-14,-25],[1,-23],[-7,-21],[-27,2],[11,-39],[-17,-15],[-12,-36],[1,-35],[-11,-17],[-10,6],[-21,-8],[-3,-17],[-21,0],[-15,-33],[-1,-50],[-36,-25],[-20,5],[-5,-13],[-17,8],[-28,-9],[-46,30]],[[6690,6819],[25,54],[-2,38],[-21,10],[-3,37],[-9,47],[12,33],[-12,9],[8,42],[11,74]],[[6699,7163],[28,-22],[21,8],[6,26],[22,9],[16,18],[5,47],[24,12],[4,21],[13,-16],[9,-2]],[[5663,4411],[3,-18],[-3,-29],[5,-27],[-4,-22],[2,-21],[-58,1],[-1,-188],[19,-48],[18,-37]],[[5644,4022],[-51,-24],[-67,8],[-20,28],[-112,-2],[-5,-4],[-16,26],[-18,2],[-17,-10],[-13,-11]],[[5325,4035],[-3,37],[4,52],[10,54],[1,25],[9,54],[7,24],[16,39],[9,26],[3,44],[-2,33],[-8,21],[-8,36],[-6,35],[1,13],[9,23],[-9,57],[-5,40],[-14,37],[2,12]],[[5341,4697],[12,8],[8,-2],[10,8],[81,-1],[7,-44],[8,-36],[7,-19],[10,-31],[19,5],[9,8],[15,-8],[4,15],[7,34],[18,3],[1,10],[14,0],[-2,-21],[33,0],[1,-37],[6,-23],[-4,-35],[2,-37],[9,-22],[-2,-70],[7,6],[12,-2],[18,9],[12,-4]],[[5360,4775],[-10,-13],[-5,-15],[-1,-26],[-7,-6]],[[5337,4715],[-7,44]],[[5330,4759],[11,26],[9,10],[10,-20]],[[5583,7470],[-1,-16],[-9,-8],[-1,-19],[-13,-29]],[[5559,7398],[-5,4],[-1,13],[-15,20],[-2,28],[2,40],[4,19],[-5,9]],[[5537,7531],[-2,19],[12,29],[2,-11],[7,5]],[[5556,7573],[6,-16],[7,-6],[2,-21]],[[5571,7530],[-4,-20],[4,-26],[12,-14]],[[6556,6596],[6,-20]],[[6562,6576],[3,-47]],[[6565,6529],[-14,0],[-2,-38],[5,-8],[-13,-12],[0,-24],[-8,-25],[-1,-23]],[[6532,6399],[-5,-13],[-84,30],[-10,60],[-1,13]],[[6432,6489],[5,3],[1,-16],[21,9],[23,-1],[17,-2],[19,40],[21,38],[17,36]],[[3139,1814],[-17,1],[-29,0],[0,132]],[[3093,1947],[10,-27],[14,-44],[36,-36],[39,-14],[-12,-30],[-27,-3],[-14,21]],[[3258,3743],[51,-97],[23,-9],[34,-43],[28,-24],[4,-26],[-27,-89],[28,-16],[31,-9],[22,9],[25,45],[5,52]],[[3482,3536],[14,12],[13,-34],[0,-48],[-23,-32],[-19,-24],[-31,-58],[-38,-80]],[[3398,3272],[-6,-47],[-8,-61],[0,-59],[-6,-13],[-2,-38]],[[3376,3054],[-2,-31],[36,-51],[-4,-40],[17,-26],[-1,-29],[-27,-76],[-41,-31],[-56,-13],[-30,6],[5,-35],[-5,-44],[5,-30],[-17,-21],[-28,-8],[-27,22],[-11,-16],[4,-59],[19,-17],[15,18],[8,-30],[-25,-19],[-22,-37],[-5,-59],[-6,-32],[-26,0],[-22,-30],[-8,-44],[27,-44],[27,-12],[-10,-53],[-33,-33],[-18,-69],[-25,-23],[-11,-28],[9,-61],[18,-35],[-12,3]],[[3094,1967],[-25,10],[-67,7],[-12,35],[1,44],[-19,-4],[-10,22],[-2,62],[21,26],[9,38],[-3,30],[14,50],[11,78],[-3,35],[12,11],[-3,23],[-13,11],[9,25],[-12,23],[-7,68],[11,12],[-4,72],[6,60],[7,53],[17,21],[-8,58],[0,54],[21,39],[-1,49],[16,58],[0,54],[-7,11],[-13,102],[17,61],[-3,57],[10,54],[18,55],[20,37],[-8,23],[6,19],[-1,99],[30,29],[9,61],[-3,15]],[[3135,3714],[23,53],[37,-14],[16,-43],[11,48],[31,-3],[5,-12]],[[6291,7347],[-10,-1]],[[6281,7346],[-12,34],[0,9],[-12,0],[-8,16],[-6,-2]],[[6243,7403],[-11,17],[-20,15],[2,29],[-4,21]],[[6210,7485],[38,9]],[[6248,7494],[6,-16],[10,-10],[-5,-15],[15,-20],[-8,-19],[12,-16],[12,-10],[1,-41]],[[3344,328],[-8,-30],[-8,-26],[-58,8],[-62,-4],[-35,20],[0,2],[-15,18],[62,-3],[60,-5],[21,24],[15,21],[28,-25]],[[577,361],[-53,-9],[-37,21],[-16,21],[-1,4],[-18,16],[17,22],[51,-9],[28,-19],[21,-21],[8,-26]],[[3745,446],[34,-25],[12,-36],[3,-26],[1,-30],[-43,-18],[-45,-15],[-52,-14],[-58,-12],[-66,4],[-36,19],[4,25],[60,16],[24,20],[17,25],[13,22],[16,21],[18,24],[15,0],[41,13],[42,-13]],[[1632,715],[36,-9],[33,10],[-15,-21],[-26,-15],[-39,5],[-28,21],[6,19],[33,-10]],[[1512,716],[42,-23],[-16,2],[-36,6],[-38,16],[20,13],[28,-14]],[[2250,807],[30,-8],[31,7],[16,-33],[-22,4],[-33,-2],[-35,2],[-37,-3],[-29,11],[-14,25],[17,10],[36,-8],[40,-5]],[[3098,865],[3,-26],[-5,-24],[-7,-22],[-33,-8],[-31,-11],[-37,1],[14,23],[-33,-8],[-31,-8],[-21,17],[-1,24],[30,24],[19,7],[32,-3],[8,30],[2,22],[-1,48],[16,28],[26,9],[14,-22],[7,-22],[12,-27],[9,-25],[8,-27]],[[3371,1267],[-12,-13],[-21,10],[-22,-6],[-20,-14],[-20,-15],[-13,-17],[-4,-24],[2,-22],[13,-19],[-19,-14],[-27,-5],[-15,-20],[-16,-18],[-17,-25],[-5,-22],[10,-25],[15,-18],[22,-14],[22,-19],[11,-23],[6,-22],[8,-23],[13,-20],[8,-22],[4,-54],[8,-22],[3,-23],[8,-23],[-3,-32],[-16,-24],[-16,-20],[-37,-8],[-13,-21],[-16,-19],[-42,-22],[-37,-10],[-35,-12],[-38,-13],[-22,-24],[-45,-3],[-49,3],[-44,-5],[-46,0],[8,-23],[43,-11],[31,-16],[17,-21],[-31,-18],[-48,6],[-39,-15],[-2,-25],[-1,-23],[33,-19],[6,-22],[35,-22],[59,-10],[50,-16],[39,-18],[51,-19],[69,-9],[68,-16],[47,-18],[52,-19],[27,-28],[14,-22],[34,21],[45,17],[49,18],[57,16],[50,16],[69,1],[68,-8],[56,-14],[18,25],[39,18],[70,1],[55,13],[52,12],[58,8],[61,11],[43,15],[-20,21],[-12,21],[0,22],[-53,-3],[-57,-9],[-55,0],[-8,22],[4,44],[13,13],[40,14],[46,13],[34,18],[34,17],[25,23],[38,11],[37,8],[19,5],[43,2],[41,8],[34,12],[34,13],[31,14],[38,19],[25,20],[26,17],[8,23],[-29,14],[9,24],[19,19],[29,11],[30,14],[29,19],[21,23],[14,28],[20,16],[33,-4],[14,-19],[33,-3],[1,22],[14,24],[30,-6],[7,-22],[33,-4],[36,11],[35,7],[32,-4],[12,-24],[30,20],[28,10],[32,8],[31,8],[28,14],[31,9],[24,13],[17,21],[21,-15],[29,8],[20,-28],[15,-21],[32,12],[13,23],[28,16],[36,-3],[11,-22],[23,22],[30,7],[33,2],[29,-1],[31,-7],[30,-4],[13,-19],[18,-18],[30,11],[33,2],[32,0],[31,1],[27,8],[30,7],[24,17],[26,10],[29,6],[21,16],[15,32],[16,20],[29,-9],[10,-21],[24,-14],[29,5],[20,-21],[20,-15],[29,14],[10,25],[25,11],[28,19],[28,8],[32,12],[22,13],[23,14],[22,12],[26,-7],[25,21],[18,16],[26,-1],[23,14],[5,21],[24,16],[22,12],[28,9],[26,5],[24,-4],[26,-6],[23,-16],[2,-25],[25,-20],[17,-16],[33,-7],[18,-16],[23,-16],[27,-4],[22,12],[24,24],[26,-13],[27,-7],[26,-7],[28,-4],[27,0],[23,-62],[-1,-15],[-3,-26],[-27,-15],[-22,-22],[4,-24],[31,2],[-3,-24],[-15,-22],[-13,-24],[22,-18],[32,-6],[32,10],[15,23],[9,22],[15,19],[18,17],[7,21],[15,29],[17,6],[32,2],[27,7],[29,9],[13,24],[8,22],[19,22],[28,15],[23,11],[15,20],[16,10],[20,9],[28,-5],[25,5],[27,7],[31,-3],[20,16],[14,40],[10,-17],[13,-27],[24,-12],[26,-5],[27,7],[28,-4],[26,-2],[18,6],[23,-3],[21,-13],[25,8],[30,0],[26,8],[29,-8],[18,20],[14,20],[19,16],[35,44],[18,-8],[21,-17],[19,-20],[35,-36],[27,-1],[26,0],[30,6],[30,9],[23,16],[19,17],[31,2],[20,13],[22,-11],[14,-19],[20,-18],[30,2],[19,-15],[34,-15],[34,-6],[29,5],[22,18],[18,19],[25,4],[25,-8],[29,-6],[26,10],[25,0],[25,-6],[26,-6],[25,11],[29,9],[29,2],[31,0],[26,6],[25,5],[8,28],[1,25],[17,-16],[5,-27],[9,-24],[12,-20],[23,-10],[32,3],[36,1],[25,4],[36,0],[27,1],[36,-3],[31,-4],[20,-19],[-6,-22],[18,-17],[30,-14],[31,-15],[36,-10],[37,-10],[29,-9],[31,-1],[18,20],[25,-17],[21,-18],[24,-14],[34,-6],[32,-7],[14,-23],[31,-14],[22,-21],[31,-9],[32,1],[30,-3],[33,1],[33,-5],[31,-8],[29,-14],[29,-11],[19,-18],[-3,-23],[-15,-21],[-12,-26],[-10,-21],[-13,-24],[-36,-10],[-17,-20],[-36,-13],[-12,-23],[-19,-22],[-20,-19],[-12,-24],[-7,-22],[-3,-27],[1,-22],[16,-23],[6,-22],[13,-21],[51,-8],[11,-25],[-50,-10],[-42,-12],[-53,-3],[-23,-33],[-5,-28],[-12,-22],[-15,-22],[37,-20],[14,-24],[24,-22],[34,-20],[39,-18],[41,-19],[64,-18],[14,-29],[80,-13],[6,-4],[20,-18],[77,15],[64,-18],[48,-15],[-9998,0],[25,34],[50,-18],[3,2],[29,19],[4,-1],[3,0],[41,-25],[35,25],[6,3],[82,10],[26,-13],[13,-7],[42,-20],[79,-15],[62,-19],[108,-14],[80,17],[118,-12],[66,-18],[74,17],[77,16],[6,28],[-109,2],[-90,14],[-23,23],[-75,13],[5,27],[10,24],[11,22],[-6,24],[-46,16],[-21,21],[-43,19],[67,-4],[64,10],[41,-20],[49,17],[46,22],[22,20],[-10,24],[-35,16],[-41,18],[-57,3],[-50,8],[-54,6],[-18,22],[-36,19],[-22,21],[-9,67],[14,-6],[25,-19],[46,6],[44,8],[23,-25],[44,6],[37,12],[35,16],[31,20],[42,6],[-1,22],[-10,22],[8,21],[36,10],[16,-19],[43,11],[32,15],[40,1],[37,6],[38,14],[30,13],[33,12],[22,-3],[19,-5],[42,8],[37,-10],[38,1],[36,8],[38,-6],[41,-5],[39,2],[40,-1],[41,-1],[38,2],[29,17],[33,10],[35,-13],[33,10],[30,21],[18,-18],[10,-21],[18,-20],[29,17],[33,-21],[37,-7],[33,-17],[39,4],[35,10],[42,-2],[37,-8],[39,-11],[14,26],[-18,20],[-13,20],[-36,5],[-16,22],[-6,22],[-10,44],[21,-8],[37,-4],[36,4],[32,-9],[29,-18],[12,-21],[37,-3],[36,8],[38,12],[35,7],[28,-14],[37,4],[24,45],[22,-26],[32,-11],[35,6],[23,-23],[36,-2],[34,-7],[33,-13],[22,22],[11,21],[28,-23],[38,6],[28,-13],[19,-20],[37,6],[29,13],[28,15],[34,8],[39,7],[35,8],[28,13],[16,18],[6,26],[-3,24],[-9,23],[-9,23],[-9,23],[-7,21],[-2,23],[3,23],[13,22],[11,25],[4,23],[-5,25],[-4,24],[14,26],[15,18],[18,22],[19,18],[23,17],[10,26],[16,16],[17,15],[27,4],[17,18],[20,12],[23,7],[20,15],[16,18],[21,7],[17,-15],[-11,-20],[-28,-17]],[[6914,2184],[18,-18],[26,-8],[1,-11],[-8,-27],[-43,-4],[0,32],[4,24],[2,12]],[[9037,2647],[27,-20],[15,8],[22,11],[17,-4],[2,-70],[-10,-20],[-3,-48],[-9,16],[-20,-41],[-5,3],[-18,2],[-17,51],[-3,39],[-16,51],[0,27],[18,-5]],[[8986,4244],[10,-46],[18,22],[9,-25],[14,-23],[-3,-26],[6,-51],[4,-30],[7,-7],[8,-50],[-3,-31],[9,-40],[30,-31],[20,-28],[18,-26],[-3,-14],[16,-37],[10,-64],[11,13],[12,-26],[6,10],[5,-63],[20,-36],[13,-23],[22,-48],[7,-47],[1,-34],[-2,-36],[13,-51],[-1,-52],[-5,-27],[-8,-53],[1,-34],[-5,-42],[-13,-54],[-20,-29],[-10,-46],[-10,-29],[-8,-51],[-11,-29],[-7,-45],[-3,-40],[1,-19],[-16,-20],[-31,-3],[-25,-24],[-13,-23],[-17,-25],[-23,26],[-17,10],[4,31],[-15,-11],[-24,-43],[-24,16],[-16,10],[-16,4],[-27,17],[-18,36],[-5,45],[-6,30],[-14,24],[-27,7],[9,29],[-6,44],[-14,-41],[-25,-11],[15,33],[4,34],[11,29],[-2,43],[-23,-50],[-17,-20],[-11,-47],[-22,24],[1,31],[-17,43],[-15,22],[5,14],[-35,36],[-20,2],[-26,28],[-50,-5],[-36,-21],[-32,-20],[-26,4],[-30,-31],[-24,-13],[-5,-31],[-10,-24],[-24,-2],[-17,-5],[-25,11],[-20,-6],[-19,-3],[-16,-32],[-9,3],[-14,-17],[-13,-19],[-20,3],[-19,0],[-29,38],[-15,11],[0,34],[14,8],[5,13],[-1,21],[3,41],[-3,35],[-14,60],[-5,34],[1,34],[-11,38],[-1,17],[-12,24],[-3,46],[-16,47],[-4,25],[12,-25],[-9,54],[14,-17],[8,-23],[-1,31],[-13,46],[-3,19],[-6,17],[3,35],[5,14],[4,30],[-3,34],[12,43],[2,-45],[11,40],[23,20],[13,25],[22,22],[12,5],[8,-8],[22,22],[17,7],[4,13],[7,5],[16,-1],[29,17],[15,26],[7,32],[16,30],[2,24],[0,32],[20,50],[11,-51],[12,12],[-10,28],[9,28],[12,-13],[4,45],[15,29],[7,24],[13,10],[1,16],[12,-7],[1,15],[12,9],[13,8],[21,-27],[15,-35],[18,-1],[17,-5],[-6,32],[14,47],[12,16],[-4,15],[12,33],[17,21],[14,-7],[23,11],[0,31],[-21,19],[15,9],[19,-15],[14,-24],[24,-15],[8,6],[17,-19],[16,17],[11,-5],[6,12],[13,-30],[-8,-31],[-10,-24],[-10,-2],[4,-24],[-9,-29],[-9,-29],[2,-17],[22,-33],[21,-19],[14,-20],[20,-35],[8,0],[15,-15],[4,-18],[26,-20],[19,20],[5,32],[6,26],[3,32],[9,47],[-4,29],[2,17],[-3,34],[3,44],[6,12],[-5,20],[7,31],[5,33],[1,17],[10,22],[8,-29],[2,-37],[7,-7],[1,-25],[10,-30],[2,-34],[-1,-21]],[[5449,7825],[-5,-10],[-25,-2],[-14,-13],[-23,5]],[[5382,7805],[-39,15],[-6,20],[-28,-10],[-3,-11],[-17,8]],[[5289,7827],[-14,2],[-13,11],[5,14],[-2,11]],[[5265,7865],[9,3],[14,-17],[4,16],[24,-2],[20,10],[14,-2],[8,-12],[3,10],[-4,39],[10,7],[10,28]],[[5377,7945],[20,-19],[16,24],[10,4],[21,-18],[13,3],[13,-11]],[[5470,7928],[-2,-8],[3,-20]],[[5471,7900],[-2,-24],[-16,0],[5,-13],[-9,-38]],[[6281,7346],[-19,8],[-14,27],[-5,22]],[[6357,7321],[-7,-3],[-18,31],[10,29],[-8,17],[-11,-4],[-32,-44]],[[6248,7494],[7,9],[21,-17],[15,-3],[3,7],[-13,32],[7,8]],[[6288,7530],[8,-2],[19,-36],[12,-4],[5,15],[16,24]],[[6348,7527],[15,-31],[14,-42],[13,-3],[9,-16],[-23,-5],[-5,-45],[-5,-21],[-10,-14],[1,-29]],[[5805,4889],[17,-4],[9,33],[14,-4]],[[5845,4914],[2,-23],[6,-13],[0,-19],[-7,-13],[-11,-31],[-10,-21],[-11,-3]],[[5814,4791],[-2,71],[-7,27]],[[5170,8058],[-3,-40]],[[5167,8018],[-7,-2],[-3,-33]],[[5157,7983],[-25,27],[-14,-5],[-19,28],[-13,24],[-13,1],[-4,21]],[[5069,8079],[22,11]],[[5091,8090],[20,-4],[26,12],[18,-26],[15,-14]],[[5024,5707],[10,6],[5,26],[14,6],[6,17]],[[5059,5762],[9,18],[10,0],[21,-34]],[[5099,5746],[-1,-20],[6,-35],[-5,-24],[3,-15],[-14,-37],[-8,-18],[-5,-37],[0,-38],[-1,-95]],[[5074,5427],[-23,-7]],[[5051,5420],[-7,41],[1,135],[-5,12],[-1,29],[-10,21],[-9,18],[4,31]],[[4849,5670],[-2,34],[8,25],[-1,20],[22,49],[4,41],[8,14],[13,-8],[12,12],[4,15],[21,27],[5,18],[26,25],[16,8],[7,-11],[17,0]],[[5009,5939],[-2,-29],[4,-27],[16,-38],[0,-29],[32,-13],[0,-41]],[[5024,5707],[-24,1]],[[5000,5708],[-13,5],[-9,-10],[-12,4],[-49,-2],[0,-34],[3,-44]],[[4920,5627],[-19,15],[-13,-2],[-9,-15],[-13,12],[-5,20],[-12,13]],[[7472,6360],[-4,49],[-10,44],[5,36],[-17,15],[6,22],[17,22],[-20,31],[10,40],[22,-25],[13,-3],[3,-41],[26,-8],[26,1],[16,-10],[-13,-50],[-12,-4],[-9,-33],[15,-31],[5,38],[7,0],[15,-94]],[[7573,6359],[-1,-42],[-9,9],[2,-48]],[[7565,6278],[-8,31],[-2,30],[-5,29],[-12,34],[-25,2],[2,-24],[-9,-33],[-11,12],[-5,-11],[-7,7],[-11,5]],[[5777,7539],[-24,8],[-29,-19]],[[5724,7528],[0,-29],[-25,-6],[-20,21],[-22,-17],[-20,2]],[[5637,7499],[-2,39],[-14,19]],[[5621,7557],[4,8],[-3,8],[5,18],[10,19],[-13,25],[-3,22],[7,13]],[[5628,7670],[8,-24],[11,4],[21,-9],[41,-3],[14,15],[33,14],[20,-22],[16,-6]],[[5792,7639],[-14,-24],[-10,-43],[9,-33]],[[2845,6461],[-6,-3],[-7,34],[-11,17],[6,37],[9,-2],[9,-49],[0,-34]],[[2838,6627],[-31,-9],[-2,22],[13,4],[19,-1],[1,-16]],[[2860,6628],[-4,-42],[-6,7],[1,31],[-13,24],[0,6],[22,-26]],[[5533,7628],[-5,-5],[-9,-14],[-4,-32]],[[5515,7577],[-25,22],[-11,25],[-10,13],[-13,22],[-6,18],[-14,28],[6,24],[10,-13],[6,12],[13,1],[24,-10],[19,1],[13,-13]],[[5527,7707],[10,0],[-7,-26],[13,-22],[-4,-28],[-6,-3]],[[5735,8343],[17,10],[30,22]],[[5782,8375],[29,-15],[4,-14],[14,7],[28,-14],[2,-28],[-6,-16],[18,-39],[11,-10],[-2,-11],[19,-10],[8,-16],[-11,-13],[-22,2],[-5,-6],[6,-19],[7,-38]],[[5882,8135],[-24,-3],[-9,-13],[-1,-30],[-11,6],[-25,-3],[-8,13],[-10,-10],[-11,9],[-21,1],[-31,14],[-29,5],[-21,-2],[-15,-16],[-14,-2]],[[5652,8104],[0,26],[-9,28],[17,12],[0,23],[-8,23],[-1,26]],[[5651,8242],[27,0],[30,22],[7,33],[22,19],[-2,27]],[[2529,5996],[-8,0],[2,66],[0,47]],[[2523,6109],[0,9],[3,2],[5,-7],[10,36],[5,1]],[[2546,6150],[1,-9],[5,0],[-1,-16],[-4,-26],[2,-9],[-3,-21],[2,-6],[-3,-29],[-6,-16],[-5,-2],[-5,-20]],[[3135,3714],[-20,-8],[-11,81],[-15,66],[9,58],[-15,25],[-3,42],[-14,40]],[[3066,4018],[18,64],[-12,50],[6,20],[-5,22],[11,29],[0,50],[2,42],[6,20],[-24,95]],[[3068,4410],[20,-5],[15,1],[6,18],[24,24],[15,22],[36,10],[-3,-44],[4,-23],[-3,-39],[31,-53],[31,-10],[11,-22],[18,-12],[12,-17],[17,1],[17,-18],[1,-34],[5,-17],[1,-26],[-9,-1],[11,-68],[53,-3],[-4,-34],[3,-23],[15,-17],[7,-37],[-5,-46],[-8,-26],[3,-34],[-9,-12]],[[3383,3865],[0,18],[-26,30],[-26,1],[-48,-17],[-13,-52],[-1,-32],[-11,-70]],[[3482,3536],[5,35],[4,34],[0,33],[-10,11],[-10,-10],[-11,3],[-3,22],[-3,55],[-5,17],[-19,16],[-11,-11],[-29,11],[2,80],[-9,33]],[[3068,4410],[-16,-10],[-12,7],[1,89],[-22,-34],[-25,1],[-10,32],[-19,3],[6,25],[-15,36],[-12,54],[7,10],[0,25],[17,17],[-3,32],[7,21],[2,27],[32,41],[23,11],[4,9],[25,-3]],[[3058,4803],[12,162],[1,26],[-5,34],[-12,21],[0,43],[16,10],[6,-6],[0,22],[-16,6],[0,37],[54,-1],[9,20],[8,-18],[5,-35],[6,7]],[[3142,5131],[15,-31],[21,4],[6,18],[20,14],[12,9],[3,25],[20,17],[-2,12],[-23,6],[-4,37],[1,39],[-12,16],[5,5],[21,-7],[22,-15],[8,14],[20,9],[31,22],[10,23],[-4,16]],[[3312,5364],[15,3],[6,-14],[-4,-26],[10,-9],[6,-27],[-7,-21],[-5,-50],[7,-30],[2,-27],[17,-28],[14,-3],[3,11],[9,3],[12,10],[9,16],[16,-5],[7,2]],[[3429,5169],[15,-5],[2,12],[-4,12],[2,17],[12,-5],[13,6],[16,-12]],[[3485,5194],[12,-13],[8,16],[7,-2],[3,-17],[14,5],[10,22],[9,43],[16,55]],[[3564,5303],[10,2],[7,-32],[15,-104],[15,-9],[1,-41],[-21,-49],[8,-18],[50,-9],[1,-59],[21,39],[35,-22],[46,-36],[13,-34],[-4,-33],[32,18],[54,-31],[42,2],[41,-49],[35,-66],[22,-17],[23,-2],[10,-19],[10,-75],[4,-36],[-11,-97],[-14,-39],[-39,-82],[-18,-67],[-20,-51],[-7,-1],[-8,-44],[2,-111],[-8,-91],[-3,-39],[-8,-23],[-5,-79],[-29,-77],[-4,-61],[-23,-26],[-6,-35],[-30,0],[-44,-23],[-20,-26],[-31,-17],[-32,-47],[-24,-59],[-4,-44],[5,-32],[-6,-60],[-6,-29],[-19,-32],[-31,-104],[-25,-47],[-18,-28],[-13,-56],[-18,-34]],[[3517,3062],[-8,34],[12,28],[-16,40],[-22,32],[-28,38],[-11,-1],[-28,45],[-18,-6]],[[8206,5379],[-2,-29],[-1,-38],[-13,2],[-6,-20],[-13,30]],[[8171,5324],[11,22],[24,33]],[[7466,6670],[18,44],[15,15],[20,-14],[15,-1],[12,-16]],[[7546,6698],[11,-19],[-2,-36],[-22,-2],[-24,4],[-17,-9],[-26,22],[0,12]],[[5816,3752],[-39,-44],[-25,-44],[-9,-39],[-8,-22],[-15,-5],[-5,-28],[-3,-19],[-18,-13],[-23,2],[-13,17],[-12,7],[-13,-13],[-7,-29],[-13,-18],[-14,-26],[-20,-6],[-6,21],[3,36],[-17,56],[-7,9]],[[5552,3594],[0,172],[27,2],[1,211],[20,2],[43,20],[11,-24],[18,23],[8,0],[16,14]],[[5696,4014],[5,-5]],[[5701,4009],[10,-47],[6,-11],[9,-34],[31,-65],[12,-6],[0,-21],[8,-37],[22,-9],[17,-27]],[[5634,5715],[3,-25],[16,-37],[0,-24],[-4,-25],[2,-18],[9,-17]],[[5660,5569],[21,-26]],[[5681,5543],[16,-24],[0,-19],[19,-31],[11,-25],[7,-36],[21,-23],[4,-19]],[[5759,5366],[-9,-6],[-18,1],[-21,7],[-10,-6],[-4,-14],[-9,-2],[-11,13],[-31,-30],[-13,6],[-3,-4],[-9,-36],[-20,12],[-21,5],[-17,22],[-23,20],[-15,-19],[-11,-30],[-2,-41]],[[5512,5264],[-18,3],[-19,10],[-17,-31],[-14,-55]],[[5444,5191],[-3,17],[-1,27],[-13,19],[-10,31],[-3,21],[-13,31],[2,17],[-2,25],[2,46],[6,11],[14,59]],[[5423,5495],[23,5],[5,15],[5,-1],[7,-13],[35,22],[12,23],[14,21],[-2,21],[7,5],[27,-4],[26,28],[20,64],[14,24],[18,10]],[[3231,7807],[20,-8],[26,2],[-14,-24],[-10,-4],[-36,25],[-7,20],[11,18],[10,-29]],[[3282,7958],[-13,-1],[-36,18],[-26,28],[10,5],[36,-14],[29,-25],[0,-11]],[[1569,7923],[-14,-8],[-46,26],[-8,21],[-25,21],[-5,17],[-29,11],[-11,32],[3,13],[29,-13],[17,-8],[26,-7],[10,-20],[13,-28],[28,-25],[12,-32]],[[3440,8051],[-19,-51],[19,20],[18,-13],[-9,-21],[24,-16],[13,15],[28,-19],[-9,-43],[20,10],[3,-31],[9,-37],[-12,-52],[-13,-2],[-18,11],[6,49],[-8,7],[-32,-51],[-16,2],[19,28],[-26,14],[-30,-4],[-54,2],[-4,18],[17,21],[-12,16],[23,35],[29,94],[17,34],[24,20],[13,-2],[-5,-16],[-15,-38]],[[1313,8250],[27,4],[-9,-67],[25,-47],[-12,0],[-16,27],[-11,27],[-14,18],[-5,26],[2,19],[13,-7]],[[2797,8729],[-10,-31],[-13,5],[-7,18],[1,4],[11,18],[11,-2],[7,-12]],[[2724,8762],[-32,-33],[-20,2],[-6,16],[21,27],[38,-1],[-1,-11]],[[2634,8936],[5,-26],[14,9],[16,-16],[31,-20],[31,-18],[3,-28],[20,4],[20,-19],[-25,-19],[-43,14],[-15,27],[-28,-31],[-39,-31],[-10,34],[-38,-5],[25,29],[3,47],[10,54],[20,-5]],[[2892,9024],[-31,-3],[-7,29],[12,33],[25,8],[22,-16],[0,-25],[-3,-9],[-18,-17]],[[2342,9140],[-17,-21],[-37,18],[-23,-7],[-38,27],[25,18],[19,26],[29,-17],[17,-11],[8,-11],[17,-22]],[[3134,7724],[-18,33],[0,81],[-12,17],[-19,-10],[-9,15],[-21,-45],[-9,-45],[-10,-27],[-11,-9],[-9,-3],[-3,-15],[-51,0],[-42,-1],[-13,-10],[-29,-43],[-4,-5],[-9,-23],[-25,0],[-27,0],[-13,-9],[4,-12],[3,-18],[-1,-6],[-36,-29],[-28,-9],[-33,-32],[-7,0],[-9,9],[-3,9],[0,6],[6,21],[14,32],[8,35],[-6,51],[-6,54],[-29,28],[4,10],[-4,7],[-8,0],[-6,10],[-1,14],[-5,-6],[-8,2],[2,5],[-7,6],[-2,16],[-22,19],[-22,19],[-28,23],[-26,22],[-25,-17],[-9,-1],[-34,16],[-22,-8],[-27,18],[-29,10],[-19,3],[-9,10],[-5,33],[-9,-1],[0,-22],[-58,0],[-95,0],[-94,0],[-83,0],[-84,0],[-82,0],[-84,0],[-28,0],[-82,0],[-79,0]],[[1587,7952],[-4,0],[-53,58],[-20,25],[-51,25],[-15,52],[4,36],[-36,26],[-4,47],[-34,43],[-1,31]],[[1373,8295],[16,28],[-1,37],[-47,38],[-29,67],[-17,43],[-25,26],[-19,25],[-15,30],[-28,-19],[-27,-33],[-24,39],[-20,26],[-27,16],[-27,2],[0,336],[0,219]],[[1083,9175],[52,-14],[44,-28],[29,-6],[24,25],[34,18],[41,-7],[41,26],[46,15],[19,-25],[21,14],[6,28],[19,-6],[47,-53],[37,40],[4,-45],[34,10],[10,17],[34,-4],[43,-24],[65,-22],[38,-10],[27,4],[37,-30],[-39,-30],[51,-12],[75,7],[23,10],[30,-35],[30,30],[-28,25],[18,20],[33,3],[23,5],[22,-14],[28,-32],[31,5],[49,-27],[43,10],[41,-2],[-3,37],[24,10],[43,-20],[0,-56],[18,48],[22,-2],[13,59],[-30,37],[-32,24],[2,65],[33,43],[36,-10],[28,-26],[38,-66],[-25,-29],[52,-12],[0,-61],[37,47],[33,-38],[-8,-44],[27,-40],[29,43],[20,51],[2,64],[39,-4],[41,-9],[37,-29],[2,-29],[-21,-32],[20,-32],[-4,-28],[-54,-42],[-39,-9],[-28,18],[-9,-30],[-26,-49],[-8,-26],[-33,-40],[-39,-4],[-22,-25],[-2,-38],[-32,-8],[-34,-48],[-31,-66],[-10,-47],[-2,-68],[41,-10],[12,-56],[13,-44],[39,11],[52,-25],[28,-23],[20,-28],[34,-16],[30,-25],[46,-3],[30,-6],[-5,-51],[9,-60],[20,-66],[41,-56],[22,19],[15,61],[-15,94],[-19,31],[44,27],[32,42],[15,41],[-2,39],[-19,51],[-34,44],[33,62],[-12,53],[-9,93],[19,13],[48,-16],[28,-6],[23,16],[26,-20],[34,-34],[9,-23],[49,-5],[-1,-49],[10,-75],[25,-9],[20,-35],[40,33],[27,65],[18,27],[22,-52],[36,-76],[31,-71],[-11,-37],[36,-33],[25,-34],[45,-15],[18,-19],[11,-50],[21,-8],[11,-22],[2,-66],[-20,-23],[-20,-20],[-45,-21],[-35,-49],[-47,-9],[-60,12],[-41,0],[-29,-4],[-23,-42],[-36,-26],[-40,-78],[-32,-55],[24,10],[44,77],[59,50],[41,6],[25,-29],[-27,-40],[9,-64],[9,-44],[36,-30],[46,9],[28,66],[2,-43],[18,-21],[-34,-39],[-62,-35],[-27,-24],[-31,-42],[-22,4],[-1,50],[49,49],[-45,-2],[-31,-7]],[[1828,9377],[-14,-28],[62,18],[39,-30],[31,30],[25,-19],[23,-58],[14,24],[-20,61],[25,9],[27,-10],[31,-24],[18,-57],[8,-42],[47,-29],[50,-28],[-3,-26],[-45,-5],[17,-23],[-9,-21],[-50,9],[-48,16],[-32,-4],[-52,-20],[-71,-9],[-49,-5],[-15,28],[-38,16],[-25,-7],[-34,47],[18,6],[43,10],[39,-2],[37,10],[-54,14],[-59,-5],[-40,1],[-14,22],[64,24],[-43,-1],[-48,15],[23,45],[19,23],[75,36],[28,-11]],[[2097,9394],[-25,-39],[-43,42],[9,8],[37,2],[22,-13]],[[2879,9376],[2,-17],[-29,2],[-30,1],[-31,-8],[-8,4],[-30,31],[1,22],[13,4],[64,-7],[48,-32]],[[2595,9379],[22,-37],[25,48],[71,24],[47,-61],[-4,-39],[55,17],[26,24],[62,-30],[38,-28],[4,-26],[51,13],[29,-37],[67,-24],[25,-23],[26,-56],[-51,-27],[65,-39],[44,-13],[40,-54],[44,-4],[-9,-41],[-48,-69],[-35,25],[-43,57],[-36,-7],[-4,-34],[30,-35],[37,-27],[12,-15],[18,-59],[-10,-42],[-35,16],[-69,47],[39,-51],[29,-36],[4,-20],[-75,23],[-60,35],[-33,28],[9,17],[-41,30],[-41,29],[1,-17],[-80,-10],[-24,21],[18,43],[53,1],[57,8],[-10,21],[10,29],[36,58],[-8,26],[-10,20],[-43,29],[-56,20],[18,15],[-30,37],[-24,3],[-22,20],[-15,-17],[-50,-8],[-101,13],[-59,18],[-45,9],[-23,20],[29,27],[-40,1],[-8,59],[21,53],[28,24],[72,16],[-20,-38]],[[2212,9419],[33,-12],[49,8],[7,-18],[-25,-28],[42,-25],[-5,-54],[-46,-22],[-27,5],[-19,22],[-69,46],[1,19],[56,-8],[-30,39],[33,28]],[[2410,9356],[-29,-44],[-32,2],[-17,52],[0,29],[15,26],[27,16],[58,-2],[53,-15],[-41,-52],[-34,-12]],[[1653,9274],[-73,-28],[-15,26],[-64,31],[12,25],[19,43],[25,39],[-28,36],[94,9],[40,-12],[71,-3],[27,-17],[30,-25],[-35,-15],[-68,-42],[-35,-41],[0,-26]],[[2399,9487],[-15,-23],[-41,4],[-33,15],[15,27],[40,16],[24,-21],[10,-18]],[[2263,9589],[21,-27],[1,-30],[-12,-44],[-46,-6],[-30,9],[1,35],[-46,-5],[-2,46],[30,-2],[42,20],[39,-3],[2,7]],[[1993,9559],[11,-21],[25,10],[29,-3],[5,-29],[-17,-28],[-94,-9],[-70,-26],[-42,-1],[-4,19],[58,26],[-126,-7],[-38,11],[37,58],[27,16],[78,-20],[49,-35],[49,-4],[-40,56],[25,22],[29,-7],[9,-28]],[[2369,9612],[31,-19],[55,0],[24,-20],[-7,-22],[32,-13],[18,-14],[37,-3],[41,-5],[44,13],[57,5],[45,-4],[29,-22],[7,-25],[-18,-15],[-41,-13],[-36,7],[-79,-9],[-57,-1],[-45,7],[-74,19],[-10,33],[-3,29],[-28,26],[-57,7],[-33,18],[11,24],[57,-3]],[[1772,9644],[-4,-45],[-22,-21],[-26,-3],[-51,-25],[-45,-9],[-37,13],[47,44],[57,38],[42,-1],[39,9]],[[2393,9637],[-13,-2],[-52,4],[-8,16],[56,-1],[20,-11],[-3,-6]],[[1939,9647],[-52,-17],[-41,19],[22,19],[41,6],[39,-9],[-9,-18]],[[1953,9701],[-34,-12],[-46,0],[1,9],[28,17],[15,-2],[36,-12]],[[2337,9668],[-41,-12],[-22,14],[-12,22],[-3,25],[36,-3],[17,-4],[33,-20],[-8,-22]],[[2220,9684],[11,-24],[-46,6],[-45,19],[-62,2],[27,18],[-34,14],[-2,23],[54,-8],[76,-22],[21,-28]],[[2582,9763],[34,-19],[-39,-18],[-51,-44],[-49,-4],[-58,7],[-29,24],[0,22],[22,16],[-51,-1],[-31,20],[-17,26],[19,27],[19,18],[29,4],[-12,13],[64,3],[36,-31],[47,-13],[45,-11],[22,-39]],[[3096,9967],[75,-5],[59,-8],[51,-16],[-1,-15],[-68,-26],[-67,-12],[-25,-13],[60,0],[-65,-36],[-46,-16],[-47,-49],[-57,-9],[-18,-13],[-84,-6],[38,-7],[-19,-11],[23,-29],[-26,-20],[-43,-17],[-14,-23],[-38,-18],[4,-13],[47,2],[1,-14],[-75,-36],[-72,17],[-82,-9],[-41,7],[-53,3],[-3,28],[51,13],[-13,43],[17,4],[74,-25],[-38,38],[-45,11],[22,23],[50,14],[7,20],[-39,24],[-12,30],[76,-3],[22,-6],[44,22],[-63,6],[-97,-3],[-49,20],[-23,24],[-33,17],[-6,20],[41,11],[33,2],[54,10],[41,22],[35,-3],[30,-17],[21,32],[36,10],[50,6],[85,3],[15,-7],[80,10],[60,-4],[60,-3]],[[5289,7827],[-2,-24],[-12,-10],[-21,8],[-6,-24],[-13,-2],[-5,9],[-16,-20],[-13,-3],[-12,13]],[[5189,7774],[-9,26],[-14,-9],[1,26],[20,34],[-1,15],[13,-6],[7,10]],[[5206,7870],[24,0],[6,13],[29,-18]],[[3139,1814],[-9,-24],[-24,-18],[-13,2],[-17,4],[-20,18],[-29,9],[-35,33],[-28,31],[-39,67],[23,-13],[39,-39],[37,-22],[14,28],[9,40],[26,24],[20,-7]],[[3094,1967],[-24,1],[-14,-15],[-25,-21],[-4,-55],[-12,-2],[-31,20],[-32,41],[-35,33],[-8,38],[8,35],[-14,39],[-4,101],[12,56],[29,46],[-42,17],[26,52],[10,99],[31,-21],[14,122],[-18,16],[-9,-74],[-18,8],[9,85],[10,109],[12,41],[-8,57],[-2,67],[12,2],[17,95],[19,95],[12,88],[-7,88],[9,49],[-4,73],[17,72],[5,114],[9,123],[8,132],[-2,97],[-6,83]],[[3044,3973],[15,15],[7,30]],[[8064,6160],[-24,-28],[-23,18],[-1,51],[14,27],[30,17],[16,-2],[6,-22],[-12,-26],[-6,-35]],[[8628,7562],[-18,34],[-11,-33],[-43,-25],[4,-31],[-24,2],[-13,18],[-19,-41],[-31,-32],[-23,-38]],[[8450,7416],[-38,-17],[-21,-28],[-30,-16],[15,27],[-6,23],[22,40],[-14,31],[-25,-21],[-31,-41],[-17,-38],[-27,-3],[-15,-27],[15,-40],[23,-10],[1,-27],[22,-17],[31,42],[25,-23],[17,-1],[5,-31],[-39,-17],[-13,-32],[-27,-29],[-15,-42],[30,-32],[11,-58],[17,-54],[19,-46],[0,-44],[-18,-16],[7,-31],[16,-19],[-4,-48],[-7,-47],[-16,-5],[-20,-64],[-23,-77],[-25,-71],[-39,-54],[-38,-50],[-31,-7],[-17,-26],[-10,19],[-16,-29],[-39,-30],[-29,-9],[-9,-62],[-16,-4],[-7,43],[6,23],[-37,19],[-13,-10]],[[8000,6330],[-28,16],[-13,24],[4,34],[-25,10],[-13,23],[-24,-32],[-27,-7],[-22,1],[-15,-15]],[[7837,6384],[-15,-9],[5,-67],[-15,2],[-3,13]],[[7809,6323],[-1,25],[-20,-17],[-12,11],[-21,22],[9,49],[-18,11],[-7,55],[-29,-10],[3,70],[27,49],[1,49],[-1,45],[-12,14],[-9,35],[-17,-4]],[[7702,6727],[-30,8],[10,25],[-13,37],[-20,-25],[-23,15],[-32,-38],[-26,-44],[-22,-7]],[[7466,6670],[-3,46],[-16,-12]],[[7447,6704],[-33,6],[-31,13],[-23,26],[-21,12],[-10,28],[-15,9],[-28,38],[-23,18],[-11,-14]],[[7252,6840],[-39,41],[-27,38],[-8,65],[20,-8],[1,30],[-11,30],[3,49],[-30,69]],[[7161,7154],[-46,24],[-8,45],[-20,28]],[[7082,7268],[-5,33],[1,23],[-16,14],[-10,-6],[-7,54]],[[7045,7386],[8,14],[-4,14],[27,28],[19,11],[30,-8],[10,38],[36,7],[10,24],[43,32],[4,13]],[[7228,7559],[-2,34],[19,15],[-25,103],[55,23],[14,13],[20,106],[55,-19],[16,26],[1,60],[23,5],[21,39]],[[7425,7964],[11,5]],[[7436,7969],[8,-41],[23,-31],[40,-22],[19,-48],[-11,-69],[10,-26],[33,-10],[37,-8],[34,-37],[17,-6],[13,-55],[16,-35],[31,1],[57,-13],[37,8],[27,-8],[41,-36],[34,0],[12,-19],[33,32],[45,21],[41,2],[33,21],[20,31],[19,20],[-4,20],[-9,22],[14,38],[16,-5],[28,-12],[28,32],[42,22],[21,39],[19,17],[41,8],[22,-7],[3,21],[-25,42],[-23,19],[-21,-22],[-28,9],[-15,-7],[-7,24],[19,59],[14,44]],[[8240,8004],[33,-22],[39,37],[0,26],[25,63],[16,19],[-1,33],[-15,14],[23,29],[34,11],[37,1],[42,-17],[24,-22],[17,-60],[11,-25],[9,-36],[11,-58],[48,-19],[33,-42],[11,-56],[42,0],[24,24],[46,17],[-14,-53],[-11,-22],[-10,-65],[-18,-57],[-34,10],[-24,-20],[8,-51],[-4,-70],[-15,-1],[1,-30]],[[4785,5315],[2,49],[3,7],[-1,23],[-12,25],[-9,4],[-8,16],[6,26],[-3,29],[2,17]],[[4765,5511],[4,0],[2,26],[-3,11],[3,9],[10,7],[-6,47],[-7,24],[2,20],[6,5]],[[4776,5660],[4,5],[7,-9],[22,0],[5,17],[5,-1],[8,7],[4,-26],[6,8],[12,9]],[[4920,5627],[8,-84],[-12,-50],[-7,-67],[12,-51],[-1,-23]],[[4920,5352],[-13,-1],[-19,12],[-18,-1],[-33,-10],[-19,-17],[-28,-22],[-5,2]],[[5312,5191],[-45,1]],[[5267,5192],[4,47],[-11,39],[-12,10],[-6,26],[-7,9],[0,16]],[[5235,5339],[7,42],[13,57],[8,0],[17,35],[11,1],[15,-24],[19,19],[3,25],[6,24],[4,30],[15,24],[6,41],[6,14],[4,30],[7,38],[23,46],[2,19],[3,11],[-11,24]],[[5393,5795],[1,18],[8,4]],[[5402,5817],[11,-38],[2,-39],[-1,-40],[15,-53],[-16,0],[-8,-4],[-12,6],[-6,-28],[16,-34],[12,-10],[4,-25],[9,-41],[-5,-16]],[[5444,5191],[-2,-32],[-22,14],[-23,16],[-35,2]],[[5362,5191],[-3,3],[-17,-7],[-17,7],[-13,-3]],[[5821,4978],[-8,-17],[-1,-35],[-4,-4],[-3,-33]],[[5814,4791],[5,-54],[-3,-31],[6,-34],[16,-33],[15,-75]],[[5853,4564],[-11,6],[-37,-10],[-8,-7],[-8,-37],[6,-26],[-5,-70],[-3,-60],[8,-10],[19,-23],[8,11],[2,-64],[-21,0],[-12,33],[-10,25],[-21,8],[-7,31],[-16,-18],[-23,8],[-9,27],[-18,5],[-13,-1],[-1,18],[-10,1]],[[5341,4697],[-4,18]],[[5360,4775],[7,-6],[10,22],[15,0],[2,-17],[10,-11],[16,37],[17,29],[7,19],[-1,49],[12,57],[12,31],[19,28],[3,19],[1,22],[4,20],[-1,34],[3,52],[6,37],[8,31],[2,36]],[[5759,5366],[17,-49],[13,-7],[7,10],[13,-4],[15,13],[7,-25],[24,-40]],[[5855,5264],[-1,-69],[11,-8],[-9,-21],[-11,-15],[-10,-31],[-6,-28],[-2,-47],[-6,-23],[0,-44]],[[5330,4759],[-23,63]],[[5307,4822],[21,33],[-10,39],[9,14],[19,8],[2,26],[15,-28],[25,-3],[8,28],[4,39],[-3,46],[-14,35],[13,69],[-7,11],[-21,-4],[-8,30],[2,26]],[[2836,5484],[3,28],[9,-4],[6,18],[-7,35],[4,8]],[[2851,5569],[14,-2],[21,42],[11,6],[0,19],[6,50],[15,28],[18,1],[2,12],[22,-5],[22,30],[11,13],[13,29],[10,-4],[7,-15],[-5,-20]],[[3018,5753],[-18,-10],[-7,-30],[-11,-17],[-8,-22],[-3,-42],[-8,-34],[14,-4],[4,-27],[6,-13],[2,-24],[-3,-22],[1,-12],[7,-5],[6,-21],[36,6],[16,-8],[20,-51],[11,7],[20,-3],[16,6],[10,-10],[-5,-32],[-7,-20],[-2,-42],[6,-39],[8,-18],[1,-13],[-14,-29],[10,-13],[7,-21],[9,-59]],[[3058,4803],[-14,31],[-8,2],[17,60],[-21,28],[-17,-5],[-10,10],[-15,-16],[-21,8],[-16,62],[-13,15],[-9,28],[-18,28],[-7,-6]],[[2906,5048],[-12,14],[-14,20],[-8,-10],[-23,8],[-7,26],[-5,-1],[-28,34]],[[2809,5139],[-4,18],[10,4],[-1,30],[7,21],[13,4],[12,37],[11,31],[-10,14],[5,35],[-6,54],[5,15],[-4,50],[-11,32]],[[2618,5712],[5,8],[18,-16],[6,8],[9,-5],[5,-12],[8,-4],[6,12]],[[2675,5703],[8,-32],[10,-24],[13,-25]],[[2706,5622],[-10,-5],[0,-24],[5,-9],[-4,-7],[1,-10],[-2,-12],[-1,-12]],[[2695,5543],[-15,13],[-6,12],[3,11],[-1,13],[-8,14],[-11,11],[-9,8],[-2,17],[-7,11],[2,-17],[-6,-14],[-6,16],[-9,6],[-4,12],[0,18],[4,18],[-8,9],[6,11]],[[2714,6427],[24,-4],[22,-1],[26,-20],[11,-22],[26,7],[10,-14],[23,-37],[18,-26],[9,1],[16,-12],[-2,-17],[21,-2],[21,-25],[-4,-13],[-18,-8],[-19,-3],[-19,5],[-40,-6],[19,33],[-11,15],[-18,4],[-10,17],[-6,34],[-16,-2],[-26,15],[-8,13],[-37,9],[-9,12],[10,14],[-27,3],[-20,-30],[-12,-1],[-4,-15],[-13,-6],[-12,6],[14,18],[7,21],[12,13],[14,12],[21,5],[7,7]],[[5943,7128],[-3,2],[-6,-4],[-4,1],[-1,-2],[-1,6],[-2,3],[-5,1],[-8,-5],[-5,3]],[[5908,7133],[2,0],[4,15],[20,-1],[25,17],[-18,-25],[2,-11]],[[5943,7128],[0,-5],[-28,-24],[-14,8],[-6,24],[13,2]],[[5377,7945],[-16,25],[-14,14],[-3,25],[-5,18],[20,12],[10,15],[20,12],[7,11],[8,-7],[12,6]],[[5416,8076],[13,-19],[21,-5],[-2,-16],[15,-12],[5,15],[19,-7],[2,-18],[21,-4],[13,-29]],[[5523,7981],[-9,0],[-4,-11],[-6,-2],[-2,-14],[-5,-2],[-1,-6],[-10,-6],[-12,1],[-4,-13]],[[5391,8233],[7,-30],[-8,-16],[10,-21],[7,-32],[-2,-20],[11,-38]],[[5206,7870],[4,42],[14,41],[-40,11],[-13,15]],[[5171,7979],[1,26],[-5,13]],[[5170,8058],[-5,62],[17,0],[7,23],[7,54],[-5,20]],[[5191,8217],[5,12],[23,3],[6,-13],[18,29],[-6,23],[-1,33]],[[5236,8304],[21,-8],[18,9]],[[5275,8305],[0,-23],[28,-13],[0,-21],[28,11],[16,16],[31,-23],[13,-19]],[[6197,5734],[-10,-31]],[[6187,5703],[-6,10],[-7,-4],[-15,1],[-1,18],[-2,16],[10,28],[9,26]],[[6175,5798],[12,-5],[9,14]],[[6196,5807],[6,-18],[-1,-25],[-16,-14],[12,-16]],[[5351,8342],[-16,-48],[-29,34],[-4,24],[41,20],[8,-30]],[[5236,8304],[-11,33],[-1,60],[4,16],[8,18],[25,4],[10,16],[22,17],[-1,-31],[-8,-19],[3,-17],[15,-9],[-7,-22],[-8,7],[-20,-43],[8,-29]],[[3007,6123],[1,16],[-7,18],[6,10],[3,23],[-3,32]],[[3007,6222],[4,10],[21,-1],[17,-15],[7,2],[5,-21],[15,1],[-1,-18],[13,-2],[13,-21],[-10,-24],[-13,12],[-13,-2],[-9,3],[-5,-11],[-11,-4],[-4,15],[-9,-9],[-11,-40],[-7,9],[-2,17]],[[5118,6189],[-31,-6],[-1,37],[-12,10],[-18,17],[-6,28],[-94,129],[-94,128]],[[4862,6532],[-104,143]],[[4758,6675],[0,12],[0,4]],[[4758,6691],[0,70],[45,43],[28,9],[22,16],[11,30],[32,23],[2,44],[16,5],[12,22],[37,10],[5,23],[-8,13],[-9,62],[-2,36],[-10,38]],[[4939,7135],[26,32],[30,10],[18,25],[27,18],[47,10],[46,5],[14,-9],[26,23],[30,1],[11,-14],[19,4]],[[5233,7240],[-6,-31],[5,-56],[-7,-49],[-17,-33],[2,-44],[23,-35],[0,-15],[18,-23],[11,-107]],[[5262,6847],[9,-52],[2,-27],[-5,-48],[2,-27],[-4,-33],[3,-37],[-11,-24],[16,-43],[1,-26],[10,-33],[13,11],[22,-27],[12,-37]],[[5332,6444],[-95,-113],[-80,-116],[-39,-26]],[[2906,5048],[3,-45],[-8,-38],[-31,-62],[-33,-23],[-17,-52],[-5,-40],[-16,-24],[-12,30],[-11,6],[-11,-4],[-1,21],[8,14],[-3,25]],[[2769,4856],[14,44],[-6,26],[-10,-28],[-17,26],[6,17],[-5,54],[10,8],[5,37],[10,38],[-2,24],[16,13],[19,24]],[[6023,6357],[-110,0],[-108,0],[-112,0]],[[5693,6357],[0,217],[0,210],[-8,48],[7,36],[-4,26],[10,28]],[[5698,6922],[37,1],[27,-16],[27,-17],[13,-9],[21,18],[12,17],[24,5],[20,-7],[8,-30],[6,20],[22,-14],[22,-4],[14,15]],[[5951,6901],[18,-101]],[[5969,6800],[-8,-24],[-6,-45],[-7,-30],[-7,-11],[-9,19],[-13,27],[-19,85],[-3,-6],[11,-62],[17,-60],[21,-92],[11,-32],[8,-33],[25,-65],[-5,-11],[1,-38],[32,-53],[5,-12]],[[6011,5909],[-3,24],[12,86],[3,40],[8,18],[21,10],[14,33]],[[6066,6120],[16,-68],[8,-54],[15,-29],[38,-56],[15,-34],[15,-34],[9,-20],[14,-18]],[[6175,5798],[-9,19],[-12,35],[-12,19],[-7,20],[-24,24],[-19,0],[-7,13],[-16,-14],[-17,27],[-9,-44],[-32,12]],[[4946,7622],[11,-23],[51,-27],[10,13],[32,-26],[32,7]],[[5082,7566],[1,-34],[-26,-39],[-35,-13],[-3,-20],[-17,-33],[-11,-48],[11,-33],[-16,-27],[-6,-38],[-21,-12],[-20,-45],[-35,-1],[-26,1],[-18,-21],[-10,-22],[-14,5],[-10,19],[-8,34],[-26,10]],[[4792,7249],[-2,19],[10,22],[4,16],[-10,18],[8,39],[-11,35],[12,5],[1,28],[4,9],[1,46],[13,16],[-8,29],[-16,2],[-5,-7],[-17,0],[-7,29],[-11,-9],[-10,-15]],[[4748,7531],[1,42],[-11,26],[39,43],[34,-11],[38,0],[29,-10],[23,3],[45,-2]],[[5776,8571],[4,-11],[-19,-34],[8,-55],[-12,-19]],[[5757,8452],[-23,1],[-24,21],[-12,8],[-24,-11]],[[5674,8471],[4,35],[-11,-7],[-17,21],[-3,34],[35,16],[35,9],[31,-10],[28,2]],[[6187,5703],[-6,-21],[10,-33],[11,-28],[10,-21],[91,-71],[23,1]],[[6326,5530],[-78,-178],[-36,-2],[-25,-42],[-18,-1],[-7,-18]],[[6162,5289],[-19,0],[-12,20],[-25,-25],[-8,-25],[-19,5],[-6,7],[-6,-2],[-9,1],[-35,50],[-20,0],[-9,19],[0,33],[-15,10]],[[5979,5382],[-16,65],[-13,13],[-5,24],[-14,29],[-17,4],[10,34],[15,1],[4,18]],[[5943,5570],[-1,53]],[[5942,5623],[9,62],[13,17],[2,24],[12,45],[17,29],[11,58],[5,51]],[[5663,8956],[-9,23],[-1,91],[-44,41],[-37,29]],[[5572,9140],[17,15],[31,-31],[36,3],[30,-14],[27,26],[13,43],[43,20],[36,-23],[-12,-42]],[[5793,9137],[-4,-41],[43,-40],[-26,-44],[32,-67],[-18,-51],[25,-44],[-12,-38],[41,-41],[-10,-30],[-26,-34],[-59,-76]],[[5779,8631],[-51,-4],[-49,-22],[-45,-12],[-16,32],[-27,19],[6,58],[-13,54],[13,34],[25,37],[64,64],[18,13],[-2,25],[-39,27]],[[9953,4033],[10,-17],[-5,-31],[-17,-8],[-15,7],[-3,26],[11,20],[12,-7],[7,10]],[[9981,4064],[-18,-12],[-3,22],[13,12],[9,3],[17,19],[0,-29],[-18,-15]],[[2,4082],[-2,-3],[0,29],[5,3],[-3,-29]],[[3299,1994],[34,35],[23,-14],[17,23],[22,-26],[-8,-21],[-38,-18],[-12,21],[-24,-27],[-14,27]],[[3485,5194],[7,25],[2,27],[5,25]],[[3499,5271],[-11,35],[-2,40],[14,51]],[[3500,5397],[10,-6],[20,-14],[30,-50],[4,-24]],[[5265,7547],[-10,-45],[-12,12],[-7,39],[6,22],[18,23],[5,-51]],[[5157,7983],[6,-5],[8,1]],[[5189,7774],[-1,-17],[8,-22],[-10,-18],[8,-46],[15,-7],[-3,-26]],[[5206,7638],[-26,-33],[-54,16],[-41,-19],[-3,-36]],[[4946,7622],[15,36],[5,117],[-29,62],[-20,30],[-43,23],[-3,43],[36,13],[47,-15],[-9,67],[27,-26],[64,46],[9,49],[24,12]],[[5263,5117],[9,3],[40,-1],[0,72]],[[5307,4822],[-28,60],[-19,48],[-17,61],[1,20],[6,19],[7,43],[6,44]],[[4827,8239],[-21,13],[-17,-1],[5,31],[-5,32]],[[4789,8314],[23,2],[30,-36],[-15,-41]],[[4916,8521],[-30,-64],[28,8],[31,0],[-8,-48],[-25,-53],[29,-4],[2,-6],[25,-70],[19,-9],[17,-68],[8,-23],[34,-11],[-4,-38],[-14,-17],[11,-31],[-25,-31],[-37,1],[-47,-17],[-13,12],[-18,-28],[-26,7],[-20,-23],[-14,12],[40,62],[25,13],[-43,10],[-8,23],[29,19],[-15,32],[5,38],[41,-5],[4,34],[-18,37],[-1,0],[-34,11],[-6,16],[10,26],[-9,17],[-15,-28],[-2,57],[-14,30],[10,61],[22,48],[22,-5],[34,5]],[[6109,7623],[3,7],[24,-10],[41,-10],[37,-28],[5,-11],[17,9],[26,-12],[8,-24],[18,-14]],[[6210,7485],[-27,29],[-30,-3]],[[6153,7511],[4,25],[-7,40],[-16,22],[-15,7],[-10,18]],[[5000,5708],[-2,-18],[11,-31],[0,-43],[3,-46],[7,-22],[-6,-53],[2,-30],[7,-37],[6,-21]],[[5028,5407],[-43,-34],[-16,-21],[-25,-17],[-24,17]],[[4715,5554],[-8,-4],[1,22],[-5,15],[1,18],[-6,24],[-8,21],[-22,1],[-6,-12],[-8,-1],[-5,-13],[-3,-16],[-15,-26]],[[4631,5583],[-12,35],[-11,23],[-7,8],[-7,11],[-3,27],[-4,13],[-8,9]],[[4579,5709],[12,29],[9,-1],[7,10],[6,0],[4,8],[-2,19],[3,7],[0,20]],[[4618,5801],[14,-1],[20,-14],[6,1],[2,6],[15,-4],[4,3]],[[4679,5792],[2,-22],[4,1],[7,7],[5,-2],[8,-15],[12,-4],[7,13],[9,7],[7,9],[5,-2],[7,-13],[3,-16],[11,-25],[-5,-15],[-1,-19],[5,5],[4,-6],[-2,-18],[9,-17]],[[4765,5511],[-8,2],[-6,-24],[-8,0],[-5,13],[2,23],[-12,37],[-7,-7],[-6,-1]],[[4531,5834],[4,26],[30,2],[6,14],[9,1],[11,-15],[9,0],[9,10],[5,-17],[-12,-13],[-12,1],[-12,12],[-10,-14],[-5,0],[-6,-8],[-26,1]],[[4536,5789],[14,9],[10,-2],[7,7],[51,-2]],[[4579,5709],[-15,25],[-12,4],[-6,17],[0,8],[-8,13],[-2,13]],[[5263,5117],[-6,9],[10,66]],[[5657,7166],[15,-20],[22,4],[21,-4],[-1,-11],[15,7],[-3,-17],[-40,-5],[0,10],[-34,11],[5,25]],[[5583,7470],[18,5],[11,13],[15,-1],[4,10],[6,2]],[[5724,7528],[14,-16],[-9,-37],[-6,-6]],[[5723,7469],[-17,1],[-15,6],[-33,-15],[19,-34],[-14,-9],[-16,0],[-14,30],[-6,-13],[7,-35],[14,-28],[-11,-13],[16,-27],[13,-17],[1,-33],[-26,15],[8,-30],[-17,-6],[10,-52],[-18,-1],[-23,26],[-11,47],[-4,39],[-11,27],[-14,34],[-2,17]],[[3700,9938],[93,36],[98,-3],[35,22],[98,6],[222,-8],[174,-47],[-51,-23],[-107,-2],[-149,-6],[14,-10],[98,6],[84,-20],[54,18],[23,-21],[-31,-35],[71,22],[135,23],[83,-11],[16,-26],[-113,-42],[-16,-13],[-89,-10],[65,-3],[-33,-43],[-22,-39],[1,-65],[33,-39],[-43,-2],[-46,-19],[51,-31],[7,-51],[-30,-5],[36,-51],[-62,-4],[32,-24],[-9,-21],[-39,-9],[-39,0],[35,-40],[1,-27],[-55,25],[-15,-16],[38,-15],[36,-36],[11,-47],[-50,-12],[-21,23],[-34,34],[9,-40],[-32,-31],[73,-3],[38,-3],[-74,-51],[-76,-47],[-81,-20],[-31,-1],[-28,-22],[-39,-63],[-60,-41],[-19,-3],[-37,-14],[-40,-14],[-24,-36],[0,-42],[-14,-39],[-45,-47],[11,-46],[-13,-49],[-14,-58],[-39,-3],[-41,48],[-56,0],[-26,33],[-19,57],[-48,74],[-14,38],[-4,53],[-38,55],[10,43],[-19,21],[27,69],[42,22],[11,25],[6,46],[-32,-21],[-15,-9],[-25,-8],[-34,19],[-2,40],[11,32],[26,1],[57,-16],[-48,38],[-25,20],[-28,-9],[-23,15],[31,55],[-17,22],[-22,41],[-33,63],[-36,23],[1,24],[-75,35],[-59,4],[-74,-2],[-68,-5],[-32,19],[-48,37],[73,19],[56,3],[-119,15],[-63,25],[4,23],[105,28],[102,28],[11,22],[-75,21],[24,24],[96,41],[40,6],[-11,27],[66,15],[85,10],[85,0],[31,-18],[73,32],[67,-22],[39,-5],[57,-19],[-66,32],[4,25]],[[2437,5916],[1,17],[3,14],[-4,11],[14,48],[35,0],[1,20],[-4,4],[-4,13],[-10,14],[-10,19],[12,0],[0,34],[26,0],[26,-1]],[[2529,5996],[9,-11],[2,9],[9,-8]],[[2549,5986],[-13,-22],[-13,-17],[-2,-11],[2,-12],[-6,-15]],[[2517,5909],[-6,-3],[1,-7],[-5,-7],[-10,-15],[0,-9]],[[2497,5868],[-15,11],[-17,1],[-13,12],[-15,24]],[[3412,5410],[-5,-53],[-17,-16],[2,-14],[-5,-30],[12,-43],[9,0],[4,-33],[17,-52]],[[3312,5364],[-19,45],[8,16],[-1,28],[17,9],[7,11],[-9,22],[2,22],[22,34]],[[3339,5551],[18,-21],[18,-39],[0,-30],[11,-2],[15,-29],[11,-20]],[[2561,5848],[1,23],[-3,7],[-6,4],[-12,-7],[-1,8],[-9,9],[-6,12],[-8,5]],[[2549,5986],[2,-2],[7,10],[7,1],[3,-5],[4,3],[13,-5],[13,1],[9,7],[3,7],[9,-3],[7,-5],[7,2],[6,5],[12,-8],[5,-1],[8,-12],[8,-13],[10,-9],[8,-16]],[[2690,5943],[-10,1],[-4,-8],[-9,-8],[-7,0],[-7,-7],[-5,2],[-5,10],[-3,-2],[-3,-14],[-3,0],[0,-12],[-10,-16],[-5,-7],[-3,-8],[-8,12],[-6,-15],[-6,0],[-7,-1],[1,-29],[-4,-1],[-4,-13],[-8,-3]],[[2574,5824],[-5,19],[-8,5]],[[5515,7577],[-4,-10]],[[5511,7567],[-26,21],[-16,22],[-25,17],[-24,44],[6,4],[-13,25],[0,20],[-18,9],[-8,-25],[-9,20],[1,20],[1,1]],[[5380,7745],[19,-2],[5,10],[10,-10],[11,-1],[0,17],[9,6],[3,24],[22,15]],[[5459,7804],[9,-7],[21,-25],[23,-12],[10,9]],[[5522,7769],[7,-23],[9,-17],[-11,-22]],[[3007,6123],[-18,10],[-13,-4],[-17,4],[-13,-11],[-15,19],[2,19],[26,-9],[21,-4],[10,13],[-13,25],[0,23],[-17,9],[6,17],[17,-3],[24,-9]],[[5471,7900],[14,-15],[10,-7],[23,8],[3,12],[11,1],[13,9],[3,-3],[13,7],[7,14],[9,4],[30,-18],[5,6]],[[5612,7918],[16,-16],[2,-16]],[[5630,7886],[-17,-13],[-13,-40],[-17,-40],[-22,-11]],[[5561,7782],[-18,3],[-21,-16]],[[5459,7804],[-5,20],[-5,1]],[[8352,4452],[-12,-1],[-37,41],[26,12],[15,-18],[10,-18],[-2,-16]],[[8470,4532],[3,-12],[0,-18]],[[8473,4502],[-18,-44],[-24,-13],[-3,7],[3,20],[12,36],[27,24]],[[8274,4579],[10,-16],[17,5],[7,-25],[-32,-12],[-20,-8],[-15,0],[10,34],[15,1],[8,21]],[[8413,4579],[-4,-33],[-42,-17],[-37,8],[0,21],[22,12],[17,-17],[19,4],[25,22]],[[8016,4657],[53,-6],[6,24],[52,-28],[10,-39],[42,-10],[34,-36],[-32,-22],[-31,24],[-25,-2],[-28,5],[-26,10],[-33,23],[-20,6],[-12,-8],[-50,25],[-5,25],[-25,4],[19,57],[33,-4],[23,-23],[11,-4],[4,-21]],[[8741,4690],[-14,-40],[-3,44],[5,21],[6,20],[6,-17],[0,-28]],[[8533,4853],[-10,-20],[-19,11],[-6,25],[28,3],[7,-19]],[[8623,4874],[10,-45],[-24,24],[-23,5],[-15,-4],[-20,3],[7,32],[34,2],[31,-17]],[[8915,4903],[1,-192],[0,-193]],[[8916,4518],[-25,49],[-28,12],[-7,-17],[-35,-2],[12,48],[18,17],[-8,64],[-13,49],[-54,50],[-23,5],[-42,55],[-8,-29],[-10,-5],[-7,22],[0,25],[-21,29],[30,22],[20,-1],[-3,15],[-40,0],[-11,35],[-25,11],[-12,30],[38,14],[14,19],[44,-24],[5,-22],[8,-96],[28,-35],[24,63],[31,35],[25,0],[24,-20],[20,-21],[30,-12]],[[8478,5141],[-23,-59],[-21,-11],[-26,11],[-47,-2],[-24,-9],[-4,-45],[25,-52],[15,27],[52,20],[-2,-28],[-13,9],[-12,-35],[-24,-23],[26,-75],[-5,-21],[25,-68],[0,-38],[-15,-18],[-11,21],[14,48],[-28,-23],[-7,17],[4,23],[-20,34],[2,58],[-19,-18],[3,-69],[1,-85],[-18,-8],[-12,17],[8,55],[-4,57],[-12,0],[-8,40],[11,39],[4,47],[14,89],[6,24],[24,44],[21,-17],[35,-8],[32,2],[28,43],[5,-13]],[[8573,5124],[-1,-52],[-14,6],[-5,-36],[12,-31],[-8,-7],[-11,37],[-8,76],[5,47],[9,21],[2,-32],[17,-5],[2,-24]],[[8045,5176],[5,-40],[19,-33],[17,12],[18,-5],[16,30],[14,5],[26,-16],[23,13],[14,82],[11,20],[9,67],[32,0],[24,-10]],[[8273,5301],[-16,-53],[21,-56],[-5,-27],[31,-55],[-33,-7],[-9,-40],[1,-53],[-27,-41],[0,-59],[-11,-90],[-4,21],[-32,-27],[-11,36],[-19,4],[-14,19],[-33,-21],[-10,28],[-19,-3],[-23,7],[-4,79],[-14,16],[-13,51],[-4,52],[3,54],[17,40]],[[7938,4711],[-31,-1],[-23,49],[-36,49],[-12,35],[-21,49],[-13,44],[-22,83],[-24,49],[-8,51],[-10,46],[-25,37],[-15,50],[-21,34],[-29,65],[-2,30],[18,-3],[43,-11],[24,-58],[22,-40],[15,-24],[26,-64],[29,-1],[23,-40],[16,-50],[21,-27],[-11,-48],[16,-21],[10,-1],[5,-41],[9,-33],[21,-5],[13,-38],[-7,-73],[-1,-92]],[[7252,6840],[-18,-27],[-11,-55],[27,-22],[27,-29],[36,-33],[38,-8],[16,-30],[21,-6],[34,-13],[23,1],[3,23],[-4,37],[3,26]],[[7702,6727],[2,-23],[-9,-11],[2,-36],[-20,11],[-36,-41],[1,-34],[-15,-49],[-2,-29],[-12,-49],[-22,13],[-1,-61],[-6,-20],[3,-25],[-14,-14]],[[7472,6360],[-4,-22],[-19,1],[-34,-12],[1,-45],[-14,-34],[-40,-40],[-32,-70],[-20,-37],[-28,-39],[0,-27],[-14,-14],[-25,-22],[-13,-3],[-8,-45],[5,-77],[2,-49],[-12,-56],[0,-100],[-14,-3],[-13,-45],[8,-20],[-25,-16],[-9,-40],[-11,-17],[-27,55],[-12,82],[-11,60],[-10,28],[-15,57],[-7,74],[-4,37],[-26,81],[-11,114],[-8,76],[0,71],[-6,56],[-40,-36],[-20,7],[-36,72],[13,21],[-8,24],[-32,50]],[[6893,6457],[18,39],[61,0],[-5,51],[-16,30],[-3,45],[-18,27],[30,62],[33,-5],[29,62],[17,60],[27,59],[0,42],[23,34],[-22,30],[-10,40],[-10,51],[14,26],[42,-15],[31,9],[27,50]],[[4827,8239],[4,-42],[-21,-53],[-49,-35],[-39,9],[22,62],[-14,60],[38,46],[21,28]],[[6690,6819],[14,-31],[11,-36],[26,-25],[1,-53],[13,-9],[3,-27],[-40,-31],[-11,-68]],[[6707,6539],[-52,17],[-30,14],[-32,8],[-12,72],[-13,11],[-21,-11],[-28,-29],[-34,20],[-28,45],[-27,17],[-19,56],[-20,79],[-15,-10],[-18,20],[-10,-23]],[[6348,6825],[-15,31],[-1,32],[-9,-1],[5,43],[-14,45],[-34,33],[-20,56],[7,46],[14,20],[-2,35],[-18,17],[-18,71]],[[6243,7253],[-16,47],[6,19],[-9,67],[19,17]],[[6357,7321],[9,-44],[26,-12],[19,-30],[40,-10],[43,16],[3,14]],[[6497,7255],[24,11],[20,34],[18,-2],[13,11],[19,-5],[31,-30],[22,-7],[32,-52],[21,-2],[2,-50]],[[6292,6776],[-51,5],[-79,119],[-41,41],[-33,16]],[[6088,6957],[-12,72]],[[6076,7029],[62,61],[10,72],[-2,43],[15,15],[14,36]],[[6175,7256],[12,10],[32,-8],[10,-15],[14,10]],[[6348,6825],[-17,3]],[[6331,6828],[-18,5],[-21,-57]],[[4596,8983],[-6,-38],[31,-41],[-36,-45],[-80,-40],[-24,-11],[-37,9],[-77,19],[27,26],[-60,29],[49,11],[-1,17],[-59,14],[19,39],[42,8],[43,-40],[43,32],[35,-16],[45,31],[46,-4]],[[5982,6917],[1,-23],[-14,-94]],[[5951,6901],[8,20],[-2,3],[7,28],[6,44],[4,15],[1,1]],[[5975,7012],[9,0],[2,10],[8,1]],[[5994,7023],[0,-24],[-3,-9],[0,-1]],[[5991,6989],[-5,-18]],[[5986,6971],[-10,8],[-6,-39],[7,-7],[-7,-8],[-1,-16],[13,8]],[[5430,7316],[-10,-47],[4,-18],[-6,-31],[-21,23],[-14,6],[-39,30],[4,30],[33,-5],[28,6],[21,6]],[[5255,7492],[16,-42],[-3,-79],[-13,4],[-11,-20],[-11,16],[-1,71],[-6,34],[15,-3],[14,19]],[[5382,7805],[-3,-29],[7,-26]],[[5386,7750],[-22,9],[-23,-21],[2,-29],[-3,-17],[9,-30],[26,-30],[14,-49],[31,-47],[21,0],[7,-13],[-8,-12],[25,-21],[21,-18],[23,-31],[3,-11],[-5,-21],[-15,27],[-24,10],[-12,-38],[20,-22],[-3,-31],[-12,-3],[-15,-51],[-11,-4],[0,18],[5,31],[6,13],[-10,34],[-9,30],[-11,7],[-9,26],[-17,11],[-12,23],[-21,4],[-22,27],[-25,38],[-19,34],[-9,59],[-14,7],[-22,19],[-13,-8],[-16,-27],[-11,-5]],[[2845,6149],[18,-5],[15,-14],[5,-16],[-20,-1],[-8,-10],[-16,9],[-16,22],[4,13],[11,4],[7,-2]],[[6088,6957],[-6,-9],[-55,-30],[27,-59],[-9,-10],[-4,-19],[-22,-9],[-6,-21],[-12,-18],[-31,9]],[[5970,6791],[-1,9]],[[5982,6917],[4,18],[0,36]],[[5991,6989],[31,-23],[54,63]],[[8739,7074],[3,-20],[-16,-36],[-11,19],[-14,-13],[-8,-35],[-18,17],[1,28],[15,35],[16,-7],[11,25],[21,-13]],[[8915,7251],[-11,-47],[5,-30],[-14,-41],[-36,-28],[-49,-4],[-39,-67],[-19,23],[-1,44],[-48,-13],[-33,-28],[-33,-1],[28,-44],[-18,-100],[-18,-25],[-14,23],[7,53],[-17,18],[-12,40],[27,18],[14,37],[28,31],[20,40],[56,18],[29,-12],[30,105],[18,-28],[41,59],[16,23],[17,72],[-5,66],[12,38],[30,11],[15,-82],[-1,-48],[-26,-60],[1,-61]],[[8996,7667],[20,-13],[19,25],[6,-66],[-41,-16],[-24,-59],[-44,40],[-15,-64],[-31,-1],[-4,59],[14,45],[30,3],[8,82],[8,46],[33,-61],[21,-20]],[[6554,7497],[-15,-2],[-19,46],[-19,16],[-31,-12],[-13,-20]],[[6457,7525],[-1,15],[7,24],[-6,21],[-32,20],[-12,53],[-16,15],[-1,19],[27,-5],[1,43],[24,10],[24,-9],[5,57],[-5,37],[-28,-3],[-23,14],[-32,-25],[-26,-13]],[[6363,7798],[-14,10],[2,30],[-17,40],[-21,-2],[-23,40],[16,45],[-8,12],[22,65],[28,-35],[4,44],[57,64],[43,1],[62,-41],[33,-23],[29,25],[44,1],[36,-31],[8,18],[39,-3],[7,28],[-45,41],[26,28],[-5,17],[27,15],[-20,40],[12,21],[104,20],[14,15],[69,21],[25,25],[50,-13],[9,-61],[29,14],[36,-20],[-3,-32],[27,3],[70,56],[-11,-18],[36,-46],[62,-150],[15,31],[38,-34],[40,15],[15,-11],[14,-34],[19,-11],[12,-25],[36,8],[14,-37]],[[7228,7559],[-17,9],[-14,21],[-41,6],[-46,2],[-10,-7],[-40,25],[-16,-12],[-4,-35],[-46,20],[-18,-8],[-6,-26]],[[6970,7554],[-16,-11],[-37,-41],[-12,-42],[-10,-1],[-8,28],[-35,2],[-6,49],[-13,0],[2,59],[-33,43],[-48,-4],[-33,-9],[-26,53],[-23,23],[-43,42],[-5,5],[-72,-35],[2,-218]],[[6088,4781],[-40,59],[-2,34],[-101,120],[-4,7]],[[5941,5001],[-1,62],[8,24],[14,40],[10,43],[-12,67],[-3,30],[-14,41]],[[5943,5308],[18,35],[18,39]],[[6162,5289],[-25,-67],[1,-216],[16,-48]],[[6154,4958],[-19,-24],[-7,-25],[-11,-4],[-4,-42],[-9,-23],[-5,-40],[-11,-19]],[[7045,7386],[-52,-8],[-34,19],[-31,-5],[3,34],[30,-10],[10,19]],[[6971,7435],[22,-6],[35,42],[-33,31],[-20,-14],[-20,22],[23,38],[-8,6]],[[7848,5777],[-6,71],[18,49],[35,12],[26,-9]],[[7921,5900],[23,-23],[13,41],[25,-22]],[[7982,5896],[6,-39],[-3,-71],[-47,-46],[12,-35],[-29,-5],[-24,-23]],[[7897,5677],[-23,8],[-12,31],[-14,61]],[[8504,7287],[1,6],[13,-3],[10,27],[20,3],[12,4],[4,14]],[[8564,7338],[24,-70],[7,-38],[0,-68],[-10,-32],[-26,-12],[-22,-24],[-25,-5],[-3,32],[5,44],[-12,62],[21,10],[-19,50]],[[5556,7573],[6,13]],[[5562,7586],[6,5],[4,19],[5,3],[4,-8],[5,-4],[4,-9],[4,-3],[6,-11],[4,1],[-3,-15],[-4,-7],[1,-4]],[[5598,7553],[-6,-3],[-16,-9],[-2,-12],[-3,1]],[[6344,6744],[-20,-2],[-7,28],[-25,6]],[[6331,6828],[6,-26],[-2,-14],[9,-44]],[[7780,6263],[6,22],[23,38]],[[7837,6384],[16,-46],[12,-54],[35,-1],[10,-51],[-17,-16],[-8,-21],[33,-35],[23,-70],[18,-52],[21,-41],[7,-42],[-5,-59]],[[7921,5900],[9,27],[2,50],[-23,51],[-1,59],[-22,48],[-21,4],[-5,-21],[-16,-2],[-9,11],[-29,-35],[-1,53],[7,62],[-19,3],[-1,35],[-12,18]],[[5999,7104],[12,-3],[5,-23],[-15,-23],[-7,-32]],[[5975,7012],[10,48],[13,42],[1,2]],[[4681,5458],[7,19],[1,17],[13,32],[13,28]],[[4785,5315],[-7,-1],[-29,28],[-25,45],[-24,33],[-19,38]],[[5262,6847],[14,14],[2,25],[-3,25],[19,22],[9,19],[14,17],[1,46]],[[5318,7015],[33,-21],[11,5],[24,-9],[36,-27],[13,-52],[25,-12],[40,-25],[29,-29],[14,15],[13,28],[-6,45],[8,29],[20,27],[19,8],[38,-12],[9,-26],[11,0],[9,-11],[27,-6],[7,-20]],[[5693,6357],[0,-118],[-32,0],[0,-25]],[[5661,6214],[-111,113],[-110,113],[-29,-32]],[[5411,6408],[-19,-22],[-16,32],[-44,26]],[[7271,5501],[-5,-61],[-11,-17],[-24,-13],[-14,47],[-4,84],[12,96],[19,-32],[13,-42],[14,-62]],[[5804,3346],[10,-17],[-9,-29],[-5,-19],[-15,-10],[-5,-19],[-10,-5],[-21,45],[15,37],[15,24],[13,12],[12,-19]],[[5651,8242],[-6,18],[-15,7]],[[5630,8267],[-2,15],[3,16],[-12,9],[-29,10]],[[5590,8317],[-6,50]],[[5584,8367],[32,18],[46,-4],[28,6],[3,-12],[15,-4],[27,-28]],[[5757,8452],[13,-13],[3,-29],[9,-35]],[[5584,8367],[1,45],[13,37],[27,20],[22,-44],[22,1],[5,45]],[[4758,6691],[-4,0],[1,-32],[-17,-2],[-9,-13],[-13,0],[-10,8],[-23,-7],[-9,-46],[-9,-4],[-13,-75],[-39,-63],[-9,-82],[-11,-27],[-4,-21],[-62,-5],[-1,1]],[[4526,6323],[2,27],[10,16],[9,31],[-1,20],[9,42],[16,37],[9,10],[7,34],[1,32],[10,36],[18,22],[18,60],[1,1],[14,22],[25,7],[22,40],[14,16],[23,49],[-7,74],[11,51],[4,31],[18,40],[27,27],[21,24],[19,61],[8,37],[21,-1],[16,-25],[27,4],[29,-13],[12,0]],[[5783,7744],[-5,27],[3,25],[-1,26],[-16,36],[-9,24],[-8,18],[-9,6]],[[5738,7906],[7,8],[18,6],[21,-18],[11,-2],[13,-16],[-2,-20],[10,-10],[4,-25],[10,-15],[-2,-8],[5,-6],[-7,-5],[-17,2],[-3,8],[-5,-5],[2,-10],[-8,-19],[-5,-20],[-7,-7]],[[6375,4320],[7,-25],[7,-39],[5,-71],[7,-28],[-3,-28],[-5,-17],[-9,34],[-5,-17],[5,-44],[-3,-25],[-7,-14],[-2,-50],[-11,-68],[-14,-82],[-17,-112],[-10,-82],[-13,-68],[-23,-14],[-24,-25],[-16,15],[-22,21],[-7,31],[-2,52],[-10,47],[-3,43],[5,43],[13,10],[0,19],[13,45],[3,38],[-6,28],[-6,37],[-2,54],[10,34],[4,37],[13,2],[16,12],[10,11],[12,1],[16,33],[23,37],[8,30],[-3,25],[11,-7],[16,41],[0,35],[9,27],[10,-26]],[[2437,5916],[-31,64],[-14,19],[-23,15],[-16,-4],[-22,-22],[-14,-6],[-19,15],[-21,12],[-26,27],[-21,8],[-32,27],[-23,29],[-7,15],[-15,4],[-29,19],[-11,27],[-30,33],[-14,37],[-7,29],[10,6],[-3,17],[6,15],[0,21],[-9,26],[-3,24],[-9,29],[-24,59],[-28,46],[-14,37],[-24,24],[-5,15],[4,36],[-14,14],[-16,29],[-7,41],[-15,5],[-16,31],[-13,29],[-1,18],[-15,45],[-10,45],[0,22],[-20,24],[-9,-3],[-16,17],[-4,-24],[4,-29],[3,-44],[9,-24],[21,-41],[5,-14],[4,-4],[4,-21],[4,1],[6,-38],[8,-15],[6,-21],[18,-30],[9,-55],[8,-26],[8,-27],[2,-32],[13,-1],[11,-27],[10,-27],[-1,-10],[-11,-22],[-5,0],[-7,36],[-19,34],[-20,28],[-14,15],[1,44],[-4,32],[-13,18],[-19,26],[-4,-7],[-7,15],[-17,14],[-17,35],[2,4],[12,-3],[10,22],[1,27],[-21,42],[-17,16],[-10,37],[-10,39],[-13,47],[-11,53]],[[1746,6979],[31,5],[36,6],[-3,-11],[42,-29],[63,-42],[56,1],[22,0],[0,24],[48,0],[10,-21],[14,-19],[17,-26],[9,-30],[7,-33],[14,-18],[23,-18],[18,47],[22,1],[20,-23],[14,-41],[9,-34],[17,-34],[6,-41],[8,-28],[21,-18],[20,-13],[11,1]],[[2301,6585],[-11,-52],[-5,-42],[-2,-79],[-2,-29],[4,-32],[9,-29],[6,-46],[18,-44],[6,-34],[11,-29],[30,-15],[11,-25],[25,16],[21,6],[21,11],[17,10],[18,24],[6,35],[3,49],[5,18],[18,15],[30,14],[24,-2],[17,5],[7,-13],[-1,-28],[-15,-35],[-7,-36],[5,-11],[-4,-25],[-7,-46],[-7,15],[-6,-1]],[[5598,7553],[10,3],[13,1]],[[5118,6189],[0,-136],[-16,-40],[-2,-36],[-25,-10],[-38,-5],[-10,-21],[-18,-2]],[[4679,5792],[1,19],[-2,22],[-10,17],[-6,34],[-1,37]],[[4661,5921],[9,10],[5,35],[9,1],[19,-16],[16,12],[11,-4],[4,13],[111,1],[6,41],[-4,7],[-14,255],[-13,255],[42,1]],[[7780,6263],[-16,-13],[-16,-26],[-20,-3],[-13,-64],[-11,-10],[13,-52],[18,-43],[11,-39],[-10,-52],[-10,-11],[7,-29],[18,-47],[4,-33],[-1,-28],[11,-53],[-15,-55],[-14,-61]],[[7736,5644],[-2,44],[8,45],[-9,35],[2,64],[-11,31],[-9,71],[-5,74],[-12,49],[-19,-30],[-31,-42],[-16,6],[-17,13],[10,74],[-6,55],[-22,68],[3,21],[-16,8],[-19,48]],[[5533,7628],[7,-10],[4,-8],[9,-6],[11,-13],[-2,-5]],[[5537,7531],[-6,5],[-8,19],[-12,12]],[[7436,7969],[30,11],[53,50],[42,28],[24,-18],[29,-1],[19,-27],[27,-2],[40,-15],[27,41],[-11,35],[29,61],[31,-25],[25,-7],[33,-15],[5,-44],[40,-25],[26,11],[35,8],[28,-8],[27,-28],[17,-31],[26,1],[35,-10],[25,15],[37,10],[40,42],[17,-7],[15,-20],[33,5]],[[5911,3477],[-21,1]],[[5890,3478],[-3,26],[-4,26]],[[5883,3530],[-2,21],[5,66],[-7,42],[-14,83]],[[5865,3742],[30,68],[7,42],[4,5],[3,35],[-4,18],[1,44],[5,41],[0,75],[-14,19],[-13,4],[-6,15],[-13,12],[-23,-1],[-2,22]],[[5840,4141],[-3,42],[85,49]],[[5922,4232],[16,-29],[7,6],[11,-15],[2,-24],[-6,-27],[2,-42],[18,-37],[9,41],[12,13],[-3,76],[-11,43],[-10,19],[-10,-1],[-8,77],[8,44]],[[5959,4376],[21,5],[33,-16],[7,7],[20,2],[10,17],[16,-1],[31,23],[22,35]],[[6119,4448],[4,-27],[-1,-59],[4,-52],[1,-92],[5,-29],[-9,-42],[-11,-41],[-17,-37],[-26,-22],[-31,-29],[-31,-63],[-11,-11],[-19,-42],[-12,-14],[-2,-42],[13,-45],[5,-34],[1,-18],[5,3],[-1,-58],[-5,-27],[7,-10],[-4,-25],[-12,-21],[-23,-20],[-33,-32],[-12,-22],[2,-25],[7,-4],[-2,-31]],[[4525,6298],[6,19],[109,0],[-5,85],[6,31],[26,5],[0,151],[91,-3],[0,89]],[[4661,5921],[-18,40],[-17,44],[-19,15],[-13,18],[-15,-1],[-14,-13],[-14,5],[-9,-19]],[[4542,6010],[-3,32],[8,29],[4,56],[-4,58],[-3,30],[3,29],[-7,28],[-15,26]],[[5922,4232],[-15,15],[8,55],[9,20],[-5,49],[5,48],[5,16],[-7,50],[-13,27]],[[5909,4512],[27,-11],[6,-17],[9,-27],[8,-81]],[[7779,5439],[5,10],[22,-25],[3,-31],[18,7],[9,25]],[[7836,5425],[6,-6],[17,-36],[11,-39],[2,-40],[-3,-27],[3,-20],[2,-35],[10,-16],[10,-53],[0,-20],[-20,-4],[-26,44],[-33,47],[-3,30],[-16,40],[-4,49],[-10,32],[3,43],[-6,25]],[[8045,5176],[20,-21],[22,11],[5,50],[12,12],[33,12],[20,47],[14,37]],[[8206,5379],[21,41],[14,46],[11,0],[15,-30],[1,-25],[18,-17],[23,-18],[-2,-23],[-18,-3],[5,-28],[-21,-21]],[[5644,4022],[23,13],[18,-3],[11,-13],[0,-5]],[[5552,3594],[0,-218],[-25,-31],[-15,-4],[-18,11],[-12,5],[-5,25],[-11,16],[-13,-29]],[[5453,3369],[-21,44],[-11,44],[-6,57],[-7,43],[-9,91],[0,71],[-4,32],[-11,24],[-14,49],[-15,71],[-6,37],[-22,58],[-2,45]],[[9604,3812],[22,-37],[15,-27],[-11,-14],[-15,16],[-20,26],[-18,32],[-18,41],[-4,20],[12,-1],[15,-20],[13,-20],[9,-16]],[[5411,6408],[7,-92],[11,-16],[0,-18],[12,-21],[-6,-25],[-11,-120],[-1,-77],[-36,-55],[-12,-78],[12,-22],[0,-38],[17,-1],[-2,-28]],[[5393,5795],[-5,-2],[-19,65],[-7,2],[-21,-33],[-22,17],[-15,4],[-8,-8],[-16,1],[-16,-25],[-15,-1],[-33,30],[-13,-14],[-15,1],[-10,22],[-28,22],[-30,-7],[-7,-13],[-4,-34],[-8,-23],[-2,-53]],[[5235,5339],[-29,-21],[-10,3],[-11,-13],[-22,1],[-15,37],[-9,43],[-20,38],[-21,0],[-24,0]],[[2690,5943],[-3,-6],[-1,-13],[3,-22],[-7,-20],[-3,-23],[-1,-26],[2,-16],[1,-26],[-5,-6],[-2,-25],[2,-16],[-6,-15],[1,-16],[4,-10]],[[2618,5712],[-9,19],[-13,24],[-6,19],[-12,19],[-14,27],[3,9],[5,-9],[2,4]],[[5091,8090],[14,17],[25,87],[38,24],[23,-1]],[[5863,9166],[-47,-23],[-23,-6]],[[5572,9140],[-17,-3],[-4,-39],[-52,10],[-8,-33],[-26,0],[-19,-42],[-27,-65],[-43,-84],[10,-20],[-10,-23],[-28,1],[-18,-56],[2,-78],[18,-30],[-9,-69],[-23,-41],[-13,-34]],[[5305,8534],[-18,36],[-55,-68],[-37,-14],[-39,30],[-10,64],[-8,136],[25,38],[74,50],[54,61],[51,82],[67,114],[47,45],[76,74],[61,25],[45,-3],[43,49],[50,-2],[50,11],[87,-43],[-36,-16],[31,-37]],[[5686,9656],[-62,-24],[-49,14],[19,15],[-17,19],[58,12],[11,-22],[40,-14]],[[5506,9766],[91,-45],[-70,-23],[-15,-43],[-24,-11],[-14,-49],[-33,-3],[-60,36],[25,21],[-41,17],[-54,50],[-22,47],[76,21],[15,-21],[40,1],[10,20],[41,2],[35,-20]],[[5706,9807],[54,-21],[-41,-31],[-80,-7],[-82,10],[-5,16],[-40,1],[-31,27],[86,16],[40,-14],[29,18],[70,-15]],[[9805,2640],[6,-25],[20,24],[8,-25],[0,-25],[-11,-27],[-18,-44],[-14,-23],[10,-29],[-21,0],[-24,-23],[-7,-38],[-16,-60],[-22,-27],[-14,-16],[-25,1],[-18,19],[-31,4],[-4,22],[15,44],[35,58],[18,11],[20,23],[23,31],[17,30],[12,45],[11,14],[4,33],[19,28],[7,-25]],[[9849,2921],[20,-62],[1,40],[12,-16],[4,-45],[23,-19],[18,-5],[16,23],[14,-7],[-6,-52],[-9,-35],[-21,1],[-7,-18],[2,-25],[-4,-11],[-10,-32],[-14,-40],[-22,-24],[-4,16],[-12,8],[16,49],[-9,32],[-30,24],[1,21],[20,21],[4,45],[-1,39],[-11,39],[1,11],[-14,24],[-21,52],[-12,42],[10,5],[15,-33],[22,-15],[8,-53]],[[6474,6041],[-9,41],[-22,97]],[[6443,6179],[84,60],[18,118],[-13,42]],[[6565,6529],[13,-40],[15,-21],[21,-8],[16,-11],[13,-34],[7,-19],[10,-8],[0,-13],[-10,-35],[-4,-17],[-12,-19],[-10,-40],[-13,3],[-6,-14],[-4,-30],[3,-40],[-3,-7],[-12,0],[-18,-22],[-2,-28],[-7,-13],[-17,1],[-11,-15],[0,-24],[-13,-17],[-16,6],[-18,-20],[-13,-3]],[[6556,6596],[8,20],[4,-5],[-3,-24],[-3,-11]],[[6893,6457],[-21,15],[-8,42],[-21,45],[-52,-11],[-45,-1],[-39,-8]],[[2706,5622],[10,-21],[0,-13],[11,-2],[2,5],[8,-15],[14,4],[12,15],[16,12],[10,18],[15,-4],[-1,-5],[16,-2],[12,-11],[9,-17],[11,-17]],[[2836,5484],[-9,17],[-6,32],[6,15],[-7,5],[-5,19],[-14,16],[-12,-3],[-5,-21],[-12,-15],[-6,-2],[-2,-12],[13,-32],[-8,-8],[-4,-8],[-13,-3],[-4,35],[-4,-10],[-9,3],[-6,24],[-11,4],[-7,7],[-12,0],[-1,-13],[-3,9]],[[3044,3973],[-27,34],[-3,24],[-55,60],[-50,64],[-21,37],[-12,48],[5,17],[-24,78],[-27,109],[-26,118],[-12,26],[-8,44],[-22,39],[-20,23],[9,27],[-13,56],[8,42],[23,37]],[[8509,5554],[3,-39],[2,-33],[-10,-54],[-10,60],[-13,-30],[9,-44],[-8,-27],[-33,34],[-8,43],[9,28],[-18,28],[-8,-25],[-14,3],[-20,-33],[-5,17],[11,50],[18,16],[15,23],[10,-27],[21,16],[4,26],[20,2],[-2,46],[23,-28],[2,-30],[2,-22]],[[8443,5664],[-10,-19],[-9,-37],[-9,-18],[-17,41],[6,16],[7,16],[3,37],[15,3],[-4,-39],[20,57],[-2,-57]],[[8290,5607],[-36,-56],[13,42],[20,36],[17,41],[14,59],[5,-48],[-18,-33],[-15,-41]],[[8384,5760],[17,-19],[18,0],[-1,-24],[-13,-25],[-17,-18],[-1,27],[2,30],[-5,29]],[[8485,5776],[8,-66],[-22,15],[1,-20],[7,-36],[-14,-13],[-1,41],[-8,3],[-4,36],[16,-5],[-1,23],[-16,45],[26,-1],[8,-22]],[[8374,5829],[-7,-51],[-12,30],[-14,45],[24,-3],[9,-21]],[[8369,6150],[17,-17],[8,16],[3,-15],[-5,-25],[10,-42],[-7,-49],[-17,-20],[-4,-47],[6,-48],[15,-6],[12,7],[35,-33],[-3,-32],[9,-14],[-3,-27],[-21,29],[-11,31],[-7,-22],[-17,35],[-26,-8],[-14,13],[2,24],[9,15],[-9,14],[-3,-22],[-14,34],[-4,26],[-1,57],[11,-20],[3,93],[9,53],[17,0]],[[9329,4654],[-8,-6],[-12,23],[-12,37],[-6,45],[3,6],[3,-17],[9,-14],[13,-37],[13,-20],[-3,-17]],[[9220,4733],[-14,-4],[-5,-17],[-15,-14],[-14,-14],[-15,0],[-23,17],[-15,16],[2,19],[25,-9],[15,5],[4,28],[4,2],[3,-32],[16,5],[8,20],[15,21],[-3,35],[17,1],[5,-10],[0,-33],[-10,-36]],[[8915,4903],[48,-40],[52,-34],[19,-30],[15,-30],[5,-35],[46,-36],[7,-32],[-26,-6],[6,-39],[25,-39],[18,-63],[16,2],[-1,-26],[21,-10],[-8,-11],[30,-25],[-4,-17],[-18,-4],[-7,15],[-24,7],[-28,9],[-21,37],[-16,33],[-15,51],[-36,26],[-23,-17],[-17,-19],[3,-44],[-21,-20],[-16,10],[-29,2]],[[9252,4791],[-8,-16],[-5,35],[-7,23],[-12,19],[-16,26],[-20,17],[7,14],[15,-16],[10,-13],[11,-14],[12,-25],[10,-19],[3,-31]],[[5545,8272],[34,-6],[51,1]],[[5652,8104],[14,-51],[-3,-17],[-13,-7],[-26,-49],[8,-27],[-6,4]],[[5626,7957],[-27,23],[-20,-9],[-13,6],[-16,-12],[-14,21],[-12,-8],[-1,3]],[[5391,8233],[19,17],[43,27],[35,20],[28,-10],[2,-14],[27,-1]],[[3158,6151],[14,-5],[5,-12],[-7,-15],[-21,0],[-16,-2],[-2,26],[4,8],[23,0]],[[8504,7287],[-14,11],[-3,-11],[-8,-5],[-1,11],[-8,6],[-7,9],[7,26],[7,7],[-2,11],[7,32],[-2,10],[-16,6],[-14,16]],[[8628,7562],[3,-11]],[[8631,7551],[-10,4],[-12,-20],[-8,-20],[1,-43],[-15,-13],[-5,-10],[-10,-18],[-19,-9],[-12,-16],[-1,-26],[-3,-6],[11,-10],[16,-26]],[[4792,7249],[-11,-16],[-15,9],[-14,-7],[4,46],[-3,37],[-12,5],[-7,22],[3,39],[11,22],[2,23],[5,36],[0,25],[-6,21],[-1,20]],[[6426,6512],[-7,-4],[-9,11]],[[6410,6519],[-2,43],[8,31],[7,7],[9,-19],[0,-34],[-6,-35]],[[5783,7744],[13,-11],[13,10],[12,-10]],[[5821,7733],[1,-15],[-14,-13],[-8,5],[-8,-71]],[[5628,7670],[-5,11],[7,10],[-7,7],[-9,-13],[-16,17],[-2,24],[-17,14],[-3,19],[-15,23]],[[5630,7886],[12,12],[17,-6],[18,0],[13,-15],[9,9],[21,6],[7,14],[11,0]],[[8989,8055],[28,-105],[-41,20],[-17,-85],[27,-61],[-1,-41],[-21,35],[-18,-45],[-6,49],[4,58],[-4,63],[7,45],[1,79],[-16,58],[2,81],[26,27],[-11,27],[12,9],[7,-39],[10,-57],[-1,-58],[12,-60]],[[5545,8272],[6,26],[39,19]],[[138,8991],[19,-15],[-7,43],[76,-9],[54,-55],[-27,-26],[-46,-6],[-1,-58],[-11,-12],[-26,2],[-21,20],[-37,17],[-6,26],[-28,10],[-32,-8],[-15,21],[6,22],[-33,-14],[12,-28],[-15,-25],[0,235],[68,-45],[72,-59],[-2,-36]],[[9999,9242],[-31,-3],[-5,18],[36,25],[0,-40]],[[36,9245],[-36,-3],[0,40],[3,2],[24,0],[40,-17],[-3,-8],[-28,-14]],[[8988,9382],[-43,0],[-56,6],[-5,3],[26,24],[35,5],[39,-22],[4,-16]],[[9186,9493],[-33,-24],[-44,6],[-52,23],[7,19],[52,-9],[70,-15]],[[9029,9521],[-22,-44],[-102,2],[-47,-14],[-55,38],[15,41],[37,11],[73,-3],[101,-31]],[[6597,9235],[-16,-5],[-91,7],[-7,27],[-51,16],[-4,31],[29,13],[-1,32],[55,51],[-26,7],[67,52],[-8,27],[62,31],[92,38],[92,11],[48,22],[54,7],[19,-23],[-18,-18],[-99,-30],[-85,-28],[-86,-56],[-41,-58],[-44,-57],[6,-49],[53,-48]],[[6363,7798],[-13,-35],[-27,-10],[-27,-61],[25,-56],[-3,-39],[30,-70]],[[6109,7623],[-36,50],[-31,22],[-24,35],[20,9],[23,50],[-16,23],[41,24],[0,13],[-25,-9]],[[6061,7840],[1,26],[14,16],[27,5],[4,19],[-6,33],[11,31],[0,17],[-41,20],[-16,-1],[-17,28],[-22,-10],[-35,21],[1,12],[-10,25],[-22,3],[-3,18],[7,12],[-18,34],[-28,-6],[-9,3],[-7,-13],[-10,2]],[[5776,8571],[32,32],[-29,28]],[[5863,9166],[28,21],[46,-36],[76,-14],[105,-67],[21,-28],[2,-39],[-31,-31],[-45,-16],[-124,45],[-20,-8],[45,-43],[2,-27],[2,-61],[35,-18],[22,-15],[4,29],[-17,25],[18,22],[67,-36],[23,14],[-19,43],[65,58],[26,-3],[26,-21],[16,41],[-23,35],[13,35],[-20,37],[78,-19],[15,-33],[-35,-7],[0,-33],[22,-20],[43,12],[7,38],[58,28],[97,51],[21,-3],[-27,-36],[34,-6],[20,20],[52,2],[41,24],[32,-35],[31,39],[-29,34],[15,20],[82,-18],[38,-19],[101,-67],[18,31],[-28,31],[-1,12],[-33,6],[9,28],[-15,46],[-1,19],[52,54],[18,53],[21,12],[73,-16],[6,-32],[-26,-48],[17,-19],[9,-42],[-7,-80],[31,-37],[-12,-39],[-54,-84],[32,-9],[11,22],[30,15],[8,29],[24,28],[-17,34],[13,39],[-30,5],[-7,32],[22,60],[-36,48],[50,40],[-6,42],[14,1],[14,-33],[-11,-57],[30,-11],[-13,43],[47,23],[57,3],[52,-33],[-25,49],[-3,63],[48,12],[67,-3],[60,8],[-22,31],[32,39],[32,1],[54,30],[73,7],[10,17],[73,5],[22,-13],[63,31],[51,-1],[7,26],[27,25],[65,24],[48,-19],[-38,-15],[63,-9],[8,-29],[25,15],[81,-1],[63,-29],[22,-22],[-7,-31],[-31,-17],[-73,-33],[-20,-18],[34,-8],[41,-15],[25,11],[14,-38],[12,16],[45,9],[89,-10],[7,-27],[116,-9],[1,45],[59,-10],[45,0],[45,-31],[12,-38],[-16,-25],[35,-46],[44,-24],[26,62],[45,-27],[47,16],[54,-18],[20,17],[46,-9],[-20,55],[37,26],[250,-39],[24,-35],[73,-45],[112,11],[55,-9],[23,-25],[-3,-43],[34,-17],[37,12],[50,2],[52,-12],[53,7],[48,-53],[34,19],[-22,38],[12,26],[89,-16],[58,3],[80,-28],[39,-26],[0,-235],[-1,-1],[-35,-25],[-36,4],[25,-32],[16,-48],[13,-16],[3,-25],[-7,-15],[-52,13],[-77,-45],[-25,-7],[-43,-41],[-40,-37],[-10,-26],[-40,41],[-72,-47],[-13,22],[-27,-25],[-37,8],[-9,-39],[-33,-57],[1,-24],[32,-13],[-4,-86],[-26,-2],[-12,-50],[12,-25],[-49,-30],[-9,-68],[-42,-14],[-8,-60],[-40,-55],[-10,40],[-12,86],[-16,132],[14,82],[23,35],[1,28],[44,13],[49,74],[48,61],[50,47],[22,83],[-33,-5],[-17,-48],[-71,-65],[-22,72],[-72,-20],[-70,-99],[23,-36],[-62,-15],[-43,-6],[2,42],[-43,9],[-34,-29],[-85,10],[-91,-17],[-90,-115],[-107,-140],[44,-7],[14,-37],[27,-13],[17,29],[31,-4],[40,-65],[1,-50],[-22,-59],[-2,-70],[-13,-95],[-42,-85],[-9,-41],[-38,-69],[-37,-68],[-18,-35],[-37,-35],[-18,-1],[-17,29],[-37,-43],[-5,-20]],[[7917,9683],[-156,-23],[51,78],[22,7],[21,-4],[71,-34],[-9,-24]],[[6419,9815],[-37,-7],[-25,-5],[-4,-9],[-32,-10],[-30,14],[15,18],[-61,2],[54,11],[42,0],[6,-15],[16,14],[26,9],[41,-13],[-11,-9]],[[7775,9717],[-61,-7],[-77,17],[-46,22],[-22,43],[-37,11],[72,41],[60,13],[54,-30],[64,-57],[-7,-53]],[[5821,4978],[6,-6],[17,18]],[[5844,4990],[11,-33],[-2,-35],[-8,-8]],[[4525,6298],[1,25]],[[6344,6744],[11,-51],[13,-14],[5,-20],[19,-25],[2,-25],[-3,-19],[3,-20],[8,-17],[4,-19],[4,-15]],[[6426,6512],[6,-23]],[[6443,6179],[-80,-22],[-26,-27],[-20,-62],[-13,-10],[-7,20],[-10,-3],[-27,6],[-5,6],[-32,-1],[-8,-6],[-11,16],[-7,-29],[2,-25],[-12,-19]],[[6187,6023],[-3,25],[-9,18],[-2,23],[-14,22],[-15,49],[-8,48],[-19,41],[-13,10],[-18,56],[-3,41],[1,35],[-16,65],[-13,24],[-15,12],[-9,34],[1,13],[-7,31],[-8,13],[-11,44],[-17,47],[-14,41],[-14,0],[4,32],[1,21],[4,23]],[[5634,5715],[0,15],[-10,17],[0,34],[-6,23],[-10,-3],[3,21],[7,25],[-3,24],[9,19],[-6,13],[8,37],[13,43],[23,-4],[-1,235]],[[6023,6357],[9,-58],[-6,-11],[4,-61],[10,-70],[11,-15],[15,-22]],[[5942,5623],[0,-7]],[[5942,5616],[-4,1],[1,30],[-3,20],[-15,23],[-3,43],[3,44],[-13,4],[-1,-14],[-17,-3],[7,-17],[2,-35],[-15,-33],[-14,-42],[-14,-7],[-24,35],[-10,-12],[-3,-17],[-14,-12],[-1,-12],[-28,0],[-4,12],[-20,2],[-10,-10],[-8,5],[-14,35],[-5,16],[-20,-8],[-7,-27],[-7,-53],[-10,-11],[-9,-7]],[[5662,5566],[-2,3]],[[5943,5308],[-17,-27],[-19,0],[-22,-14],[-18,13],[-12,-16]],[[5681,5543],[-19,23]],[[5942,5616],[1,-46]],[[4536,5789],[-5,45]],[[4531,5834],[26,-1],[6,8],[5,0],[10,14],[12,-12],[12,-1],[12,13],[-5,17],[-9,-10],[-9,0],[-11,15],[-9,-1],[-6,-14],[-30,-2]],[[4535,5860],[-12,46],[-14,21],[13,11],[13,42],[7,30]],[[9502,4438],[8,-21],[-20,1],[-10,36],[16,-14],[6,-2]],[[9467,4474],[-11,-2],[-17,6],[-6,10],[2,23],[18,-9],[9,-13],[5,-15]],[[9490,4490],[-5,-11],[-20,51],[-6,35],[10,0],[10,-47],[11,-28]],[[9440,4564],[1,-11],[-22,25],[-15,21],[-11,20],[4,6],[13,-15],[23,-27],[7,-19]],[[9375,4623],[-6,-3],[-12,13],[-11,24],[1,10],[17,-25],[11,-19]],[[4681,5458],[-7,4],[-20,24],[-15,32],[-5,21],[-3,44]],[[2561,5848],[-4,-14],[-16,1],[-10,5],[-11,12],[-16,4],[-7,12]],[[6197,5734],[9,-11],[6,-24],[12,-25],[14,0],[26,15],[31,7],[24,18],[14,4],[10,11],[16,2]],[[6359,5731],[-1,-1],[0,-24],[0,-60],[0,-31],[-12,-36],[-20,-49]],[[6359,5731],[8,1],[13,9],[15,6],[13,20],[11,0],[0,-16],[-2,-34],[0,-31],[-6,-22],[-8,-64],[-13,-66],[-17,-75],[-24,-87],[-24,-66],[-33,-80],[-27,-48],[-42,-59],[-26,-45],[-30,-71],[-7,-31],[-6,-14]],[[3499,5271],[-5,-26],[-2,-27],[-7,-24]],[[3412,5410],[33,-12],[3,11],[22,4],[30,-16]],[[5626,7957],[-8,-16],[-6,-23]],[[5380,7745],[6,5]],[[5663,8956],[-48,-16],[-27,-41],[5,-37],[-45,-47],[-53,-51],[-21,-83],[20,-42],[27,-33],[-26,-66],[-29,-14],[-10,-99],[-16,-56],[-34,6],[-15,-47],[-33,-2],[-8,55],[-24,67],[-21,84]],[[5890,3478],[-6,-27],[-16,-6],[-17,32],[0,20],[8,23],[2,17],[8,4],[14,-11]],[[5999,7104],[-3,45],[7,24]],[[6003,7173],[7,13],[8,13],[1,33],[10,-11],[30,16],[15,-11],[23,0],[32,22],[15,-1],[31,9]],[[5051,5420],[-23,-13]],[[7779,5439],[-11,23],[-5,29],[-15,33],[-13,28],[-5,-35],[-5,33],[3,37],[8,57]],[[7848,5777],[-25,27],[-23,-1],[4,46],[-25,0],[-2,-65],[-15,-86],[-9,-52],[2,-43],[18,-2],[11,-54],[5,-51],[16,-34],[17,-7],[14,-30]],[[6883,7251],[16,60],[-6,44],[-21,14],[7,26],[24,-2],[13,32],[9,38],[37,14],[-6,-28],[4,-16],[11,2]],[[6554,7497],[31,1],[-5,30],[24,20],[23,35],[38,-32],[3,-47],[10,-12],[30,3],[10,-11],[13,-61],[32,-41],[18,-27],[29,-29],[37,-26],[0,-36]],[[6497,7255],[-5,41],[4,62],[-22,20],[7,41],[-18,3],[6,50],[26,-15],[24,19],[-20,36],[-8,34],[-22,-16],[-3,-43],[-9,38]],[[8470,4532],[3,14],[24,13],[20,2],[8,7],[11,-7],[-10,-16],[-29,-26],[-24,-17]],[[3286,5693],[16,7],[6,-2],[-1,-44],[-24,-6],[-5,5],[8,16],[0,24]],[[5233,7240],[30,24],[20,-8],[-1,-29],[23,21],[2,-11],[-14,-29],[0,-27],[10,-15],[-4,-51],[-18,-30],[5,-32],[15,-1],[7,-28],[10,-9]],[[6003,7173],[-10,27],[10,22],[-17,-5],[-23,14],[-19,-34],[-42,-7],[-23,32],[-29,2],[-7,-25],[-19,-7],[-27,32],[-30,-1],[-17,58],[-20,33],[14,46],[-18,28],[31,57],[42,2],[12,45],[53,-8],[33,39],[33,16],[46,2],[48,-42],[40,-23],[32,9],[24,-5],[33,31]],[[5777,7539],[3,-23],[24,-19],[-5,-15],[-33,-3],[-12,-18],[-23,-32],[-9,28],[1,12]],[[8381,6498],[-16,-95],[-12,-48],[-15,50],[-3,44],[16,58],[23,44],[12,-17],[-5,-36]],[[5909,4512],[-16,17],[-18,10],[-11,10],[-11,15]],[[5844,4990],[10,7],[30,-1],[57,5]],[[6088,4781],[-13,-73],[2,-34],[17,-21],[1,-15],[-7,-36],[1,-18],[-2,-28],[10,-37],[12,-59],[10,-12]],[[6061,7840],[-23,-5],[-18,-19],[-26,-3],[-24,-22],[2,-37],[13,-14],[29,3],[-6,-21],[-30,-10],[-38,-34],[-15,12],[6,28],[-31,17],[5,11],[27,20],[-8,13],[-43,15],[-2,22],[-26,-7],[-10,-33],[-22,-43]],[[3517,3062],[-12,-37],[-32,-33],[-20,12],[-15,-6],[-26,25],[-19,-2],[-17,33]],[[679,6184],[-4,-9],[-7,8],[1,16],[-5,22],[1,7],[5,9],[-2,12],[2,5],[2,-1],[11,-10],[5,-5],[4,-8],[7,-20],[0,-4],[-11,-12],[-9,-10]],[[664,6277],[-9,-5],[-5,13],[-3,5],[-1,3],[3,5],[10,-5],[7,-9],[-2,-7]],[[645,6308],[-1,-6],[-15,1],[2,8],[14,-3]],[[620,6317],[-1,-4],[-2,1],[-10,2],[-3,13],[-2,3],[8,8],[2,-4],[8,-19]],[[573,6356],[-3,-6],[-9,11],[1,4],[4,6],[7,-2],[0,-13]],[[1746,6979],[-5,30],[-18,34],[-13,7],[-3,17],[-15,3],[-10,16],[-26,6],[-7,10],[-4,32],[-27,59],[-23,82],[1,14],[-12,20],[-22,49],[-3,48],[-15,33],[6,49],[-1,50],[-9,45],[11,56],[3,54],[4,53],[-5,80],[-9,50],[-8,28],[3,11],[40,-20],[15,-56],[7,16],[-4,48],[-10,49]],[[3134,7724],[5,-20],[-30,-28],[-28,-21],[-29,-17],[-15,-35],[-5,-14],[0,-31],[9,-31],[12,-2],[-3,22],[8,-13],[-2,-17],[-19,-10],[-13,1],[-21,-10],[-12,-3],[-16,-3],[-23,-17],[40,11],[9,-11],[-39,-18],[-18,0],[1,7],[-8,-16],[8,-3],[-6,-42],[-21,-46],[-2,16],[-6,3],[-9,14],[6,-31],[7,-11],[0,-22],[-9,-23],[-15,-47],[-3,2],[9,40],[-14,23],[-4,49],[-5,-26],[6,-37],[-18,9],[19,-19],[1,-56],[8,-4],[3,-21],[4,-59],[-18,-44],[-29,-17],[-18,-35],[-14,-4],[-14,-21],[-4,-20],[-30,-38],[-16,-29],[-13,-35],[-4,-42],[5,-41],[9,-50],[12,-42],[0,-25],[13,-69],[0,-40],[-2,-23],[-7,-36],[-8,-7],[-14,7],[-4,26],[-10,13],[-15,51],[-13,45],[-4,23],[5,40],[-7,32],[-22,50],[-11,9],[-28,-27],[-5,3],[-13,27],[-18,15],[-31,-7],[-25,6],[-21,-4],[-11,-9],[5,-16],[-1,-24],[6,-12],[-5,-7],[-11,8],[-10,-11],[-20,2],[-21,31],[-24,-7],[-20,14],[-18,-5],[-23,-13],[-25,-44],[-28,-26],[-15,-28],[-6,-26],[-1,-41],[2,-29],[5,-20]],[[749,8431],[-27,-22],[-15,15],[-4,28],[25,21],[15,9],[19,-4],[11,-19],[-24,-28]],[[400,8596],[-17,-9],[-18,11],[-17,16],[27,10],[22,-5],[3,-23]],[[229,8825],[17,-11],[18,6],[22,-16],[28,-8],[-3,-6],[-21,-13],[-21,13],[-10,11],[-25,-3],[-6,5],[1,22]],[[1373,8295],[-15,22],[-24,19],[-8,51],[-36,48],[-15,56],[-27,4],[-44,1],[-32,17],[-58,61],[-26,12],[-49,21],[-38,-5],[-55,27],[-33,25],[-31,-13],[6,-41],[-16,-3],[-32,-13],[-24,-20],[-31,-12],[-4,35],[13,57],[29,19],[-8,15],[-35,-33],[-19,-40],[-40,-42],[20,-28],[-26,-43],[-30,-25],[-27,-18],[-7,-26],[-44,-30],[-8,-28],[-33,-25],[-19,4],[-26,-16],[-28,-20],[-23,-20],[-48,-17],[-4,10],[30,28],[27,18],[30,32],[34,7],[14,24],[39,35],[6,12],[20,21],[5,45],[14,35],[-32,-18],[-9,10],[-15,-21],[-18,29],[-7,-21],[-11,30],[-28,-24],[-17,0],[-2,35],[5,22],[-18,21],[-36,-11],[-23,27],[-19,15],[-1,33],[-21,25],[11,34],[22,33],[10,30],[23,5],[19,-10],[22,29],[20,-5],[22,18],[-6,27],[-15,11],[20,23],[-17,-1],[-29,-13],[-9,-13],[-22,13],[-39,-7],[-40,14],[-12,24],[-35,35],[39,24],[62,29],[23,0],[-4,-29],[58,2],[-22,37],[-34,22],[-20,30],[-27,25],[-38,18],[16,31],[49,2],[35,27],[7,29],[28,28],[27,7],[53,26],[25,-4],[43,32],[42,-13],[20,-26],[12,11],[47,-4],[-1,-13],[42,-10],[29,6],[58,-19],[53,-6],[22,-7],[37,9],[42,-17],[30,-9]],[[3018,5753],[-1,-14],[-16,-7],[9,-27],[-1,-31],[-12,-34],[11,-47],[12,4],[6,43],[-9,20],[-1,45],[34,24],[-3,28],[9,19],[10,-42],[20,-1],[18,-33],[1,-19],[25,-1],[30,6],[15,-26],[22,-8],[15,19],[1,15],[34,3],[33,1],[-23,-17],[9,-28],[22,-5],[21,-29],[5,-47],[14,1],[11,-14]],[[8000,6330],[-37,-50],[-23,-56],[-6,-41],[21,-62],[26,-78],[25,-36],[17,-47],[13,-110],[-4,-104],[-23,-39],[-32,-38],[-23,-49],[-34,-55],[-10,38],[7,40],[-20,34]],[[9661,4084],[-9,-8],[-10,26],[1,16],[18,-34]],[[9640,4175],[5,-48],[-8,8],[-5,-4],[-4,17],[-1,45],[13,-18]],[[6474,6041],[-20,-16],[-5,-26],[-1,-21],[-28,-24],[-44,-28],[-25,-42],[-12,-3],[-8,4],[-17,-25],[-17,-11],[-24,-3],[-7,-4],[-6,-15],[-7,-5],[-4,-15],[-14,2],[-9,-8],[-19,3],[-7,34],[0,32],[-4,18],[-6,43],[-8,25],[6,3],[-3,27],[3,11],[-1,26]],[[5816,3752],[12,-1],[13,-10],[10,7],[14,-6]],[[5911,3477],[-7,-43],[-3,-49],[-8,-27],[-19,-29],[-5,-9],[-12,-30],[-7,-30],[-16,-43],[-32,-61],[-19,-35],[-21,-27],[-29,-23],[-14,-3],[-4,-16],[-17,8],[-14,-11],[-30,12],[-17,-8],[-11,3],[-29,-23],[-23,-9],[-18,-23],[-12,-1],[-12,21],[-9,1],[-12,27],[-2,-9],[-3,16],[0,35],[-9,39],[9,11],[-1,46],[-18,55],[-14,50],[-20,77]],[[5840,4141],[-21,-8],[-16,-24],[-3,-20],[-10,-5],[-24,-48],[-16,-39],[-9,-1],[-9,7],[-31,6]]]}
--------------------------------------------------------------------------------
/public/json/world-110m.json:
--------------------------------------------------------------------------------
1 | {"type":"Topology","transform":{"scale":[0.03600360036003601,0.017366249624962495],"translate":[-180,-90]},"objects":{"land":{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7,8]],[[9,10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28,29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41,42]],[[43]],[[44]],[[45]],[[46,47,48,49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61,62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75,76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89,90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152]],[[153,154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161,162,163,164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277],[278,279,280,281,282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]],[[292]],[[293]],[[294]],[[295]],[[296]]]},"countries":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":4,"arcs":[[297,298,299,300,301,302]]},{"type":"MultiPolygon","id":24,"arcs":[[[303,304,211,305]],[[213,306,307]]]},{"type":"Polygon","id":8,"arcs":[[308,248,309,310,311]]},{"type":"Polygon","id":784,"arcs":[[312,195,313,314,193]]},{"type":"MultiPolygon","id":32,"arcs":[[[315,10]],[[316,317,318,131,319,320]]]},{"type":"Polygon","id":51,"arcs":[[321,322,323,324,325]]},{"type":"MultiPolygon","id":10,"arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[326]]]},{"type":"Polygon","id":260,"arcs":[[327]]},{"type":"MultiPolygon","id":36,"arcs":[[[13]],[[23]]]},{"type":"Polygon","id":40,"arcs":[[328,329,330,331,332,333,334]]},{"type":"MultiPolygon","id":31,"arcs":[[[335,-323]],[[282,336,-326,337,338]]]},{"type":"Polygon","id":108,"arcs":[[339,340,341]]},{"type":"Polygon","id":56,"arcs":[[342,343,344,258,345]]},{"type":"Polygon","id":204,"arcs":[[346,347,348,219,349]]},{"type":"Polygon","id":854,"arcs":[[350,351,-347,352,353,354]]},{"type":"Polygon","id":50,"arcs":[[184,355,356]]},{"type":"Polygon","id":100,"arcs":[[245,357,358,359,360,361]]},{"type":"MultiPolygon","id":44,"arcs":[[[70]],[[72]],[[73]]]},{"type":"Polygon","id":70,"arcs":[[362,363,364]]},{"type":"Polygon","id":112,"arcs":[[365,366,367,368,369]]},{"type":"Polygon","id":84,"arcs":[[118,370,371]]},{"type":"Polygon","id":68,"arcs":[[372,373,374,375,-321]]},{"type":"Polygon","id":76,"arcs":[[376,-375,377,378,379,380,381,382,129,383,-318]]},{"type":"Polygon","id":96,"arcs":[[384,47]]},{"type":"Polygon","id":64,"arcs":[[385,386]]},{"type":"Polygon","id":72,"arcs":[[387,388,389,390]]},{"type":"Polygon","id":140,"arcs":[[391,392,393,394,395,396,397]]},{"type":"MultiPolygon","id":124,"arcs":[[[83]],[[84]],[[85]],[[86]],[[398]],[[95]],[[96]],[[98]],[[100]],[[102]],[[399,146,400,148,401,150,402,152]],[[153,403]],[[155]],[[156]],[[157]],[[158]],[[160]],[[161,404,163,405]],[[166]],[[168]],[[169]],[[171]],[[172]],[[283]],[[284]],[[286]],[[287]],[[288]],[[294]],[[295]]]},{"type":"Polygon","id":756,"arcs":[[406,407,408,-331]]},{"type":"MultiPolygon","id":152,"arcs":[[[409,410,411,-316]],[[-320,132,412,-373]]]},{"type":"MultiPolygon","id":156,"arcs":[[[63]],[[413,177,414,415,416,417,-386,418,419,420,421,-300,422,423,424,425,426,427]]]},{"type":"Polygon","id":384,"arcs":[[428,429,430,-355,431,222]]},{"type":"Polygon","id":120,"arcs":[[432,217,433,434,435,-397,436,437]]},{"type":"Polygon","id":180,"arcs":[[438,-342,439,440,-306,212,-308,441,-395,442,443]]},{"type":"Polygon","id":178,"arcs":[[214,444,-437,-396,-442,-307]]},{"type":"Polygon","id":170,"arcs":[[135,445,124,446,-379,447,448]]},{"type":"Polygon","id":188,"arcs":[[449,122,450,137]]},{"type":"Polygon","id":192,"arcs":[[451]]},{"type":"Polygon","id":-1,"arcs":[[452,76]]},{"type":"Polygon","id":196,"arcs":[[-453,75]]},{"type":"Polygon","id":203,"arcs":[[453,454,455,-333]]},{"type":"Polygon","id":276,"arcs":[[456,-454,-332,-409,457,458,-343,459,260,460,262]]},{"type":"Polygon","id":262,"arcs":[[461,462,463,203]]},{"type":"MultiPolygon","id":208,"arcs":[[[91]],[[-461,261]]]},{"type":"Polygon","id":214,"arcs":[[464,61]]},{"type":"Polygon","id":12,"arcs":[[465,466,467,468,233,469,470,471]]},{"type":"Polygon","id":218,"arcs":[[-449,472,134]]},{"type":"Polygon","id":818,"arcs":[[473,474,236,475,200]]},{"type":"Polygon","id":232,"arcs":[[476,202,-464,477]]},{"type":"Polygon","id":724,"arcs":[[478,254,479,256]]},{"type":"Polygon","id":233,"arcs":[[480,481,267]]},{"type":"Polygon","id":231,"arcs":[[-463,482,483,484,485,486,487,-478]]},{"type":"Polygon","id":246,"arcs":[[269,488,489,490]]},{"type":"MultiPolygon","id":242,"arcs":[[[17]],[[18]],[[19]]]},{"type":"Polygon","id":238,"arcs":[[491]]},{"type":"MultiPolygon","id":250,"arcs":[[[492,493,494,128,-383]],[[81]],[[495,-458,-408,496,253,-479,257,-345]]]},{"type":"Polygon","id":266,"arcs":[[497,-438,-445,215]]},{"type":"MultiPolygon","id":826,"arcs":[[[498,89]],[[499,500,501,502]]]},{"type":"Polygon","id":268,"arcs":[[503,-338,-325,504,241]]},{"type":"Polygon","id":288,"arcs":[[-432,-354,505,221]]},{"type":"Polygon","id":324,"arcs":[[506,225,507,508,509,-430,510]]},{"type":"Polygon","id":270,"arcs":[[228,511]]},{"type":"Polygon","id":624,"arcs":[[512,-508,226]]},{"type":"Polygon","id":226,"arcs":[[-433,-498,216]]},{"type":"MultiPolygon","id":300,"arcs":[[[77]],[[247,-309,513,-359,514]]]},{"type":"Polygon","id":304,"arcs":[[515]]},{"type":"Polygon","id":320,"arcs":[[516,-371,119,517,518,143]]},{"type":"Polygon","id":328,"arcs":[[519,-381,520,126]]},{"type":"Polygon","id":340,"arcs":[[521,-518,120,522,139]]},{"type":"Polygon","id":191,"arcs":[[-364,523,250,524,525,526]]},{"type":"Polygon","id":332,"arcs":[[-465,62]]},{"type":"Polygon","id":348,"arcs":[[527,528,529,530,-526,531,-335]]},{"type":"MultiPolygon","id":360,"arcs":[[[25]],[[532,29]],[[30]],[[31]],[[34]],[[35]],[[38]],[[39]],[[533,42]],[[43]],[[44]],[[534,49]],[[45]]]},{"type":"Polygon","id":356,"arcs":[[535,-419,-387,-418,536,-356,185,537,-421]]},{"type":"Polygon","id":372,"arcs":[[-499,90]]},{"type":"Polygon","id":364,"arcs":[[-302,538,187,539,540,-336,-322,-337,278,541]]},{"type":"Polygon","id":368,"arcs":[[188,542,543,544,545,546,-540]]},{"type":"Polygon","id":352,"arcs":[[99]]},{"type":"Polygon","id":376,"arcs":[[547,-476,237,548,549,550,551]]},{"type":"MultiPolygon","id":380,"arcs":[[[78]],[[79]],[[552,252,-497,-407,-330]]]},{"type":"Polygon","id":388,"arcs":[[553]]},{"type":"Polygon","id":400,"arcs":[[-545,554,199,-548,555,-551,556]]},{"type":"MultiPolygon","id":392,"arcs":[[[74]],[[80]],[[82]]]},{"type":"Polygon","id":398,"arcs":[[557,280,558,-425,559,560]]},{"type":"Polygon","id":404,"arcs":[[206,561,562,563,-485,564]]},{"type":"Polygon","id":417,"arcs":[[-424,565,566,-560]]},{"type":"Polygon","id":116,"arcs":[[567,568,569,179]]},{"type":"Polygon","id":410,"arcs":[[570,175]]},{"type":"Polygon","id":-2,"arcs":[[-311,571,572,573]]},{"type":"Polygon","id":414,"arcs":[[574,-543,189]]},{"type":"Polygon","id":418,"arcs":[[575,-416,576,-569,577]]},{"type":"Polygon","id":422,"arcs":[[238,578,-549]]},{"type":"Polygon","id":430,"arcs":[[579,-511,-429,223]]},{"type":"Polygon","id":434,"arcs":[[-471,580,235,-475,581,582,583]]},{"type":"Polygon","id":144,"arcs":[[584]]},{"type":"Polygon","id":426,"arcs":[[585]]},{"type":"Polygon","id":440,"arcs":[[265,586,-370,587,588]]},{"type":"Polygon","id":442,"arcs":[[-496,-344,-459]]},{"type":"Polygon","id":428,"arcs":[[-482,589,-366,-587,266]]},{"type":"Polygon","id":504,"arcs":[[-469,590,591,592,593]]},{"type":"Polygon","id":498,"arcs":[[594,595]]},{"type":"Polygon","id":450,"arcs":[[596]]},{"type":"Polygon","id":484,"arcs":[[-372,-517,144,597,598]]},{"type":"Polygon","id":807,"arcs":[[599,-360,-514,-312,-574]]},{"type":"Polygon","id":466,"arcs":[[-466,600,-351,-431,-510,601,602]]},{"type":"Polygon","id":104,"arcs":[[183,-357,-537,-417,-576,603]]},{"type":"Polygon","id":499,"arcs":[[249,-524,-363,604,-572,-310]]},{"type":"Polygon","id":496,"arcs":[[-427,605]]},{"type":"Polygon","id":508,"arcs":[[208,606,607,608,609,610,611,612]]},{"type":"Polygon","id":478,"arcs":[[230,613,-467,-603,614]]},{"type":"Polygon","id":454,"arcs":[[615,616,-612]]},{"type":"MultiPolygon","id":458,"arcs":[[[181,617]],[[-535,46,-385,48]]]},{"type":"Polygon","id":516,"arcs":[[-305,618,-389,619,210]]},{"type":"Polygon","id":540,"arcs":[[620]]},{"type":"Polygon","id":562,"arcs":[[-601,-472,-584,621,-435,622,-348,-352]]},{"type":"Polygon","id":566,"arcs":[[-349,-623,-434,218]]},{"type":"Polygon","id":558,"arcs":[[-523,121,-450,138]]},{"type":"Polygon","id":528,"arcs":[[-460,-346,259]]},{"type":"MultiPolygon","id":578,"arcs":[[[623,-490,624,271]],[[285]],[[290]],[[291]]]},{"type":"Polygon","id":524,"arcs":[[-420,-536]]},{"type":"MultiPolygon","id":554,"arcs":[[[14]],[[15]]]},{"type":"MultiPolygon","id":512,"arcs":[[[625,626,-314,196]],[[-313,194]]]},{"type":"Polygon","id":586,"arcs":[[-538,186,-539,-301,-422]]},{"type":"Polygon","id":591,"arcs":[[-451,123,-446,136]]},{"type":"Polygon","id":604,"arcs":[[133,-473,-448,-378,-374,-413]]},{"type":"MultiPolygon","id":608,"arcs":[[[50]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]]]},{"type":"MultiPolygon","id":598,"arcs":[[[36]],[[37]],[[-534,41]],[[40]]]},{"type":"Polygon","id":616,"arcs":[[263,627,-588,-369,628,629,-455,-457]]},{"type":"Polygon","id":630,"arcs":[[630]]},{"type":"Polygon","id":408,"arcs":[[-571,176,-414,631,174]]},{"type":"Polygon","id":620,"arcs":[[255,-480]]},{"type":"Polygon","id":600,"arcs":[[-377,-317,-376]]},{"type":"Polygon","id":275,"arcs":[[-552,-556]]},{"type":"Polygon","id":634,"arcs":[[632,191]]},{"type":"Polygon","id":642,"arcs":[[-595,633,244,-362,634,-530,635]]},{"type":"MultiPolygon","id":643,"arcs":[[[88]],[[264,-589,-628]],[[101]],[[103]],[[104]],[[159]],[[165]],[[167]],[[170]],[[173,-632,-428,-606,-426,-559,281,-339,-504,242,636,-367,-590,-481,268,-491,-624,637,638,639,640,274,641,276,642]],[[289]],[[292]],[[293]]]},{"type":"Polygon","id":646,"arcs":[[-340,-439,643,644]]},{"type":"Polygon","id":732,"arcs":[[-468,-614,231,-591]]},{"type":"Polygon","id":682,"arcs":[[-555,-544,-575,190,-633,192,-315,-627,645,198]]},{"type":"Polygon","id":729,"arcs":[[646,-582,-474,201,-477,-488,647,648,649,-392]]},{"type":"Polygon","id":728,"arcs":[[-564,650,-443,-394,651,-649,652,-486]]},{"type":"Polygon","id":686,"arcs":[[-615,-602,-509,-513,227,-512,229]]},{"type":"MultiPolygon","id":90,"arcs":[[[24]],[[26]],[[27]],[[32]],[[33]]]},{"type":"Polygon","id":694,"arcs":[[-507,-580,224]]},{"type":"Polygon","id":222,"arcs":[[142,-519,-522,140,653]]},{"type":"Polygon","id":-3,"arcs":[[-483,-462,204,654]]},{"type":"Polygon","id":706,"arcs":[[-565,-484,-655,205]]},{"type":"Polygon","id":688,"arcs":[[-361,-600,-573,-605,-365,-527,-531,-635]]},{"type":"Polygon","id":740,"arcs":[[-495,655,656,-382,-520,127]]},{"type":"Polygon","id":703,"arcs":[[657,-528,-334,-456,-630]]},{"type":"Polygon","id":705,"arcs":[[-532,-525,251,-553,-329]]},{"type":"Polygon","id":752,"arcs":[[-625,-489,270]]},{"type":"Polygon","id":748,"arcs":[[-608,658]]},{"type":"Polygon","id":760,"arcs":[[-550,-579,239,659,-546,-557]]},{"type":"Polygon","id":148,"arcs":[[-583,-647,-398,-436,-622]]},{"type":"Polygon","id":768,"arcs":[[-353,-350,220,-506]]},{"type":"Polygon","id":764,"arcs":[[-618,182,-604,-578,-568,180]]},{"type":"Polygon","id":762,"arcs":[[-423,-299,660,-566]]},{"type":"Polygon","id":795,"arcs":[[279,-558,661,-303,-542]]},{"type":"Polygon","id":626,"arcs":[[-533,28]]},{"type":"Polygon","id":780,"arcs":[[662]]},{"type":"Polygon","id":788,"arcs":[[234,-581,-470]]},{"type":"MultiPolygon","id":792,"arcs":[[[-505,-324,-541,-547,-660,240]],[[-515,-358,246]]]},{"type":"Polygon","id":158,"arcs":[[663]]},{"type":"Polygon","id":834,"arcs":[[207,-613,-617,664,-440,-341,-645,665,-562]]},{"type":"Polygon","id":800,"arcs":[[-644,-444,-651,-563,-666]]},{"type":"Polygon","id":804,"arcs":[[243,-634,-596,-636,-529,-658,-629,-368,-637]]},{"type":"Polygon","id":858,"arcs":[[130,-319,-384]]},{"type":"MultiPolygon","id":840,"arcs":[[[64]],[[65]],[[66]],[[67]],[[68]],[[105,666,107,667,109,668,111,669,113,670,115,-598,671,672,673,-400]],[[92]],[[94]],[[97]],[[-401,147]]]},{"type":"Polygon","id":860,"arcs":[[-561,-567,-661,-298,-662]]},{"type":"Polygon","id":862,"arcs":[[-521,-380,-447,125]]},{"type":"Polygon","id":704,"arcs":[[-570,-577,-415,178]]},{"type":"MultiPolygon","id":548,"arcs":[[[20]],[[21]]]},{"type":"Polygon","id":887,"arcs":[[-646,-626,197]]},{"type":"Polygon","id":710,"arcs":[[-620,-388,674,-609,-659,-607,209],[-586]]},{"type":"Polygon","id":894,"arcs":[[-611,675,-390,-619,-304,-441,-665,-616]]},{"type":"Polygon","id":716,"arcs":[[-391,-676,-610,-675]]}]}},"arcs":[[[3344,573],[-8,-29],[-8,-26],[-58,8],[-62,-4],[-35,19],[0,3],[-15,17],[62,-3],[60,-5],[21,23],[15,21],[28,-24]],[[577,604],[-53,-8],[-37,21],[-16,20],[-1,3],[-18,16],[17,22],[51,-9],[28,-18],[21,-21],[8,-26]],[[3745,688],[34,-25],[12,-35],[3,-25],[1,-29],[-43,-18],[-45,-15],[-52,-13],[-58,-12],[-66,4],[-36,19],[4,24],[60,15],[24,20],[17,24],[13,22],[16,20],[18,24],[15,0],[41,12],[42,-12]],[[1632,950],[36,-9],[33,10],[-15,-21],[-26,-14],[-39,4],[-28,21],[6,19],[33,-10]],[[1512,951],[42,-23],[-16,2],[-36,6],[-38,16],[20,12],[28,-13]],[[2250,1040],[30,-8],[31,7],[16,-33],[-22,4],[-33,-2],[-35,2],[-37,-3],[-29,11],[-14,24],[17,10],[36,-8],[40,-4]],[[3098,1096],[3,-26],[-5,-22],[-7,-22],[-33,-8],[-31,-11],[-37,1],[14,23],[-33,-8],[-31,-8],[-21,17],[-1,23],[30,23],[19,7],[32,-2],[8,29],[2,21],[-1,47],[16,27],[26,9],[14,-22],[7,-21],[12,-26],[9,-25],[8,-26]],[[108,339],[4,0],[3,-1],[41,-24],[35,24],[6,3],[82,11],[26,-14],[13,-7],[42,-19],[79,-15],[62,-18],[108,-13],[80,16],[118,-12],[66,-18],[74,17],[77,16],[6,27],[-109,2],[-90,14],[-23,23],[-75,12],[5,26],[10,24],[11,21],[-6,24],[-46,16],[-21,20],[-43,18],[67,-4],[64,10],[41,-20],[49,17],[46,22],[22,19],[-10,24],[-35,15],[-41,17],[-57,4],[-50,8],[-54,5],[-18,22],[-36,18],[-22,20],[-9,65],[14,-5],[25,-18],[46,5],[44,8],[23,-25],[44,6],[37,13],[35,15],[31,20],[42,5],[-1,22],[-10,21],[8,20],[36,10],[16,-19],[43,12],[32,14],[40,1],[37,6],[38,14],[30,12],[33,12],[22,-3],[19,-5],[42,8],[37,-10],[38,1],[36,8],[38,-5],[41,-6],[39,2],[40,-1],[41,-1],[38,2],[29,17],[33,9],[35,-12],[33,10],[30,20],[18,-18],[10,-20],[18,-19],[29,17],[33,-22],[37,-7],[33,-15],[39,3],[35,10],[42,-2],[37,-8],[39,-10],[14,25],[-18,19],[-13,20],[-36,5],[-16,21],[-6,22],[-10,42],[21,-7],[37,-4],[36,4],[32,-9],[29,-17],[12,-21],[37,-3],[36,8],[38,11],[35,7],[28,-14],[37,5],[24,44],[22,-26],[32,-10],[35,5],[23,-22],[36,-2],[34,-7],[33,-13],[22,22],[11,20],[28,-22],[38,5],[28,-12],[19,-19],[37,5],[29,13],[28,14],[34,8],[39,7],[35,8],[28,12],[16,18],[6,25],[-3,24],[-9,22],[-9,23],[-9,23],[-7,20],[-2,22],[3,23],[13,21],[11,24],[4,23],[-5,25],[-4,22],[14,26],[15,17],[18,21],[19,18],[23,17],[10,25],[16,16],[17,15],[27,3],[17,18],[20,11],[23,7],[20,15],[16,18],[21,7],[17,-15],[-11,-19],[-28,-17],[-12,-13],[-21,9],[-22,-5],[-20,-14],[-20,-14],[-13,-17],[-4,-23],[2,-21],[13,-19],[-19,-14],[-27,-5],[-15,-19],[-16,-18],[-17,-25],[-5,-21],[10,-24],[15,-18],[22,-13],[22,-18],[11,-23],[6,-21],[8,-23],[13,-19],[8,-22],[4,-53],[8,-21],[3,-23],[8,-22],[-3,-31],[-16,-23],[-16,-20],[-37,-7],[-13,-21],[-16,-19],[-42,-21],[-37,-9],[-35,-13],[-38,-12],[-22,-24],[-45,-2],[-49,2],[-44,-4],[-46,0],[8,-23],[43,-10],[31,-16],[17,-20],[-31,-18],[-48,5],[-39,-14],[-2,-24],[-1,-23],[33,-19],[6,-21],[35,-22],[59,-9],[50,-15],[39,-18],[51,-19],[69,-9],[68,-15],[47,-17],[52,-19],[27,-28],[14,-21],[34,20],[45,17],[49,18],[57,15],[50,16],[69,1],[68,-8],[56,-14],[18,25],[39,17],[70,1],[55,13],[52,12],[58,8],[61,10],[43,15],[-20,20],[-12,20],[0,22],[-53,-2],[-57,-9],[-55,0],[-8,21],[4,43],[13,12],[40,14],[46,13],[34,17],[34,17],[25,23],[38,10],[37,8],[19,4],[43,3],[41,8],[34,11],[34,13],[31,14],[38,18],[25,19],[26,17],[8,23],[-29,13],[9,24],[19,18],[29,11],[30,14],[29,18],[21,22],[14,27],[20,16],[33,-3],[14,-19],[33,-3],[1,22],[14,22],[30,-5],[7,-22],[33,-3],[36,10],[35,7],[32,-3],[12,-24],[30,19],[28,10],[32,8],[31,8],[28,14],[31,9],[24,12],[17,20],[21,-14],[29,8],[20,-28],[15,-20],[32,11],[13,23],[28,16],[36,-4],[11,-21],[23,21],[30,7],[33,2],[29,-1],[31,-6],[30,-4],[13,-19],[18,-17],[30,10],[33,2],[32,0],[31,2],[27,7],[30,7],[24,16],[26,10],[29,6],[21,16],[15,31],[16,19],[29,-9],[10,-20],[24,-13],[29,4],[20,-20],[20,-15],[29,14],[10,24],[25,11],[28,19],[28,8],[32,11],[22,12],[23,14],[22,12],[26,-6],[25,20],[18,16],[26,-2],[23,14],[5,20],[24,16],[22,11],[28,9],[26,5],[24,-3],[26,-6],[23,-16],[2,-25],[25,-19],[17,-16],[33,-6],[18,-16],[23,-16],[27,-3],[22,11],[24,24],[26,-13],[27,-7],[26,-6],[28,-5],[27,0],[23,-60],[-1,-14],[-3,-26],[-27,-15],[-22,-21],[4,-23],[31,1],[-3,-22],[-15,-22],[-13,-24],[22,-18],[32,-5],[32,10],[15,22],[9,22],[15,18],[18,17],[7,20],[15,28],[17,6],[32,2],[27,7],[29,9],[13,23],[8,21],[19,22],[28,14],[23,11],[15,20],[16,10],[20,9],[28,-6],[25,6],[27,7],[31,-4],[20,16],[14,38],[10,-15],[13,-27],[24,-12],[26,-4],[27,6],[28,-4],[26,-1],[18,5],[23,-3],[21,-12],[25,8],[30,0],[26,7],[29,-7],[18,19],[14,19],[19,16],[35,43],[18,-8],[21,-16],[19,-20],[35,-35],[27,-1],[26,0],[30,6],[30,8],[23,16],[19,17],[31,2],[20,13],[22,-12],[14,-18],[20,-18],[30,2],[19,-14],[34,-15],[34,-6],[29,5],[22,18],[18,18],[25,5],[25,-8],[29,-6],[26,9],[25,0],[25,-6],[26,-5],[25,10],[29,9],[29,2],[31,0],[26,6],[25,4],[8,29],[1,23],[17,-15],[5,-26],[9,-24],[12,-19],[23,-10],[32,3],[36,1],[25,3],[36,0],[27,2],[36,-3],[31,-4],[20,-18],[-6,-22],[18,-17],[30,-13],[31,-15],[36,-10],[37,-9],[29,-9],[31,-1],[18,19],[25,-16],[21,-18],[24,-13],[34,-6],[32,-7],[14,-22],[31,-14],[22,-20],[31,-9],[32,1],[30,-3],[33,1],[33,-5],[31,-8],[29,-13],[29,-12],[19,-17],[-3,-22],[-15,-20],[-12,-26],[-10,-21],[-13,-23],[-36,-9],[-17,-21],[-36,-12],[-12,-23],[-19,-21],[-20,-18],[-12,-24],[-7,-21],[-3,-26],[1,-22],[16,-22],[6,-22],[13,-20],[51,-8],[11,-25],[-50,-9],[-42,-12],[-53,-2],[-23,-33],[-5,-27],[-12,-22],[-15,-21],[37,-19],[14,-24],[24,-21],[34,-20],[39,-18],[41,-18],[64,-18],[14,-28],[80,-12],[6,-5],[20,-17],[77,15],[64,-18],[48,-14],[-9998,-1],[25,34],[50,-18],[3,2]],[[79,321],[8,5],[9,6],[8,5],[4,2]],[[3139,2021],[-9,-23],[-24,-18],[-30,6],[-20,17],[-29,9],[-35,32],[-28,31],[-39,64],[23,-12],[39,-38],[37,-21],[14,27],[9,39],[26,24],[20,-7]],[[3093,2151],[10,-27],[14,-43],[36,-34],[39,-15],[-12,-29],[-27,-2],[-14,20]],[[3373,2239],[22,-25],[-8,-21],[-38,-17],[-12,20],[-24,-26],[-14,26],[33,35],[24,-15],[17,23]],[[6951,2320],[-43,-4],[0,30],[4,24],[2,12],[18,-18],[26,-7],[1,-11],[-8,-26]],[[9037,2833],[27,-20],[15,8],[22,11],[17,-4],[2,-68],[-10,-20],[-3,-46],[-9,15],[-20,-40],[-5,3],[-18,2],[-17,50],[-3,38],[-16,50],[0,26],[18,-5]],[[9805,2826],[6,-24],[20,23],[8,-24],[0,-24],[-11,-27],[-18,-42],[-14,-24],[10,-27],[-21,-1],[-24,-22],[-7,-37],[-16,-59],[-22,-25],[-14,-17],[-25,1],[-18,19],[-31,4],[-4,22],[15,42],[35,57],[18,11],[20,22],[23,30],[17,30],[12,43],[11,14],[4,33],[19,26],[7,-24]],[[9849,3100],[20,-61],[1,40],[12,-16],[4,-44],[23,-18],[18,-5],[16,22],[14,-7],[-6,-51],[-9,-33],[-21,1],[-7,-18],[2,-24],[-4,-11],[-10,-31],[-14,-40],[-22,-23],[-4,16],[-12,8],[16,47],[-9,32],[-30,23],[1,21],[20,20],[4,44],[-1,37],[-11,39],[1,10],[-14,24],[-21,51],[-12,41],[10,4],[15,-32],[22,-15],[8,-51]],[[9641,3906],[-11,-14],[-15,16],[-20,26],[-18,30],[-18,41],[-4,19],[12,-1],[15,-19],[13,-20],[9,-16],[22,-36],[15,-26]],[[9953,4183],[10,-16],[-5,-30],[-17,-8],[-15,7],[-3,25],[11,20],[12,-7],[7,9]],[[9981,4214],[-18,-12],[-3,22],[13,12],[9,3],[17,18],[0,-28],[-18,-15]],[[2,4232],[-2,-3],[0,28],[5,2],[-3,-27]],[[9661,4234],[-9,-8],[-10,25],[1,16],[18,-33]],[[9640,4322],[5,-46],[-8,7],[-5,-3],[-4,16],[-1,44],[13,-18]],[[6389,4401],[5,-69],[7,-27],[-3,-27],[-5,-17],[-9,33],[-5,-17],[5,-42],[-3,-25],[-7,-13],[-2,-49],[-11,-67],[-14,-79],[-17,-109],[-10,-80],[-13,-67],[-23,-14],[-24,-24],[-16,14],[-22,21],[-7,30],[-2,51],[-10,46],[-3,42],[5,41],[13,10],[0,19],[13,44],[3,37],[-6,27],[-6,36],[-2,53],[10,33],[4,36],[13,2],[16,12],[10,11],[12,0],[16,33],[23,36],[8,29],[-3,24],[11,-7],[16,40],[0,35],[9,26],[10,-25],[7,-25],[7,-38]],[[8986,4389],[10,-45],[18,22],[9,-24],[14,-23],[-3,-25],[6,-50],[4,-29],[7,-7],[8,-49],[-3,-30],[9,-39],[30,-30],[20,-27],[18,-25],[-3,-14],[16,-36],[10,-63],[11,13],[12,-25],[6,9],[5,-61],[20,-35],[13,-22],[22,-47],[7,-46],[1,-33],[-2,-36],[13,-49],[-1,-51],[-5,-26],[-8,-52],[1,-33],[-5,-41],[-13,-52],[-20,-29],[-10,-44],[-10,-29],[-8,-49],[-11,-29],[-7,-43],[-3,-40],[1,-18],[-16,-20],[-31,-2],[-25,-24],[-13,-22],[-17,-25],[-23,26],[-17,10],[4,30],[-15,-11],[-24,-42],[-24,16],[-16,9],[-16,4],[-27,17],[-18,35],[-5,44],[-6,29],[-14,23],[-27,7],[9,28],[-6,43],[-14,-40],[-25,-10],[15,31],[4,34],[11,28],[-2,42],[-23,-49],[-17,-19],[-11,-46],[-22,24],[1,30],[-17,42],[-15,21],[5,14],[-35,35],[-20,1],[-26,28],[-50,-5],[-36,-21],[-32,-19],[-26,4],[-30,-30],[-24,-13],[-5,-30],[-10,-24],[-24,-1],[-17,-5],[-25,10],[-20,-6],[-19,-2],[-16,-31],[-9,2],[-14,-16],[-13,-18],[-20,2],[-19,0],[-29,37],[-15,11],[0,33],[14,8],[5,13],[-1,20],[3,41],[-3,34],[-14,58],[-5,33],[1,33],[-11,37],[-1,17],[-12,23],[-3,45],[-16,46],[-4,24],[12,-25],[-9,54],[14,-17],[8,-22],[-1,29],[-13,45],[-3,19],[-6,17],[3,33],[5,14],[4,29],[-3,34],[12,41],[2,-44],[11,40],[23,19],[13,25],[22,21],[12,4],[8,-7],[22,22],[17,6],[4,13],[7,5],[16,-1],[29,17],[15,25],[7,31],[16,29],[2,23],[0,31],[20,49],[11,-49],[12,11],[-10,27],[9,28],[12,-12],[4,44],[15,28],[7,23],[13,9],[1,17],[12,-7],[1,14],[12,9],[13,7],[21,-26],[15,-34],[18,-1],[17,-5],[-6,32],[14,46],[12,15],[-4,14],[12,33],[17,20],[14,-6],[23,10],[0,30],[-21,19],[15,8],[19,-14],[14,-24],[24,-14],[8,5],[17,-17],[16,16],[11,-5],[6,11],[13,-28],[-8,-31],[-10,-23],[-10,-2],[4,-23],[-9,-29],[-9,-28],[2,-17],[22,-31],[21,-19],[14,-20],[20,-34],[8,0],[15,-15],[4,-17],[26,-20],[19,20],[5,31],[6,25],[3,32],[9,46],[-4,27],[2,17],[-3,33],[3,44],[6,11],[-5,19],[7,31],[5,32],[1,16],[10,22],[8,-29],[2,-36],[7,-7],[1,-24],[10,-29],[2,-33],[-1,-21]],[[9502,4578],[8,-19],[-20,0],[-10,35],[16,-14],[6,-2]],[[8352,4592],[-12,-1],[-37,41],[26,11],[15,-18],[10,-17],[-2,-16]],[[9467,4613],[-11,-1],[-17,6],[-6,9],[2,23],[18,-9],[9,-12],[5,-16]],[[9490,4629],[-5,-10],[-20,49],[-6,35],[10,0],[10,-46],[11,-28]],[[8470,4670],[3,13],[24,13],[20,2],[8,8],[11,-8],[-10,-15],[-29,-25],[-24,-17]],[[8473,4641],[-18,-43],[-24,-13],[-3,7],[3,20],[12,35],[27,23]],[[8274,4716],[10,-16],[17,5],[7,-24],[-32,-12],[-20,-8],[-15,1],[10,33],[15,0],[8,21]],[[8413,4716],[-4,-32],[-42,-16],[-37,7],[0,21],[22,12],[17,-18],[19,5],[25,21]],[[9440,4702],[1,-12],[-22,25],[-15,20],[-11,20],[4,5],[13,-13],[23,-27],[7,-18]],[[9375,4759],[-6,-3],[-12,13],[-11,23],[1,10],[17,-24],[11,-19]],[[8016,4792],[53,-6],[6,24],[52,-28],[10,-37],[42,-11],[34,-34],[-32,-22],[-31,23],[-25,-1],[-28,4],[-26,10],[-33,22],[-20,6],[-12,-7],[-50,23],[-5,25],[-25,4],[19,55],[33,-3],[23,-22],[11,-5],[4,-20]],[[8741,4824],[-14,-39],[-3,43],[5,21],[6,19],[6,-16],[0,-28]],[[9329,4789],[-8,-6],[-12,23],[-12,36],[-6,44],[3,6],[3,-18],[9,-13],[13,-36],[13,-20],[-3,-16]],[[9220,4867],[-14,-5],[-5,-16],[-15,-14],[-14,-14],[-15,0],[-23,17],[-15,16],[2,18],[25,-9],[15,5],[4,28],[4,1],[3,-31],[16,5],[8,20],[15,20],[-3,34],[17,1],[5,-9],[0,-32],[-10,-35]],[[8533,4983],[-10,-19],[-19,10],[-6,25],[28,3],[7,-19]],[[8623,5004],[10,-44],[-24,24],[-23,4],[-15,-3],[-20,2],[7,31],[34,3],[31,-17]],[[9252,4923],[-8,-15],[-5,33],[-7,23],[-12,19],[-16,24],[-20,17],[7,14],[15,-16],[10,-13],[11,-14],[12,-24],[10,-18],[3,-30]],[[8915,5032],[48,-39],[52,-33],[19,-30],[15,-29],[5,-34],[46,-35],[7,-31],[-26,-6],[6,-38],[25,-38],[18,-61],[16,2],[-1,-26],[21,-10],[-8,-11],[30,-24],[-4,-16],[-18,-4],[-7,14],[-24,7],[-28,9],[-21,36],[-16,32],[-15,50],[-36,26],[-23,-17],[-17,-19],[3,-42],[-21,-20],[-16,10],[-29,2]],[[8916,4657],[-25,47],[-28,12],[-7,-17],[-35,-1],[12,46],[18,16],[-8,63],[-13,48],[-54,49],[-23,5],[-42,53],[-8,-28],[-10,-5],[-7,21],[0,25],[-21,29],[30,20],[20,-1],[-3,15],[-40,1],[-11,34],[-25,10],[-12,29],[38,14],[14,19],[44,-24],[5,-21],[8,-93],[28,-35],[24,61],[31,35],[25,0],[24,-20],[20,-21],[30,-11]],[[8478,5264],[-23,-57],[-21,-11],[-26,11],[-47,-3],[-24,-8],[-4,-44],[25,-51],[15,26],[52,20],[-2,-27],[-13,8],[-12,-33],[-24,-23],[26,-73],[-5,-20],[25,-67],[0,-38],[-15,-16],[-11,20],[14,47],[-28,-22],[-7,16],[4,22],[-20,34],[2,56],[-19,-18],[3,-67],[1,-82],[-18,-9],[-12,17],[8,53],[-4,56],[-12,0],[-8,40],[11,37],[4,46],[14,87],[6,24],[24,42],[21,-17],[35,-8],[32,3],[28,42],[5,-13]],[[8573,5247],[-1,-50],[-14,5],[-5,-35],[12,-30],[-8,-7],[-11,37],[-8,73],[5,46],[9,21],[2,-31],[17,-5],[2,-24]],[[7938,4845],[-31,-1],[-23,48],[-36,47],[-12,35],[-21,47],[-13,43],[-22,81],[-24,48],[-8,49],[-10,45],[-25,36],[-15,49],[-21,33],[-29,63],[-2,30],[18,-3],[43,-11],[24,-56],[22,-39],[15,-24],[26,-62],[29,-1],[23,-39],[16,-49],[21,-26],[-11,-47],[16,-20],[10,-2],[5,-40],[9,-32],[21,-5],[13,-36],[-7,-72],[-1,-89]],[[8045,5298],[20,-20],[22,11],[5,48],[12,11],[33,13],[20,45],[14,37]],[[8171,5443],[11,21],[24,32]],[[8206,5496],[21,40],[14,45],[11,0],[15,-29],[1,-25],[18,-16],[23,-18],[-2,-22],[-18,-3],[5,-28],[-21,-20]],[[8273,5420],[-16,-52],[21,-54],[-5,-27],[31,-53],[-33,-7],[-9,-39],[1,-52],[-27,-40],[0,-57],[-11,-88],[-4,20],[-32,-26],[-11,36],[-19,3],[-14,18],[-33,-20],[-10,28],[-19,-4],[-23,7],[-4,77],[-14,16],[-13,50],[-4,50],[3,53],[17,39]],[[8509,5667],[3,-39],[2,-32],[-10,-53],[-10,59],[-13,-29],[9,-43],[-8,-27],[-33,34],[-8,41],[9,28],[-18,27],[-8,-24],[-14,2],[-20,-32],[-5,17],[11,49],[18,16],[15,22],[10,-27],[21,16],[4,26],[20,1],[-2,45],[23,-27],[2,-29],[2,-21]],[[7255,5539],[-24,-13],[-14,45],[-4,83],[12,94],[19,-32],[13,-41],[14,-60],[-5,-60],[-11,-16]],[[3307,5764],[-24,-6],[-5,5],[8,16],[0,23],[16,7],[6,-2],[-1,-43]],[[8443,5774],[-10,-19],[-9,-36],[-9,-18],[-17,40],[6,16],[7,16],[3,36],[15,3],[-4,-39],[20,56],[-2,-55]],[[8290,5718],[-36,-54],[13,40],[20,36],[17,39],[14,58],[5,-47],[-18,-32],[-15,-40]],[[8384,5867],[17,-18],[18,0],[-1,-24],[-13,-25],[-17,-17],[-1,27],[2,29],[-5,28]],[[8485,5882],[8,-64],[-22,15],[1,-19],[7,-36],[-14,-12],[-1,40],[-8,3],[-4,35],[16,-5],[-1,22],[-16,44],[26,-1],[8,-22]],[[8374,5935],[-7,-50],[-12,29],[-14,43],[24,-2],[9,-20]],[[8369,6247],[17,-16],[8,15],[3,-15],[-5,-23],[10,-42],[-7,-48],[-17,-19],[-4,-46],[6,-46],[15,-6],[12,7],[35,-32],[-3,-32],[9,-14],[-3,-26],[-21,28],[-11,30],[-7,-21],[-17,35],[-26,-9],[-14,13],[2,24],[9,14],[-9,14],[-3,-21],[-14,33],[-4,25],[-1,55],[11,-19],[3,90],[9,53],[17,-1]],[[3177,6232],[-7,-15],[-21,0],[-16,-2],[-2,25],[4,8],[23,0],[14,-5],[5,-11]],[[2863,6211],[-8,-10],[-16,9],[-16,21],[4,14],[11,4],[7,-2],[18,-5],[15,-14],[5,-16],[-20,-1]],[[3007,6317],[4,10],[21,0],[17,-15],[7,1],[5,-20],[15,1],[-1,-17],[13,-2],[13,-21],[-10,-24],[-13,13],[-13,-3],[-9,3],[-5,-10],[-11,-4],[-4,14],[-9,-8],[-11,-40],[-7,9],[-2,17]],[[3007,6221],[-18,10],[-13,-4],[-17,4],[-13,-11],[-15,18],[2,19],[26,-8],[21,-5],[10,13],[-13,25],[0,22],[-17,9],[6,16],[17,-3],[24,-9]],[[8064,6258],[-24,-28],[-23,18],[-1,49],[14,26],[30,16],[16,-1],[6,-22],[-12,-25],[-6,-33]],[[679,6281],[-4,-10],[-7,8],[1,17],[-5,21],[1,6],[5,9],[-2,12],[2,5],[2,-1],[11,-10],[5,-5],[4,-7],[7,-21],[0,-3],[-11,-12],[-9,-9]],[[664,6371],[-9,-4],[-5,12],[-3,4],[-1,4],[3,5],[10,-6],[7,-8],[-2,-7]],[[645,6401],[-1,-6],[-15,2],[2,7],[14,-3]],[[620,6410],[-1,-4],[-2,1],[-10,2],[-3,13],[-2,3],[8,7],[2,-3],[8,-19]],[[573,6448],[-3,-6],[-9,11],[1,4],[4,5],[7,-1],[0,-13]],[[2786,6493],[11,-21],[26,6],[10,-13],[23,-36],[18,-26],[9,1],[16,-12],[-2,-16],[21,-2],[21,-24],[-4,-13],[-18,-8],[-19,-3],[-19,5],[-40,-6],[19,32],[-11,15],[-18,4],[-10,17],[-6,33],[-16,-3],[-26,16],[-8,12],[-37,9],[-9,11],[10,14],[-27,3],[-20,-30],[-12,0],[-4,-14],[-13,-7],[-12,6],[14,18],[7,20],[12,13],[14,11],[21,6],[7,6],[24,-4],[22,-1],[26,-19]],[[2845,6550],[-6,-3],[-7,33],[-11,17],[6,37],[9,-3],[9,-47],[0,-34]],[[8365,6494],[-12,-47],[-15,49],[-3,42],[16,57],[23,44],[12,-18],[-5,-34],[-16,-93]],[[2838,6713],[-31,-10],[-2,22],[13,4],[19,-2],[1,-14]],[[2860,6713],[-4,-41],[-6,8],[1,30],[-13,22],[0,7],[22,-26]],[[8739,7148],[3,-19],[-16,-35],[-11,18],[-14,-13],[-8,-34],[-18,17],[1,27],[15,34],[16,-6],[11,24],[21,-13]],[[5943,7201],[0,-5],[-28,-23],[-14,7],[-6,23],[13,2]],[[5908,7205],[2,1],[4,14],[20,-1],[25,17],[-18,-24],[2,-11]],[[5657,7238],[15,-19],[22,3],[21,-4],[-1,-10],[15,7],[-3,-17],[-40,-5],[0,9],[-34,11],[5,25]],[[5430,7383],[-10,-45],[4,-18],[-6,-29],[-21,21],[-14,7],[-39,29],[4,29],[33,-5],[28,6],[21,5]],[[5255,7555],[16,-41],[-3,-76],[-13,4],[-11,-20],[-11,16],[-1,69],[-6,33],[15,-3],[14,18]],[[8915,7321],[-11,-46],[5,-29],[-14,-41],[-36,-27],[-49,-3],[-39,-66],[-19,22],[-1,43],[-48,-13],[-33,-27],[-33,-1],[28,-42],[-18,-98],[-18,-24],[-14,22],[7,52],[-17,17],[-12,39],[27,18],[14,36],[28,30],[20,39],[56,17],[29,-11],[30,102],[18,-27],[41,57],[16,23],[17,70],[-5,65],[12,36],[30,11],[15,-80],[-1,-47],[-26,-58],[1,-59]],[[5265,7609],[-10,-44],[-12,11],[-7,39],[6,22],[18,22],[5,-50]],[[8996,7726],[20,-13],[19,25],[6,-65],[-41,-16],[-24,-57],[-44,40],[-15,-63],[-31,-1],[-4,57],[14,44],[30,3],[8,80],[8,45],[33,-60],[21,-19]],[[3231,7862],[20,-7],[26,1],[-14,-23],[-10,-4],[-36,24],[-7,20],[11,17],[10,-28]],[[3282,8010],[-13,-1],[-36,18],[-26,27],[10,5],[36,-15],[29,-24],[0,-10]],[[1569,7975],[-14,-8],[-46,26],[-8,21],[-25,20],[-5,16],[-29,11],[-11,31],[3,13],[29,-12],[17,-9],[26,-6],[10,-20],[13,-27],[28,-24],[12,-32]],[[3440,8101],[-19,-51],[19,20],[18,-13],[-9,-20],[24,-15],[13,14],[28,-18],[-9,-42],[20,10],[3,-31],[9,-36],[-12,-50],[-13,-3],[-18,11],[6,47],[-8,8],[-32,-50],[-16,2],[19,27],[-26,14],[-30,-4],[-54,2],[-4,17],[17,20],[-12,16],[23,35],[29,91],[17,33],[24,20],[13,-2],[-5,-16],[-15,-36]],[[1313,8294],[27,4],[-9,-65],[25,-46],[-12,0],[-16,26],[-11,27],[-14,18],[-5,25],[2,18],[13,-7]],[[8989,8104],[28,-102],[-41,19],[-17,-83],[27,-59],[-1,-40],[-21,34],[-18,-44],[-6,48],[4,56],[-4,62],[7,44],[1,77],[-16,57],[2,78],[26,27],[-11,26],[12,9],[7,-39],[10,-55],[-1,-57],[12,-58]],[[4789,8357],[23,2],[30,-36],[-15,-39]],[[4827,8284],[4,-41],[-21,-52],[-49,-34],[-39,9],[22,60],[-14,59],[38,45],[21,27]],[[5351,8384],[-16,-46],[-29,32],[-4,24],[41,19],[8,-29]],[[749,8471],[-27,-22],[-15,15],[-4,27],[25,20],[15,9],[19,-4],[11,-18],[-24,-27]],[[4916,8558],[-30,-62],[28,8],[31,0],[-8,-47],[-25,-52],[29,-4],[27,-74],[19,-9],[17,-65],[8,-23],[34,-11],[-4,-37],[-14,-17],[11,-30],[-25,-30],[-37,1],[-47,-16],[-13,11],[-18,-27],[-26,7],[-20,-22],[-14,11],[40,61],[25,12],[-43,10],[-8,23],[29,18],[-15,31],[5,37],[41,-5],[4,34],[-19,36],[-34,10],[-6,16],[10,25],[-9,16],[-15,-27],[-2,55],[-14,30],[10,59],[22,47],[22,-5],[34,5]],[[400,8632],[-17,-9],[-18,11],[-17,15],[27,10],[22,-5],[3,-22]],[[2797,8761],[-10,-30],[-13,5],[-7,17],[1,4],[11,17],[11,-1],[7,-12]],[[2724,8793],[-32,-32],[-20,2],[-6,15],[21,27],[38,-1],[-1,-11]],[[229,8855],[17,-11],[18,6],[22,-15],[28,-8],[-3,-6],[-21,-13],[-21,13],[-10,10],[-25,-3],[-6,5],[1,22]],[[2634,8963],[5,-26],[14,9],[16,-15],[31,-20],[31,-18],[3,-27],[20,5],[20,-20],[-25,-18],[-43,14],[-15,26],[-28,-31],[-39,-29],[-10,33],[-38,-5],[25,28],[3,46],[10,52],[20,-4]],[[4596,9009],[-6,-38],[31,-39],[-36,-44],[-80,-39],[-24,-11],[-37,9],[-77,18],[27,25],[-60,29],[49,11],[-1,17],[-59,13],[19,38],[42,8],[43,-39],[43,31],[35,-16],[45,31],[46,-4]],[[2892,9049],[-31,-3],[-7,28],[12,32],[25,8],[22,-16],[0,-24],[-3,-8],[-18,-17]],[[138,9016],[19,-14],[-7,42],[76,-9],[54,-54],[-27,-25],[-46,-6],[-1,-56],[-11,-12],[-26,2],[-21,20],[-37,16],[-6,25],[-28,10],[-32,-8],[-15,20],[6,22],[-33,-14],[12,-27],[-15,-24],[0,229],[68,-44],[72,-57],[-2,-36]],[[2342,9161],[-17,-20],[-37,18],[-23,-7],[-38,26],[25,18],[19,25],[29,-16],[17,-11],[8,-11],[17,-22]],[[9999,9261],[-31,-3],[-5,18],[36,24],[0,-39]],[[36,9264],[-36,-3],[0,39],[3,2],[24,0],[40,-16],[-3,-8],[-28,-14]],[[3134,7781],[5,-19],[-30,-28],[-28,-20],[-29,-17]],[[3052,7697],[-16,-37],[-4,-10]],[[3032,7650],[0,-30],[9,-31],[12,-1],[-3,21],[8,-13],[-2,-16],[-19,-10],[-13,1],[-21,-10],[-12,-3],[-16,-2],[-23,-17]],[[2952,7539],[41,11],[8,-11]],[[3001,7539],[-39,-17],[-18,-1],[1,8],[-8,-16],[8,-3],[-6,-41],[-21,-45],[-2,15],[-6,3],[-9,14],[6,-31],[7,-10],[0,-22],[-9,-22],[-15,-46],[-3,2],[9,39]],[[2896,7366],[-14,23],[-4,47]],[[2878,7436],[-5,-25],[6,-36],[-18,9],[19,-19],[1,-54],[8,-4],[3,-20],[4,-58],[-18,-43],[-29,-17],[-18,-34],[-14,-3],[-14,-21],[-4,-20],[-30,-37],[-16,-27],[-13,-35],[-4,-41],[5,-39],[9,-50],[12,-41],[0,-24],[13,-67],[0,-39],[-2,-22],[-7,-36],[-8,-7],[-14,7],[-4,25],[-10,14],[-15,49],[-13,44],[-4,23],[5,38],[-7,32],[-22,48],[-11,9],[-28,-26],[-5,2],[-13,27],[-18,14],[-31,-7],[-25,7],[-21,-4]],[[2522,6928],[-12,-8],[6,-17]],[[2516,6903],[-1,-23],[6,-11],[-5,-8],[-11,9],[-10,-11],[-20,1],[-21,31],[-24,-7],[-20,13],[-18,-4],[-23,-13],[-25,-43],[-28,-25]],[[2316,6812],[-15,-27],[-6,-26]],[[2295,6759],[-1,-40],[2,-28],[5,-19]],[[2301,6672],[0,-1],[-11,-50]],[[2290,6621],[-5,-41],[-2,-78],[-2,-28],[4,-31],[9,-28],[6,-45],[18,-43],[6,-33],[11,-28],[30,-15],[11,-24],[25,16],[21,6],[21,10],[17,10],[18,23],[6,34],[3,48],[5,17],[18,15],[30,14],[24,-2],[17,5],[7,-13],[-1,-27],[-15,-35],[-7,-35],[5,-10],[-4,-25],[-7,-45],[-7,15],[-6,-1]],[[2546,6247],[1,-8],[5,0],[-1,-16],[-4,-25],[2,-9],[-3,-21],[2,-5],[-3,-29],[-6,-15],[-5,-2],[-5,-20]],[[2529,6097],[9,-11],[2,9],[9,-7]],[[2549,6088],[2,-3],[7,10],[7,1],[3,-4],[4,2],[13,-5],[13,2],[9,6],[3,7],[9,-3],[7,-4],[7,1],[6,5],[12,-8],[5,-1],[8,-11],[8,-13],[10,-9],[8,-16]],[[2690,6045],[-3,-5],[-1,-13],[3,-21],[-7,-20],[-3,-23],[-1,-25],[2,-15],[1,-26],[-5,-6],[-2,-24],[2,-15],[-6,-15],[1,-16],[4,-9]],[[2675,5812],[8,-31],[10,-24],[13,-24]],[[2706,5733],[10,-21],[0,-12],[11,-3],[2,5],[8,-14],[14,4],[12,15],[16,11],[10,17],[15,-3],[-1,-6],[16,-2],[12,-10],[9,-17],[11,-16]],[[2851,5681],[14,-2],[21,41],[11,6],[0,19],[6,48],[15,27],[18,1],[2,12],[22,-5],[22,30],[11,12],[13,28],[10,-3],[7,-16],[-5,-19]],[[3018,5860],[-1,-14],[-16,-6],[9,-26],[-1,-30],[-12,-34],[11,-46],[12,4],[6,42],[-9,20],[-1,44],[34,23],[-3,27],[9,18],[10,-40],[20,-1],[18,-32],[1,-19],[25,-1],[30,6],[15,-26],[22,-7],[15,18],[1,15],[34,3],[33,1],[-23,-17],[9,-27],[22,-5],[21,-28],[5,-46],[14,1],[11,-13]],[[3339,5664],[18,-21],[18,-38],[0,-30],[11,-1],[15,-28],[11,-20]],[[3412,5526],[33,-12],[3,11],[22,4],[30,-16]],[[3500,5513],[10,-6],[20,-14],[30,-48],[4,-24]],[[3564,5421],[10,3],[7,-32],[15,-101],[15,-9],[1,-40],[-21,-47],[8,-18],[50,-9],[1,-57],[21,37],[35,-20],[46,-35],[13,-34],[-4,-32],[32,18],[54,-31],[42,3],[41,-48],[35,-65],[22,-16],[23,-3],[10,-18],[10,-73],[4,-35],[-11,-95],[-14,-38],[-39,-80],[-18,-65],[-20,-50],[-7,-1],[-8,-42],[2,-108],[-8,-89],[-3,-38],[-8,-23],[-5,-77],[-29,-75],[-4,-59],[-23,-25],[-6,-35],[-30,0],[-44,-22],[-20,-25],[-31,-17],[-32,-46],[-24,-57],[-4,-43],[5,-32],[-6,-58],[-6,-28],[-19,-32],[-31,-101],[-25,-46],[-18,-27],[-13,-55],[-18,-33]],[[3517,3237],[-12,-36],[-32,-32],[-20,12],[-15,-6],[-26,24],[-19,-1],[-17,31]],[[3376,3229],[-2,-30],[36,-49],[-4,-40],[17,-25],[-1,-28],[-27,-74],[-41,-31],[-56,-12],[-30,6],[5,-34],[-5,-43],[5,-29],[-17,-21],[-28,-8],[-27,21],[-11,-15],[4,-57],[19,-17],[15,18],[8,-30],[-25,-18],[-22,-36],[-5,-58],[-6,-30],[-26,-1],[-22,-29],[-8,-43],[27,-42],[27,-12],[-10,-52],[-33,-32],[-18,-68],[-25,-22],[-11,-27],[9,-60],[18,-34],[-12,3]],[[3094,2170],[-24,1],[-14,-14],[-25,-21],[-4,-54],[-12,-1],[-31,18],[-32,41],[-35,33],[-8,36],[8,34],[-14,38],[-4,98],[12,56],[29,44],[-42,17],[26,51],[10,95],[31,-20],[14,119],[-18,16],[-9,-72],[-18,8],[9,82],[10,107],[12,39],[-8,57],[-2,64],[12,2],[17,93],[19,92],[12,86],[-7,86],[9,48],[-4,71],[17,70],[5,112],[9,119],[8,129],[-2,94],[-6,81]],[[3044,4125],[-27,33],[-3,24],[-55,58],[-50,63],[-21,35],[-12,48],[5,17],[-24,75],[-27,106],[-26,115],[-12,26],[-8,43],[-22,37],[-20,24],[9,25],[-13,55],[8,41],[23,36]],[[2769,4986],[14,43],[-6,25],[-10,-27],[-17,26],[6,16],[-5,52],[10,9],[5,36],[10,37],[-2,23],[16,13],[19,22]],[[2809,5261],[-4,18],[10,5],[-1,29],[7,20],[13,4],[12,36],[11,31],[-10,13],[5,34],[-6,52],[5,16],[-4,48],[-11,31]],[[2836,5598],[-9,17],[-6,31],[6,15],[-7,4],[-5,19],[-14,16],[-12,-4],[-5,-20],[-12,-14],[-6,-2],[-2,-12],[13,-31],[-8,-8],[-4,-8],[-13,-3],[-4,34],[-4,-10],[-9,4],[-6,23],[-11,4],[-7,6],[-12,0],[-1,-12],[-3,9]],[[2695,5656],[-15,12],[-6,12],[3,10],[-1,13],[-8,14],[-11,11],[-9,8],[-2,17],[-7,10],[2,-17],[-6,-14],[-6,16],[-9,6],[-4,12],[0,17],[4,18],[-8,8],[6,11]],[[2618,5820],[-9,19],[-13,23],[-6,19],[-12,18],[-14,26],[3,9],[5,-8],[2,4]],[[2574,5930],[-5,18],[-8,5]],[[2561,5953],[-4,-14],[-16,1]],[[2541,5940],[-10,5],[-11,12]],[[2520,5957],[-16,4],[-7,12]],[[2497,5973],[-15,10],[-17,1],[-13,11],[-15,24]],[[2437,6019],[-31,62],[-14,19],[-23,15],[-16,-4],[-22,-22],[-14,-6],[-19,16],[-21,10],[-26,27],[-21,8],[-32,27],[-23,27],[-7,16],[-15,3],[-29,18],[-11,27],[-30,32],[-14,37],[-7,28],[10,5],[-3,17],[6,15],[0,20],[-9,25],[-3,23],[-9,29],[-24,58],[-28,45],[-14,35],[-24,24],[-5,14],[4,36],[-14,13],[-16,28],[-7,40],[-15,5],[-16,30],[-13,28],[-1,18],[-15,44],[-10,44],[0,22],[-20,23],[-9,-3],[-16,16],[-4,-23],[4,-28],[3,-43],[9,-24],[21,-40],[5,-13],[4,-4],[4,-20],[4,1],[6,-37],[8,-15],[6,-20],[18,-30],[9,-53],[8,-25],[8,-27],[2,-31],[13,-2],[11,-26],[10,-26],[-1,-10],[-11,-21],[-5,0],[-7,35],[-19,33],[-20,28],[-14,14],[1,43],[-4,31],[-13,18],[-19,25],[-4,-7],[-7,15],[-17,14],[-17,33],[2,5],[12,-4],[10,22],[1,26],[-21,41],[-17,16],[-10,36],[-10,38],[-13,46],[-11,51]],[[1746,7055],[-5,30],[-18,33],[-13,7],[-3,16],[-15,3],[-10,16],[-26,6],[-7,9],[-4,31],[-27,58],[-23,80],[1,14],[-12,19],[-22,48],[-3,47],[-15,31],[6,48],[-1,49],[-9,45],[11,54],[7,104],[-5,78],[-9,49],[-8,27],[3,11],[40,-20],[15,-54],[7,15],[-4,47],[-10,48]],[[1587,8004],[-4,0],[-53,56],[-20,25],[-51,24],[-15,51],[4,35],[-36,25],[-4,46],[-34,42],[-1,30]],[[1373,8338],[-15,21],[-24,19],[-8,50],[-36,46],[-15,55],[-27,4],[-44,1],[-32,17],[-58,59],[-26,11],[-49,21],[-38,-5],[-55,26],[-33,25],[-31,-12],[6,-40],[-16,-4],[-32,-12],[-24,-19],[-31,-13],[-4,34],[13,57],[29,17],[-8,15],[-35,-32],[-19,-39],[-40,-40],[20,-28],[-26,-42],[-30,-24],[-27,-17],[-7,-26],[-44,-30],[-8,-27],[-33,-24],[-19,4],[-26,-16],[-28,-20],[-23,-19],[-48,-16],[-4,9],[30,27],[27,18],[30,32],[34,6],[14,24],[39,34],[6,12],[20,20],[5,44],[14,34],[-32,-18],[-9,10],[-15,-21],[-18,29],[-7,-20],[-11,28],[-28,-23],[-17,0],[-2,35],[5,21],[-18,20],[-36,-11],[-23,27],[-19,14],[-1,33],[-21,24],[11,33],[22,33],[10,29],[23,4],[19,-9],[22,28],[20,-5],[22,18],[-6,26],[-15,10],[20,23],[-17,-1],[-29,-13],[-9,-12],[-22,12],[-39,-6],[-40,14],[-12,23],[-35,33],[39,25],[62,28],[23,0],[-4,-29],[58,2],[-22,36],[-34,22],[-20,29],[-27,24],[-38,18],[16,30],[49,2],[35,27],[7,28],[28,27],[27,7],[53,25],[25,-4],[43,31],[42,-12],[20,-26],[12,11],[47,-3],[-1,-14],[42,-9],[29,5],[58,-18],[53,-5],[22,-8],[37,10],[42,-18],[30,-8]],[[1083,9196],[52,-14],[44,-27],[29,-6],[24,24],[34,18],[41,-7],[41,26],[46,14],[19,-24],[21,14],[6,27]],[[1440,9241],[19,-6],[47,-52]],[[1506,9183],[37,39],[4,-44],[34,10],[10,16],[34,-3],[43,-24],[65,-21],[38,-10],[27,4],[37,-29],[-39,-29],[51,-12],[75,6],[23,11],[30,-35],[30,29],[-28,25],[18,19],[33,3],[23,6],[22,-14],[28,-31],[31,4],[49,-26],[43,9],[41,-1],[-3,36],[24,10],[43,-20],[0,-54],[18,46],[22,-2],[13,58],[-30,36],[-32,23],[2,64],[33,41],[36,-9],[28,-25],[38,-65]],[[2457,9224],[-25,-28],[52,-12]],[[2484,9184],[0,-59],[37,45],[33,-37],[-8,-43],[27,-39],[29,42],[20,50],[2,63],[39,-4],[41,-9],[37,-28],[2,-29],[-21,-31],[20,-31],[-4,-28],[-54,-40],[-39,-9],[-28,18],[-9,-29],[-26,-49],[-8,-25],[-33,-39],[-39,-4],[-22,-24],[-2,-38],[-32,-7],[-34,-46],[-31,-65],[-10,-46],[-2,-67],[41,-9],[12,-54],[13,-44],[39,12],[52,-25],[28,-22],[20,-27],[34,-16],[30,-25],[46,-3],[30,-5],[-5,-50],[9,-58],[20,-65],[41,-54],[22,18],[15,60],[-15,91],[-19,30],[44,27],[32,40],[15,40],[-2,39],[-19,49],[-34,43],[33,60],[-12,53],[-9,90],[19,13],[48,-16],[28,-5],[23,15],[26,-20],[34,-33],[9,-23],[49,-4],[-1,-48],[10,-73],[25,-9],[20,-34],[40,32],[27,63],[18,27],[22,-51],[36,-74],[31,-69],[-11,-36],[36,-32],[25,-33],[45,-15],[18,-18],[11,-49],[21,-8],[11,-22],[2,-64],[-20,-22],[-20,-20],[-45,-21],[-35,-47],[-47,-9],[-60,12],[-41,0],[-29,-4],[-23,-41],[-36,-26],[-40,-76],[-32,-53],[24,10],[44,75],[59,48],[41,6],[25,-28],[-27,-39],[9,-62],[9,-43],[36,-29],[46,8],[28,65],[2,-42],[18,-21],[-34,-38],[-62,-34],[-27,-23],[-31,-42],[-22,5],[-1,48],[49,48],[-45,-2],[-31,-7]],[[1852,9128],[-15,28],[-38,15],[-25,-6],[-34,45],[18,7],[43,9],[39,-2],[37,10],[-54,13],[-59,-4],[-40,1],[-14,21],[64,23],[-43,-1],[-48,16],[23,43],[19,23],[75,35],[28,-11],[-14,-27],[62,17],[39,-29],[31,29],[25,-19],[23,-56],[14,24],[-20,59],[25,8],[27,-9],[31,-23],[18,-56],[8,-41],[47,-29],[50,-27],[-3,-25],[-45,-5],[17,-22],[-9,-21],[-50,9],[-48,16],[-32,-4],[-52,-19]],[[1972,9143],[-83,-11],[-37,-4]],[[2097,9410],[-25,-38],[-43,40],[9,8],[37,2],[22,-12]],[[2879,9391],[2,-15],[-29,1],[-30,1],[-31,-7],[-8,3],[-30,31],[1,20],[13,4],[64,-6],[48,-32]],[[2595,9395],[22,-36],[25,46],[71,24],[47,-60],[-4,-37],[55,16],[26,23],[62,-29],[38,-27],[4,-26],[51,13],[29,-36],[67,-23],[25,-23],[26,-54],[-51,-27],[65,-38],[44,-12],[40,-53],[44,-4],[-9,-40],[-48,-67],[-35,24],[-43,56],[-36,-7],[-4,-33],[30,-34],[37,-26],[12,-16],[18,-57],[-10,-41],[-35,16],[-69,46],[39,-50],[29,-35],[4,-20],[-75,23],[-60,34],[-33,28],[9,16],[-41,29],[-41,28],[1,-16],[-80,-10],[-24,20],[18,43],[53,1],[57,7],[-10,21],[10,28],[36,56],[-8,26],[-10,20],[-43,28],[-56,19],[18,15],[-30,36],[-24,3],[-22,19],[-15,-17],[-50,-7],[-101,13],[-59,17],[-45,8],[-23,21],[29,26],[-40,0],[-8,58],[21,52],[28,23],[72,16],[-20,-37]],[[2212,9434],[33,-12],[49,7],[7,-16],[-25,-28],[42,-25],[-5,-52],[-46,-22],[-27,5],[-19,22],[-69,44],[1,19],[56,-7],[-30,37],[33,28]],[[8988,9398],[-43,-1],[-56,7],[-5,3],[26,23],[35,5],[39,-22],[4,-15]],[[2410,9372],[-29,-43],[-32,3],[-17,50],[0,29],[15,24],[27,16],[58,-2],[53,-14],[-41,-51],[-34,-12]],[[1580,9265],[-15,25],[-64,30]],[[1501,9320],[10,19],[21,48]],[[1532,9387],[25,38],[-28,35],[94,9],[40,-12],[71,-3],[27,-17],[30,-24],[-35,-15],[-68,-40],[-35,-40]],[[1653,9318],[0,-25],[-73,-28]],[[9186,9506],[-33,-23],[-44,5],[-52,23],[7,18],[52,-8],[70,-15]],[[2399,9500],[-15,-23],[-41,5],[-33,15],[15,25],[40,16],[24,-20],[10,-18]],[[9029,9533],[-22,-43],[-102,2],[-47,-14],[-55,38],[15,39],[37,11],[73,-2],[101,-31]],[[2263,9600],[21,-27],[1,-30],[-12,-42],[-46,-6],[-30,9],[1,34],[-46,-5],[-2,45],[30,-2],[42,19],[39,-3],[2,8]],[[1993,9570],[11,-21],[25,10],[29,-2],[5,-29],[-17,-27],[-94,-9],[-70,-25],[-42,-1],[-4,19],[58,25],[-126,-7],[-38,10],[37,57],[27,16],[78,-20],[49,-34],[49,-4],[-40,55],[25,21],[29,-7],[9,-27]],[[6597,9254],[-16,-5],[-91,8],[-7,25],[-51,16],[-4,31],[29,12],[-1,32],[55,49],[-26,7],[67,50],[-8,26],[62,31],[92,37],[92,11],[48,21],[54,7],[19,-22],[-18,-18],[-99,-29],[-85,-27],[-86,-55],[-41,-56],[-44,-56],[6,-48],[53,-47]],[[2369,9621],[31,-18],[55,0],[24,-19],[-7,-21],[32,-13],[18,-14],[37,-3],[41,-5],[44,13],[57,5],[45,-4],[29,-22],[7,-24],[-18,-15],[-41,-12],[-36,7],[-79,-9],[-57,-1],[-45,7],[-74,18],[-10,32],[-3,29],[-28,25],[-57,7],[-33,18],[11,23],[57,-4]],[[1772,9653],[-4,-44],[-22,-20],[-26,-3],[-51,-25],[-45,-8],[-37,12],[47,43],[57,37],[42,0],[39,8]],[[8162,9520],[-31,-17],[-73,-32],[-20,-18],[34,-8],[41,-14],[25,11],[14,-37],[12,15],[45,9],[89,-10],[7,-27],[116,-8],[1,44],[59,-10],[45,0],[45,-30],[12,-37],[-16,-24],[35,-46],[44,-23],[26,61],[45,-26],[47,15],[54,-18],[20,17],[46,-9],[-20,54],[37,25],[250,-38],[24,-34],[73,-44],[112,11],[55,-9],[23,-24],[-3,-42],[34,-17],[37,12],[50,2],[52,-12],[53,7],[48,-51],[34,18],[-22,37],[12,25],[89,-16],[58,4],[80,-28],[39,-25],[0,-229],[-1,-1],[-35,-25],[-36,4],[25,-30],[16,-48],[13,-15],[3,-24],[-7,-15],[-52,12],[-77,-43],[-25,-7],[-43,-40],[-40,-36],[-10,-26],[-40,40],[-72,-45],[-13,21],[-27,-25],[-37,8],[-9,-37],[-33,-56],[1,-23],[32,-13],[-4,-84],[-26,-2],[-12,-49],[12,-24],[-49,-30],[-9,-65],[-42,-15],[-8,-58],[-40,-54],[-10,40],[-12,84],[-16,128],[14,80],[23,34],[1,27],[44,13],[49,72],[48,60],[50,46],[22,81],[-33,-5],[-17,-47],[-71,-64],[-22,71],[-72,-19],[-70,-97],[23,-35],[-62,-15],[-43,-6],[2,41],[-43,9],[-34,-28],[-85,10],[-91,-17],[-90,-113],[-107,-136],[44,-7],[14,-36],[27,-13],[17,29],[31,-4],[40,-63],[1,-49],[-22,-58],[-2,-68],[-13,-92],[-42,-84],[-9,-39],[-38,-68],[-37,-66],[-18,-34],[-37,-34],[-18,-1],[-17,28],[-37,-42],[-5,-19]],[[8631,7613],[-10,4],[-12,-20],[-8,-20],[1,-41],[-15,-13],[-5,-10],[-10,-17],[-19,-9],[-12,-16],[-1,-25],[-3,-6],[11,-9],[16,-26]],[[8564,7405],[24,-68],[7,-37],[0,-66],[-10,-32],[-26,-11],[-22,-24],[-25,-5],[-3,32],[5,43],[-12,60],[21,9],[-19,50]],[[8504,7356],[-14,11],[-3,-11],[-8,-5],[-1,11],[-8,5],[-7,9],[7,26],[7,6],[-2,11],[7,31],[-2,9],[-16,7],[-14,15]],[[8450,7481],[-38,-17],[-21,-26],[-30,-16],[15,26],[-6,23],[22,39],[-14,30],[-25,-21],[-31,-40],[-17,-37],[-27,-3],[-15,-26],[15,-39],[23,-10],[1,-26],[22,-16],[31,41],[25,-23],[17,-1],[5,-30],[-39,-17],[-13,-31],[-27,-29],[-15,-40],[30,-31],[11,-57],[17,-53],[19,-44],[0,-43],[-18,-16],[7,-30],[16,-18],[-4,-47],[-7,-46],[-16,-5],[-20,-62],[-23,-76],[-25,-69],[-39,-53],[-38,-48],[-31,-7],[-17,-25],[-10,18],[-16,-28],[-39,-29],[-29,-9],[-9,-61],[-16,-3],[-7,42],[6,22],[-37,18],[-13,-9]],[[8000,6423],[-37,-49],[-23,-55],[-6,-40],[21,-60],[26,-76],[25,-35],[17,-46],[13,-107],[-4,-101],[-23,-38],[-32,-37],[-23,-48],[-34,-54],[-10,37],[7,39],[-20,33]],[[7897,5786],[-23,8],[-12,30],[-14,60]],[[7848,5884],[-25,26],[-23,-1],[4,45],[-25,0],[-2,-63],[-15,-84],[-9,-51],[2,-42],[18,-2],[11,-52],[5,-50],[16,-33],[17,-7],[14,-30]],[[7836,5540],[6,-5],[17,-35],[11,-38],[2,-39],[-3,-26],[3,-20],[2,-34],[10,-16],[10,-51],[0,-20],[-20,-3],[-26,42],[-33,46],[-3,29],[-16,39],[-4,47],[-10,32],[3,42],[-6,24]],[[7779,5554],[-11,22],[-5,29],[-15,32],[-13,28],[-5,-34],[-5,32],[3,36],[8,55]],[[7736,5754],[-2,43],[8,44],[-9,34],[2,63],[-11,29],[-9,69],[-5,73],[-12,48],[-19,-29],[-31,-41],[-16,5],[-17,13],[10,72],[-6,54],[-22,66],[3,21],[-16,7],[-19,47]],[[7565,6372],[-8,30],[-2,30],[-5,27],[-12,34],[-25,2],[2,-24],[-9,-32],[-11,12],[-5,-10],[-7,6],[-11,5]],[[7472,6452],[-4,-21],[-19,1],[-34,-12],[1,-44],[-14,-34],[-40,-38],[-32,-68],[-20,-36],[-28,-38],[0,-27],[-14,-14],[-25,-20],[-13,-4],[-8,-43],[5,-75],[2,-48],[-12,-55],[0,-98],[-14,-2],[-13,-44],[8,-19],[-25,-17],[-9,-39],[-11,-16],[-27,53],[-12,81],[-11,58],[-10,27],[-15,56],[-7,72],[-4,36],[-26,79],[-11,111],[-8,74],[0,70],[-6,54],[-40,-35],[-20,7],[-36,70],[13,21],[-8,22],[-32,49]],[[6893,6546],[-21,15],[-8,41],[-21,44],[-52,-11],[-45,-1],[-39,-8]],[[6707,6626],[-52,17],[-30,14],[-32,7],[-12,71],[-13,10],[-21,-10],[-28,-28],[-34,19],[-28,44],[-27,17],[-19,54],[-20,77],[-15,-9],[-18,19],[-10,-23]],[[6348,6905],[-17,3]],[[6331,6908],[6,-25],[-2,-13],[9,-44]],[[6344,6826],[11,-50],[13,-13],[5,-20],[19,-24],[2,-24],[-3,-19],[3,-19],[8,-17],[4,-18],[4,-15]],[[6410,6607],[-2,42],[8,31],[7,6],[9,-18],[0,-34],[-6,-34]],[[6426,6600],[6,-22]],[[6432,6578],[5,3],[1,-16],[21,9],[23,-1],[17,-2],[19,39],[21,37],[17,35]],[[6556,6682],[8,20],[4,-5],[-3,-24],[-3,-10]],[[6562,6663],[3,-46]],[[6565,6617],[13,-39],[15,-21],[21,-8],[16,-10],[13,-33],[7,-19],[10,-7],[0,-13],[-10,-35],[-4,-16],[-12,-18],[-10,-40],[-13,3],[-6,-13],[-4,-30],[3,-38],[-3,-7],[-12,0],[-18,-21],[-2,-29],[-7,-12],[-17,1],[-11,-15],[0,-23],[-13,-16],[-16,5],[-18,-19],[-13,-3]],[[6474,6141],[-20,-16],[-5,-25],[-1,-20],[-28,-24],[-44,-27],[-25,-41],[-12,-3],[-8,4],[-17,-24],[-17,-11],[-24,-3],[-7,-4],[-6,-15],[-7,-4],[-4,-15],[-14,2],[-9,-8],[-19,3],[-7,33],[0,32],[-4,17],[-6,42],[-8,24],[6,3],[-3,26],[3,11],[-1,25]],[[6187,6123],[-3,25],[-9,17],[-2,23],[-14,21],[-15,48],[-8,47],[-19,40],[-13,9],[-18,55],[-3,40],[1,34],[-16,64],[-13,22],[-15,12],[-9,33],[1,13],[-7,30],[-8,13],[-11,43],[-17,46],[-14,40],[-14,0],[4,31],[1,20],[4,23]],[[5970,6872],[-1,9]],[[5969,6881],[-8,-23],[-6,-44],[-7,-30],[-7,-10],[-9,19],[-13,25],[-19,83],[-3,-5],[11,-61],[17,-58],[21,-90],[11,-31],[8,-33],[25,-63],[-5,-10],[1,-38],[32,-51],[5,-12]],[[6023,6449],[9,-57],[-6,-10],[4,-59],[10,-69],[11,-14],[15,-22]],[[6066,6218],[16,-66],[8,-53],[15,-28],[38,-55],[15,-32],[15,-34],[9,-19],[14,-18]],[[6196,5913],[6,-18],[-1,-23],[-16,-14],[12,-16]],[[6197,5842],[9,-11],[6,-23],[12,-25],[14,0],[26,15],[31,7],[24,18],[14,3],[10,11],[16,2]],[[6359,5839],[8,1],[13,9],[15,6],[13,19],[11,0],[0,-16],[-2,-33],[0,-30],[-6,-21],[-8,-62],[-13,-65],[-17,-73],[-24,-85],[-24,-64],[-33,-79],[-27,-46],[-42,-57],[-26,-44],[-30,-70],[-7,-30],[-6,-14]],[[6154,5085],[-19,-23],[-7,-24],[-11,-4],[-4,-41],[-9,-23],[-5,-38],[-11,-19]],[[6088,4913],[-13,-71],[2,-33],[17,-21],[1,-15],[-7,-35],[1,-17],[-2,-28],[10,-36],[12,-57],[10,-12]],[[6119,4588],[4,-26],[-1,-57],[4,-51],[1,-90],[5,-28],[-9,-41],[-11,-40],[-17,-36],[-26,-22],[-31,-28],[-31,-62],[-11,-10],[-19,-41],[-12,-13],[-2,-41],[13,-44],[5,-34],[1,-17],[5,3],[-1,-57],[-5,-26],[7,-10],[-4,-24],[-12,-21],[-23,-19],[-33,-31],[-12,-21],[2,-25],[7,-4],[-2,-30]],[[5911,3642],[-7,-42],[-3,-48],[-8,-26],[-19,-29],[-5,-8],[-12,-29],[-7,-30],[-16,-41],[-32,-60],[-19,-34],[-21,-26],[-29,-23],[-14,-3],[-4,-16],[-17,9],[-14,-11],[-30,11],[-17,-7],[-11,3],[-29,-23],[-23,-9],[-18,-22],[-12,-1],[-12,21],[-9,1],[-12,25],[-2,-8],[-3,16],[0,34],[-9,38],[9,11],[-1,44],[-18,54],[-14,48],[0,1],[-20,74]],[[5453,3536],[-21,44],[-11,42],[-6,56],[-7,42],[-9,88],[0,69],[-4,32],[-11,23],[-14,48],[-15,69],[-6,36],[-22,56],[-2,45]],[[5325,4186],[-3,36],[4,51],[10,52],[1,25],[9,52],[7,23],[16,38],[9,26],[3,42],[-2,33],[-8,21],[-8,35],[-6,34],[1,12],[9,23],[-9,56],[-5,38],[-14,37],[2,11]],[[5341,4831],[-4,18]],[[5337,4849],[-7,43]],[[5330,4892],[-23,61]],[[5307,4953],[-28,58],[-19,47],[-17,60],[1,19],[6,19],[7,41],[6,43]],[[5263,5240],[-6,9],[10,64]],[[5267,5313],[4,46],[-11,38],[-12,10],[-6,26],[-7,8],[0,16]],[[5235,5457],[-29,-21],[-10,3],[-11,-13],[-22,1],[-15,36],[-9,42],[-20,38],[-21,-1],[-24,0]],[[5074,5542],[-23,-6]],[[5051,5536],[-23,-13]],[[5028,5523],[-43,-33],[-16,-20],[-25,-17],[-24,17]],[[4920,5470],[-13,-1],[-19,11],[-18,0],[-33,-10],[-19,-17],[-28,-21],[-5,1]],[[4785,5433],[-7,0],[-29,27],[-25,44],[-24,32],[-19,37]],[[4681,5573],[-7,4],[-20,23],[-15,31],[-5,21],[-3,43]],[[4631,5695],[-12,34],[-11,22],[-7,8],[-7,11],[-3,26],[-4,12],[-8,10]],[[4579,5818],[-15,24],[-12,4],[-6,16],[0,9],[-8,12],[-2,12]],[[4536,5895],[-5,44]],[[4531,5939],[4,26]],[[4535,5965],[-12,45],[-14,20],[13,11],[13,40],[7,30]],[[4542,6111],[-3,31],[8,28],[4,55],[-4,57],[-3,28],[3,29],[-7,27],[-15,25]],[[4525,6391],[1,25]],[[4526,6416],[2,26],[10,16],[9,30],[-1,19],[9,41],[16,37],[9,9],[7,34],[1,30],[10,36],[18,21],[18,59],[15,22],[25,7],[22,39],[14,16],[23,48],[-7,71],[11,50],[4,30],[18,39],[27,26],[21,24],[19,60],[8,35],[21,0],[16,-25],[27,4],[29,-12],[12,-1]],[[4939,7207],[26,32],[30,10],[18,23],[27,18],[47,10],[46,5],[14,-9],[26,23],[30,0],[11,-13],[19,3]],[[5233,7309],[30,24],[20,-7],[-1,-29],[23,21],[2,-11],[-14,-28],[0,-27],[10,-14],[-4,-50],[-18,-29],[5,-32],[15,-1],[7,-27],[10,-9]],[[5318,7090],[33,-20],[11,5],[24,-9],[36,-26],[13,-51],[25,-11],[40,-25],[29,-28],[14,15],[13,26],[-6,44],[8,28],[20,27],[19,8],[38,-12],[9,-25],[11,-1],[9,-9],[27,-7],[7,-19]],[[5698,7000],[37,1],[27,-15],[27,-17],[13,-9],[21,18],[12,16],[24,5],[20,-7],[8,-29],[6,19],[22,-14],[22,-3],[14,15]],[[5951,6980],[8,19],[-2,3],[7,27],[6,43],[4,15],[1,0]],[[5975,7087],[10,47],[13,41],[1,2]],[[5999,7177],[-3,44],[7,24]],[[6003,7245],[-10,26],[10,21],[-17,-4],[-23,13],[-19,-33],[-42,-7],[-23,31],[-29,2],[-7,-24],[-19,-7],[-27,31],[-30,-1],[-17,57],[-20,32],[14,45],[-18,27],[31,55],[42,3],[12,44],[53,-8],[33,37],[33,17],[46,1],[48,-41],[40,-22],[32,9],[24,-5],[33,30]],[[6153,7574],[4,24],[-7,40],[-16,21],[-15,6],[-10,18]],[[6109,7683],[-36,49],[-31,21],[-24,34],[20,9],[23,49],[-16,22],[41,24],[0,13],[-25,-10]],[[6061,7894],[-23,-4],[-18,-19],[-26,-3],[-24,-21],[2,-36],[13,-14],[29,3],[-6,-20],[-30,-10],[-38,-34],[-15,12],[6,27],[-31,17],[5,11],[27,19],[-8,13],[-43,15],[-2,21],[-26,-7],[-10,-31],[-22,-43]],[[5821,7790],[1,-15],[-14,-12],[-8,5],[-8,-69]],[[5792,7699],[-14,-24],[-10,-41],[9,-33]],[[5777,7601],[3,-22],[24,-19],[-5,-14],[-33,-3],[-12,-18],[-23,-31],[-9,27],[1,12]],[[5723,7533],[-17,1],[-15,6],[-33,-15],[19,-33],[-14,-9],[-16,0],[-14,30],[-6,-13],[7,-34],[14,-27],[-11,-13],[16,-27],[13,-16],[1,-33],[-26,16],[8,-30],[-17,-6],[10,-51],[-18,0],[-23,25],[-11,46],[-4,38],[-11,26],[-14,33],[-2,17]],[[5559,7464],[-5,4],[-1,12],[-15,20],[-2,27],[2,39],[4,18],[-5,9]],[[5537,7593],[-6,5],[-8,19],[-12,11]],[[5511,7628],[-26,21],[-16,21],[-25,17],[-24,43],[6,4],[-13,24],[0,20],[-18,9],[-8,-25],[-9,19],[1,20],[1,1]],[[5380,7802],[6,5]],[[5386,7807],[-22,9],[-23,-21],[2,-28],[-3,-17],[9,-29],[26,-29],[14,-48],[31,-46],[21,0],[7,-13],[-8,-11],[25,-21],[21,-17],[23,-30],[3,-11],[-5,-21],[-15,27],[-24,10],[-12,-37],[20,-22],[-3,-30],[-12,-3],[-15,-50],[-11,-4],[0,17],[5,31],[6,13],[-10,33],[-9,29],[-11,7],[-9,25],[-17,11],[-12,23],[-21,3],[-22,26],[-25,38],[-19,33],[-9,57],[-14,7],[-22,19],[-13,-8],[-16,-27],[-11,-4]],[[5206,7698],[-26,-33],[-54,16],[-41,-19],[-3,-34]],[[5082,7628],[1,-34],[-26,-38],[-35,-12],[-3,-20],[-17,-32],[-11,-46],[11,-33],[-16,-26],[-6,-37],[-21,-12],[-20,-44],[-35,-1],[-26,1],[-18,-20],[-10,-22],[-14,5],[-10,19],[-8,33],[-26,9]],[[4792,7318],[-11,-15],[-15,8],[-14,-6],[4,45],[-3,35],[-12,6],[-7,22],[3,37],[11,21],[2,23],[5,35],[0,24],[-6,21],[-1,20]],[[4748,7594],[1,41],[-11,25],[39,41],[34,-10],[38,0],[29,-10],[23,3],[45,-2]],[[4946,7682],[15,35],[5,115],[-29,60],[-20,29],[-43,22],[-3,42],[36,13],[47,-15],[-9,65],[27,-24],[64,44],[9,48],[24,11]],[[5069,8127],[22,12]],[[5091,8139],[14,15],[25,85],[38,24],[23,-1]],[[5191,8262],[5,12],[23,3],[6,-13],[18,29],[-6,21],[-1,33]],[[5236,8347],[-11,32],[-1,59],[4,15],[8,18],[25,3],[10,16],[22,16],[-1,-29],[-8,-19],[3,-16],[15,-9],[-7,-22],[-8,7],[-20,-42],[8,-28]],[[5275,8348],[0,-22],[28,-14],[0,-20],[28,11],[16,16],[31,-23],[13,-19]],[[5391,8277],[19,17],[43,27],[35,19],[28,-9],[2,-14],[27,-1]],[[5545,8316],[6,25],[39,19]],[[5590,8360],[-6,48]],[[5584,8408],[1,44],[13,36],[27,20],[22,-43],[22,1],[5,44]],[[5674,8510],[4,34],[-11,-7],[-17,20],[-3,33],[35,16],[35,9],[31,-10],[28,2]],[[5776,8607],[32,32],[-29,27]],[[5779,8666],[-51,-5],[-49,-21],[-45,-12],[-16,32],[-27,18],[6,57],[-13,52],[13,34],[25,36],[64,62],[18,12],[-2,25],[-39,27]],[[5663,8983],[-48,-16],[-27,-41],[5,-35],[-45,-46],[-53,-50],[-21,-81],[20,-40],[27,-32],[-26,-65],[-29,-14],[-10,-96],[-16,-54],[-34,5],[-15,-45],[-33,-3],[-8,54],[-24,66],[-21,81]],[[5305,8571],[-18,35],[-55,-66],[-37,-14],[-39,30],[-10,62],[-8,132],[25,37],[74,49],[54,59],[51,81],[67,111],[47,43],[76,72],[61,25],[45,-3],[43,48],[50,-2],[50,11],[87,-42],[-36,-16],[31,-36]],[[5863,9187],[28,20],[46,-34],[76,-14],[105,-65],[21,-28],[2,-38],[-31,-30],[-45,-16],[-124,44],[-20,-7],[45,-42],[4,-86],[35,-17],[22,-15],[4,28]],[[6031,8887],[-18,25],[19,21]],[[6032,8933],[67,-36],[23,14],[-19,42],[65,57],[26,-3],[26,-21],[16,40],[-23,34],[13,35],[-20,35],[78,-18],[15,-32],[-35,-7],[0,-32],[22,-20],[43,12],[7,37],[58,28],[97,49],[21,-3],[-27,-35],[34,-6],[20,20],[52,1],[41,24],[32,-34],[31,38],[-29,33],[15,19],[82,-17],[38,-18],[101,-66],[18,30]],[[6920,9133],[-28,30],[-1,13]],[[6891,9176],[-33,5],[9,28],[-15,45],[-1,18],[52,52],[18,53],[21,11],[73,-15],[6,-32],[-26,-47],[17,-18],[9,-41],[-7,-79],[31,-35],[-12,-38],[-54,-82],[32,-9],[11,21],[30,15],[8,28],[24,28],[-17,33],[13,38],[-30,4],[-7,32],[22,58],[-36,47],[50,39],[-6,41],[14,1],[14,-32],[-11,-55],[30,-11],[-13,42],[47,22],[57,3],[52,-32],[-25,48],[-3,61],[48,11],[67,-2],[60,7],[-22,31],[32,37],[32,2],[54,29],[73,7],[10,16],[73,5],[22,-13],[63,31],[51,-1],[7,25],[27,24],[65,24],[48,-19],[-38,-14],[63,-9],[8,-28],[25,14],[81,-1],[63,-28]],[[8147,9571],[22,-21],[-7,-30]],[[6357,7389],[9,-43],[26,-12],[19,-29],[40,-10],[43,16],[3,13]],[[6497,7324],[-5,41],[4,60],[-22,19],[7,40],[-18,3],[6,49],[26,-14],[24,18],[-20,35],[-8,33],[-22,-15],[-3,-42],[-9,37]],[[6457,7588],[-1,14],[7,24],[-6,20],[-32,20],[-12,51],[-16,15],[-1,19],[27,-6],[1,42],[24,10],[24,-9],[5,56],[-5,36],[-28,-3],[-23,14],[-32,-25],[-26,-12]],[[6363,7854],[-13,-34],[-27,-10],[-27,-59],[25,-55],[-3,-39],[30,-68]],[[6348,7589],[15,-30],[14,-41],[13,-2],[9,-16],[-23,-5],[-5,-44],[-5,-20],[-10,-14],[1,-28]],[[2393,9646],[-13,-2],[-52,4],[-8,16],[56,-1],[20,-11],[-3,-6]],[[1939,9656],[-52,-17],[-41,19],[22,18],[41,6],[39,-9],[-9,-17]],[[5686,9665],[-62,-24],[-49,14],[19,15],[-17,18],[58,12],[11,-22],[40,-13]],[[1953,9708],[-34,-11],[-46,0],[1,8],[28,17],[15,-2],[36,-12]],[[2337,9677],[-41,-12],[-22,13],[-12,22],[-3,24],[36,-3],[17,-3],[33,-20],[-8,-21]],[[2220,9692],[11,-24],[-46,7],[-45,18],[-62,2],[27,17],[-34,14],[-2,22],[54,-7],[76,-21],[21,-28]],[[7917,9691],[-156,-22],[51,75],[22,7],[21,-4],[71,-32],[-9,-24]],[[5506,9771],[91,-43],[-70,-22],[-15,-43],[-24,-10],[-14,-48],[-33,-2],[-60,35],[25,20],[-41,17],[-54,48],[-22,46],[76,20],[15,-20],[40,1],[10,20],[41,2],[35,-21]],[[5706,9812],[54,-20],[-41,-31],[-80,-7],[-82,10],[-5,16],[-40,1],[-31,26],[86,16],[40,-14],[29,17],[70,-14]],[[6419,9820],[-37,-7],[-25,-5],[-4,-9],[-32,-10],[-30,14],[15,18],[-61,2],[54,10],[42,1],[6,-16],[16,14],[26,10],[41,-13],[-11,-9]],[[7775,9724],[-61,-7],[-77,17],[-46,22],[-22,41],[-37,11],[72,40],[60,13],[54,-29],[64,-56],[-7,-52]],[[2582,9769],[34,-19],[-39,-17],[-51,-43],[-49,-4],[-58,7],[-29,24],[0,21],[22,15],[-51,-1],[-31,20],[-17,26],[19,25],[19,18],[29,4],[-12,13],[64,3],[36,-31],[47,-12],[45,-11],[22,-38]],[[3096,9967],[75,-4],[59,-7],[51,-16],[-1,-15],[-68,-25],[-67,-12],[-25,-13],[60,0],[-65,-35],[-46,-16],[-47,-47],[-57,-9],[-18,-12],[-84,-6],[38,-8],[-19,-10],[23,-28],[-26,-20],[-43,-16],[-14,-23],[-38,-17],[4,-13],[47,2],[1,-14],[-75,-34],[-72,15],[-82,-9],[-41,7],[-53,3],[-3,28],[51,13],[-13,42],[17,4],[74,-25],[-38,37],[-45,11],[22,22],[50,14],[7,20],[-39,22],[-12,30],[76,-2],[22,-7],[44,21],[-63,7],[-97,-4],[-49,20],[-23,23],[-33,17],[-6,20],[41,11],[33,2],[54,9],[41,21],[35,-3],[30,-16],[21,31],[36,10],[50,6],[85,2],[15,-6],[80,10],[60,-4],[60,-4]],[[4246,9991],[174,-45],[-51,-23],[-107,-2],[-149,-6],[14,-10],[98,6],[84,-19],[54,17],[23,-21],[-31,-33],[71,21],[135,23],[83,-11],[16,-25],[-113,-41],[-16,-13],[-89,-10],[65,-3],[-33,-42],[-22,-37],[1,-64],[33,-38],[-43,-2],[-46,-19],[51,-30],[7,-49],[-30,-5],[36,-50],[-62,-4],[32,-23],[-9,-21],[-39,-9],[-39,0],[35,-39],[1,-25],[-55,23],[-15,-15],[38,-14],[36,-36],[11,-46],[-50,-11],[-21,22],[-34,33],[9,-39],[-32,-30],[73,-3],[38,-3],[-74,-50],[-76,-45],[-81,-20],[-31,0],[-28,-23],[-39,-60],[-60,-41],[-19,-2],[-37,-14],[-40,-14],[-24,-35],[0,-41],[-14,-38],[-45,-46],[11,-45],[-13,-47],[-14,-56],[-39,-4],[-41,47],[-56,0],[-26,32],[-19,56],[-48,72],[-14,37],[-4,52],[-38,53],[10,43],[-19,20],[27,67],[42,22],[11,24],[6,45],[-32,-21],[-15,-8],[-25,-8],[-34,18],[-2,39],[11,31],[26,1],[57,-15],[-48,36],[-25,20],[-28,-8],[-23,14],[31,54],[-17,21],[-22,40],[-33,61],[-36,22],[1,24],[-75,34],[-59,4],[-74,-2],[-68,-4],[-32,18],[-48,36],[73,18],[56,4],[-119,14],[-63,24],[4,22],[105,28],[102,28],[11,21],[-75,20],[24,23],[96,41],[40,6],[-11,26],[66,15],[85,9],[85,0],[31,-18],[73,32],[67,-21],[39,-5],[57,-19],[-66,31],[4,25],[93,34],[98,-2],[35,21],[98,6],[222,-8]],[[6847,7333],[15,0],[21,-12]],[[6883,7321],[8,-7],[21,18],[9,-11],[9,27],[16,-2],[5,9],[3,23],[12,20],[15,-13],[-3,-18],[8,-2],[-3,-49],[11,-19],[10,13],[12,5],[18,26],[19,-4],[29,0]],[[7082,7337],[5,-17]],[[7087,7320],[-17,-6],[-14,-11],[-32,-7],[-29,-12],[-17,-25],[7,-24],[3,-29],[-14,-24],[1,-22],[-7,-21],[-27,2],[11,-38],[-17,-15],[-12,-34],[1,-35],[-11,-16],[-10,5],[-21,-7],[-3,-17],[-21,1],[-15,-33],[-1,-49],[-36,-24],[-20,5],[-5,-13],[-17,8],[-28,-9],[-46,30]],[[6690,6900],[25,52],[-2,37],[-21,10],[-3,36],[-9,46],[12,32],[-12,8],[8,42],[11,72]],[[6699,7235],[28,-22],[21,8],[6,26],[22,8],[16,18],[5,46],[24,11],[4,21],[13,-16],[9,-2]],[[5663,4553],[3,-18],[-3,-28],[5,-27],[-4,-22],[2,-19],[-58,0],[-1,-183],[19,-47],[18,-36]],[[5644,4173],[-51,-24],[-67,9],[-20,27],[-112,-2],[-5,-4],[-16,26],[-18,1],[-17,-9],[-13,-11]],[[5341,4831],[12,7],[8,-1],[10,7],[81,0],[7,-43],[8,-35],[7,-19],[10,-30],[19,5],[9,8],[15,-8],[4,14],[7,34],[18,2],[1,10],[14,0],[-2,-20],[33,0],[1,-36],[6,-22],[-4,-35],[2,-35],[9,-22],[-2,-68],[7,5],[12,-1],[18,8],[12,-3]],[[5330,4892],[11,25],[9,9],[10,-19]],[[5360,4907],[-10,-12],[-5,-15],[-1,-25],[-7,-6]],[[5583,7534],[-1,-15],[-9,-9],[-1,-18],[-13,-28]],[[5537,7593],[-2,19],[12,28],[2,-11],[7,5]],[[5556,7634],[6,-15],[7,-6],[2,-21]],[[5571,7592],[-4,-19],[4,-25],[12,-14]],[[6556,6682],[6,-19]],[[6565,6617],[-14,0],[-2,-38],[5,-8],[-13,-11],[0,-23],[-8,-24],[-1,-23]],[[6532,6490],[-5,-13],[-84,29],[-10,59],[-1,13]],[[3139,2021],[-17,1],[-29,0],[0,129]],[[3258,3901],[51,-94],[23,-9],[34,-42],[28,-23],[4,-25],[-27,-88],[28,-16],[31,-8],[22,9],[25,44],[5,51]],[[3482,3700],[14,11],[13,-33],[0,-46],[-23,-32],[-19,-24],[-31,-55],[-38,-79]],[[3398,3442],[-6,-46],[-8,-59],[0,-58],[-6,-12],[-2,-38]],[[3094,2170],[-25,9],[-67,8],[-12,34],[1,43],[-19,-4],[-10,21],[-2,61],[21,25],[9,37],[-3,29],[14,49],[11,76],[-3,34],[12,11],[-3,22],[-13,11],[9,25],[-12,21],[-7,67],[11,12],[-4,70],[6,59],[7,51],[17,21],[-8,56],[0,53],[21,38],[-1,48],[16,56],[0,53],[-7,10],[-13,100],[17,59],[-3,56],[10,52],[18,54],[20,36],[-8,23],[6,18],[-1,96],[30,29],[9,59],[-3,15]],[[3135,3873],[23,52],[37,-14],[16,-42],[11,47],[31,-3],[5,-12]],[[6291,7414],[-10,-1]],[[6281,7413],[-12,33],[0,9],[-12,0],[-8,15],[-6,-1]],[[6243,7469],[-11,17],[-20,14],[2,28],[-4,20]],[[6210,7548],[38,9]],[[6248,7557],[6,-15],[10,-10],[-5,-14],[15,-20],[-8,-18],[12,-16],[12,-10],[1,-40]],[[3371,1488],[-12,-13],[-21,9],[-22,-5],[-20,-14],[-20,-14],[-13,-17],[-4,-23],[2,-21],[13,-19],[-19,-14],[-27,-5],[-15,-19],[-16,-18],[-17,-25],[-5,-21],[10,-24],[15,-18],[22,-13],[22,-18],[11,-23],[6,-21],[8,-23],[13,-19],[8,-22],[4,-53],[8,-21],[3,-23],[8,-22],[-3,-31],[-16,-23],[-16,-20],[-37,-7],[-13,-21],[-16,-19],[-42,-21],[-37,-9],[-35,-13],[-38,-12],[-22,-24],[-45,-2],[-49,2],[-44,-4],[-46,0],[8,-23],[43,-10],[31,-16],[17,-20],[-31,-18],[-48,5],[-39,-14],[-2,-24],[-1,-23],[33,-19],[6,-21],[35,-22],[59,-9],[50,-15],[39,-18],[51,-19],[69,-9],[68,-15],[47,-17],[52,-19],[27,-28],[14,-21],[34,20],[45,17],[49,18],[57,15],[50,16],[69,1],[68,-8],[56,-14],[18,25],[39,17],[70,1],[55,13],[52,12],[58,8],[61,10],[43,15],[-20,20],[-12,20],[0,22],[-53,-2],[-57,-9],[-55,0],[-8,21],[4,43],[13,12],[40,14],[46,13],[34,17],[34,17],[25,23],[38,10],[37,8],[19,4],[43,3],[41,8],[34,11],[34,13],[31,14],[38,18],[25,19],[26,17],[8,23],[-29,13],[9,24],[19,18],[29,11],[30,14],[29,18],[21,22],[14,27],[20,16],[33,-3],[14,-19],[33,-3],[1,22],[14,22],[30,-5],[7,-22],[33,-3],[36,10],[35,7],[32,-3],[12,-24],[30,19],[28,10],[32,8],[31,8],[28,14],[31,9],[24,12],[17,20],[21,-14],[29,8],[20,-28],[15,-20],[32,11],[13,23],[28,16],[36,-4],[11,-21],[23,21],[30,7],[33,2],[29,-1],[31,-6],[30,-4],[13,-19],[18,-17],[30,10],[33,2],[32,0],[31,2],[27,7],[30,7],[24,16],[26,10],[29,6],[21,16],[15,31],[16,19],[29,-9],[10,-20],[24,-13],[29,4],[20,-20],[20,-15],[29,14],[10,24],[25,11],[28,19],[28,8],[32,11],[22,12],[23,14],[22,12],[26,-6],[25,20],[18,16],[26,-2],[23,14],[5,20],[24,16],[22,11],[28,9],[26,5],[24,-3],[26,-6],[23,-16],[2,-25],[25,-19],[17,-16],[33,-6],[18,-16],[23,-16],[27,-3],[22,11],[24,24],[26,-13],[27,-7],[26,-6],[28,-5],[27,0],[23,-60],[-1,-14],[-3,-26],[-27,-15],[-22,-21],[4,-23],[31,1],[-3,-22],[-15,-22],[-13,-24],[22,-18],[32,-5],[32,10],[15,22],[9,22],[15,18],[18,17],[7,20],[15,28],[17,6],[32,2],[27,7],[29,9],[13,23],[8,21],[19,22],[28,14],[23,11],[15,20],[16,10],[20,9],[28,-6],[25,6],[27,7],[31,-4],[20,16],[14,38],[10,-15],[13,-27],[24,-12],[26,-4],[27,6],[28,-4],[26,-1],[18,5],[23,-3],[21,-12],[25,8],[30,0],[26,7],[29,-7],[18,19],[14,19],[19,16],[35,43],[18,-8],[21,-16],[19,-20],[35,-35],[27,-1],[26,0],[30,6],[30,8],[23,16],[19,17],[31,2],[20,13],[22,-12],[14,-18],[20,-18],[30,2],[19,-14],[34,-15],[34,-6],[29,5],[22,18],[18,18],[25,5],[25,-8],[29,-6],[26,9],[25,0],[25,-6],[26,-5],[25,10],[29,9],[29,2],[31,0],[26,6],[25,4],[8,29],[1,23],[17,-15],[5,-26],[9,-24],[12,-19],[23,-10],[32,3],[36,1],[25,3],[36,0],[27,2],[36,-3],[31,-4],[20,-18],[-6,-22],[18,-17],[30,-13],[31,-15],[36,-10],[37,-9],[29,-9],[31,-1],[18,19],[25,-16],[21,-18],[24,-13],[34,-6],[32,-7],[14,-22],[31,-14],[22,-20],[31,-9],[32,1],[30,-3],[33,1],[33,-5],[31,-8],[29,-13],[29,-12],[19,-17],[-3,-22],[-15,-20],[-12,-26],[-10,-21],[-13,-23],[-36,-9],[-17,-21],[-36,-12],[-12,-23],[-19,-21],[-20,-18],[-12,-24],[-7,-21],[-3,-26],[1,-22],[16,-22],[6,-22],[13,-20],[51,-8],[11,-25],[-50,-9],[-42,-12],[-53,-2],[-23,-33],[-5,-27],[-12,-22],[-15,-21],[37,-19],[14,-24],[24,-21],[34,-20],[39,-18],[41,-18],[64,-18],[14,-28],[80,-12],[6,-5],[20,-17],[77,15],[64,-18],[48,-14],[-9998,-1],[25,34],[50,-18],[3,2],[29,18],[4,0],[3,-1],[41,-24],[35,24],[6,3],[82,11],[26,-14],[13,-7],[42,-19],[79,-15],[62,-18],[108,-13],[80,16],[118,-12],[66,-18],[74,17],[77,16],[6,27],[-109,2],[-90,14],[-23,23],[-75,12],[5,26],[10,24],[11,21],[-6,24],[-46,16],[-21,20],[-43,18],[67,-4],[64,10],[41,-20],[49,17],[46,22],[22,19],[-10,24],[-35,15],[-41,17],[-57,4],[-50,8],[-54,5],[-18,22],[-36,18],[-22,20],[-9,65],[14,-5],[25,-18],[46,5],[44,8],[23,-25],[44,6],[37,13],[35,15],[31,20],[42,5],[-1,22],[-10,21],[8,20],[36,10],[16,-19],[43,12],[32,14],[40,1],[37,6],[38,14],[30,12],[33,12],[22,-3],[19,-5],[42,8],[37,-10],[38,1],[36,8],[38,-5],[41,-6],[39,2],[40,-1],[41,-1],[38,2],[29,17],[33,9],[35,-12],[33,10],[30,20],[18,-18],[10,-20],[18,-19],[29,17],[33,-22],[37,-7],[33,-15],[39,3],[35,10],[42,-2],[37,-8],[39,-10],[14,25],[-18,19],[-13,20],[-36,5],[-16,21],[-6,22],[-10,42],[21,-7],[37,-4],[36,4],[32,-9],[29,-17],[12,-21],[37,-3],[36,8],[38,11],[35,7],[28,-14],[37,5],[24,44],[22,-26],[32,-10],[35,5],[23,-22],[36,-2],[34,-7],[33,-13],[22,22],[11,20],[28,-22],[38,5],[28,-12],[19,-19],[37,5],[29,13],[28,14],[34,8],[39,7],[35,8],[28,12],[16,18],[6,25],[-3,24],[-9,22],[-9,23],[-9,23],[-7,20],[-2,22],[3,23],[13,21],[11,24],[4,23],[-5,25],[-4,22],[14,26],[15,17],[18,21],[19,18],[23,17],[10,25],[16,16],[17,15],[27,3],[17,18],[20,11],[23,7],[20,15],[16,18],[21,7],[17,-15],[-11,-19],[-28,-17]],[[6914,2382],[18,-18],[26,-7],[1,-11],[-8,-26],[-43,-4],[0,30],[4,24],[2,12]],[[5449,7880],[-5,-10],[-25,-1],[-14,-13],[-23,4]],[[5382,7860],[-39,15],[-6,20],[-28,-10],[-3,-11],[-17,8]],[[5289,7882],[-14,2],[-13,10],[5,14],[-2,11]],[[5265,7919],[9,3],[14,-16],[4,15],[24,-2],[20,10],[14,-2],[8,-12],[3,10],[-4,38],[10,7],[10,26]],[[5377,7996],[20,-18],[16,23],[10,5],[21,-18],[13,3],[13,-11]],[[5470,7980],[-2,-7],[3,-20]],[[5471,7953],[-2,-23],[-16,-1],[5,-12],[-9,-37]],[[6281,7413],[-19,7],[-14,27],[-5,22]],[[6357,7389],[-7,-3],[-18,30],[10,28],[-8,17],[-11,-4],[-32,-43]],[[6248,7557],[7,10],[21,-17],[15,-3],[3,6],[-13,31],[7,8]],[[6288,7592],[8,-2],[19,-34],[12,-4],[5,14],[16,23]],[[5805,5018],[17,-4],[9,33],[14,-4]],[[5845,5043],[2,-23],[6,-13],[0,-18],[-7,-13],[-11,-30],[-10,-20],[-11,-3]],[[5814,4923],[-2,69],[-7,26]],[[5170,8107],[-3,-39]],[[5167,8068],[-7,-2],[-3,-32]],[[5157,8034],[-25,26],[-14,-4],[-19,27],[-13,23],[-13,1],[-4,20]],[[5091,8139],[20,-5],[26,12],[18,-25],[15,-14]],[[5024,5815],[10,7],[5,25],[14,5],[6,18]],[[5059,5870],[9,16],[10,1],[21,-34]],[[5099,5853],[-1,-19],[6,-34],[-5,-23],[3,-16],[-14,-35],[-8,-18],[-5,-36],[0,-37],[-1,-93]],[[5051,5536],[-7,39],[1,133],[-5,11],[-1,29],[-10,20],[-9,17],[4,30]],[[4849,5779],[-2,34],[8,24],[-1,19],[22,48],[4,40],[8,14],[13,-8],[12,12],[4,15],[21,25],[5,18],[26,24],[16,8],[7,-11],[17,1]],[[5009,6042],[-2,-28],[4,-27],[16,-37],[0,-28],[32,-13],[0,-39]],[[5024,5815],[-24,1]],[[5000,5816],[-13,5],[-9,-9],[-12,4],[-49,-3],[0,-32],[3,-44]],[[4920,5737],[-19,15],[-13,-2],[-9,-15],[-13,13],[-5,19],[-12,12]],[[7472,6452],[-4,47],[-10,44],[5,34],[-17,16],[6,21],[17,21],[-20,31],[10,39],[22,-25],[13,-3],[3,-40],[26,-8],[26,1],[16,-10],[-13,-49],[-12,-3],[-9,-33],[15,-29],[5,36],[7,1],[15,-92]],[[7573,6451],[-1,-41],[-9,9],[2,-47]],[[5777,7601],[-24,8],[-29,-19]],[[5724,7590],[0,-28],[-25,-6],[-20,20],[-22,-15],[-20,1]],[[5637,7562],[-2,38],[-14,19]],[[5621,7619],[4,8],[-3,7],[5,18],[10,18],[-13,25],[-3,21],[7,13]],[[5628,7729],[8,-24],[11,5],[21,-9],[41,-3],[14,14],[33,14],[20,-21],[16,-6]],[[5533,7688],[-5,-5],[-9,-13],[-4,-32]],[[5515,7638],[-25,22],[-11,24],[-10,12],[-13,22],[-6,18],[-14,27],[6,24],[10,-14],[6,12],[13,2],[24,-10],[19,1],[13,-13]],[[5527,7765],[10,0],[-7,-25],[13,-22],[-4,-27],[-6,-3]],[[5735,8384],[17,10],[30,22]],[[5782,8416],[29,-14],[4,-14],[14,6],[28,-13],[2,-27],[-6,-16],[18,-38],[11,-10],[-2,-10],[19,-11],[8,-15],[-11,-12],[-22,2],[-5,-6],[6,-19],[7,-37]],[[5882,8182],[-24,-3],[-9,-13],[-1,-29],[-11,6],[-25,-3],[-8,13],[-10,-10],[-11,9],[-21,1],[-31,14],[-29,4],[-21,-1],[-15,-16],[-14,-2]],[[5652,8152],[0,26],[-9,26],[17,12],[0,23],[-8,22],[-1,25]],[[5651,8286],[27,0],[30,22],[7,32],[22,19],[-2,25]],[[2529,6097],[-8,0],[2,65],[0,45]],[[2523,6207],[0,9],[3,3],[5,-7],[10,34],[5,1]],[[3135,3873],[-20,-8],[-11,79],[-15,65],[9,56],[-15,24],[-3,41],[-14,40]],[[3066,4170],[18,62],[-12,48],[6,20],[-5,21],[11,29],[0,49],[2,40],[6,20],[-24,92]],[[3068,4551],[20,-5],[15,2],[6,17],[24,23],[15,22],[36,10],[-3,-43],[4,-22],[-3,-39],[31,-52],[31,-9],[11,-22],[18,-11],[12,-17],[17,1],[17,-17],[1,-34],[5,-16],[1,-25],[-9,-1],[11,-67],[53,-3],[-4,-33],[3,-23],[15,-16],[7,-36],[-5,-45],[-8,-25],[3,-33],[-9,-12]],[[3383,4020],[0,18],[-26,29],[-26,1],[-48,-17],[-13,-50],[-1,-31],[-11,-69]],[[3482,3700],[5,33],[4,34],[0,32],[-10,10],[-10,-9],[-11,2],[-3,23],[-3,52],[-5,18],[-19,15],[-11,-11],[-29,11],[2,78],[-9,32]],[[3068,4551],[-16,-10],[-12,7],[1,87],[-22,-33],[-25,1],[-10,31],[-19,3],[6,25],[-15,35],[-12,52],[7,10],[0,25],[17,16],[-3,31],[7,20],[2,27],[32,39],[23,12],[4,8],[25,-3]],[[3058,4934],[12,158],[1,25],[-5,33],[-12,21],[0,42],[16,10],[6,-6],[0,22],[-16,6],[0,36],[54,-2],[9,20],[8,-18],[5,-34],[6,7]],[[3142,5254],[15,-30],[21,3],[6,18],[20,13],[12,10],[3,24],[20,17],[-2,12],[-23,5],[-4,36],[1,39],[-12,15],[5,5],[21,-8],[22,-14],[8,14],[20,9],[31,21],[10,22],[-4,16]],[[3312,5481],[15,3],[6,-13],[-4,-26],[10,-8],[6,-27],[-7,-20],[-5,-49],[7,-29],[2,-27],[17,-27],[14,-3],[3,11],[9,3],[12,10],[9,15],[16,-5],[7,2]],[[3429,5291],[15,-4],[2,11],[-4,12],[2,17],[12,-6],[13,6],[16,-12]],[[3485,5315],[12,-12],[8,16],[7,-3],[3,-16],[14,4],[10,22],[9,43],[16,52]],[[3517,3237],[-8,33],[12,27],[-16,40],[-22,31],[-28,37],[-11,-1],[-28,44],[-18,-6]],[[8206,5496],[-2,-29],[-1,-36],[-13,1],[-6,-19],[-13,30]],[[7466,6754],[18,43],[15,14],[20,-13],[15,-1],[12,-16]],[[7546,6781],[11,-18],[-2,-36],[-22,-1],[-24,4],[-17,-9],[-26,21],[0,12]],[[5816,3910],[-39,-43],[-25,-43],[-9,-38],[-8,-22],[-15,-4],[-5,-28],[-3,-18],[-18,-13],[-23,3],[-13,16],[-12,7],[-13,-13],[-7,-28],[-13,-17],[-14,-26],[-20,-6],[-6,20],[3,35],[-17,55],[-7,9]],[[5552,3756],[0,168],[27,2],[1,205],[20,2],[43,20],[11,-24],[18,23],[8,0],[16,13]],[[5696,4165],[5,-4]],[[5701,4161],[10,-46],[6,-11],[9,-33],[31,-63],[12,-6],[0,-21],[8,-36],[22,-9],[17,-26]],[[5634,5824],[3,-25],[16,-36],[0,-24],[-4,-24],[2,-17],[9,-17]],[[5660,5681],[21,-25]],[[5681,5656],[16,-23],[0,-19],[19,-30],[11,-25],[7,-35],[21,-22],[4,-19]],[[5759,5483],[-9,-6],[-18,2],[-21,6],[-10,-5],[-4,-14],[-9,-2],[-11,12],[-31,-29],[-13,6],[-3,-4],[-9,-35],[-20,11],[-21,6],[-17,21],[-23,20],[-15,-19],[-11,-29],[-2,-40]],[[5512,5384],[-18,3],[-19,10],[-17,-31],[-14,-53]],[[5444,5313],[-3,16],[-1,26],[-13,19],[-10,30],[-3,20],[-13,30],[2,18],[-2,24],[2,45],[6,10],[14,58]],[[5423,5609],[23,5],[5,14],[5,-1],[7,-13],[35,22],[12,23],[14,20],[-2,20],[7,6],[27,-4],[26,27],[20,62],[14,24],[18,10]],[[1300,8301],[13,-7],[27,4],[-9,-65],[25,-46],[-12,0],[-16,26],[-11,27],[-14,18],[-5,25],[2,18]],[[3134,7781],[-18,33],[0,78],[-12,17],[-19,-10],[-9,15],[-21,-43],[-9,-45],[-10,-26],[-11,-9],[-9,-3],[-3,-14],[-51,0],[-42,-1],[-13,-10],[-29,-42],[-4,-4],[-9,-23],[-25,0],[-27,0],[-13,-9],[4,-11],[3,-18],[-1,-6],[-36,-28],[-28,-10],[-33,-30],[-7,0],[-9,9],[-3,8],[0,6],[6,20],[14,32],[8,34],[-6,50],[-6,52],[-29,27],[4,10],[-4,8],[-8,0],[-6,9],[-1,13],[-5,-6],[-8,2],[2,6],[-7,5],[-2,16],[-22,18],[-22,19],[-28,22],[-26,21],[-25,-16],[-9,0],[-34,14],[-22,-7],[-27,18],[-29,9],[-19,4],[-9,9],[-5,32],[-9,0],[0,-22],[-58,0],[-95,0],[-94,0],[-83,0],[-84,0],[-82,0],[-84,0],[-28,0],[-82,0],[-79,0]],[[1373,8338],[16,27],[-1,37],[-47,36],[-29,66],[-17,41],[-25,26],[-19,24],[-15,30],[-28,-19],[-27,-32],[-24,38],[-20,25],[-27,16],[-27,2],[0,327],[0,214]],[[1440,9241],[19,-7],[47,-51]],[[2457,9224],[-25,-29],[52,-11]],[[1972,9143],[-71,-9],[-49,-6]],[[1501,9320],[12,25],[19,42]],[[1653,9318],[0,-26],[-73,-27]],[[5289,7882],[-2,-23],[-12,-10],[-21,7],[-6,-23],[-13,-2],[-5,9],[-16,-19],[-13,-3],[-12,12]],[[5189,7830],[-9,26],[-14,-9],[1,26],[20,32],[-1,15],[13,-6],[7,10]],[[5206,7924],[24,0],[6,12],[29,-17]],[[3139,2021],[-9,-23],[-24,-18]],[[3106,1980],[-13,2],[-17,4]],[[3076,1986],[-20,17],[-29,9],[-35,32],[-28,31],[-39,64],[23,-12],[39,-38],[37,-21],[14,27],[9,39],[26,24],[20,-7]],[[3044,4125],[15,15],[7,30]],[[8628,7623],[-18,34],[-11,-32],[-43,-25],[4,-30],[-24,2],[-13,18],[-19,-41],[-31,-31],[-23,-37]],[[8000,6423],[-28,15],[-13,23],[4,34],[-25,10],[-13,22],[-24,-31],[-27,-7],[-22,1],[-15,-14]],[[7837,6476],[-15,-9],[5,-66],[-15,2],[-3,13]],[[7809,6416],[-1,24],[-20,-17],[-12,11],[-21,22],[9,47],[-18,12],[-7,53],[-29,-10],[3,68],[27,48],[1,48],[-1,44],[-12,14],[-9,34],[-17,-5]],[[7702,6809],[-30,9],[10,24],[-13,36],[-20,-24],[-23,14],[-32,-37],[-26,-43],[-22,-7]],[[7466,6754],[-3,45],[-16,-12]],[[7447,6787],[-33,6],[-31,13],[-23,25],[-21,12],[-10,27],[-15,9],[-28,37],[-23,18],[-11,-14]],[[7252,6920],[-39,40],[-27,37],[-8,63],[20,-8],[1,30],[-11,29],[3,47],[-30,68]],[[7161,7226],[-46,23],[-8,44],[-20,27]],[[7082,7337],[-5,33],[1,22],[-16,13],[-10,-6],[-7,54]],[[7045,7453],[8,13],[-4,13],[27,27],[19,12],[30,-8],[10,37],[36,7],[10,22],[43,32],[4,13]],[[7228,7621],[-2,32],[19,15],[-25,100],[55,23],[14,13],[20,103],[55,-19],[16,26],[1,58],[23,6],[21,38]],[[7425,8016],[11,5]],[[7436,8021],[8,-41],[23,-30],[40,-22],[19,-46],[-11,-67],[10,-25],[33,-10],[37,-8],[34,-36],[17,-6],[13,-54],[16,-34],[31,2],[57,-13],[37,8],[27,-9],[41,-35],[34,0],[12,-18],[33,31],[45,20],[41,2],[33,21],[20,30],[19,20],[-4,19],[-9,22],[14,37],[16,-5],[28,-12],[28,31],[42,22],[21,38],[19,17],[41,7],[22,-6],[3,20],[-25,40],[-23,19],[-21,-21],[-28,9],[-15,-8],[-7,24],[19,57],[14,44]],[[8240,8055],[33,-22],[39,36],[0,26],[25,61],[16,18],[-1,32],[-15,14],[23,28],[34,11],[37,1],[42,-17],[24,-21],[17,-58],[11,-25],[9,-35],[11,-57],[48,-18],[33,-41],[11,-54],[42,0],[24,23],[46,16],[-14,-51],[-11,-21],[-10,-63],[-18,-57],[-34,11],[-24,-21],[8,-49],[-4,-68],[-15,-2],[1,-29]],[[4785,5433],[2,48],[3,7],[-1,23],[-12,24],[-9,4],[-8,15],[6,26],[-3,28],[2,17]],[[4765,5625],[4,0],[2,25],[-3,11],[3,8],[10,7],[-6,46],[-7,24],[2,19],[6,5]],[[4776,5770],[4,5],[7,-9],[22,0],[5,17],[5,-2],[8,7],[4,-25],[6,8],[12,8]],[[4920,5737],[8,-82],[-12,-48],[-7,-65],[12,-50],[-1,-22]],[[5312,5312],[-45,1]],[[5235,5457],[7,41],[13,55],[8,1],[17,33],[11,1],[15,-23],[19,19],[3,24],[6,23],[4,29],[15,24],[6,40],[6,13],[4,30],[7,37],[23,44],[2,19],[3,11],[-11,23]],[[5393,5901],[1,18],[8,3]],[[5402,5922],[11,-36],[2,-39],[-1,-38],[15,-52],[-16,0],[-8,-4],[-12,6],[-6,-27],[16,-34],[12,-10],[4,-23],[9,-40],[-5,-16]],[[5444,5313],[-2,-32],[-22,14],[-23,15],[-35,3]],[[5362,5313],[-3,3],[-17,-8],[-17,8],[-13,-4]],[[5821,5105],[-8,-16],[-1,-35],[-4,-4],[-3,-32]],[[5814,4923],[5,-53],[-3,-30],[6,-33],[16,-33],[15,-72]],[[5853,4702],[-11,6],[-37,-10],[-8,-7],[-8,-37],[6,-25],[-5,-68],[-3,-58],[8,-10],[19,-23],[8,11],[2,-62],[-21,0],[-12,32],[-10,24],[-21,8],[-7,31],[-16,-19],[-23,8],[-9,26],[-18,6],[-13,-2],[-1,18],[-10,2]],[[5360,4907],[7,-6],[10,22],[15,-1],[2,-16],[10,-10],[16,36],[17,28],[7,18],[-1,48],[12,56],[12,29],[19,28],[3,19],[1,21],[4,20],[-1,32],[3,51],[6,36],[8,31],[2,35]],[[5759,5483],[17,-47],[13,-7],[7,10],[13,-4],[15,12],[7,-25],[24,-38]],[[5855,5384],[-1,-67],[11,-8],[-9,-21],[-11,-15],[-10,-30],[-6,-27],[-2,-46],[-6,-22],[0,-43]],[[5307,4953],[21,32],[-10,38],[9,14],[19,7],[2,26],[15,-28],[25,-2],[8,27],[4,38],[-3,45],[-14,34],[13,67],[-7,11],[-21,-4],[-8,29],[2,26]],[[2836,5598],[3,28],[9,-4],[6,17],[-7,34],[4,8]],[[3018,5860],[-18,-10],[-7,-28],[-11,-17],[-8,-21],[-3,-41],[-8,-34],[14,-4],[4,-26],[6,-13],[2,-23],[-3,-22],[1,-12],[7,-4],[6,-20],[36,5],[16,-7],[20,-50],[11,6],[20,-3],[16,7],[10,-10],[-5,-31],[-7,-19],[-2,-42],[6,-38],[8,-17],[1,-13],[-14,-29],[10,-12],[7,-20],[9,-58]],[[3058,4934],[-14,31],[-8,1],[17,59],[-21,27],[-17,-5],[-10,10],[-15,-15],[-21,7],[-16,60],[-13,15],[-9,27],[-18,28],[-7,-6]],[[2906,5173],[-12,14],[-14,19],[-8,-9],[-23,8],[-7,25],[-5,-1],[-28,32]],[[2618,5820],[5,8],[18,-15],[6,7],[9,-5],[5,-12],[8,-3],[6,12]],[[2706,5733],[-10,-5],[0,-24],[5,-8],[-4,-7],[1,-10],[-2,-12],[-1,-11]],[[2714,6517],[24,-4],[22,-1],[26,-19],[11,-21],[26,6],[10,-13],[23,-36],[18,-26],[9,1],[16,-12],[-2,-16],[21,-2],[21,-24],[-4,-13],[-18,-8],[-19,-3],[-19,5],[-40,-6],[19,32],[-11,15],[-18,4],[-10,17],[-6,33],[-16,-3],[-26,16],[-8,12],[-37,9],[-9,11],[10,14],[-27,3],[-20,-30],[-12,0],[-4,-14],[-13,-7],[-12,6],[14,18],[7,20],[12,13],[14,11],[21,6],[7,6]],[[5943,7201],[-3,2],[-6,-5],[-4,2],[-1,-3],[-1,6],[-2,4],[-5,0],[-8,-5],[-5,3]],[[5377,7996],[-16,25],[-14,14],[-3,24],[-5,17],[20,13],[10,14],[20,11],[7,11],[8,-6],[12,6]],[[5416,8125],[13,-19],[21,-5],[-2,-16],[15,-11],[5,14],[19,-6],[2,-18],[21,-4],[13,-28]],[[5523,8032],[-9,0],[-4,-10],[-6,-3],[-2,-13],[-5,-3],[-1,-5],[-10,-6],[-12,1],[-4,-13]],[[5391,8277],[7,-29],[-8,-15],[10,-21],[7,-31],[-2,-19],[11,-37]],[[5206,7924],[4,41],[14,40],[-40,10],[-13,15]],[[5171,8030],[1,25],[-5,13]],[[5170,8107],[-5,61],[17,0],[7,21],[7,53],[-5,20]],[[5236,8347],[21,-8],[18,9]],[[6197,5842],[-10,-31]],[[6187,5811],[-6,10],[-7,-4],[-15,1],[-1,18],[-2,16],[10,27],[9,25]],[[6175,5904],[12,-5],[9,14]],[[3007,6221],[1,16],[-7,17],[6,10],[3,22],[-3,31]],[[5118,6285],[-31,-6],[-1,37],[-12,9],[-18,17],[-6,27],[-94,125],[-94,126]],[[4862,6620],[-104,139]],[[4758,6759],[0,12],[0,4]],[[4758,6775],[0,68],[45,42],[28,9],[22,15],[11,29],[32,23],[2,43],[16,5],[12,21],[37,10],[5,22],[-8,12],[-9,61],[-2,35],[-10,37]],[[5233,7309],[-6,-29],[5,-55],[-7,-47],[-17,-33],[2,-43],[23,-34],[0,-14],[18,-23],[11,-104]],[[5262,6927],[9,-51],[2,-26],[-5,-47],[2,-27],[-4,-31],[3,-36],[-11,-24],[16,-42],[1,-25],[10,-32],[13,10],[22,-26],[12,-36]],[[5332,6534],[-95,-110],[-80,-113],[-39,-26]],[[2906,5173],[3,-44],[-8,-37],[-31,-60],[-33,-23],[-17,-50],[-5,-39],[-16,-24],[-12,29],[-11,7],[-11,-5],[-1,21],[8,14],[-3,24]],[[6023,6449],[-110,0],[-108,0],[-112,0]],[[5693,6449],[0,212],[0,205],[-8,46],[7,36],[-4,24],[10,28]],[[5951,6980],[18,-99]],[[6011,6012],[-3,23],[12,85],[3,38],[8,18],[21,9],[14,33]],[[6175,5904],[-9,19],[-12,34],[-12,18],[-7,20],[-24,23],[-19,1],[-7,12],[-16,-14],[-17,26],[-9,-43],[-32,12]],[[4946,7682],[11,-22],[51,-26],[10,12],[32,-26],[32,8]],[[4792,7318],[-2,19],[10,22],[4,15],[-10,18],[8,37],[-11,35],[12,5],[1,27],[4,8],[1,45],[13,16],[-8,29],[-16,2],[-5,-8],[-17,0],[-7,29],[-11,-9],[-10,-14]],[[5776,8607],[4,-10],[-19,-33],[8,-54],[-12,-18]],[[5757,8492],[-23,0],[-24,21],[-12,7],[-24,-10]],[[6187,5811],[-6,-20],[10,-32],[11,-28],[10,-20],[91,-69],[23,1]],[[6326,5643],[-78,-173],[-36,-3],[-25,-40],[-18,-1],[-7,-18]],[[6162,5408],[-19,0],[-12,19],[-25,-24],[-8,-24],[-19,5],[-6,6],[-6,-1],[-9,0],[-35,49],[-20,0],[-9,19],[0,32],[-15,10]],[[5979,5499],[-16,63],[-13,13],[-5,23],[-14,28],[-17,4],[10,33],[15,1],[4,18]],[[5943,5682],[-1,52]],[[5942,5734],[9,60],[13,16],[2,24],[12,44],[17,28],[11,57],[5,49]],[[5663,8983],[-9,22],[-1,89],[-44,39],[-37,28]],[[5572,9161],[17,16],[31,-31],[36,3],[30,-14],[27,25],[13,43],[43,19],[36,-23],[-12,-40]],[[5793,9159],[-4,-40],[43,-39],[-26,-43],[32,-66],[-18,-49],[25,-43],[-12,-37],[41,-40],[-10,-29],[-26,-34],[-59,-73]],[[3299,2196],[33,35],[24,-15],[17,23],[22,-25],[-8,-21],[-38,-17],[-12,20],[-24,-26],[-14,26]],[[3485,5315],[7,25],[2,26]],[[3494,5366],[5,25],[-11,34]],[[3488,5425],[-2,39],[14,49]],[[5157,8034],[6,-5],[8,1]],[[5189,7830],[-1,-16],[8,-22],[-10,-17],[8,-45],[15,-7],[-3,-25]],[[5263,5240],[9,3],[40,0],[0,69]],[[4827,8284],[-21,12],[-17,-1],[5,31],[-5,31]],[[4968,8327],[19,-9],[17,-65],[8,-23],[34,-11],[-4,-37],[-14,-17],[11,-30],[-25,-30],[-37,1],[-47,-16],[-13,11],[-18,-27],[-26,7],[-20,-22],[-14,11],[40,61],[25,12],[-43,10],[-8,23],[29,18],[-15,31],[5,37],[41,-5],[4,34]],[[4917,8291],[-18,35],[-1,1]],[[4898,8327],[-34,10],[-6,16],[10,25],[-9,16],[-15,-27],[-2,55],[-14,30],[10,59],[22,47],[22,-5],[34,5],[-30,-62],[28,8],[31,0],[-8,-47],[-25,-52],[29,-4]],[[4941,8401],[2,-6],[25,-68]],[[6109,7683],[3,7],[24,-10],[41,-9],[37,-28],[5,-11],[17,9],[26,-12],[8,-23],[18,-14]],[[6210,7548],[-27,28],[-30,-2]],[[5000,5816],[-2,-17],[11,-30],[0,-42],[3,-45],[7,-21],[-6,-52],[2,-29],[7,-36],[6,-21]],[[4715,5666],[-8,-3],[1,21],[-5,15],[1,17],[-6,24],[-8,20],[-22,1],[-6,-11],[-8,-2],[-5,-12],[-3,-16],[-15,-25]],[[4579,5818],[12,28],[9,-1],[7,9],[6,0],[4,8],[-2,19],[3,6],[0,20]],[[4618,5907],[14,-1],[20,-14],[6,1],[2,7],[15,-5],[4,3]],[[4679,5898],[2,-21],[4,0],[7,8],[5,-2],[8,-14],[12,-5],[7,12],[9,8],[7,8],[5,-1],[7,-13],[3,-16],[11,-24],[-5,-15],[-1,-19],[5,6],[4,-7],[-2,-17],[9,-16]],[[4765,5625],[-8,1],[-6,-23],[-8,0],[-5,12],[2,24],[-12,35],[-7,-7],[-6,-1]],[[4535,5965],[30,1],[6,14],[9,1],[11,-14],[9,0],[9,9],[5,-16],[-12,-13],[-12,1],[-12,12],[-10,-13],[-5,-1],[-6,-8],[-26,1]],[[4536,5895],[14,10],[10,-2],[7,6],[51,-2]],[[5583,7534],[18,5],[11,12],[15,-1],[4,10],[6,2]],[[5724,7590],[14,-15],[-9,-36],[-6,-6]],[[3700,9940],[93,34],[98,-2],[35,21],[98,6],[222,-8],[174,-45],[-51,-23],[-107,-2],[-149,-6],[14,-10],[98,6],[84,-19],[54,17],[23,-21],[-31,-33],[71,21],[135,23],[83,-11],[16,-25],[-113,-41],[-16,-13],[-89,-10],[65,-3],[-33,-42],[-22,-37],[1,-64],[33,-38],[-43,-2],[-46,-19],[51,-30],[7,-49],[-30,-5],[36,-50],[-62,-4],[32,-23],[-9,-21],[-39,-9],[-39,0],[35,-39],[1,-25],[-55,23],[-15,-15],[38,-14],[36,-36],[11,-46],[-50,-11],[-21,22],[-34,33],[9,-39],[-32,-30],[73,-3],[38,-3],[-74,-50],[-76,-45],[-81,-20],[-31,0],[-28,-23],[-39,-60],[-60,-41],[-19,-2],[-37,-14],[-40,-14],[-24,-35],[0,-41],[-14,-38],[-45,-46],[11,-45],[-13,-47],[-14,-56],[-39,-4],[-41,47],[-56,0],[-26,32],[-19,56],[-48,72],[-14,37],[-4,52],[-38,53],[10,43],[-19,20],[27,67],[42,22],[11,24],[6,45],[-32,-21],[-15,-8],[-25,-8],[-34,18],[-2,39],[11,31],[26,1],[57,-15],[-48,36],[-25,20],[-28,-8],[-23,14],[31,54],[-17,21],[-22,40],[-33,61],[-36,22],[1,24],[-75,34],[-59,4],[-74,-2],[-68,-4],[-32,18],[-48,36],[73,18],[56,4],[-119,14],[-63,24],[4,22],[105,28],[102,28],[11,21],[-75,20],[24,23],[96,41],[40,6],[-11,26],[66,15],[85,9],[85,0],[31,-18],[73,32],[67,-21],[39,-5],[57,-19],[-66,31],[4,25]],[[2437,6019],[1,17],[3,13],[-4,11],[14,47],[35,0],[1,20],[-4,3],[-4,13],[-10,13],[-10,19],[12,1],[0,32],[26,0],[26,-1]],[[2549,6088],[-13,-22],[-13,-16],[-2,-12],[2,-11],[-6,-14]],[[2517,6013],[-6,-4],[1,-7],[-5,-6],[-10,-15],[0,-8]],[[3412,5526],[-5,-52],[-17,-15],[2,-13],[-5,-30],[12,-42],[9,0],[4,-33],[17,-50]],[[3312,5481],[-19,44],[8,16],[-1,27],[17,9],[7,11],[-9,21],[2,21],[22,34]],[[2561,5953],[1,23],[-3,6],[-6,4],[-12,-7],[-1,8],[-9,9],[-6,12],[-8,5]],[[2690,6045],[-10,2],[-4,-8],[-9,-8],[-7,0],[-7,-7],[-5,3],[-5,8],[-3,-1],[-3,-14],[-3,0],[0,-11],[-10,-16],[-5,-7],[-3,-7],[-8,11],[-6,-15],[-6,0],[-7,-1],[1,-28],[-4,-1],[-4,-13],[-8,-2]],[[5515,7638],[-4,-10]],[[5380,7802],[19,-2],[5,10],[10,-10],[11,-1],[0,16],[9,6],[3,23],[22,16]],[[5459,7860],[9,-7],[21,-25],[23,-11],[10,9]],[[5522,7826],[7,-23],[9,-16],[-11,-22]],[[5471,7953],[14,-15],[10,-6],[23,7],[3,12],[11,1],[13,9],[3,-3],[13,7],[7,13],[9,4],[30,-18],[5,6]],[[5612,7970],[16,-15],[2,-16]],[[5630,7939],[-17,-12],[-13,-39],[-17,-39],[-22,-11]],[[5561,7838],[-18,3],[-21,-15]],[[5459,7860],[-5,19],[-5,1]],[[8470,4670],[3,-11],[0,-18]],[[8915,5032],[1,-187],[0,-188]],[[8045,5298],[5,-39],[19,-33],[17,12],[18,-4],[16,29],[14,5],[26,-16],[23,12],[14,80],[11,20],[9,66],[32,0],[24,-10]],[[7252,6920],[-18,-26],[-11,-54],[27,-22],[27,-28],[36,-32],[38,-8],[16,-29],[21,-6],[34,-13],[23,1],[3,23],[-4,36],[3,25]],[[7702,6809],[2,-21],[-9,-11],[2,-35],[-20,10],[-36,-40],[1,-33],[-15,-48],[-2,-28],[-12,-48],[-22,13],[-1,-59],[-6,-20],[3,-24],[-14,-14]],[[6893,6546],[18,39],[61,-1],[-5,50],[-16,29],[-3,44],[-18,26],[30,61],[33,-5],[29,61],[17,58],[27,58],[0,41],[23,33],[-22,29],[-10,39],[-10,50],[14,25],[42,-14],[31,8],[27,49]],[[6690,6900],[14,-31],[11,-34],[26,-26],[1,-50],[13,-10],[3,-26],[-40,-30],[-11,-67]],[[6348,6905],[-15,31],[-1,30],[-9,0],[5,42],[-14,44],[-34,31],[-20,55],[7,45],[14,20],[-2,33],[-18,18],[-18,68]],[[6243,7322],[-16,46],[6,18],[-9,66],[19,17]],[[6497,7324],[24,11],[20,33],[18,-2],[13,11],[19,-5],[31,-29],[22,-7],[32,-51],[21,-2],[2,-48]],[[6331,6908],[-18,5],[-21,-55]],[[6292,6858],[-51,4],[-79,116],[-41,40],[-33,16]],[[6088,7034],[-12,70]],[[6076,7104],[62,60],[10,70],[-2,42],[15,14],[14,36]],[[6175,7326],[12,9],[32,-8],[10,-14],[14,9]],[[5982,6995],[1,-22],[-14,-92]],[[5975,7087],[9,0],[2,10],[8,1]],[[5994,7098],[0,-23],[-3,-9],[0,-1]],[[5991,7065],[-5,-18]],[[5986,7047],[-10,8],[-6,-38],[7,-7],[-7,-7],[-1,-16],[13,8]],[[5382,7860],[-3,-28],[7,-25]],[[2845,6247],[18,-5],[15,-14],[5,-16],[-20,-1],[-8,-10],[-16,9],[-16,21],[4,14],[11,4],[7,-2]],[[6088,7034],[-6,-9],[-55,-29],[27,-57],[-9,-10],[-4,-19],[-22,-8],[-6,-21],[-12,-18],[-31,9]],[[5982,6995],[4,17],[0,35]],[[5991,7065],[31,-22],[54,61]],[[6554,7561],[-15,-3],[-19,45],[-19,16],[-31,-12],[-13,-19]],[[6363,7854],[-14,9],[2,30],[-17,38],[-21,-1],[-23,39],[16,43],[-8,12],[22,63],[28,-33],[4,42],[57,63],[43,1],[62,-40],[33,-23],[29,24],[44,1],[36,-29],[8,17],[39,-3],[7,27],[-45,40],[26,28],[-5,16],[27,15],[-20,39],[12,20],[104,20],[14,14],[69,21],[25,24],[50,-12],[9,-60],[29,14],[36,-20],[-3,-31],[27,3],[70,55],[-11,-18],[36,-45],[62,-146],[15,30],[38,-33],[40,15],[15,-11],[14,-33],[19,-11],[12,-25],[36,8],[14,-35]],[[7228,7621],[-17,8],[-14,21],[-41,6],[-46,1],[-10,-6],[-40,24],[-16,-12],[-4,-34],[-46,20],[-18,-8],[-6,-25]],[[6970,7616],[-16,-11],[-37,-40],[-12,-41],[-10,-1],[-8,28],[-35,2],[-6,47],[-13,0],[2,58],[-33,42],[-48,-5],[-33,-8],[-26,52],[-23,22],[-43,41],[-5,5],[-72,-34],[2,-212]],[[6088,4913],[-40,57],[-2,34],[-101,117],[-4,6]],[[5941,5127],[-1,61],[8,24],[14,38],[10,42],[-12,66],[-3,29],[-14,40]],[[5943,5427],[18,34],[18,38]],[[6162,5408],[-25,-66],[1,-209],[16,-48]],[[7045,7453],[-52,-9],[-34,18],[-31,-4],[3,33],[30,-9],[10,17]],[[6971,7499],[22,-5],[35,41],[-33,30],[-20,-14],[-20,22],[23,37],[-8,6]],[[7848,5884],[-6,69],[18,48],[35,11],[26,-8]],[[7921,6004],[23,-23],[13,40],[25,-21]],[[7982,6000],[6,-39],[-3,-69],[-47,-44],[12,-35],[-29,-4],[-24,-23]],[[8504,7356],[1,5],[13,-2],[10,26],[20,3],[12,3],[4,14]],[[5556,7634],[6,13]],[[5562,7647],[6,4],[4,20],[5,3],[4,-8],[5,-4],[4,-9],[4,-3],[6,-11],[4,1],[-3,-14],[-4,-7],[1,-4]],[[5598,7615],[-6,-3],[-16,-9],[-2,-11],[-3,0]],[[6344,6826],[-20,-1],[-7,27],[-25,6]],[[7780,6358],[6,21],[23,37]],[[7837,6476],[16,-46],[12,-52],[35,-1],[10,-50],[-17,-15],[-8,-21],[33,-34],[23,-68],[18,-51],[21,-40],[7,-41],[-5,-57]],[[7921,6004],[9,26],[2,49],[-23,50],[-1,57],[-22,46],[-21,4],[-5,-20],[-16,-1],[-9,10],[-29,-35],[-1,52],[7,61],[-19,2],[-1,35],[-12,18]],[[5999,7177],[12,-3],[5,-23],[-15,-21],[-7,-32]],[[4681,5573],[7,18],[1,17],[13,31],[13,27]],[[5262,6927],[14,14],[2,24],[-3,24],[19,22],[9,18],[14,17],[1,44]],[[5693,6449],[0,-115],[-32,0],[0,-25]],[[5661,6309],[-111,111],[-110,110],[-29,-32]],[[5411,6498],[-19,-21],[-16,32],[-44,25]],[[7271,5615],[-5,-60],[-11,-16],[-24,-13],[-14,45],[-4,83],[12,94],[19,-32],[13,-41],[14,-60]],[[5804,3515],[10,-18],[-9,-28],[-5,-19],[-15,-9],[-5,-18],[-10,-6],[-21,45],[15,36],[15,23],[13,11],[12,-17]],[[5584,8408],[32,18],[46,-4],[28,6],[3,-12],[15,-4],[27,-28]],[[5651,8286],[-6,18],[-15,6]],[[5630,8310],[-2,15],[3,16],[-12,9],[-29,10]],[[5757,8492],[13,-14],[3,-28],[9,-34]],[[4758,6775],[-4,0],[1,-31],[-17,-2],[-9,-13],[-13,0],[-10,7],[-23,-6],[-9,-45],[-9,-4],[-13,-73],[-39,-62],[-9,-79],[-11,-26],[-4,-21],[-62,-5],[-1,1]],[[4526,6416],[2,26],[10,16],[9,30],[-1,19],[9,41],[16,37],[9,9],[7,34],[1,30],[10,36],[18,21],[18,59]],[[4634,6774],[1,0],[14,22]],[[4649,6796],[25,7],[22,39],[14,16],[23,48],[-7,71],[11,50],[4,30],[18,39],[27,26],[21,24],[19,60],[8,35],[21,0],[16,-25],[27,4],[29,-12],[12,-1]],[[5783,7801],[-5,27],[3,24],[-1,25],[-16,35],[-9,24],[-8,17],[-9,6]],[[5738,7959],[7,8],[18,6],[21,-18],[11,-2],[13,-16],[-2,-19],[10,-10],[4,-24],[10,-14],[-2,-9],[5,-6],[-7,-4],[-17,2],[-3,8],[-5,-5],[2,-10],[-8,-19],[-5,-19],[-7,-7]],[[6375,4464],[7,-25],[7,-38],[5,-69],[7,-27],[-3,-27],[-5,-17],[-9,33],[-5,-17],[5,-42],[-3,-25],[-7,-13],[-2,-49],[-11,-67],[-14,-79],[-17,-109],[-10,-80],[-13,-67],[-23,-14],[-24,-24],[-16,14],[-22,21],[-7,30],[-2,51],[-10,46],[-3,42],[5,41],[13,10],[0,19],[13,44],[3,37],[-6,27],[-6,36],[-2,53],[10,33],[4,36],[13,2],[16,12],[10,11],[12,0],[16,33],[23,36],[8,29],[-3,24],[11,-7],[16,40],[0,35],[9,26],[10,-25]],[[1746,7055],[31,5],[36,6],[-3,-11],[42,-28],[63,-41],[56,1],[22,0],[0,24],[48,-1],[10,-20],[14,-18],[17,-25],[9,-31],[7,-31],[14,-18],[23,-17],[18,46],[22,1],[20,-23],[14,-40],[9,-33],[17,-33],[6,-41],[8,-27],[21,-17],[20,-13],[11,2]],[[2301,6672],[-11,-51],[-5,-41],[-2,-78],[-2,-28],[4,-31],[9,-28],[6,-45],[18,-43],[6,-33],[11,-28],[30,-15],[11,-24],[25,16],[21,6],[21,10],[17,10],[18,23],[6,34],[3,48],[5,17],[18,15],[30,14],[24,-2],[17,5],[7,-13],[-1,-27],[-15,-35],[-7,-35],[5,-10],[-4,-25],[-7,-45],[-7,15],[-6,-1]],[[5598,7615],[10,3],[13,1]],[[5118,6285],[0,-133],[-16,-38],[-2,-36],[-25,-9],[-38,-5],[-10,-20],[-18,-2]],[[4679,5898],[1,18],[-2,23],[-10,16],[-6,33],[-1,36]],[[4661,6024],[9,10],[5,34],[9,1],[19,-16],[16,12],[11,-4],[4,13],[111,1],[6,40],[-4,7],[-14,249],[-13,248],[42,1]],[[7780,6358],[-16,-14],[-16,-25],[-20,-2],[-13,-62],[-11,-11],[13,-50],[18,-42],[11,-38],[-10,-51],[-10,-10],[7,-29],[18,-46],[4,-32],[-1,-27],[11,-52],[-15,-54],[-14,-59]],[[5533,7688],[7,-10],[4,-8],[9,-6],[11,-12],[-2,-5]],[[7436,8021],[30,10],[53,49],[42,27],[24,-17],[29,-1],[19,-27],[27,-2],[40,-15],[27,40],[-11,34],[29,60],[31,-24],[25,-7],[33,-14],[5,-43],[40,-25],[26,11],[35,7],[28,-7],[27,-28],[17,-29],[26,0],[35,-9],[25,14],[37,10],[40,40],[17,-6],[15,-19],[33,5]],[[5911,3642],[-21,1]],[[5890,3643],[-3,25],[-4,26]],[[5883,3694],[-2,21],[5,64],[-7,41],[-14,81]],[[5865,3901],[30,65],[7,42],[4,5],[3,34],[-4,17],[1,43],[5,40],[0,73],[-14,18],[-13,4],[-6,14],[-13,13],[-23,-1],[-2,21]],[[5840,4289],[-3,41],[85,47]],[[5922,4377],[16,-27],[7,5],[11,-14],[2,-24],[-6,-26],[2,-41],[18,-36],[9,40],[12,13],[-3,74],[-11,41],[-10,19],[-10,-1],[-8,75],[8,44]],[[5959,4519],[21,4],[33,-16],[7,7],[20,2],[10,17],[16,-1],[31,22],[22,34]],[[4525,6391],[6,19],[109,0],[-5,83],[6,30],[26,5],[0,147],[91,-3],[0,87]],[[4661,6024],[-18,39],[-17,43],[-19,15],[-13,17],[-15,-1],[-14,-12],[-14,5],[-9,-19]],[[5922,4377],[-15,15],[8,54],[9,20],[-5,48],[5,46],[5,16],[-7,49],[-13,25]],[[5909,4650],[27,-10],[6,-16],[9,-27],[8,-78]],[[7779,5554],[5,10],[22,-25],[3,-29],[18,7],[9,23]],[[5644,4173],[23,13],[18,-3],[11,-13],[0,-5]],[[5552,3756],[0,-213],[-25,-29],[-15,-5],[-18,11],[-12,5],[-5,24],[-11,16],[-13,-29]],[[9604,3968],[22,-36],[15,-26],[-11,-14],[-15,16],[-20,26],[-18,30],[-18,41],[-4,19],[12,-1],[15,-19],[13,-20],[9,-16]],[[5411,6498],[7,-89],[11,-15],[0,-18],[12,-20],[-6,-25],[-11,-117],[-1,-75],[-36,-54],[-12,-76],[12,-21],[0,-37],[17,-1],[-2,-28]],[[5393,5901],[-5,-1],[-19,63],[-7,2],[-21,-32],[-22,16],[-15,4],[-8,-8],[-16,2],[-16,-25],[-15,-1],[-33,29],[-13,-14],[-15,1],[-10,22],[-28,21],[-30,-6],[-7,-13],[-4,-33],[-8,-23],[-2,-52]],[[5863,9187],[-47,-23],[-23,-5]],[[5572,9161],[-17,-2],[-4,-38],[-52,9],[-8,-32],[-26,0],[-19,-41],[-27,-63],[-43,-81],[10,-20],[-10,-23],[-28,1],[-18,-54],[2,-76],[18,-30],[-9,-67],[-23,-40],[-13,-33]],[[6474,6141],[-9,40],[-22,95]],[[6443,6276],[84,58],[18,115],[-13,41]],[[5545,8316],[34,-7],[51,1]],[[5652,8152],[14,-50],[-3,-16],[-13,-7],[-26,-48],[8,-26],[-6,3]],[[5626,8008],[-27,23],[-20,-9],[-13,6],[-16,-12],[-14,20],[-12,-7],[-1,3]],[[3158,6248],[14,-5],[5,-11],[-7,-15],[-21,0],[-16,-2],[-2,25],[4,8],[23,0]],[[8628,7623],[3,-10]],[[6426,6600],[-7,-4],[-9,11]],[[5783,7801],[13,-10],[13,9],[12,-10]],[[5628,7729],[-5,10],[7,10],[-7,7],[-9,-13],[-16,17],[-2,24],[-17,13],[-3,18],[-15,23]],[[5630,7939],[12,12],[17,-6],[18,0],[13,-14],[9,9],[21,5],[7,14],[11,0]],[[6061,7894],[1,26],[14,16],[27,4],[4,19],[-6,32],[11,30],[0,17],[-41,19],[-16,-1],[-17,27],[-22,-9],[-35,20],[1,12],[-10,25],[-22,2],[-3,18],[7,12],[-18,33],[-28,-6],[-9,3],[-7,-13],[-10,2]],[[5863,9187],[28,20],[46,-34],[76,-14],[105,-65],[21,-28],[2,-38],[-31,-30],[-45,-16],[-124,44],[-20,-7],[45,-42]],[[5966,8977],[2,-27],[2,-59]],[[5970,8891],[35,-17],[22,-15],[4,28]],[[6031,8887],[-17,24],[18,22]],[[6920,9133],[-28,31],[-1,12]],[[8147,9571],[22,-22],[-7,-29]],[[5821,5105],[6,-6],[17,18]],[[5844,5117],[11,-33],[-2,-34],[-8,-7]],[[6443,6276],[-80,-22],[-26,-26],[-20,-60],[-13,-10],[-7,19],[-10,-3],[-27,6],[-5,6],[-32,-1],[-8,-6],[-11,15],[-7,-28],[2,-24],[-12,-19]],[[5634,5824],[0,14],[-10,16],[0,34],[-6,22],[-10,-3],[3,21],[7,24],[-3,24],[9,17],[-6,14],[8,36],[13,42],[23,-4],[-1,228]],[[5942,5734],[0,-7]],[[5942,5727],[-4,1],[1,29],[-3,20],[-15,22],[-3,42],[3,42],[-13,4],[-1,-13],[-17,-3],[7,-16],[2,-35],[-15,-32],[-14,-41],[-14,-6],[-24,34],[-10,-12],[-3,-17],[-14,-11],[-1,-12],[-28,0],[-4,12],[-20,2],[-10,-10],[-8,5],[-14,34],[-5,15],[-20,-7],[-7,-27],[-7,-52],[-10,-10],[-9,-7]],[[5662,5678],[-2,3]],[[5943,5427],[-17,-27],[-19,0],[-22,-13],[-18,13],[-12,-16]],[[5681,5656],[-19,22]],[[5942,5727],[1,-45]],[[2541,5940],[-10,6],[-11,11]],[[6359,5839],[-1,-1],[0,-24],[0,-58],[0,-30],[-12,-35],[-20,-48]],[[3488,5425],[11,-35],[-5,-24]],[[3494,5366],[-2,-27],[-7,-24]],[[5626,8008],[-8,-15],[-6,-23]],[[5890,3643],[-6,-26],[-16,-6],[-17,31],[0,20],[8,22],[2,16],[8,4],[14,-10]],[[6003,7245],[7,12],[8,13],[1,32],[10,-11],[30,16],[15,-11],[23,0],[32,22],[15,-1],[31,9]],[[6883,7321],[16,58],[-6,43],[-21,14],[7,25],[24,-3],[13,32],[9,37],[37,14],[-6,-27],[4,-16],[11,1]],[[6554,7561],[31,0],[-5,29],[24,20],[23,34],[38,-31],[3,-46],[10,-11],[30,2],[10,-10],[13,-60],[32,-39],[18,-27],[29,-29],[37,-24],[0,-36]],[[3286,5802],[16,7],[6,-2],[-1,-43],[-24,-6],[-5,5],[8,16],[0,23]],[[8381,6587],[-16,-93],[-12,-47],[-15,49],[-3,42],[16,57],[23,44],[12,-18],[-5,-34]],[[5909,4650],[-16,18],[-18,9],[-11,10],[-11,15]],[[5844,5117],[10,7],[30,-1],[57,4]],[[3052,7697],[-15,-34],[-5,-13]],[[2952,7539],[40,11],[9,-11]],[[2896,7366],[-14,22],[-4,48]],[[2522,6928],[-11,-9],[5,-16]],[[2316,6812],[-15,-28],[-6,-25]],[[1746,7055],[-5,30],[-18,33],[-13,7],[-3,16],[-15,3],[-10,16],[-26,6],[-7,9],[-4,31],[-27,58],[-23,80],[1,14],[-12,19],[-22,48],[-3,47],[-15,31],[6,48],[-1,49],[-9,45],[11,54]],[[1551,7699],[3,52],[4,52]],[[1558,7803],[-5,78],[-9,49],[-8,27],[3,11],[40,-20],[15,-54],[7,15],[-4,47],[-10,48]],[[5816,3910],[12,-1],[13,-9],[10,6],[14,-5]],[[5840,4289],[-21,-8],[-16,-23],[-3,-20],[-10,-4],[-24,-48],[-16,-37],[-9,-1],[-9,6],[-31,7]]]}
--------------------------------------------------------------------------------