From 222a999cbca217d87b66dc2cdbd7922e7995b08c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torstein=20H=C3=B8nsi?= Date: Sat, 23 Oct 2021 13:23:34 +0200 Subject: [PATCH 01/10] WIP TopoJSON --- .../studies/topojson-decode/demo.html | 4 - .../studies/topojson-decode/demo.js | 152 +++++------------- samples/maps/demo/us-counties/demo.js | 1 - ts/Core/Chart/ChartOptions.d.ts | 3 +- ts/Extensions/GeoJSON.ts | 142 +++++++++++----- ts/Maps/GeoJSON.d.ts | 75 ++++++++- ts/Series/Map/MapPoint.ts | 4 +- ts/Series/Map/MapSeries.ts | 5 +- 8 files changed, 221 insertions(+), 165 deletions(-) diff --git a/samples/highcharts/studies/topojson-decode/demo.html b/samples/highcharts/studies/topojson-decode/demo.html index 0d2198595ec..0ee69c59248 100644 --- a/samples/highcharts/studies/topojson-decode/demo.html +++ b/samples/highcharts/studies/topojson-decode/demo.html @@ -1,8 +1,4 @@ - - - - diff --git a/samples/highcharts/studies/topojson-decode/demo.js b/samples/highcharts/studies/topojson-decode/demo.js index ecf5ff28a70..cf69f7ae186 100644 --- a/samples/highcharts/studies/topojson-decode/demo.js +++ b/samples/highcharts/studies/topojson-decode/demo.js @@ -1,111 +1,45 @@ -// Based on https://github.com/topojson/topojson-specification -const topoJSONDecode = (topology, object) => { - if (!topology.type === 'Topology') { - return topology; - } - - // Decode first object/feature as default - if (!object) { - object = Object.keys(topology.objects)[0]; - } - - const { scale, translate } = topology.transform; - const arcsArray = topology.arcs.map(arc => { - let x = 0, - y = 0; - return arc.map(position => { - position = position.slice(); - position[0] = (x += position[0]) * scale[0] + translate[0]; - position[1] = (y += position[1]) * scale[1] + translate[1]; - return position; - }); - }); - - const arcsToCoordinates = arcs => { - if (typeof arcs[0] === 'number') { - return arcs.reduce((coordinates, arc, i) => coordinates.concat( - (arc < 0 ? arcsArray[~arc].reverse() : arcsArray[arc]) - .slice(i === 0 ? 0 : 1) - ), []); - } - return arcs.map(arcsToCoordinates); - }; - - const geojson = { - type: 'FeatureCollection', - copyright: topology.copyright, - copyrightShort: topology.copyrightShort, - copyrightUrl: topology.copyrightUrl - }; - geojson.features = topology.objects[object].geometries - .map(geometry => ({ - type: 'Feature', - properties: geometry.properties, - geometry: { - type: geometry.type, - coordinates: geometry.coordinates || - arcsToCoordinates(geometry.arcs) +(async () => { + + const topology = await fetch( + 'https://code.highcharts.com/mapdata/custom/europe.topo.json' + // 'https://code.highcharts.com/mapdata/countries/us/us-all-all.topo.json' + ).then(response => response.json()); + + // Create a dummy data value for each feature + const data = topology.objects.default.geometries.map((g, i) => i % 5); + + // Initialize the chart + Highcharts.mapChart('container', { + chart: { + map: topology + }, + + title: { + text: 'TopoJSON in Highcharts Maps' + }, + + mapView: { + projection: { + name: 'Orthographic', + rotation: [-10, -40] } - })); - - return geojson; -}; - - -// Source: https://github.com/leakyMirror/map-of-europe -Highcharts.getJSON( - 'https://cdn.jsdelivr.net/gh/highcharts/highcharts@v9.2.0/samples/data/europe.topo.json', - topology => { - - // Convert the topoJSON feature into geoJSON - const map = topoJSONDecode(topology); - map.copyrightUrl = 'https://github.com/leakyMirror/map-of-europe'; - map.copyrightShort = 'leakyMirror'; - - // Create a dummy data value for each feature - const data = map.features.map((f, i) => i % 5); - - // Initialize the chart - Highcharts.mapChart('container', { - chart: { - map - }, - - title: { - text: 'TopoJSON in Highcharts Maps' - }, - - mapView: { - projection: { - name: 'Orthographic', - rotation: [-15, -40] + }, + + colorAxis: { + tickPixelInterval: 100, + minColor: '#F1EEF6', + maxColor: '#900037' + }, + + series: [{ + data, + joinBy: null, + name: 'Random data', + states: { + hover: { + color: '#a4edba' } - }, - - colorAxis: { - tickPixelInterval: 100, - minColor: '#F1EEF6', - maxColor: '#900037' - }, - - tooltip: { - pointFormat: '{point.properties.NAME}: {point.value}' - }, - - series: [{ - data, - joinBy: null, - name: 'Random data', - states: { - hover: { - color: '#a4edba' - } - }, - dataLabels: { - enabled: true, - format: '{point.properties.NAME}' - } - }] - }); - } -); + } + }] + }); +})(); diff --git a/samples/maps/demo/us-counties/demo.js b/samples/maps/demo/us-counties/demo.js index 93c5e98943e..9df95b9d43a 100644 --- a/samples/maps/demo/us-counties/demo.js +++ b/samples/maps/demo/us-counties/demo.js @@ -13,7 +13,6 @@ Highcharts.getJSON( * 4. Verify that the length of the data is reasonable, about 3300 * counties. */ - var countiesMap = Highcharts.geojson( Highcharts.maps['countries/us/us-all-all'] ), diff --git a/ts/Core/Chart/ChartOptions.d.ts b/ts/Core/Chart/ChartOptions.d.ts index b7162a1ebd8..24ce8a29d3e 100644 --- a/ts/Core/Chart/ChartOptions.d.ts +++ b/ts/Core/Chart/ChartOptions.d.ts @@ -21,6 +21,7 @@ import type Axis from '../Axis/Axis'; import type Chart from './Chart'; import type ColorType from '../../Core/Color/ColorType'; import type CSSObject from '../Renderer/CSSObject'; +import type GeoJSON from '../../Maps/GeoJSON'; import type { HTMLDOMElement } from '../Renderer/DOMElementType'; import type { NumberFormatterCallbackFunction } from '../Options'; import type { SeriesTypeOptions } from '../Series/SeriesType'; @@ -97,7 +98,7 @@ export interface ChartOptions { height?: (null|number|string); ignoreHiddenSeries?: boolean; inverted?: boolean; - map?: string|Array|Highcharts.GeoJSON; + map?: string|Array|GeoJSON; mapTransforms?: any; margin?: (number|Array); marginBottom?: number; diff --git a/ts/Extensions/GeoJSON.ts b/ts/Extensions/GeoJSON.ts index de2542c3888..a03beaeb045 100644 --- a/ts/Extensions/GeoJSON.ts +++ b/ts/Extensions/GeoJSON.ts @@ -10,6 +10,11 @@ 'use strict'; +import type { + GeoJSON, + GeoJSONFeature, + TopoJSON +} from '../Maps/GeoJSON'; import type MapPointOptions from '../Series/Map/MapPointOptions'; import type MapPointPointOptions from '../Series/MapPoint/MapPointPointOptions'; import type Series from '../Core/Series/Series'; @@ -82,32 +87,7 @@ declare global { lat: number; lon: number; } - interface GeoJSON { - copyright?: string; - copyrightShort?: string; - crs?: AnyRecord; - features: Array; - 'hc-transform'?: Record; - title?: string; - type?: string; - version?: string; - } - interface GeoJSONFeature extends AnyRecord { - type: string; - } - interface GeoJSONTransform { - crs?: string; - hitZone?: AnyRecord; - jsonmarginX?: number; - jsonmarginY?: number; - jsonres?: number; - rotation?: number; - scale?: number; - xoffset?: number; - xpan?: number; - yoffset?: number; - ypan?: number; - } + /** @requires modules/maps */ function geojson( geojson: GeoJSON, @@ -539,11 +519,91 @@ Chart.prototype.fromLatLonToPoint = function ( ); }; +// Based on https://github.com/topojson/topojson-specification +/* +@todo +- How to deal with multiple objects? +- Document that TopoJSON is possible type for chart.map and series.mapData +- Update demos using TopoJSON-client +- Test/set up sample using GeoJSON features or TopoJSON geometries directly as + series.mapData +*/ +const topo2geo = (topology: TopoJSON, objectName?: string): GeoJSON => { + + // Decode first object/feature as default + if (!objectName) { + objectName = Object.keys(topology.objects)[0]; + } + const object = topology.objects[objectName]; + + // Already decoded => return cache + if (object['hc-decoded-geojson']) { + return object['hc-decoded-geojson']; + } + + // Do the initial transform + let arcsArray = topology.arcs as any[]; + if (topology.transform) { + const { scale, translate } = topology.transform; + arcsArray = topology.arcs.map((arc): any => { + let x = 0, + y = 0; + return arc.map((position): number[] => { + position = position.slice(); + position[0] = (x += position[0]) * scale[0] + translate[0]; + position[1] = (y += position[1]) * scale[1] + translate[1]; + return position; + }); + }); + } + + // Recurse down any depth of multi-dimentional arrays of arcs and insert + // the coordinates + const arcsToCoordinates = ( + arcs: any + ): number[] => { + if (typeof arcs[0] === 'number') { + return arcs.reduce( + (coordinates: number[], arc: number, i: number): number[] => + coordinates.concat( + (arc < 0 ? arcsArray[~arc].reverse() : arcsArray[arc]) + .slice(i === 0 ? 0 : 1) + ), + [] + ); + } + return arcs.map(arcsToCoordinates); + }; + + const features = object.geometries + .map((geometry): GeoJSONFeature => ({ + type: 'Feature', + properties: geometry.properties, + geometry: { + type: geometry.type, + coordinates: geometry.coordinates || + arcsToCoordinates(geometry.arcs) + } as any + })); + + const geojson: GeoJSON = { + type: 'FeatureCollection', + copyright: topology.copyright, + copyrightShort: topology.copyrightShort, + copyrightUrl: topology.copyrightUrl, + features + }; + + object['hc-decoded-geojson'] = geojson; + + return geojson; +}; + /** - * Highmaps only. Restructure a GeoJSON object in preparation to be read - * directly by the + * Highcharts Maps only. Restructure a GeoJSON or TopoJSON object in preparation + * to be read directly by the * {@link https://api.highcharts.com/highmaps/plotOptions.series.mapData|series.mapData} - * option. The GeoJSON will be broken down to fit a specific Highcharts type, + * option. The object will be broken down to fit a specific Highcharts type, * either `map`, `mapline` or `mappoint`. Meta data in GeoJSON's properties * object will be copied directly over to {@link Point.properties} in Highmaps. * @@ -556,9 +616,9 @@ Chart.prototype.fromLatLonToPoint = function ( * * @function Highcharts.geojson * - * @param {Highcharts.GeoJSON} geojson - * The GeoJSON structure to parse, represented as a JavaScript object - * rather than a JSON string. + * @param {Highcharts.GeoJSON} json + * The GeoJSON or TopoJSON structure to parse, represented as a + * JavaScript object. * * @param {string} [hType=map] * The Highmaps series type to prepare for. Setting "map" will return @@ -570,23 +630,22 @@ Chart.prototype.fromLatLonToPoint = function ( * An object ready for the `mapData` option. */ H.geojson = function ( - geojson: Highcharts.GeoJSON, + json: GeoJSON|TopoJSON, hType: string = 'map', series?: Series ): Array { const mapData = [] as Array; - let path: SVGPath = []; + const geojson = json.type === 'Topology' ? topo2geo(json) : json; geojson.features.forEach(function (feature): void { - let geometry = feature.geometry || {}, - type = geometry.type, - coordinates = geometry.coordinates, - properties = feature.properties, - pointOptions: (MapPointOptions|MapPointPointOptions|undefined); + const geometry = feature.geometry || {}, + type = geometry.type as any, + coordinates = geometry.coordinates as any, + properties = feature.properties; - path = []; + let pointOptions: (MapPointOptions|MapPointPointOptions|undefined); if ( (hType === 'map' || hType === 'mapbubble') && @@ -613,8 +672,9 @@ H.geojson = function ( } } if (pointOptions) { + const name = properties && (properties.name || properties.NAME); mapData.push(extend(pointOptions, { - name: properties.name || properties.NAME, + name: typeof name === 'string' ? name : void 0, /** * In Highmaps, when data is loaded from GeoJSON, the GeoJSON diff --git a/ts/Maps/GeoJSON.d.ts b/ts/Maps/GeoJSON.d.ts index 28afdb90001..fc1908d3e25 100644 --- a/ts/Maps/GeoJSON.d.ts +++ b/ts/Maps/GeoJSON.d.ts @@ -10,27 +10,32 @@ import type { LonLatArray } from './MapViewOptions'; -export interface GeoJSONGeometryPoint { +export interface BaseGeometry { + arcs?: number[]|number[][]|number[][][]; + properties?: Record; +} + +export interface GeoJSONGeometryPoint extends BaseGeometry { type: 'Point'; coordinates: LonLatArray; } -interface LineString { +interface LineString extends BaseGeometry{ type: 'LineString'; coordinates: LonLatArray[]; } -interface Polygon { +interface Polygon extends BaseGeometry { type: 'Polygon'; coordinates: LonLatArray[][]; } -interface MultiLineString { +interface MultiLineString extends BaseGeometry { type: 'MultiLineString'; coordinates: LonLatArray[][]; } -interface MultiPolygon { +interface MultiPolygon extends BaseGeometry { type: 'MultiPolygon'; coordinates: LonLatArray[][][]; } @@ -44,4 +49,62 @@ export interface GeoJSONGeometryMultiPointRegistry { export type GeoJSONGeometryMultiPoint = GeoJSONGeometryMultiPointRegistry[keyof GeoJSONGeometryMultiPointRegistry]; -export default GeoJSONGeometryMultiPoint; +interface GeoJSONGeometryRegistry extends GeoJSONGeometryMultiPointRegistry { + Point: GeoJSONGeometryPoint; +} + +type GeoJSONGeometry = GeoJSONGeometryRegistry[keyof GeoJSONGeometryRegistry]; + +export interface GeoJSON { + copyright?: string; + copyrightShort?: string; + copyrightUrl?: string; + crs?: AnyRecord; + features: Array; + 'hc-transform'?: Record; + title?: string; + type: 'FeatureCollection'; + version?: string; +} +export interface GeoJSONFeature { + geometry: GeoJSONGeometryPoint|GeoJSONGeometryMultiPoint; + properties?: Record; + type: 'Feature'; +} +interface GeoJSONTransform { + crs?: string; + hitZone?: AnyRecord; + jsonmarginX?: number; + jsonmarginY?: number; + jsonres?: number; + rotation?: number; + scale?: number; + xoffset?: number; + xpan?: number; + yoffset?: number; + ypan?: number; +} + +export interface TopoJSON { + arcs: number[][][]; + copyright?: string; + copyrightShort?: string; + copyrightUrl?: string; + objects: TopoJSONObjects; + transform: TopoJSONTransform; + type: 'Topology'; +} + +interface TopoJSONObjects { + [key: string]: TopoJSONObject; +} +interface TopoJSONObject { + geometries: GeoJSONGeometry[]; + 'hc-decoded-geojson'?: GeoJSON; +} +interface TopoJSONTransform { + scale: [number, number]; + translate: [number, number]; +} + +export default GeoJSON; diff --git a/ts/Series/Map/MapPoint.ts b/ts/Series/Map/MapPoint.ts index 4ea34583c40..7cd79eb763d 100644 --- a/ts/Series/Map/MapPoint.ts +++ b/ts/Series/Map/MapPoint.ts @@ -26,7 +26,7 @@ import Projection from '../../Maps/Projection.js'; import type { PointShortOptions } from '../../Core/Series/PointOptions'; import type SVGPath from '../../Core/Renderer/SVG/SVGPath'; -import GeoJSONGeometry from '../../Maps/GeoJSON'; +import { GeoJSONGeometryMultiPoint } from '../../Maps/GeoJSON'; import SeriesRegistry from '../../Core/Series/SeriesRegistry.js'; const { // indirect dependency to keep product size low @@ -55,7 +55,7 @@ class MapPoint extends ScatterSeries.prototype.pointClass { public colorInterval?: unknown; - public geometry?: GeoJSONGeometry; + public geometry?: GeoJSONGeometryMultiPoint; public labelrank?: number; diff --git a/ts/Series/Map/MapSeries.ts b/ts/Series/Map/MapSeries.ts index dd3533509c9..ac65e7390dc 100644 --- a/ts/Series/Map/MapSeries.ts +++ b/ts/Series/Map/MapSeries.ts @@ -1004,7 +1004,10 @@ class MapSeries extends ScatterSeries { } if (mapData) { - if (mapData.type === 'FeatureCollection') { + if ( + mapData.type === 'FeatureCollection' || + mapData.type === 'Topology' + ) { this.mapTitle = mapData.title; mapData = H.geojson(mapData, this.type, this); } From c3867f5a88582a102fc3654ee5a9b1126127d870 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torstein=20H=C3=B8nsi?= Date: Sun, 24 Oct 2021 08:21:18 +0200 Subject: [PATCH 02/10] TopoJSON: docs and demos --- .../studies/geojson-multiseries/demo.js | 55 ------------------- .../series/mapdata-multiple}/demo.css | 0 .../series/mapdata-multiple}/demo.details | 0 .../series/mapdata-multiple}/demo.html | 3 - samples/maps/series/mapdata-multiple/demo.js | 48 ++++++++++++++++ ts/Core/Chart/ChartDefaults.ts | 13 +++-- ts/Extensions/GeoJSON.ts | 9 ++- ts/Series/Map/MapSeries.ts | 7 ++- 8 files changed, 64 insertions(+), 71 deletions(-) delete mode 100644 samples/highcharts/studies/geojson-multiseries/demo.js rename samples/{highcharts/studies/geojson-multiseries => maps/series/mapdata-multiple}/demo.css (100%) rename samples/{highcharts/studies/geojson-multiseries => maps/series/mapdata-multiple}/demo.details (100%) rename samples/{highcharts/studies/geojson-multiseries => maps/series/mapdata-multiple}/demo.html (66%) create mode 100644 samples/maps/series/mapdata-multiple/demo.js diff --git a/samples/highcharts/studies/geojson-multiseries/demo.js b/samples/highcharts/studies/geojson-multiseries/demo.js deleted file mode 100644 index c915ef9d702..00000000000 --- a/samples/highcharts/studies/geojson-multiseries/demo.js +++ /dev/null @@ -1,55 +0,0 @@ -const getGeoJSON = async url => { - const result = await fetch(url); - const json = result.ok && await result.json(); - return window.topojson.feature( - json, - // For this demo, get the first of the named objects - json.objects[Object.keys(json.objects)[0]] - ); -}; - -(async () => { - - const norway = await getGeoJSON( - 'https://rawgit.com/deldersveld/topojson/master/countries/norway/norway-counties.json' - ); - const sweden = await getGeoJSON( - 'https://rawgit.com/deldersveld/topojson/master/countries/sweden/sweden-counties.json' - ); - - - // Initialize the chart - Highcharts.mapChart('container', { - title: { - text: 'Highcharts, multiple GeoJSON' - }, - - mapNavigation: { - enabled: true, - buttonOptions: { - verticalAlign: 'bottom' - } - }, - - mapView: { - projection: { - name: 'Orthographic', - rotation: [-16, -63] - } - }, - - plotOptions: { - map: { - showInLegend: false - } - }, - - series: [{ - data: [], - mapData: norway - }, { - data: [], - mapData: sweden - }] - }); -})(); diff --git a/samples/highcharts/studies/geojson-multiseries/demo.css b/samples/maps/series/mapdata-multiple/demo.css similarity index 100% rename from samples/highcharts/studies/geojson-multiseries/demo.css rename to samples/maps/series/mapdata-multiple/demo.css diff --git a/samples/highcharts/studies/geojson-multiseries/demo.details b/samples/maps/series/mapdata-multiple/demo.details similarity index 100% rename from samples/highcharts/studies/geojson-multiseries/demo.details rename to samples/maps/series/mapdata-multiple/demo.details diff --git a/samples/highcharts/studies/geojson-multiseries/demo.html b/samples/maps/series/mapdata-multiple/demo.html similarity index 66% rename from samples/highcharts/studies/geojson-multiseries/demo.html rename to samples/maps/series/mapdata-multiple/demo.html index 102cb03dae1..1fa46899d9f 100644 --- a/samples/highcharts/studies/geojson-multiseries/demo.html +++ b/samples/maps/series/mapdata-multiple/demo.html @@ -1,9 +1,6 @@ - - -
diff --git a/samples/maps/series/mapdata-multiple/demo.js b/samples/maps/series/mapdata-multiple/demo.js new file mode 100644 index 00000000000..db89a88c540 --- /dev/null +++ b/samples/maps/series/mapdata-multiple/demo.js @@ -0,0 +1,48 @@ +(async () => { + + const norway = await fetch( + 'https://code.highcharts.com/mapdata/countries/no/no-all.topo.json' + ).then(response => response.json()); + const norwayMapData = Highcharts.geojson(norway); + + const sweden = await fetch( + 'https://code.highcharts.com/mapdata/countries/se/se-all.topo.json' + ).then(response => response.json()); + const swedenMapData = Highcharts.geojson(sweden); + + + // Initialize the chart + Highcharts.mapChart('container', { + title: { + text: 'Multiple map sources' + }, + + mapNavigation: { + enabled: true, + buttonOptions: { + verticalAlign: 'bottom' + } + }, + + mapView: { + projection: { + name: 'Orthographic', + rotation: [-16, -63] + } + }, + + plotOptions: { + map: { + showInLegend: false + } + }, + + series: [{ + data: [], + mapData: norwayMapData + }, { + data: [], + mapData: swedenMapData + }] + }); +})(); diff --git a/ts/Core/Chart/ChartDefaults.ts b/ts/Core/Chart/ChartDefaults.ts index 3435fabb3a6..e481ac99fba 100644 --- a/ts/Core/Chart/ChartDefaults.ts +++ b/ts/Core/Chart/ChartDefaults.ts @@ -34,16 +34,17 @@ import { Palette } from '../Color/Palettes.js'; const ChartDefaults: ChartOptions = { /** - * Default `mapData` for all series. If set to a string, it functions - * as an index into the `Highcharts.maps` array. Otherwise it is - * interpreted as map data. + * Default `mapData` for all series, in terms of a GeoJSON or TopoJSON + * object. If set to a string, it functions as an index into the + * `Highcharts.maps` array. * - * @see [mapData](#series.map.mapData) + * For picking out individual shapes and geometries to use for each series + * of the map, see [series.mapData](#series.map.mapData). * * @sample maps/demo/geojson - * Loading geoJSON data + * Loading GeoJSON data * @sample maps/chart/topojson - * Loading topoJSON converted to geoJSON + * Loading TopoJSON data * * @type {string|Array<*>|Highcharts.GeoJSON} * @since 5.0.0 diff --git a/ts/Extensions/GeoJSON.ts b/ts/Extensions/GeoJSON.ts index a03beaeb045..353049eca32 100644 --- a/ts/Extensions/GeoJSON.ts +++ b/ts/Extensions/GeoJSON.ts @@ -522,11 +522,8 @@ Chart.prototype.fromLatLonToPoint = function ( // Based on https://github.com/topojson/topojson-specification /* @todo -- How to deal with multiple objects? -- Document that TopoJSON is possible type for chart.map and series.mapData -- Update demos using TopoJSON-client -- Test/set up sample using GeoJSON features or TopoJSON geometries directly as - series.mapData +- Update demos currently using TopoJSON-client +- General docs */ const topo2geo = (topology: TopoJSON, objectName?: string): GeoJSON => { @@ -613,6 +610,8 @@ const topo2geo = (topology: TopoJSON, objectName?: string): GeoJSON => { * Simple areas * @sample maps/demo/geojson-multiple-types/ * Multiple types + * @sample maps/series/mapdata-multiple/ + * Multiple map sources * * @function Highcharts.geojson * diff --git a/ts/Series/Map/MapSeries.ts b/ts/Series/Map/MapSeries.ts index ac65e7390dc..d24183b69cf 100644 --- a/ts/Series/Map/MapSeries.ts +++ b/ts/Series/Map/MapSeries.ts @@ -1284,11 +1284,14 @@ export default MapSeries; * */ /** - * A map data object containing a `geometry` or `path` definition and optionally - * additional properties to join in the `data` as per the `joinBy` option. + * An array of objects containing a `geometry` or `path` definition and + * optionally additional properties to join in the `data` as per the `joinBy` + * option. * * @sample maps/demo/category-map/ * Map data and joinBy + * @sample maps/series/mapdata-multiple/ + * Multiple map sources * * @type {Array|*} * @product highmaps From 69f22624a3de6a6a0d6735c1b6332e0142a7508b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torstein=20H=C3=B8nsi?= Date: Sun, 24 Oct 2021 08:45:09 +0200 Subject: [PATCH 03/10] TopoJSON: Updated samples --- samples/data/europe.topo.json | 1 - samples/data/world-countries.topo.json | 1 - .../highcharts/studies/projection/demo.html | 3 +- samples/highcharts/studies/projection/demo.js | 28 ++++++------------- samples/maps/chart/topojson/demo.html | 4 --- samples/maps/chart/topojson/demo.js | 26 ++++------------- .../maps/demo/topojson-projection/demo.html | 3 +- samples/maps/demo/topojson-projection/demo.js | 13 ++------- samples/maps/series/data-geometry/demo.html | 3 -- samples/maps/series/data-geometry/demo.js | 22 +++------------ ts/Extensions/GeoJSON.ts | 1 - 11 files changed, 23 insertions(+), 82 deletions(-) delete mode 100644 samples/data/europe.topo.json delete mode 100644 samples/data/world-countries.topo.json diff --git a/samples/data/europe.topo.json b/samples/data/europe.topo.json deleted file mode 100644 index 7d30f8029c4..00000000000 --- a/samples/data/europe.topo.json +++ /dev/null @@ -1 +0,0 @@ -{"type":"Topology","objects":{"europe":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","properties":{"NAME":"Azerbaijan"},"id":"AZ","arcs":[[[0,1,2]],[[3]],[[4]],[[5,6,7,8,9,10],[11]]]},{"type":"Polygon","properties":{"NAME":"Albania"},"id":"AL","arcs":[[12,13,14,15,16,17,18]]},{"type":"MultiPolygon","properties":{"NAME":"Armenia"},"id":"AM","arcs":[[[-12]],[[19,-3,20,21,-7],[-5],[-4]]]},{"type":"Polygon","properties":{"NAME":"Bosnia and Herzegovina"},"id":"BA","arcs":[[22,23,24,25,26,27,28,29,30,31]]},{"type":"Polygon","properties":{"NAME":"Bulgaria"},"id":"BG","arcs":[[32,33,34,35,36,37]]},{"type":"Polygon","properties":{"NAME":"Cyprus"},"id":"CY","arcs":[[38]]},{"type":"MultiPolygon","properties":{"NAME":"Denmark"},"id":"DK","arcs":[[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54,55]],[[56]],[[57]]]},{"type":"MultiPolygon","properties":{"NAME":"Ireland"},"id":"IE","arcs":[[[58]],[[59]],[[60]],[[61,62]]]},{"type":"MultiPolygon","properties":{"NAME":"Estonia"},"id":"EE","arcs":[[[63]],[[64]],[[65]],[[66]],[[67]],[[68,69,70,71,72,73,74]]]},{"type":"Polygon","properties":{"NAME":"Austria"},"id":"AT","arcs":[[75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97]]},{"type":"Polygon","properties":{"NAME":"Czech Republic"},"id":"CZ","arcs":[[98,99,100,101,102,103,104,105,106,-76]]},{"type":"MultiPolygon","properties":{"NAME":"Finland"},"id":"FI","arcs":[[[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]]]},{"type":"MultiPolygon","properties":{"NAME":"France"},"id":"FR","arcs":[[[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]]]},{"type":"Polygon","properties":{"NAME":"Georgia"},"id":"GE","arcs":[[164,165,166,167,168,169,170,171,172,173,174,175,176,-10,177,-8,-22,178,179]]},{"type":"MultiPolygon","properties":{"NAME":"Germany"},"id":"DE","arcs":[[[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,-105,211,-103,212,-101,213,-99,-98,214,-96,215,-94,216,-92,217,-90,218,-88,219,220,221,222,223,-149,224,225,226,227,228,229,-55,230]]]},{"type":"MultiPolygon","properties":{"NAME":"Greece"},"id":"GR","arcs":[[[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]],[[297]],[[298,299,-18,300,-16,301,-34]]]},{"type":"MultiPolygon","properties":{"NAME":"Croatia"},"id":"HR","arcs":[[[302]],[[303]],[[304]],[[-32,305,-30,306,307,308]],[[309]],[[310]],[[311]],[[312]],[[313]],[[314]],[[315]],[[316]],[[317]],[[318]],[[319]],[[320]],[[321]],[[322]],[[323,324,325,326,327,328,329,330,331,332,333,334,-26,335,-24,336,337,338,339,340,341,342,343]]]},{"type":"Polygon","properties":{"NAME":"Hungary"},"id":"HU","arcs":[[-330,344,-328,345,-326,346,-324,347,-78,348,349,350,351]]},{"type":"Polygon","properties":{"NAME":"Iceland"},"id":"IS","arcs":[[352]]},{"type":"MultiPolygon","properties":{"NAME":"Israel"},"id":"IL","arcs":[[[353]],[[354]]]},{"type":"MultiPolygon","properties":{"NAME":"Italy"},"id":"IT","arcs":[[[355,-80,356,357,358,359,-156,360,361,362,363,-84,364,-82],[365,366],[367]],[[368]],[[369]],[[370]],[[371]],[[372]],[[373]],[[374]],[[375]],[[376]],[[377]],[[378]],[[379]],[[380]],[[381]],[[382]],[[383]],[[384]],[[385]],[[386]],[[387]],[[388]]]},{"type":"Polygon","properties":{"NAME":"Latvia"},"id":"LV","arcs":[[-74,389,-72,390,-70,391,392,393,394,395,396]]},{"type":"Polygon","properties":{"NAME":"Belarus"},"id":"BY","arcs":[[-393,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426]]},{"type":"MultiPolygon","properties":{"NAME":"Lithuania"},"id":"LT","arcs":[[[427,428]],[[429,-394,-427,430,-425,431,-423,432,433,434,435,436,-396]]]},{"type":"Polygon","properties":{"NAME":"Slovakia"},"id":"SK","arcs":[[-77,-107,437,438,-349]]},{"type":"Polygon","properties":{"NAME":"Liechtenstein"},"id":"LI","arcs":[[-86,439]]},{"type":"Polygon","properties":{"NAME":"The former Yugoslav Republic of Macedonia"},"id":"MK","arcs":[[440,-35,-302,-15]]},{"type":"MultiPolygon","properties":{"NAME":"Malta"},"id":"MT","arcs":[[[441]],[[442]]]},{"type":"Polygon","properties":{"NAME":"Belgium"},"id":"BE","arcs":[[443,444,445,446,447,-228,448,-145,449,450,451]]},{"type":"MultiPolygon","properties":{"NAME":"Faroe Islands"},"id":"FO","arcs":[[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]]]},{"type":"Polygon","properties":{"NAME":"Andorra"},"id":"AD","arcs":[[461,-162]]},{"type":"Polygon","properties":{"NAME":"Luxembourg"},"id":"LU","arcs":[[-227,462,-225,-148,463,-146,-449]]},{"type":"Polygon","properties":{"NAME":"Monaco"},"id":"MC","arcs":[[464,465,-158]]},{"type":"Polygon","properties":{"NAME":"Montenegro"},"id":"ME","arcs":[[-28,466,-13,467,-308,468]]},{"type":"MultiPolygon","properties":{"NAME":"Netherlands"},"id":"NL","arcs":[[[-451,469]],[[470]],[[471]],[[472]],[[473]],[[474]],[[-229,-448,475,-446,476,-444,477]],[[478]],[[479]]]},{"type":"MultiPolygon","properties":{"NAME":"Norway"},"id":"NO","arcs":[[[480]],[[481]],[[482]],[[483]],[[484]],[[485]],[[486]],[[487]],[[488]],[[489]],[[490]],[[491]],[[492]],[[493]],[[494]],[[495]],[[496]],[[497]],[[498]],[[499]],[[500]],[[501]],[[502]],[[503]],[[504]],[[505]],[[506]],[[507]],[[508]],[[509]],[[510]],[[511]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[520]],[[521]],[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532]],[[533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[539]],[[540]],[[541]],[[542]],[[543]],[[544]],[[545]],[[546]],[[547]],[[548]],[[549]],[[550]],[[551]],[[552]],[[553]],[[554]],[[555]],[[556]],[[557]],[[558]],[[559]],[[560]],[[561]],[[562]],[[563]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571,-136,572,573]],[[574]]]},{"type":"Polygon","properties":{"NAME":"Poland"},"id":"PL","arcs":[[-106,-211,575,-209,576,-207,577,-205,578,-203,579,-192,580,581,-433,-422,582,583,584,-438]]},{"type":"Polygon","properties":{"NAME":"Portugal"},"id":"PT","arcs":[[585,586]]},{"type":"Polygon","properties":{"NAME":"Romania"},"id":"RO","arcs":[[587,588,589,590,-37,591,-351]]},{"type":"Polygon","properties":{"NAME":"Republic of Moldova"},"id":"MD","arcs":[[592,593,594,595,596,597,598,599,600,-589]]},{"type":"Polygon","properties":{"NAME":"Slovenia"},"id":"SI","arcs":[[-79,-348,-344,601,-342,602,-340,603,-338,604,-359,605,-357]]},{"type":"MultiPolygon","properties":{"NAME":"Spain"},"id":"ES","arcs":[[[606]],[[607]],[[608]],[[609]],[[610]],[[611]],[[612]],[[613]],[[-163,-462,-161,614,-587,615]]]},{"type":"MultiPolygon","properties":{"NAME":"Sweden"},"id":"SE","arcs":[[[616]],[[617]],[[618]],[[619]],[[620]],[[621]],[[622]],[[623]],[[624]],[[625]],[[626]],[[627]],[[628]],[[629]],[[630]],[[631]],[[632]],[[633]],[[634,-573,-135]]]},{"type":"Polygon","properties":{"NAME":"Switzerland"},"id":"CH","arcs":[[635,-222,636,-220,-87,-440,-85,-364,637,-362,638,-154,639,-152,640,-150,-224],[-181]]},{"type":"MultiPolygon","properties":{"NAME":"Turkey"},"id":"TR","arcs":[[[641]],[[642]],[[643]],[[-179,-21,-2,644]],[[645,-299,-33]]]},{"type":"MultiPolygon","properties":{"NAME":"United Kingdom"},"id":"GB","arcs":[[[646]],[[647]],[[648]],[[649]],[[650]],[[651]],[[652]],[[-63,653]],[[654]],[[655]],[[656]],[[657]],[[658]],[[659]],[[660]],[[661]],[[662]],[[663]],[[664]],[[665]],[[666]],[[667]],[[668]],[[669]],[[670]],[[671]],[[672]],[[673]],[[674]],[[675]],[[676]],[[677]],[[678]],[[679]],[[680]],[[681]],[[682]],[[683]],[[684]],[[685]],[[686]],[[687]],[[688]],[[689]],[[690]],[[691]],[[692]],[[693]]]},{"type":"MultiPolygon","properties":{"NAME":"Ukraine"},"id":"UA","arcs":[[[694]],[[695]],[[696]],[[697,-590,-601,698,-599,699,-597,700,-595,701,-593,-588,-350,-439,-585,702,-583,-421,703,-419,704,-417,705,-415,706,-413,707]]]},{"type":"Polygon","properties":{"NAME":"San Marino"},"id":"SM","arcs":[[708,-367]]},{"type":"Polygon","properties":{"NAME":"Serbia"},"id":"RS","arcs":[[-467,-27,-335,709,-333,710,-331,-352,-592,-36,-441,-14]]},{"type":"Polygon","properties":{"NAME":"Holy See (Vatican City)"},"id":"VA","arcs":[[-368]]},{"type":"MultiPolygon","properties":{"NAME":"Russia"},"id":"RU","arcs":[[[711,-434,-582,712,-428,713,-436]],[[-11,-177,714,-175,715,-173,716,-171,717,-169,718,-167,719,-165,720,-708,-412,721,-410,722,-408,723,-406,724,-404,725,-402,726,-400,727,-398,-392,-69,728,-133,-572,729]]]}]}},"arcs":[[[9439,2245],[-14,6],[-31,9],[-31,11],[-12,5],[-11,5],[-2,7],[0,8],[-10,25],[-5,9],[-2,1],[-1,-2],[-3,-2],[-16,7],[-1,2],[1,4],[-2,11],[-2,6],[-7,14],[-9,11],[-3,1],[-3,3],[-3,11],[-3,14],[-2,17],[-2,3],[-8,2]],[[9257,2433],[0,5],[-3,12],[-2,2]],[[9252,2452],[3,2],[8,3],[3,0],[5,-2],[7,4],[3,4],[4,6],[5,1],[3,-3],[24,-37],[7,-17],[2,-2],[17,-11],[5,2],[12,12],[17,8],[3,0],[8,-5],[3,-3],[1,-27],[4,-21],[18,-18],[2,-6],[0,-2],[-5,-8],[0,-10],[18,-55],[10,-22]],[[9313,2757],[-1,-2],[-3,3],[-1,3],[2,2],[3,-4],[0,-2]],[[9288,2771],[-3,-1],[-2,1],[-3,3],[-1,3],[1,5],[1,2],[5,-1],[3,-5],[0,-5],[-1,-2]],[[9760,2963],[4,-3],[8,-9],[6,-11],[8,-15],[11,-19],[5,-16],[2,-5],[10,-17],[6,-4],[1,-2],[13,-33],[0,-13],[2,-17],[5,-23],[4,-9],[4,-7],[20,-33],[2,-3],[3,-2],[5,0],[3,-4],[5,-6],[0,-5],[-4,-16],[1,-6],[7,-12],[2,-1],[16,-10],[14,-5],[9,1],[8,5],[5,1],[8,-3],[27,-20],[14,-21],[1,-4],[2,-4],[0,-4],[1,-5],[1,-17],[-3,1],[-1,3],[-4,5],[-2,1],[-5,6],[-6,2],[-11,5],[-23,-2],[-15,-8],[-37,-25],[-10,-13],[-10,-25],[1,-4],[3,-6],[0,-12],[-4,-15],[-4,-38],[0,-13],[-1,-1],[-9,-14],[-1,-3],[-4,-28],[1,-4],[2,-4],[5,-8],[5,-5],[4,-4],[1,-4],[-3,-6],[-6,-7],[-1,2],[-4,3],[-3,0],[-4,-5],[-3,-10],[-5,-55],[0,-3],[0,-2],[-5,-11],[-4,-3],[-6,-2],[-4,2],[-1,6],[1,3],[7,2],[4,5],[2,10],[-2,5],[-12,17],[-1,2],[-7,1],[-4,-3],[0,-2],[-4,-12],[0,-14],[1,-4],[2,-1],[0,-4],[-2,-16],[-3,-11],[-4,-8],[-2,-31],[0,-41],[1,-25],[2,-6],[-6,2],[-8,-1],[-16,-14],[-5,1],[-4,5],[-4,13],[-17,36],[-5,1],[-8,-5],[-3,1],[-10,13],[-1,2],[1,10],[0,5],[-8,4],[-5,3],[-17,17],[-1,4],[0,4],[-1,6],[1,4],[9,12],[8,3],[6,0],[10,2],[4,2],[3,6],[2,6],[0,5],[-5,14],[-3,4],[-5,2],[-2,2],[-11,15],[-2,8],[0,8],[1,1],[4,8],[4,5],[9,2],[14,10],[0,3],[-2,5],[-8,13],[-5,5],[-5,8],[-7,11],[-9,16],[-4,7],[-9,11],[-2,1],[-21,-10],[-3,-2],[-3,-7],[-31,-29],[-12,-6],[-8,-5],[-7,-11],[-2,-6],[-4,-7],[-2,-1],[-11,-7],[-4,0],[-9,-9],[-8,-16],[0,-8],[-2,-4],[-9,-6],[-2,-1],[-4,2],[-5,0],[-4,-1],[-1,-1],[-10,-15],[-2,-4],[0,-8],[-1,-2],[-23,-29],[-4,-10]],[[9487,2252],[-6,19],[0,4],[2,10],[2,6],[-1,11],[-2,9],[-3,5],[-3,1],[-5,5],[0,12],[6,1],[10,-8],[1,0],[9,8],[1,3],[-5,6],[-4,3],[-20,26],[-2,3],[-1,5],[0,6],[2,4],[2,0],[11,4],[3,3],[4,13],[0,3],[-4,9],[-22,10],[-4,-1],[-3,-2],[-7,-5],[-7,1],[-1,3],[-16,18],[-2,5],[-5,16],[-12,4],[-5,3],[-1,2],[-5,6],[-5,12],[-1,9],[-6,8],[-6,2],[-12,1],[-3,3],[1,7],[5,3],[6,1],[11,0],[8,-1],[6,-2],[4,1],[2,4],[8,19],[0,1],[3,23],[0,4],[-6,11],[-6,-3],[-4,2],[-29,24],[-3,5],[-14,16],[-16,36],[-4,12],[1,3],[5,14],[3,3],[9,4],[7,4],[3,3],[2,3],[2,13],[-1,4],[-33,30],[-4,0],[-32,13],[-3,8],[-1,4],[1,4],[4,1],[9,-2],[3,1],[3,2],[0,6],[-10,11],[-13,6],[-3,18]],[[9285,2834],[3,4],[18,22],[11,10],[4,3],[6,1],[1,-1],[35,-20],[14,-7],[0,-7],[-1,-3],[0,-5],[5,-7],[9,-7],[11,-8],[14,-5],[8,0],[6,1],[3,5],[2,2],[14,0],[4,-8]],[[9452,2804],[9,-11]],[[9461,2793],[5,-5],[16,-14],[3,0],[13,13],[7,13],[5,23],[-2,14],[-1,2],[-13,14],[-12,5],[-23,21],[-13,27],[-5,17],[0,6],[2,14],[4,2],[3,0],[5,-2],[3,0],[4,5],[8,12],[3,11],[2,7]],[[9475,2978],[14,-3],[2,-1],[0,-2],[9,-14],[1,0],[15,12],[2,-5],[0,-11],[5,-8],[18,-20],[10,-15],[9,-13],[6,3],[4,-5],[12,-30],[2,-6],[-1,-11],[2,-11],[2,-1],[11,-9],[26,-14],[3,-1],[2,1],[3,4],[5,1],[12,-10],[2,0],[12,4],[6,2],[3,4],[0,3],[-2,5],[0,6],[6,15],[15,25],[1,2],[5,4],[10,2],[6,2],[19,16],[6,9],[2,7],[13,31],[7,17]],[[9350,2669],[2,-1],[6,6],[2,6],[-4,3],[-5,0],[-2,-2],[-2,-5],[1,-5],[2,-2]],[[5861,2967],[-4,15],[4,36],[4,9],[0,2],[-4,5],[-5,5],[-7,7],[32,63],[11,23],[1,1],[0,6],[3,9],[3,6],[7,7],[2,0],[4,-5],[3,-10],[0,-2],[-3,-3],[-1,-8],[3,-9],[4,-6],[3,-2],[13,9],[2,1],[15,11],[3,-1]],[[5954,3136],[5,-6],[7,-5],[8,-19],[1,-2],[2,-13],[0,-10],[2,-2],[13,-2],[5,-2],[9,-6],[7,-11],[2,-4],[13,-59],[-1,-8],[-4,-2],[-1,-5],[2,-6]],[[6024,2974],[-3,-1],[-5,-24],[-2,-6],[0,-6],[2,-23],[-9,-19],[-1,-9],[2,-4],[5,-9],[7,-11],[-2,-10],[-3,-5],[-4,-1],[0,-7],[1,-4],[2,-13],[8,-20],[3,-17],[9,-1],[9,-42],[2,-2],[8,-1],[2,2],[2,5],[14,-3],[4,-3],[1,-2],[0,-10]],[[6076,2728],[0,-15],[5,-18],[4,-9],[1,-4],[0,-10],[-1,-1],[-1,-14],[-12,-21],[-2,-2],[-3,1],[-11,-1],[-5,-9],[-1,-7],[-4,-21],[-3,-2],[-3,-5],[0,-7],[1,-2],[0,-5],[-6,-29],[-1,-2],[-6,-2],[-2,-2],[-7,-3],[-10,-1],[-2,4],[-4,-3],[-16,-17],[3,-18],[10,-16],[0,-9],[-1,-4],[-4,-2],[-9,5],[-2,-1],[1,-8],[2,-8],[0,-3],[-12,-19],[-4,0]],[[5971,2438],[-7,2]],[[5964,2440],[-7,5],[-8,5],[-3,-2]],[[5946,2448],[-3,-1],[0,44],[-6,16],[-10,25],[-3,2],[-10,5],[-2,3],[-3,6],[-29,20],[-7,7],[-8,15],[-15,33],[0,1],[4,3],[3,-2],[6,-8],[3,-7],[1,-9],[3,0],[4,4],[2,4],[1,19],[-5,29],[0,1],[-5,4],[-3,0],[-12,16],[6,9],[1,4],[7,28],[1,12],[5,3],[2,0],[7,7],[0,6],[-1,9],[-10,12],[2,8],[8,47],[0,6],[-4,7],[-4,0],[-1,24],[10,39],[6,4],[3,5],[0,7],[-2,11],[1,4],[2,18],[1,4],[-1,5],[-9,6],[-5,4],[-9,3],[-7,-3]],[[9487,2252],[-12,4],[-10,5],[-4,0],[-7,-3],[-2,-3],[-4,-4],[-1,-2],[-6,-4],[-2,0]],[[9252,2452],[-4,6],[-13,16],[-8,8],[0,1],[-5,13],[-1,6],[-8,12],[-17,14],[-10,5],[-31,-7],[-3,-3],[-8,2],[-8,2],[-34,22],[-1,4],[2,5],[8,2],[0,2],[-8,27],[-7,22],[-3,20],[1,11],[8,8],[8,21],[1,1],[3,11],[1,17],[-1,8],[-9,36],[-1,1],[-8,15],[-2,2],[-5,0],[-10,6],[-1,2],[-3,14],[1,6]],[[9076,2790],[14,5],[10,-3],[13,-2],[8,1],[7,10],[7,2],[12,-1],[18,3],[4,2],[3,5],[9,4],[13,-2],[12,-6],[18,-2],[21,8],[18,0],[2,1],[14,13],[6,6]],[[5631,3215],[-9,13]],[[5622,3228],[12,4],[2,3],[-3,17],[-4,8],[-10,11],[-16,15],[-17,21],[-2,3],[-1,4],[-1,8],[-3,20],[0,4],[2,1],[0,2],[-3,6],[-12,7],[-6,2],[-9,8],[-10,10],[-2,6],[-3,4],[-14,25],[-16,23],[-2,8],[-7,15],[-14,23],[-3,1],[-10,2],[-12,12],[-2,3],[-4,13],[-6,11],[-2,1],[-6,0],[-4,-1],[-4,1]],[[5430,3529],[0,2]],[[5430,3531],[7,27],[1,10],[-9,31],[-2,5],[-6,5],[-5,11],[-4,11],[-6,18],[-2,3],[-2,1],[-8,-1],[-2,1],[-12,15],[-4,10],[1,3],[3,23],[0,37],[2,20],[5,10],[2,2],[14,5],[10,-4],[3,-3],[10,-17],[11,-21],[7,-7],[6,-4],[7,1],[2,2],[1,8],[7,20],[8,14],[3,5],[3,4],[10,2],[11,-7],[18,-3],[3,0],[1,2],[9,17],[16,-11],[1,-5],[4,-3],[14,-10],[9,0],[5,7],[27,-11],[0,-5],[15,0],[13,3],[9,-10],[10,-6],[4,-2],[9,7],[18,7],[8,-7],[9,0],[3,4],[-1,4],[1,5],[5,2],[2,-1],[20,-6],[28,-7],[22,-20],[1,-12],[-3,-2],[-2,1],[1,-6],[2,-5],[8,-9],[15,-2],[1,1],[10,1]],[[5817,3689],[17,15],[3,0],[14,-4],[2,0],[8,-4],[2,-6],[-5,-23],[-1,0],[-1,-5],[-3,-11],[-16,-34],[-7,-9],[-2,-2],[-2,-33],[-1,-5],[4,-10],[5,-7],[9,-5],[1,0],[15,-14],[17,-20],[15,-15],[3,-1],[0,-10],[-11,-13],[-2,-1],[-12,0],[-8,1],[-2,4],[-6,5],[-9,4],[-1,-3],[2,-10],[15,-24],[15,-22],[2,-1],[1,-7],[2,-9],[0,-4],[-3,-23],[-1,-4],[-10,3],[-16,-9],[-8,-7]],[[5842,3366],[-2,1],[-27,9],[-1,0],[-7,-10],[1,-16],[5,0],[4,-4],[9,-29],[0,-2],[-3,-14],[-3,-3],[-4,2],[-8,13],[-1,0],[1,8],[-6,8],[-6,-1],[-4,-2],[-18,-21],[-1,-2],[-7,-26],[0,-3],[2,-9],[0,-6],[-1,-6],[-3,-2],[-7,-1],[-6,-4],[-5,-6],[-2,-9],[-3,-29],[0,-3],[5,-13],[2,-8],[5,-2],[2,-4],[2,-10],[0,-6],[-1,-2],[-4,-5],[-10,-11],[-1,0]],[[5739,3138],[-6,10]],[[5733,3148],[-7,5]],[[5726,3153],[-3,1]],[[5723,3154],[-3,-3],[-4,-1],[-3,2],[-5,7],[-10,10],[-20,16],[-16,13],[-4,10],[-1,4],[-7,8],[-6,4],[-6,1],[-7,-10]],[[7014,2999],[-5,0],[-14,5],[-5,-1],[-17,-6],[-9,-4],[-5,-7],[-2,-5],[-4,0],[-19,20],[-5,11],[-1,4],[-10,11],[-8,2],[-25,-6],[-2,-2],[-9,-17],[-4,0],[-41,-8],[-7,-9],[-2,-2],[3,-7],[-3,-6],[-1,-9],[-1,-3],[-20,0],[-6,-7],[-2,-10],[1,-6],[3,-4]],[[6794,2933],[-11,0],[-6,7],[-2,1],[-7,1],[-4,-2],[-8,-6],[-1,-5],[0,-8],[4,-8],[4,1],[1,-1],[6,-20],[2,-26],[-8,-19],[-20,-9],[-1,-1],[-10,-2],[-3,0],[-9,7],[-22,-5],[-12,1],[-1,-2],[-7,-5],[-21,-9],[-8,-2],[-6,2],[-6,11],[-4,4],[-14,12],[-3,2],[-18,10],[-11,-2],[-1,-7],[0,-6],[-6,5],[-20,13],[-2,2],[-5,16],[-13,11],[-22,0],[-4,5],[-2,0],[-8,-6],[-5,0],[-9,1],[-4,-5],[1,-10],[-12,-11],[-12,2],[-12,-3],[-8,-6],[-14,-8],[-5,0],[-8,5],[-13,3],[-21,-1],[-7,-7],[0,-7],[-5,-6],[-2,-1],[-11,0],[-16,4],[-5,2]],[[6337,2845],[4,6],[-2,55],[0,8],[5,9],[6,13],[-3,9],[-2,3],[-4,0],[-9,25],[-1,1],[-2,14],[-7,21],[-1,0],[-18,8],[-10,11],[-12,10],[0,1],[-15,31],[-5,10]],[[6261,3080],[6,2],[14,17],[1,0],[2,6],[2,13],[-1,8],[-11,12],[-2,9],[-1,50],[1,3],[8,12],[2,2],[12,3],[6,-3],[10,1],[1,1],[30,51],[3,8],[2,13],[-9,4],[-4,6],[-8,12],[0,3],[-2,7],[-9,15],[0,1],[-7,2],[-11,8],[-11,9],[-2,3],[-16,54],[-6,28],[7,44],[0,1],[16,12],[2,1],[8,13],[1,13],[4,9],[4,4]],[[6303,3537],[2,-4],[28,-23],[5,-2],[8,-1],[5,-7],[0,-4],[-1,-3],[-4,-7],[-3,-1],[-3,1],[-10,-6],[-1,-2],[-5,-19],[1,-8],[2,-5],[4,-4],[10,-4],[13,-3],[11,2],[2,1],[8,5],[6,4],[21,1],[11,-5],[4,-5],[4,-2],[5,-2],[3,0],[20,-2],[28,-11],[11,-5],[6,-6],[6,-3],[5,0],[12,2],[8,-1],[8,6],[4,5],[9,7],[3,-1],[5,0],[7,-2],[9,-9],[3,-1],[23,0],[19,-1],[27,-5],[7,-3],[5,-6],[8,-6],[8,1],[4,3],[9,0],[11,6],[9,5],[7,1],[4,2],[3,3],[12,16],[2,6],[6,9],[2,3],[17,23],[7,8],[23,11],[11,4],[7,0],[6,2],[25,4],[17,7],[13,8],[3,1],[16,2],[10,0],[12,-5],[5,0],[5,2],[0,-6],[3,-7],[14,-14],[10,-1],[18,1],[5,6],[1,0],[4,-6],[1,-6],[2,-5],[3,-4],[10,1],[6,4],[8,7],[1,0],[5,-8],[0,-6],[1,-2],[3,-16],[1,-3],[7,-8],[11,-6],[7,-4],[7,-4],[3,-1],[20,-3],[10,-2],[14,1]],[[7091,3422],[-1,-3],[-1,-12],[0,-21],[5,-11],[0,-4],[-7,-22],[-10,-13],[-4,-1],[-3,1],[-6,6],[-6,2],[-5,0],[-20,-4],[-4,-4],[-6,-9],[-3,-19],[-5,-11],[-10,-14],[-7,-30],[-1,-2],[1,-6],[1,-20],[1,-8],[0,-9],[-3,-3],[2,-10],[0,-25],[-16,4],[-5,0],[-2,-2],[-12,-18],[-16,-18],[-3,-5],[-6,-13],[0,-4],[2,-4],[6,-5],[3,4],[3,1],[9,-1],[8,-6],[3,-4],[-1,-4],[1,-4],[6,-26],[4,-8],[16,-23],[6,-6],[3,-9],[5,-8],[3,-9],[-2,-3]],[[7767,1407],[8,8],[7,4],[6,-1],[6,1],[15,9],[43,31],[6,5],[2,4],[5,5],[22,13],[5,2],[-2,-11],[-25,-27],[-14,-14],[-7,-4],[-15,-14],[-22,-21],[-4,-10],[-2,-6],[-1,-7],[0,-13],[10,-18],[8,-10],[3,-6],[1,-3],[2,-3],[1,-8],[-7,2],[-1,2],[-7,1],[-8,-3],[-2,-3],[-4,-4],[-3,1],[-4,5],[-15,2],[-4,-2],[-4,-6],[0,-4],[-2,-11],[1,-4],[-4,-9],[-12,-10],[-19,-13],[-6,-3],[-2,0],[-13,-3],[-9,1],[-4,-1],[-7,-4],[-5,-7],[-3,-5],[0,-10],[3,-7],[-6,2],[-6,-2],[0,7],[-5,13],[-6,4],[-4,0],[-8,-2],[-3,-3],[-6,-1],[-8,4],[-20,12],[-3,1],[-8,10],[-1,0],[-8,26],[-2,11],[-7,31],[0,7],[-1,3],[1,3],[3,1],[2,-4],[8,-10],[7,1],[5,6],[6,10],[1,8],[5,9],[2,-2],[13,6],[8,-3],[14,-10],[2,0],[9,10],[1,5],[2,15],[1,16],[-2,6],[0,9],[2,0],[8,-6],[36,-7],[11,-2],[17,0],[20,4],[3,1]],[[4812,6082],[7,-2],[10,12],[1,8],[12,-12],[15,-22],[2,-5],[-1,-15],[-3,-5],[-6,-6],[-7,1],[-6,4],[-15,2],[-15,-12],[-2,0],[-14,11],[-11,11],[-11,5],[-20,6],[-2,1],[-4,8],[5,6],[-1,17],[1,6],[4,6],[9,4],[6,1],[10,0],[5,-2],[8,-8],[1,-6],[8,-7],[14,-7]],[[4882,6096],[3,-1],[5,1],[3,-3],[7,-9],[-8,-10],[-5,-3],[-14,-21],[-1,-3],[0,-14],[3,-14],[-3,-2],[-5,4],[-7,18],[0,4],[4,12],[-13,29],[-7,5],[-6,18],[5,6],[14,-1],[2,-2],[18,-11],[5,-3]],[[4668,6084],[-4,-4],[-21,19],[0,1],[-7,12],[-1,5],[16,-12],[18,-15],[-1,-6]],[[4952,6114],[-3,-5],[-18,5],[-9,-1],[-3,-2],[-7,-8],[-10,-10],[-5,1],[-4,5],[2,13],[6,6],[18,13],[19,-2],[10,-5],[4,-10]],[[4692,6110],[-6,-1],[-2,1],[-5,7],[-2,5],[1,2],[15,9],[2,0],[5,-12],[0,-4],[-8,-7]],[[4583,6140],[23,-16],[1,0],[3,-6],[1,0],[5,-10],[4,-17],[-16,-3],[-20,9],[-3,4],[-3,12],[0,5],[8,-8],[3,-2],[0,7],[-6,10],[-13,-1],[-3,2],[-6,9],[10,7],[6,1],[6,-3]],[[4711,6069],[-5,-13],[-3,1],[-3,5],[-3,21],[4,17],[8,13],[8,7],[7,13],[5,15],[2,7],[4,6],[3,-1],[0,-4],[-3,-12],[0,-3],[-3,-12],[-3,-9],[-4,-5],[-3,-6],[-7,-24],[-4,-16]],[[5284,6121],[-1,0],[-21,8],[-18,9],[-9,8],[2,28],[6,19],[4,3],[7,-12],[9,-7],[14,-10],[9,-6],[10,-5],[2,-12],[-6,-15],[-4,-7],[-4,-1]],[[4405,6203],[-3,1],[-5,8],[-6,19],[4,4],[2,0],[8,-10],[2,-20],[-2,-2]],[[4710,6238],[6,-29],[4,-13],[2,-4],[-3,-20],[0,-5],[-4,-15],[-6,-13],[-2,-2],[-14,0],[-5,-2],[-7,-6],[-4,0],[-46,14],[-3,8],[3,1],[-7,15],[-1,1],[-12,1],[-14,21],[-1,1],[-1,14],[-10,22],[-6,7],[-5,2],[-6,4],[-1,2],[10,10],[8,2],[3,-1],[0,-5],[3,-4],[7,-1],[4,2],[8,7],[22,9],[7,5],[10,4],[3,0],[12,-6],[0,-1],[11,-13],[-3,-5],[-1,-7],[-4,-3],[-1,-6],[3,-2],[5,1],[16,10],[2,3],[1,17],[-2,10],[2,3],[6,-8],[11,-21],[0,-4]],[[4955,6255],[-2,-1],[-3,2],[-4,7],[-1,5],[6,6],[5,12],[2,3],[6,-14],[3,-11],[-12,-9]],[[4694,6330],[5,1],[-7,-26],[-2,-2],[-8,1],[-2,2],[-1,9],[0,40],[3,6],[3,0],[0,-10],[9,-21]],[[4953,6360],[-6,-12],[-1,-7],[8,-15],[3,-12],[0,-12],[-2,-3],[2,-9],[-6,-10],[-7,-7],[-1,-6],[-6,0],[-2,3],[-6,0],[-6,-6],[-12,-9],[-8,-15],[0,-9],[5,-7],[9,-6],[9,-1],[5,-4],[4,-4],[3,-6],[1,-12],[-5,-7],[-12,-5],[-6,-1],[-6,1],[-6,-2],[-22,-13],[-3,-3],[1,-4],[5,-4],[5,-1],[7,1],[4,-2],[-1,-30],[-13,-6],[-4,-1],[-9,3],[-3,4],[-5,2],[-3,-3],[1,-3],[-8,10],[-15,10],[7,16],[2,7],[-7,10],[-3,2],[-4,0],[-4,-5],[-7,0],[-7,1],[-17,6],[-10,-3],[-4,-3],[-8,1],[-3,2],[-8,33],[5,12],[-2,14],[-7,29],[-8,22],[-2,3],[-11,5],[-15,8],[1,3],[7,0],[0,-1],[25,-3],[3,-4],[8,-2],[18,12],[19,22],[4,11],[-1,8],[-4,4],[-4,2],[-12,1],[-10,5],[-2,5],[18,-7],[27,-6],[7,1],[12,6],[4,-2],[0,-2],[-6,-7],[-9,-8],[0,-17],[6,-5],[3,0],[4,-10],[4,-16],[0,-6],[4,4],[1,7],[1,13],[8,40],[3,0],[5,-3],[5,-7],[8,-33],[-1,-6],[-3,-2],[-8,1],[-4,-10],[0,-7],[16,0],[5,12],[0,6],[-3,9],[-4,38],[-5,10],[-10,-3],[-6,-3],[-3,0],[-2,3],[1,4],[8,7],[34,26],[14,5],[7,0],[25,-9],[2,-1],[12,-10],[0,-3],[-4,-7],[-3,-2]],[[4819,6523],[-2,0],[-6,8],[1,2],[17,3],[1,-1],[-11,-12]],[[4467,6583],[-6,-29],[-7,-13],[-8,-12],[0,-1],[-15,-4],[-7,13],[-8,3],[-3,-2],[-2,2],[5,13],[10,9],[4,12],[3,2],[3,-1],[6,1],[10,3],[2,3],[1,5],[3,5],[5,0],[2,-2],[2,-7]],[[4536,6080],[-7,3],[-2,-1],[-2,-5],[-2,-1],[-12,1],[-2,1],[-2,5],[0,4],[-8,3],[-30,10],[-15,2],[-15,-7],[-4,2],[-3,5]],[[4432,6102],[-1,16],[3,32],[-16,-3],[0,-5],[-7,-5],[-3,0],[-2,3],[-2,11],[1,2],[1,12],[5,5],[10,-2],[2,-2],[-5,-4],[-1,-5],[11,-4],[7,0],[1,3],[-4,15],[-1,12],[0,12],[1,7],[-4,16],[-1,7],[-5,4],[-15,2],[-5,0],[-18,24],[-6,-15],[-21,11],[-2,5],[7,16],[6,24],[0,7],[-2,23],[-2,11],[-4,20],[2,2],[2,-4],[0,-4],[2,-8],[0,-6],[2,-13],[0,-7],[2,0],[10,6],[7,5],[9,7],[-1,9],[-9,20],[-1,11],[-12,10],[-10,4],[-1,-2],[1,-8],[-1,-18],[-3,1],[-2,13],[0,16],[3,55],[-1,24],[0,24],[1,2],[5,22],[6,14],[2,1],[2,-6],[-4,-13],[6,-6],[10,-6],[10,0],[16,-9],[15,-17],[13,2],[2,3],[1,13],[2,2],[-1,3],[-7,4],[-4,8],[21,23],[3,9],[12,12],[2,1],[15,0],[5,-4],[5,-21],[-2,-2],[-11,-16],[-1,-9],[2,-7],[4,2],[2,10],[16,5],[6,-1],[2,-2],[-1,-4],[-4,-5],[2,-6],[7,-9],[8,6],[0,5],[-4,0],[-3,28],[-4,6],[-3,-1],[-1,-3],[-10,-5],[-3,1],[0,52],[2,6],[15,19],[2,2],[13,3],[10,0],[5,-1],[5,-2],[17,9],[11,3],[12,-2],[11,2],[5,5],[20,-14],[7,-5],[6,-3],[12,0],[-4,-7],[-2,-13],[2,-18],[3,-18],[-9,-7],[-11,0],[-39,-18],[3,-2],[6,0],[10,6],[10,6],[13,2],[21,0],[1,-1],[3,-6],[0,-7],[-4,-5],[-4,-1],[-4,-4],[-8,-10],[-4,-20],[5,1],[0,4],[0,12],[2,3],[9,6],[3,-3],[4,-1],[1,-2],[8,-8],[14,-4],[7,1],[8,3],[16,2],[3,2],[8,-4],[4,-4],[12,-14],[-6,-24],[-2,-4],[-21,-39],[-10,5],[3,5],[-3,5],[-7,0],[-9,-12],[-1,-4],[4,-8],[0,-4],[-4,-3],[-3,0],[-18,15],[-6,8],[13,7],[5,-1],[4,10],[-1,2],[-7,5],[-6,0],[-21,-27],[-4,-10],[4,-5],[5,-24],[-4,-24],[-9,-22],[-6,4],[-1,6],[-4,2],[-7,0],[-9,0],[-15,-6],[0,-3],[11,-3],[6,0],[7,-2],[-1,-16],[-8,-10],[-20,-9],[-4,0],[-9,3],[-1,2],[-10,5],[-14,-1],[2,-3],[10,0],[11,-11],[13,-10],[-15,-18],[-15,-25],[-1,-3],[3,-6],[-2,-5],[9,-20],[7,-7],[0,-4],[-3,-10],[-4,-3],[-4,-1],[-1,2],[-4,1],[-4,-2],[-10,-8],[-4,-8],[7,-17],[5,-4],[12,-5],[11,-4],[2,-3],[1,-8],[3,-11],[-2,-16],[-3,-2],[-13,6],[-1,1],[-1,7],[4,4],[0,4],[-7,2],[-18,-21],[-2,-4]],[[4770,6677],[-18,-17],[-5,-3],[-6,-1],[-5,5],[-3,2],[-5,-2],[-4,3],[9,11],[14,4],[16,3],[7,-2],[0,-3]],[[4668,6744],[0,-9],[3,-8],[10,-25],[2,-44],[-14,-13],[-3,-9],[-11,-36],[-15,0],[-4,3],[-21,19],[-5,2],[-66,-11],[-29,-10],[-4,-2],[-5,2],[-10,10],[-4,2],[1,-3],[-2,-3],[-9,-5],[-4,4],[-1,-1],[-15,-5],[-8,-7],[-10,-5],[-2,2],[-9,-3],[-7,-15],[0,-6],[-8,-11],[-8,-3],[-2,-5],[-3,-19],[-6,-5],[10,-2],[6,1],[4,4],[4,-2],[1,-13],[-1,-5],[-6,-6],[-4,3],[-6,8],[-5,6],[-6,5],[-19,6],[-2,2],[0,15],[1,9],[6,13],[6,10],[6,10],[9,15],[21,26],[2,2],[5,0],[11,-5],[9,0],[5,1],[7,3],[16,7],[19,-4],[11,0],[3,1],[16,2],[15,11],[7,7],[4,5],[9,15],[8,15],[9,19],[24,33],[1,2],[27,0],[7,3],[7,2],[19,15],[13,12],[7,5],[6,0],[5,-2],[-9,-6],[-13,-17],[-4,-6],[-2,-6]],[[1987,5696],[-7,1],[-2,10],[8,3],[3,-8],[-2,-6]],[[1946,5886],[3,-5],[2,-10],[0,-7],[-3,-12],[-4,0],[-10,9],[-1,4],[-12,8],[-3,0],[-12,2],[-1,2],[11,7],[4,0],[5,-3],[7,7],[12,0],[2,-2]],[[2139,6114],[-6,0],[1,9],[4,2],[4,-4],[1,-6],[-4,-1]],[[2439,5906],[4,-6],[9,-9],[3,-2],[3,1],[3,-8],[-2,-4],[-3,-2],[-3,0],[-9,3],[-13,6],[-4,-1],[-3,-13],[0,-10],[2,-6],[5,-5],[5,-1],[5,-7],[2,-12],[-2,-15],[2,-11],[3,-10],[9,-10],[6,-2],[3,-4],[1,-6],[-10,-38],[-10,-7],[0,-2],[15,-23],[10,-33],[0,-1],[3,-39],[-7,-20],[-6,-5],[-4,-9],[-1,-4],[0,-12],[-9,-16],[-1,-6],[0,-7],[2,-3],[1,-5],[0,-8],[-6,-12],[-16,-25],[-15,-6],[-3,-4],[12,-16],[4,-2],[7,-8],[1,-3],[-1,-3],[-4,-10],[-4,0],[-10,4],[-21,0],[-23,6],[-5,-12],[-10,-1],[-1,9],[-9,18],[-3,0],[2,-3],[2,-8],[0,-15],[-4,-8],[-13,-3],[-1,3],[-7,4],[-28,-4],[-9,-3],[-19,-5],[-5,-9],[7,-1],[3,-3],[-6,-14],[0,-1],[-17,-11],[-13,0],[-3,2],[-2,7],[0,-7],[-5,-14],[-18,-13],[-9,-6],[-10,-4],[-1,-1],[-8,1],[-2,4],[3,5],[6,4],[0,1],[-4,8],[-21,2],[-3,0],[-4,-2],[-1,-3],[9,0],[3,-2],[5,-15],[0,-10],[-1,-5],[-4,-4],[-11,-4],[-14,-10],[-2,-4],[-3,-3],[-18,-15],[-6,1],[-19,-2],[-31,-5],[-6,-7],[-10,-10],[-16,-2],[-3,0],[-10,15],[-25,-5],[-9,-10],[-1,-2],[-14,-4],[0,7],[2,3],[12,10],[6,3],[3,3],[7,9],[0,4],[-25,-14],[-6,-2],[-2,2],[8,9],[23,14],[11,4],[8,4],[2,3],[1,6],[-1,2],[-11,5],[-2,-6],[-11,-8],[-19,-7],[-4,-1],[-17,-7],[0,-2],[-13,-5],[-14,0],[1,3],[9,9],[10,8],[0,7],[-2,3],[4,2],[26,18],[24,14],[2,2],[-8,-1],[-9,-3],[-31,-13],[-15,-6],[-7,-6],[-10,9],[1,6],[-1,4],[-4,5],[-5,-2],[-12,-14],[-2,15],[-3,7],[15,27],[18,10],[5,1],[4,2],[10,2],[24,17],[6,7],[0,1],[-17,0],[-7,-2],[-15,-4],[-18,-6],[-12,0],[-7,2],[-5,-1],[-2,-1],[-9,-2],[-3,2],[0,10],[1,9],[14,11],[14,11],[11,3],[2,0],[0,-4],[27,-10],[9,0],[19,3],[-3,6],[-3,0],[-6,5],[-1,22],[11,16],[11,17],[0,8],[6,5],[2,0],[33,3],[2,-3],[3,1],[15,3],[32,10],[22,9],[-4,6],[-14,8],[-10,2],[-5,-10],[-4,-5],[-7,-12],[-3,-2],[-10,0],[-32,1],[-10,6],[-18,-9],[-2,-2],[1,-4],[-13,-4],[-12,-2],[-2,-1],[-5,2],[4,4],[8,4],[4,0],[34,36],[11,15],[10,19],[2,11],[-10,0],[-1,3],[26,47],[3,4],[14,-11],[11,2],[9,7],[-6,5],[1,1],[8,-1],[0,-2],[6,-5],[-1,30],[-2,2],[-11,1],[-8,-5],[-9,-2],[-8,-1],[-10,0],[-18,-2],[-5,-2],[-3,0],[-15,2],[-2,1],[0,3],[2,12],[3,5],[4,4],[0,9],[-1,1],[-12,1],[-7,-6],[0,-3],[-4,-8],[-7,-4],[-15,5],[2,9],[6,3],[6,2],[2,5],[-2,5],[-2,1],[-9,-2],[-6,-4],[0,-3],[-5,-3],[-7,1],[-22,8],[-3,32],[2,2],[20,13],[6,1],[15,1],[11,-3],[1,-1],[12,0],[0,2],[-11,0],[-5,2],[-6,3],[-7,7],[-1,9],[2,15],[8,4],[22,4],[10,-2],[6,4],[-7,4],[0,6],[5,2],[2,4],[0,7],[-18,2],[-3,-2],[-6,0],[-3,-4],[-4,-2],[-10,-2],[-6,1],[4,22],[6,0],[6,-3],[2,-3],[0,-4],[3,1],[-1,8],[-5,8],[-4,3],[-11,16],[0,12],[2,2],[-3,15],[-8,9],[-1,0],[-9,-17],[2,-14],[-2,-1],[-5,1],[-1,5],[2,29],[6,8],[8,9],[1,0],[15,-11],[-2,-6],[-4,-3],[-4,1],[-2,3],[0,-5],[2,-1],[9,-1],[3,5],[3,9],[0,14],[6,3],[29,-6],[12,1],[21,0],[10,-4],[7,-6],[2,-9],[6,-14],[2,-1],[1,7],[9,19],[2,1],[15,-1],[3,-1],[22,-4],[17,-2],[20,5],[-5,12],[-10,4],[-6,-2],[-5,1],[2,6],[36,26],[13,1],[2,12],[9,12],[4,4],[-2,9],[-27,-2],[-23,-1],[-3,-1],[-13,3],[-3,4],[-6,1],[-6,4],[-1,8],[18,15],[18,7],[5,2],[17,9],[7,9],[0,1],[-4,8],[-5,-1],[0,-6],[-2,0],[-6,4],[-2,5],[-1,6],[8,-2],[2,2],[-5,6],[-4,7],[18,28],[19,6],[21,11],[5,8],[11,-9],[4,5],[2,6],[8,5],[0,-6],[-2,-4],[0,-6],[5,1],[8,-6],[2,-4],[0,-7],[-1,-4],[2,0],[3,10],[-1,8],[-3,11],[-3,0],[1,-11],[-5,5],[-5,3],[3,7],[13,9],[5,-2],[14,-33],[0,-7],[-5,-3],[-10,-10],[-6,-20],[3,-1],[7,7],[4,5],[8,6],[8,4],[2,2],[-1,17],[-8,14],[-5,5],[0,3],[5,13],[16,5],[5,10],[-6,10],[3,1],[18,-6],[7,-4],[1,-2],[17,-14],[13,-6],[3,-1],[0,-5],[-2,-2],[-16,-9],[-10,-5],[-7,-8],[-7,-12]],[[2308,6139],[-10,-6],[-11,-22],[-7,-23],[-3,-6],[-10,-18],[-24,-11],[-12,6],[-13,-8],[1,-8],[9,-10],[10,-1],[3,-7],[-11,-10],[-16,-5],[-12,-7],[-17,-9],[2,-6],[12,-17],[5,-3],[12,-14],[8,-2],[1,-2],[0,-12],[1,-3],[6,-5],[10,0],[6,1],[10,-8],[0,-5],[9,-6],[30,-2],[2,-1],[5,2],[18,25],[0,8],[-4,8],[2,11],[14,18],[2,2],[9,-4],[7,-8],[7,-7],[2,-13],[16,-25],[10,-28],[5,-7],[7,4],[16,1],[11,10],[1,4],[3,0],[9,-4]],[[6478,6866],[-4,0],[-3,2],[0,7],[3,4],[4,0],[4,-3],[0,-3],[-4,-7]],[[6344,6986],[13,-8],[27,-20],[6,-8],[-1,-3],[-8,-2],[-5,2],[-4,3],[-8,-1],[-8,-8],[-2,-6],[-5,-7],[-36,-28],[-15,-2],[-8,2],[-15,0],[-13,-4],[-12,-9],[-3,-6],[2,-6],[-2,-10],[-8,-26],[-14,-13],[-3,-5],[-5,-2],[-4,1],[-2,4],[-2,8],[1,5],[13,24],[9,2],[7,13],[-4,4],[-4,-1],[-9,4],[-27,20],[-4,7],[0,4],[4,10],[2,1],[9,0],[7,2],[-2,7],[-12,21],[-5,2],[-5,6],[2,1],[11,2],[9,0],[16,-6],[11,14],[18,7],[23,6],[16,-2],[19,1],[1,2],[5,2],[8,1],[6,-1],[10,-4]],[[6394,6968],[-18,0],[-2,1],[-17,13],[-4,4],[0,4],[12,12],[5,3],[4,0],[8,-4],[10,-5],[7,-20],[-3,-7],[-2,-1]],[[6382,7073],[-15,0],[-2,2],[-5,11],[2,4],[3,1],[26,-1],[4,-3],[3,-7],[-3,-4],[-11,-2],[-2,-1]],[[6312,7082],[7,0],[8,1],[9,-5],[3,-4],[13,-29],[-4,-6],[-2,3],[-6,3],[-10,-3],[-3,-2],[3,-2],[0,-10],[-5,-1],[-8,0],[-1,5],[6,5],[1,2],[-3,2],[-5,-2],[-8,-10],[-3,-9],[-1,-6],[-8,-6],[-10,-1],[-10,3],[0,4],[0,12],[-3,16],[-3,6],[-6,7],[-2,1],[-12,0],[-4,-3],[-3,0],[-8,3],[-14,7],[-2,6],[3,2],[16,-1],[25,1],[8,3],[7,6],[12,19],[16,-4],[0,-9],[2,-3],[5,-1]],[[7015,7197],[8,-6],[14,-15],[2,-7],[-2,-8],[-3,-8],[-2,-2],[-12,-3],[-6,0],[-2,2],[-6,0],[-5,-3],[-4,-10],[-6,-20],[-4,-10],[-2,-10],[-12,-18],[-20,-20],[-3,-1],[-5,-4],[-5,-7],[-4,-8],[-1,-10],[4,-22],[5,-26],[5,-19],[3,-21],[0,-11],[-7,-9],[-4,-7],[1,-20],[1,-3],[9,-16],[3,-3],[11,-7],[4,-5],[1,-26],[11,-16],[7,-4],[0,-4],[-9,-6],[-7,-2],[-4,0],[-17,-3],[-19,-32],[0,-2],[-7,-20],[1,-11],[2,-4]],[[6929,6730],[-8,-1],[-30,8],[-9,12],[-3,2],[-12,3],[-5,0]],[[6862,6754],[-23,-14],[-9,-4]],[[6830,6736],[-2,-3],[0,-5],[-10,-1],[-4,1],[-26,20],[-6,5],[-10,16],[-22,31],[-11,7],[-9,1],[-11,2],[-24,11],[0,2],[-21,18],[-2,5],[-3,4],[-16,12],[-4,0],[-2,-3],[5,-8],[0,-7],[-2,-1]],[[6650,6843],[-5,-3],[-2,1]],[[6643,6841],[-3,4],[0,3],[-2,9],[-3,3],[-6,1],[-9,-4],[-6,-6],[-39,-17],[-21,-2],[-3,-1],[-12,-11],[-2,-5],[-4,-4],[-11,0],[-1,1]],[[6521,6812],[6,23],[5,10],[5,8],[3,8],[2,11],[0,5],[-3,9],[2,14],[1,2],[7,5],[5,8],[-1,6],[-5,6],[-8,6],[-9,3],[-7,0],[-2,-1],[-4,-8],[0,-8],[-7,-13],[-17,-8],[-3,2],[-5,7],[-8,9],[-7,4],[-15,7],[-8,-1],[-5,5],[-7,13],[-6,23],[-15,9],[-3,5],[-1,28],[4,10],[4,2],[4,-3],[3,0],[16,3],[19,5],[1,0],[-9,8],[-29,-4],[-14,7],[-9,21],[0,4],[2,6],[10,-1],[11,3],[6,5],[-1,11],[-7,6],[0,-2],[5,-4],[-1,-3],[-6,-4],[-6,-1],[-8,1],[-6,7],[4,12],[6,6],[-3,24],[0,4],[7,5],[13,3],[13,-2],[2,-1],[3,3],[-3,6],[2,2],[12,3],[10,-4],[16,3],[0,18],[-1,3],[2,4],[3,2],[7,-2],[9,-9],[5,-1],[14,18],[1,9],[2,3],[3,1],[7,0],[16,-4],[25,-1],[10,14],[-2,2],[-1,11],[2,0],[10,-6],[6,-8],[19,1],[8,4],[6,0],[14,-3],[3,-2],[10,-4],[5,-1],[13,18],[-2,2],[-1,20],[3,2],[13,-14],[6,-8],[5,-2],[6,4],[-1,6],[-3,4],[-2,9],[3,2],[10,-6],[1,-3],[13,-7],[14,8],[9,-3],[4,-5],[25,-3],[17,-6],[12,-8],[6,1],[4,2],[3,4],[6,0],[7,-3],[8,-6],[5,-4],[10,-8],[5,-3],[10,-3],[10,-1],[7,0],[13,2],[34,0],[15,-5],[39,-6],[5,0],[7,2],[3,2],[6,9],[2,5]],[[5121,4628],[4,0],[4,-2],[14,-12],[8,-9],[0,-3],[18,-17],[12,-3],[15,2],[8,7],[8,2],[13,1],[6,-6],[7,-6],[2,4],[0,15],[2,9],[11,20],[2,2],[7,-2],[10,3],[4,35],[-1,10],[2,6],[4,3],[18,-4],[27,-5],[12,-7],[9,-8],[6,-2],[3,-3],[13,-9],[8,-1],[14,0],[23,-19],[5,-4],[6,-2],[31,-5],[7,0],[4,6],[4,12],[2,2],[10,0],[1,-1],[13,-5],[3,-2],[6,-8],[10,-7],[5,-2],[8,4],[5,-6],[3,-20]],[[5537,4591],[0,-11],[-1,-10],[-4,-6],[-5,-10],[-2,-4],[-2,-17],[1,-6],[10,-16],[4,-2],[0,-8],[3,-13],[3,-5],[6,-6],[4,-2],[1,-12],[5,-11],[7,-6]],[[5567,4446],[-3,-3],[-5,-8],[-6,-22],[-1,-8],[0,-13],[2,-5],[0,-11],[-2,-4],[-13,-3],[-6,-1],[-12,-1],[-9,0],[-3,4],[-2,8],[-11,6],[-11,-1],[-14,-14],[-3,-6],[0,-2],[9,-4],[13,-4],[4,1],[4,-1],[8,-21],[-1,-5],[-6,-16],[-9,-7],[-14,-2],[-4,0],[-1,-3],[1,-9],[5,-20],[-2,-6],[-5,-4],[-3,-8],[0,-2],[4,-13],[2,0],[6,-8],[0,-26],[-4,-1],[-9,2],[-15,0],[-3,-5],[-3,-8],[-15,-18],[-4,-3]],[[5426,4171],[-14,-9],[-3,-1],[0,-18],[-16,-8],[-8,-1],[-27,-7],[-26,-8],[-41,1],[-3,-2],[-4,1],[-24,-9],[-5,-11],[-2,-13],[-1,-1],[-35,-25],[-9,2],[-43,6],[-5,8],[-5,4],[-19,6],[-12,1],[-10,0],[-7,2]],[[5107,4089],[-15,5],[-8,2],[-16,2]],[[5068,4098],[-23,0],[-57,16]],[[4988,4114],[-9,5],[-3,-3],[-6,5],[-19,0],[-9,5],[-6,2],[-7,5],[-12,31],[-9,12],[-7,5],[-6,13],[-1,12],[4,3],[5,1],[5,10],[-1,3],[-5,1],[-6,-2],[-9,-5],[-41,-19],[-4,-2],[-4,6],[-10,4]],[[4828,4206],[-20,0]],[[4808,4206],[-40,-11],[-1,-1],[-8,-8],[-3,-6],[1,-6],[-5,-14],[-6,-12],[-17,0],[-13,7],[-4,5],[0,2],[-11,11],[-11,-4],[-4,-4],[-9,3],[-5,4]],[[4672,4172],[4,15],[-8,12],[-4,4],[-6,-1],[-5,-11],[-1,-4],[-12,-13],[-7,-6],[-9,-2],[-6,5],[-16,11],[-8,6],[-1,4],[1,6],[2,3],[0,3],[-3,4],[-20,7],[-12,1],[-4,2]],[[4557,4218],[4,4],[1,6],[-2,11],[-8,22],[-4,8]],[[4548,4269],[9,18],[2,4],[3,0],[4,3],[1,4],[-3,13],[-6,3],[-2,0],[-5,10],[1,8]],[[4552,4332],[6,-2],[11,0],[5,1],[3,9],[3,4],[5,0],[19,-12],[12,-11],[24,-27],[0,-3],[-1,-11],[-6,-11],[7,0],[7,3],[9,6],[18,30],[-2,11],[-1,1],[-4,21],[5,3],[3,-3],[11,-9],[16,4],[30,-9],[8,-28],[1,-1],[7,-1],[11,1],[24,8],[22,20],[6,-1],[7,1]],[[4818,4326],[3,2]],[[4821,4328],[14,14],[32,8],[11,2],[7,0],[11,-3],[8,0],[1,1],[0,6],[-1,4],[34,3],[8,-9],[8,3],[4,7],[8,3],[9,0],[2,-1],[10,-13],[1,-2],[-4,-1],[-2,-7],[2,-7],[20,-20],[8,-2]],[[5012,4314],[1,0],[4,7]],[[5017,4321],[1,2],[6,33]],[[5024,4356],[-3,11]],[[5021,4367],[0,1],[-6,7],[-5,-2],[-10,0],[-1,6],[4,12],[3,5],[6,11],[-12,24],[-7,10],[-1,5],[-9,11],[-4,5],[-1,10],[2,2],[14,18],[19,13],[18,8],[14,1],[5,2],[5,5],[12,14],[2,9]],[[5069,4544],[0,3],[3,19]],[[5072,4566],[-3,11],[2,2],[8,3]],[[5079,4582],[2,0],[10,-3]],[[5091,4579],[7,-3],[0,-2],[4,-4],[6,-4],[10,16],[3,15],[-2,22],[2,9]],[[5121,4628],[-2,2],[1,3],[-4,9],[-4,3]],[[5112,4645],[-2,6]],[[5110,4651],[-1,4],[-2,-2],[-4,0],[-6,7],[-3,8],[0,3],[-3,0],[-3,4],[-9,0],[-15,9],[0,10],[-11,12],[-19,17],[-19,29],[-10,11],[-10,2],[1,-4],[-2,0],[-12,3],[-15,21],[-10,24],[-3,8],[-3,13],[-5,16],[-8,3],[2,22],[10,27],[0,4]],[[4950,4902],[0,1],[-7,13]],[[4943,4916],[-8,4],[-22,18],[-8,9],[-2,7],[0,3],[2,6],[-11,33],[-4,4],[11,-1],[2,-3],[12,-22],[5,-2],[1,6],[9,19],[16,20],[14,4],[7,0],[8,4],[6,5],[5,2],[11,-7],[3,-3],[4,-1],[5,2],[12,18],[15,2],[3,5],[1,8],[4,8],[17,10],[5,-6],[6,-2],[2,1],[6,9],[-1,3],[4,9],[5,5],[7,2],[14,2],[21,10],[1,5],[11,6],[1,0],[22,7]],[[5165,5125],[20,9],[8,13]],[[5193,5147],[-6,2],[0,1],[-9,9],[4,13],[3,3],[25,-4],[10,-7],[4,-7],[4,-13],[0,-10],[-1,-7],[19,-8],[5,0],[4,10]],[[5255,5129],[18,-1],[6,2],[1,21],[-1,7],[22,8],[9,-6],[4,-4],[3,-4],[0,-2],[-3,-3],[0,-6],[1,-5],[4,-8],[6,-3],[2,-3],[1,-12],[15,1],[16,-3],[24,-8],[21,-12],[10,-14],[7,1],[6,5],[2,0],[14,3],[13,-1],[12,-16],[1,0],[2,-6],[-6,-12],[-5,-7],[-4,0],[-3,3],[-15,-16],[0,-3],[3,-4],[6,-5],[5,-3],[9,-5],[9,-9],[2,-4],[12,-18],[3,-6],[0,-6],[-1,-3],[7,-12],[12,-5],[3,0],[8,11],[2,7],[2,4],[12,8],[8,0],[5,-1],[-4,23],[-5,7],[-9,16],[0,2],[3,6],[7,-1],[23,-9],[11,-9],[4,-5],[7,-5],[13,-9],[7,-3],[27,-1],[4,2],[4,6],[0,6],[4,-1],[4,-5],[1,-17],[1,-4],[-10,-8],[-10,-1],[-3,-3],[8,-14],[24,-28],[6,-3],[6,0],[11,9],[6,11],[6,-4],[23,-20],[11,-4],[26,-4],[4,-2],[1,-2],[-1,-22],[7,-19],[24,-15],[4,-20],[2,-17]],[[5792,4807],[-27,-3],[-11,-2],[-3,-5],[0,-5],[-1,-1],[-20,-28],[-10,-7],[-6,-1],[-8,-4],[-5,-10],[0,-8],[-1,-9],[-3,-7],[1,-8],[-4,-7],[-6,-9],[-22,-15],[-9,-13],[-11,-11],[0,-1],[-6,-6],[-9,-1],[-19,-3],[-16,-3],[-7,6],[-11,6],[-8,-1],[-11,-9],[-9,-14],[-7,-22],[-6,-15]],[[6440,7304],[-8,-2],[-7,1],[-12,-2],[-14,-3],[-3,0],[-1,3],[2,2],[18,9],[4,1],[23,-7],[-2,-2]],[[6323,7312],[1,-1],[19,1],[3,1],[8,-1],[1,-3],[-2,-11],[-5,0],[-10,0],[-4,0],[-5,0],[-10,12],[2,6],[2,0],[0,-4]],[[6270,7321],[-7,-2],[-2,3],[-3,11],[1,5],[7,4],[4,-1],[2,-7],[0,-10],[-2,-3]],[[6158,7346],[-11,-1],[-4,3],[2,8],[7,5],[6,0],[8,-2],[0,-2],[-3,-10],[-5,-1]],[[6178,7349],[-7,1],[1,11],[3,6],[18,1],[4,-4],[-3,-6],[-11,-7],[-5,-2]],[[6131,7364],[-1,-5],[-11,4],[-4,4],[3,4],[7,0],[6,-7]],[[6211,7353],[-4,1],[-3,3],[0,6],[12,8],[4,0],[1,-3],[-5,-12],[-5,-3]],[[6726,7369],[-3,-1],[-3,3],[4,3],[5,-1],[-3,-4]],[[6322,7377],[3,-25],[-2,-8],[-13,-21],[-7,-1],[-7,1],[-5,-5],[0,5],[-3,5],[-7,-5],[-6,-2],[0,19],[-7,8],[-1,10],[2,11],[3,6],[3,-2],[15,-2],[8,2],[24,4]],[[6243,7366],[-3,1],[1,8],[4,5],[6,2],[2,-6],[-2,-4],[-8,-6]],[[6703,7379],[-6,-9],[-6,3],[-4,12],[2,6],[3,0],[11,-10],[0,-2]],[[6258,7389],[-2,-4],[-7,1],[-6,-3],[-3,-3],[1,7],[-5,1],[0,-3],[-7,-1],[-7,1],[-1,6],[4,5],[18,0],[11,-4],[4,-3]],[[6263,7390],[-9,8],[1,5],[11,3],[9,-6],[-1,-3],[-6,-5],[-5,-2]],[[6210,7400],[-12,3],[-10,5],[-5,5],[3,19],[3,2],[9,-5],[5,-8],[8,-13],[0,-6],[-1,-2]],[[6179,7442],[-8,-12],[-1,1],[1,7],[5,9],[3,1],[0,-6]],[[6122,7438],[-7,-1],[-6,16],[0,2],[7,-4],[6,-13]],[[6143,7447],[-7,-12],[-2,0],[-12,11],[-1,6],[3,3],[7,0],[11,-7],[1,-1]],[[6117,7469],[0,-12],[-2,0],[-6,7],[-2,7],[7,6],[3,-8]],[[6122,7533],[-1,-1],[-7,1],[-3,17],[3,4],[5,0],[6,-9],[1,-3],[-4,-9]],[[6089,8109],[28,-9],[11,4],[6,-2],[1,-14],[-16,-10],[-8,-1],[1,2],[-9,9],[-1,-4],[-3,0],[-3,4],[-7,19],[0,2]],[[6236,8106],[-1,-1],[-13,4],[-5,7],[6,3],[15,0],[2,-6],[-4,-7]],[[6122,8111],[-1,-1],[-12,10],[8,6],[7,1],[5,-2],[0,-2],[-4,-9],[-3,-3]],[[6328,8234],[0,-7],[-2,2],[-11,1],[-9,-2],[-5,5],[18,20],[10,-1],[3,-2],[2,-12],[-4,0],[-2,-4]],[[6577,8509],[-4,0],[-14,4],[-2,2],[-5,13],[2,3],[7,5],[8,3],[18,2],[5,0],[23,-8],[1,-4],[-9,-1],[-15,-5],[-4,-10],[-11,-4]],[[6540,8705],[-3,2],[2,4],[4,0],[3,-3],[-6,-3]],[[7140,9494],[-10,-3],[-18,-10],[-40,-20],[-2,-6],[4,-3],[7,-1],[7,1],[19,1],[4,-1],[11,-7],[-7,-21],[-4,-6],[-11,-13],[-17,-22],[-9,-13],[13,-35],[18,-46],[1,-1],[88,-26],[3,-5],[40,-59],[30,-18],[16,-11],[-6,-30],[-3,-9],[-3,-5],[-7,-7],[-18,-16],[-30,-29],[-52,-68],[-6,-9],[-2,-15],[0,-9],[3,-7],[5,-7],[9,-10],[3,-2],[13,-14],[5,-8],[7,-18],[19,-31],[3,-14],[0,-3],[7,-15],[1,-4],[18,-26],[7,-9],[10,-8],[3,-7],[4,-15],[11,-31],[8,-19],[6,-29],[-2,-13],[-5,1],[-7,5],[-5,-1],[-24,-8],[2,-16],[-4,-12],[-7,-5],[-1,-15],[1,-9],[0,-18],[-6,-5],[-13,-13],[0,-7],[5,-3],[23,0],[4,-1],[4,-5],[0,-19],[-10,-5],[-10,-2],[-6,-2],[-8,-6],[-2,-8],[1,-8],[3,-15],[2,-6],[11,-17],[8,-9],[3,-1],[10,0],[4,1],[21,0],[5,-2],[4,-4],[9,-23],[-2,-6],[-7,-7],[-22,-8],[-1,-3],[5,-15],[8,-4],[2,-3],[0,-7],[-4,-12],[1,-2],[12,-10],[6,-1],[17,-5],[9,-5],[21,-14],[4,-7],[4,-29],[1,-3],[-3,-10],[-9,-11],[-17,-17],[-19,-27],[-6,-4],[-10,-5],[-17,-5],[-2,-2],[1,-5],[32,-33],[2,0],[18,-10],[8,-10],[4,-7],[31,-13],[26,-17],[41,-31],[4,-6],[18,-31],[18,-20],[10,-18],[-9,-14],[-8,-11],[-19,-46],[-4,-12],[-4,-14],[-24,-24],[-16,-16],[-17,-17],[-6,-4],[-11,-10],[-42,-47],[-12,-14],[-13,-16],[-7,-8],[-1,-3],[-21,-28],[-25,-29],[-20,-22],[-38,-36],[-9,-11],[-3,-7],[-8,-9],[-8,-6],[-45,-29],[-13,-16],[-6,-9],[-3,-7],[-6,-4],[-4,1],[-8,-2],[-7,-8],[-17,-15],[-5,-9],[-7,-7],[-21,-19],[-28,-29],[-10,-12]],[[6987,7452],[-4,8],[-5,0],[-1,-10],[1,-5],[-9,-2],[-9,1],[-17,0],[-1,-7],[-23,6],[-4,8],[-7,12],[-25,-12],[-8,-22],[-1,-1],[-7,8],[-13,0],[-19,-12],[-15,0],[-8,5],[-3,8],[11,23],[5,6],[3,2],[7,0],[5,-5],[6,-4],[1,2],[-9,16],[-4,1],[-7,-3],[-8,-13],[-12,-18],[-1,-6],[4,-9],[0,-4],[-8,-9],[-37,1],[-11,6],[-2,-2],[9,-20],[-5,-9],[-5,0],[1,7],[-7,6],[-13,10],[-8,3],[10,-9],[1,-2],[1,-26],[-6,0],[-2,7],[-15,10],[-2,-2],[0,-5],[8,-5],[5,0],[-8,-8],[-8,4],[-6,6],[-3,4],[0,11],[6,1],[-2,5],[-4,0],[-10,-8],[-4,-4],[-7,-16],[-2,1],[-16,2],[-21,-4],[-7,-4],[1,-2],[5,-1],[1,-2],[-2,-5],[-30,-11],[-28,0],[-20,-4],[1,-7],[-2,-8],[-15,-16],[-8,-1],[0,9],[-7,11],[-10,0],[-2,-3],[-8,-5],[-19,-5],[-37,-13],[-13,-2],[-11,0],[-8,4],[-7,0],[-10,-5],[0,3],[6,8],[9,8],[0,9],[-1,1],[-6,-3],[-17,-28],[-15,-24],[-8,-3],[-38,-7],[-2,3],[6,7],[20,9],[9,1],[14,8],[5,10],[4,10],[0,6],[-2,-2],[-8,-17],[-4,-6],[-16,0],[-1,4],[3,9],[14,6],[5,8],[-8,3],[-10,-1],[-5,-3],[-5,1],[-9,7],[1,5],[7,8],[-3,3],[-7,-4],[-8,4],[-4,4],[-1,7],[5,11],[3,4],[11,9],[10,16],[-4,3],[-33,-22],[-2,-2],[-13,-6],[-16,-4],[-3,0],[-14,7],[1,5],[2,4],[8,8],[12,14],[0,6],[-20,-1],[-26,-1],[-3,3],[-11,7],[-8,5],[-4,-1],[-9,5],[-6,5],[-3,8],[-15,1],[4,-13],[-8,3],[-1,20],[4,4],[-1,9],[-21,-17],[-10,-10],[-2,13],[-2,2],[-8,1],[-6,-3],[-5,6],[-8,16],[0,6],[4,2],[1,17],[-9,26],[8,18],[3,21],[5,32],[6,18],[7,10],[1,6],[-3,35],[-2,14],[-2,2],[-4,8],[0,3],[5,3],[13,-7],[7,-4],[2,4],[-9,14],[-9,11],[-9,25],[3,12],[-11,21],[-6,9],[-9,3],[-2,2],[-4,13],[5,16],[2,9],[4,10],[6,7],[1,7],[-2,13],[-5,21],[-24,14],[-6,11],[2,23],[-8,10],[0,5],[5,36],[1,3],[4,4],[21,17],[6,-2],[4,1],[3,7],[7,19],[1,10],[-3,6],[9,8],[2,0],[6,-8],[8,-3],[7,-1],[2,2],[-10,10],[-7,4],[-6,11],[-2,6],[-1,9],[1,5],[6,5],[3,-2],[2,-4],[7,-4],[2,0],[6,4],[23,12],[3,-1],[1,-11],[9,-6],[16,10],[18,3],[16,9],[4,9],[-2,7],[-3,6],[-4,2],[-13,9],[-2,5],[0,7],[14,16],[6,-2],[8,-11],[4,6],[10,20],[1,4],[-1,6],[12,17],[12,1],[3,-4],[0,-7],[4,-8],[6,1],[6,4],[10,14],[4,14],[-2,3],[1,7],[19,12],[10,7],[9,2],[15,2],[7,10],[0,12],[1,13],[1,2],[6,0],[11,-3],[12,7],[1,8],[5,10],[8,5],[2,5],[17,15],[10,6],[0,6],[9,21],[29,22],[9,5],[8,6],[3,5],[2,9],[-1,10],[8,13],[14,16],[0,13],[1,2],[25,12],[10,4],[26,5],[10,5],[4,0],[10,-11],[2,-6],[5,-5],[4,-2],[11,2],[2,3],[0,17],[-7,0],[-10,6],[-6,9],[3,5],[15,-1],[7,-7],[5,-2],[4,1],[1,3],[-5,17],[-5,11],[-3,4],[-9,4],[-2,14],[4,30],[4,12],[4,16],[0,9],[-1,7],[-5,8],[-12,10],[-5,2],[-6,-3],[-6,6],[0,4],[-3,5],[-25,9],[-15,2],[-4,-3],[-10,2],[-15,18],[0,14],[10,16],[8,10],[-9,-2],[-8,-14],[-3,-8],[-12,0],[-4,-7],[-26,1],[-7,4],[-1,6]],[[6501,8717],[-1,7],[-17,43],[-8,12],[-3,7],[-2,9],[-3,3],[-12,4],[-9,4],[-5,5],[-7,24],[0,3],[-3,27],[2,8],[9,9],[14,11],[6,1],[2,5],[2,26],[0,8],[-2,7],[6,11],[9,1],[0,4],[-8,17],[-21,25],[-4,2],[-10,13],[-15,28],[3,17],[2,6],[4,2],[15,5],[4,6],[1,5],[-2,19],[-1,2],[-28,8],[-5,-4],[-4,0],[-7,7],[0,6],[5,16],[5,26],[-2,11],[-3,25],[2,13],[8,5],[8,1],[8,8],[-3,7],[-15,8],[-18,12],[-6,10],[-38,49],[-13,7],[-8,3],[-11,14],[-20,8],[-12,1],[-11,4],[-10,2],[-7,3],[-28,0],[-14,3],[-9,12],[-5,4],[-8,7],[-4,1],[-8,-1],[-7,1],[-5,4],[0,5],[-17,11],[-12,2],[-7,6],[-3,8],[-29,23],[-20,13],[-4,1],[-11,0],[-7,3],[0,8],[6,7],[-1,4],[-8,8],[-10,5],[-19,4],[-10,4]],[[6022,9496],[4,3],[9,4],[7,2],[13,-2],[1,-1],[27,-12],[3,0],[4,6],[3,12],[-6,4],[-3,9],[-2,11],[4,5],[35,23],[48,-10],[48,-56],[23,-23],[-2,-6],[20,-20],[7,-32],[20,6],[34,-11],[35,1],[13,-14],[6,-2],[11,4],[16,8],[14,5],[20,3],[4,0],[6,7],[8,11],[2,8],[6,3],[16,0],[9,-2],[6,-5],[4,-5],[10,-8],[21,-10],[8,-2],[5,0],[24,-3],[19,-8],[8,-9],[3,-7],[11,-2],[18,10],[5,5],[-1,9],[7,21],[4,9],[23,17],[10,4],[8,0],[8,-3],[8,0],[3,2],[17,24],[1,14],[-5,15],[-3,23],[0,12],[5,20],[3,4],[6,3],[3,5],[5,24],[10,22],[3,9],[-2,8],[-2,3],[1,4],[5,7],[15,4],[10,6],[26,24],[4,5],[7,13],[4,3],[16,3],[34,0],[1,-4],[5,-2],[18,-4],[6,0],[27,9],[4,3],[-2,8],[16,6],[24,13],[37,4],[7,0],[6,-7],[0,-10],[3,-6],[15,-15],[12,-6],[17,-4],[3,-3],[3,-10],[5,-3],[38,-13],[40,-11],[14,-3],[4,-5],[8,-15],[14,-31],[1,-4],[-4,-7],[-27,-26],[-22,-16],[-11,-10],[-5,-18],[0,-8],[6,-8],[17,-10]],[[4542,3150],[-1,0],[-3,6],[4,-6]],[[4536,3166],[1,-7],[0,-5],[3,-12],[1,-2],[4,-3],[-1,9],[4,-11],[0,-2],[4,-66],[0,-19],[-1,-17],[-1,-4],[-13,-24],[-5,-12],[-1,-5],[-1,-13],[0,-6],[1,-3],[0,-6],[-1,-28],[-2,-9],[-2,-6],[-6,-8],[-7,-19],[-4,-18],[2,-8],[-1,-1],[-4,-10],[-5,-1],[-7,7],[-2,8],[-23,15],[-3,3],[-17,12],[-1,15],[2,5],[3,-1],[7,4],[0,1],[6,6],[0,3],[-9,1],[-7,4],[-10,5],[-3,6],[6,12],[6,12],[2,10],[-3,7],[-5,1],[-1,-2],[-4,-3],[-5,0],[-6,-1],[-5,11],[0,4],[3,1],[5,-1],[2,4],[-1,5],[12,10],[-1,2],[-8,12],[-9,6],[-3,10],[-3,12],[7,8],[8,1],[1,4],[-7,15],[-4,3],[-3,0],[-1,7],[12,30],[8,16],[22,14],[22,11],[1,3],[3,6],[4,4],[5,1],[13,-3],[6,-11],[3,4],[3,10],[1,1],[-1,13],[-1,4],[-3,5],[4,39],[2,3],[4,1],[5,0],[5,-5],[4,-43],[0,-4],[-3,-7],[-1,-11],[-1,-8],[-1,-1]],[[3116,3919],[-3,-3],[-4,16],[-5,8],[-11,10],[-1,3],[-4,21],[3,1],[3,-3],[11,-10],[6,-9],[8,-15],[-1,-13],[-2,-6]],[[3107,4000],[-5,0],[-29,11],[-2,2],[-3,8],[1,2],[10,1],[24,-15],[5,-7],[-1,-2]],[[2973,4129],[-13,0],[-3,5],[3,5],[4,-1],[8,-7],[1,-2]],[[2982,4207],[8,-17],[1,-3],[-2,-7],[-5,10],[-3,3],[-7,0],[-3,15],[3,2],[5,0],[3,-3]],[[2866,4276],[-2,-4],[-3,2],[-8,1],[-7,0],[-3,3],[-3,12],[3,7],[24,-18],[-1,-3]],[[2600,4552],[-5,-3],[-5,3],[4,4],[5,1],[3,-1],[-2,-4]],[[3615,5184],[7,-23],[0,-16],[7,-27],[18,-14],[11,-10],[4,-3],[9,13],[6,3],[3,0],[3,3],[9,3],[5,-1],[4,-11],[1,-5],[6,-13],[0,-2],[5,-28],[3,-5],[9,-8],[11,5],[9,2],[12,-6],[2,-2],[7,-12],[0,-10],[13,-11],[16,-2],[12,0],[8,3],[16,-17],[4,-11],[-3,-24],[-3,-30],[0,-9],[4,1],[5,-4],[14,1],[19,-6],[7,2],[21,12],[1,1],[3,13],[-2,3],[1,5],[9,11],[8,8],[2,0],[6,-3],[2,-5],[-2,-2],[-4,-9],[-2,-5],[-2,-19],[6,-44],[1,-2],[4,-2],[4,0],[3,3],[5,0],[45,-35],[8,-8],[6,-6],[5,-14],[-1,-5],[1,-3],[8,1],[13,6],[10,2],[12,1],[2,-1]],[[4051,4813],[0,-2],[6,-8],[16,-13]],[[4073,4790],[15,1]],[[4088,4791],[4,3],[1,5],[5,5],[9,1],[2,-1],[8,-8],[8,-3]],[[4125,4793],[6,3],[8,-3],[8,-7],[9,-17],[12,-28],[6,-19],[12,-2],[1,-1],[4,5],[0,3],[-2,4],[1,3],[11,1],[0,-1],[11,-6],[10,-15],[8,-1],[18,-4],[10,9],[1,6],[6,2],[3,0],[7,-3],[18,-23],[4,-6],[11,0],[11,1],[16,0],[15,-10],[14,-8],[10,-3],[-5,-2],[-8,-15],[-1,-7],[-2,-4],[0,-5],[-2,-5],[-18,-20],[-11,-13],[-10,-21],[-8,-36],[-1,-9],[2,-14],[-1,0],[-7,-13],[-15,-37],[-2,-15],[1,-5],[6,-8],[1,-3],[0,-7],[-5,-15],[-4,-9],[-4,-18],[-2,-21],[0,-4],[2,-6],[5,-4],[4,-13],[-1,-2]],[[4288,4342],[-5,-1],[0,-3],[-4,-1],[-3,-3],[1,-11],[-1,-2],[-8,-9],[-3,-3],[-4,-3],[-5,2],[-5,0],[-8,-4]],[[4243,4304],[-1,0]],[[4242,4304],[-8,6],[-5,12],[-16,3],[-4,-3],[-15,-30],[0,-5],[7,2],[6,0],[3,1],[-4,-17],[-18,-29],[2,-2],[-8,-8],[-12,-16],[-3,-7],[-5,-7],[-3,-3],[-12,-6],[-9,-17],[-2,-15],[2,-12],[-4,-6],[-9,-10],[-2,-3],[-11,-5],[-18,-23],[0,-12],[-6,-22],[-2,-5],[5,-4],[6,-6],[0,-5],[-5,-12],[-1,-4],[1,-9],[-1,-2],[-4,-1],[-2,1],[-5,-2],[-2,-2]],[[4078,4019],[-6,-6]],[[4072,4013],[0,-3],[4,-12],[17,0],[4,2],[5,4],[7,10],[4,12],[-4,12],[-3,1],[3,10],[9,10],[24,11],[2,2],[17,1],[9,-2],[12,-4],[2,-2],[-1,-12],[-2,-51],[0,-4],[12,-15],[8,-7],[10,-13],[3,-10]],[[4214,3953],[1,-7]],[[4215,3946],[-7,-13],[-2,-2],[-7,-5],[-7,1],[-8,-6],[-1,-11],[1,-14],[1,-1],[21,-30],[2,-15],[2,-3],[12,-11],[7,-10],[2,-13],[-4,-27],[0,-2],[-9,-9],[-16,-9],[-15,-8],[-8,5],[-10,-5],[-10,-8],[0,-1],[6,-17],[11,-29],[13,-10],[6,-4],[8,3],[8,-7],[3,-4],[0,-20],[-11,-19],[-13,-29],[0,-6],[3,-34],[1,-1],[13,-21],[7,-9],[42,-28],[10,-1],[13,6],[13,7],[6,-2],[0,-10],[6,-10],[0,-5],[-6,-14],[0,-1],[-8,-11],[-13,-17],[-1,-2],[0,-7],[4,-15]],[[4280,3432],[-2,1],[-4,-2],[-6,-6]],[[4268,3425],[0,1],[-3,1],[-1,-2],[-3,-3]],[[4261,3422],[1,-5]],[[4262,3417],[-10,-5],[-8,-1],[-2,-2],[-12,-8],[-10,-22],[-25,-32],[-6,-2],[-7,-1],[-21,-27],[0,-5],[7,0],[2,-6],[-8,-20],[-6,2],[-9,-1],[-16,-5],[-30,-8],[-2,-2],[-1,-4],[-1,-10],[1,-3],[-6,2],[-7,10],[-15,4],[-3,-9],[-8,-6],[-4,0],[-8,6],[-1,3],[3,4],[3,1],[0,2],[-17,15],[-2,1],[-21,4],[-21,4],[-1,6],[3,3],[0,3],[-2,14],[-3,7],[-2,2],[-7,-3],[-6,-5],[-17,0],[-5,2],[-4,2],[2,6],[-1,3],[5,4],[2,-2],[8,5],[5,4],[6,6],[0,7],[-1,2],[-26,14],[-1,-1],[-2,-9],[1,-6],[6,-4],[-3,-4],[0,-5],[-6,-2],[-1,1],[-4,-1],[-5,2],[-9,-5],[-3,-1],[2,-1],[-1,-4],[-7,6],[-4,2],[-2,3],[0,3],[2,10],[0,4],[-2,8],[-4,7],[-2,1],[6,-37],[-1,-5],[5,-3],[1,-3],[-3,-1],[-13,-2],[-5,0],[-5,3],[-1,4],[4,10],[-5,4],[-8,3],[-4,0],[-7,-2],[-13,0],[-1,1],[0,12],[-1,2],[-8,-5],[-1,-2],[6,-7],[0,-1],[-11,1],[-6,4],[-5,6],[0,3],[2,0],[-1,8],[-3,3],[-8,1],[-11,-4],[-8,-7],[-8,-9],[-17,-15],[-23,-24],[-16,-6],[-3,0],[-12,-8],[-8,-7],[-15,-22],[-8,-17],[-5,-27],[-6,-17],[-5,-8],[1,-9],[1,-1],[5,-2],[3,-16],[0,-27],[1,-2],[1,-15],[1,-2],[8,-3],[3,-3],[4,-17],[1,-2]],[[3700,3107],[-1,-1],[-11,-1],[-5,7],[-1,5],[-13,1],[-30,-15],[-6,-4],[-3,-5],[3,-5],[-2,-4],[-16,-3],[-8,3],[-6,9],[-15,9],[-8,4],[-15,-3],[-2,-1],[-3,-9],[-3,-4],[-4,-2],[-5,-1],[-7,6],[-2,8],[-7,8],[-7,7],[-10,4],[-7,4]],[[3506,3124],[0,6],[1,6],[3,3],[3,0],[-5,12],[-6,2],[-18,7],[-9,0],[-2,-3],[-4,-10]],[[3469,3147],[-4,12],[-4,8],[-4,7],[-4,2],[-1,-2],[-20,-2],[-4,5],[-1,3],[1,4],[-7,7],[-1,0],[-25,6],[-9,5],[-14,7],[-4,-1],[-3,-4],[-2,-13],[0,-7],[4,-6],[0,-6],[-1,-5],[-2,1],[-9,1],[-5,0],[-6,-1],[-11,-1],[-21,3],[-1,5],[-12,4],[-8,-7],[-16,-6],[-8,3],[0,6],[-8,10],[-4,4],[-7,4],[-13,11],[-3,-4],[-9,-6],[-22,-4],[-21,25],[-2,4],[1,4],[0,4],[-5,8],[-4,-5],[-4,-1],[-15,1],[-8,7],[-11,7],[-17,10],[-13,5],[-8,-9],[-9,3],[-4,3],[-2,6],[0,3],[2,2],[5,5],[5,18],[0,13],[-3,4],[-13,5],[-20,5],[-5,0],[-5,-2],[-7,10],[0,4]],[[3038,3329],[7,5],[8,1],[10,12],[8,18],[1,1],[11,30],[0,12],[2,23],[11,65],[0,3],[3,5],[2,25],[6,48],[2,26],[0,3],[4,27],[8,7],[4,-2],[10,2],[2,3],[0,4],[-3,6],[-8,11],[-6,4],[-1,-1],[-7,-14],[-3,-7],[0,19],[4,61],[7,46],[1,40],[0,13],[2,15],[6,15],[4,4],[2,-1],[-1,-10],[2,-3],[8,-10],[7,-3],[2,-2],[15,-19],[5,-12],[4,-20],[1,-1],[0,-9],[2,-15],[2,-9],[21,-47],[1,0],[0,21],[-1,1],[-1,8],[-11,11],[-2,3],[-3,10],[0,4],[-6,52],[-4,15],[0,2],[-5,10],[-11,15],[-18,20],[-13,11],[-9,7],[-8,2],[-2,0],[1,21],[6,4],[6,0],[-2,16],[11,7],[1,3],[2,25],[0,6],[-9,21],[-5,6],[7,26],[-1,14],[-8,1],[-4,-1],[-2,-3],[0,-5],[-6,5],[-28,21],[-24,12],[-18,11],[-5,19],[0,3],[-5,14],[-8,13],[-11,16],[-7,7],[-7,6],[-3,5],[0,15],[6,11],[7,9],[7,12],[-2,7],[-8,9],[-7,5],[-8,2],[1,22],[1,6],[3,8],[12,3],[14,-4],[5,-4],[1,-2],[12,-10],[8,-1],[2,1],[-21,19],[-5,3],[-13,6],[-2,-1],[-13,-2],[-7,-6],[-1,-2],[-13,-9],[-19,6],[-14,7],[-1,2],[2,20],[8,8],[4,-3],[4,0],[0,4],[-7,6],[-3,0],[-1,11],[1,1],[8,0],[8,1],[0,1],[-19,6],[-10,2],[-11,-6],[-17,-6],[-6,2],[-4,10],[0,2],[7,-1],[5,1],[3,-1],[3,1],[6,10],[1,7],[-3,5],[-25,-10],[-5,-5],[-22,1],[-5,3],[0,-17],[1,-5],[5,-8],[-7,1],[-2,13],[2,3],[1,9],[-3,8],[-5,4],[-4,6],[-39,26],[-16,4],[-22,4],[-7,3],[-4,4],[-4,6],[-10,10],[-16,-3],[-6,-6],[-1,-6],[-4,-5],[-3,-2],[-8,-1],[-13,2],[-1,6],[4,2],[-1,9],[-2,6],[-7,14],[-2,3],[-12,13],[-3,-1],[-6,0],[-13,3],[-5,2],[3,7],[46,11],[7,-5],[2,1],[2,10],[0,5],[-6,11],[-16,8],[-5,1],[-4,-10],[-4,-6],[-2,0],[-9,22],[0,4],[6,10],[3,2],[3,0],[-3,-8],[3,-3],[16,-1],[20,0],[7,2],[3,2],[-15,5],[-14,1],[-5,1],[0,5],[-36,-5],[-7,0],[-3,9],[-1,14],[2,21],[6,11],[5,3],[9,2],[4,-3],[1,1],[3,12],[4,3],[24,9],[25,4],[27,8],[-1,-5],[2,-4],[1,-7],[13,-5],[1,5],[-2,7],[4,6],[3,3],[11,-3],[12,-7],[6,-1],[2,1],[6,13],[-4,7],[-2,0],[0,7],[6,8],[3,2],[5,0],[12,-3],[22,12],[13,-3],[8,-8],[24,-35],[9,-16],[12,-19],[4,-5],[1,-3],[30,31],[0,2],[6,3],[15,6],[24,-9],[11,-11],[8,-19],[5,3],[-1,12],[-1,2],[-6,3],[-2,13],[4,8],[8,3],[11,2],[1,-6],[-3,-2],[-1,-5],[4,-9],[2,-2],[14,0],[9,2],[6,3],[3,3],[9,-1],[7,1],[13,1],[-12,8],[-5,3],[-9,13],[-2,22],[0,6],[2,13],[1,24],[-5,0],[-1,6],[-1,11],[0,30],[-13,26],[-6,9],[-5,5],[-3,0],[-5,29],[0,17],[1,2],[0,8],[-2,10],[-4,3],[-8,2],[0,11],[4,1],[9,-2],[18,-8],[8,-6],[15,0],[5,2],[3,3],[2,5],[7,2],[12,-1],[8,-4],[3,-7],[2,-11],[-4,-4],[-5,-2],[-2,-4],[1,-8],[7,-14],[1,-3],[17,-25],[5,8],[13,1],[8,-1],[4,-5],[8,-4],[28,-4],[15,1],[11,-1],[16,-8],[10,-5],[17,3],[14,7],[8,5],[3,3],[6,10],[2,2],[12,4],[8,1],[10,2],[11,5],[6,6],[-15,-7],[-10,-1],[-7,1],[-13,2],[-6,4],[-6,9],[1,4],[12,37],[5,6],[8,4],[6,2],[16,12],[21,14],[13,6],[51,13],[1,0],[17,9],[4,3],[19,21],[5,4],[7,10],[6,19],[5,35],[2,3],[6,1],[-6,8],[2,31],[-2,38],[0,5],[8,41],[15,16],[8,5],[20,6],[39,12],[16,4],[4,-1],[5,1],[9,5],[7,3]],[[8615,3334],[2,14],[9,29],[5,2]],[[8631,3379],[7,3]],[[8638,3382],[10,0],[6,-2],[26,-14],[7,-1],[5,1],[4,4]],[[8696,3370],[4,3]],[[8700,3373],[6,1],[4,-7],[4,-3],[18,-8],[2,-4],[15,-15],[3,-4],[6,-1],[6,3],[6,1],[6,-2],[30,-20],[17,-16],[3,-2],[3,0],[56,-9],[11,2]],[[8896,3289],[7,8],[1,2]],[[8904,3299],[1,0]],[[8905,3299],[3,1],[9,0]],[[8917,3300],[22,0],[8,-5],[5,-9],[11,-9],[4,-1],[3,4],[2,4],[3,2],[9,0],[11,0],[13,-14],[8,-14],[0,-2],[17,-21],[8,-9],[2,0],[22,-7],[2,0],[19,-8],[8,-4],[4,-6],[3,-6],[9,-5],[6,-1],[8,-5],[3,-4],[-2,-5],[-9,-11],[-3,-7],[0,-3],[6,-7],[17,-5],[37,11],[2,0],[3,2],[3,6],[16,11],[18,11],[4,1]],[[9219,3184],[5,1]],[[9224,3185],[8,-1],[8,-4],[8,-11],[1,-5],[7,-2],[6,19],[2,3],[4,1],[4,0],[5,-3],[1,-3],[6,-7],[5,-4],[5,1],[4,2]],[[9298,3171],[4,1]],[[9302,3172],[9,-8],[13,-23],[1,-1],[2,-8],[3,-3],[2,0],[7,3],[9,3],[7,0],[4,-1],[16,-8],[4,-2],[4,-5],[-1,-7],[-8,-34],[-6,-16],[-1,-8],[3,-5],[43,-39],[9,-1],[24,-6],[3,-1],[19,-14],[1,-2],[6,-6],[0,-2]],[[9461,2793],[-9,11]],[[9076,2790],[2,4],[-2,9],[-4,3],[-6,4],[-5,0],[-15,-3],[-14,32],[-12,14],[-3,4],[-17,26],[-7,18],[-3,3],[-18,2],[-9,-2],[-3,-3],[-3,-17],[-11,-17],[-4,-1],[-12,7],[-7,4],[-5,4],[-12,3],[-12,0],[-16,2],[-3,0],[-5,-4],[-4,-9],[-6,-8],[-2,0],[-10,10],[-4,6],[-20,5],[-5,3]],[[8819,2889],[10,24],[2,3],[4,0],[4,8],[6,12],[0,1],[6,19],[0,18],[-3,20],[-12,38],[-1,2],[0,11],[-1,11],[-2,11],[-5,20],[-6,13],[-2,10],[-1,10],[0,15],[-2,2],[-1,16],[-2,9],[-3,6],[-2,8],[-5,6],[-6,3],[-20,9],[-3,1],[-3,-3],[-4,2],[-7,13],[-2,16],[-6,13],[-3,4],[-2,0],[-4,-3],[-4,-1],[-3,7],[-7,13],[-2,2],[-7,3],[-8,2],[-9,2],[-41,17],[-11,19],[-3,7],[-4,9],[-1,1],[-14,10],[-8,4],[-6,2]],[[4438,4370],[-4,-1],[-1,4],[4,0],[1,-3]],[[4184,5787],[-8,-1],[-3,-4],[3,-5],[-10,3],[-2,2],[0,3],[2,2],[10,3],[8,-3]],[[4202,5803],[-6,-1],[-3,1],[3,2],[6,1],[20,1],[-1,-1],[-19,-3]],[[4242,5811],[-12,-1],[-2,2],[5,3],[4,1],[18,1],[-1,-3],[-12,-3]],[[4369,5816],[-9,-3],[-1,1],[3,4],[4,1],[3,-3]],[[4293,5822],[-2,-1],[-13,-1],[-4,-4],[-2,1],[0,2],[2,4],[5,1],[13,0],[1,-2]],[[4311,5824],[-12,-1],[0,4],[2,2],[17,0],[0,-1],[-7,-4]],[[4400,5865],[-2,0],[0,7],[3,2],[3,-1],[-4,-8]],[[4805,5873],[-5,0],[-6,3],[0,5],[9,7],[6,0],[1,-4],[-2,-5],[-3,-6]],[[4436,5892],[-3,2],[-1,6],[4,2],[1,-6],[-1,-4]],[[4816,5897],[-4,-3],[2,7],[4,4],[7,3],[-5,-8],[-4,-3]],[[5174,5865],[-1,-7],[0,-8]],[[5173,5850],[-4,1],[-19,0],[-7,-5],[-15,-2],[-7,3],[0,3],[6,2],[8,6],[2,10],[5,5],[6,-4],[3,0],[1,10],[-2,4],[-4,2],[-2,7],[-3,4],[-6,2],[-2,-2],[1,-5],[-3,-7],[-6,-3],[-5,10],[-1,9],[1,6],[-8,9],[1,8],[5,1],[3,-4],[0,-5],[5,-7],[4,-4],[6,-3],[8,-3],[14,-17],[10,-11],[6,-5]],[[4975,5982],[-6,0],[2,3],[4,-3]],[[4463,5993],[-9,0],[-2,2],[0,7],[6,6],[11,0],[3,-2],[-5,-10],[-4,-3]],[[4785,5980],[-25,0],[-15,9],[0,8],[2,5],[5,9],[16,-5],[7,-4],[9,-17],[1,-5]],[[4432,6000],[-4,0],[-3,0],[-3,5],[0,5],[7,3],[9,2],[0,-5],[-2,-6],[-4,-4]],[[5020,6000],[-1,-6],[0,7],[5,23],[2,3],[5,0],[1,-5],[-7,-11],[-5,-11]],[[5062,6035],[1,-7],[2,-4],[4,-3],[6,-1],[15,3],[6,0],[5,-5],[0,-9],[-4,-4],[-9,-8],[0,-6],[5,-12],[8,0],[4,-5],[5,-12],[-2,-14],[-5,2],[3,4],[0,6],[-3,6],[-24,-1],[-6,-4],[-14,-13],[-1,-4],[8,1],[2,-3],[-1,-4],[-4,-2],[-10,5],[-9,2],[-12,13],[-6,7],[3,8],[8,0],[3,-1],[6,2],[-3,9],[-5,4],[-5,2],[8,7],[1,5],[-9,6],[-3,8],[12,2],[9,-1],[9,8],[1,-6],[2,-4],[4,-4],[3,-8],[5,-1],[3,1],[2,5],[-2,9],[-6,1],[-4,4],[-6,2],[-1,8],[-3,-2],[-3,-5],[-6,-4],[-5,-2],[-1,1],[-2,20],[7,7],[11,1],[3,1],[7,0],[1,-3],[-6,-4],[-2,-4]],[[4392,6030],[-3,0],[-6,10],[1,7],[7,6],[6,-21],[-5,-2]],[[4419,6047],[-12,0],[-10,5],[-1,2],[4,7],[5,1],[10,1],[7,-2],[1,-6],[-4,-8]],[[4741,5973],[-3,-1],[8,-2],[4,0],[4,2],[2,-42],[-5,-6],[-22,-19],[-3,-2],[-9,1],[-4,-7],[-2,-2],[0,-4],[2,-7],[4,-4],[8,0],[3,-1],[1,-8],[-3,-9],[4,4],[1,6],[8,6],[17,7],[12,0],[2,-5],[7,-13],[3,-1],[19,-3],[9,10],[1,7],[1,0],[3,10],[5,-1],[3,2],[7,11],[-2,5],[3,4],[7,9],[7,0],[32,4],[20,4],[26,23],[4,5],[11,19],[5,14],[7,7],[1,-3],[16,-4],[31,0],[4,-2],[0,-4],[-5,-2],[-17,1],[-6,4],[-2,0],[-4,-5],[-3,1],[-24,-6],[-5,-5],[-8,-15],[1,-11],[4,-4],[7,0],[-6,4],[2,8],[8,10],[13,7],[13,2],[11,-1],[35,7],[12,-28],[0,-2],[13,-6],[9,-3],[13,-15],[10,-18],[6,-3],[-2,7],[2,1],[28,12],[2,0],[9,-14],[1,-7],[-1,-8],[5,-15],[5,-20],[-6,-7],[-2,-3],[1,-4],[20,-17],[35,-17],[7,-1]],[[5181,5810],[4,-34],[14,-52],[0,-8],[-3,-39],[-1,-10],[-5,-14],[-6,-5],[-1,-2],[-9,-8],[-3,0]],[[5171,5638],[-7,-4]],[[5164,5634],[0,-25],[5,-10],[4,-1],[18,-16],[4,-4],[13,-19],[4,-3],[5,-3],[8,-6],[5,-8],[-1,-20],[-2,-2],[-4,-9]],[[5223,5508],[-4,-2]],[[5219,5506],[-2,-1],[-2,-8],[6,-25],[3,-4],[8,-3],[5,-2],[2,-4],[7,-40],[-6,-30],[-3,-11],[-7,-10],[-4,-1],[-2,-5],[0,-3]],[[5224,5359],[9,-23]],[[5233,5336],[4,-5],[3,-2],[5,-6],[1,-16],[-6,-11],[3,-8],[13,-7],[11,-4],[5,-2],[2,-7],[1,-18],[-1,-3],[2,-6],[3,-3],[2,-5],[0,-2]],[[5281,5231],[2,-3],[-2,-9]],[[5281,5219],[-4,-29],[-2,-9],[-2,-6],[-9,-22],[-10,-20],[1,-4]],[[5193,5147],[-8,-13],[-20,-9]],[[4943,4916],[7,-13],[0,-1]],[[5110,4651],[2,-6]],[[5091,4579],[-10,3],[-2,0]],[[5072,4566],[-3,-19],[0,-3]],[[5021,4367],[3,-11]],[[5017,4321],[-4,-7],[-1,0]],[[4821,4328],[-3,-2]],[[4552,4332],[-11,9],[-29,21],[-24,5],[-8,1],[-10,-8],[-2,-1],[-6,0],[-1,1],[-3,10],[-3,4],[-4,5]],[[4451,4379],[-1,0]],[[4450,4379],[-4,-5],[4,-8],[-5,3],[-6,1],[2,1],[1,13],[-10,10],[-7,1],[0,1],[-7,0],[-11,-8],[0,-1],[-9,-16],[0,-6],[9,-7],[6,1]],[[4413,4359],[1,1]],[[4414,4360],[2,3],[9,0],[2,-5],[-4,-12],[-4,-1],[-1,7],[-5,3],[-6,-5],[-6,-10],[-6,1],[-13,6],[-1,3],[-12,2],[-11,-11],[-2,-4],[-8,-1],[-15,-1],[-2,2],[-18,-2],[-10,-2],[-10,4],[6,3],[1,1],[0,6],[-5,0],[-7,-5]],[[4125,4793],[0,6],[-1,10],[9,33],[8,8],[3,2],[2,25],[-12,0],[-5,2],[-10,6],[0,2],[-9,7],[-2,4],[-8,13],[-1,0],[-4,9],[-1,6]],[[4094,4926],[-2,10],[-1,1]],[[4091,4937],[2,12],[1,4]],[[4094,4953],[4,22],[16,16],[9,7],[7,2],[-4,28],[0,2],[-4,8],[-3,3],[-7,0],[-3,23],[4,5],[-1,2],[-13,9],[-15,15],[-6,9]],[[4078,5104],[-1,11],[1,10],[5,1],[2,-1],[3,5],[-1,12],[-7,14],[-1,1],[-10,1],[-5,-3],[-2,0],[-3,12],[-1,6],[6,5],[13,5],[12,11],[-1,9],[-2,5],[0,7],[1,5],[19,28],[0,27],[-2,10],[-6,11],[-4,4],[-5,7],[-9,25],[-10,9],[5,5],[-3,10],[-1,0],[6,6],[16,14],[8,1],[22,-11],[15,1],[9,4],[9,7],[11,4],[3,-3],[3,-1],[9,7],[5,9],[0,5],[-5,6],[-8,6],[1,10],[3,8],[13,1],[2,3],[0,5],[4,6],[8,4],[12,11],[-3,8],[0,7],[1,4],[4,9],[0,7],[-1,4],[-9,15],[-1,0],[-4,-6],[-1,0],[-25,6],[-8,6],[-2,15],[5,3],[5,1],[-4,11],[-2,3],[7,7],[18,0],[2,-3],[16,-3],[2,4],[1,5],[0,14],[1,6],[-1,5],[1,4],[0,7],[3,5],[6,13],[6,11],[3,8],[1,7],[0,58]],[[4238,5700],[5,17],[1,2],[9,0],[6,-5],[-2,5],[-3,1],[-20,4],[-12,0],[-4,-1],[-2,2],[-4,6],[0,11],[2,17],[9,26],[17,17],[9,5],[6,1],[18,-1],[6,-3],[24,6],[25,5],[9,0],[7,-2],[3,-2],[-1,-6],[3,-11],[16,-17],[1,-9],[-6,-5],[-8,-1],[1,-9],[3,-4],[15,-10],[5,0],[5,4],[4,8],[1,10],[-1,8],[-3,0],[-2,-2],[-6,0],[0,3],[2,13],[2,4],[3,2],[8,0],[20,-13],[4,-11],[-4,-6],[-1,-4],[0,-15],[2,-13],[1,2],[0,18],[-1,4],[0,7],[1,1],[7,6],[1,3],[-1,7],[-6,15],[-3,5],[-1,6],[0,10],[8,28],[4,8],[5,6],[7,3],[3,0],[3,-4],[0,-3],[9,-5],[3,-1],[14,-2],[16,5],[11,3],[15,0],[8,0],[6,-8],[4,-7],[3,-10],[5,-8],[20,-30],[1,-2],[17,-10],[9,-1],[8,-3],[1,4],[-7,3],[-8,1],[-8,3],[-11,8],[-4,4],[-15,26],[-3,8],[-3,13],[-8,8],[-7,4],[-10,3],[-19,3],[-9,-3],[-4,1],[-7,9],[-4,8],[-6,17],[4,3],[3,0],[8,-3],[3,-4],[4,3],[2,5],[0,9],[-6,10],[-15,-2],[-5,9],[-1,8],[4,14],[5,11],[-7,0],[-21,-8],[-5,4],[-4,7],[-1,7],[3,9],[4,6],[16,3],[8,1],[2,-3],[6,3],[14,9],[3,5],[0,5],[-7,11],[-6,5],[-9,13],[-5,13],[-1,4],[-10,8],[-5,6],[-5,14],[-2,3],[0,6],[-9,2],[1,5],[-26,-1],[-11,-1],[-1,-1],[0,-8],[-1,-8],[1,-2],[0,-10],[-2,1],[0,22],[1,13],[2,9],[10,28],[3,3],[8,-2],[-3,-7],[-9,-6],[-3,-7],[0,-3],[9,-6],[2,-5],[4,-3],[4,2],[14,1],[1,3],[8,-1]],[[4536,6080],[-1,-5],[19,6],[28,-10],[14,1],[2,1],[9,-9],[0,-1],[8,-20],[1,-10],[-1,-17],[-3,-7],[-6,-6],[-10,-5],[-7,-2],[4,-5],[3,0],[28,9],[3,0],[32,-13],[33,-18],[4,-6],[6,-7],[12,0],[6,4],[8,9],[8,5],[5,-1]],[[6496,1289],[0,-12],[-1,0],[-8,6],[-2,4],[4,4],[4,0],[3,-2]],[[6866,1408],[-3,-4],[-3,2],[-1,6],[7,11],[13,4],[3,-1],[-3,-7],[-5,-2],[-8,-9]],[[6460,1447],[18,0],[7,2],[5,10],[-1,4],[6,3],[2,0],[6,-2],[3,-12],[-2,-7],[-4,-2],[-2,1],[-2,-2],[-2,1],[-1,-3],[10,-9],[11,-20],[7,-5],[20,4],[16,4],[6,4],[21,2],[23,-1],[11,-4],[1,-8],[2,-2],[18,-2],[11,0],[3,0],[10,0],[3,-6],[4,-4],[4,-1],[14,7],[7,4],[5,1],[15,-1],[-3,-6],[-4,-4],[0,-8],[3,0],[0,6],[2,-1],[0,-6],[-2,-6],[-3,-3],[-1,-12],[1,-7],[9,-6],[4,-2],[2,3],[5,8],[4,6],[17,11],[9,-2],[3,-2],[14,9],[11,9],[-1,-36],[-3,-11],[-5,-13],[-5,-3],[-10,-6],[-3,1],[0,3],[-3,1],[-12,4],[-52,-5],[-5,-3],[-1,-2],[-5,-2],[-24,0],[-20,-6],[-22,-6],[-12,0],[-24,3],[1,2],[1,15],[-1,7],[-2,8],[-3,3],[-3,1],[-15,0],[-3,2],[-5,9],[-17,12],[-2,1],[-25,2],[-8,0],[-9,-2],[-4,0],[-12,6],[-17,7],[-16,-4],[-3,-2],[-11,1],[-1,3],[-9,11],[0,4],[6,53],[2,12],[2,4],[1,6],[1,0],[0,-22],[1,-1],[5,-5],[6,1],[3,3],[1,12],[-3,9],[0,11],[1,4],[3,6],[1,0],[4,-7],[-1,-1],[0,-10],[2,-12],[0,-3],[2,-3],[8,-5]],[[6900,1430],[-2,-12],[-3,8],[-7,38],[0,4],[7,14],[5,13],[1,1],[-1,6],[0,5],[1,6],[7,8],[2,0],[0,-3],[-2,-24],[-5,-28],[3,-29],[-6,-7]],[[6390,1521],[-1,0],[-4,5],[-3,11],[6,-2],[2,-8],[0,-6]],[[6352,1596],[-7,1],[-9,9],[-3,6],[0,4],[-2,25],[4,13],[4,2],[2,-9],[5,-10],[2,-1],[9,-11],[3,-3],[0,-3],[-7,-21],[-1,-2]],[[6724,1646],[-9,-1],[-4,2],[-1,7],[5,4],[12,-10],[-3,-2]],[[6666,1658],[-2,1],[3,2],[-1,-3]],[[6984,1537],[-2,0],[-6,5],[-1,9],[2,6],[1,30],[-3,15],[9,21],[3,5],[9,12],[5,5],[21,14],[5,3],[13,7],[1,4],[2,-1],[1,-7],[-6,-31],[-6,-20],[-3,-6],[-8,-19],[-7,-9],[-7,-7],[-2,-3],[-1,-3],[-4,-8],[-5,-12],[-3,-6],[-1,0],[-5,-4],[-2,0]],[[6933,1652],[-1,0],[-10,9],[-3,2],[0,11],[1,1],[8,1],[10,-15],[1,-3],[-4,-5],[-2,-1]],[[6673,1643],[-1,-1],[-8,3],[4,4],[2,9],[-2,7],[-3,8],[-3,1],[1,3],[5,-2],[4,-5],[1,0],[5,-12],[-2,-10],[-3,-5]],[[6791,1685],[-4,-1],[-3,3],[-3,14],[-1,2],[1,2],[15,12],[4,-2],[7,-9],[2,-4],[-1,-1],[-8,-2],[-7,-11],[0,-3],[-2,0]],[[6993,1689],[-2,-1],[-10,13],[1,3],[6,10],[3,4],[3,0],[2,-8],[0,-19],[-3,-2]],[[6606,1705],[-4,0],[-9,11],[-2,4],[4,1],[9,-6],[2,-3],[1,-7],[-1,0]],[[6624,1715],[-3,0],[0,2],[5,12],[5,6],[6,0],[0,-3],[-4,-8],[-3,-3],[-4,-5],[-2,-1]],[[6183,1739],[-1,-9],[-4,5],[1,9],[4,-5]],[[6534,1720],[-12,-2],[0,4],[2,16],[2,4],[21,5],[5,-2],[0,-16],[-2,-6],[-8,-2],[-8,-1]],[[6664,1718],[-4,0],[-2,1],[-11,18],[0,9],[2,3],[4,2],[3,-2],[11,-14],[-2,-14],[-1,-3]],[[6567,1742],[-5,1],[-2,6],[2,2],[3,0],[3,-2],[0,-6],[-1,-1]],[[6172,1739],[-1,0],[0,9],[2,6],[3,-2],[-4,-13]],[[6553,1749],[-2,0],[-3,9],[0,3],[5,5],[1,0],[5,-5],[-1,-7],[-2,-5],[-3,0]],[[6674,1760],[-4,0],[-2,2],[1,2],[7,8],[0,-7],[-2,-5]],[[6723,1749],[-5,-3],[-3,0],[-4,3],[0,2],[13,14],[16,11],[3,-3],[-20,-24]],[[6875,1727],[0,-4],[-3,2],[-4,10],[0,9],[1,2],[18,18],[1,0],[12,10],[3,2],[14,3],[8,-4],[2,-7],[-4,-3],[-11,-4],[-4,-1],[-24,-13],[-9,-7],[0,-13]],[[6703,1774],[-1,-1],[-8,1],[0,3],[4,2],[4,0],[1,-5]],[[6623,1791],[-2,-1],[-5,8],[-1,6],[5,5],[4,3],[-1,-21]],[[6574,1779],[-1,0],[-3,6],[-6,24],[0,3],[3,0],[6,-3],[5,-9],[3,-7],[0,-3],[-4,-8],[-3,-3]],[[6876,1784],[-4,1],[-4,5],[-5,29],[2,2],[12,-8],[9,-13],[0,-10],[-1,0],[-9,-6]],[[6724,1825],[-2,0],[-4,2],[-1,4],[5,2],[2,-4],[0,-4]],[[6646,1805],[-8,-9],[-4,1],[-6,5],[-3,7],[2,8],[5,12],[2,2],[8,6],[6,-1],[2,-2],[-2,-19],[0,-4],[-2,-6]],[[6864,1826],[-5,0],[-4,2],[-7,15],[2,6],[10,-3],[1,-2],[3,-16],[0,-2]],[[6674,1783],[-4,0],[-12,37],[1,4],[19,24],[6,2],[4,-5],[4,-9],[0,-8],[-1,-15],[-1,-6],[-3,-14],[-13,-10]],[[6550,1846],[0,-12],[-4,-6],[-1,5],[-5,3],[-6,-3],[2,10],[4,7],[5,2],[5,-3],[0,-3]],[[6848,1848],[-1,0],[2,5],[2,-2],[-3,-3]],[[6366,1860],[-3,-1],[-5,9],[0,1],[4,1],[6,-4],[-1,-6],[-1,0]],[[6400,1874],[-1,-1],[-4,1],[2,4],[12,9],[10,4],[4,-1],[-1,-3],[-10,-8],[-7,-1],[-5,-4]],[[6529,1875],[-1,1],[0,30],[4,7],[5,5],[1,-2],[-2,-7],[2,-4],[4,-1],[1,-7],[-5,-11],[-6,-8],[-3,-3]],[[6660,1900],[-4,2],[-2,14],[0,3],[5,4],[7,-3],[8,-4],[0,-6],[-1,0],[-11,-10],[-2,0]],[[6606,1895],[-9,-6],[1,37],[4,-2],[3,-4],[1,-4],[2,-17],[1,0],[-3,-4]],[[6412,1924],[-6,1],[-3,4],[7,2],[5,-3],[-3,-4]],[[6643,1930],[-3,-1],[-13,5],[-15,23],[-3,4],[0,3],[5,1],[5,-1],[4,-5],[15,-2],[3,-2],[5,-6],[0,-7],[-3,-12]],[[6519,1929],[-3,0],[-1,15],[0,4],[4,12],[3,5],[6,1],[3,-2],[3,-5],[-2,-8],[-4,-9],[-9,-13]],[[6749,1926],[-6,-1],[-1,2],[1,6],[1,0],[8,17],[3,5],[1,0],[31,10],[7,3],[0,-3],[-7,-15],[-6,-5],[-7,-9],[-25,-10]],[[6414,1969],[-4,-5],[-3,4],[-4,10],[-1,8],[11,2],[5,0],[3,-2],[-7,-17]],[[6888,1974],[-3,-2],[-20,-10],[-10,-6],[-9,13],[-5,4],[-9,-2],[-4,-6],[-3,-1],[-2,4],[-1,10],[3,7],[1,0],[9,7],[10,6],[1,0],[32,-8],[5,-2],[5,-11],[0,-3]],[[6065,1995],[12,-18],[1,-6],[-11,7],[-6,-1],[-4,-9],[0,-10],[-4,1],[-13,17],[-1,2],[-10,18],[-1,13],[3,10],[4,4],[4,2],[12,-18],[9,-5],[5,-7]],[[6584,2042],[23,-31],[5,-24],[-5,-21],[-6,9],[-6,12],[-5,11],[-9,13],[-2,3],[-5,-2],[-3,12],[0,9],[1,2],[6,5],[6,2]],[[6407,2014],[-2,0],[-6,4],[1,7],[4,14],[6,3],[7,-3],[1,-14],[-1,-3],[-10,-8]],[[6027,2138],[9,-28],[17,-39],[0,-3],[-2,-12],[-8,2],[-24,7],[-6,3],[-18,12],[-5,6],[2,12],[6,23],[6,1],[4,-6],[2,0],[3,4],[4,6],[1,3],[0,9],[-2,8],[1,10],[4,-1],[6,-17]],[[6043,2116],[-4,0],[-5,12],[-3,10],[-4,16],[0,3],[5,6],[3,-3],[4,-11],[8,-28],[-4,-5]],[[6749,2084],[-1,-5],[-3,1],[-5,2],[-4,8],[-9,10],[2,8],[4,4],[5,1],[7,12],[-1,11],[-5,16],[-8,5],[-4,3],[-3,5],[-1,6],[-1,1],[4,10],[4,2],[16,3],[18,-8],[3,-6],[0,-2],[-3,-25],[0,-6],[1,-11],[2,-7],[1,-1],[-1,-7],[-8,-13],[-9,-12],[-1,-5]],[[6065,2173],[0,6],[5,9],[0,-3],[-5,-12]],[[6692,2170],[-5,0],[-4,15],[0,2],[5,2],[6,-4],[1,-4],[-1,-10],[-2,-1]],[[6031,2182],[-14,-4],[0,6],[2,22],[1,1],[5,23],[6,11],[0,2],[9,0],[2,-7],[0,-41],[-1,-3],[-10,-10]],[[6570,2233],[0,-4],[-5,-3],[-4,1],[-2,4],[-5,-2],[1,-4],[-5,5],[-10,24],[-1,4],[0,14],[1,3],[4,3],[12,-14],[12,-23],[2,-8]],[[6407,2248],[1,-3],[16,-19],[23,-13],[11,-7],[14,-5],[8,2],[19,-5],[0,-17],[5,-44],[8,-39],[1,-3],[2,-3],[4,-3],[4,-9],[13,-2],[4,-2],[13,1],[2,1],[3,-20],[-1,-5],[0,-4],[-1,-5],[-2,-5],[-6,-7],[-5,0],[0,1],[-13,7],[-8,13],[-15,27],[-8,15],[-5,16],[-9,19],[2,3],[-2,4],[-7,2],[-3,-3],[-9,-1],[-13,1],[-18,4],[-4,2],[-3,9],[0,5],[2,8],[0,5],[-1,4],[-4,7],[-14,15],[-21,25],[-18,22],[0,1],[-9,4],[-5,-3],[-35,-4],[0,4],[2,5],[11,8],[27,27],[20,7],[4,0],[9,-7],[-1,-7],[1,-1],[9,-25],[2,-3]],[[6444,2301],[-2,-1],[-9,5],[-9,25],[1,3],[2,-1],[23,-20],[1,-2],[-3,-5],[-4,-4]],[[6413,2321],[-7,-7],[-8,3],[0,4],[9,12],[4,-1],[3,-8],[-1,-3]],[[5971,2324],[-4,0],[-4,7],[-2,9],[2,0],[7,-8],[2,-5],[-1,-3]],[[6460,2316],[-3,1],[0,2],[12,26],[3,6],[4,-4],[0,-2],[-8,-20],[-2,-4],[-6,-5]],[[6796,2349],[0,-2],[4,-3],[9,-8],[7,-16],[11,-25],[1,-9],[-13,-10],[-9,-1],[-8,1],[-10,2],[-17,9],[-7,5],[-8,9],[4,4],[8,3],[15,12],[2,6],[-4,5],[-4,1],[-8,-2],[-2,-4],[0,-4],[-6,-12],[-5,-6],[-2,-1],[-10,5],[-13,9],[-3,3],[-5,6],[3,16],[7,9],[3,1],[0,-3],[8,-1],[24,13],[1,0],[0,5],[-1,5],[7,4],[13,-3],[11,-7],[3,-4],[-4,-6],[-2,-6]],[[6611,2395],[-1,0],[-2,10],[1,6],[3,6],[4,-2],[3,-4],[0,-3],[-3,-5],[-5,-8]],[[5935,2473],[3,-2],[0,-5],[-1,-6],[-3,-4],[-6,-1],[-5,-5],[1,-6],[0,-5],[11,-42],[12,-11],[6,2],[2,3],[6,-18],[-1,-3],[-4,0],[-27,20],[-1,1],[-2,8],[-1,1],[0,12],[-6,13],[-9,7],[-8,12],[-1,0],[-4,17],[1,7],[3,4],[3,1],[15,-1],[7,6],[1,0],[8,-5]],[[5865,2485],[-2,-1],[-1,2],[0,5],[7,0],[0,-1],[-4,-5]],[[6671,2523],[-6,-12],[-5,-10],[-3,-8],[0,-6],[3,-4],[2,-7],[-2,-4],[-7,1],[-2,3],[-3,15],[2,7],[-2,4],[-4,0],[-4,-6],[-4,-11],[7,-11],[-9,0],[-13,11],[-1,4],[-2,25],[0,5],[1,1],[11,3],[13,0],[0,-1],[6,-2],[11,3],[12,8],[1,-1],[-2,-7]],[[6692,2618],[-4,0],[-7,5],[-7,9],[-2,5],[10,7],[7,2],[1,-2],[10,-3],[5,-6],[0,-12],[-13,-4],[0,-1]],[[6582,2673],[-1,-3],[-16,-11],[-1,3],[-8,10],[-6,0],[-3,4],[0,5],[1,7],[3,9],[3,5],[4,7],[6,4],[2,0],[11,-6],[3,-5],[1,-3],[1,-26]],[[6794,2933],[5,-5],[16,-14],[7,-4],[4,-16],[5,-30],[0,-15],[-5,-7],[-25,-18],[-7,-1],[-6,-4],[0,-34],[8,-17],[-2,-18],[-10,-11],[-10,-7],[-5,-14],[-6,-15],[-3,-3],[-8,-1]],[[6752,2699],[-2,5],[0,9],[1,3],[-2,6],[-15,4],[-14,1],[-5,0],[-7,-1],[-5,1],[-13,4],[-11,4],[-11,5],[-9,8],[-7,1],[-8,-2],[-8,1],[-6,2],[0,7],[4,4],[-3,4],[-14,-2],[-20,-20],[-4,-5],[-7,-11],[-3,0],[-20,2],[-1,1],[-7,19],[-1,1],[-7,2],[-15,-5],[-8,-9],[-3,-6],[-1,-6],[1,-4],[-22,-22],[-7,-5],[-6,0],[-9,3],[-9,5],[-4,6],[-7,3],[-14,-9],[-2,-2],[-3,-7],[-1,-6],[0,-5],[14,-20],[4,-19],[0,-10],[1,-1],[6,-13],[6,-6],[6,-1],[6,1],[21,-7],[2,-1],[8,-9],[18,-30],[3,-5],[0,-5],[-1,-1],[-11,-5],[-2,0],[0,6],[-1,3],[-15,28],[-2,3],[-15,2],[-6,4],[-5,6],[-1,3],[-4,4],[-3,1],[-10,0],[-13,-4],[-1,0],[-3,-8],[-1,0],[0,-6],[1,-7],[11,-19],[2,1],[11,-4],[4,-2],[8,-9],[3,-3],[3,-20],[0,-5],[-3,-13],[-1,-1],[-7,-3],[-5,7],[-9,14],[-5,13],[0,3],[-12,23],[-4,7],[-4,4],[-30,11],[-4,-1],[-4,-8],[-3,-3],[0,-6],[4,-15],[15,-24],[3,-3],[15,-9],[9,-5],[9,-10],[0,-3],[-5,-1],[-15,1],[-21,13],[-8,5],[-8,30],[1,1],[0,15],[-2,10],[-7,5],[-11,6],[-9,6],[-28,24],[-8,19],[3,6],[4,0],[10,7],[2,3],[-1,3],[-3,16],[-1,1],[-6,5],[-5,-2],[0,-10],[-7,-8],[-14,-11],[-7,-3],[-8,-7],[-1,-4],[3,-12],[3,-7],[-2,-21],[-9,-32],[0,-7],[3,-18],[3,-10],[4,-6],[11,-7],[20,-41],[1,-3],[0,-11],[1,-2],[6,-26],[1,-5],[2,-4],[12,-12],[12,-16],[19,-31],[2,-6],[7,-19],[2,-8],[0,-6],[-4,-5],[-14,-10],[-6,-3],[-10,-2],[-4,2],[0,3],[2,7],[2,4],[3,0],[1,-4],[-3,-7],[1,-1],[10,7],[5,6],[1,6],[-8,23],[-5,6],[-1,0],[-16,13],[-8,1],[-14,-20],[-2,-5],[0,-4],[2,-13],[3,-7],[3,3],[0,2],[12,-15],[4,-11],[0,-7],[5,-1],[5,0],[-8,-13],[-10,-13],[-14,-8],[-10,-6],[-3,0],[-10,4],[-2,5],[-4,1],[-12,-6],[0,-6],[4,-6],[3,-2],[5,0],[7,1],[6,-2],[8,-10],[24,-8],[15,-13],[0,-3],[4,-7],[1,-5],[2,0],[7,3],[3,3],[0,1],[12,-1],[5,-2],[2,-6],[0,-5],[-4,-8],[4,-8],[1,0],[8,-6],[9,-2],[9,0],[7,-9],[2,-9],[7,-16],[3,-2],[16,-6],[17,-8],[5,-3],[15,-20],[-1,-10],[-1,-3],[-7,-18],[0,-23],[3,-25],[3,-5],[4,-12],[1,-5],[-3,-21],[-1,-4],[-4,-5],[-11,4],[-1,1],[-2,12],[-3,10],[-2,4],[-6,8],[-4,3],[-5,2],[-29,32],[-1,3],[3,1],[2,3],[1,7],[-3,3],[-8,0],[-7,-4],[-5,-6],[-2,-4],[-22,0],[-2,-1],[-7,-6],[-4,-7],[-3,-2],[-8,-1],[-4,1],[-2,2],[-4,-9],[2,-8],[2,-2],[6,-1],[5,1],[6,-20],[2,-35],[4,-4],[11,-11],[6,-5],[2,0],[4,3],[-2,11],[-3,4],[11,-4],[2,-15],[3,-5],[10,-10],[0,-6],[-1,-3],[-12,-5],[-9,2],[-12,-3],[-5,-5],[-4,-16],[1,-5],[-4,-1],[-4,1],[-11,15],[0,9],[3,-1],[3,1],[4,5],[0,6],[-1,2],[-20,17],[-7,3],[0,1],[-20,14],[-5,-2],[-2,-2],[-2,-7],[2,-16],[4,-18],[7,-14],[14,-36],[-2,-7],[-1,-9],[2,-5],[3,2],[4,-1],[6,-21],[1,-9],[0,-13],[5,-17],[5,-10],[4,-12],[-4,-5],[-5,-3],[-3,-3],[0,-17],[1,-7],[6,-12],[4,-3],[13,-28],[-1,-3],[-9,-3],[-6,5],[-16,19],[-2,6],[-9,24],[-13,35],[-8,2],[-14,0],[-5,-4],[-2,-2],[-8,-27],[-5,-15],[0,-19],[2,0],[3,-13],[0,-4],[-3,-15],[-2,3],[-10,17],[-3,15],[-3,40],[-7,28],[-9,14],[-6,4],[-6,14],[2,13],[0,4],[-11,1],[-6,0],[-7,-4],[-5,-6],[-2,-4],[0,-29],[1,-7],[4,-6],[-3,-7],[-9,-11],[-4,10],[-2,5],[0,5],[-8,-1],[-2,-2],[-7,7],[-2,13],[0,5],[1,4],[3,4],[-1,6],[-13,18],[-4,9],[-2,20],[1,11],[4,7],[4,2],[5,9],[0,2],[3,6],[0,6],[-2,12],[-4,16],[-6,15],[-6,10],[-4,5],[-17,20],[-14,30],[-3,2],[-7,8],[-14,4],[-1,2],[0,13],[2,7],[2,4],[1,-4],[2,-1],[4,1],[12,16],[5,8],[6,20],[1,7],[0,5],[2,13],[8,-3],[12,-11],[10,-1],[8,3],[7,15],[2,12],[1,0],[4,6],[11,10],[13,-3],[9,-6],[0,-4],[3,-3],[17,-17],[0,-1],[7,-5],[20,-8],[11,-3],[11,-6],[15,-8],[8,-7],[6,-10],[6,-8],[7,-7],[2,-2],[5,0],[5,2],[4,6],[0,3],[-3,4],[-8,7],[-5,0],[0,2],[12,11],[2,0],[7,-3],[1,-3],[11,0],[9,5],[6,6],[2,12],[-15,14],[0,1],[-12,1],[-8,-1],[-3,-1],[0,-5],[-15,9],[-7,1],[-2,3],[-10,20],[-14,1],[-7,4],[-3,7],[-6,11],[-1,0],[-5,6],[-3,0],[-3,-13],[0,-2],[3,-8],[-4,-4],[-23,1],[-4,2],[-5,5],[-11,7],[-9,2],[-4,0],[-31,-12],[-11,0],[-12,-8],[-1,-2],[-10,12],[-13,16],[-2,0],[-1,-8],[-1,-2],[-9,-12],[-4,-4],[-9,-7],[-3,2],[-5,11],[0,5],[4,6],[-2,8],[-2,1],[0,5],[-3,13],[-13,39],[-12,16],[-12,6],[-6,0],[-4,8],[0,3],[2,25],[4,4],[25,4],[8,-4],[1,-4],[-1,-4],[8,-8],[11,28],[-3,5],[-1,5],[-5,8],[-3,0],[-5,-9],[-15,10],[-14,14],[-1,0],[-6,-7],[-2,-15],[4,-7],[6,-5],[0,-3],[-13,-2],[-3,6],[-1,3],[1,8],[-2,9],[-22,29],[-7,23],[-2,0],[-16,2],[-6,7],[-1,3],[-10,26],[4,1],[-3,20],[-5,22],[-3,5],[-15,11],[-6,2]],[[5964,2440],[7,-2]],[[6076,2728],[23,1],[21,2],[8,2],[4,8],[2,2],[13,-2],[3,-1],[4,-8],[4,0],[25,13],[1,1],[16,28],[0,6],[1,6],[8,8],[30,9],[8,1],[6,-4],[5,-6],[12,-2],[21,0],[16,5],[4,5],[3,21],[0,11],[-1,0],[2,6],[4,6],[18,-1]],[[5532,3177],[-9,0],[-3,4],[0,8],[7,0],[8,-2],[2,-2],[-5,-8]],[[5644,3168],[-7,4],[-19,6],[-24,7],[-6,4],[0,3],[5,3],[5,-1],[35,-14],[10,-9],[1,-3]],[[5521,3232],[7,-1],[5,4],[7,2],[11,0],[12,-4],[6,-10],[-8,-1],[-19,4],[-5,-4],[-10,-5],[-5,3],[-14,3],[-7,2],[-2,-1],[-2,2],[3,4],[6,1],[-2,4],[-8,3],[1,2],[6,1],[11,-6],[7,-3]],[[5723,3154],[3,-1]],[[5733,3148],[6,-10],[0,-11]],[[5739,3127],[0,-7],[1,-3],[4,-7],[1,0]],[[5745,3110],[3,-4],[0,-9],[-3,3],[-19,22],[-19,19],[-21,21],[-24,24],[-17,9],[-2,-1],[-25,11],[-15,8],[-10,9],[-19,16],[-3,1],[-1,-2],[-6,0],[-10,2],[-8,5],[-1,10],[2,0],[33,-9],[4,-1],[17,-12],[3,-1],[0,-2],[29,-16],[-2,2]],[[5439,3247],[-15,-2],[-4,0],[-2,12],[2,2],[5,2],[5,1],[6,-1],[6,0],[3,-2],[0,-3],[-6,-8],[0,-1]],[[5486,3298],[2,-5],[3,2],[2,-2],[4,2],[2,-2],[0,-3],[4,-4],[1,-3],[3,-1],[32,-4],[21,-3],[5,0],[5,-2],[-4,-1],[-14,-2],[-24,2],[-17,2],[-11,-3],[-2,0],[-16,5],[-13,7],[-7,4],[0,2],[13,4],[5,-1],[6,-6],[3,0],[-4,7],[-4,3],[3,3],[2,-1]],[[5525,3306],[-18,0],[-2,-1],[-10,0],[-7,1],[-8,2],[-4,3],[-9,6],[-2,4],[3,15],[1,0],[22,-2],[14,-3],[7,-1],[7,-3],[9,-8],[2,-2],[-1,-3],[-4,-8]],[[5463,3322],[-2,-1],[-8,5],[-14,9],[-2,5],[1,2],[7,0],[3,-1],[7,-5],[8,-13],[0,-1]],[[5369,3394],[-6,4],[-4,6],[7,-1],[0,-1],[5,-6],[-2,-2]],[[5324,3437],[4,-9],[-7,4],[-10,11],[-3,8],[1,2],[4,-7],[8,-6],[3,-3]],[[5337,3456],[-4,0],[-9,9],[-6,7],[-5,11],[2,2],[14,-12],[8,-16],[0,-1]],[[5311,3486],[-1,0],[-15,16],[-8,13],[-1,4],[1,2],[11,-12],[3,-2],[10,-13],[1,-7],[-1,-1]],[[5258,3525],[19,-23],[3,-3],[1,-11],[8,-8],[4,-3],[1,-5],[3,-2],[5,-5],[5,-4],[1,-3],[-4,-6],[-7,4],[-6,9],[-6,11],[-1,4],[-10,19],[-5,4],[-2,6],[-5,5],[-5,1],[-4,3],[3,-1],[2,1],[2,-1],[-2,8]],[[5256,3629],[5,-1],[4,1],[7,-8],[4,-8],[7,-5],[4,-10],[-4,4],[-3,1],[-3,5],[-3,1],[-3,5],[-6,1],[0,-2],[4,-1],[8,-12],[8,-15],[6,-5],[-7,9],[-1,8],[2,0],[4,-5],[21,-25],[1,-7],[-4,-4],[-6,2],[0,-4],[-5,2],[-5,5],[-1,10],[3,1],[0,2],[-5,3],[-2,-1],[-5,1],[0,7],[-7,7],[-9,7],[-1,3],[3,3],[-23,41],[-2,3],[0,2],[2,-1],[12,-20]],[[5214,3597],[-2,0],[-19,26],[-2,16],[-2,11],[1,2],[7,-4],[0,-16],[1,-4],[3,-7],[8,-13],[4,-2],[2,-4],[0,-5],[-1,0]],[[5245,3676],[9,-10],[5,-11],[1,-4],[-3,-1],[-14,16],[-5,0],[-6,7],[4,1],[2,2],[3,-2],[-2,5],[-3,5],[5,4],[4,-5],[0,-7]],[[5205,3700],[-1,-6],[1,-14],[1,-3],[-1,-8],[2,-4],[0,-5],[1,-10],[4,-6],[3,-8],[-2,-6],[-3,-2],[-6,5],[-8,16],[0,9],[-2,4],[-1,12],[-5,13],[-3,9],[-2,3],[2,10],[4,-6],[4,-4],[4,0],[1,3],[-1,9],[-5,21],[-2,4],[-5,3],[-4,9],[0,5],[4,10],[2,2],[6,-5],[0,-2],[-2,-7],[3,-16],[7,-16],[5,-1],[2,-6],[-2,-2],[-1,-10]],[[5245,3709],[-5,-1],[-10,6],[-1,0],[-10,13],[-10,3],[-3,4],[-5,7],[0,2],[5,10],[8,4],[2,23],[1,2],[5,-1],[2,-3],[8,-26],[6,-13],[11,-14],[4,-5],[-1,-6],[-6,-5],[-1,0]],[[5492,4076],[3,0],[4,-3],[19,-16],[10,-12],[0,-8],[2,-7],[6,-7],[5,-4],[24,-13],[4,-7],[6,-14],[4,-10],[0,-8],[7,-11],[5,-6],[9,-3],[3,1],[-1,2],[4,1],[16,-3]],[[5622,3948],[2,-2]],[[5624,3946],[4,-6]],[[5628,3940],[3,-7]],[[5631,3933],[1,-10],[30,-12],[17,0],[19,0],[7,0],[4,-2],[2,-3],[11,-2]],[[5722,3904],[10,-2]],[[5732,3902],[5,1],[15,11],[6,7],[3,6],[13,14],[8,-4],[4,2],[1,2]],[[5787,3941],[2,-9],[7,-11],[5,-3],[5,-8],[1,-29],[-4,-7]],[[5803,3874],[-3,-2]],[[5800,3872],[-1,-2],[-1,-11],[6,-8],[3,0],[5,7],[2,0],[10,-10],[1,-5],[-2,-3],[-5,-1],[-2,3],[-3,0],[-2,-3],[-2,-23],[1,-4],[16,-18],[11,-6],[9,-6],[11,-3],[10,0],[1,-3],[0,-10],[-1,-1],[-8,-1],[-13,2],[-2,1],[-3,5],[-5,2],[-3,-1]],[[5833,3773],[-8,-28],[2,-16]],[[5827,3729],[-9,-24],[-2,1],[-3,-3],[-1,-5],[2,-2],[3,-7]],[[5430,3531],[0,-2]],[[5622,3228],[-6,1],[-3,2],[-6,10],[0,5],[-2,5],[-16,19],[-11,10],[-4,1],[-5,3],[-7,5],[-8,10],[-4,9],[-13,22],[-9,10],[-8,0],[-7,1],[-4,2],[-13,4],[-2,2],[-16,14],[-5,7],[0,2],[-4,2],[-11,1],[-6,-2],[-16,-7],[-2,-6],[-7,-3],[-11,1],[0,1],[-6,5],[-9,12],[-1,2],[0,16],[3,-1],[4,1],[-4,13],[-20,17],[-1,0],[-12,5],[-12,17],[-9,8],[0,2],[-7,7],[-3,0],[-24,36],[-6,12],[-11,18],[1,7],[-6,9],[1,4],[2,2],[2,-3],[3,-6],[4,2],[-2,7],[3,2],[3,-2],[7,-9],[1,3],[-2,11],[-2,5],[3,-2],[7,-7],[10,-7],[15,-1],[-1,4],[-6,0],[-4,3],[-22,19],[-2,2],[-11,16],[-6,7],[-6,12],[-9,11],[-2,0],[-3,3],[-3,7],[-9,21],[-1,0],[0,6],[-2,21],[0,11],[2,8],[2,7],[2,8],[0,5],[-10,34],[-12,6],[-5,3],[-7,8],[-11,17],[-13,14],[-21,11],[-5,-8],[-5,-22],[-1,-10],[-2,-11],[-2,-5],[-5,-10],[-3,-1],[0,-9],[1,-9],[1,-3],[-4,-8],[-7,0],[-12,-14],[-3,-13],[0,-6],[3,-2],[-12,-10],[-1,1],[-11,20],[-1,3],[2,0],[2,4],[-11,23],[-10,17],[-11,25],[-1,24],[-2,11],[-6,23],[-5,22],[2,4],[11,-6]],[[5090,3838],[4,-6],[7,-3],[4,0],[27,1],[10,2],[2,3],[52,4],[4,2],[9,9],[2,5],[5,15],[3,11],[5,4],[2,-1]],[[5226,3884],[0,-3]],[[5226,3881],[-1,-5],[1,-5],[15,-21],[12,-16],[2,-1],[10,3],[2,5],[8,2],[15,-8],[8,-9],[3,-1],[14,8],[3,17],[-1,14],[2,10],[6,5],[2,11],[-2,3],[-7,-2],[0,-3],[-3,0],[0,3],[2,9],[5,7],[22,15],[14,3],[2,0],[1,-3],[4,-3],[6,5],[3,24],[0,23],[-1,5]],[[5373,3976],[-1,0]],[[5372,3976],[-7,3],[-6,11],[-1,7],[1,5],[5,11],[3,3],[3,0],[14,3],[29,15],[8,7],[0,14],[8,5],[18,2],[-3,17],[3,7],[3,4],[6,1]],[[5456,4091],[6,0],[11,-3]],[[5473,4088],[4,-3],[0,-2],[12,-8],[3,1]],[[5732,3902],[-10,2]],[[5631,3933],[-3,7]],[[5624,3946],[-2,2]],[[5492,4076],[-10,9],[-16,36],[-5,14],[-2,0],[-4,9],[-1,0],[-1,10],[3,3],[2,7],[-6,7],[-5,2],[-6,0],[-6,-3],[-6,-1],[-3,2]],[[5567,4446],[2,2],[9,1],[1,-5],[7,-2],[4,0],[2,-2],[12,-17],[0,-3],[5,-7],[31,-25],[9,-6],[16,0],[10,4],[14,-1],[7,-1],[8,-2],[14,-2],[5,0],[6,2],[9,5],[12,0],[12,-2],[6,0],[7,7],[3,6],[5,1],[8,0],[1,3],[-9,10],[-3,1],[-2,6],[3,14],[7,18],[3,4],[8,1],[0,1],[8,0],[3,2],[7,1],[13,-3],[9,0],[34,5],[3,3],[2,14],[3,13],[3,1],[12,5],[4,-1],[12,-5],[5,-2],[0,-4],[15,-12],[5,1],[10,10],[6,0],[4,5],[19,19],[6,-5],[2,0],[3,3],[6,8],[6,15],[1,7],[3,10],[3,5],[6,6],[0,6],[5,7],[16,7],[20,3],[3,0],[5,-6],[11,-7],[27,-3],[13,3],[8,6],[16,7],[10,-7],[14,-12],[2,-6],[0,-6],[12,-22],[2,-2],[6,-3],[6,0],[4,7],[2,0],[9,4],[4,0],[9,2],[6,-1],[1,-2],[4,1],[5,7]],[[6232,4541],[3,0],[4,2],[3,0],[6,-3],[0,-12],[10,-19],[5,-8],[10,0],[5,2],[2,-2],[9,-13],[2,-10],[0,-8],[7,-6],[5,0],[7,6],[8,1],[0,-1],[7,-8],[5,-8],[0,-4],[-3,-9],[4,-10]],[[6331,4431],[-15,-26],[-1,-3],[-16,-13],[-5,-2],[-8,-1],[-7,6],[-4,2],[-4,-1],[-16,-11],[-1,0],[-6,-7],[-6,-9],[-5,-12],[0,-9],[-1,-2],[-9,-2],[-9,-10],[-2,-1],[-3,-5],[0,-10],[2,-6],[-1,-13],[-1,-3],[-3,-2],[-7,-1],[-9,-17],[-3,-13],[0,-8],[1,-3],[-9,-19],[-10,-9],[-7,-11],[0,-2],[5,-3],[0,-4],[-3,-9],[-8,-17],[-11,-15],[-5,-14],[0,-5],[5,-3],[0,-4],[-5,-7],[-6,0],[-16,-15],[-3,-9],[-2,-31],[-12,-15],[-2,-7],[-1,-10],[0,-6],[-13,-12],[-3,-2],[-3,2],[-25,8],[-4,-1],[-5,-4],[-4,-5],[-4,-11],[1,-5],[-6,-7],[-8,-3],[-5,6],[-7,4],[-6,2],[-20,-5],[-7,-3],[-3,-4],[0,-4]],[[5980,3990],[-8,9],[-11,3],[-21,2],[-14,-4],[-2,-2],[-13,3],[-6,4],[-5,1],[-14,-2],[-7,-7],[2,-5],[-1,-3],[-7,-10],[-23,-19],[-17,-1],[-2,2],[-1,5],[-3,3],[-3,0],[-2,-2],[-9,-13],[-2,-4],[-18,-9],[-6,0]],[[1264,8796],[-10,-1],[-4,-4],[0,-3],[4,-3],[18,-11],[10,-2],[15,1],[0,1],[10,4],[8,-2],[4,-3],[5,-12],[2,-11],[-2,-10],[-4,-6],[-14,-11],[-6,-2],[-7,-14],[-1,-4],[2,-5],[4,-3],[19,7],[1,1],[33,8],[9,1],[3,-4],[2,-25],[-12,-14],[-18,-18],[-3,-8],[1,-1],[4,6],[29,31],[3,1],[12,-7],[26,-7],[8,3],[10,0],[25,-15],[9,-10],[0,-6],[-3,-14],[-5,-12],[-9,-14],[10,-4],[11,-6],[2,-3],[-6,-7],[-4,-3],[-8,-3],[-6,-1],[-16,0],[-21,-2],[1,-2],[5,0],[8,2],[36,0],[4,-2],[-2,-7],[6,-8],[9,-3],[3,-10],[-14,-18],[-7,-3],[-16,2],[-6,5],[0,2],[-7,5],[-2,0],[-13,5],[-3,-11],[18,-10],[22,-10],[1,-4],[-2,-1],[-13,0],[-17,2],[-15,3],[1,-3],[5,-3],[6,-1],[13,0],[10,-6],[3,-3],[-1,-4],[-13,-12],[-5,-1],[-14,0],[-4,-3],[3,-6],[4,-5],[-3,-3],[-9,-4],[-20,-4],[-2,-1],[-10,6],[-1,3],[-12,14],[-7,4],[-5,-1],[7,-5],[9,-13],[3,-11],[0,-4],[-8,-12],[-5,-1],[-6,-3],[-9,0],[1,-6],[5,-4],[9,-3],[-1,-8],[-9,-23],[-7,-2],[-16,2],[-21,-16],[-3,-10],[2,-5],[-11,-6],[-2,2],[-16,8],[-17,1],[-9,8],[-13,9],[-1,-1],[4,-8],[-3,-14],[-7,-5],[-9,-3],[-27,-6],[-13,-8],[-28,-12],[-3,-2],[-1,-6],[-22,-18],[-7,-2],[-10,-7],[-13,-17],[-7,-5],[-17,-8],[-25,-9],[-12,10],[-10,12],[-1,0],[-6,-13],[0,-11],[-1,-5],[-16,-1],[-14,2],[-10,-5],[-54,-16],[-14,5],[-5,0],[-14,-15],[1,-12],[5,-4],[9,0],[-6,-16],[-5,-4],[-30,-12],[-17,-4],[-36,-10],[-19,-5],[-8,0],[-42,4],[-25,6],[-16,7],[-45,16],[-16,4],[-39,-4],[-8,2],[-2,3],[-39,28],[-4,10],[0,10],[6,4],[5,1],[9,-3],[8,-7],[3,1],[-8,7],[-11,5],[-15,-7],[-3,-3],[1,-5],[-10,2],[-11,7],[0,1],[11,-1],[7,2],[-11,19],[-10,-10],[-6,-3],[-7,0],[-3,3],[-9,5],[-15,3],[-8,4],[-8,5],[-1,2],[-1,11],[6,2],[4,-2],[8,2],[0,2],[-19,2],[-8,-2],[-5,-7],[-3,-7],[-6,-5],[-9,-4],[-25,-6],[-5,0],[-7,5],[-19,2],[-11,-3],[-16,-2],[-12,0],[-24,7],[-14,-4],[-35,-10],[-5,5],[-2,38],[1,19],[5,5],[2,0],[13,-9],[7,-16],[11,-1],[8,0],[0,5],[2,4],[16,4],[8,-3],[19,7],[11,5],[8,10],[-8,9],[0,3],[14,0],[5,-1],[11,2],[5,4],[0,2],[-14,11],[-10,0],[7,12],[9,14],[15,6],[8,4],[2,-4],[13,-1],[7,1],[9,4],[-1,2],[-14,1],[-20,2],[-7,-1],[-7,-3],[-8,-7],[-3,-5],[-17,-8],[-5,-2],[-6,0],[-9,3],[-1,2],[10,25],[0,5],[6,14],[35,26],[8,0],[1,-5],[6,0],[2,-4],[12,-1],[-10,3],[-2,7],[-11,1],[-1,1],[9,7],[7,-1],[5,1],[-12,1],[-13,-5],[-33,-19],[-10,-7],[-7,-12],[-13,-4],[-24,25],[-7,22],[14,13],[-2,13],[-12,13],[-17,-2],[-19,-1],[-1,1],[-23,-1],[-13,-1],[-12,0],[-15,1],[-15,6],[-17,0],[-17,-3],[-14,-10],[-1,-6],[-3,-2],[-22,-3],[-13,5],[-12,19],[-5,7],[-1,9],[16,6],[15,3],[1,-2],[16,-7],[7,0],[12,6],[5,6],[21,6],[2,0],[15,6],[5,6],[30,-1],[2,-2],[45,4],[3,3],[9,4],[28,2],[11,-4],[3,-2],[10,-2],[25,0],[16,1],[5,8],[9,23],[0,9],[-1,2],[-10,0],[-3,-2],[0,-5],[-10,-8],[-12,-6],[-10,-3],[-27,6],[-36,7],[-2,3],[8,14],[14,11],[11,6],[13,3],[8,3],[13,9],[11,8],[9,5],[19,3],[9,5],[-15,-4],[-9,3],[-8,4],[-8,9],[-5,0],[-11,-4],[0,-1],[-12,-13],[-11,4],[-5,9],[0,3],[9,2],[5,5],[9,5],[5,12],[-1,1],[-6,-5],[-4,-7],[-7,-5],[-8,-1],[-22,-4],[-12,7],[-15,-2],[-6,-6],[-8,1],[-10,12],[-7,3],[-14,-6],[-5,-1],[-13,3],[-8,-14],[-1,-2],[-10,0],[-11,2],[-33,-6],[-4,-2],[0,-2],[-7,-7],[-23,-4],[-11,1],[-3,2],[-2,8],[-2,5],[-22,6],[-11,1],[-26,-4],[-11,3],[0,2],[9,6],[13,7],[1,2],[-1,9],[7,8],[2,0],[19,-7],[6,-4],[10,-7],[21,-11],[6,1],[4,3],[-14,5],[-12,10],[-10,12],[3,1],[14,-2],[5,-3],[14,-5],[-2,4],[-13,7],[-12,4],[-6,5],[-8,12],[-1,10],[2,6],[12,-3],[27,-14],[24,-8],[5,-2],[3,-5],[3,-8],[4,-3],[16,5],[9,4],[-16,1],[-8,6],[-2,6],[8,2],[5,0],[24,2],[5,1],[3,8],[-14,-4],[-30,-2],[-7,1],[-24,6],[-10,12],[-6,9],[1,6],[4,5],[6,2],[16,-5],[5,-1],[55,-15],[1,2],[-11,3],[-37,12],[-23,15],[-8,8],[-1,9],[2,5],[5,3],[17,-5],[15,-5],[16,-7],[1,-3],[3,0],[-6,11],[-12,6],[-3,0],[-9,6],[-8,8],[17,15],[9,5],[16,-2],[9,-4],[16,-7],[17,-10],[7,-7],[0,-10],[23,-9],[8,15],[9,-3],[10,-10],[4,-10],[-3,-12],[-3,-6],[-3,-8],[-2,-6],[4,1],[9,19],[3,11],[6,2],[9,-10],[-1,-12],[-2,-3],[-2,-7],[3,0],[2,3],[6,14],[-4,20],[-1,1],[-10,21],[-16,8],[-14,4],[-4,0],[-13,4],[-9,7],[-6,6],[-2,7],[7,3],[8,3],[3,2],[13,0],[0,-1],[21,-7],[4,0],[13,6],[3,3],[-16,0],[-16,5],[-22,9],[-13,-6],[-15,1],[-14,6],[-6,6],[8,1],[11,8],[-4,11],[19,7],[8,0],[19,-7],[17,1],[25,-2],[23,-22],[7,-17],[16,-1],[14,2],[27,-21],[6,-7],[11,-22],[1,-5],[3,4],[15,0],[13,-8],[1,-11],[-16,-3],[-11,-4],[1,-3],[6,1],[2,2],[18,2],[13,-7],[2,-4],[1,-14],[-8,-29],[-8,-8],[-5,-4],[-21,0],[-9,13],[0,4],[-8,4],[-7,-3],[16,-26],[7,-4],[16,0],[9,-1],[15,-9],[1,-10],[-1,-6],[2,-12],[1,0],[11,-12],[2,-21],[14,-44],[2,8],[-4,10],[-1,53],[4,1],[3,-3],[9,-4],[-2,8],[1,14],[6,13],[1,3],[10,9],[23,16],[4,0],[4,-4],[-1,-12],[-1,-20],[1,0],[17,-13],[8,2],[16,32],[8,19],[0,4],[0,11],[-5,22],[-10,15],[-2,7],[-3,22],[0,10],[32,10],[12,-1],[0,-1],[13,-23],[9,-20],[7,-7],[11,-7],[7,0],[6,-6],[5,-24],[3,-3],[23,-5],[4,2],[5,13],[1,12],[-8,20],[-6,5],[1,10],[4,18],[10,6],[20,2],[20,-3],[-1,15],[2,5],[14,6],[15,3],[10,-2],[12,-6],[8,-7],[11,-13],[2,-5],[1,-11],[-1,-3],[-1,-7],[1,-2],[11,-3],[10,-1],[6,-3],[5,-7],[11,-21],[4,-20],[11,-19],[4,-4],[2,4],[-1,40],[-6,16],[-5,8],[-5,-3],[-6,4],[-9,19],[-3,12],[-3,23],[5,5],[7,1],[3,-2],[18,-3],[10,0],[9,-1],[6,-3],[22,-17],[1,-3],[15,-17],[27,-1],[6,17],[4,11],[9,16],[7,7],[11,4],[14,-1],[8,-5],[8,-15],[24,-2],[18,-6],[-9,9],[-3,7],[1,1],[22,9],[9,7],[3,4],[1,6],[-1,5],[-20,44],[1,4],[5,4],[8,2],[16,-1],[15,0],[8,5],[21,1],[17,-12],[6,-17],[2,0],[17,-5],[3,-11],[0,-5],[-8,-9],[2,-6],[5,-10],[18,-2],[24,-18],[3,3],[2,5],[2,10],[15,11],[14,3],[13,14],[2,4],[7,7],[5,2],[7,1],[19,-6],[0,-5],[-39,-16],[-1,-3],[5,-4],[5,-7],[0,-6],[-5,-6],[-6,-4],[-7,-3]],[[7982,552],[-3,3],[3,0],[0,-3]],[[8030,902],[6,2],[2,-1],[0,-3],[-2,-9],[-2,-18],[0,-9],[-2,-21],[0,-14],[-1,-3],[0,-6],[-2,-3],[1,-1],[3,-9],[-1,-8],[3,-2],[1,-3],[0,-9],[-3,-14],[1,-3],[-3,0],[-3,-3],[-5,-8],[-3,-58],[1,-2],[-10,5],[-7,17],[-3,5],[-8,4],[-3,-2],[-5,0],[-4,2],[-6,6],[-16,-16],[-2,-4],[-2,-9],[-2,-8],[0,-7],[-2,-29],[-1,-1],[-6,-21],[4,-23],[0,-7],[-1,-9],[-2,-4],[-3,-27],[0,-8],[2,-1],[8,0],[9,2],[6,-4],[8,-15],[-7,-2],[-21,-24],[-2,-2],[-3,-7],[-2,-4],[0,-23],[-5,-11],[-3,-10],[0,-6],[2,-5],[4,-2],[2,0],[25,2],[13,5],[4,6],[15,19],[4,2],[7,2],[3,-2],[0,-16],[-1,-7],[-3,-11],[-5,-30],[6,-14],[1,-5],[0,-6],[-8,-40],[-1,-2],[-5,-6],[-3,-9],[-5,-22],[-1,-8],[-5,-18],[-7,-21],[-6,-37],[0,-30],[1,-39],[0,-8],[-7,-14],[-1,-5],[-4,-22],[0,-23],[-9,-52],[-4,-15],[0,-8],[-2,3],[-3,-7],[-5,-9],[-3,11],[-2,15],[1,5],[0,10],[-3,20],[-13,60],[-4,24],[-15,65],[-9,11],[0,6],[2,12],[-9,50],[-12,39],[-15,74],[-3,13],[9,10],[5,8],[0,6],[-1,10],[3,8],[12,19],[5,7],[4,3],[2,5],[0,3],[-9,12],[3,7],[5,13],[5,12],[16,51],[0,2],[3,12],[0,3],[9,40],[1,3],[4,24],[4,27],[1,5],[3,20],[6,48],[1,11],[0,16],[5,3],[4,-4],[3,1],[4,8],[1,6],[0,26],[2,6],[2,14],[-1,5],[22,2],[8,-4],[4,-5],[9,1],[11,6],[0,6],[3,2],[2,15],[0,3],[6,16],[5,-5]],[[4988,4114],[57,-16],[23,0]],[[5107,4089],[-1,-8],[-3,-12]],[[5103,4069],[-5,1]],[[5098,4070],[-19,-15],[-9,-10],[-8,-11],[4,-21],[1,-1],[4,2],[2,3],[3,0],[8,-3],[14,-6],[2,-4],[-3,-7],[-10,-14],[-4,-1],[-3,-4],[-5,-12],[3,-6],[4,-6],[3,1],[3,6],[7,0],[1,-5],[-1,-8],[-2,-8],[-4,-5],[-1,-10],[2,-8],[14,-6],[13,-8],[4,-9],[12,-18],[0,-1],[-7,-12],[-2,-1],[-6,0],[-12,3]],[[5106,3865],[9,1],[3,4],[-9,18],[0,1],[-11,15],[-4,4],[-10,3],[-3,-2],[-1,-8],[1,-5],[-12,-11],[-7,-1],[-1,2],[4,1],[3,2],[0,3],[-3,4],[-5,4],[-20,9],[-12,-1],[-2,-2],[-6,-12],[0,-5],[3,-10],[-1,-4],[-11,-1],[-11,-3],[-8,-6],[-8,-7],[-12,-8],[-16,-11],[-22,-13],[-2,2],[5,11],[5,4],[3,-1],[-2,-2],[4,0],[8,14],[-11,4],[-3,0],[-11,-8],[-14,-12],[-1,-4],[-17,-36],[-1,-5],[2,-7],[9,-17],[18,-33],[10,-11],[6,-6],[3,1],[4,-6],[0,-3],[-8,-23],[0,-4],[-4,-6],[-1,0],[-2,9],[2,7],[0,4],[-4,0],[-3,-6],[1,-19],[-5,3],[-7,8],[-3,0],[-3,-14],[-1,-12],[-1,-4],[0,-7],[5,-50],[1,-7],[10,-48],[7,-13],[1,-2],[3,-4],[9,-14],[22,-28],[5,-4],[6,-1],[8,-4],[11,-7],[19,-22],[17,-19],[2,-5],[15,-15],[17,-12],[5,-3],[3,1],[8,-2],[1,-2],[6,-7],[3,-3],[0,-5],[-1,-3],[1,-7],[12,-34],[18,-66],[3,-25],[1,-8],[2,-6],[2,-3],[2,-13],[2,-10],[6,-22],[1,-2],[3,-8],[6,-12],[1,-5],[9,-14],[9,-14],[40,-54],[8,-9],[6,-5],[3,-1],[4,-3],[8,-3],[0,-15],[2,-5],[4,-4],[10,-8],[8,-6],[6,0],[7,-2],[4,-4],[0,-2],[4,-7],[6,-4],[6,-2],[3,-1],[27,-4],[11,0],[20,4],[9,-1],[2,-1],[11,1],[12,2],[21,4],[2,0],[7,-3],[9,-5],[6,-21],[0,-6],[-1,-4],[-6,-9],[-15,-17],[-7,-5],[-6,-4],[-5,-6],[-1,-10],[1,-3],[0,-4],[3,-11],[9,-13],[6,-5],[6,-2],[16,-10],[40,-28],[22,-15],[17,-8],[35,-18],[18,-12],[10,-10],[6,-7],[23,-31],[38,-24],[24,-13],[10,-7],[1,-8],[1,-8],[0,-7],[13,-13],[19,-21],[21,-29],[4,-14],[7,-22],[0,-9],[-4,-14],[-2,-2],[-3,-2],[-3,-8],[-4,-14],[0,-7],[2,-3],[-2,-20],[-2,-4],[-3,-1],[-3,4],[-4,4],[-7,3],[-3,0],[-7,3],[-12,13],[0,1],[-5,6],[-2,4],[-5,11],[1,1],[3,1],[-1,22],[-14,38],[-7,8],[-10,2],[-3,0],[-12,2],[-5,0],[-11,-1],[-6,-1],[-15,9],[-25,19],[0,2],[5,9],[3,4],[6,0],[2,2],[0,4],[-2,0],[-29,6],[-6,-1],[-4,-4],[-3,-1],[-7,-6],[-4,-7],[-5,-9],[-2,-3],[-8,-19],[-2,-3],[-4,-12],[-2,-10],[-6,-13],[-7,-9],[-4,-4],[-2,-15],[1,-10],[1,-1],[-7,-23],[-8,-17],[-2,-9],[0,-5],[6,-25],[0,-1],[4,-4],[9,-6],[15,-1],[11,-12],[19,-18],[9,-5],[14,-15],[2,-4],[-3,-7],[-2,-11],[-1,-12],[1,-40],[3,-10],[4,-5],[0,-17],[-6,-11],[-3,-5],[-1,3],[-15,6],[-5,0],[-2,-1],[-13,-4],[-13,-10],[-15,-12],[-4,-6],[-6,-14],[-2,-9],[4,-23],[2,-20],[0,-19],[-1,-5],[-7,-11],[-6,-7],[-8,-5],[-8,-5],[-3,-3],[-22,-37],[-3,-14],[0,-12],[-3,-12],[-4,-8],[-5,-7],[-7,-1],[-7,1],[-3,2],[-17,-2],[-3,-1],[-7,3],[-6,6],[-2,3],[-3,6],[-1,7],[2,11],[-1,26],[-2,6],[0,7],[4,3],[7,4],[5,1],[6,5],[3,3],[11,38],[2,5],[1,11],[1,5],[-6,13],[-7,6],[0,3],[4,7],[17,15],[8,1],[8,-3],[3,1],[7,6],[4,11],[2,18],[0,13],[-10,8],[-6,17],[-1,1],[-4,25],[-1,11],[0,12],[-3,25],[-6,25],[-8,18],[-4,6],[-7,18],[-5,16],[-1,0],[-1,7],[-1,20],[-1,15],[-1,5],[-4,12],[-2,9],[-2,5],[-6,12],[-4,2],[-4,7],[-7,2],[-7,-3],[-11,-17],[-1,0],[-7,0],[-7,9],[-5,8],[-2,3],[-15,19],[-2,2],[-4,1],[-12,6],[-9,10],[-2,9],[5,17],[3,3],[1,3],[0,6],[-1,2],[-3,10],[-8,25],[-9,18],[-8,11],[-4,1],[-8,-8],[-8,3],[-7,-9],[-10,2],[-6,-1],[-7,-4],[-10,-8],[0,7],[1,5],[2,2],[2,-1],[4,5],[11,14],[-1,5],[-3,7],[-19,19],[-6,3],[-5,-3],[-2,-5],[-6,-1],[-13,3],[-3,10],[-3,14],[-4,9],[-1,4],[-11,26],[-10,17],[-4,10],[-3,4],[-8,10],[-9,1],[-3,0],[-7,-4],[-1,0],[-36,14],[-4,0],[-7,-3],[-12,-8],[-2,-3],[-10,3],[-4,12],[-4,7],[-5,10],[-6,6],[-5,3],[-24,12],[-4,-1],[-9,12],[-14,25],[-2,4],[-2,0],[-11,15],[-2,1],[-17,22],[-1,6],[-1,2],[-6,20],[-5,6],[-13,14],[-15,13],[-4,0],[-2,-2],[-5,0],[-11,24],[-2,12],[-3,11],[-9,16],[-2,2],[-17,14],[-15,10],[-16,4],[-8,-1],[0,-7],[-4,-5],[-9,5],[-3,6],[0,4],[3,4],[2,-2],[4,0],[3,4],[1,10],[0,4],[-3,11],[-11,18],[-16,24],[-3,3],[-10,5],[-13,14],[1,2],[1,13],[-1,6],[-5,5],[-6,3],[-2,0],[-12,3],[-7,21],[1,3],[0,16],[1,5],[-2,19],[-2,10],[-12,31],[-7,13],[-5,5],[-2,3],[-4,16],[0,11],[-2,22],[0,16],[-1,12],[-4,18],[-4,9],[-14,23],[-5,4],[-11,7],[-36,14],[-7,7],[-38,34],[-6,7],[-13,8],[-1,0],[-55,19],[-9,1],[-2,-1],[-12,-9],[-19,-16],[-7,-8],[-1,-5],[1,-3],[-4,-16],[-3,-3],[-8,-4],[-6,-3],[-3,-3],[-5,-9],[-10,-25],[0,-5],[1,-5],[-13,-15],[-15,-10],[-5,-3],[-19,-6],[-4,-3],[-9,-5],[-2,0],[-9,4],[-2,0],[-6,-4],[-1,3]],[[4215,3946],[3,-5]],[[4218,3941],[6,-7],[12,0],[13,10],[6,0],[5,-3],[11,7],[10,9],[16,0],[8,-9],[4,-2],[5,-2],[10,-2],[1,7],[2,6],[3,6],[7,0],[6,2],[2,3],[18,33],[2,6],[-2,9],[-1,2],[22,49],[8,6],[11,2],[2,-3],[1,-19],[-1,-9],[-3,-3],[-1,-7],[2,-10],[2,-3],[20,-27],[11,-6],[3,0],[4,6],[10,-6],[4,-7],[0,-3],[-4,-5]],[[4453,3971],[-1,-1],[0,-10]],[[4452,3960],[11,-9],[4,-12],[1,-8],[2,-6],[7,-4],[5,2],[6,15],[0,3],[-2,3],[-5,2],[-5,9],[1,1],[2,12],[9,24],[6,9],[8,6],[7,10],[5,15],[3,13],[-1,1],[-2,18],[-3,2],[-1,3],[3,11],[3,4],[9,1],[13,-10],[-1,-10],[1,-10],[8,-16],[3,-3],[5,-2],[6,-2],[11,2],[9,10],[5,5],[6,2],[7,4],[6,-1],[4,-5],[0,-8],[2,-9],[8,-16],[3,-1],[7,1],[5,8],[1,4],[-3,28],[-8,8],[-4,2],[-3,3],[0,15],[1,8],[9,17],[8,5],[6,2],[3,-1],[1,-5],[-1,-8],[8,-6],[19,-4],[2,3],[3,8],[0,8],[-3,4],[-2,31],[2,26]],[[4808,4206],[20,0]],[[4943,3480],[-4,-1]],[[4939,3479],[-2,-1],[-6,-9],[0,-4],[1,-6],[6,-2],[3,0],[4,11],[0,12],[-2,0]],[[4937,2980],[0,0]],[[4934,3824],[0,-3],[-7,2],[-4,-8],[-3,-11],[-1,2],[6,15],[3,5],[3,0],[3,-2]],[[4589,3251],[-3,-7],[-2,1],[-1,2],[1,10],[3,3],[3,-5],[-1,-4]],[[4669,3205],[-1,-31],[-2,-2],[-8,13],[-3,1],[-13,-4],[-4,-3],[-9,-1],[-2,2],[-3,5],[0,7],[3,4],[8,1],[3,-1],[4,-3],[14,2],[5,5],[2,9],[3,3],[3,-4],[0,-3]],[[4622,3139],[-2,1],[1,11],[3,-6],[-2,-6]],[[4732,3080],[-1,0],[-5,8],[1,7],[2,0],[3,-3],[2,-8],[-2,-4]],[[4653,3078],[-4,1],[0,8],[3,0],[2,-2],[-1,-7]],[[4545,2798],[7,-7],[9,-31],[-16,-15],[-1,-3],[8,0],[7,1],[6,-16],[11,-41],[1,-6],[-1,-7],[1,-7],[7,-14],[3,-4],[-3,-20],[-4,-10],[-4,-6],[-2,-1],[-4,-4],[-8,-16],[-2,-5],[0,-15],[5,-17],[6,-8],[1,-14],[-2,-26],[-3,-30],[-1,-6],[0,-8],[1,-2],[0,-6],[-3,-40],[-1,-14],[-2,-15],[-4,-22],[-4,-25],[-1,-9],[2,-3],[-1,-7],[-1,-2],[-6,-7],[-10,2],[-4,5],[-9,12],[-3,3],[-4,2],[-37,13],[-1,-2],[1,-33],[0,-5],[1,-6],[3,-8],[-5,-14],[-14,-19],[-7,-8],[-2,2],[-16,10],[-9,-7],[-4,5],[-7,23],[-2,9],[-7,2],[-3,-4],[-1,-4],[-3,-3],[1,-5],[-1,-1],[-2,-6],[-4,1],[-5,15],[-1,2],[-1,9],[-1,1],[2,9],[9,-1],[0,-1],[5,-5],[1,3],[-1,4],[-4,11],[0,1],[-9,15],[8,10],[1,3],[0,4],[-2,11],[-3,0],[-3,7],[5,28],[5,33],[-1,13],[0,17],[2,3],[2,-3],[3,-7],[2,1],[5,13],[2,16],[0,5],[-1,2],[-6,8],[-7,1],[-2,-4],[-2,-1],[-4,2],[2,23],[0,4],[7,31],[0,20],[-1,22],[-12,42],[-8,22],[0,1],[-14,7],[-1,0],[-3,-5],[-1,-9],[-2,5],[-1,10],[5,4],[-1,12],[-3,8],[0,5],[6,41],[5,6],[0,-7],[6,-11],[4,-4],[20,-7],[3,0],[9,3],[8,4],[2,4],[1,4],[3,4],[8,4],[4,1],[5,-1],[9,11],[4,9],[18,30],[6,1],[14,15],[0,12],[2,2],[8,1],[37,-25]],[[4389,2777],[-2,-2],[-5,2],[-3,-2],[-4,-5],[1,-11],[-4,2],[0,2],[2,10],[8,14],[4,5],[1,0],[3,-8],[-1,-7]],[[5006,2734],[-2,0],[-1,4],[1,5],[5,2],[-3,-11]],[[5137,2691],[-7,-3],[-6,5],[2,11],[3,0],[8,-3],[2,-3],[-2,-7]],[[5172,2656],[4,-1],[3,1],[-1,-3],[-3,0],[-4,-2],[-2,1],[3,4]],[[4382,2305],[-2,0],[-3,3],[-4,9],[0,4],[11,6],[0,-18],[-2,-4]],[[5306,2228],[-3,2],[0,2],[3,4],[2,1],[2,-3],[-3,-6],[-1,0]],[[5034,2209],[-3,-2],[1,7],[3,2],[2,-4],[-3,-3]],[[5260,2170],[-2,0],[-2,2],[-7,4],[3,7],[8,-1],[1,-4],[-1,-8]],[[5272,2150],[-1,0],[-7,7],[1,9],[2,2],[6,0],[0,-17],[-1,-1]],[[5276,2129],[-5,6],[-1,7],[3,3],[4,-7],[1,-8],[-2,-1]],[[5348,2076],[-2,-12],[-11,-22],[-8,-12],[0,-1],[-18,-39],[-2,-4],[0,-13],[-3,-14],[-3,-18],[-1,-5],[-3,-5],[-4,-3],[-4,-11],[1,-32],[15,-45],[3,-7],[4,-5],[5,0],[1,-2],[2,-14],[0,-7],[-7,-7],[-7,-6],[-9,-12],[-5,-15],[-2,-11],[0,-5],[4,-10],[2,-12],[-1,-5],[-4,-3],[-3,-1],[-5,11],[-3,2],[-16,5],[-5,1],[-11,-5],[-8,3],[-23,14],[-11,13],[-1,2],[-2,9],[-4,8],[0,2],[-5,12],[-3,3],[-1,4],[-13,16],[-12,8],[-8,3],[-13,-1],[-9,-2],[-5,0],[-2,0],[-19,14],[-9,8],[-3,8],[-10,12],[-1,1],[-8,2],[-12,10],[-11,8],[-8,9],[0,1],[-7,13],[-8,8],[-10,0],[-13,11],[-2,4],[-7,6],[-18,1],[-13,-7],[-3,0],[-2,3],[-18,22],[-6,11],[-6,20],[0,4],[4,3],[1,2],[2,9],[0,5],[-2,8],[7,26],[6,10],[23,18],[12,-17],[7,-10],[4,-1],[7,2],[13,11],[2,3],[-2,12],[5,9],[2,3],[28,7],[6,-9],[2,-7],[-2,-5],[1,-5],[2,-1],[44,-31],[5,-1],[5,0],[13,5],[3,3],[4,5],[10,2],[16,-3],[15,-2],[8,0],[9,1],[19,5],[16,8],[3,4],[17,16],[12,3],[12,-3],[1,0],[14,-9],[2,0],[55,41],[6,1],[13,-5],[0,-2],[-8,-5],[-3,-3],[-5,-22]],[[4887,2032],[1,-2],[-5,2],[-2,7],[4,0],[2,-7]],[[4924,2019],[-8,3],[-3,5],[6,0],[3,-1],[4,-3],[-2,-4]],[[4879,1739],[-3,0],[-5,7],[-4,6],[0,8],[3,4],[7,-2],[7,-9],[1,-5],[-1,-4],[-5,-5]],[[6643,6841],[2,-1],[5,3]],[[6830,6736],[9,4],[23,14]],[[6929,6730],[13,-1],[10,1],[0,-9],[-3,-13],[5,-5],[6,-3],[11,-6],[18,-14],[4,-2],[2,-6],[0,-8],[-2,-17],[-1,-4],[-9,-27],[-10,-34],[4,-11],[11,2],[6,-2],[11,-11],[-3,-10],[3,-14],[9,-19],[14,-31],[9,-27],[7,-27],[0,-8],[-5,-17],[0,-2],[-4,-8]],[[7035,6397],[-2,4],[-5,1],[-25,-12],[-3,-10],[-15,-18],[-19,-18],[-3,-14],[1,-6],[-1,-1],[-3,-10],[-1,-1],[-9,0],[-29,4],[-14,5],[-8,5],[-21,-3],[-11,-15],[-3,-6],[-1,-5],[-2,-3],[-13,-7],[-3,0],[-7,4],[-4,1],[-4,-3],[-2,-5]],[[6828,6284],[-14,2],[-18,8],[-5,3],[-9,8],[-4,14],[-6,10],[-18,18],[-6,5],[-10,5],[-7,5],[-23,22]],[[6708,6384],[-2,2]],[[6706,6386],[-1,4],[-15,8],[-20,4],[-14,1],[-9,3],[-10,0],[-5,1],[-6,3],[-3,3],[-11,20],[-6,20],[-1,6],[-3,9],[-4,3],[-2,-1],[-30,-20],[-7,-9],[-5,-9],[-11,-6],[-7,1],[-7,6],[-4,4],[-3,-1],[-20,-11],[-3,-1],[-10,5],[-9,10],[-18,6],[-18,4],[-17,1],[-4,-2],[-3,-5],[-5,0],[-11,2],[-10,5],[-6,3],[-3,0],[-15,-3],[-2,-3],[2,-1],[-5,-6],[-5,-4],[-6,2],[-4,3],[0,2],[-4,7],[-2,7],[-6,7],[-8,-3],[-5,-7],[-3,-1],[-18,-5],[-3,0],[-4,5],[-3,2],[-16,4],[-25,-1],[-21,6],[-11,-1],[-22,-12],[-22,-11],[-23,-7],[-19,-13],[-9,0],[-13,-15],[-3,-4],[0,-9],[-2,-8],[-3,-2],[-7,1],[-8,0],[-5,-2]],[[6085,6381],[0,8],[-3,10],[-5,9],[-2,10],[-1,32],[4,34],[5,-1],[1,-11],[4,-5],[-2,17],[-4,26],[2,6],[2,12],[1,13],[0,9],[-2,12],[3,3],[10,7],[15,12],[13,15],[6,10],[2,10],[0,7],[-1,6],[0,29],[1,8],[3,7],[6,6],[20,38],[6,10],[6,10],[4,2],[13,3],[2,1],[9,-2],[11,2],[4,4],[31,17],[28,13],[13,4],[4,-2],[-3,-3],[-1,-9],[1,-16],[6,-10],[5,-5],[10,-9],[25,-23],[2,-3],[8,-7],[17,-8],[4,-12],[9,-33],[1,-2],[1,-15],[10,-10],[3,-2],[32,-18],[8,-3],[18,1],[9,3],[3,2],[11,4],[36,29],[20,22],[3,6],[2,6],[0,18],[-1,4],[-6,53],[-4,28],[-5,11],[-1,10],[0,11],[4,10]],[[7035,6397],[3,-4],[16,-18],[5,0],[2,2],[3,8],[20,3],[15,-3],[7,-13],[1,-5],[0,-6],[3,-8],[3,-2],[11,-3],[2,1],[0,6],[3,3],[22,11],[14,-2],[4,-2],[31,-12],[3,-2],[5,-9],[0,-2],[-6,-2],[-2,-2],[-6,-21],[0,-3],[3,-8],[14,-16],[5,0],[2,3],[16,14],[33,20],[2,2],[7,1],[36,-1],[30,-11],[3,-2],[17,-19],[-1,-4],[6,-10],[13,-15],[6,-1],[9,6],[4,0],[4,-4],[1,-6],[1,-20],[0,-25],[-3,-4],[-3,0],[-5,-5],[-6,-10],[1,-6],[13,-20],[4,-3],[4,-9],[7,-23],[-1,-6],[-10,-16],[-6,-3],[-5,-1],[-3,-6],[-6,-17],[-2,-9],[1,-6],[7,-2],[5,-4],[18,-14]],[[7415,6052],[12,-16],[5,-14]],[[7432,6022],[-8,-18],[1,-4],[15,-7],[4,-1],[11,-25],[0,-13],[2,-15],[26,-20],[3,-3],[17,-8],[10,0],[2,-1],[11,-9],[0,-2],[3,-13]],[[7529,5883],[-2,-8],[-3,-21]],[[7524,5854],[-2,-5],[-4,-3],[-2,-5],[-1,-6],[16,-6],[2,0],[5,3],[8,3],[17,4],[44,-22]],[[7607,5817],[4,-3]],[[7611,5814],[4,-7],[0,-2],[-4,-3],[-9,-4],[1,-13],[4,-7],[3,-3],[19,-14],[1,1],[6,-1],[9,-7]],[[7645,5754],[0,-4]],[[7645,5750],[-2,-21],[-15,-11],[-21,-22],[-5,-8]],[[7602,5688],[-16,-15],[-10,-5]],[[7576,5668],[-10,-4],[-5,-1],[-20,2],[-5,1],[-15,5],[-1,1]],[[7520,5672],[-1,6]],[[7519,5678],[0,3],[-3,9],[-19,5],[-25,-2],[-4,-1],[-2,-6],[-3,-15],[2,-3],[0,-2],[-16,-18],[16,-27],[7,-8],[5,-4],[8,-2],[5,-11],[2,-7],[1,-9]],[[7493,5580],[-1,-2]],[[7492,5578],[-4,-7],[-8,-2],[0,-2],[11,-22],[1,-1],[2,-25],[3,-28],[0,-3],[-3,-6],[-3,-3],[16,-23],[7,-11],[4,-3],[0,-15]],[[7518,5427],[-7,0],[-28,2],[-3,1],[-16,0],[-8,-3],[-4,-5],[-25,1],[-19,-1],[-3,-2],[-1,-3],[0,-7],[4,-8],[-9,-5]],[[7399,5397],[-9,-7],[-11,-13]],[[7379,5377],[-11,-16],[1,-8],[-6,-20],[0,-1],[-8,-15],[-1,-24],[4,-14],[8,-28],[0,-9],[-4,-1],[-7,-7],[-2,-12],[-11,11],[-16,15],[0,12],[-18,17],[-5,3],[-22,-1],[-13,-3],[-10,-7]],[[7258,5269],[-11,-1]],[[7247,5268],[-3,5],[-1,6],[-2,2],[-5,0],[-7,-2],[-36,-27],[-4,0],[-3,6],[-7,22],[1,4],[-1,8],[-1,1],[-8,17],[-2,2],[-11,4],[-4,-2],[-28,-19],[-2,-1],[-9,-18],[1,-6],[0,-7],[-1,-2],[-12,7],[-2,7],[-3,15],[0,8],[-1,1],[-17,3],[-3,0],[-5,-4],[-16,6],[-7,16],[0,1],[-7,-1],[-5,-5],[-4,-12],[-4,-4],[-4,-1],[-11,-1],[-6,3],[-5,5],[-3,4],[-4,2],[-4,-2],[-4,-7],[2,-11],[-1,-3],[-8,-13],[-2,-1],[-8,6],[4,15],[3,6],[-1,2]],[[6976,5303],[-1,2]],[[6975,5305],[-4,1],[-23,6],[-7,-5],[-6,-1],[-17,-1],[-2,1],[-10,17],[0,11],[1,2],[0,5],[-1,2],[-5,3],[-11,2],[-11,-2],[-4,-4],[-5,-1],[-15,7],[-13,7],[-12,5],[-3,0],[-15,-3],[-8,1],[0,1],[0,8],[-2,0]],[[6802,5367],[-8,1],[-3,-1]],[[6791,5367],[-7,0],[-12,0],[-4,2],[-4,4],[-15,8],[-33,7],[-5,-3],[-6,-1],[-13,-1],[-7,1],[-14,0],[-11,1],[-15,8],[-10,0],[-10,-4],[-6,-3],[-8,-5],[-12,-2],[-1,-1],[-20,-2],[-6,1],[-39,-2],[-4,-3],[-8,-11],[-2,-8],[0,-6],[-2,-7],[-32,-32],[-10,-5],[-4,1],[-2,6],[-4,5],[-17,4],[-4,0],[-13,-4],[-4,-5],[-1,-4],[3,-3],[3,-11],[0,-5],[-6,2]],[[6426,5289],[-3,1],[-3,3],[-3,12],[0,14],[3,3],[-2,5],[2,15],[7,40],[2,9],[5,12],[-3,19],[-6,6],[-32,24],[-8,1],[-10,3],[-4,1],[-4,13],[12,22],[17,29],[2,5],[3,3],[12,10],[12,7],[12,4],[3,-1],[6,0],[17,16],[5,4],[3,6],[0,13],[-2,42],[1,16],[-10,43],[-10,29],[-11,33],[-4,8],[0,3],[-8,29],[0,3],[-3,15],[-1,9],[-6,26],[-4,16],[-1,9],[1,1]],[[6413,5870],[8,-2],[4,-3],[15,-1],[10,3],[15,1],[12,0],[4,-1],[10,0],[3,2],[4,5],[4,1],[5,-1],[6,-7],[0,-5],[3,-4],[14,-3],[3,1],[8,7],[8,9],[12,8],[9,2]],[[6570,5882],[2,-1]],[[6572,5881],[3,-6],[13,2],[3,5],[0,10],[-1,4],[-3,5],[-2,6],[6,8],[3,3],[12,2],[4,0],[4,-6],[4,-1],[5,1],[11,10],[6,12],[18,6],[7,1],[4,5],[5,8],[5,-1],[9,-13],[1,-3],[-4,-9],[-5,-3],[4,-9],[2,-2],[17,-2],[12,5],[3,5],[2,18],[-12,19],[-2,2],[-1,-3],[-3,-1]],[[6702,5959],[-4,-1]],[[6698,5958],[-8,-1],[-5,3],[1,7],[13,39],[2,4],[7,3],[6,8],[0,8],[-6,13],[0,4],[3,27],[7,18],[0,1],[11,16],[0,1],[7,3],[20,1],[11,4],[7,10],[5,12],[0,10],[1,4],[4,4],[26,3],[5,-3],[16,11],[18,14],[5,5],[1,4],[-2,4],[-5,3],[-16,4],[-2,0],[-10,-4],[-4,1],[-7,3],[-2,4],[22,59],[1,2],[-2,17]],[[6076,6188],[-5,3]],[[6071,6191],[5,11],[3,5],[5,11],[3,13],[4,19],[0,41],[-1,4],[5,-7],[1,-16],[-4,-49],[-7,-21],[-9,-14]],[[6706,6386],[2,-2]],[[6698,5958],[4,1]],[[6572,5881],[-2,1]],[[6413,5870],[1,24],[-4,21],[-3,9],[-17,17],[-17,10],[-12,4],[-15,18],[-2,2],[-16,5],[-4,0],[-4,-2],[-3,-8]],[[6317,5970],[-2,2],[-4,11],[-5,7],[-2,10],[0,8],[1,3],[2,37],[4,7],[9,11],[5,4],[3,7],[-2,15],[-2,5],[-15,17],[-9,-2],[-3,3],[-6,19],[-11,4],[-31,1],[-3,-1],[-15,-2],[-4,-5],[-2,-2],[-6,1],[-43,23],[-2,3],[-11,11],[-9,3],[-18,12]],[[6136,6182],[-8,10],[-1,-1]],[[6127,6191],[-5,-5],[-8,-5]],[[6114,6181],[0,7],[3,2],[-2,10],[-3,3],[1,7],[-3,0],[-6,-6],[-1,3],[8,16],[0,12],[-6,25],[-7,25],[-1,0],[-3,8],[-6,6],[-2,11],[-2,23],[0,9],[3,10],[0,8],[-1,14],[-1,7]],[[5792,4807],[15,-10],[0,-5],[1,-13],[3,-2],[5,0],[17,2],[5,4],[0,3],[6,18],[4,6],[23,16],[4,0],[6,-6],[2,-9],[5,-18],[11,-13],[7,-2],[8,2],[3,0],[2,-11],[3,-19],[-7,-12],[-1,-6],[3,-2],[6,-1],[4,1],[6,5],[1,2],[9,-1],[5,-6],[6,-5],[3,2],[0,6],[2,9],[5,16],[25,17],[4,2],[32,0],[19,-1],[9,-14],[14,-8],[6,1],[3,2],[7,11],[2,13],[4,3],[27,8],[16,-6],[5,-4],[4,0],[9,4],[11,1],[29,-12],[16,-12],[1,0],[8,-16],[0,-12],[3,-3],[24,-12],[13,-4],[4,0],[24,-13],[3,-1]],[[6286,4702],[-2,-20],[-2,-1],[-9,-11],[-4,-14],[-5,-20],[0,-3],[-8,-25],[0,-1],[-13,-14],[-9,-10],[-1,-4],[-1,-38]],[[4557,4218],[-8,1],[-5,-1],[-4,-2],[5,8],[0,8],[-4,14],[1,7],[2,5],[4,11]],[[6024,2974],[2,-3],[3,-3],[11,0],[3,2],[6,15],[0,4],[-3,12],[2,14],[3,8],[16,9],[25,18],[4,0],[12,-12],[11,0],[0,1],[5,9],[17,18],[2,0],[18,-2],[11,-5],[5,1],[7,5],[0,5],[2,5],[5,6],[2,0],[22,-3],[5,-3],[3,0],[14,2],[3,3],[1,5],[14,5],[2,-2],[4,-8]],[[5219,1520],[-6,-6],[-12,5],[-6,6],[-1,0],[-5,9],[-1,21],[4,6],[2,0],[18,-17],[8,-12],[0,-11],[-1,-1]],[[5180,1566],[-4,0],[-7,2],[-1,10],[7,3],[3,0],[7,-5],[5,-6],[-1,-1],[-9,-3]],[[3843,5252],[4,0],[14,-5]],[[3861,5247],[4,1]],[[3865,5248],[2,0],[1,4],[-6,11],[0,8],[1,0],[11,6],[8,1],[1,-2],[-2,-5],[0,-5]],[[3881,5266],[1,-1]],[[3882,5265],[14,-1],[3,1],[0,4],[4,5],[9,8],[3,0],[5,-2],[2,-3],[-1,-11],[2,-4],[11,-4],[8,8],[3,5],[0,5],[3,2],[6,-3],[3,-8],[-4,-10],[9,-17],[3,-2],[5,1],[5,-2],[0,-12],[12,0],[10,1],[8,4],[4,4],[2,-1],[6,-6],[2,-12],[10,-4],[15,-3],[10,-6],[3,-3],[0,-2],[-5,-8],[-7,-30],[-1,-6],[-16,-24],[0,-5],[2,-4],[7,-4],[0,-8],[-1,-4],[13,3],[10,-2],[4,-2],[4,1],[11,0]],[[4094,4953],[-13,8],[-1,5],[-2,0],[-6,-3],[-11,-18],[0,-4],[-7,-23],[-8,-7],[-3,-11],[-2,-17],[2,-11],[5,-2],[11,-16],[4,-12],[0,-6],[-5,-16],[-3,-5],[-4,-2]],[[3615,5184],[2,1],[41,29],[12,7],[19,16],[2,2],[9,4],[25,8]],[[3725,5251],[1,-14],[1,-9],[8,-8],[6,0],[5,1],[0,11],[11,4],[8,-3],[17,-8],[0,-10],[2,0],[11,-3],[8,2],[15,8],[9,7],[6,6],[7,9],[1,2]],[[3841,5246],[3,-3],[3,-8],[4,-3],[-1,-6],[1,-1],[2,7],[-5,4],[-1,3],[0,6],[-3,2],[-1,5]],[[2387,7656],[-8,4],[-17,15],[-15,31],[-1,5],[3,4],[7,1],[22,-16],[2,-4],[9,-38],[-2,-2]],[[2394,7759],[-3,-14],[-3,-5],[-7,8],[-18,10],[-4,5],[-6,14],[1,2],[7,0],[10,-2],[16,-9],[7,-9]],[[2335,7818],[-2,-4],[-16,-7],[-3,0],[2,2],[-1,5],[-4,4],[-3,-6],[-14,3],[-4,3],[-7,14],[0,5],[27,4],[10,-8],[14,-7],[2,-2],[-1,-6]],[[2380,7787],[-2,-1],[-6,4],[-25,23],[-10,16],[-13,3],[-14,12],[0,6],[3,19],[3,7],[8,-1],[6,-3],[4,-5],[0,-3],[2,-6],[7,-10],[9,-10],[10,-6],[15,-19],[2,-5],[3,-11],[-1,-9],[-1,-1]],[[2392,7857],[-5,1],[-4,3],[-3,12],[-1,9],[11,-18],[2,-7]],[[2387,7824],[0,-8],[-2,0],[-11,8],[-22,18],[-4,4],[-8,10],[-3,5],[-4,12],[0,4],[14,7],[20,-12],[10,-7],[18,-16],[1,-15],[-9,-8],[0,-2]],[[2419,7846],[-13,-3],[-2,1],[-6,9],[-2,7],[5,2],[1,12],[-4,12],[4,2],[3,-10],[5,-8],[12,-5],[1,-4],[-4,-15]],[[2397,7864],[-5,2],[-6,14],[1,12],[3,-1],[8,-15],[2,-9],[-3,-3]],[[2421,7869],[-10,5],[-9,20],[3,3],[4,-3],[14,-21],[-2,-4]],[[3506,3124],[-10,-9],[-15,-8],[-1,-1],[-10,2],[-4,13],[-1,13],[4,13]],[[4091,4937],[1,-1],[2,-10]],[[4088,4791],[-15,-1]],[[4268,3425],[-2,-6],[-4,-2]],[[4262,3417],[-1,5]],[[5842,3366],[3,-14],[4,-2],[22,-18],[10,-14],[4,-7],[2,-7],[10,-18],[2,-1],[5,-1],[12,-7],[25,-14],[9,-11],[3,-8],[12,-8],[2,0],[13,-8],[5,-3],[7,-10],[4,-13],[-20,-17],[-16,1],[-5,3],[-5,-3],[-8,-10],[0,-6],[5,-4],[7,-1],[5,-4],[0,-5],[-5,-20]],[[5861,2967],[-12,13],[-5,2],[-3,0],[-7,4],[-2,3],[-2,7],[0,5],[1,4],[-1,8],[-8,17],[-3,4],[-7,7],[-5,6],[-11,20],[0,3],[-5,2],[-5,-1],[-21,23],[-3,-4],[-2,1],[-5,4],[-4,8],[2,3],[7,-1],[2,-3],[9,-6],[1,0],[1,6],[-4,10],[-1,2],[-22,-3],[-1,-1]],[[5739,3127],[0,11]],[[3725,5251],[5,4],[15,6],[4,0],[12,-7],[17,-9],[14,-1],[12,6],[34,1],[3,-5]],[[4045,5502],[-1,-1],[-5,1],[-11,-6],[-3,-6],[-6,0],[-3,-3],[2,-7],[-4,-10],[-2,-1],[-12,-3],[-2,0],[-6,5],[-5,6],[-7,4],[-9,3],[-7,-1],[-2,2],[-1,8],[4,4],[2,3],[15,11],[12,7],[4,2],[5,4],[1,5],[3,5],[12,10],[10,3],[24,-8],[1,0],[4,-8],[-1,-11],[-3,-6],[-6,-10],[-3,-2]],[[3999,5554],[4,-5],[4,-6],[1,-5],[-3,-1],[-2,-5],[0,-6],[-5,-6],[-5,-1],[-9,-7],[-16,-10],[-7,-9],[-9,1],[-2,2],[0,3],[4,3],[1,5],[2,1],[1,7],[-2,8],[-4,11],[-3,4],[-2,14],[3,4],[6,0],[4,-6],[2,-1],[8,4],[7,8],[1,5],[5,2],[10,-5],[6,-9]],[[3912,5639],[-4,0],[-3,3],[-1,5],[0,6],[2,5],[17,28],[2,2],[3,-2],[3,-9],[0,-13],[-7,-12],[-7,-9],[-5,-4]],[[3937,5699],[-9,-6],[-1,3],[4,4],[11,10],[2,3],[6,3],[6,1],[1,-3],[-20,-15]],[[3971,5726],[-3,0],[-3,2],[0,3],[8,7],[42,12],[5,1],[0,-4],[-30,-14],[-6,-2],[-13,-5]],[[3882,5265],[-1,1]],[[3865,5248],[-4,-1]],[[3843,5252],[-7,8],[-19,5],[-17,2],[0,-2],[-4,-8],[-10,-1],[-34,13],[-3,3],[-2,0],[-12,17],[1,5],[2,1],[12,10],[3,1],[35,1],[4,-1],[5,-7],[-6,-5],[-5,0],[6,-2],[9,2],[14,-8],[4,-7],[1,-4],[4,-6],[5,-2],[13,0],[6,3],[1,5],[-4,10],[-5,2],[-3,-1],[-16,4],[-13,13],[2,2],[8,3],[14,-1],[3,-1],[2,-2],[0,2],[-3,4],[-7,-1],[-3,6],[0,4],[-4,-5],[-2,0],[-6,-4],[-7,-1],[-9,6],[-18,9],[-7,0],[-4,6],[4,8],[2,0],[7,3],[4,-1],[10,0],[10,-2],[6,-5],[13,-12],[3,4],[6,2],[-6,5],[-9,10],[-3,9],[-5,4],[-5,0],[-11,-4],[-1,8],[15,7],[5,-1],[1,-2],[5,5],[-6,27],[0,4],[3,-1],[9,0],[4,2],[1,2],[29,42],[8,13],[2,5],[7,19],[4,7],[2,9],[1,1],[3,12],[2,3],[10,-2],[7,-6],[18,-4],[6,-5],[2,-5],[7,0],[5,-3],[18,-6],[22,-7],[5,-6],[6,-2],[4,-5],[3,-1],[13,5],[4,4],[2,8],[8,9],[5,4],[5,2],[7,5],[8,8],[5,8],[3,10],[-4,15],[1,9],[-25,0],[-9,12],[-1,19],[1,4],[8,16],[2,3],[5,2],[-8,4],[-8,-2],[-1,-3],[-3,-1],[-20,5],[-6,5],[-1,2],[2,4],[5,4],[1,8],[-1,19],[-5,10],[-5,-1],[-10,-7],[-9,-11],[-13,-10],[-1,-16],[5,-14],[9,-17],[11,-1],[4,-10],[-7,-4],[-3,-9],[-11,-8],[-6,6],[-7,0],[-3,-3],[0,-5],[2,-11],[6,-11],[0,-21],[-2,-4],[-4,-3],[-2,-7],[-15,2],[-6,8],[-6,3],[-15,3],[-6,6],[-12,2],[6,30],[1,8],[0,12],[3,16],[10,48],[0,2],[6,2],[3,0],[2,-5],[-1,-5],[4,-4],[4,-2],[5,0],[5,2],[22,14],[10,8],[9,12],[7,6],[8,3],[4,3],[2,5],[2,11],[-1,2],[6,13],[15,15],[4,3],[39,18],[12,5],[15,3],[12,1],[1,-1],[14,-2],[21,6],[36,9],[7,-1],[11,-5],[2,-2],[0,-4],[4,-15],[5,-7],[1,0],[17,-16],[3,-2],[12,-3],[3,1]],[[4036,5754],[3,-1],[18,2],[13,0],[-1,-2],[-18,-5],[-10,1],[-7,-4],[-4,0],[-3,3],[0,2],[3,5],[6,-1]],[[4094,5751],[-2,6],[5,4],[20,3],[5,-1],[-1,-2],[-15,-5],[-8,0],[-4,-5]],[[4443,6940],[-3,0],[2,7],[3,0],[0,-5],[-2,-2]],[[4047,7070],[-3,-1],[0,3],[3,-2]],[[4040,7101],[-4,0],[-19,12],[1,4],[17,-4],[5,-4],[1,-7],[-1,-1]],[[4070,7137],[-6,0],[-1,8],[1,2],[5,3],[10,1],[4,-4],[0,-5],[-7,-4],[-6,-1]],[[3981,7135],[-3,-18],[-4,1],[-10,-1],[-3,14],[0,14],[1,2],[5,32],[3,1],[3,-3],[8,-18],[1,-20],[-1,-4]],[[3978,7273],[8,-13],[3,-9],[-8,-7],[-2,3],[5,3],[-3,12],[-8,1],[-5,-4],[-2,-12],[1,-5],[2,-1],[1,-6],[0,-7],[-4,-5],[-3,-1],[-5,13],[-6,32],[0,3],[5,20],[5,2],[16,-19]],[[3998,7263],[-6,0],[-8,7],[0,2],[-6,22],[-1,5],[2,14],[3,3],[5,0],[11,-8],[4,-6],[7,-17],[0,-13],[-3,-5],[-6,-4],[-2,0]],[[4013,7297],[-3,0],[-19,21],[0,2],[12,12],[7,4],[3,0],[16,4],[2,0],[0,-12],[1,-3],[-1,-4],[-9,-17],[-8,-7],[-1,0]],[[3979,7323],[-9,2],[-5,4],[-1,8],[1,13],[1,1],[7,-6],[5,-8],[1,-5],[0,-9]],[[4070,7344],[-3,-4],[-3,12],[4,6],[7,2],[4,-3],[1,-5],[-3,-5],[-7,-3]],[[3972,7380],[-2,3],[3,1],[-1,-4]],[[3958,7367],[-1,-1],[-15,9],[-6,6],[-2,7],[1,36],[4,4],[14,-23],[3,-8],[0,-6],[2,-17],[0,-7]],[[3969,7419],[-8,-2],[-15,23],[-3,9],[23,-10],[4,-5],[1,-13],[-2,-2]],[[3968,7444],[-2,0],[-13,7],[-6,1],[-6,5],[-8,9],[0,1],[13,-1],[13,-5],[6,-6],[5,-7],[-2,-4]],[[4016,7425],[-3,-1],[-6,4],[-16,20],[5,6],[21,15],[4,4],[1,12],[4,3],[7,-3],[2,-2],[1,-6],[-2,-41],[-10,-9],[-8,-2]],[[3964,7462],[-1,-1],[-12,5],[-7,5],[-14,13],[-3,8],[-4,6],[3,1],[15,-6],[19,-23],[2,-2],[2,-6]],[[3902,7559],[-7,3],[-3,5],[0,7],[6,6],[2,-3],[5,-15],[-3,-3]],[[3941,7587],[-4,-6],[-6,-3],[-7,7],[-6,-7],[-1,-6],[-2,5],[0,22],[8,5],[10,4],[5,-4],[3,-14],[0,-3]],[[3934,7747],[-6,2],[-11,14],[0,2],[8,10],[6,2],[5,0],[34,-10],[3,-2],[-1,-2],[-6,-3],[-32,-13]],[[3952,7784],[-1,-1],[-7,22],[12,2],[4,-7],[-8,-16]],[[4029,7847],[-14,0],[-5,8],[5,13],[5,4],[17,1],[14,-6],[-3,-15],[-6,-3],[-13,-2]],[[4055,7860],[-2,0],[4,7],[-2,14],[-5,2],[0,7],[5,8],[3,4],[7,3],[6,-1],[9,-17],[0,-6],[-13,-14],[-8,-6],[-4,-1]],[[4110,7896],[-18,0],[-8,2],[-5,9],[23,1],[17,-5],[1,-5],[-10,-2]],[[4175,7962],[-8,-4],[-2,1],[-2,7],[6,12],[24,3],[4,-3],[2,-6],[-1,-3],[-7,-3],[-15,-3],[-1,-1]],[[4195,7988],[-2,0],[-12,7],[-1,9],[1,2],[17,1],[4,-2],[1,-5],[-7,-12],[-1,0]],[[4283,8030],[-5,-3],[-4,5],[-10,3],[-5,4],[0,2],[4,15],[28,8],[6,-2],[8,-19],[-2,-2],[-20,-11]],[[4318,8048],[-4,-2],[-13,8],[3,8],[3,2],[16,1],[7,-1],[2,-4],[-2,-4],[-8,-8],[-4,0]],[[4379,8079],[-8,0],[-4,14],[3,4],[4,0],[10,-13],[1,-4],[-6,-1]],[[4351,8076],[-10,0],[-7,5],[1,4],[18,14],[7,-1],[6,-9],[2,-10],[-1,-1],[-12,-2],[-4,0]],[[4396,8079],[-6,2],[-11,17],[0,8],[21,3],[4,0],[14,-15],[2,-4],[0,-4],[-7,-6],[-17,-1]],[[4412,8119],[-6,0],[-5,4],[10,11],[5,1],[10,-2],[7,-6],[-1,-5],[-4,-2],[-16,-1]],[[4365,8129],[-4,-5],[-7,-4],[-13,-4],[2,8],[-2,2],[-8,2],[-6,-1],[-10,2],[-3,6],[0,5],[28,14],[14,0],[0,-1],[11,-14],[1,-4],[-3,-6]],[[4409,8145],[-5,-1],[-21,3],[-2,2],[0,9],[1,3],[10,8],[9,7],[8,2],[16,1],[0,9],[27,8],[17,3],[4,0],[27,-21],[-1,-3],[-15,-9],[-12,-4],[-4,-2],[-8,-2],[-12,-1],[-1,-1],[-9,0],[-14,-3],[-13,-8],[-2,0]],[[4451,8237],[3,-20],[0,-3],[-3,-4],[-20,-5],[-24,-4],[-2,0],[-1,4],[-20,-4],[-5,4],[2,2],[9,3],[7,0],[18,5],[18,9],[0,3],[9,8],[9,2]],[[4752,8224],[-4,-3],[-2,1],[0,4],[5,8],[12,2],[8,2],[3,-2],[-1,-3],[-9,-1],[-12,-8]],[[4804,8405],[-4,-10],[-2,2],[-20,8],[-6,-2],[-5,1],[-18,22],[0,7],[6,5],[22,-12],[27,-18],[0,-3]],[[4791,8438],[-1,-6],[-4,-7],[-1,3],[-7,8],[-3,-2],[-8,1],[3,9],[8,2],[5,0],[7,-5],[1,-3]],[[4779,8494],[-7,-7],[-11,-6],[-9,5],[-16,5],[-5,-4],[-9,-2],[-2,1],[12,8],[26,16],[1,0],[20,-13],[0,-3]],[[4759,8514],[-40,-25],[-10,-3],[-1,4],[2,9],[4,4],[12,2],[14,5],[7,4],[1,5],[8,-1],[3,-4]],[[4829,8538],[-8,-7],[-6,3],[1,8],[14,8],[16,0],[-2,-5],[-7,-4],[-8,-3]],[[4898,8534],[-3,0],[-20,6],[15,25],[0,1],[13,6],[8,-8],[8,-16],[-4,-6],[-17,-8]],[[4887,8573],[1,5],[6,15],[10,42],[3,17],[5,8],[3,0],[15,-17],[7,-9],[7,-18],[-2,-3],[-15,-10],[-17,-14],[-8,-8],[-13,-8],[-2,0]],[[4874,8673],[-10,-11],[0,3],[-5,4],[-7,0],[-3,-2],[-4,2],[1,5],[6,12],[11,5],[13,-1],[2,-6],[-4,-11]],[[4950,8737],[-8,-6],[-6,-2],[5,5],[0,2],[-8,1],[1,7],[6,13],[8,5],[9,4],[38,1],[3,-3],[-3,-2],[-13,-4],[-15,-7],[-15,-11],[-2,-3]],[[4924,8767],[-8,-2],[7,16],[18,13],[-6,8],[16,12],[3,0],[4,-7],[7,-20],[-2,-5],[-15,-7],[-10,-4],[-6,-1],[-8,-3]],[[5009,8817],[-8,-1],[5,7],[8,4],[7,2],[8,1],[3,-1],[-10,-6],[-13,-6]],[[4984,8813],[-2,0],[-9,7],[3,5],[7,6],[10,-1],[1,-3],[-3,-9],[-7,-5]],[[5179,9034],[-7,-30],[-6,-3],[-2,8],[-9,10],[-10,0],[-2,2],[9,9],[20,5],[7,-1]],[[5178,9088],[-5,0],[6,8],[9,7],[5,1],[1,-2],[-2,-8],[-4,-3],[-10,-3]],[[5305,9218],[-31,1],[-6,5],[5,7],[10,1],[7,-1],[28,-8],[-5,-3],[-8,-2]],[[5398,9237],[-5,-1],[-26,1],[-7,-1],[-14,1],[-2,2],[3,4],[14,3],[16,0],[16,-1],[5,-2],[3,-5],[-3,-1]],[[4990,9196],[-8,0],[0,2],[21,45],[15,23],[2,1],[11,-6],[-2,-30],[-17,-19],[-22,-16]],[[5069,9269],[-7,-20],[-6,-4],[-13,-7],[-3,12],[-3,1],[-2,-8],[-3,2],[1,8],[17,24],[2,2],[12,-2],[5,-8]],[[5260,9293],[-2,-1],[-5,4],[1,7],[8,5],[3,1],[5,-3],[-3,-2],[1,-4],[-6,-7],[-2,0]],[[5140,9299],[5,0],[3,5],[9,0],[5,-3],[0,-3],[-14,-14],[-12,-1],[-11,-3],[-4,-5],[3,-5],[-3,-3],[-16,-9],[-8,0],[-3,4],[-8,-2],[-6,-9],[-4,1],[-5,5],[2,7],[8,8],[1,25],[-3,1],[7,7],[13,6],[2,0],[28,-8],[3,-2],[8,-2]],[[5141,9303],[-2,0],[-10,8],[0,3],[6,5],[4,0],[5,-4],[0,-9],[-3,-3]],[[5171,9299],[-2,0],[-18,12],[2,8],[9,0],[11,-5],[4,-8],[-6,-7]],[[5281,9327],[-24,-18],[-10,-5],[-32,-14],[-18,-4],[-21,-7],[-5,0],[0,11],[1,1],[13,24],[0,3],[5,1],[9,-7],[11,1],[1,3],[-3,7],[-7,4],[8,6],[19,11],[17,1],[7,-3],[0,-7],[-6,-5],[-1,-5],[14,8],[-1,5],[6,7],[3,1],[30,4],[3,0],[-7,-9],[-12,-14]],[[5465,9341],[-1,-1],[-17,0],[-10,-2],[-10,-6],[-3,7],[6,18],[5,5],[7,5],[13,3],[6,-1],[5,-4],[7,-10],[0,-2],[-8,-12]],[[5560,9423],[-3,-2],[-11,0],[-7,-1],[-18,-5],[-1,2],[3,9],[20,21],[3,0],[18,-19],[-4,-5]],[[5577,9431],[-7,2],[-14,25],[1,4],[27,1],[9,-3],[10,-9],[-3,-6],[-14,-10],[-9,-4]],[[5272,9451],[-13,1],[-3,2],[2,12],[4,0],[12,-3],[1,-8],[-3,-4]],[[5409,9422],[-2,-9],[-5,-8],[-10,-9],[-6,0],[-7,-6],[-3,-20],[2,-2],[8,7],[1,3],[-1,10],[22,14],[15,16],[4,11],[-4,6],[1,5],[14,7],[20,1],[13,-4],[6,-8],[7,-11],[3,-16],[-1,-14],[-10,-9],[2,-11],[-20,0],[-16,-1],[-20,-13],[-4,-8],[-12,-20],[-7,-4],[-5,0],[0,9],[-2,8],[-9,-10],[-12,-12],[-15,-9],[-9,7],[-13,0],[-12,-2],[-2,5],[9,8],[18,10],[9,14],[-6,7],[2,-5],[0,-5],[-18,-14],[-11,-3],[-11,-8],[-3,-5],[-5,-5],[-12,-10],[-12,-8],[-4,0],[1,12],[1,2],[32,40],[12,3],[-9,9],[-11,0],[4,9],[18,7],[2,0],[13,17],[-3,8],[2,9],[21,0],[9,-6],[5,-1],[-8,9],[-6,1],[-15,-1],[-6,5],[0,11],[24,33],[7,3],[25,2],[5,-1],[2,-16],[1,-1],[-8,-24],[14,-2],[1,-7]],[[5483,9453],[-16,3],[-6,4],[-15,13],[0,3],[5,4],[4,0],[29,-6],[2,0],[5,-5],[1,-3],[-2,-10],[-7,-3]],[[5329,9445],[2,-33],[-1,-9],[-9,-6],[-36,-18],[-21,2],[-6,2],[-7,6],[2,5],[5,3],[9,2],[18,6],[12,3],[3,2],[-2,12],[-19,3],[8,-6],[-4,-5],[-6,-4],[-12,-6],[-22,-4],[-10,2],[-22,-16],[-7,1],[-3,2],[-6,11],[-1,7],[9,19],[12,9],[18,6],[3,-6],[26,-12],[3,1],[6,10],[-1,5],[-5,5],[5,4],[17,-2],[5,-4],[2,-4],[3,-1],[1,4],[-10,15],[-7,8],[-3,6],[2,8],[9,6],[6,1],[5,-5],[0,-4],[5,-18],[12,-5],[12,-8]],[[5600,9481],[-6,-3],[-2,1],[1,12],[7,9],[19,5],[1,-2],[-6,-10],[-14,-12]],[[5347,9459],[-7,-7],[-2,0],[-5,5],[1,20],[18,28],[12,8],[6,2],[10,1],[3,3],[10,20],[15,10],[2,2],[16,6],[5,-6],[1,-5],[-9,-26],[-4,-5],[-12,-7],[-13,-13],[0,-6],[-2,-2],[-29,-9],[-16,-19]],[[5630,9606],[6,-2],[1,4],[-3,5],[-2,12],[27,-2],[14,-16],[17,-25],[1,-15],[-19,-3],[-7,-6],[-4,-19],[11,-9],[6,0],[-1,-3],[-12,-5],[-5,-1],[-38,-1],[-8,8],[-15,-7],[-26,-17],[-7,-9],[2,-3],[3,1],[2,-4],[-6,-3],[-10,-3],[-6,0],[-1,6],[6,5],[6,3],[1,3],[-4,1],[-20,-3],[-9,-4],[-11,0],[-5,5],[0,6],[4,5],[16,1],[11,2],[18,10],[5,6],[-7,-3],[-12,-1],[-12,4],[-9,6],[5,2],[12,1],[9,-2],[6,0],[4,6],[-9,6],[-5,-2],[-17,6],[-2,5],[4,1],[11,-1],[9,1],[3,-1],[-2,7],[-7,2],[-2,-2],[-5,2],[-10,0],[-4,2],[8,9],[36,2],[25,2],[13,2],[-1,2],[-10,2],[-4,-1],[-16,3],[-3,2],[-7,9],[4,2],[5,-3],[4,-6],[4,-1],[7,5],[-8,10],[5,3],[16,-5],[11,-6],[3,-6],[3,-2],[3,5],[-12,14],[-6,2],[-2,5],[1,8],[8,-3],[9,-8],[6,-8]],[[7300,9670],[-6,1],[4,2],[2,-3]],[[5797,9648],[-13,-5],[-4,-9],[6,-1],[5,-7],[-8,-7],[-6,-3],[-17,0],[-27,-3],[-3,-1],[-20,-3],[-12,1],[-14,7],[-6,5],[0,3],[4,6],[18,4],[14,-4],[0,4],[-11,15],[1,2],[53,-4],[5,-1],[-2,3],[-17,4],[-7,-1],[-9,2],[-3,2],[-3,11],[9,5],[12,-8],[20,0],[2,-9],[3,-5],[7,-6],[4,2],[2,19],[-2,8],[-8,6],[-4,9],[5,5],[14,0],[4,-1],[22,-13],[8,-9],[1,-5],[-6,-7],[-14,-10],[-3,-1]],[[6036,9676],[-10,-3],[-5,1],[-2,11],[4,10],[3,4],[16,1],[2,-1],[-1,-20],[-7,-3]],[[7256,9664],[-4,-1],[-8,1],[-2,2],[11,13],[0,11],[4,10],[8,-1],[12,-3],[3,-2],[5,-13],[0,-5],[-27,-12],[-2,0]],[[6176,9705],[-8,0],[0,4],[6,1],[3,-2],[-1,-3]],[[5887,9686],[-12,-3],[-2,3],[11,10],[34,26],[5,0],[8,-7],[0,-2],[-14,-22],[-2,-2],[-6,0],[-22,-3]],[[5939,9723],[-5,1],[-1,3],[9,0],[2,-2],[-5,-2]],[[6064,9729],[7,-7],[20,2],[1,-1],[-20,-14],[-11,-3],[-10,3],[-5,9],[4,12],[7,3],[7,-4]],[[6079,9727],[-7,0],[0,3],[8,7],[4,-1],[1,-5],[-6,-4]],[[5852,9728],[4,-4],[8,-5],[4,0],[-2,5],[10,9],[6,2],[18,-9],[4,-4],[-2,-6],[-23,-18],[-13,-16],[-16,-7],[-23,-4],[-4,2],[-3,7],[-4,4],[-11,7],[-14,5],[-13,5],[-4,7],[16,15],[4,4],[10,2],[15,-2],[7,9],[7,7],[8,2],[11,-9],[-2,-3],[2,-5]],[[5783,9749],[1,-2],[19,4],[9,-9],[-1,-3],[-5,-4],[-12,0],[-5,-2],[-8,-9],[-5,-4],[-6,0],[-4,12],[7,20],[5,1],[5,-4]],[[6068,9741],[-8,-1],[-6,6],[0,5],[4,7],[13,-10],[-3,-7]],[[5893,9746],[-4,-1],[-11,1],[-18,5],[-2,2],[2,5],[5,6],[4,1],[22,-12],[3,-3],[-1,-4]],[[6056,9768],[-5,-32],[-25,-4],[-6,8],[-5,-4],[-12,1],[-5,4],[-2,6],[2,10],[4,9],[17,10],[17,3],[13,-2],[6,-5],[1,-4]],[[5836,9751],[-6,0],[-13,9],[0,2],[13,19],[11,3],[4,-3],[1,-18],[-3,-9],[-7,-3]],[[5960,9747],[-13,-10],[-13,-2],[-11,2],[-7,0],[-5,5],[0,12],[-5,10],[-9,9],[-10,3],[-4,6],[7,5],[11,4],[2,-1],[14,-18],[1,-3],[6,-6],[30,-11],[7,-2],[-1,-3]],[[6182,9786],[-6,-1],[-5,6],[-1,11],[2,12],[6,0],[13,-8],[0,-4],[-9,-16]],[[6323,9802],[8,-3],[7,-1],[9,-10],[1,-5],[-6,-2],[-14,2],[-12,-1],[-19,3],[-27,7],[-9,10],[2,3],[12,7],[26,4],[3,-1],[1,-6],[18,-7]],[[6425,9861],[7,-19],[1,-12],[-2,-3],[-14,-12],[-26,-19],[-17,-8],[-8,0],[-10,3],[-31,28],[6,10],[38,24],[4,1],[7,-5],[20,6],[-1,11],[-2,5],[13,0],[7,-2],[8,-8]],[[6462,9845],[-16,1],[-7,8],[-9,34],[9,13],[14,0],[4,-1],[18,-10],[8,-3],[13,-17],[-3,-7],[-20,-16],[-11,-2]],[[6406,9910],[-7,-11],[-4,0],[-10,-7],[-16,-14],[-12,-17],[-25,-10],[-15,-4],[-3,0],[0,7],[-4,2],[-13,2],[0,-10],[-2,-2],[-21,-5],[-17,-1],[-12,3],[-11,-10],[-4,4],[4,11],[8,3],[4,4],[2,10],[-7,1],[-10,-2],[-17,3],[-9,9],[2,4],[25,-1],[2,-2],[6,0],[8,2],[14,5],[0,4],[3,5],[18,0],[16,-7],[1,-3],[-9,-5],[2,-4],[13,0],[16,3],[-3,11],[-10,8],[-2,4],[9,3],[11,-6],[4,-9],[9,-8],[3,0],[17,18],[7,13],[16,-4],[9,4],[-4,6],[-1,10],[2,2],[7,-2],[8,-10],[2,-7]],[[6487,9940],[-5,0],[-15,10],[-4,10],[7,7],[5,1],[12,0],[22,-7],[2,-11],[-10,-6],[-14,-4]],[[6586,9968],[-5,-1],[-13,5],[-4,3],[1,4],[12,8],[5,0],[11,-4],[-5,-13],[-2,-2]],[[7394,9672],[6,-14],[6,-10],[1,-19],[-2,-11],[-5,-5],[-5,-2],[-13,-2],[-32,4],[-10,5],[-8,6],[-6,6],[-21,12],[-12,-1],[-4,-4],[0,-4],[10,0],[5,-10],[-1,-5],[-10,-15],[-5,-4],[-22,-13],[-31,-14],[-8,-4],[-9,-3],[-17,-3],[-12,-3],[-4,-7],[4,-12],[-3,-12],[-6,-17],[-3,-5],[-14,-13],[-8,-4],[-6,0],[-9,5]],[[6022,9496],[-6,-1],[-58,-3],[19,-18],[10,-9],[5,-34],[-15,-23],[-8,-11],[-16,-15],[-14,-10],[18,-10],[16,-4],[0,-2],[-6,-8],[-16,-9],[-14,-16],[-30,8],[-40,12],[-62,16],[-45,-3],[-34,15],[-28,-5],[-8,-2],[-6,-24],[5,-22],[3,-9],[6,-27],[-28,-41],[-7,-12],[-8,2],[-11,7],[-20,11],[-43,15],[-11,-15],[-62,-31],[-6,-16],[-12,-36],[-3,-6],[-8,-12],[-14,-19],[-3,-3],[-25,-4],[-14,-21],[2,-6],[8,-8],[8,-6],[5,-6],[10,-10],[3,-6],[6,-18],[-7,-35],[-46,-30],[-51,-69],[-35,-30],[11,-38],[3,-9],[-59,-32],[-6,0],[-35,-2],[-28,-2],[1,-13],[3,-13],[0,-4],[4,-14],[2,-4],[3,-14],[4,-11],[-2,-8],[-4,-9],[-7,-12],[-1,-3],[-4,-26],[-1,-17],[0,-49],[-17,-16],[-1,-9],[-5,-19],[-3,-6],[-8,-13],[-20,-24],[-19,-27],[-16,-25],[-13,-19],[-9,-15],[0,-3],[21,-12],[11,-5],[29,-9],[4,-30],[1,-38],[-1,-3],[-21,-38],[-1,-1],[-92,18],[-13,1],[-8,-2],[-20,-4],[-7,-3],[-19,-11],[-15,-10],[-6,-6],[-14,-16],[-8,-10],[-17,-25],[-25,-32],[-2,-3],[7,-23],[-7,-12],[-8,-12],[-11,-15],[-8,-13],[12,-21],[15,-33],[4,-7],[-3,-4],[-16,-26],[8,-34],[-2,-8],[-4,-12],[1,-18],[5,-16],[11,-21],[2,-3],[14,-37],[1,-3],[-5,-28],[-8,-43],[-3,-12],[-1,-8],[-2,-8],[-4,-28],[2,-3],[34,-32],[5,-3],[13,-1],[32,-37],[11,-12],[-7,-28],[-4,-11],[-13,-27],[-5,-8],[-4,-2],[-14,0],[-12,1],[-22,-7],[-5,-4],[5,-7],[3,-7],[9,-26],[2,-10],[5,-11],[16,-29],[11,-25],[2,-11],[0,-9],[-2,-10],[-2,-5],[-6,-11],[-3,-29],[0,-11],[-1,-10],[-3,-11],[-2,-4],[-19,-20],[-1,-2],[-23,-20],[-18,0],[-5,3],[-15,-9],[-5,-4],[10,-13],[1,-5],[0,-16],[-1,-2],[-10,-12],[-5,0],[-15,-12],[0,-1],[9,-39],[6,-25],[2,-13],[0,-7],[-2,-2],[-4,-11],[-2,-14],[2,-9],[-17,-45],[-5,-3],[-18,-2],[-3,2],[-1,2],[1,21]],[[4801,7079],[0,4],[-6,18],[-3,6],[-3,2],[-5,1],[-13,-2],[-19,2],[-4,2],[-12,9],[-6,-5],[-13,11],[-5,8],[-14,35],[-1,17],[4,0],[2,10],[-5,7],[-2,12],[0,13],[-11,25],[0,5],[3,12],[7,16],[2,1],[3,-4],[3,-12],[6,2],[3,9],[-2,12],[-7,3],[-2,0],[-2,-4],[-17,-1],[-6,-3],[-4,-7],[4,-14],[0,-12],[5,-14],[7,-4],[3,-6],[1,-10],[-2,-5],[-11,-11],[-8,-2],[-5,3],[2,16],[-2,16],[-1,3],[-5,8],[-11,7],[-6,1],[-3,-3],[6,-8],[5,-1],[9,-7],[2,-4],[1,-13],[-1,-13],[-2,-3],[-6,1],[-3,3],[-7,5],[-2,0],[1,-6],[2,-3],[11,-11],[18,-13],[1,-2],[4,-24],[0,-4],[-7,-12],[-2,-1],[-2,4],[-7,3],[-3,-2],[-4,-13],[-14,-41],[-10,-5],[3,3],[0,3],[-5,0],[-14,-8],[0,-9],[-3,-2],[-7,-2],[-10,0],[-6,3],[2,2],[0,5],[-8,9],[-23,21],[-10,-1],[0,-3],[11,-11],[8,-7],[1,-11],[-12,-15],[-12,-7],[-14,-12],[-9,-22],[-20,-23],[-17,-9],[-8,-3],[-7,-7],[-16,-22],[-4,-4],[-12,-6],[1,-6],[-3,-9],[-25,-27],[-14,-3],[-21,-12],[0,-10],[-4,-11],[-3,0],[-5,5],[-3,-8],[-2,-2],[-41,-7],[-20,-5],[-4,-7],[-14,-2],[-22,1],[-15,5],[-3,3],[-10,1],[-9,-5],[-1,-6],[-8,-4],[-2,0],[-9,12],[-4,5],[-16,13],[-7,1],[0,-12],[-18,1],[-5,7],[0,5],[7,13],[10,8],[11,7],[-2,3],[-18,2],[-36,2],[-9,10],[-7,3],[-2,2],[-11,3],[-16,9],[-4,4],[-2,10],[0,6],[-4,3],[-11,0],[-13,3],[-15,13],[-3,5],[-15,24],[0,1],[-7,19],[0,2],[8,17],[5,19],[0,15],[-2,4],[1,10],[3,0],[19,-12],[-1,-8],[5,-3],[7,-2],[3,2],[0,5],[2,3],[8,-2],[6,-5],[10,-10],[6,-8],[7,-5],[3,-1],[13,0],[-1,2],[-6,0],[-6,2],[-6,4],[-4,5],[0,3],[4,9],[5,6],[18,8],[30,7],[14,3],[5,4],[-2,1],[-14,-3],[-17,-4],[-23,-5],[-7,-3],[-5,-4],[-11,-20],[-1,1],[-7,15],[-1,12],[-4,0],[-9,12],[0,5],[3,4],[8,4],[8,7],[-1,4],[8,10],[11,10],[22,15],[5,2],[14,0],[0,2],[-10,1],[-9,-2],[-4,-3],[-3,-5],[-17,-7],[-1,0],[-17,17],[0,2],[5,10],[9,6],[15,17],[2,7],[22,8],[3,2],[7,3],[-6,1],[-22,5],[-1,-4],[-4,-10],[-7,-12],[-2,-5],[-27,-24],[-4,1],[-6,11],[1,9],[3,1],[5,-1],[6,1],[20,7],[0,3],[-33,-2],[-11,-2],[-13,-8],[-7,-8],[11,6],[6,0],[9,-10],[1,-4],[-2,-6],[-21,-9],[-9,3],[1,4],[-5,8],[-2,-11],[-6,-11],[-3,-2],[-6,1],[-11,3],[-13,14],[-1,3],[-10,18],[-3,20],[17,26],[16,18],[9,8],[2,-6],[0,-10],[-1,-1],[-3,-13],[-4,-15],[1,-6],[4,0],[4,4],[3,9],[0,4],[-2,4],[0,5],[3,9],[3,2],[14,-2],[9,2],[0,2],[11,11],[9,3],[8,-2],[14,2],[1,1],[31,23],[1,3],[-13,-5],[-10,-6],[-3,-6],[-8,-5],[-10,-2],[-18,3],[-6,3],[-13,13],[1,8],[4,9],[5,4],[7,5],[7,2],[10,0],[3,2],[1,5],[-4,6],[7,10],[14,15],[-5,15],[1,7],[17,22],[17,16],[18,13],[7,3],[6,0],[7,-2],[3,-4],[-5,-5],[-10,-29],[-3,-26],[0,-11],[1,-6],[2,4],[-1,6],[2,10],[6,22],[4,16],[5,12],[12,16],[6,7],[19,5],[11,-2],[6,-2],[4,2],[3,4],[-2,1],[-15,2],[-1,8],[6,11],[-2,0],[-6,-4],[-9,-10],[-2,-3],[-8,-7],[-21,-15],[-5,0],[-4,7],[-3,2],[-26,-11],[-8,-5],[-4,-2],[-5,2],[-3,3],[-5,-14],[-3,-17],[-5,-10],[-2,1],[-17,-1],[-11,-21],[-3,-27],[-3,-4],[-5,-4],[-9,-4],[-6,5],[-3,6],[1,7],[-6,21],[-5,-2],[-8,1],[0,2],[11,38],[6,11],[8,5],[-1,3],[-3,-1],[-10,-6],[-2,-3],[-9,-22],[-13,-20],[-5,-11],[-7,4],[-7,11],[-11,3],[0,1],[12,12],[-1,1],[-19,3],[-1,2],[-2,15],[0,5],[8,6],[7,8],[-3,11],[0,5],[8,8],[4,-1],[3,-4],[18,-20],[5,-2],[15,0],[10,10],[1,4],[1,48],[-3,6],[-9,4],[-9,-5],[-4,-12],[-23,-18],[-5,-3],[-10,-1],[-7,7],[-14,16],[0,3],[7,-1],[7,-8],[4,0],[-11,21],[-4,4],[-4,1],[-7,4],[-14,12],[1,1],[9,0],[14,-7],[23,-12],[4,-4],[0,-7],[4,-8],[2,-2],[11,-1],[0,7],[-3,10],[-6,7],[-6,3],[-11,4],[0,5],[15,17],[3,2],[7,2],[4,0],[5,-2],[5,4],[-10,6],[-16,-7],[-2,-2],[-1,-7],[-8,-5],[-15,-2],[-3,3],[0,4],[-6,-1],[-4,2],[-8,26],[3,20],[5,8],[8,3],[18,-5],[4,-6],[3,0],[17,-1],[5,2],[3,5],[19,9],[23,3],[5,1],[12,4],[27,-2],[17,-5],[3,-4],[6,-3],[7,-1],[5,1],[14,7],[10,14],[9,0],[21,-3],[4,-1],[15,-13],[7,-16],[16,-22],[0,-7],[-3,-8],[5,3],[3,6],[0,11],[-7,2],[-6,5],[-7,14],[-3,11],[1,4],[4,2],[19,1],[19,4],[15,13],[-3,4],[-4,0],[-4,5],[-6,16],[0,2],[8,18],[13,13],[3,5],[8,3],[5,6],[-3,0],[-12,-7],[-5,-5],[-16,-16],[-4,-9],[-1,-11],[11,-21],[-10,-9],[-17,-3],[-25,-7],[-5,1],[-1,7],[-2,3],[-12,5],[-13,-1],[-17,8],[-3,3],[1,5],[9,8],[7,16],[3,12],[-3,2],[-14,-31],[-9,-6],[2,-10],[-4,-17],[-11,-5],[-13,0],[-12,6],[-36,4],[-29,0],[-26,-5],[-12,-11],[-9,-4],[-16,10],[-22,7],[-8,3],[-1,4],[5,5],[11,-4],[5,-4],[3,0],[3,4],[-4,6],[-11,6],[-6,0],[-9,-2],[-4,0],[-6,9],[1,1],[29,18],[32,9],[5,1],[15,-3],[9,-1],[1,1],[-6,2],[-19,1],[-6,1],[-20,-3],[-15,-4],[-9,-7],[-5,-1],[-5,8],[-7,14],[3,3],[15,7],[13,1],[21,0],[25,-7],[2,0],[11,7],[19,0],[2,-2],[3,2],[-4,6],[-7,4],[-12,-1],[-3,-4],[-7,-4],[-14,-2],[-35,12],[-6,3],[-2,4],[2,6],[14,0],[3,1],[-3,3],[-12,4],[-1,2],[8,1],[8,0],[9,-2],[-8,0],[0,-1],[9,0],[-3,3],[-5,2],[-12,0],[-10,1],[15,2],[0,2],[-34,0],[-2,2],[-3,8],[0,3],[3,9],[4,6],[10,5],[28,22],[10,10],[10,3],[22,-4],[11,-3],[4,-3],[5,-7],[33,-3],[10,1],[26,1],[5,-1],[6,-5],[8,-2],[9,-1],[7,2],[3,4],[0,4],[2,4],[5,3],[8,0],[11,-3],[3,3],[-15,4],[-11,-2],[-5,-4],[-3,-8],[-2,-1],[-9,1],[-27,6],[-36,4],[-7,-2],[-12,-1],[-1,-1],[-5,3],[-5,6],[11,2],[10,0],[0,3],[-14,1],[-33,3],[-13,2],[-15,-6],[-23,-5],[-7,6],[5,12],[3,2],[4,-4],[4,1],[24,12],[0,2],[-16,13],[-12,6],[-10,1],[-3,2],[-2,9],[1,9],[9,6],[6,-2],[7,-8],[27,-27],[3,-5],[-1,-8],[5,5],[6,13],[-5,3],[-12,3],[-5,4],[0,2],[4,11],[3,2],[6,0],[27,-3],[22,7],[5,-1],[4,-3],[1,-3],[0,-14],[16,-3],[29,-6],[4,-4],[9,-1],[0,3],[-11,5],[-13,2],[-7,0],[-6,3],[-21,22],[-1,4],[4,9],[4,4],[10,9],[31,15],[6,-1],[18,-29],[14,-23],[0,-2],[-5,-8],[1,-1],[7,6],[0,4],[-2,5],[-13,25],[-4,5],[-4,3],[-4,10],[0,6],[3,4],[38,14],[2,0],[21,-7],[3,-3],[-2,-5],[1,-9],[6,-9],[7,-6],[3,-7],[1,-16],[-1,-3],[-4,-3],[-4,-5],[0,-8],[5,-5],[9,0],[6,3],[-1,3],[-2,-2],[-8,-1],[-4,2],[-1,6],[7,5],[2,6],[0,8],[-2,13],[11,1],[27,1],[4,-2],[8,-9],[2,0],[-2,6],[-8,6],[-8,3],[-9,-4],[-5,0],[-26,9],[-3,2],[-5,10],[7,2],[0,2],[-8,10],[-7,7],[-10,7],[-15,-2],[-3,-3],[-18,-7],[-16,-2],[-4,0],[-14,7],[-1,3],[25,8],[10,0],[10,-1],[8,1],[-2,4],[-12,4],[-11,-1],[-20,-1],[-6,1],[-2,11],[-1,1],[8,7],[5,1],[29,1],[6,-7],[13,13],[7,3],[28,0],[17,0],[36,-15],[20,-11],[2,-4],[2,-6],[4,10],[3,2],[12,2],[13,3],[-2,2],[-6,0],[-15,-2],[-8,-2],[-7,0],[-6,3],[-5,6],[0,7],[25,15],[4,2],[20,6],[11,2],[18,1],[20,-11],[-1,4],[-3,4],[-9,7],[-7,2],[-41,-7],[-18,-8],[-8,-5],[-14,1],[-3,10],[16,10],[7,2],[15,1],[4,3],[-9,1],[-20,-5],[-9,-5],[-10,-2],[-45,-6],[-5,1],[3,18],[3,14],[-7,11],[1,7],[12,8],[7,4],[22,7],[6,-2],[11,-11],[9,-12],[9,1],[7,4],[7,8],[3,2],[10,2],[7,-1],[2,-3],[-5,-5],[-10,-5],[0,-4],[7,2],[22,10],[7,4],[4,1],[4,-1],[7,-4],[4,-4],[3,-6],[0,-5],[5,-15],[0,-3],[9,-6],[10,-3],[27,-15],[5,-6],[3,-10],[2,6],[0,8],[-4,4],[-27,19],[-13,3],[-8,7],[-1,9],[1,7],[-2,7],[-3,3],[-18,10],[-5,2],[-4,-2],[-7,0],[-1,4],[12,16],[9,6],[7,1],[3,-2],[3,-5],[-1,-7],[1,-3],[23,-24],[4,-10],[3,-4],[19,-8],[4,-1],[2,4],[-5,3],[-12,19],[1,2],[6,1],[6,-1],[8,0],[10,1],[2,5],[-20,0],[-11,-1],[-8,-2],[-19,13],[-9,21],[0,3],[10,5],[10,1],[29,-3],[6,1],[-1,4],[3,4],[6,2],[12,1],[29,5],[-16,0],[-26,-2],[-3,1],[-17,22],[9,4],[11,0],[18,7],[-9,3],[-8,9],[1,3],[13,2],[2,2],[28,6],[4,5],[3,0],[8,-7],[6,-8],[3,-7],[12,-5],[19,4],[7,2],[6,6],[-10,-5],[-23,-4],[-2,0],[-7,6],[-1,24],[13,10],[11,1],[11,-2],[7,9],[3,5],[7,5],[14,4],[10,1],[31,-45],[1,-7],[-2,-5],[4,-8],[9,-2],[15,-7],[13,-8],[1,-6],[2,2],[1,10],[-2,5],[-6,3],[-8,0],[-11,3],[-5,5],[1,6],[4,6],[9,4],[16,4],[5,0],[18,-2],[11,-5],[29,1],[15,2],[5,0],[4,2],[-2,3],[-6,2],[-7,0],[-6,4],[0,8],[3,2],[14,3],[4,2],[0,11],[-6,0],[-21,-9],[-6,-6],[-2,3],[8,13],[3,3],[31,21],[11,2],[1,-3],[12,2],[4,2],[5,4],[1,6],[8,4],[7,0],[16,3],[0,5],[-4,9],[-2,0],[-20,6],[-11,-5],[-7,-2],[-4,2],[-1,7],[1,4],[22,16],[11,3],[9,0],[3,1],[8,7],[0,3],[-10,2],[-14,1],[5,18],[-6,2],[-13,-17],[-1,-6],[-10,-8],[-10,-4],[-18,-11],[-3,-5],[-12,-6],[-10,-3],[-6,-3],[-14,-11],[0,-1],[23,10],[13,7],[7,5],[15,-4],[8,-10],[-18,-24],[-4,-2],[-9,-2],[-27,-12],[-2,-5],[-3,-3],[-8,-5],[-20,-11],[-11,-3],[-9,0],[-3,-1],[-7,-6],[-10,-6],[-6,-2],[-7,0],[-9,2],[-2,2],[-14,26],[-3,10],[3,7],[5,-1],[9,3],[12,5],[12,9],[-1,1],[-11,3],[-12,-5],[-2,-2],[-22,-11],[-22,-9],[-4,0],[0,24],[1,2],[12,10],[8,3],[17,10],[5,5],[37,13],[5,-3],[2,2],[-10,12],[-9,-2],[-9,3],[5,18],[19,30],[12,9],[12,11],[14,12],[4,7],[4,3],[6,0],[4,-6],[9,4],[-11,8],[-14,3],[4,5],[12,2],[9,-2],[3,-3],[12,-8],[6,-3],[6,1],[-6,13],[-3,4],[-8,-2],[-6,0],[-3,4],[5,5],[14,9],[14,-4],[4,18],[3,8],[2,0],[12,-7],[0,-12],[0,-1],[28,-16],[2,-18],[-9,-14],[5,4],[12,13],[12,19],[2,8],[7,10],[4,2],[12,1],[14,6],[-6,3],[-12,-3],[-6,-4],[-4,1],[-6,6],[-10,17],[-1,3],[3,6],[3,3],[15,12],[12,3],[4,-1],[9,0],[8,2],[6,3],[-6,3],[-14,1],[-6,2],[1,6],[11,8],[29,13],[17,7],[8,-1],[4,-4],[7,0],[-2,3],[-7,4],[-9,2],[-7,-1],[-19,-7],[-20,-12],[-40,-27],[-9,-8],[-11,-3],[-7,-1],[0,2],[7,3],[11,13],[-18,2],[-1,1],[4,6],[15,3],[23,2],[19,8],[-3,2],[-6,-2],[-42,-10],[-8,0],[0,2],[6,5],[18,10],[15,6],[11,3],[3,-1],[9,0],[9,4],[3,4],[1,5],[9,6],[13,7],[4,-2],[0,-5],[2,-3],[2,7],[3,0],[12,-4],[14,4],[22,7],[28,12],[42,42],[1,4],[-4,1],[-13,-14],[-20,-17],[-25,-15],[-3,-1],[-11,2],[-2,3],[8,18],[11,3],[15,0],[8,2],[-4,4],[-28,1],[-10,0],[-5,-3],[-9,-8],[-2,2],[12,14],[19,16],[8,5],[-8,15],[12,1],[9,-9],[0,5],[-10,18],[-4,3],[-6,-1],[-9,4],[-4,4],[-4,11],[-1,11],[1,3],[10,12],[8,7],[4,0],[7,-4],[5,-11],[0,-5],[5,-2],[16,-2],[3,3],[-17,9],[-15,16],[0,2],[8,21],[4,13],[6,8],[15,9],[5,0],[8,-3],[21,-13],[15,-13],[1,2],[-3,13],[-4,8],[-8,0],[-10,3],[-5,3],[-3,5],[4,13],[-7,3],[-3,-1],[-19,-3],[-4,1],[-5,6],[21,14],[9,2],[11,0],[1,1],[11,2],[12,5],[9,3],[9,9],[8,2],[26,3],[4,-3],[0,-4],[-7,-4],[0,-19],[3,-3],[9,23],[8,9],[13,1],[11,-4],[19,7],[18,15],[2,4],[-6,2],[-18,-9],[-30,-6],[-5,-6],[-9,-3],[-21,3],[-15,-2],[-30,-13],[-9,-3],[-4,0],[-3,3],[1,2],[23,18],[17,7],[11,-1],[14,0],[0,4],[-26,1],[-9,-4],[-9,-2],[-5,1],[-15,5],[-4,3],[-1,5],[2,2],[8,2],[9,5],[4,4],[-3,8],[-10,14],[-8,0],[-6,5],[1,1],[14,4],[6,-1],[11,-6],[10,3],[23,9],[3,5],[2,0],[9,5],[22,0],[-10,3],[-17,-1],[-8,-4],[-5,-8],[-20,-4],[-9,2],[-1,2],[-4,21],[3,4],[26,-2],[19,-5],[-5,6],[-12,6],[-14,1],[-10,5],[7,3],[28,-2],[9,-5],[18,-1],[26,9],[0,2],[-20,-2],[-6,0],[-1,-2],[-13,-2],[-6,2],[0,6],[2,3],[10,2],[9,-1],[-13,3],[-8,-1],[-5,3],[1,3],[14,4],[17,-3],[33,-3],[0,1],[-10,4],[-10,-1],[-20,7],[-22,16],[0,4],[5,5],[3,1],[23,0],[23,-4],[2,0],[23,14],[9,-2],[5,2],[7,10],[-1,4],[5,4],[12,2],[17,-4],[3,-3],[0,-5],[7,4],[0,3],[-5,4],[-18,3],[-17,0],[-4,2],[7,15],[4,2],[13,3],[20,0],[14,-2],[2,-2],[1,-7],[4,1],[0,4],[-8,7],[-11,2],[-12,0],[3,4],[32,5],[19,-1],[1,-7],[-5,-5],[-1,-3],[10,-12],[3,-2],[3,2],[-2,6],[-9,6],[4,6],[9,8],[7,1],[23,-5],[17,-7],[3,-4],[-1,-6],[8,-11],[6,-1],[-3,18],[-13,13],[5,3],[9,0],[14,-4],[5,-3],[15,-2],[0,3],[-5,6],[-38,6],[-21,2],[-8,-3],[-18,5],[10,4],[2,2],[1,6],[-3,2],[-37,-8],[-3,-5],[-19,-10],[-4,-1],[-6,1],[-10,8],[-25,-3],[1,3],[13,12],[13,13],[2,11],[11,7],[14,-1],[8,-4],[-3,-4],[11,4],[6,5],[-3,2],[-3,-1],[-8,3],[-13,11],[1,2],[11,8],[12,6],[16,4],[6,0],[11,-6],[1,-3],[-3,-1],[-20,-12],[-7,-2],[11,-1],[1,2],[11,4],[29,-2],[14,-2],[4,-2],[9,-17],[13,-31],[2,0],[6,5],[2,5],[-11,10],[-13,18],[2,10],[3,5],[8,6],[20,9],[11,0],[6,1],[-2,3],[-6,0],[-15,-2],[-11,-5],[-4,-3],[-10,-5],[-34,3],[-7,4],[-7,20],[2,4],[14,19],[2,2],[6,-3],[20,-8],[20,0],[-14,7],[-9,0],[-11,7],[0,1],[11,-2],[16,1],[6,-4],[23,-11],[2,5],[-7,9],[-13,5],[-13,4],[-28,7],[-3,-3],[-22,-17],[-25,-12],[-21,-6],[-11,1],[-4,4],[7,16],[15,1],[11,0],[6,3],[0,8],[-21,-1],[-3,-1],[-10,4],[-2,5],[6,5],[33,4],[3,-2],[5,4],[-6,2],[-26,-5],[-2,2],[5,6],[14,5],[6,0],[19,-3],[11,-4],[9,6],[26,8],[28,7],[9,-2],[3,-6],[6,2],[5,5],[6,11],[1,5],[-15,6],[-12,-3],[-17,1],[-15,4],[-10,-4],[-1,-7],[-3,-3],[-11,2],[-5,5],[-2,5],[10,10],[10,9],[10,4],[-1,-7],[5,-2],[8,4],[9,8],[9,-2],[2,-10],[-1,-2],[-14,0],[-2,-6],[1,-3],[4,-1],[26,11],[6,9],[5,13],[2,12],[3,3],[5,0],[4,-2],[9,-17],[-2,-24],[14,-21],[3,-6],[1,-8],[-2,-4],[1,-4],[24,-16],[13,-6],[1,2],[-6,10],[-4,2],[-14,4],[-8,4],[-1,2],[-6,25],[6,3],[13,-1],[8,-4],[2,-4],[6,-5],[9,1],[-5,13],[-17,3],[-1,4],[4,5],[9,8],[5,-5],[5,-3],[18,-4],[6,5],[-24,6],[-3,6],[-9,-1],[-5,-5],[-9,-5],[-6,7],[1,5],[23,13],[1,3],[-4,5],[-18,-1],[-11,-4],[-10,2],[1,6],[10,-1],[10,4],[-2,3],[-3,-1],[-23,6],[-1,2],[5,8],[6,2],[43,-15],[5,-3],[3,-9],[21,-16],[10,-2],[1,1],[-10,9],[-11,5],[-8,9],[0,3],[-17,13],[-7,0],[-21,7],[-2,0],[-3,5],[13,5],[31,7],[6,1],[18,0],[17,-7],[4,-3],[-8,-9],[1,-1],[9,2],[11,4],[4,3],[6,2],[11,1],[4,-3],[22,-25],[0,-15],[-2,-6],[6,4],[7,12],[-2,7],[-11,9],[-6,2],[-8,7],[-2,8],[6,8],[13,0],[9,-3],[10,-6],[9,-3],[4,3],[-8,2],[-19,8],[0,3],[27,2],[-4,24],[-1,1],[-28,-9],[-6,-7],[-4,-3],[-10,-2],[-21,-2],[-2,4],[11,2],[1,3],[-5,4],[-10,4],[-3,-1],[-13,-12],[-28,-3],[-18,-1],[-3,1],[-5,16],[2,4],[7,4],[6,-2],[5,0],[2,4],[-9,6],[0,7],[2,4],[7,6],[45,14],[27,2],[12,3],[12,-2],[10,-10],[5,-2],[28,-2],[0,1],[-5,5],[-4,1],[-17,0],[-23,11],[-9,5],[1,2],[25,12],[6,0],[6,-3],[33,-10],[3,1],[-1,6],[-4,1],[-8,-1],[-8,2],[-21,8],[2,3],[30,13],[6,-6],[9,-1],[2,4],[-17,12],[-4,0],[-22,-3],[-9,-5],[-4,2],[9,21],[19,26],[2,2],[9,2],[25,2],[33,6],[-17,18],[-4,2],[1,11],[2,6],[8,3],[8,5],[6,16],[-1,7],[4,7],[7,6],[6,0],[8,-7],[18,-20],[6,-18],[19,-10],[3,2],[0,4],[-5,5],[3,3],[11,2],[13,-1],[4,-4],[10,-5],[5,2],[-8,8],[-16,4],[-6,0],[-15,5],[-8,4],[-20,16],[-2,3],[2,12],[4,3],[23,5],[23,3],[3,-2],[7,-16],[0,-5],[14,-16],[13,-9],[6,-2],[13,1],[9,-2],[6,-3],[1,-5],[-4,-6],[-5,-2],[-15,0],[-5,-4],[1,-2],[19,-7],[17,1],[2,6],[0,15],[-5,9],[-8,6],[-14,2],[-11,-2],[-6,1],[-17,18],[1,13],[12,6],[10,3],[6,-2],[4,-4],[2,1],[-4,9],[-4,1],[-18,-4],[-3,-3],[-5,-1],[-6,6],[-3,11],[8,11],[15,15],[9,8],[9,6],[4,1],[58,9],[10,-2],[-1,-6],[-9,-18],[-4,-6],[1,-4],[5,-2],[-1,-12],[-12,-22],[-13,-27],[0,-2],[20,9],[5,10],[0,13],[15,45],[15,18],[4,-1],[10,4],[4,10],[10,22],[18,10],[14,-15],[5,-10],[-5,-11],[-10,-36],[-3,-24],[-1,-22],[-2,-5],[-11,-15],[-17,-10],[-8,-3],[-11,-17],[0,-4],[4,-1],[12,15],[19,12],[17,12],[6,13],[15,24],[4,1],[8,-7],[20,-9],[18,-5],[2,2],[-24,14],[-22,15],[-4,5],[11,30],[8,1],[12,3],[8,3],[5,4],[2,8],[-5,6],[2,2],[13,7],[21,10],[4,0],[0,-3],[-8,-3],[-18,-16],[7,-10],[7,-7],[7,2],[12,18],[16,34],[6,3],[15,1],[18,-10],[7,-7],[-3,-8],[15,-9],[7,0],[6,-3],[13,-10],[10,-14],[2,-8],[12,-2],[4,5],[-11,22],[-29,46],[3,3],[9,2],[12,0],[6,1],[9,9],[1,4],[-18,-7],[-28,-7],[-5,1],[-31,9],[-2,1],[-5,10],[-18,5],[-12,9],[12,11],[29,14],[9,0],[1,-5],[6,-6],[13,-5],[10,0],[0,4],[5,4],[18,11],[2,1],[21,-9],[15,1],[5,-1],[2,-3],[-5,-22],[9,-8],[25,-6],[2,2],[-21,7],[-5,0],[-3,3],[6,19],[1,1],[18,-1],[9,-3],[1,-2],[10,-2],[24,-3],[11,0],[6,-2],[-2,-6],[-9,-9],[-8,-6],[-35,-7],[-17,0],[-15,-7],[-6,-4],[4,-1],[5,3],[18,5],[10,0],[12,2],[30,7],[15,-4],[7,-16],[17,-15],[20,-4],[21,11],[8,7],[-2,2],[-12,1],[-6,-1],[-6,1],[-15,7],[-7,7],[13,5],[9,1],[2,8],[-4,11],[1,7],[6,0],[16,3],[3,3],[-14,1],[-1,6],[7,9],[16,17],[9,6],[1,3],[20,15],[6,3],[17,3],[7,0],[33,-8],[6,-5],[5,1],[-13,12],[-7,3],[-7,11],[18,24],[9,5],[15,-2],[23,-16],[5,-1],[7,4],[0,4],[-5,8],[-18,15],[-23,3],[-19,5],[1,14],[17,9],[11,-12],[20,-10],[4,1],[-1,7],[-4,11],[-4,19],[2,7],[15,3],[10,-2],[10,-8],[-1,-5],[4,-1],[12,0],[2,1],[1,10],[-3,3],[3,2],[10,-5],[13,-9],[7,-8],[5,-8],[1,-10],[2,-1],[9,2],[6,14],[1,5],[-2,5],[-4,4],[-2,6],[3,4],[5,-1],[9,-5],[10,-8],[1,-2],[12,-3],[35,0],[4,-6],[-2,-4],[-8,-6],[-10,-6],[-12,-6],[-5,-13],[-16,-12],[-23,-16],[-19,-12],[-1,0],[-18,-13],[4,-1],[11,4],[10,-6],[1,-19],[1,-2],[-4,-4],[-8,2],[-13,-7],[-1,-2],[4,-10],[4,1],[-1,-9],[-15,-9],[-5,-4],[-3,-8],[-2,-9],[-1,-14],[1,-3],[8,-6],[4,0],[3,6],[-4,6],[5,8],[3,0],[-1,-6],[4,-10],[17,3],[4,3],[17,24],[16,15],[3,10],[-11,2],[-4,2],[3,7],[9,6],[38,34],[28,22],[2,9],[29,34],[15,15],[2,3],[24,17],[17,5],[7,-8],[1,-6],[-6,-39],[-8,-8],[-12,-4],[-8,-1],[-15,-6],[-4,-3],[4,-2],[17,6],[6,0],[14,-4],[1,-3],[-6,-22],[-7,-10],[-6,-15],[-1,-17],[6,-4],[10,6],[18,12],[6,6],[-1,7],[6,1],[11,-1],[7,-5],[7,5],[-5,11],[-2,11],[11,10],[5,-2],[23,-5],[-5,5],[-11,5],[-9,19],[8,10],[15,2],[4,4],[3,13],[6,1],[29,-5],[-8,14],[-6,3],[-11,1],[-14,0],[-9,2],[-10,5],[-1,3],[1,9],[13,16],[6,1],[24,-6],[3,0],[7,19],[16,7],[11,-6],[5,-9],[13,-4],[15,3],[7,6],[23,2],[7,-5],[1,-3],[11,-10],[19,-3],[8,-5],[-4,-11],[-10,-16],[-11,-8],[-16,-10],[-14,-1],[-18,4],[-29,-1],[-3,-3],[9,-3],[12,-1],[26,-6],[2,-2],[-6,-6],[-6,-2],[-26,-11],[-25,-10],[1,-2],[18,2],[5,2],[39,12],[8,4],[3,4],[10,4],[2,-8],[-2,-8],[-6,-8],[-15,-11],[-21,-13],[-13,-6],[-3,-3],[4,-8],[3,-1],[9,8],[12,4],[15,2],[-16,-10],[-2,-4],[2,-2],[9,0],[4,6],[11,11],[13,1],[-1,-4],[-18,-21],[-5,-8],[1,-40],[3,-7],[-2,-11],[-10,-12],[-7,-4],[4,0],[9,5],[8,11],[5,10],[-3,3],[-2,7],[-1,17],[6,28],[13,18],[20,37],[6,18],[-1,3],[3,5],[28,29],[7,3],[11,3],[20,-2],[28,-7],[10,-13],[4,-24],[-1,-7],[31,10],[14,9],[13,-3],[1,-11],[-4,-7],[-11,-9],[4,-1],[18,5],[4,6],[10,10],[5,2],[14,1],[15,-8],[19,-18],[1,-2],[-15,-10],[-23,-4],[-8,0],[7,-4],[16,-2],[12,3],[6,4],[12,3],[11,0],[14,-3],[7,-12],[25,-14],[14,4],[3,-1],[7,-12],[5,-12],[4,-14],[-1,-2],[-21,-5],[-24,0],[-28,-4],[-21,-15],[-2,-3],[5,-5],[-4,-5],[-35,-14],[-21,-1],[-21,1],[-2,1],[-33,6],[-34,5],[-30,3],[-29,9],[-12,3],[-15,-2],[-3,-3],[8,0],[12,2],[0,-4],[-10,-6],[-7,-2],[-1,-2],[30,-8],[22,-5],[27,-10],[8,0],[51,-9],[4,-2],[-11,-8],[-21,-9],[-9,-10],[9,0],[6,9],[8,4],[22,2],[5,-3],[4,-17],[-4,-7],[-9,-7],[-5,-2],[-19,-24],[-1,-3],[6,3],[7,8],[9,7],[9,2],[31,4],[10,-5],[15,-10],[7,-1],[-6,9],[-2,9],[8,0],[-4,10],[0,11],[0,6],[20,1],[2,-1],[10,-11],[3,-26],[-1,-8],[-10,-5],[11,0],[4,4],[2,13],[-2,6],[-1,10],[1,2],[18,1],[16,-3],[11,-3],[9,0]],[[6723,9986],[10,-2],[13,7],[4,-2],[2,-4],[-3,-5],[-13,-6],[0,-11],[4,-2],[13,0],[7,7],[5,3],[7,2],[3,-2],[-1,-7],[-19,-9],[-20,-2],[-11,0],[-16,-2],[-16,-8],[-8,1],[-16,14],[18,5],[1,2],[-13,3],[-9,-2],[-7,-3],[-5,1],[-3,3],[4,12],[10,3],[26,2],[12,11],[15,4],[3,-2],[-2,-6],[5,-5]],[[5281,5219],[2,9],[-2,3]],[[5233,5336],[-9,23]],[[5219,5506],[4,2]],[[5164,5634],[7,4]],[[5181,5810],[12,0],[6,-5],[2,0],[13,-4],[3,4],[10,20],[-1,13],[-4,7],[-3,3],[-10,1],[-10,0],[0,-4],[-9,-9],[-7,4],[-10,10]],[[5174,5865],[5,-2],[9,-2],[5,0],[7,2],[9,7],[3,3],[7,4],[25,12],[9,3],[22,8],[33,12],[11,6],[11,3],[13,1],[1,1],[33,10],[12,7],[6,1],[22,3],[11,6],[-2,-4],[-5,-3],[2,-1],[8,0],[9,6],[-1,7],[-9,-4],[8,5],[7,8],[-3,-5],[4,0],[1,2],[8,4],[1,2],[-2,5],[-4,-2],[4,5],[12,18],[7,8],[3,5],[4,5],[7,4],[9,3],[4,0],[17,3],[12,3],[9,4],[11,12],[1,2],[28,15],[1,1],[14,3],[22,3],[8,2],[13,6],[12,4],[18,5],[16,1],[3,1],[38,0],[5,-5],[10,-6],[10,-8],[11,-5],[13,-9],[5,-3],[4,-5],[8,-9],[1,-4],[-3,-4],[-9,12],[-1,7],[-5,5],[-18,9],[-9,4],[-2,2],[-3,-5],[-8,2],[0,-3],[9,-16],[10,-17],[3,-10],[0,-24],[1,-3],[5,-5],[13,-10],[5,-3],[18,-5],[5,0],[4,2],[2,-2],[11,0],[22,2],[21,4],[9,3],[10,5],[1,2],[6,4],[8,9],[3,-2],[-3,-4],[-14,-10],[-12,-8],[-6,-3],[-13,-1],[-7,-3],[-1,-2],[3,-12],[16,-3],[25,20],[9,0],[12,7],[11,14]],[[5918,5987],[27,-4],[12,0],[9,-2],[19,-3],[10,-4],[8,-1],[41,-5],[21,0],[44,-6],[7,0],[11,-1],[28,0],[7,1],[47,0],[25,1],[62,3],[5,1],[12,1],[4,2]],[[6426,5289],[1,-8],[2,-3],[4,0],[0,-2],[5,-16],[-2,-9],[1,-19],[6,-18],[3,-4],[8,-7],[12,-24],[4,-19],[4,-9],[3,-5],[10,-11],[4,-1],[7,-6],[-1,-5],[-3,-1],[-17,0],[-4,-3],[0,-8],[15,-21],[5,-15],[1,-16],[-15,-36],[-1,-3],[-9,-1],[-6,1],[-9,0],[-11,-4],[-5,-5],[-1,-9],[-1,-2],[-12,-13],[-12,-12],[-16,-17],[-5,-5],[-15,-18],[-11,-18],[-5,-5],[-44,-67],[-9,-18],[-4,-6],[-4,-14],[6,-16],[5,-15],[1,-1],[2,-22],[0,-5],[-8,-26],[2,0],[9,-3],[10,-12],[3,-4],[-2,-6],[0,-5],[3,-9],[-4,0]],[[6326,4683],[0,1],[-16,10]],[[6310,4694],[-19,9],[0,1],[-5,-2]],[[2284,1864],[2,-16],[-1,-4],[-2,1],[-5,0],[-14,-7],[-5,-4],[0,-5],[-19,-19],[-19,-5],[-10,0],[-4,2],[-4,5],[-2,1],[-7,7],[-10,5],[-25,2],[-4,-2],[-5,-2],[-1,1],[-9,3],[-20,1],[-21,-9],[-15,-12],[-8,1],[0,6],[4,11],[2,2],[4,11],[1,4],[6,26],[4,26],[5,15],[1,20],[0,47],[-3,11],[2,13],[0,18],[-2,8],[-5,19],[1,3],[6,22],[0,6],[2,9],[0,29],[-3,19],[10,9],[7,-1],[-13,26],[-19,0],[-2,-3],[-9,-10],[-9,-6],[-16,-5],[-2,8],[2,6],[0,8],[1,1],[-1,6],[-5,19],[-8,11],[1,1],[8,2],[6,0],[2,-1],[10,-10],[7,17],[1,7],[7,7],[6,2],[-1,8],[-4,10],[-1,-2],[-2,3],[0,3],[-2,8],[1,4],[0,9],[-2,-4],[-11,-25],[-1,-7],[0,-12],[-2,-5],[-3,-4],[-11,-4],[-15,-5],[-18,6],[-3,3],[-2,17],[1,4],[4,12],[2,2],[4,21],[1,3],[-1,9],[-2,3],[1,4],[0,14],[3,8],[5,12],[3,13],[0,17],[-3,14],[1,4],[8,7],[9,9],[11,23],[8,21],[1,7],[4,22],[8,28],[7,27],[5,19],[1,3],[4,17],[0,5],[-3,23],[6,23],[5,31],[1,8],[1,5],[1,9],[4,16],[4,3],[8,11],[0,2],[-3,20],[-3,-14],[-3,-10],[-1,0],[1,13],[4,19],[2,14],[2,9],[3,22],[0,5],[-2,6],[-10,47],[-8,44],[2,11],[0,4],[-5,32],[-9,31],[0,23],[2,4],[7,10],[8,6],[1,5]],[[2108,2990],[1,6],[13,18],[16,9],[10,0],[18,5],[8,7],[7,4],[1,-1],[14,-20],[1,-3],[0,-7],[-7,-5],[-4,-6],[-5,-11],[-2,-1],[0,-5],[2,-8],[2,1],[3,-3],[0,-12],[3,-2],[7,0],[5,2],[17,15],[6,-6],[16,11],[7,2],[3,0],[11,-10],[-1,-9],[24,-2],[3,0],[10,7],[9,4],[8,4],[1,0],[3,10],[-1,3],[-1,10],[7,4],[0,1],[6,-4],[1,-4],[3,-4],[6,0],[2,1],[3,6],[5,-7],[5,-1],[25,-2],[13,1],[3,3],[7,-7],[2,-20],[-2,-19],[-1,-17],[2,-3],[5,-4],[6,3],[4,1],[10,-1],[6,-2],[7,-7],[8,-10],[1,-5],[-1,-1],[-1,-5],[-13,-28],[-8,-13],[-11,-15],[-9,-13],[-7,-4],[-3,-1],[-5,2],[-3,0],[-6,-8],[0,-1],[-9,-18],[0,-8],[-3,-10],[-8,-7],[-12,0],[0,-5],[7,-12],[2,-4],[7,-17],[1,-5],[-3,-28],[4,-50],[-3,-33],[-2,-18],[-4,-10],[-3,-4],[-4,-1],[-5,1],[-7,-6],[-3,-11],[2,-11],[1,-4],[3,-1],[4,0],[3,-4],[8,-19],[0,-3],[-16,-68],[-4,-13],[-5,-2],[-12,-1],[-8,1],[-8,1],[-10,-6],[-9,1],[-1,1],[-16,4],[1,-7],[1,-1],[2,-7],[1,-1],[16,-26],[1,-1],[6,-24],[1,-10],[10,-32],[12,-24],[2,-1],[5,-1],[5,2],[2,2],[6,-3],[3,-4],[3,-10],[0,-7],[-14,-39],[-3,-6],[-11,-13],[-5,-8],[-7,-4],[-1,-6],[-8,-61],[7,-9],[11,-22],[6,-19],[6,-13],[2,-4],[8,4],[4,5],[4,2],[3,0],[1,-2],[-1,-12],[-1,-4],[-7,-27],[-1,-1],[-15,-4],[-16,-5],[-2,-1],[1,-6],[0,-7],[-1,-1],[-3,-14],[-5,-12],[-14,-19],[-3,-9],[-11,-36],[2,-6],[4,-6],[1,-6],[2,-4],[2,-11],[1,-12],[1,-26]],[[6331,4431],[5,1],[15,9],[6,4],[2,5],[2,11],[4,6],[4,1],[11,-4],[3,-4],[3,-8],[7,-4],[16,-12],[3,0],[2,4],[7,3],[34,-9],[29,-3],[8,-4],[1,-4],[4,-2],[14,-2],[11,7],[14,6],[3,0],[14,-1],[4,-1],[5,-4],[7,-8],[-1,-8],[3,-5],[4,-3],[14,-5],[1,-3],[9,-21],[3,-1],[6,3],[4,0],[12,6],[5,5],[5,8],[2,7],[5,11],[5,5],[12,6],[21,4],[36,0],[3,1],[5,5],[1,0],[11,3],[16,3],[8,-2],[7,0],[6,7],[10,17],[6,21],[0,5],[20,7],[8,-2],[6,3],[8,9]],[[6830,4504],[10,2],[14,-4],[2,-1],[17,-14],[6,-7],[21,-41],[6,-20],[1,-14],[10,-36],[2,-8],[4,-6],[4,-4],[10,-13],[5,-19],[14,-29],[7,-13],[2,-2],[9,-3],[2,-2],[8,-19],[2,-12],[8,-13],[11,-13],[2,0],[7,-4],[8,-8],[2,-6],[3,-11],[2,-16],[-1,-6],[8,-22],[4,-11],[4,-6],[1,-13],[1,-2],[0,-42],[-1,-2],[-6,-23],[-8,-33],[-4,-22],[-2,-6],[-1,-16],[2,-5],[3,-15],[6,-48],[0,-13],[-1,-10],[-4,-1],[-8,-10],[14,-26],[0,-2],[5,-4]],[[7041,3830],[2,0],[6,-3],[2,-3],[0,-9],[3,-11],[4,-6],[5,-3],[26,-14],[16,-6],[2,-1],[10,4],[2,2],[7,15],[16,4],[33,26],[14,3],[12,-1],[12,-6],[8,-4],[6,-4],[4,-7],[3,-6],[2,-9],[-1,-18]],[[7235,3773],[-6,0],[1,-1],[2,-8],[2,-14],[-2,-32],[-4,-31],[-2,-4],[-7,-4],[-21,-4],[-9,0],[-14,-2],[-20,6],[-3,10],[-1,13],[4,7],[5,2],[1,4],[-9,8],[0,1],[-9,0],[-10,-10],[-5,-6],[0,-14],[1,-2],[10,-11],[0,-2],[-5,-15],[-7,-2],[-8,-8],[-2,-5],[0,-12],[1,-1],[8,1],[8,11],[-1,4],[4,-2],[3,0],[5,-2],[0,-3],[-3,-8],[-3,-4],[-1,3],[6,8],[0,2],[-4,2],[-18,-17],[-3,3],[-4,0],[-2,-4],[1,-23],[6,1],[1,4],[16,19],[-2,-8],[-6,-14],[-4,-7],[-1,-4],[-6,-7],[-6,-7],[-12,-21],[-3,-5],[0,-37],[4,-44],[-2,-6],[-4,-17],[-3,-13],[-2,-16],[1,-3]],[[6303,3537],[1,9],[-1,5],[-12,4],[-6,4],[-11,31],[-1,0],[0,8],[18,17],[4,0],[7,-7],[5,-1],[6,5],[1,6],[-7,10],[-7,4],[-5,-1],[-4,2],[-2,3],[-5,4],[-3,5],[-4,6],[-2,2],[-6,0],[-14,-10],[-2,-3],[-1,-5],[-4,-7],[-11,-27],[-2,-3],[-6,0],[-6,5],[-6,12],[-1,3],[0,6],[-5,10],[-1,2],[-10,2],[-17,4],[-6,-3],[-11,0],[-3,3],[-3,6],[1,6],[-2,10],[-5,3],[-7,2],[-8,-1],[-7,1],[-1,1],[-4,9],[0,11],[5,3],[10,0],[10,3],[1,1],[0,6],[-2,4],[-9,6],[-5,-1],[-4,3],[-5,8],[-1,3],[11,10],[9,16],[0,6],[-4,9],[-11,7],[-7,0],[-10,4],[-1,1],[-29,20],[-8,6],[-24,33],[-2,7],[-4,21],[0,6],[5,8],[0,26],[-2,2],[-3,-1],[-2,-6],[-4,-1],[-7,14],[-1,1],[0,6],[-1,1],[-8,15],[-6,4],[-5,0],[-18,15],[-3,7],[0,6],[-4,9],[-8,12]],[[6830,4504],[3,11],[7,9],[2,-2],[12,0],[23,5],[33,4],[2,0],[28,17],[9,5],[3,1],[28,-3],[2,-1],[13,-12],[1,-2]],[[6996,4536],[2,-5]],[[6998,4531],[0,-3],[3,-3],[7,-4],[13,-3]],[[7021,4518],[3,-2]],[[7024,4516],[2,-4],[-2,-7],[0,-7],[1,-1],[15,-5],[4,0],[3,3],[5,5],[8,1],[3,-7],[-2,-7],[4,-5],[6,-4],[9,-3],[6,6],[2,1],[10,-3],[13,-3],[9,-3],[4,-6],[6,-22],[4,-8],[9,-9],[5,-2],[3,1],[4,4],[0,4],[6,5],[3,0],[2,-3],[4,-6],[10,-43],[1,-1]],[[7181,4387],[-1,-2]],[[7180,4385],[-7,-35],[-6,-9],[-3,-5],[0,-6],[2,-7],[6,-16],[3,1],[3,4],[2,-1],[14,-18],[3,-6],[0,-9],[3,-5],[3,-2],[7,2],[3,12],[7,-1],[1,-2],[5,-8],[0,-7],[-3,-30],[-2,-1],[4,-27],[-2,-20],[22,-13],[16,-6],[3,-2],[9,-9],[3,-16],[-1,-45],[-1,-1],[-6,0],[-2,-2],[0,-5],[3,-6],[15,-15],[4,-2],[6,-1],[3,-4],[0,-3],[-2,-4],[-2,-1],[-18,0],[-6,1],[-1,-1],[-6,-9],[-6,6],[-12,18],[0,-1],[-9,-14],[-5,-3],[-3,2],[-14,13],[-1,4],[2,5],[0,4],[-4,2],[-17,-7],[-6,-7],[0,-8],[-10,-9],[-4,3],[3,9],[1,17],[-2,12],[-2,1],[-4,0],[-17,-10],[-1,0],[-9,-9],[-5,-8],[2,-34],[9,-16],[2,-2],[2,-5],[-9,-42],[-1,-2],[-10,-4],[-18,-7],[-2,-5],[1,-4]],[[7113,3944],[2,-12]],[[7115,3932],[-1,-7],[-9,-14],[-3,-3],[-9,0],[-2,-2],[-8,-14],[-5,-11],[5,-3],[0,-30],[-3,-3],[-4,-1],[-9,1],[-12,4],[-4,0],[-6,-4],[-2,-5],[-2,-10]],[[5473,4088],[-11,3],[-6,0]],[[5372,3976],[1,0]],[[5226,3881],[0,3]],[[5090,3838],[-1,9],[11,6],[11,1],[0,2],[-5,9]],[[5098,4070],[5,-1]],[[2885,1387],[-2,-1],[-3,2],[-1,10],[3,4],[2,-9],[3,-5],[-2,-1]],[[2566,1533],[-4,-9],[-4,8],[-3,8],[0,2],[5,0],[5,-5],[1,-4]],[[2870,1541],[-2,-1],[2,4],[2,-1],[-2,-2]],[[2351,1843],[0,-2],[-4,4],[-2,7],[1,2],[2,-2],[3,-9]],[[3486,2207],[2,-5],[-2,-2],[-7,0],[-4,4],[-5,3],[-2,-1],[-7,-9],[-1,9],[0,10],[2,3],[6,1],[18,-11],[0,-2]],[[3480,2271],[-17,-25],[-4,-4],[-2,7],[-2,2],[-10,3],[-3,-5],[-3,3],[-2,6],[2,12],[2,5],[7,15],[9,10],[21,10],[4,0],[8,-5],[1,-15],[-11,-19]],[[3709,2459],[4,1],[6,5],[3,4],[5,-1],[8,-6],[5,-6],[-2,-14],[-2,-5],[-10,-22],[0,-1],[-7,-6],[-5,-13],[-2,-14],[-4,-11],[-21,-22],[-3,-2],[-10,12],[-21,10],[-4,1],[-7,8],[-2,19],[2,5],[0,4],[-9,11],[-3,1],[-15,-8],[0,-1],[-14,0],[-7,1],[-3,6],[3,15],[20,21],[32,35],[28,16],[12,1],[3,-1],[-1,-7],[5,-18],[1,-5],[6,-7],[9,-6]],[[3846,2514],[6,-21],[0,-7],[-3,-10],[-3,-1],[-5,3],[-16,13],[-3,4],[-1,3],[-6,4],[-10,4],[-4,0],[-6,-3],[-9,0],[-4,24],[5,8],[5,1],[9,0],[25,-1],[7,-1],[9,-13],[4,-7]],[[3700,3107],[-3,-13],[1,-4],[3,-4],[2,-1],[2,2],[7,-2],[7,-6],[-1,-1],[-6,-17],[-7,-2],[-3,2],[-2,3],[-4,1],[-4,-7],[-1,-4],[0,-15],[3,-8],[4,0],[2,-2],[4,-10],[1,-30],[-2,-13],[-4,-5],[-7,-5],[-14,-18],[-12,-13],[-28,-22],[-5,-3],[-10,-5],[-6,-5],[-3,-1],[-35,-25],[-3,-4],[-1,-3],[-10,-22],[-2,-8],[-6,-6],[-7,-4],[-8,-2],[-14,-2],[-17,-8],[-8,-3],[-12,-3],[-15,-4],[-24,-12],[-16,-6],[-22,-10],[-10,-6],[-3,-4],[-2,-6],[-4,-4],[-25,-40],[-1,-4],[5,-6],[14,-9],[4,1],[4,-2],[-2,-5],[-5,-8],[-21,-25],[-3,-2],[-4,-1],[-4,5],[1,4],[2,-1],[10,2],[4,10],[-1,1],[-15,-5],[-2,0],[-8,-14],[-3,-8],[-8,-21],[-14,-34],[0,-1],[-10,-14],[-9,-14],[-22,-34],[-2,-7],[-9,-28],[-7,-10],[-4,-9],[-8,-18],[-20,-59],[-1,-13],[-1,-2],[13,-69],[7,-22],[1,-5],[5,-12],[10,-17],[5,-6],[6,-6],[5,0],[2,0],[11,-7],[7,-7],[2,-10],[-1,-6],[-5,-9],[-3,-4],[-14,-10],[-6,-2],[-6,-8],[-12,-15],[-2,0],[-18,-12],[-11,-10],[-19,-28],[-12,-35],[-7,-33],[-12,-36],[-1,-1],[-1,-10],[-5,-12],[-6,-11],[-2,-9],[6,-13],[4,-3],[6,-4],[3,4],[3,-3],[-5,-9],[-25,-12],[-5,1],[-3,6],[-9,1],[-26,-1],[-13,-5],[-2,-2],[-12,-13],[-3,-4],[-2,-8],[-5,-6],[-7,-4],[-10,-8],[-6,-6],[-13,-27],[-3,-6],[-2,-13],[0,-8],[-3,-8],[-7,-27],[-4,-8],[-1,0],[-7,-10],[-1,-3],[-8,-18],[0,-8],[-8,-11],[-9,-3],[-2,1],[-2,6],[-9,18],[-2,2],[-6,3],[-19,-3],[-10,-4],[-3,-6],[-2,-4],[0,-6],[-3,-7],[-4,-5],[-6,-3],[-10,-2],[-12,5],[-3,3],[-2,5],[-4,5],[-26,0],[-18,-1],[-10,-3],[-4,-4],[0,-1],[-10,-5],[-7,1],[-5,5],[-9,7],[-6,-2],[-5,-3],[-7,0],[-16,7],[-24,-4],[-19,-5],[-9,-1],[-12,-1],[-4,2],[-6,0],[-5,-5],[-3,-11],[-4,-11],[-19,-22],[-2,-2],[-8,-5],[-10,0],[-6,4],[-11,0],[-22,-12],[-12,-9],[-7,-10],[-12,-34],[-1,-1],[-2,-16],[-4,0],[-3,5],[-5,0],[-3,-8],[0,-3],[2,-12],[1,-2],[-4,-5],[-22,-12],[-24,17],[-2,2],[-1,3],[-5,9],[-3,6],[-4,5],[-16,1],[-1,-1],[-2,3],[-14,27],[-10,23],[-4,16],[5,-1],[7,12],[-1,1],[-8,16],[-8,6],[-5,3],[-4,-2],[-4,3],[-1,2],[-5,20],[0,5],[11,29],[-29,39],[-20,17],[-24,17],[-7,14],[-3,-2],[1,-9],[-3,4],[-8,5],[-10,2],[-17,-3],[-9,-3],[-4,-6],[-4,-1],[-2,2],[-4,19]],[[2108,2990],[-5,-6],[-4,0],[-4,-5],[-3,-6],[-2,1],[-1,12],[-1,44],[12,17],[5,7],[2,1],[4,5],[11,12],[8,14],[-2,2],[-5,-3],[-3,-9],[1,-2],[-4,-4],[-11,-6],[-13,-2],[-1,1],[2,11],[4,7],[4,3],[18,21],[-4,2],[-7,-4],[-1,-2],[-4,-4],[-8,-1],[-5,7],[-4,12],[0,4],[3,4],[4,-2],[0,-3],[-3,-4],[2,-3],[3,3],[3,7],[1,5],[-3,9],[0,5],[3,0],[4,6],[8,19],[0,5],[-18,-9],[-9,-7],[-2,-5],[-1,-7],[-7,-11],[-3,-4],[-3,3],[-3,11],[1,8],[4,19],[3,8],[11,15],[1,2],[-13,-4],[-10,-9],[-3,3],[-2,3],[-2,8],[1,1],[1,9],[-5,21],[-3,5],[-1,0],[-9,-7],[-2,-1],[-3,2],[5,30],[6,24],[6,8],[5,3],[5,-2],[19,11],[2,2],[-6,7],[0,3],[4,3],[10,5],[7,2],[5,-5],[11,-3],[6,4],[34,19],[10,5],[8,35],[35,36],[14,15],[5,1],[1,-2],[1,-12],[7,5],[10,4],[5,0],[22,-3],[7,-2],[14,-13],[3,-7],[1,-3],[4,-8],[6,-9],[2,0],[4,0],[23,0],[1,-5],[-2,-12],[6,17],[8,3],[46,-3],[16,-1],[18,0],[6,2],[27,-1],[20,8],[8,7],[4,5],[10,-6],[3,-6],[9,-11],[6,-1],[5,2],[8,0],[12,1],[8,-1],[15,-4],[4,-5],[2,-4],[5,-5],[19,-1],[11,-4],[29,-6],[4,-3],[18,-5],[11,-1],[2,1],[10,0],[15,-2],[5,0],[8,1],[12,6],[10,5],[14,7],[18,6],[3,-1],[3,-4],[24,9],[4,0],[14,-12],[17,-10],[13,-6],[10,-9],[17,1],[3,6],[8,12],[11,0],[16,-2],[23,-9],[7,-2],[3,-5],[5,-7],[13,-6],[8,-2],[17,-1],[6,1],[20,8],[18,12],[6,2],[2,0],[0,-7]],[[5523,6561],[-3,0],[-5,-5],[-1,-3],[-18,-67],[-9,-30],[0,-8],[-2,-7],[-8,-21],[-3,-4],[-6,-4],[-2,4],[-1,11],[-2,47],[1,17],[3,12],[16,45],[10,23],[4,2],[14,15],[13,30],[7,16],[8,22],[1,1],[-1,12],[3,9],[10,11],[7,-3],[2,-7],[-10,-32],[-5,-13],[-7,-14],[-4,-10],[-6,-25],[-6,-24]],[[5706,6580],[-8,0],[-1,3],[1,5],[14,21],[0,12],[-11,14],[-3,24],[0,19],[-1,22],[-4,18],[0,8],[1,3],[8,15],[4,4],[5,3],[6,5],[12,19],[11,22],[2,2],[27,22],[6,3],[21,-1],[16,-4],[0,-2],[4,-16],[-14,-21],[-11,-5],[-5,-4],[-2,-11],[-6,-36],[3,-10],[2,-4],[-10,-48],[0,-2],[-7,-5],[-14,-9],[-7,-4],[-6,-3],[-9,-5],[0,-2],[-7,-13],[0,-13],[1,-4],[-6,-15],[-12,-7]],[[5856,6832],[-6,-5],[-3,3],[-4,0],[-9,-5],[-4,-6],[-2,-15],[-7,5],[-5,7],[0,7],[7,12],[2,1],[26,1],[5,-3],[0,-2]],[[4823,6826],[-3,0],[-7,5],[0,7],[-3,6],[0,5],[3,5],[29,-3],[1,-4],[-1,-5],[-12,-12],[-7,-4]],[[5520,6870],[-4,-5],[-1,4],[3,3],[2,-2]],[[4851,6871],[0,-1],[-17,-4],[-7,2],[-2,3],[-3,0],[-16,-4],[0,-9],[-9,16],[2,3],[34,33],[7,0],[2,-1],[7,-8],[3,-5],[1,-12],[-1,-10],[-1,-3]],[[5843,6923],[-2,1],[-5,10],[0,2],[5,0],[14,-5],[-1,-4],[-4,-3],[-7,-1]],[[5637,7061],[0,-2],[-4,6],[-3,9],[0,6],[4,15],[2,0],[4,-9],[1,-3],[-4,-7],[-1,-14],[1,-1]],[[5732,7087],[-4,-1],[-2,4],[6,14],[6,7],[4,0],[1,-5],[-8,-16],[-3,-3]],[[5750,7136],[-5,0],[-9,7],[-6,8],[10,1],[5,-1],[14,-8],[-6,-6],[-3,-1]],[[5650,7157],[-2,-1],[-7,2],[-7,5],[-9,18],[3,4],[3,-2],[12,-6],[5,-5],[2,-15]],[[5643,7152],[11,-4],[-8,1],[-15,3],[-5,5],[-12,22],[0,4],[7,2],[8,-14],[1,-6],[-1,-5],[14,-8]],[[5580,7172],[-5,0],[-10,2],[-11,17],[0,2],[11,-1],[15,-3],[7,-10],[0,-2],[-7,-5]],[[5755,7190],[-3,0],[-4,5],[-2,5],[8,8],[8,8],[15,-3],[-1,-3],[-9,-2],[-10,-5],[2,-10],[-4,-3]],[[5754,7396],[-1,-2],[-7,5],[-14,11],[-2,3],[-1,8],[-1,21],[2,2],[3,-2],[13,-36],[4,-2],[4,-8]],[[5612,7889],[-8,1],[-4,4],[-6,20],[0,2],[14,-4],[5,-10],[4,-12],[-5,-1]],[[5686,7963],[-4,1],[-1,4],[0,5],[1,6],[4,2],[12,-2],[0,-6],[-7,-8],[-5,-2]],[[6063,8223],[-1,-1],[-5,3],[0,4],[4,4],[6,-1],[2,-5],[-6,-4]],[[6501,8717],[-3,-3],[-5,0],[-3,2],[-6,0],[-11,-6],[-5,-6],[-19,8],[-1,2],[-15,2],[-18,-2],[-12,-9],[-5,1],[-19,8],[-2,-9],[-14,-12],[-7,-3],[-11,13],[-22,15],[-6,10],[-15,11],[-5,0],[2,-4],[4,-3],[3,-16],[-3,-11],[-5,-3],[2,5],[-7,6],[-18,13],[-3,2],[-10,1],[-6,-8],[-10,-33],[-1,-14],[9,-4],[1,3],[-5,7],[0,2],[5,-2],[8,-7],[5,-17],[-1,-5],[-3,0],[-3,4],[-18,6],[-4,0],[-16,7],[-31,15],[-3,6],[-8,6],[1,-6],[10,-10],[28,-16],[9,-2],[9,-8],[-1,-2],[-18,-5],[-8,-1],[-11,3],[-3,3],[-5,-2],[8,-10],[4,0],[-2,5],[7,-4],[7,-7],[-2,-8],[-12,-7],[-37,-2],[-6,6],[-8,-2],[-9,-5],[-1,-2],[5,-8],[5,-5],[5,-2],[1,4],[4,-2],[11,-9],[0,-4],[-5,-6],[-10,-3],[-5,0],[-2,6],[-10,13],[-16,14],[-4,0],[-7,-8],[10,-4],[11,-3],[18,-21],[9,-16],[0,-3],[-5,-19],[-6,-1],[-6,1],[-3,-3],[1,-4],[-1,-6],[-22,-13],[-8,-1],[-5,-14],[0,-7],[-3,-8],[-8,-3],[-4,2],[-1,6],[-2,2],[-4,-2],[-1,-6],[6,-9],[6,-3],[5,0],[7,2],[6,-1],[6,-3],[1,-4],[-1,-21],[-5,2],[-14,13],[-8,0],[1,-8],[3,-4],[19,-14],[11,-6],[2,3],[13,-7],[11,-10],[4,-22],[-16,-19],[-19,-13],[-7,-3],[-3,4],[-36,-39],[-3,-4],[-6,-20],[-2,-11],[-13,-28],[-3,-5],[-18,-13],[-14,-3],[-4,6],[-1,-1],[-6,-15],[-4,-14],[-4,-6],[-3,0],[-7,-3],[-2,-4],[-5,5],[-22,-2],[-26,-12],[-1,0],[-16,-19],[-4,-3],[0,-3],[3,-4],[1,-7],[-9,-6],[-3,-1],[-7,4],[1,7],[-3,5],[-16,13],[-5,3],[-5,-6],[7,-20],[-4,-3],[-13,-1],[-7,6],[-3,-5],[1,-9],[-7,-18],[-12,-4],[-11,-14],[-2,-6],[2,-3],[4,0],[3,-2],[-7,-8],[-3,0],[-9,10],[-1,7],[-7,7],[-2,0],[-11,-5],[-1,-3],[11,-3],[4,-5],[-2,-4],[-15,-8],[-5,6],[0,3],[6,0],[-3,2],[-7,1],[3,-11],[-13,-5],[-35,-21],[-12,-14],[7,-2],[6,2],[18,-2],[4,-1],[3,-4],[0,-4],[-15,-22],[-34,-20],[-1,0],[-10,-2],[-6,3],[3,6],[3,0],[1,4],[-8,4],[-6,1],[-6,-5],[-1,-2],[-7,7],[-11,29],[-2,8],[-17,0],[0,-2],[9,-8],[9,-5],[6,-12],[15,-37],[2,-6],[-1,-12],[-3,-1],[-3,5],[-10,0],[1,-4],[11,-5],[10,-2],[0,-8],[-9,-9],[-19,-17],[-3,0],[-4,5],[-12,-2],[-5,-5],[2,-6],[0,-3],[-7,-1],[-10,3],[-5,10],[-11,11],[-2,0],[-11,-11],[0,-2],[5,-28],[1,-8],[13,-15],[11,-4],[10,-2],[3,-3],[-6,-5],[-6,-3],[-3,1],[0,3],[3,1],[0,5],[-6,-2],[-4,-25],[-3,-28],[-4,-5],[-4,1],[-7,-11],[0,-5],[-2,-25],[7,-15],[7,-7],[6,1],[5,-7],[0,-2],[-4,-16],[-2,-1],[-6,2],[-5,13],[-5,5],[-4,2],[-12,2],[-13,-1],[1,-2],[5,-2],[2,1],[10,-5],[-1,-4],[-11,-9],[-5,0],[-2,2],[-4,-9],[2,-11],[7,-10],[7,-18],[-1,-5],[-6,-1],[-4,3],[-5,-8],[6,-9],[9,-8],[-1,-11],[-3,-21],[-3,-36],[-1,-24],[12,-11],[4,-12],[1,-18],[1,-9],[-2,-15],[12,-7],[2,-5],[4,3],[15,3],[5,0],[7,-3],[5,-5],[1,-4],[-6,-3],[-1,-2],[1,-7],[3,-6],[4,-4],[9,-3],[1,4],[-2,4],[1,5],[6,6],[9,5],[6,2],[8,0],[3,-3],[3,-8],[14,-24],[16,-26],[1,-4],[3,0],[3,5],[6,1],[16,-2],[2,-3],[2,-9],[19,-14],[-1,-2],[-6,-1],[-15,4],[-9,8],[-7,9],[-1,-3],[10,-22],[4,-5],[12,-9],[16,-1],[20,-8],[5,-4],[1,-9],[8,-23],[3,-6],[3,-4],[5,-1],[14,-6],[0,-14],[-4,-2],[-10,10],[-4,1],[-10,-18],[10,-4],[4,0],[14,-2],[1,0],[0,-7],[-6,-5],[-6,-1],[-5,1],[-15,-2],[-12,-5],[-4,-6],[-3,-5],[6,0],[-1,-3],[-9,-10],[-3,-2],[-36,-28],[-14,3],[-1,-8],[3,-9],[7,-2],[-3,-2],[-19,3],[-3,1],[7,5],[-1,7],[-11,-1],[-4,-5],[-3,-10],[4,-6],[0,-7],[-11,2],[-9,-2],[-6,2],[-8,5],[-3,1],[-6,6],[-1,8],[4,18],[3,4],[4,1],[-4,17],[-8,11],[-4,2],[0,-5],[-2,-2],[-9,4],[-5,2],[-1,3],[6,0],[2,2],[0,13],[-3,14],[-5,7],[-2,-9],[-5,-5],[-13,-3],[0,-15],[9,-21],[4,-3],[-3,9],[-2,18],[1,5],[3,6],[10,1],[1,-1],[0,-9],[-8,-7],[4,-6],[21,-12],[2,-2],[4,-12],[-1,-2],[-6,-18],[-2,-1],[-23,11],[-4,4],[0,3],[3,3],[-7,1],[-7,6],[-9,11],[2,10],[-1,0],[-5,-6],[4,-10],[5,-10],[1,-11],[1,-2],[-3,-4],[-19,8],[0,1],[-10,7],[-9,2],[-13,-3],[-11,2],[-9,11],[-6,0],[-5,-7],[-17,-3],[-5,9],[-7,6],[-4,1],[-6,-6],[7,-7],[0,-4],[-8,-9],[-21,-8],[-20,-1],[-10,1],[-11,7],[0,-2],[6,-8],[5,-3],[9,-1],[12,0],[10,3],[43,5],[4,-3],[8,-10],[9,-8],[10,-1],[0,4],[-7,2],[-19,14],[0,3],[18,3],[9,-6],[5,-5],[3,-7],[20,-10],[9,0],[17,-5],[2,-5],[-4,-3],[-5,-12],[0,-3],[5,0],[10,-2],[5,0],[-6,8],[-1,10],[2,0],[11,-5],[3,-3],[16,-3],[20,-2],[15,-1],[13,13],[4,3],[10,-4],[11,1],[10,2],[8,9],[11,2],[5,-1],[7,-4],[-1,-4],[4,-1],[2,2],[-1,6],[-6,16],[7,1],[3,-1],[15,-15],[5,-11],[-3,-4],[-14,-4],[-24,4],[-1,4],[-2,1],[-7,-4],[0,-10],[5,-12],[1,-21],[-11,-3],[-12,-7],[-16,-13],[-17,-31],[0,-12],[-14,21],[-4,17],[1,19],[0,7],[-14,10],[-5,-22],[-2,-12],[2,-3],[-2,-9],[-4,-6],[7,-9],[-7,-15],[0,-1],[-31,-22],[-10,-4],[-7,-1],[-9,0],[-9,8],[-7,-4],[0,-1],[15,-11],[-1,-2],[-14,-13],[-16,-5],[-3,0],[-21,3],[-7,2],[-29,4],[-7,0],[-15,1],[-8,1],[-6,-8],[13,-3],[11,-2],[5,1],[3,7],[29,-5],[8,-3],[9,-6],[20,-22],[1,-2],[-14,-9],[-10,-4],[-2,0],[-19,5],[-3,0],[-6,4],[-7,3],[-8,0],[-1,-1],[36,-16],[2,0],[10,-10],[2,-10],[5,-30],[0,-5],[-3,-10],[-5,-3],[-3,-9],[-1,-9],[2,-9],[-1,-1],[-16,-6],[5,-1],[2,1],[7,-2],[2,-6],[5,-9],[-1,-6],[-3,-3],[-12,2],[-6,1],[-2,9],[1,4],[-12,14],[-3,-5],[4,-24],[5,-6],[19,-27],[-3,0],[-8,6],[-2,7],[-25,23],[0,-2],[6,-8],[17,-19],[15,-13],[1,-4],[-11,-19],[0,-16],[8,-16],[1,-4],[-3,-15],[-5,-2],[-2,-6],[-7,2],[-4,-1],[-9,-21],[-1,-7],[-1,-13],[0,-9],[1,-4],[7,-9],[4,0],[2,-5],[3,-12],[-11,-3],[-1,2],[-5,-20],[-4,-27],[-7,-30],[-9,-16],[-5,0],[-7,-11],[-15,-44],[-7,-26],[-1,-12],[-6,-14],[-18,-28],[-10,5],[-2,8],[-24,12],[-29,-15],[-20,4],[-19,3],[-52,0],[-2,-8],[0,-3],[5,-4],[7,-15],[-7,-9],[-11,1],[-4,12],[-8,1],[-1,-1],[-28,-28],[-9,-13],[-6,-12],[-4,-14],[0,-14],[4,-5],[8,-12],[13,-24],[0,-2],[-25,-37],[-9,-2],[-11,3],[-4,5],[-9,6],[-28,-1],[-12,-2],[-1,-1],[-22,-11],[-5,-3],[-7,-4],[-12,0],[-41,14],[-8,34],[-1,5],[2,5],[7,4],[9,7],[2,8],[0,8],[-18,31],[-2,3],[-31,54],[-6,10],[-3,2],[-4,6],[-17,38],[2,1],[23,-11],[10,-7],[11,0],[5,7],[-1,3],[-12,21],[-2,2],[-12,5],[-2,3],[1,9],[6,8],[8,1],[7,-5],[6,-2],[7,1],[4,5],[3,12],[0,8],[-6,21],[-3,2],[-7,2],[-4,-3],[-8,-1],[-7,10],[-8,17],[-2,6],[0,10],[-3,4],[-12,11],[-18,9],[0,13],[-9,14],[-6,8],[-12,29],[0,2],[-5,14],[5,7],[0,8],[-7,28],[-7,8],[-5,-8],[0,-6],[-2,-13],[-2,-1],[-4,8],[-4,5],[-2,6],[1,21],[2,13],[-1,12],[-1,2],[-6,-4],[-4,12],[7,9],[-18,-1],[-6,1],[-1,5],[3,22],[-7,9],[3,9],[3,1],[4,0],[2,2],[6,31],[-1,6],[-3,3],[8,21],[5,10],[2,5],[-12,26],[-10,2],[-13,-13],[-2,-3],[-10,-7],[-5,1],[-12,6],[-3,12],[-19,9],[-5,11],[4,27],[3,11],[1,6],[0,13],[-2,5],[-5,6],[-5,9],[1,8],[7,12],[0,11],[-5,16],[-11,7],[-1,2],[1,13],[2,5],[6,11],[12,6],[7,2],[4,-4],[4,-10],[3,-8],[4,-6]],[[4414,4360],[-1,-1]],[[4450,4379],[1,0]],[[4452,3960],[0,10],[1,1]],[[4218,3941],[-3,5],[-1,7]],[[4072,4013],[6,6]],[[4242,4304],[1,0]],[[6756,2471],[-2,-1],[-6,4],[-6,7],[1,2],[4,2],[8,0],[1,-2],[0,-11],[0,-1]],[[6722,2547],[-12,-2],[-9,6],[1,9],[14,14],[21,7],[1,-1],[9,-19],[1,-1],[-4,-7],[-4,-2],[-18,-4]],[[6960,2659],[-10,7],[-1,10],[2,4],[8,1],[7,0],[8,-2],[3,-3],[0,-4],[-2,-2],[-15,-11]],[[9257,2433],[-11,19],[-16,18],[-1,0],[-18,-19],[1,-14],[-6,-47],[-2,-6],[-3,-3],[-11,-5],[-3,0],[-7,3],[-3,3],[-19,-1],[-5,-5],[0,-4],[5,-8],[19,-47],[0,-3],[-2,-19],[-4,-9],[-2,-4],[1,-1],[1,-6],[5,-17],[0,-1],[6,-8],[4,0],[2,-2],[1,-8],[-6,-22],[4,-17],[3,-3],[0,-8],[1,-20],[0,-9],[-2,-6],[0,-18],[4,-2],[13,4],[7,-11],[-1,-8],[-1,-1],[-10,-24],[-10,-28],[-11,-33],[-2,-14],[9,-7],[38,-25],[6,-9],[-1,-6],[-2,-3],[-2,-20],[0,-38],[2,-5],[7,-1],[20,-25],[3,-7],[0,-5],[-1,-1],[-4,-28],[-1,3],[-4,2],[-15,4],[-7,-7],[-5,-7],[-7,-9],[-8,-7],[-11,-7],[-1,-6],[-3,-9],[-8,2],[-1,1],[-7,24],[-1,5],[4,11],[6,2],[0,16],[-5,12],[-1,0],[-14,10],[-6,0],[-3,1],[-5,0],[-8,-10],[0,-2],[-2,-5],[-5,-7],[-11,0],[-26,1],[-17,6],[-2,1],[-43,29],[-21,-8],[-4,-4],[-3,-1],[-3,2],[-4,1],[-9,4],[-1,7],[-5,1],[-8,-9],[-18,-40],[-1,-7],[-1,0],[-6,-1],[-20,-8],[-3,-2],[0,29],[-8,11],[-11,3],[-5,1],[-4,-7],[-12,-16],[-9,-6],[-20,-9],[-38,-10],[-2,-1],[-8,-1],[-35,-2],[-13,6],[-26,8],[-3,0],[-18,-4],[-10,-4],[-4,-4],[-4,-3],[-15,-10],[-11,-3],[-23,-23],[-7,-5],[-28,-20],[-8,-6],[-3,-1],[-15,-8],[-30,-8],[-20,-5],[-17,-5],[-7,-3],[-10,0],[-7,5],[-7,5],[-4,1],[-5,0],[-6,-3],[-25,0],[-6,1],[-3,2],[-11,14],[-10,17],[-5,4],[-11,7],[-6,4],[-18,2],[-3,0],[-6,-2],[-13,-7],[-4,-6],[-5,-4],[-4,-1],[-6,-4],[-7,-8],[-14,-6],[-1,-1],[-6,0],[-2,1],[-7,-4],[-12,-8],[-6,-6],[-20,-6],[-3,1],[-12,1],[-3,1],[-16,-2],[-11,14],[-2,3],[-7,9],[-6,3],[-31,13],[-6,1],[1,-5],[-1,-4],[-9,-42],[-5,-32],[2,-16],[2,-6],[15,-28],[0,-11],[-3,-3],[-8,-1],[-10,4],[-4,-1],[-15,-4],[-3,-10],[1,-19],[1,-2],[0,-14],[-1,-6],[-11,-8],[-9,-1],[-2,-2],[-4,-11],[0,-14],[-1,-6],[-3,-2],[-3,8],[-15,11],[-13,6],[8,18],[-1,3],[-3,14],[-1,6],[-13,30],[-8,15],[-1,3],[1,7],[4,7],[14,23],[1,2],[14,17],[2,1],[13,14],[4,0],[2,3],[3,11],[-1,30],[-5,14],[-5,6],[-7,11],[-6,5],[-3,0],[-8,-7],[-7,-13],[-10,-15],[-5,-3],[-9,-2],[-3,2],[-7,-2],[0,-1],[-5,-5],[-5,-7],[1,-4],[5,1],[3,-1],[0,-18],[-4,-4],[-5,-3],[-2,0],[-7,7],[-3,-1],[-9,-6],[-8,-8],[-2,-3],[-21,21],[-21,19],[-5,4],[-8,1],[-3,-1],[-1,5],[-3,7],[-6,6],[-7,4],[-9,1],[-7,-3],[-11,-6],[-2,-2],[-11,-15],[-15,-16],[-5,-6],[-8,-9],[-3,-6],[-2,-7],[-10,-14],[-3,-3],[-6,-10],[-2,-3],[0,-9],[-5,-13],[-6,-7],[-7,0],[-2,4],[-5,5],[-3,-1],[-6,-11],[-10,-13],[-5,-7],[-7,2],[-1,1],[-5,-2],[0,-1],[-9,-9],[-24,-1],[-10,-3],[-32,-8],[-15,0],[-9,-6],[-6,-8],[-1,-3],[-19,3],[-12,11],[-2,3],[-8,0],[-18,19],[-1,0],[-12,23],[-9,18],[-1,1],[-3,11],[-9,19],[-6,11],[-6,6],[-3,0],[-23,12],[-11,10],[0,1],[-21,14],[-27,20],[-3,4],[-8,5],[-2,0],[-32,7],[-7,1],[-14,0],[-8,-1],[-9,0],[-7,7],[-3,2],[-5,-3],[0,-2],[-5,-6],[-5,-14],[-2,-14],[-1,-26],[-3,-28],[-6,-18],[-1,-9],[1,-6],[2,-4],[2,0],[-1,-5],[-10,-23],[-4,-6],[-1,7],[-4,8],[-13,10],[-9,0],[-7,-4],[0,-8],[-7,-6],[-16,-4],[-26,-16],[-6,3],[-2,0],[-5,-5],[0,-5],[-7,12],[-9,8],[-8,1],[-20,5],[-5,5],[-4,6],[-3,5],[-13,11],[-3,3],[-3,8],[-3,21],[4,12],[0,4],[-3,3],[-4,2],[-3,-2],[0,-3],[-5,0],[1,11],[2,7],[7,3],[-5,12],[-15,15],[-2,2],[-8,-14],[-2,-9],[-26,14],[-5,15],[-1,7],[-20,19],[-8,-5],[-3,-3],[1,-3],[3,1],[2,-2],[-2,-11],[-3,-2],[-10,12],[-3,5],[-4,-1],[-3,-7],[0,-5],[2,-6],[3,-5],[0,-5],[-6,-6],[-21,-26],[-11,-10],[-3,6],[-1,5],[3,1],[5,-2],[4,0],[5,10],[0,2],[-3,7],[-4,5],[0,-6],[-3,-1],[-6,2],[1,4],[4,3],[5,2],[5,0],[2,-2],[4,4],[0,18],[-4,1],[-7,-6],[-7,-5],[-9,-4],[-1,4],[-13,2],[-10,0],[-4,-3],[-5,-13],[-21,-5],[-3,-2],[-2,-4],[-13,7],[-3,6],[0,2],[15,10],[3,-1],[33,7],[24,4],[14,7],[6,27],[17,9],[17,13],[1,2],[-1,2],[-7,-1],[-32,-3],[-25,-2],[-23,-4],[-21,-3],[-12,9],[-11,-2],[-2,-2],[1,-3],[-3,-6],[-5,-4],[-3,3],[-4,19],[2,7],[11,18],[1,0],[5,0],[6,-6],[4,-6],[15,8],[6,23],[-5,11],[-5,-3],[-5,1],[-10,7],[-3,7],[0,5],[4,14],[-2,1],[-4,-2],[-2,-8],[-6,-6],[-10,-1],[-6,3],[3,14],[1,15],[-1,27],[-3,5],[4,26],[4,7],[1,12],[0,23],[1,1],[1,6],[-1,9],[-3,6],[-1,0],[-34,21],[-8,-1],[-14,22],[-6,13],[-3,2],[-9,-4],[-7,-11],[-3,-13],[-3,0],[-6,3],[-2,6],[-5,7],[-7,11],[-9,3],[-5,0],[-7,9],[-1,4],[2,16],[0,4],[4,3],[2,-6],[-2,-4],[8,-8],[12,13],[6,15],[0,2],[-5,6],[-6,5],[-2,-1],[0,-3],[-3,-2],[-1,1],[-3,28],[-2,11],[0,8],[3,3],[8,2],[7,-1],[6,-7],[4,-8],[0,-1],[7,-16],[3,-17],[-5,-1],[7,-28],[4,-8],[16,12],[5,2],[9,3],[25,5],[5,3],[5,8],[-1,3],[-15,2],[-13,-5],[-26,42],[-3,7],[-1,18],[2,3],[12,5],[10,13],[0,2],[15,10],[2,-1],[5,3],[-1,13],[-2,2],[-12,1],[-5,-1],[-7,-5],[-1,0],[-7,11],[-1,4],[0,14],[9,6],[3,4],[-2,7],[-4,8],[-5,6],[-6,2],[-4,13],[-11,10],[2,8],[20,25],[11,18],[6,2],[2,15],[-2,7],[-2,2],[-14,-6],[-8,-2],[-12,0],[-1,-1],[-11,-3],[-5,-1],[-44,-15],[-10,-3],[-5,1],[-4,3],[0,5],[4,21],[1,3],[4,4],[3,7],[1,11],[-1,33],[-1,17],[0,10],[3,11],[3,5],[3,0],[2,-2],[2,0],[9,6],[3,3],[6,17],[2,9],[5,12],[8,5],[3,3],[12,15],[10,15],[3,8],[14,4],[10,0],[10,-4],[9,3],[4,7],[4,5],[4,3],[19,1],[6,-13],[-1,-1],[1,-5],[11,-9],[5,-4],[11,-6],[8,0],[1,2],[14,-1],[8,0],[6,1],[0,1],[13,13],[-1,2],[-5,5],[-3,0],[-3,-2],[-1,1],[-13,22],[0,3],[5,7],[4,1],[14,-2],[19,-7],[2,0],[2,-3],[0,-3],[-5,-8],[-8,-5],[-3,-1],[-2,-3],[0,-5],[4,-3],[4,-2],[10,3],[10,5],[6,2],[5,0],[2,-1],[5,3],[32,-2],[4,0],[22,-8],[10,7],[6,1],[11,-4],[4,-4],[4,-1],[6,0],[8,1],[2,1],[12,14],[-1,3],[-9,10],[-7,0],[-4,-2],[-3,-3],[-7,2],[-19,13],[4,8],[6,5],[8,4],[6,7],[4,5],[2,0],[21,4],[13,1],[18,9],[0,1],[5,-6],[7,10],[4,3],[4,-7],[1,-5],[2,-1],[19,6],[25,2],[4,0],[3,4],[-1,6],[-2,1],[-26,3],[-18,1],[-10,-2],[-14,1],[-9,7],[-7,11],[-5,5],[-17,11],[-11,14],[-2,15],[2,3],[6,17],[0,4],[-2,7],[8,12],[4,3],[7,3],[10,-2],[24,-9],[15,-5],[6,0],[17,-2],[14,-4],[3,0],[13,-3],[24,2],[5,2],[9,9],[2,5],[6,-1],[5,-7],[8,-3],[9,-3],[4,-2],[12,-3],[20,-11],[16,-3],[13,0],[35,4],[8,6],[5,4],[5,10],[4,5],[1,4],[1,17],[17,20],[10,3],[17,13],[33,27],[21,15],[2,2],[1,4],[13,21],[1,1],[33,20],[10,7],[11,0],[5,4],[7,2],[7,0],[16,5],[5,4],[0,3],[10,6],[2,0],[19,10],[15,9],[1,2],[8,-2],[19,-2],[8,-4],[4,0],[15,-2],[3,-1],[9,0],[12,-1],[10,2],[14,-1],[14,-4],[5,-4],[10,-1],[6,0],[26,1],[8,-2],[13,1],[4,1],[12,6],[7,9],[8,14],[0,7],[4,0],[7,-4],[2,-4],[10,-13],[-3,-10],[-1,-10],[1,-1],[5,-14],[10,-21],[7,-11],[3,-3],[23,-14],[7,-5],[9,-2],[6,0],[3,2],[19,9],[17,10],[3,4],[5,1],[13,-14],[5,-10],[3,-8],[0,-16],[-2,-6],[0,-5],[1,-4],[6,-13],[9,-15],[14,-17],[8,-8],[4,-2],[7,0],[7,7],[5,6],[5,12],[8,4],[8,0],[11,-2],[8,-3],[8,-7],[12,-11],[1,-3],[0,-17],[4,-4],[8,-5],[16,-1],[7,-2],[28,-22],[3,-3],[3,0],[8,4],[1,1],[5,16],[1,0],[4,4],[8,-4],[5,-4],[-1,-10],[4,-7],[12,-12],[5,2],[8,0],[13,-6],[3,-2],[6,-2],[21,-7],[2,-1],[4,-1],[21,2],[25,7],[7,7],[1,3],[6,4],[15,9],[10,-1],[1,-1],[12,3],[6,3],[3,6],[6,-3],[3,-5],[6,-1],[10,6],[4,4],[5,5],[10,-3],[8,-12],[18,-11],[30,-11],[25,-9],[6,0],[25,15],[3,3],[2,3],[3,4],[8,5],[5,0],[12,2],[7,7],[13,13],[5,8],[8,6],[3,0],[7,-3],[4,1],[15,11],[17,13],[9,11],[11,9],[2,1],[6,0],[4,6],[11,19],[5,12]],[[7014,2999],[3,-18],[-3,-5],[-4,-1],[-2,-5],[0,-10],[15,-42],[7,-13],[8,-12],[4,-5],[5,-5],[10,-8],[17,-12],[44,-29],[20,-11],[10,-2],[2,0],[2,2],[7,-2],[2,-2],[0,-5],[-5,-10],[-5,-4],[4,-8],[-1,-9],[-3,-7],[0,-2],[-18,-17],[-10,-5],[-27,1],[-3,1],[-1,3],[1,2],[0,4],[-1,1],[-1,9],[-2,4],[-3,5],[-3,0],[1,-5],[3,-1],[1,-9],[-3,-8],[-4,2],[-5,4],[-6,8],[-7,2],[-18,7],[-10,0],[-5,-3],[-2,-2],[-6,-1],[-11,-7],[-1,-7],[-3,-6],[-2,-1],[-7,0],[-4,1],[-4,5],[-7,3],[-5,1],[-7,-1],[-23,-5],[-4,-4],[0,-2],[-4,-16],[-1,-10],[-1,0],[-19,-35],[-16,-19],[-5,-2],[-16,-6],[-7,-10],[-12,-4],[-20,-13],[-7,-7],[1,-7],[-9,-16],[-4,-7],[-1,0],[-4,-6],[-15,-15],[-12,-24],[-4,-7],[-14,-15],[-4,-1],[-3,1],[0,3],[10,25],[2,2],[3,12],[0,7],[-5,11],[-3,4],[0,3],[4,4],[24,19],[16,15],[9,5],[9,0],[2,2],[11,9],[7,8],[0,4],[-4,12],[-4,2],[-11,-5],[-6,0],[-8,-3],[-19,-2],[-10,-2],[-7,-4],[-24,0],[-7,3],[-1,4],[-2,7],[-1,20]],[[2436,4901],[-4,0],[3,6],[3,-4],[-2,-2]],[[3134,5088],[-14,-22],[-10,-4],[-6,-1],[-11,9],[-17,13],[-4,0],[-6,-3],[0,1],[6,8],[29,19],[2,0],[23,-9],[3,-4],[5,-7]],[[3150,5109],[-5,0],[-6,2],[6,11],[2,0],[2,-3],[2,-9],[-1,-1]],[[2655,5201],[-3,0],[0,8],[2,0],[1,-8]],[[3396,5247],[-2,1],[-14,2],[-3,4],[-3,5],[0,7],[2,3],[5,-1],[14,-4],[2,-1],[5,-8],[0,-4],[-6,-4]],[[2665,5699],[-4,4],[-10,7],[-2,5],[3,5],[7,0],[4,-6],[4,-11],[-2,-4]],[[2721,5697],[-8,-6],[-15,-14],[-3,-6],[-7,1],[-10,13],[-2,3],[-10,20],[0,27],[1,3],[11,5],[8,1],[17,-4],[3,-5],[6,-15],[13,-3],[9,-1],[2,-2],[-6,-11],[-9,-6]],[[2308,6139],[0,-6],[21,-2],[4,1],[6,7],[3,10],[4,11],[10,3],[9,0],[12,3],[16,6],[13,6],[19,2],[16,-7],[11,2],[4,0],[5,-2],[6,-5],[3,-7],[-1,-14],[-1,-4],[2,-7],[26,-40],[7,-9],[1,1],[7,-2],[3,-4],[2,-5],[1,-12],[-1,-3],[-7,-5],[-10,-4],[-10,-9],[-4,-10],[2,-6],[4,0],[3,6],[5,6],[10,4],[15,1],[8,0],[5,-8],[7,-26],[7,-13],[-4,-24],[-6,-4],[-2,0],[-4,9],[2,6],[-2,3],[1,2],[0,7],[-2,8],[-11,12],[-8,3],[-1,-10],[5,-2],[3,-8],[10,-28],[2,-20],[-7,-11],[-5,-4],[-2,0],[-3,3],[-8,1],[-11,-1],[-5,-4],[-1,-6],[1,-9],[-4,-15],[-20,-16],[-5,-1],[-4,2],[-9,9],[-3,6],[-9,0]],[[2452,6193],[-2,-9],[-7,8],[-5,0],[-1,2],[4,2],[8,-1],[3,-2]],[[2594,6228],[-10,-3],[-8,1],[-6,4],[-7,6],[-8,31],[0,5],[2,11],[8,8],[3,3],[8,0],[8,-5],[4,-5],[9,-28],[1,-25],[-4,-3]],[[2606,6296],[-1,-1],[-13,13],[0,2],[-10,22],[-1,5],[3,6],[3,-1],[11,-10],[5,-9],[5,-17],[-1,-9],[-1,-1]],[[2459,6332],[2,-15],[2,-7],[4,-3],[4,-12],[0,-10],[-6,-8],[-27,-17],[-7,3],[1,8],[5,21],[4,13],[-2,3],[-9,2],[-4,-10],[-6,-9],[-8,-8],[-5,2],[1,10],[1,3],[6,28],[10,5],[8,-1],[20,15],[4,2],[2,-2],[-1,-9],[1,-4]],[[2449,6368],[-9,3],[4,11],[8,8],[4,2],[1,-2],[-6,-18],[-2,-4]],[[2482,6322],[-3,-10],[-8,0],[-6,4],[-1,5],[-1,11],[1,8],[15,27],[21,22],[14,9],[2,-1],[1,-8],[-3,-3],[-5,-8],[-14,-28],[-7,-17],[-6,-11]],[[2510,6399],[-2,2],[2,4],[6,4],[2,0],[0,-6],[-8,-4]],[[2524,6410],[-1,-3],[-4,7],[3,9],[5,0],[-3,-13]],[[2526,6426],[-3,0],[-1,9],[3,4],[5,0],[-2,-11],[-2,-2]],[[2421,6435],[-4,1],[2,6],[5,2],[-3,-9]],[[2536,6453],[-6,0],[2,6],[8,2],[-4,-8]],[[2453,6474],[-5,-2],[-5,2],[-3,5],[6,3],[8,-7],[-1,-1]],[[2376,6485],[-7,0],[-2,-1],[-10,-9],[-1,-7],[-5,0],[-6,2],[-2,12],[4,2],[26,10],[4,-5],[1,-3],[-2,-1]],[[2504,6483],[17,-12],[1,-4],[-2,-11],[-7,-9],[-13,-8],[-4,-3],[-5,3],[4,6],[-2,2],[-4,-1],[-12,-7],[-4,-4],[-34,-12],[-8,2],[-5,11],[0,6],[3,2],[7,0],[2,-3],[6,-2],[27,11],[1,3],[-2,0],[-9,-4],[-11,-1],[-2,3],[0,3],[8,11],[9,4],[9,7],[0,5],[-2,1],[-15,-6],[-26,16],[-1,2],[2,13],[18,9],[6,2],[10,-3],[4,-3],[5,-10],[1,0],[3,-9],[15,-7],[7,-1],[3,-2]],[[2396,6502],[-12,-6],[-2,6],[11,12],[14,12],[7,2],[0,-3],[-6,-13],[-10,-9],[-2,-1]],[[2455,6571],[-4,1],[-5,3],[1,7],[9,7],[4,-3],[-1,-13],[-4,-2]],[[2432,6587],[-6,2],[-12,14],[8,10],[6,2],[10,-2],[4,-6],[0,-6],[-1,-7],[-3,-5],[-6,-2]],[[2279,6588],[-8,1],[-4,2],[0,3],[15,22],[4,-4],[5,-15],[-8,-8],[-4,-1]],[[2408,6615],[-14,-2],[2,3],[6,3],[6,-2],[0,-2]],[[2483,6668],[-6,1],[-5,6],[2,4],[7,0],[5,-5],[-1,-5],[-2,-1]],[[2312,6683],[-5,-2],[-4,2],[0,-3],[4,-42],[6,-8],[-2,-5],[-8,3],[-6,-2],[-4,0],[-3,2],[-2,6],[-2,12],[-1,1],[0,47],[7,4],[11,-4],[3,-2],[6,-9]],[[2305,6697],[-6,1],[-8,5],[-4,5],[0,7],[7,5],[7,-2],[8,-1],[5,-4],[0,-11],[-5,-4],[-4,-1]],[[2471,6681],[-5,0],[-2,5],[0,10],[2,15],[5,9],[3,4],[4,-4],[-2,-35],[-5,-4]],[[2479,6727],[-3,0],[1,10],[2,3],[2,-2],[-2,-11]],[[2456,6739],[1,-20],[-2,-16],[0,-5],[2,-21],[1,-1],[30,-16],[3,0],[17,8],[14,-4],[-3,-14],[-18,-20],[-6,-2],[-5,-10],[-7,-8],[-10,-3],[-3,9],[8,18],[-7,11],[-6,-12],[-2,-1],[-12,11],[-18,-4],[-1,1],[-17,25],[-4,9],[0,2],[9,7],[10,-9],[3,1],[-29,24],[-6,-5],[2,-9],[-3,-3],[-16,8],[-3,3],[0,5],[-7,8],[-1,4],[5,11],[15,27],[2,0],[5,-4],[2,-5],[1,-6],[13,-9],[4,0],[8,3],[-3,20],[-3,8],[1,2],[9,10],[5,0],[4,-3],[13,-14],[5,-11]],[[2316,6767],[15,-12],[2,-1],[-11,-29],[-3,-1],[-9,-1],[-11,0],[-1,1],[0,9],[-12,6],[-7,-2],[-3,1],[-6,5],[-1,2],[9,14],[6,-1],[21,1],[4,6],[7,2]],[[2315,6771],[-3,0],[1,3],[6,5],[3,-3],[-1,-2],[-6,-3]],[[2134,6797],[-3,-3],[-5,2],[-1,5],[5,-1],[4,-3]],[[2340,6814],[-9,-1],[0,3],[6,5],[5,2],[0,-8],[-2,-1]],[[2368,6891],[-9,0],[-1,1],[-2,11],[4,0],[9,-8],[-1,-4]],[[2448,6928],[-4,-9],[-12,-14],[-1,-7],[6,-2],[8,2],[7,6],[3,0],[-1,-9],[-2,-3],[-7,-6],[-5,-1],[-9,1],[-5,-7],[-2,-6],[-16,-7],[-6,-2],[-7,-1],[0,-2],[13,2],[13,5],[2,-2],[5,-17],[-5,-5],[-9,-9],[-2,-7],[-9,-7],[-5,-1],[-7,1],[-5,3],[-4,8],[-2,10],[2,5],[6,7],[8,-1],[-2,2],[-11,1],[0,-1],[-10,-13],[5,-11],[3,-1],[3,-6],[3,-9],[-10,-15],[-30,-23],[-4,0],[-18,21],[-1,4],[5,0],[4,-3],[4,3],[27,15],[-7,9],[-8,5],[-6,2],[-6,-2],[-6,2],[-5,5],[4,6],[4,2],[0,4],[-5,9],[-5,13],[0,3],[9,20],[4,4],[4,0],[13,-6],[-4,-6],[8,-18],[2,-2],[-2,18],[9,4],[8,-2],[0,3],[-5,7],[-3,8],[-1,5],[2,5],[17,11],[3,-2],[13,5],[26,23],[9,7],[2,6],[3,0],[4,-4],[8,-17],[-5,-16]],[[2721,5697],[2,1],[10,-1],[6,1],[2,2],[20,11],[17,1],[15,-3],[4,1],[17,9],[9,6],[4,1],[6,0],[14,-12],[12,-12],[3,-1],[2,7],[-9,18],[-5,5],[0,4],[2,4],[13,1],[3,1],[2,-2],[1,-7],[6,-2],[6,-13],[6,-5],[5,-2],[11,3],[3,3],[7,10],[-2,1],[-8,-4],[0,-1],[-10,-3],[-3,1],[-11,9],[-7,14],[-1,1],[-12,31],[0,3],[4,8],[13,22],[10,7],[1,2],[-4,2],[-9,-1],[-4,1],[-4,6],[-1,5],[1,31],[4,4],[12,6],[5,10],[8,22],[3,13],[0,20],[-16,-17],[-29,-17],[-8,3],[-3,2],[-20,33],[-4,12],[-3,14],[-4,6],[-8,13],[-12,15],[-2,5],[8,31],[19,42],[6,16],[13,14],[13,2],[1,-2],[6,-2],[15,3],[0,6],[-4,3],[-1,-2],[-12,-2],[-28,2],[-4,0],[-7,3],[-17,1],[-6,-29],[-2,1],[-9,1],[-15,-7],[-8,-10],[-11,-10],[-4,-1],[-15,1],[-5,1],[-29,21],[-4,6],[0,6],[-2,0],[-5,-9],[3,-10],[7,-15],[2,-14],[-4,-7],[-4,0],[-13,5],[-8,9],[0,3],[-5,8],[-11,4],[-8,6],[-11,10],[-4,1],[-6,-4],[-6,-5],[-3,-7],[1,-2],[6,-19],[6,-7],[1,-15],[-11,4],[-1,3],[-2,8],[2,3],[-1,7],[-6,8],[-16,16],[-3,7],[-5,11],[-1,8],[1,13],[0,2],[10,5],[6,7],[6,19],[10,12],[10,10],[3,11],[1,14],[12,21],[9,6],[4,0],[2,2],[3,10],[-6,18],[-4,9],[-6,5],[-5,1],[-7,4],[-8,10],[-3,2],[-2,3],[5,55],[0,2],[12,3],[1,-1],[10,-3],[0,-1],[19,-3],[11,0],[-2,2],[-17,4],[-20,9],[-4,-1],[-6,2],[-2,10],[1,10],[4,11],[-5,-2],[-2,-9],[-2,-21],[-4,-12],[-7,-16],[-6,1],[-21,14],[-3,-1],[-3,-6],[0,-6],[3,-11],[-14,6],[-4,10],[0,8],[4,18],[5,9],[9,18],[18,17],[13,11],[7,7],[-1,2],[-14,-9],[-23,-24],[-5,-3],[-9,-12],[-1,-3],[-6,-9],[-4,-5],[-5,1],[1,-23],[6,-38],[-4,-3],[-5,-7],[-1,-5],[-5,-11],[-9,-54],[3,-5],[3,-8],[-7,-11],[-4,-2],[-19,-3],[-2,-1],[-5,3],[-1,14],[0,6],[5,8],[5,4],[1,3],[-1,15],[3,19],[4,17],[8,22],[-9,13],[0,25],[3,3],[3,10],[7,10],[1,7],[-2,0],[-5,-5],[-6,-10],[-1,6],[6,13],[4,6],[11,20],[1,6],[-2,0],[-6,-6],[-4,0],[1,23],[3,18],[6,10],[0,2],[14,12],[13,1],[2,-2],[12,2],[13,14],[2,2],[5,13],[-4,-3],[-3,-9],[-11,-13],[-5,0],[-21,6],[3,9],[5,-1],[11,9],[1,3],[-8,0],[-7,-4],[-3,9],[9,17],[18,25],[6,9],[2,5],[-9,-10],[-7,-7],[-16,-20],[-27,-29],[-5,-6],[-10,-5],[-3,4],[-12,6],[-5,1],[-8,3],[-6,4],[-9,10],[-2,3],[2,4],[3,2],[12,1],[25,7],[12,0],[7,1],[1,2],[-25,4],[-4,0],[-4,-2],[-6,-5],[-10,-2],[-37,1],[-5,5],[-1,5],[6,7],[30,7],[3,0],[5,-6],[7,-3],[8,12],[-8,5],[0,4],[14,4],[4,-1],[8,6],[0,2],[-10,4],[-4,0],[-13,-3],[-8,1],[13,29],[4,2],[8,-1],[2,-2],[7,-5],[5,-1],[9,2],[6,4],[-5,-2],[-8,-1],[-5,1],[-18,15],[1,6],[8,8],[10,1],[5,-3],[12,-4],[16,5],[-3,3],[-8,-2],[-9,1],[-12,9],[-1,0],[0,20],[13,5],[1,-2],[6,-2],[6,-5],[4,0],[2,3],[-14,10],[-8,2],[-4,12],[4,0],[7,7],[4,2],[5,5],[0,7],[-7,-5],[-17,-7],[-16,-6],[-4,-1],[-5,6],[-6,21],[-1,10],[4,19],[4,1],[5,-2],[3,-6],[14,-9],[4,3],[11,1],[3,1],[-1,5],[-2,1],[-15,0],[-3,-2],[-4,4],[-15,18],[-1,44],[2,8],[5,3],[7,1],[4,-6],[3,-15],[6,-5],[2,0],[3,13],[-2,7],[-4,2],[-3,5],[0,5],[2,4],[3,3],[20,-16],[3,9],[13,6],[16,-6],[12,-6],[4,-5],[0,5],[-12,19],[-10,5],[-18,14],[-7,9],[1,7],[5,0],[3,-3],[9,-4],[2,0],[3,3],[1,9],[0,7],[-4,0],[-13,23],[0,4],[4,0],[22,-2],[18,3],[-8,5],[-5,10],[-2,6],[10,38],[14,28],[31,-5],[9,-11],[3,-9],[-3,-2],[-8,-14],[0,-3],[13,11],[9,9],[-1,7],[1,3],[4,3],[8,-2],[9,-4],[1,-4],[21,-2],[26,7],[24,0],[15,2],[8,7],[9,6],[11,1],[3,-4],[24,-3],[2,1],[1,5],[-3,2],[3,7],[24,-3],[20,0],[1,-3],[-5,-43],[-1,-1],[-6,-16],[-14,-19],[-17,-7],[-2,0],[-9,-7],[-8,-15],[-11,-11],[-38,-29],[-20,-16],[-2,-5],[3,-7],[-3,-7],[-13,-4],[-1,-1],[-17,5],[-15,5],[-5,3],[5,-10],[8,-4],[2,0],[18,-5],[30,-4],[10,3],[4,8],[2,2],[4,-1],[-6,-12],[-6,-10],[-11,-12],[-4,-4],[-6,0],[1,5],[-2,3],[-8,-1],[-1,-1],[-27,-12],[-16,-17],[-2,-7],[1,-1],[11,9],[2,3],[10,9],[8,3],[15,-2],[4,-5],[-8,-10],[-9,-9],[-7,-12],[-1,-4],[3,-2],[5,1],[3,2],[16,14],[38,16],[15,4],[-1,-1],[3,-1],[4,1],[12,9],[2,9],[20,3],[7,0],[3,-5],[5,-3],[14,-4],[5,-3],[6,-1],[7,4],[12,8],[15,-1],[18,-4],[11,-2],[23,-4],[30,2],[0,1],[7,6],[13,-1],[12,-4],[2,-2],[7,-12],[5,-10],[6,-17],[1,-4],[0,-8],[-11,-15],[-14,-15],[-13,-27],[-2,-19],[1,-2],[-4,-15],[-10,-17],[-4,-9],[0,-5],[2,-4],[-1,-6],[-4,-7],[-12,-17],[-10,-7],[-4,-4],[-8,-9],[4,-7],[-6,-17],[-5,-9],[-15,-14],[-11,-7],[-31,-8],[-11,-1],[-2,1],[-4,-2],[-26,-22],[3,-2],[9,3],[26,13],[11,9],[4,0],[9,-3],[2,-5],[-2,-11],[1,-6],[5,-4],[5,-2],[8,0],[4,-2],[9,-11],[-13,-13],[-2,0],[-14,-7],[-6,-1],[-5,4],[-6,2],[-5,-1],[-3,-2],[-21,-19],[-2,-7],[-25,-16],[-7,-3],[-7,2],[-7,5],[-12,5],[-20,0],[1,-8],[8,-5],[3,0],[25,-3],[27,-4],[22,-6],[5,-1],[5,1],[11,5],[4,3],[5,8],[0,3],[4,6],[6,2],[18,0],[8,-4],[13,-11],[17,-10],[15,-9],[17,-9],[7,-4],[2,-6],[6,-8],[6,-14],[16,-22],[5,-6],[3,0],[14,-6],[8,-6],[7,-23],[1,-16],[-1,-5],[-3,-5],[5,-22],[6,-29],[0,-5],[4,-13],[10,-23],[4,-4],[2,-12],[3,-14],[5,-24],[1,-2],[18,-28],[16,-7],[23,-11],[41,-21],[7,-9],[8,-17],[4,-10],[4,-14],[2,-5],[16,-19],[8,-5],[11,-6],[5,-3],[1,-1],[-5,-3],[-7,-2],[-2,-2],[-5,-11],[0,-8],[6,-19],[0,-2],[9,-18],[6,-9],[6,-8],[10,-15],[0,-1],[12,-22],[0,-5],[-5,-6],[3,5],[0,3],[-4,4],[-9,5],[-5,-1],[-7,-3],[-5,0],[-6,4],[-1,3],[-12,18],[-6,3],[-11,-1],[-9,-3],[-17,-3],[-5,5],[-4,1],[-9,-4],[-4,-4],[3,-3],[25,0],[16,5],[11,2],[5,-6],[8,-15],[14,-13],[17,-16],[8,-5],[5,-3],[2,1],[4,-4],[7,-10],[7,-17],[9,-28],[2,-11],[0,-12],[-2,-11],[-2,-2],[-6,-3],[-14,-15],[-19,-21],[-4,-11],[7,4],[4,0],[12,-8],[6,-12],[3,-3],[16,-3],[2,0],[7,10],[2,10],[6,16],[8,9],[16,2],[28,-2],[4,-4],[8,-1],[5,1],[24,-3],[13,-3],[9,-4],[6,-4],[10,-9],[4,-5],[4,-2],[17,-15],[4,-8],[7,-26],[1,-2],[0,-38],[-2,-11],[0,-4],[-6,-16],[-8,-32],[-5,-26],[-27,-28],[-7,-10],[-1,0],[-7,14],[-14,10],[-2,-2],[7,-16],[9,-18],[2,0],[0,-3],[-3,-6],[-8,-10],[-10,-5],[-6,-2],[-5,0],[-2,2],[-7,12],[-8,-6],[-8,-7],[-19,-12],[-3,-2],[8,-6],[1,1],[13,4],[5,4],[4,2],[2,-3],[1,-28],[-11,-11],[-11,-9],[-3,0],[-16,3],[-24,-9],[-2,-1],[-9,-10],[4,-1],[4,1],[3,4],[0,1],[3,2],[6,1],[7,0],[1,-1],[14,-3],[3,-2],[1,-3],[-3,-3],[-9,1],[-11,-7],[1,-3],[3,-3],[4,-1],[12,-2],[26,-8],[11,1],[4,1],[5,4],[2,0],[43,6],[5,-14],[-2,-31],[0,-3],[-2,-6],[-5,-10],[-1,0],[-12,-6],[-6,0],[-16,-6],[-7,-6],[-6,-6],[-4,-10],[0,-9],[1,-3],[-16,-1],[-6,2],[-4,0],[-9,-7],[-5,-9],[-15,-6],[-18,-3],[-11,-5],[-7,-9],[-4,-9],[-5,0],[-14,6],[-9,5],[-26,9],[-7,2],[-8,0],[-43,-8],[-14,-3],[-9,-4],[-3,-3],[0,-5],[-2,-2],[-3,0],[-13,11],[-2,3],[3,2],[4,1],[0,3],[-8,8],[-23,1],[-8,0],[5,-8],[-1,-6],[-2,-2],[-26,3],[-9,-4],[-25,-13],[-3,2],[-6,2],[-21,-4],[-16,-1],[-10,0],[-4,4],[-5,-7],[0,-2],[17,-7],[2,-6],[-3,-11],[-13,-2],[-9,4],[-1,2],[-9,4],[-25,4],[-6,-2],[-2,-2],[-3,-10],[1,-2],[5,-4],[-1,-4],[-3,1],[-5,11],[-9,9],[-14,10],[-14,9],[-7,2],[-11,3],[-4,-1],[-3,-3],[-3,-2],[-15,-3],[-11,-1],[-9,-4],[-2,0],[-24,-17],[-4,-4],[-5,-12],[-7,-26],[-13,-48],[-3,-3],[-5,-2],[-10,1],[-6,3],[-2,3],[-4,11],[-8,8],[-5,0],[-4,-2],[-2,-3],[-4,1],[-8,8],[-9,11],[-27,-4],[-6,-3],[-3,-3],[-8,-3],[-18,0],[-5,1],[-11,-4],[-13,-20],[-12,-8],[-13,-5],[-2,-8],[-2,-13],[2,-6],[0,-3],[-3,-6],[-10,-4],[-3,-7],[-2,-5],[-4,3],[-4,8],[1,4],[-5,12],[-6,5],[-19,9],[-4,0],[-4,-3],[-1,-3],[0,-8],[-3,-4],[-12,-4],[-2,0],[-6,4],[-1,2],[1,17],[3,6],[19,12],[7,2],[2,0],[2,-4],[5,-1],[21,19],[16,16],[12,20],[5,11],[-2,6],[2,11],[14,9],[5,0],[11,3],[4,2],[1,3],[2,14],[13,11],[13,17],[1,7],[0,27],[2,20],[1,1],[6,0],[7,-1],[6,-6],[7,1],[12,13],[4,7],[-2,8],[-1,19],[4,3],[11,3],[6,1],[25,2],[12,3],[13,-2],[9,-2],[5,0],[4,2],[8,-1],[8,-3],[6,-7],[13,0],[36,6],[3,9],[-1,3],[1,12],[7,15],[14,18],[11,10],[15,19],[14,22],[11,16],[3,1],[6,2],[3,4],[0,4],[-2,2],[-9,-8],[-16,-16],[-11,-16],[-1,-2],[-6,-5],[-17,-9],[-7,-1],[-9,0],[-8,-3],[-13,-11],[-4,-7],[-1,-9],[-2,-4],[-13,-4],[-10,-2],[-9,2],[-10,2],[-7,2],[-3,2],[-14,16],[-11,13],[-1,4],[-3,6],[-7,11],[-16,-1],[-33,-16],[-2,-3],[-4,2],[-4,4],[-2,12],[5,4],[3,2],[9,-3],[12,7],[1,3],[-1,4],[-25,0],[-23,13],[-19,0],[-12,-2],[-3,-4],[0,-10],[-3,-4],[-10,-4],[-6,3],[-5,-1],[-10,-11],[-16,5],[5,13],[7,2],[9,5],[6,4],[-3,7],[-1,-5],[-3,-3],[-12,-2],[-8,1],[-17,1],[-8,4],[12,8],[5,1],[3,4],[-3,12],[-1,5],[-7,3],[-10,0],[2,12],[19,11],[3,4],[0,4],[31,5],[2,1],[8,11],[6,11],[10,6],[8,-2],[8,0],[5,3],[35,25],[12,18],[1,4],[5,10],[0,5],[5,20],[0,5],[-3,12],[-6,11],[0,2],[3,11],[7,15],[-2,2],[-9,13],[-2,4],[0,3],[2,16],[2,5],[-2,5],[-13,0],[-12,-2],[-13,-6],[-8,-6],[-8,-15],[-25,-3],[-3,0],[-2,2],[0,4],[5,7],[10,11],[4,7],[4,3],[7,2],[10,9],[14,15],[1,2],[3,16],[18,24],[5,5]],[[2886,7018],[-3,-1],[-4,3],[-9,19],[4,3],[12,2],[3,-1],[3,-4],[-5,-21],[-1,0]],[[2844,7027],[-7,0],[-2,1],[-17,23],[-1,2],[3,7],[10,5],[14,-10],[3,-3],[10,-17],[0,-5],[-6,-2],[-7,-1]],[[2903,7071],[5,-9],[-9,-9],[-6,3],[-14,12],[-5,0],[-14,-3],[-1,-3],[-10,-2],[-16,10],[-4,4],[-3,12],[2,23],[10,7],[11,1],[16,-6],[10,-12],[7,-17],[13,-6],[8,-5]],[[2918,7129],[-2,-1],[0,6],[14,17],[7,4],[17,3],[2,-3],[1,-7],[-14,-7],[-17,-2],[-8,-10]],[[2890,7152],[5,-5],[0,-5],[-3,-5],[0,7],[-8,5],[-5,0],[-3,-4],[-5,5],[-6,10],[1,2],[23,-9],[1,-1]],[[3103,7440],[1,-5],[16,-4],[17,-2],[0,-1],[-8,-40],[-9,-4],[-3,3],[-1,-3],[1,-6],[8,-20],[-2,-4],[-4,1],[-6,-8],[0,-19],[-6,-39],[-2,-3],[-4,2],[-9,8],[0,3],[7,25],[2,1],[6,23],[0,6],[-4,26],[-15,4],[-1,-2],[7,-5],[1,-5],[-1,-4],[-13,-10],[-9,9],[1,3],[-9,4],[-9,2],[-2,2],[-3,10],[3,5],[5,3],[5,0],[22,3],[11,5],[3,4],[-16,25],[-15,3],[-7,0],[2,8],[6,6],[18,17],[0,1],[15,7],[2,-6],[-1,-29]],[[3137,7441],[-9,-2],[-5,1],[-4,8],[-1,17],[0,10],[9,21],[2,2],[6,0],[8,-2],[1,-17],[-4,-32],[-3,-6]],[[3166,7488],[-2,-5],[-13,0],[-4,4],[0,6],[3,19],[8,12],[0,1],[10,-1],[5,-3],[2,-3],[-1,-6],[-8,-24]],[[7685,3965],[-18,2],[-19,4],[12,6],[4,-1],[11,-1],[1,-1],[10,-3],[2,-3],[-3,-3]],[[7844,3978],[-4,-1],[-5,5],[0,9],[8,16],[2,0],[4,-12],[-1,-15],[-2,-2],[-2,0]],[[7569,3998],[0,-1],[-16,7],[-25,7],[-9,1],[-9,2],[-19,9],[-6,7],[-4,10],[-1,11],[2,1],[2,-7],[0,-7],[4,-7],[4,-5],[4,-3],[16,-7],[15,-2],[31,-9],[6,-4],[5,-3]],[[8379,4229],[-13,-12],[-10,8],[-27,0],[-4,-1],[-4,-3],[-8,-2],[-13,1],[-5,2],[-6,1],[-3,-2],[-11,-16],[-9,-15],[-9,-12],[0,1],[-8,7],[-2,1],[-6,-1],[-2,-2],[-20,-12],[-16,-12],[-8,-9],[-13,-8],[-3,4],[-17,2],[-12,-5],[-14,-8],[-3,-2],[-6,-5],[-14,-15],[-4,7],[-2,2],[-18,1],[-21,-5],[-14,-8],[-7,-8],[-7,-11],[-9,-12],[-6,-5],[-8,-4],[-2,0],[-4,-4],[-17,-26],[-10,-17],[-10,-23],[0,-1],[-4,-5],[-6,-5],[-18,-11],[-2,4],[9,12],[3,3],[10,3],[5,1],[3,4],[10,21],[1,1],[7,12],[2,5],[-1,2],[-20,22],[3,-7],[-2,-8],[-12,-22],[-11,-10],[-29,-16],[-15,-1],[-9,-19],[0,-7],[-7,-18],[-3,-2],[-8,0],[-13,5],[0,4],[5,16],[3,1],[3,4],[3,1],[1,-4],[4,-4],[3,4],[1,6],[0,9],[-4,7],[-10,-8],[-2,0],[-17,4],[-12,13],[-6,11],[-5,2],[-3,-19],[-2,-9],[2,-3],[1,-7],[-2,-1],[-12,3],[0,1],[-6,9],[-1,5],[-3,4],[-24,9],[-2,0],[-13,-8],[5,-12],[3,-4],[7,-7],[3,2],[0,11],[6,-3],[5,-21],[-1,-3],[3,-6],[8,-4],[3,0],[1,2],[1,10],[-2,1],[-5,0],[-1,2],[2,4],[7,0],[15,-19],[0,-11],[-1,-1],[4,-7],[2,-1],[5,1],[2,2],[-1,12],[3,3],[-4,2],[-1,4],[22,-3],[1,-1],[7,-16],[1,-3],[-3,-4],[-3,-2],[-2,-8],[18,-2],[2,1],[9,9],[0,5],[-4,6],[1,1],[8,-5],[3,-1],[1,-2],[-4,-10],[0,-2],[-3,-2],[-6,-8],[-11,-15],[1,-2],[24,4],[18,-18],[17,-12],[10,-7],[11,-18],[2,-6],[0,-3],[2,-12],[-1,-4],[-5,-3],[-5,-2],[0,-3],[5,-12],[8,-10],[3,-1],[5,3],[1,-1],[21,-12],[1,11],[-26,48],[-12,19],[-8,16],[-3,7],[-2,9],[-2,4],[-11,26],[-2,8],[-12,28],[-2,-1],[-4,5],[-7,11],[1,4],[9,4],[8,-6],[4,-4],[5,-26],[5,-18],[10,-32],[2,-4],[8,-19],[3,-6],[23,-44],[9,-15],[6,-9],[15,-13],[4,-3],[6,3],[21,8],[21,18],[11,-9],[3,-1],[6,0],[5,6],[2,6],[0,4],[10,7],[20,1],[26,-4],[15,-5],[3,-4],[2,-6],[0,-11],[-2,-2],[-7,0],[-3,3],[-6,0],[-9,-16],[0,-1],[-3,-17],[0,-9],[-1,-3],[1,-4],[6,-12],[0,-3],[-2,-1],[-27,-14],[-2,0],[-11,3],[-1,1],[-16,-3],[-4,-4],[-17,-2],[-3,2],[-2,6],[-4,8],[-9,7],[-10,7],[-10,3],[-7,-1],[-13,-12],[-3,-5],[0,-4],[-20,-19],[-15,-16],[-2,-8],[-2,-11],[-4,-4],[-4,1],[-5,8],[-3,2],[-3,0],[-31,-6],[-2,0],[-26,-16],[-9,-7],[-2,-4],[-11,-26],[-3,-11],[-28,-27],[-22,-12],[-4,0],[-10,3],[-4,0],[-5,-2],[-12,2],[-10,13],[-4,9],[-2,2],[-5,-2],[-10,6],[-1,2],[-8,9],[-4,5],[2,2],[11,4],[12,5],[-2,12],[-3,25],[1,5],[2,6],[4,7],[5,1],[0,3],[2,9],[0,6],[-1,8],[-6,27],[0,2],[-7,11],[-12,10],[-3,3],[-5,0],[-4,-3],[-7,-5],[-4,0],[-10,9],[-8,10],[-5,8],[-9,10],[-10,8],[-11,5],[-18,-1],[-6,-7],[-3,-4],[-10,2],[-9,4],[-4,14],[1,6],[6,10],[40,35],[8,9],[17,11],[22,12],[10,2],[6,4],[7,5],[7,8],[0,2],[9,4],[12,4],[7,4],[19,9],[0,5],[-3,2],[-11,2],[-4,11],[0,16],[-1,14],[-1,6],[-4,2],[-8,-9],[-4,-12],[-3,-4],[-5,-3],[-2,2],[-4,5],[0,4],[-10,10],[-6,4],[-10,4],[-9,-7],[-29,-5],[-9,2],[-4,3],[-5,0],[-19,-5],[-11,-7],[-3,-3],[-5,1],[-11,4],[-19,9],[-1,1],[-2,10],[-29,20],[-14,7],[-4,0],[-1,-2],[-9,0],[-4,2],[-4,6],[1,2],[7,5],[6,0],[7,-1],[9,3],[11,10],[-6,13],[-2,1],[-5,0],[-25,11],[-9,0],[-2,-4],[-5,-2],[-17,20],[-3,6],[1,0],[6,-7],[5,-2],[9,0],[3,3],[10,1],[0,-1],[10,-5],[2,-2],[6,-1],[26,-2],[12,-4],[12,-7],[11,-2],[8,7],[1,3],[-2,1],[0,6],[2,3],[9,8],[15,8],[6,8],[-2,1],[-15,-8],[-9,-7],[-4,-3],[-6,-3],[-7,0],[-3,1],[-7,9],[-3,0],[-11,-9],[-1,0],[-16,17],[-4,7],[-2,8],[-1,7],[-3,5],[-1,5],[0,10],[2,4],[3,3],[3,8],[2,9],[0,6],[-4,18],[-19,42],[-11,17],[-3,0],[-2,-7],[6,-6],[6,-2],[1,-4],[7,-21],[0,-4],[-4,-8],[0,-7],[1,-1],[7,-18],[4,-2],[5,3],[1,-5],[-3,-11],[-3,-5],[-6,-4],[-2,-3],[-1,-7],[2,-5],[4,-6],[1,-20],[-3,-4],[-4,-3],[-7,-3],[-9,3],[-4,3],[-8,3],[-4,0],[-4,-3],[-1,-7],[-2,-1],[-12,6],[0,5],[5,5],[5,10],[6,18],[-1,4],[-9,-16],[-3,-7],[-4,-10],[-7,-11],[-10,-6],[-3,0],[-7,3],[-4,0],[-7,4],[-15,-3],[-3,0],[-5,-2],[-24,-14],[-7,-17],[2,-8],[-1,-1],[-3,-14],[-1,-1],[-13,-28],[-1,-3],[-19,-37],[-35,-52],[-14,-14],[-11,-4],[-3,2],[-1,4],[-4,3],[-4,0],[-7,-6],[-16,-18],[-1,-7],[4,-5],[6,-4],[-6,-6],[-6,-5],[-4,-2],[-1,3],[-8,14],[-1,11],[1,6],[2,3],[-2,8],[-5,3],[-2,-1],[-4,-30],[-1,-32],[4,-16],[7,-7],[7,2],[2,-1],[2,-4],[1,-31],[-4,-23],[-3,-3],[-5,-1],[-1,1]],[[7115,3932],[-2,12]],[[7180,4385],[1,2]],[[7024,4516],[-3,2]],[[6998,4531],[-2,5]],[[6310,4694],[16,-10],[0,-1]],[[6791,5367],[3,1],[8,-1]],[[6975,5305],[1,-2]],[[7247,5268],[11,1]],[[7379,5377],[11,13],[9,7]],[[7518,5427],[8,1],[3,-1],[5,-3],[0,-5],[12,-3],[16,-3],[2,0],[13,9],[8,5],[2,1],[4,12],[-1,5],[4,32],[2,4],[3,2],[3,0],[15,-3],[8,-3],[15,-10],[8,-4],[20,-2],[4,1],[4,6],[9,8],[21,16],[2,0],[23,-3],[5,-2],[12,-6],[12,1],[4,3],[9,3],[8,2],[8,0],[3,-2],[29,-37],[2,-3],[4,-9],[0,-3],[-3,-4],[-1,-16],[2,-6],[6,-12],[15,-17],[12,-14],[7,-2],[4,-8],[4,-15],[-2,-5],[-3,-2],[-20,-4],[-8,-1],[-11,-4],[-2,-2],[0,-7],[8,-8],[10,-17],[1,-6],[0,-19],[-1,-2],[19,-39],[4,0],[19,-8],[17,-13],[4,-1],[12,0],[4,1],[13,5],[4,6],[16,0],[6,-4],[1,-7],[-1,-6],[5,-22],[4,-3],[5,0],[8,3],[2,0],[8,-3],[2,-2],[0,-4],[-9,-11],[0,-4],[6,-6],[2,-4],[12,-35],[1,-4],[3,-19],[-13,-9],[0,-1],[7,-30],[2,-6],[18,-26],[2,-3],[9,-5],[2,0],[7,10],[1,0],[11,10],[8,2],[15,1],[18,-3],[6,-6],[1,-5],[3,-7],[9,-15],[3,-2],[4,0],[4,2],[7,6],[8,-3],[12,-6],[0,-3],[-3,-5],[2,-6],[3,-1],[5,-1],[5,1],[1,5],[5,8],[2,1],[13,10],[11,6],[10,1],[5,0],[6,-2],[10,2],[12,5],[7,7],[5,8],[3,1],[12,2],[6,-1],[25,-60],[11,-23],[2,-3],[6,-2],[16,-9],[2,-2],[8,-14],[3,-7],[2,-8],[10,9],[11,29],[0,2],[18,1],[2,-3],[3,-14],[5,-6],[13,-6],[7,1],[5,2],[9,-1],[5,-6],[19,-13],[8,-4],[8,-14],[4,0],[11,2],[4,4],[4,5],[8,7],[4,-4],[3,-13],[3,-12],[5,-5],[8,-3],[5,1],[3,4],[5,3],[17,-8],[5,-14],[1,-9],[2,-5],[21,-14],[3,-1],[6,1],[8,3],[4,3],[2,4],[3,3],[7,2],[13,-4],[1,-7],[-2,-4],[-4,-2],[-4,-4],[-3,-11],[1,-5],[4,-9],[9,-15],[2,-2],[1,-6],[-1,-19],[-12,-15],[-3,-3],[-7,-4],[-3,-4],[-6,-12],[1,-8],[-3,-1],[-13,0],[-16,-4],[-2,-16],[10,-15],[3,-2],[22,-7],[12,7],[4,-3],[1,-6],[-5,-10],[-3,-3],[-21,3],[-4,2],[-3,-1],[-11,-14],[-10,-35],[2,-8],[9,-1],[8,0],[2,0],[6,-6],[0,-3],[9,-42],[10,-17],[-7,-19],[-2,-2],[-4,-7],[-17,-37],[5,-8],[1,-8],[-1,-20],[-2,-6],[-4,-6],[-4,-2],[-6,1],[-11,3],[-17,0],[-6,-2],[-4,0],[-3,4],[-3,1],[-15,0],[-14,-4],[-4,1],[-10,7],[-19,1],[-5,-1],[-3,-4],[-3,-5],[-6,-25],[0,-6],[-2,-3],[-19,-11],[-10,-3],[-6,0],[-4,1],[-15,-5],[-7,-14],[-2,-11],[-8,-41],[11,-8],[-7,-19],[-3,-3],[-2,-4],[1,-16],[2,-4]],[[4939,3479],[4,1]],[[5827,3729],[-2,16],[8,28]],[[5800,3872],[3,2]],[[6127,6191],[4,-1],[5,-8]],[[5918,5987],[4,8],[14,5],[4,9],[2,7],[3,4],[5,-2],[2,-4],[7,6],[15,7],[5,3],[17,12],[3,4],[-28,4],[-6,-4],[-5,-2],[-3,-5],[-3,1],[-2,3],[0,7],[-2,3],[-5,2],[-5,-5],[-3,-9],[2,-8],[-7,-1],[-4,3],[3,13],[5,7],[3,9],[1,1],[0,8],[-3,10],[-3,6],[0,3],[2,11],[2,5],[4,5],[3,-3],[5,-1],[43,-1],[8,1],[25,18],[2,4],[7,6],[4,5],[25,39],[7,10]],[[6076,6188],[-10,-11],[-4,-10],[-5,-11],[-18,-18],[-10,-12],[-7,-5],[-7,-6],[2,-5],[4,-3],[11,2],[14,0],[5,-1],[9,-9],[16,-3],[14,0],[1,1],[17,9],[3,3],[0,7],[-3,4],[-1,6],[-3,31],[4,13],[6,1],[1,5],[-1,5]],[[9302,3172],[-4,-1]],[[9224,3185],[-5,-1]],[[8917,3300],[-9,0],[-3,-1]],[[8904,3299],[-1,-2],[-7,-8]],[[8700,3373],[-4,-3]],[[8638,3382],[-7,-3]],[[8615,3334],[-11,6],[-3,6],[-1,10],[-2,4],[-5,6],[-19,21],[-14,18],[-16,20],[-2,1],[-6,11],[-5,13],[-12,15],[-31,36],[-11,16],[-3,2],[-11,5],[-7,9],[-6,12],[-1,2],[-2,1],[-19,12],[-4,2],[-21,5],[-9,1],[-17,7],[-6,2],[-3,7],[-1,4],[-4,12],[-35,50],[-9,7],[-2,-2],[4,-8],[3,-5],[0,-5],[-1,-2],[-3,-1],[-6,0],[-26,5],[-9,4],[-15,17],[-1,2],[-10,30],[3,5],[-1,3],[-13,17],[-2,2],[-42,23],[-21,3],[-13,8],[-1,1],[-6,13],[1,3],[12,1],[8,-1],[16,8],[15,10],[1,7],[-1,3],[-25,17],[-3,-1],[-5,-4],[-3,-9],[-4,-1],[0,5],[2,3],[5,9],[5,6],[9,4],[2,0],[8,-3],[26,-21],[-3,-18],[-1,-3],[2,-3],[5,0],[15,3],[12,5],[-2,3],[-11,4],[-2,0],[0,5],[15,0],[11,0],[4,0],[5,3],[2,3],[5,5],[9,-7],[2,-2],[1,-3],[14,-4],[3,0],[1,21],[-5,41],[-8,7],[-3,-4],[1,-1],[2,-10],[0,-18],[-1,-5],[-2,-4],[-3,0],[-2,3],[1,49],[1,5],[3,3],[2,0],[-1,-3],[4,-7],[2,-1],[4,1],[0,2],[-5,5],[-1,5],[4,2],[15,14],[4,5],[5,14],[2,12],[0,6],[1,10],[3,14],[3,9],[3,2],[12,6],[5,0],[1,-2],[-3,-24],[3,-3],[9,38],[2,6],[5,3],[7,0],[6,-10],[6,-6],[12,-10],[14,0],[2,2],[1,10],[-1,6],[-7,7],[-12,8],[-11,7],[-7,5],[-2,13],[-2,3],[-13,15],[-9,11],[-3,2],[-12,0],[-1,-3],[5,-3],[1,-2],[-2,-5],[-3,0],[-12,17],[-10,17],[-11,43],[1,2],[5,-4],[4,-5],[4,-3],[21,-1],[5,1],[3,3],[9,12],[18,8],[3,0],[2,-9],[2,-2],[10,-5],[11,-3],[14,3],[2,2],[-1,8],[-4,5],[-8,6],[-10,1],[-4,-3],[0,-7],[-2,2],[-1,11],[6,16],[8,9],[5,-1],[18,1],[7,0],[11,5],[3,2],[15,12],[10,8],[12,14],[14,-2],[10,-3],[3,1],[1,3],[2,11],[-3,36],[-2,8],[-2,2],[-21,4],[-17,-5],[-2,-1],[-3,-11],[-15,-11],[-8,-1],[-13,-6],[-14,-6],[-8,3],[-2,3],[10,17],[2,2],[15,5],[9,2],[3,2],[-13,-1],[-12,-3],[-7,-6],[-10,-18],[-16,-4],[-4,2],[-9,-4]],[[7492,5578],[1,2]],[[7519,5678],[1,-6]],[[7576,5668],[10,5],[16,15]],[[7645,5750],[0,4]],[[7611,5814],[-4,3]],[[7524,5854],[3,21],[2,8]],[[7432,6022],[-5,14],[-12,16]],[[7015,7197],[1,1],[5,12],[1,5],[0,10],[-1,4],[-5,9],[-4,6],[0,5],[2,15],[9,8],[4,-1],[12,-8],[1,-4],[0,-8],[1,-3],[4,-4],[16,-4],[2,0],[5,7],[1,6],[-1,15],[2,11],[9,9],[4,1],[18,-11],[6,-8],[2,-1],[14,0],[17,9],[4,3],[7,12],[-1,13],[5,9],[6,5],[10,4],[2,0],[39,-8],[40,-9],[17,-9],[13,-5],[9,-3],[9,0],[4,1],[4,5],[5,18],[-1,4],[-9,4],[-13,1],[-6,1],[-10,3],[-3,3],[-6,13],[2,5],[0,4],[-4,6],[-7,4],[-10,5],[-10,2],[-17,1],[-11,-4],[-4,-6],[-6,-1],[-31,3],[-17,4],[-20,25],[-12,12],[-1,-1],[-6,2],[-18,10],[-21,38],[1,5],[8,-3],[1,-6],[8,-8],[13,-9],[3,0],[1,4],[-5,25],[-5,5],[-3,-2],[-2,-4],[-3,2],[-3,6],[3,9],[6,-1],[1,-5],[7,-2],[7,15],[1,10],[-1,2],[-6,4],[-3,-1],[-20,-14],[-14,-3],[-3,-4],[-1,-6],[-5,-6],[-26,-17],[-17,0],[-26,0],[-2,4]],[[7394,9672],[9,-1],[42,-7],[22,-10],[18,-5],[25,-4],[6,0],[5,2],[-1,3],[-10,4],[-5,4],[3,20],[2,5],[4,2],[11,1],[22,-12],[5,-8],[2,0],[6,6],[-1,5],[-7,8],[-8,6],[-8,11],[-1,3],[2,8],[2,1],[12,-1],[8,-4],[16,-11],[19,-5],[15,-8],[5,-7],[0,-5],[11,-4],[6,-1],[5,1],[5,4],[28,-5],[3,0],[21,-7],[4,-5],[-1,-17],[-6,-7],[-20,-9],[-13,-1],[-48,12],[-19,2],[-22,3],[-7,5],[-11,-9],[10,-10],[15,-1],[23,-3],[7,-3],[8,-13],[0,-2],[-29,-15],[-11,-4],[12,0],[20,13],[7,2],[24,3],[48,-7],[-3,-8],[-8,-7],[-5,-3],[-10,-11],[0,-5],[-4,-5],[1,-3],[11,2],[3,9],[5,10],[5,2],[45,14],[17,-1],[9,-6],[0,-2],[-7,-15],[-14,-12],[-11,-1],[-6,-6],[4,-1],[17,5],[10,-3],[9,-15],[-2,-6],[-28,-17],[-6,-3],[-10,-2],[-10,-1],[-11,-6],[-3,-5],[-1,-20],[2,-2],[2,3],[0,8],[1,12],[8,4],[24,5],[18,2],[4,2],[16,19],[-1,26],[6,7],[15,2],[20,1],[18,-1],[23,-2],[26,-1],[7,-3],[3,-6],[27,-7],[19,-4],[21,-3],[11,-1],[10,1],[5,-2],[0,-7],[5,-1],[11,8],[-2,4],[-11,6],[-2,3],[4,2],[37,-5],[11,-4],[40,-9],[18,-7],[39,-23],[28,-10],[17,-5],[52,-28],[40,-23],[27,-16],[20,-5],[24,-13],[17,-16],[12,-12],[2,-3],[37,-22],[8,-10],[0,-5],[5,-9],[15,-3],[9,1],[-12,5],[-3,3],[3,2],[11,4],[44,-20],[3,-2],[-1,-4],[21,-16],[21,-11],[27,-17],[9,-7],[28,-5],[12,-1],[4,1],[-12,21],[-7,4],[-2,3],[3,2],[6,-1],[21,-14],[0,-8],[6,-10],[5,-5],[18,-15],[28,-11],[8,-10],[-3,-3],[-7,0],[-3,-2],[19,-21],[4,-2],[5,0],[22,6],[13,-10],[5,-2],[12,4],[10,-5],[8,-15],[0,-9],[-3,-7],[0,-29],[4,0],[7,-4],[5,-9],[-1,-15],[-2,-11],[-3,-11],[4,-7],[12,-4],[5,1],[4,4],[7,-4],[2,-5],[4,-19],[-12,-40],[-2,-8],[-5,-12],[-4,-7],[-12,-15],[-4,-4],[-7,-4],[-10,-8],[-31,-28],[-3,-5],[1,-7],[-1,-2],[-20,-19],[-13,-11],[-9,-4],[-11,-2],[-19,-10],[-5,-5],[-5,-7],[-6,-4],[-33,-11],[-30,-8],[-27,-12],[-8,-5],[-28,-5],[-13,0],[-27,-7],[-35,-6],[-8,1],[-39,3],[-28,3],[-3,0],[-39,10],[-26,11],[-11,7],[-18,9],[-15,4],[-18,4],[-34,5],[-30,0],[-21,3],[-10,2],[-9,3],[-3,0],[-40,8],[-24,4],[-21,2],[-10,2],[-9,3],[-8,4],[-28,16],[-12,8],[-14,11],[-13,9],[-15,2],[-13,-11],[-21,-8],[-5,1],[-4,4],[-11,15],[2,5],[3,2],[6,1],[-16,5],[-10,1],[-12,0],[-29,3],[-11,2],[-6,4],[-2,9],[-6,7],[-20,12],[-10,0],[-1,-6],[7,-8],[8,-5],[-14,-7],[-5,1],[-40,23],[-13,10],[-20,16],[-14,13],[-4,6],[-1,4],[1,9],[-1,7],[-26,11],[-5,0],[-7,-2],[-12,3],[-8,6],[-4,0],[-12,-4],[-24,-3],[-9,2],[-3,3],[-7,2],[-5,0],[-4,-2],[1,-2],[9,-6],[18,-2],[5,0],[7,4],[8,0],[7,-2],[12,-11],[20,-11],[7,-8],[1,-3],[-5,-8],[-1,-16],[21,-13],[23,-10],[9,-5],[2,-7],[-1,-1],[-11,-2],[-6,2],[1,-4],[17,-6],[17,-2],[13,1],[8,-2],[13,-8],[1,-5],[-3,-1],[-14,4],[-6,3],[-5,-2],[-2,-8],[-5,-4],[-6,-1],[-5,2],[-11,1],[-4,-2],[3,-4],[26,1],[10,6],[10,3],[7,-1],[16,-4],[4,-2],[12,-12],[-2,-4],[-10,2],[-12,5],[-18,3],[-3,0],[-2,-3],[-15,0],[-13,-3],[-3,-2],[3,-3],[15,-3],[6,0],[7,6],[9,1],[8,-5],[0,-4],[3,-3],[16,-4],[11,0],[4,4],[6,2],[4,-2],[14,-14],[-4,-2],[-5,0],[-14,-6],[-16,-12],[-13,-3],[-4,-2],[2,-2],[24,0],[6,2],[11,-2],[15,-5],[18,-8],[29,-2],[2,-1],[7,-8],[24,-13],[20,-12],[9,-7],[20,-21],[18,-22],[15,-42],[-4,-7],[-6,2],[-17,17],[-9,7],[-3,-6],[2,-14],[8,-19],[4,-6],[1,-5],[-14,-35],[-3,-2],[-5,0],[-10,2],[-7,0],[-9,-7],[-6,-10],[12,-24],[11,-6],[8,0],[3,-2],[8,-16],[-2,0],[1,-17],[15,-22],[-3,-11],[8,-13],[13,-19],[3,-44],[-16,-16],[-6,-9],[8,-7],[13,-1],[3,-5],[-2,-11],[24,-16],[25,-14],[12,-1],[17,8],[4,8],[0,5],[8,-3],[23,-12],[10,-9],[3,-4],[-1,-6],[1,-3],[11,-13],[3,-2],[3,4],[11,6],[22,-20],[1,-4],[-2,-13],[0,-15],[3,-2],[27,-10],[9,0],[5,-1],[26,-7],[4,-4],[4,-2],[17,-2],[6,0],[1447,-3255],[3,-11],[-17,21],[-17,19],[-2,1],[-6,-1],[-11,-8],[-6,-11],[-4,-11],[-6,-4],[-6,-3],[-1,-3],[-5,-24],[0,-3],[9,-13],[1,-8],[-7,-14],[-5,-8],[-9,-11],[-1,-2],[-9,-4],[-5,-1],[-5,-3],[-9,-4],[-5,-4],[-2,-4],[-9,-64],[-8,-56],[-1,-6],[6,-1],[6,-3],[2,-3],[6,-6],[10,-9],[3,-5],[3,-7],[0,-12],[-3,-12],[-6,-11],[-7,-10],[-8,-8],[-5,-2],[-9,-7],[-20,-65],[-3,-11],[-7,-23],[-4,-13],[-3,-12],[21,-9],[22,-10],[40,-16],[2,-6],[-1,-2],[-1,-34],[0,-36],[2,-32],[7,-7],[27,-24],[3,19],[-1,10],[1,6],[3,2],[11,-4],[14,-9],[5,-4],[4,-1],[6,2],[8,1],[16,1],[20,0],[4,-2],[7,-7],[12,-16],[10,-25],[9,-17],[8,-16],[3,-1],[14,-14],[7,-24],[13,-43],[35,-65],[6,-11],[-11,-18],[-24,-3],[-1,4],[-3,8],[-3,5],[-3,2],[-7,2],[-4,-1],[-9,-5],[-4,-5],[-1,-4],[0,-6],[-1,-5],[9,-25],[2,-1],[6,0],[6,1],[6,0],[5,-2],[5,-10],[6,-7],[7,-2],[5,3],[40,-35],[1,-7],[3,-6],[6,-4],[1,-5],[-3,0],[-12,5],[-5,3],[-14,-22],[-18,-15],[-18,-10],[-9,10],[-6,-3],[-5,-9],[2,-2],[6,-2],[2,-2],[2,-9],[3,-13],[3,-27],[-7,-6],[-11,20],[-4,7],[0,2],[-4,3],[-2,0],[-13,-6],[-11,-14],[-4,-10],[-16,-22],[-4,-1],[-8,0],[-21,-4],[-16,-2],[-1,-1],[-3,-13],[-28,24],[-3,2],[-6,1],[0,-7],[10,-7],[4,-23],[-2,-7],[2,-6],[-2,-2],[-3,1],[-1,4],[-4,14],[-10,19],[-3,3],[-11,6],[-2,0],[0,-3],[4,-15],[7,-5],[5,0],[5,-4],[4,-17],[-3,-8],[-2,0],[-4,6],[2,-8],[0,-7],[-4,-17],[-3,-1],[-6,-13],[-7,-31],[-17,-43],[-14,-28],[-3,-18],[-5,-20],[-1,0],[-5,11],[-6,-4],[-2,-7],[-3,-3],[-9,-5],[-4,-5],[-10,-8],[-2,-2],[-6,-20],[-6,-20],[0,-3],[3,-14],[3,-7],[6,-6],[5,-2],[3,2],[2,0],[20,-6],[6,-4],[2,-4],[2,-11],[3,-11],[9,-11],[4,0],[2,2],[9,-15],[11,-29],[19,-51],[1,-11],[-6,-20],[-8,-18],[-4,2],[0,-7],[5,-19],[5,-2],[3,8],[1,9],[1,17],[6,28],[3,10],[0,7],[-1,5],[1,5],[8,7],[5,0],[7,-5],[1,-2],[-5,-3],[-4,-11],[-3,-11],[-6,-19],[-1,-8],[-4,-19],[-5,-29],[-1,-8],[1,-22],[5,-4],[2,2],[3,2],[2,-1],[1,-6],[-1,-3],[-5,-9],[-5,-3],[-3,-7],[-4,-27],[1,-19],[2,-3],[8,-12],[11,-11],[2,-4],[9,-5],[2,-11],[1,-11],[0,-6],[-2,-6],[0,-3],[3,-17],[2,-4],[7,-3],[5,-1],[5,-7],[2,-5],[1,-4],[2,-6],[1,-5],[2,-5],[12,-22],[3,-3],[6,-5],[4,-7],[25,-54],[2,-10],[0,-6],[6,-19],[0,-2],[4,-6],[4,-4],[15,-5],[6,-11]]],"transform":{"scale":[0.007492470747074708,0.0041672170217021695],"translate":[-24.542225,29.486706]}} \ No newline at end of file diff --git a/samples/data/world-countries.topo.json b/samples/data/world-countries.topo.json deleted file mode 100644 index d57f69a67ad..00000000000 --- a/samples/data/world-countries.topo.json +++ /dev/null @@ -1 +0,0 @@ -{"copyright":"TopoJSON Collection","copyrightShort":"TopoJSON Collection","copyrightUrl":"https://github.com/deldersveld/topojson","type":"Topology","arcs":[[[17078,14810],[72,-46],[54,16],[15,55],[55,18],[40,38],[14,98],[59,23],[12,44],[33,-33],[21,-4]],[[17453,15019],[40,-1],[53,-25]],[[17546,14993],[22,-15],[52,39],[23,-24],[23,56],[43,-2],[11,18],[7,49],[30,43],[38,-29],[-8,-37],[22,-6],[-7,-102],[28,-40],[25,26],[31,12],[45,54],[49,-9],[73,0]],[[18053,15026],[12,-35]],[[18065,14991],[-41,-13],[-36,-23],[-81,-14],[-77,-26],[-41,-54],[17,-51],[8,-61],[-35,-51],[2,-47],[-19,-43],[-67,3],[28,-81],[-45,-31],[-30,-73],[4,-73],[-28,-35],[-26,12],[-54,-16],[-8,-35],[-53,0],[-39,-69],[-3,-103],[-92,-51],[-49,11],[-15,-27],[-42,15],[-70,-18],[-119,62]],[[17054,14099],[64,111],[-5,78],[-54,22],[-6,77],[-23,97],[30,67],[-31,18],[20,89],[29,152]],[[14437,9121],[7,-38],[-8,-59],[13,-57],[-11,-45],[6,-43],[-147,1],[-4,-388],[48,-100],[46,-77]],[[14387,8315],[-130,-49],[-171,17],[-49,58],[-287,-5],[-10,-8],[-42,56],[-46,3],[-43,-21],[-34,-24]],[[13575,8342],[-7,78],[10,107],[25,112],[3,52],[23,110],[17,50],[41,81],[23,54],[7,90],[-4,69],[-21,43],[-19,75],[-17,73],[4,26],[22,48],[-22,118],[-15,82],[-35,77],[7,24]],[[13617,9711],[29,16],[21,-2],[24,14],[209,-1],[17,-91],[21,-73],[16,-39],[27,-65],[47,10],[23,18],[40,-18],[10,31],[18,71],[44,5],[4,21],[36,0],[-6,-43],[85,1],[1,-77],[15,-48],[-11,-73],[5,-75],[24,-45],[-4,-146],[18,11],[31,-3],[44,18],[32,-7]],[[13607,9748],[-19,93]],[[13588,9841],[28,52],[22,21],[26,-42]],[[13664,9872],[-25,-25],[-12,-32],[-2,-54],[-18,-13]],[[14233,15445],[-2,-33],[-23,-18],[-4,-39],[-33,-59]],[[14171,15296],[-12,8],[-2,27],[-39,41],[-6,58],[6,84],[10,38],[-12,19]],[[14116,15571],[-5,38],[31,60],[4,-23],[19,11]],[[14165,15657],[15,-32],[17,-13],[5,-44]],[[14202,15568],[-9,-41],[10,-53],[30,-29]],[[16396,13417],[12,6],[3,-34],[55,20],[59,-4],[43,-3],[49,83],[52,78],[45,75]],[[16714,13638],[14,-41]],[[16728,13597],[9,-97]],[[16737,13500],[-36,0],[-6,-80],[13,-17],[-32,-24],[0,-50],[-21,-50],[-2,-49]],[[16653,13230],[-14,-26],[-213,61],[-28,124],[-2,28]],[[8003,3751],[-42,3],[-76,0],[-1,273]],[[7884,4027],[28,-57],[35,-91],[92,-74],[100,-30],[-32,-61],[-68,-6],[-36,43]],[[8306,7738],[130,-198],[58,-19],[87,-91],[73,-47],[10,-54],[-70,-186],[72,-33],[79,-19],[55,20],[65,93],[11,108]],[[8876,7312],[35,24],[36,-71],[-1,-98],[-60,-67],[-48,-49],[-80,-120],[-94,-165]],[[8664,6766],[-17,-98],[-19,-126],[0,-121],[-15,-27],[-5,-80]],[[8608,6314],[-5,-63],[90,-105],[-10,-85],[44,-53],[-3,-59],[-68,-157],[-106,-65],[-142,-26],[-78,13],[15,-73],[-14,-91],[13,-63],[-43,-42],[-71,-17],[-69,44],[-27,-32],[10,-121],[48,-36],[39,38],[20,-63],[-65,-39],[-57,-76],[-10,-122],[-17,-66],[-67,-1],[-55,-62],[-21,-91],[70,-89],[68,-25],[-25,-110],[-83,-69],[-46,-143],[-65,-48],[-29,-57],[23,-127],[47,-71],[-30,6]],[[7889,4068],[-66,19],[-170,16],[-30,72],[2,91],[-48,-7],[-25,44],[-6,130],[55,53],[22,77],[-8,62],[38,105],[25,161],[-7,73],[31,23],[-8,45],[-33,25],[24,51],[-32,46],[-17,141],[29,25],[-12,149],[16,125],[19,109],[43,44],[-22,120],[0,112],[53,79],[-2,103],[41,118],[0,113],[-19,23],[-32,210],[43,126],[-6,118],[25,111],[46,115],[51,75],[-22,48],[15,40],[-2,203],[77,61],[24,126],[-8,31]],[[7993,7679],[59,111],[93,-31],[41,-88],[28,98],[80,-5],[12,-26]],[[15829,15475],[99,19]],[[15928,15494],[15,-32],[27,-21],[-15,-31],[38,-42],[-20,-39],[30,-33],[32,-20],[2,-84]],[[16037,15192],[-26,-4]],[[16011,15188],[-29,70],[0,19],[-31,0],[-21,33],[-15,-4]],[[15915,15306],[-28,36],[-52,30],[6,59],[-12,44]],[[8526,680],[-20,-62],[-21,-55],[-149,17],[-157,-8],[-89,41],[0,5],[-39,36],[160,-5],[151,-12],[53,50],[38,44],[73,-51]],[[1472,747],[-136,-17],[-92,43],[-42,43],[-3,7],[-46,34],[44,45],[131,-19],[70,-38],[55,-43],[19,-55]],[[9298,923],[37,0],[105,27],[107,-27],[88,-52],[30,-74],[9,-53],[2,-63],[-109,-38],[-116,-31],[-133,-28],[-148,-24],[-168,7],[-93,41],[13,50],[151,33],[61,42],[45,52],[32,45],[42,43],[45,50]],[[4063,1460],[15,40],[85,-21],[90,-19],[85,21],[-40,-43],[-66,-31],[-99,10],[-70,43]],[[3733,1483],[50,27],[71,-29],[108,-48],[-41,5],[-92,12],[-96,33]],[[5737,1670],[76,-16],[78,14],[42,-69],[-56,9],[-86,-4],[-86,4],[-96,-7],[-72,24],[-38,50],[44,22],[91,-17],[103,-10]],[[7511,1751],[48,15],[82,-5],[21,62],[4,46],[-1,98],[40,57],[65,19],[37,-45],[17,-45],[30,-55],[24,-53],[19,-56],[9,-54],[-13,-48],[-19,-45],[-84,-17],[-78,-24],[-93,2],[35,48],[-83,-17],[-80,-16],[-54,35],[-4,51],[78,47]],[[8594,2620],[-30,-26],[-53,19],[-58,-12],[-49,-28],[-51,-31],[-35,-36],[-10,-48],[4,-45],[34,-42],[-49,-28],[-66,-10],[-39,-40],[-41,-39],[-45,-52],[-11,-45],[25,-51],[38,-39],[58,-28],[53,-38],[29,-48],[16,-45],[20,-48],[34,-42],[21,-45],[9,-112],[21,-45],[6,-48],[22,-49],[-10,-64],[-39,-50],[-41,-41],[-95,-16],[-31,-43],[-43,-42],[-107,-45],[-94,-19],[-89,-26],[-96,-27],[-56,-50],[-114,-5],[-125,5],[-113,-9],[-119,0],[22,-48],[109,-21],[79,-35],[44,-43],[-79,-38],[-122,12],[-101,-31],[-4,-50],[-3,-48],[83,-40],[15,-47],[90,-45],[150,-19],[128,-33],[101,-39],[129,-38],[176,-19],[173,-33],[121,-36],[132,-42],[69,-57],[35,-45],[86,43],[116,36],[124,38],[147,32],[126,33],[176,3],[173,-17],[144,-29],[44,53],[99,36],[179,2],[141,26],[132,26],[147,17],[157,22],[110,31],[-50,42],[-30,44],[0,46],[-138,-5],[-146,-19],[-138,0],[-19,45],[9,91],[32,26],[101,29],[119,28],[86,37],[87,36],[64,47],[96,22],[96,17],[48,9],[110,5],[104,17],[88,23],[85,29],[78,29],[98,39],[63,40],[67,36],[20,48],[-75,28],[25,51],[48,38],[73,24],[77,29],[72,38],[56,48],[35,57],[51,34],[85,-7],[35,-41],[84,-5],[3,46],[35,47],[77,-12],[18,-45],[84,-7],[92,21],[89,15],[81,-8],[30,-50],[77,41],[72,21],[81,17],[79,17],[72,28],[80,20],[60,27],[43,43],[53,-31],[73,16],[52,-57],[40,-44],[81,24],[31,49],[73,33],[92,-7],[28,-45],[58,45],[76,14],[84,5],[75,-2],[79,-15],[75,-7],[34,-40],[46,-37],[77,22],[84,5],[80,0],[80,2],[70,17],[74,14],[63,34],[67,21],[72,12],[54,34],[39,66],[40,41],[74,-19],[27,-43],[61,-29],[74,10],[50,-43],[52,-31],[73,29],[25,52],[64,21],[73,41],[69,17],[83,24],[56,27],[58,28],[56,27],[66,-15],[64,43],[46,34],[66,-3],[58,29],[14,43],[60,33],[58,24],[71,20],[65,10],[63,-7],[66,-13],[56,-34],[7,-52],[63,-41],[43,-33],[85,-15],[47,-33],[58,-33],[68,-7],[57,23],[60,50],[67,-26],[70,-14],[66,-14],[70,-10],[71,0],[58,-127],[-3,-31],[-8,-55],[-68,-31],[-56,-45],[10,-49],[79,2],[-10,-47],[-36,-46],[-33,-50],[54,-38],[82,-12],[81,22],[39,47],[24,46],[39,38],[44,35],[18,44],[38,60],[44,12],[81,5],[71,14],[71,19],[34,48],[21,45],[49,45],[69,32],[60,24],[39,41],[40,21],[52,19],[71,-12],[64,12],[68,15],[78,-8],[51,34],[36,81],[27,-33],[33,-58],[60,-24],[68,-9],[68,14],[71,-9],[67,-3],[44,12],[60,-7],[54,-26],[64,17],[77,0],[65,16],[73,-16],[47,40],[36,41],[49,33],[89,92],[45,-17],[55,-34],[47,-43],[89,-74],[70,-3],[65,0],[76,15],[77,16],[58,34],[49,35],[79,5],[52,28],[55,-25],[37,-39],[50,-38],[77,5],[49,-31],[85,-31],[89,-12],[72,10],[56,38],[47,38],[64,10],[64,-17],[74,-12],[66,19],[64,0],[62,-12],[65,-12],[64,22],[76,19],[73,4],[80,0],[66,12],[62,10],[20,61],[3,50],[44,-34],[13,-56],[23,-50],[29,-40],[60,-22],[81,7],[93,3],[64,7],[92,0],[67,2],[93,-4],[79,-10],[50,-38],[-14,-45],[46,-36],[76,-29],[78,-32],[92,-21],[96,-19],[72,-19],[81,-3],[46,41],[62,-34],[53,-38],[63,-28],[86,-12],[82,-15],[35,-47],[80,-29],[55,-44],[78,-19],[82,2],[76,-7],[85,3],[85,-10],[79,-17],[73,-28],[73,-24],[50,-36],[-8,-47],[-38,-43],[-32,-56],[-25,-43],[-32,-50],[-93,-19],[-42,-43],[-91,-27],[-32,-47],[-49,-46],[-51,-39],[-30,-50],[-18,-45],[-7,-55],[2,-45],[40,-48],[15,-46],[34,-43],[132,-17],[27,-52],[-127,-19],[-109,-27],[-134,-4],[-59,-70],[-13,-58],[-30,-45],[-38,-45],[95,-41],[36,-50],[60,-45],[86,-42],[99,-38],[107,-38],[162,-38],[36,-60],[204,-26],[13,-10],[53,-36],[196,31],[162,-39],[122,-29],[-25484,-1],[63,72],[128,-39],[8,5],[74,39],[10,-2],[8,-1],[103,-51],[89,51],[16,7],[209,22],[66,-29],[34,-14],[107,-42],[201,-31],[159,-38],[274,-28],[203,33],[301,-24],[171,-38],[187,36],[197,33],[15,57],[-279,5],[-228,30],[-60,47],[-190,27],[12,55],[27,50],[26,45],[-14,51],[-118,33],[-54,43],[-109,39],[171,-8],[164,19],[103,-40],[127,36],[115,45],[57,41],[-25,50],[-91,34],[-104,36],[-145,7],[-128,17],[-137,12],[-46,45],[-91,38],[-56,43],[-22,139],[35,-12],[63,-38],[117,12],[112,17],[58,-54],[113,13],[94,26],[89,34],[80,40],[107,12],[-3,46],[-25,45],[21,43],[91,21],[42,-40],[108,24],[82,32],[101,2],[96,12],[96,29],[76,26],[86,26],[56,-7],[47,-10],[106,17],[94,-21],[98,2],[93,17],[95,-12],[105,-12],[99,5],[103,-3],[105,-2],[97,5],[72,35],[86,19],[89,-26],[85,22],[76,43],[46,-39],[25,-43],[45,-40],[73,36],[85,-46],[96,-14],[82,-34],[100,8],[89,21],[107,-4],[96,-17],[98,-23],[37,54],[-46,40],[-35,43],[-91,10],[-41,45],[-15,46],[-25,91],[54,-17],[93,-7],[92,7],[84,-20],[71,-35],[30,-43],[96,-7],[92,16],[97,24],[88,14],[71,-28],[94,9],[62,94],[57,-56],[82,-21],[88,12],[59,-48],[92,-5],[86,-14],[85,-26],[55,45],[28,43],[71,-48],[97,12],[72,-26],[48,-40],[95,11],[73,27],[73,31],[86,16],[99,15],[90,16],[70,28],[41,38],[17,52],[-8,50],[-23,48],[-25,48],[-22,48],[-18,43],[-4,48],[7,48],[33,45],[28,50],[11,49],[-14,52],[-8,48],[35,55],[38,36],[46,45],[49,39],[57,36],[28,52],[39,34],[43,31],[68,7],[45,38],[50,24],[58,14],[51,31],[41,39],[55,15],[42,-31],[-26,-42],[-73,-36]],[[17625,4517],[46,-38],[67,-15],[2,-24],[-20,-56],[-109,-8],[-1,66],[10,50],[5,25]],[[23038,5473],[69,-42],[38,17],[56,23],[41,-8],[5,-144],[-23,-42],[-7,-99],[-25,33],[-49,-85],[-15,7],[-44,4],[-43,105],[-10,80],[-41,106],[2,56],[46,-11]],[[22908,8775],[26,-96],[45,46],[24,-51],[34,-49],[-8,-54],[15,-104],[11,-61],[18,-15],[19,-105],[-6,-63],[22,-82],[77,-64],[50,-59],[47,-53],[-9,-29],[40,-76],[28,-133],[28,27],[29,-53],[17,19],[13,-129],[50,-75],[33,-48],[55,-98],[20,-98],[2,-70],[-5,-76],[34,-103],[-4,-109],[-12,-56],[-20,-109],[2,-70],[-14,-88],[-31,-110],[-53,-60],[-26,-96],[-24,-60],[-21,-105],[-27,-60],[-18,-92],[-9,-84],[4,-39],[-41,-42],[-80,-5],[-64,-50],[-33,-48],[-42,-52],[-59,54],[-44,21],[11,65],[-38,-24],[-63,-88],[-61,33],[-40,19],[-41,9],[-67,36],[-46,75],[-13,92],[-17,62],[-35,50],[-68,15],[23,59],[-17,90],[-34,-84],[-64,-22],[38,67],[10,70],[28,60],[-6,91],[-58,-105],[-44,-41],[-27,-97],[-56,50],[3,64],[-45,90],[-36,45],[12,28],[-90,74],[-50,4],[-68,59],[-127,-12],[-92,-43],[-81,-41],[-66,8],[-76,-62],[-61,-28],[-14,-65],[-26,-50],[-60,-3],[-45,-10],[-62,22],[-51,-13],[-48,-6],[-42,-65],[-21,6],[-36,-35],[-34,-39],[-51,5],[-48,0],[-75,78],[-38,23],[1,70],[35,16],[12,29],[-2,44],[9,85],[-8,72],[-38,124],[-11,69],[3,69],[-29,80],[-1,36],[-32,49],[-9,95],[-40,97],[-10,53],[31,-54],[-24,114],[35,-36],[21,-47],[-1,63],[-35,96],[-7,38],[-16,36],[8,72],[14,30],[10,61],[-8,71],[29,88],[6,-93],[30,84],[57,41],[35,52],[54,45],[32,9],[20,-15],[56,45],[43,14],[11,27],[18,11],[40,-3],[73,35],[39,55],[18,65],[42,62],[3,49],[2,66],[49,104],[30,-106],[30,26],[-25,57],[22,59],[32,-26],[8,92],[39,60],[17,49],[36,21],[1,34],[31,-14],[1,30],[31,18],[34,16],[52,-56],[40,-72],[44,0],[45,-13],[-15,68],[34,98],[32,31],[-11,31],[31,70],[43,43],[36,-14],[60,23],[-2,62],[-52,40],[38,18],[47,-31],[38,-49],[59,-32],[20,13],[44,-38],[41,35],[27,-10],[17,23],[32,-60],[-19,-66],[-27,-50],[-24,-4],[8,-48],[-21,-61],[-25,-60],[5,-35],[57,-68],[54,-39],[37,-41],[51,-73],[20,1],[37,-32],[11,-38],[68,-41],[46,41],[14,66],[14,54],[9,67],[21,97],[-10,60],[5,35],[-8,70],[9,92],[14,24],[-11,42],[17,64],[14,67],[1,35],[27,46],[20,-60],[5,-76],[17,-15],[3,-51],[26,-63],[6,-69],[-3,-44]],[[13946,16334],[-5,-50],[-40,0],[13,-27],[-23,-79]],[[13891,16178],[-14,-20],[-62,-3],[-35,-28],[-58,9]],[[13722,16136],[-101,32],[-16,42],[-70,-21],[-9,-23],[-43,17]],[[13483,16183],[-36,3],[-32,23],[11,29],[-3,22]],[[13423,16260],[22,7],[35,-34],[11,32],[62,-5],[51,22],[34,-4],[22,-25],[7,21],[-10,80],[25,15],[25,57]],[[13707,16426],[52,-40],[40,50],[25,9],[55,-37],[33,6],[33,-23]],[[13945,16391],[-6,-15],[7,-42]],[[16011,15188],[-49,16],[-35,56],[-12,46]],[[16142,15513],[42,49]],[[16184,15562],[37,-64],[36,-87],[33,-6],[21,-33],[-58,-9],[-11,-95],[-13,-43],[-26,-28],[2,-61]],[[16205,15136],[-17,-6],[-45,64],[25,61],[-21,35],[-27,-9],[-83,-89]],[[15928,15494],[17,20],[53,-35],[38,-7],[10,14],[-35,66],[19,17]],[[16030,15569],[19,-4],[49,-74],[32,-9],[12,31]],[[14821,9906],[-5,148],[-17,55]],[[14799,10109],[43,-9],[21,69],[38,-8]],[[14901,10161],[4,-48],[15,-27],[1,-41],[-17,-25],[-28,-64],[-26,-44],[-29,-6]],[[13031,16717],[65,26],[45,-54],[39,-28]],[[13180,16661],[-8,-82]],[[13172,16579],[-18,-5],[-8,-69]],[[13146,16505],[-62,55],[-36,-9],[-50,58],[-33,49],[-33,2],[-10,43]],[[12922,16703],[57,24]],[[12979,16727],[52,-10]],[[12934,11221],[-58,-14]],[[12876,11207],[-18,83],[4,281],[-15,25],[-2,60],[-25,42],[-22,36],[9,65]],[[12807,11799],[25,14],[14,53],[35,12],[15,36]],[[12896,11914],[24,36],[26,0],[54,-70]],[[13000,11880],[-3,-40],[16,-73],[-14,-50],[7,-32],[-34,-76],[-22,-37],[-13,-77],[2,-78],[-5,-196]],[[12544,11634],[-49,31],[-33,-5],[-25,-30],[-32,25],[-12,41],[-32,26]],[[12361,11722],[-5,72],[20,51],[-2,42],[56,101],[11,84],[19,30],[35,-17],[29,25],[10,31],[55,55],[14,38],[66,50],[39,18],[18,-24],[44,1]],[[12770,12279],[-6,-59],[10,-55],[40,-80],[2,-60],[82,-27],[-2,-84]],[[12807,11799],[-62,3]],[[12745,11802],[-32,10],[-23,-20],[-31,9],[-123,-6],[-2,-70],[10,-91]],[[19305,13148],[-2,-88],[-24,19],[4,-98]],[[19283,12981],[-20,63],[-4,62],[-14,59],[-28,72],[-66,4],[7,-50],[-22,-68],[-31,24],[-10,-22],[-20,13],[-27,11]],[[19048,13149],[-11,102],[-25,91],[12,73],[-44,33],[16,45],[44,46],[-51,64],[25,83],[56,-53],[34,-6],[7,-85],[67,-16],[65,2],[41,-21],[-33,-104],[-31,-7],[-22,-70],[39,-63],[11,78],[19,1],[38,-194]],[[14348,15859],[20,-50],[28,8],[54,-19],[104,-6],[36,31],[83,28],[52,-44],[40,-13]],[[14765,15794],[-35,-50],[-26,-88],[23,-70]],[[14727,15586],[-61,17],[-73,-38]],[[14593,15565],[0,-61],[-65,-12],[-50,43],[-57,-33],[-52,3]],[[14369,15505],[-5,81],[-36,39]],[[14328,15625],[12,17],[-8,14],[12,39],[27,39],[-34,53],[-7,44],[18,28]],[[7254,13358],[-16,-6],[-18,70],[-27,36],[16,77],[21,-5],[24,-102],[0,-70]],[[7235,13702],[-78,-20],[-4,45],[33,11],[47,-3],[2,-33]],[[7292,13703],[-12,-86],[-13,15],[1,64],[-31,49],[0,14],[55,-56]],[[14090,15935],[26,0],[-18,-54],[34,-46],[-10,-58],[-17,-5]],[[14105,15772],[-13,-11],[-23,-28],[-11,-68]],[[14058,15665],[-63,46],[-26,52],[-27,27],[-33,45],[-15,38],[-35,57],[15,50],[25,-28],[16,25],[33,3],[61,-20],[49,2],[32,-27]],[[14407,17040],[68,0],[77,45],[17,70],[58,39],[-7,55]],[[14620,17249],[43,20],[76,47]],[[14739,17316],[74,-30],[10,-31],[37,15],[70,-29],[7,-57],[-16,-33],[45,-81],[29,-22],[-4,-22],[47,-21],[21,-33],[-28,-26],[-57,4],[-14,-12],[17,-40],[17,-79]],[[14994,16819],[-60,-7],[-22,-27],[-5,-61],[-28,12],[-64,-6],[-19,28],[-26,-21],[-27,18],[-55,2],[-79,29],[-72,10],[-55,-3],[-39,-33],[-33,-5]],[[14410,16755],[-2,55],[-22,57],[43,25],[0,48],[-19,47],[-3,53]],[[6433,12631],[-1,18],[9,6],[12,-15],[26,74],[13,2]],[[6492,12716],[1,-18],[13,-1],[-1,-33],[-12,-53],[7,-19],[-8,-44],[5,-12],[-9,-61],[-14,-32],[-12,-4],[-14,-42]],[[6448,12397],[-22,0],[6,137],[1,97]],[[8160,14403],[1,1],[0,1],[0,1]],[[8161,14406],[1,1]],[[8162,14407],[0,1],[1,0]],[[8163,14408],[0,-2],[1,-1],[1,1],[1,1],[0,1]],[[8166,14408],[-1,1]],[[8165,14409],[0,-1]],[[8165,14408],[-1,1]],[[8164,14409],[0,-1],[-1,0]],[[8163,14408],[0,1],[0,1],[1,0],[1,1],[1,1],[0,-2],[1,0],[0,-1],[-1,-1]],[[8166,14408],[1,-1]],[[8167,14407],[-2,-2],[-1,-1],[-1,-1],[-1,0],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1]],[[8155,14395],[-1,0]],[[8154,14395],[-1,0]],[[8153,14395],[-1,0],[-1,1],[-1,3],[1,1],[0,2]],[[8151,14402],[1,0]],[[8152,14402],[1,0],[1,3],[0,-1],[-1,-1],[-1,-2],[1,0],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-2]],[[8152,14396],[2,0]],[[8154,14396],[0,1],[1,0],[1,1],[1,1],[1,0],[-1,1],[-1,1],[-1,1],[1,0],[1,-1],[0,1],[1,0],[1,0],[1,1]],[[7993,7679],[-51,-17],[-28,169],[-38,137],[22,118],[-37,52],[-10,88],[-34,82]],[[7817,8308],[44,133],[-30,102],[16,41],[-13,45],[28,62],[2,103],[3,86],[15,42],[-61,196]],[[7821,9118],[53,-10],[36,2],[16,37],[62,50],[37,46],[93,21],[-7,-92],[8,-47],[-5,-82],[77,-109],[78,-21],[28,-45],[48,-24],[29,-36],[45,2],[41,-37],[3,-70],[14,-35],[1,-54],[-21,-2],[28,-142],[136,-5],[-11,-70],[8,-49],[39,-34],[16,-76],[-12,-96],[-20,-53],[7,-70],[-22,-26]],[[8626,7991],[-1,38],[-66,63],[-66,2],[-124,-37],[-34,-107],[-2,-65],[-27,-147]],[[8876,7312],[14,71],[10,72],[0,68],[-26,22],[-26,-20],[-27,5],[-8,47],[-7,112],[-13,36],[-47,33],[-29,-24],[-75,24],[5,166],[-21,67]],[[7821,9118],[-40,-21],[-32,14],[4,186],[-57,-72],[-62,3],[-27,65],[-47,7],[15,53],[-40,74],[-29,110],[18,23],[0,51],[43,35],[-7,66],[18,42],[5,58],[82,83],[58,23],[9,19],[63,-6]],[[7795,9931],[32,335],[2,52],[-11,71],[-32,44],[0,89],[40,20],[15,-13],[2,47],[-42,13],[0,77],[138,-3],[23,42],[20,-39],[14,-72],[13,15]],[[8009,10609],[39,-65],[55,8],[14,37],[53,29],[29,21],[8,51],[50,35],[-4,25],[-59,11],[-10,77],[3,82],[-32,32],[14,11],[52,-16],[56,-30],[20,29],[51,19],[79,45],[26,47],[-9,34]],[[8444,11091],[37,5],[16,-28],[-9,-53],[25,-19],[16,-56],[-20,-44],[-11,-104],[18,-61],[5,-57],[44,-58],[35,-6],[7,25],[23,5],[32,22],[23,32],[39,-10],[18,4]],[[8742,10688],[37,-10],[6,25],[-11,24],[7,36],[28,-11],[34,12],[40,-26]],[[8883,10738],[31,-25],[22,33],[16,-5],[10,-34],[34,9],[27,46],[22,89],[42,113]],[[9087,10964],[24,6],[18,-69],[39,-213],[38,-20],[2,-85],[-53,-100],[22,-37],[124,-19],[3,-123],[54,81],[89,-44],[118,-75],[34,-71],[-11,-68],[82,38],[137,-64],[106,4],[105,-101],[91,-137],[54,-35],[61,-5],[25,-38],[24,-156],[12,-74],[-29,-202],[-35,-79],[-100,-171],[-45,-137],[-52,-107],[-18,-2],[-20,-90],[5,-229],[-20,-187],[-7,-82],[-23,-48],[-12,-163],[-72,-159],[-12,-127],[-58,-53],[-16,-73],[-76,1],[-112,-47],[-50,-54],[-79,-36],[-84,-98],[-60,-120],[-10,-92],[12,-67],[-14,-123],[-16,-60],[-48,-68],[-79,-214],[-62,-97],[-49,-57],[-32,-116],[-47,-71]],[[8965,6331],[-20,70],[32,58],[-41,83],[-56,67],[-73,79],[-26,-4],[-70,95],[-47,-13]],[[20829,11009],[28,45],[61,67]],[[20918,11121],[-3,-60],[-5,-78],[-33,4],[-15,-41],[-33,63]],[[19237,13848],[27,-39],[-4,-76],[-57,-3],[-60,9],[-45,-20],[-64,47],[-2,24]],[[19032,13790],[47,91],[38,31],[51,-28],[38,-3],[31,-33]],[[14827,7757],[-99,-89],[-64,-91],[-23,-82],[-22,-46],[-38,-10],[-13,-58],[-7,-38],[-45,-28],[-58,6],[-34,34],[-30,15],[-34,-29],[-18,-58],[-33,-36],[-36,-56],[-50,-12],[-15,44],[6,74],[-42,115],[-19,19]],[[14153,7431],[0,357],[70,4],[2,435],[52,4],[109,42],[27,-50],[46,48],[21,0],[40,27]],[[14520,8298],[13,-9]],[[14533,8289],[27,-97],[14,-22],[23,-70],[80,-135],[30,-13],[1,-43],[20,-77],[54,-19],[45,-56]],[[13825,11362],[59,9],[13,32],[12,-3],[18,-27],[89,46],[30,48],[37,43],[-7,43],[20,11],[69,-7],[66,56],[51,133],[36,50],[45,21]],[[14363,11817],[8,-52],[40,-77],[1,-50],[-12,-50],[5,-38],[24,-35]],[[14429,11515],[54,-54]],[[14483,11461],[39,-50],[1,-39],[48,-64],[29,-52],[18,-74],[53,-48],[11,-39]],[[14682,11095],[-23,-13],[-45,3],[-54,13],[-26,-11],[-11,-29],[-23,-4],[-28,26],[-79,-61],[-32,12],[-10,-9],[-21,-74],[-53,24],[-51,12],[-45,45],[-58,41],[-38,-39],[-28,-62],[-6,-85]],[[14051,10884],[-46,6],[-48,22],[-42,-66],[-38,-113]],[[13877,10733],[-7,35],[-3,56],[-33,39],[-26,64],[-6,43],[-33,64],[5,36],[-7,52],[6,95],[17,22],[35,123]],[[8237,16141],[50,-16],[66,3],[-35,-50],[-26,-7],[-89,51],[-18,41],[27,38],[25,-60]],[[8368,16453],[-35,-2],[-91,38],[-66,58],[25,10],[92,-30],[73,-51],[2,-23]],[[3999,16381],[-35,-17],[-117,55],[-21,43],[-63,43],[-13,35],[-72,22],[-28,67],[7,28],[74,-27],[43,-18],[66,-13],[24,-43],[35,-58],[71,-50],[29,-67]],[[8769,16647],[-46,-108],[46,43],[47,-28],[-25,-42],[63,-33],[33,29],[71,-37],[-22,-89],[49,21],[10,-65],[22,-77],[-30,-107],[-32,-4],[-47,23],[15,99],[-19,17],[-83,-107],[-42,4],[50,58],[-68,29],[-75,-7],[-138,4],[-11,37],[44,42],[-30,34],[59,73],[73,195],[44,69],[61,42],[33,-5],[-14,-33],[-38,-77]],[[3348,17056],[68,10],[-21,-139],[61,-98],[-28,0],[-43,56],[-26,57],[-36,37],[-13,54],[4,39],[34,-16]],[[7132,18048],[-28,-64],[-31,10],[-19,37],[4,8],[27,37],[29,-3],[18,-25]],[[6946,18115],[-84,-67],[-50,3],[-15,33],[53,56],[97,-1],[-1,-24]],[[6715,18475],[13,-54],[35,19],[42,-32],[77,-42],[82,-38],[6,-57],[52,9],[51,-41],[-63,-39],[-111,30],[-39,55],[-71,-65],[-100,-63],[-24,71],[-96,-12],[61,61],[10,96],[24,112],[51,-10]],[[7372,18657],[-79,-6],[-18,60],[30,68],[65,17],[56,-34],[1,-52],[-8,-17],[-47,-36]],[[5972,18897],[-44,-43],[-96,37],[-57,-13],[-96,54],[62,38],[49,53],[75,-35],[43,-22],[21,-23],[43,-46]],[[7991,15968],[-47,70],[0,166],[-31,35],[-48,-20],[-23,32],[-54,-92],[-22,-95],[-24,-55],[-30,-20],[-23,-6],[-7,-30],[-131,0],[-108,-1],[-32,-23],[-75,-87],[-9,-10],[-22,-47],[-64,0],[-70,-1],[-32,-19],[11,-24],[7,-38],[-2,-12],[-92,-61],[-73,-19],[-83,-65],[-18,0],[-24,19],[-8,18],[2,12],[15,43],[34,67],[21,73],[-15,106],[-15,110],[-74,58],[9,22],[-10,15],[-20,0],[-14,19],[-4,29],[-13,-13],[-20,4],[5,12],[-16,12],[-7,32],[-55,39],[-57,40],[-70,49],[-66,44],[-64,-35],[-23,-1],[-87,32],[-58,-16],[-67,38],[-73,19],[-49,7],[-22,21],[-13,67],[-24,-1],[0,-46],[-147,0],[-242,0],[-241,0],[-212,0],[-213,0],[-208,0],[-216,0],[-70,0],[-210,0],[-201,0]],[[4047,16441],[-9,0],[-138,119],[-51,54],[-127,50],[-40,108],[11,75],[-91,53],[-13,98],[-85,88],[-2,64]],[[3502,17150],[40,58],[-2,77],[-121,78],[-73,139],[-44,88],[-64,55],[-48,50],[-37,63],[-72,-39],[-69,-69],[-63,81],[-49,53],[-69,34],[-70,4],[0,695],[1,453]],[[2762,18970],[132,-29],[112,-59],[74,-11],[62,51],[86,38],[104,-15],[107,54],[116,30],[48,-51],[53,29],[16,57],[49,-13],[119,-109],[95,83],[9,-93],[87,20],[27,36],[86,-7],[108,-51],[166,-45],[97,-21],[70,8],[95,-63],[-99,-60],[128,-26],[190,14],[61,22],[75,-73],[78,61],[-73,52],[46,43],[86,5],[57,12],[56,-30],[72,-66],[79,10],[125,-55],[110,19],[103,-3],[-8,76],[63,22],[110,-42],[-1,-115],[45,97],[57,-3],[32,123],[-76,75],[-82,49],[5,136],[84,88],[94,-19],[72,-54],[95,-138],[-62,-60],[131,-25],[0,-125],[94,96],[85,-78],[-21,-91],[69,-83],[74,88],[52,106],[3,134],[100,-9],[105,-18],[95,-61],[5,-60],[-53,-66],[50,-65],[-9,-59],[-139,-85],[-98,-19],[-73,36],[-21,-62],[-69,-102],[-20,-54],[-83,-82],[-101,-8],[-56,-52],[-5,-79],[-81,-16],[-87,-98],[-77,-138],[-28,-96],[-4,-143],[105,-20],[32,-114],[33,-92],[98,24],[132,-54],[71,-46],[51,-58],[88,-33],[76,-51],[116,-7],[77,-12],[-12,-107],[22,-122],[52,-137],[105,-116],[55,40],[38,126],[-37,192],[-50,65],[114,57],[79,86],[40,84],[-6,83],[-48,103],[-86,92],[83,128],[-30,111],[-24,191],[49,28],[121,-33],[73,-12],[59,32],[66,-42],[88,-71],[21,-47],[126,-10],[-2,-102],[23,-155],[65,-19],[51,-71],[103,67],[68,136],[47,56],[55,-109],[91,-156],[79,-147],[-29,-76],[95,-69],[64,-69],[113,-32],[45,-40],[28,-103],[55,-16],[28,-46],[5,-138],[-51,-45],[-50,-43],[-117,-43],[-89,-100],[-120,-20],[-151,26],[-106,1],[-74,-9],[-59,-88],[-91,-54],[-102,-161],[-81,-114],[59,20],[114,161],[149,102],[106,12],[63,-60],[-67,-82],[23,-132],[23,-92],[91,-60],[117,17],[71,137],[5,-88],[46,-44],[-88,-81],[-157,-72],[-69,-50],[-80,-87],[-53,9],[-3,103],[123,100],[-113,-4],[-79,-15]],[[4661,19386],[-35,-57],[157,37],[98,-61],[81,62],[64,-40],[58,-120],[36,51],[-50,124],[62,19],[71,-20],[78,-49],[45,-119],[22,-86],[119,-61],[128,-58],[-8,-53],[-116,-10],[45,-47],[-24,-44],[-128,19],[-121,33],[-83,-8],[-133,-41],[-180,-18],[-125,-13],[-39,59],[-96,33],[-63,-14],[-88,96],[47,13],[110,21],[100,-5],[92,21],[-137,28],[-151,-9],[-101,2],[-37,46],[164,49],[-109,-2],[-124,32],[59,91],[50,49],[190,75],[72,-25]],[[5345,19424],[-62,-82],[-110,86],[24,17],[94,5],[54,-26]],[[7339,19384],[6,-34],[-75,4],[-76,2],[-77,-16],[-21,7],[-78,66],[3,44],[34,8],[162,-13],[122,-68]],[[6616,19391],[56,-76],[65,99],[179,50],[122,-127],[-11,-80],[140,36],[67,48],[157,-62],[98,-58],[9,-53],[132,28],[73,-78],[171,-49],[61,-49],[68,-114],[-131,-56],[167,-81],[113,-27],[101,-111],[112,-9],[-22,-86],[-124,-141],[-87,52],[-112,118],[-92,-16],[-9,-70],[75,-71],[96,-56],[30,-32],[46,-122],[-25,-87],[-89,33],[-178,97],[100,-105],[74,-73],[12,-43],[-193,49],[-151,71],[-86,59],[25,34],[-106,64],[-103,59],[1,-36],[-204,-19],[-60,42],[46,89],[133,3],[146,15],[-24,44],[25,61],[92,119],[-20,54],[-27,41],[-109,59],[-144,43],[46,31],[-75,75],[-62,7],[-56,42],[-38,-36],[-128,-16],[-258,27],[-150,36],[-115,18],[-59,43],[74,57],[-100,0],[-23,123],[55,109],[73,51],[183,32],[-52,-79]],[[5639,19475],[85,-25],[125,15],[19,-35],[-67,-60],[108,-52],[-13,-110],[-116,-47],[-68,10],[-49,47],[-176,94],[1,39],[145,-15],[-78,80],[84,59]],[[6146,19344],[-76,-91],[-81,4],[-44,107],[1,62],[37,51],[70,34],[148,-5],[135,-29],[-105,-110],[-85,-23]],[[4216,19175],[-187,-59],[-37,53],[-164,65],[30,51],[49,89],[62,81],[-69,75],[239,19],[102,-25],[180,-7],[69,-36],[76,-51],[-89,-30],[-174,-87],[-87,-85],[0,-53]],[[6116,19613],[-38,-47],[-103,9],[-86,32],[38,55],[102,34],[62,-44],[25,-39]],[[5770,19826],[54,-56],[2,-63],[-32,-91],[-116,-13],[-76,20],[1,72],[-116,-10],[-5,95],[77,-4],[107,41],[98,-7],[6,16]],[[5083,19763],[28,-43],[63,20],[74,-5],[12,-61],[-43,-58],[-240,-18],[-179,-53],[-107,-3],[-9,40],[147,54],[-320,-15],[-99,22],[97,120],[66,34],[199,-41],[126,-72],[124,-11],[-101,118],[65,44],[73,-14],[24,-58]],[[6040,19872],[79,-39],[139,0],[61,-40],[-16,-45],[81,-28],[45,-29],[96,-5],[104,-11],[112,27],[144,10],[115,-8],[76,-47],[16,-51],[-44,-32],[-106,-26],[-91,15],[-202,-19],[-146,-2],[-115,15],[-187,39],[-25,67],[-8,61],[-71,53],[-147,15],[-82,38],[26,50],[146,-8]],[[4046,19753],[120,91],[145,79],[109,-2],[97,18],[-10,-94],[-54,-42],[-66,-6],[-132,-52],[-113,-19],[-96,27]],[[6100,19924],[-32,-4],[-133,8],[-19,34],[143,-2],[50,-23],[-9,-13]],[[4943,19945],[-133,-35],[-104,39],[57,40],[103,13],[100,-19],[-23,-38]],[[4980,20056],[-87,-24],[-117,1],[1,17],[73,36],[38,-5],[92,-25]],[[5959,19990],[-105,-25],[-58,28],[-30,46],[-6,50],[92,-5],[42,-8],[84,-42],[-19,-44]],[[5660,20022],[28,-50],[-116,13],[-117,40],[-158,4],[69,36],[-86,30],[-5,46],[139,-16],[192,-45],[54,-58]],[[6583,20185],[86,-39],[-98,-37],[-131,-91],[-125,-9],[-146,16],[-77,49],[2,45],[56,32],[-130,-1],[-78,40],[-45,56],[49,55],[49,37],[73,8],[-31,28],[165,6],[89,-65],[120,-26],[116,-23],[56,-81]],[[7894,20606],[190,-9],[152,-16],[129,-33],[-3,-33],[-172,-53],[-172,-25],[-64,-27],[154,1],[-167,-74],[-116,-35],[-120,-100],[-146,-20],[-46,-25],[-214,-13],[97,-15],[-49,-22],[59,-60],[-67,-42],[-109,-34],[-34,-49],[-99,-36],[10,-28],[121,5],[2,-30],[-190,-73],[-185,34],[-207,-19],[-106,15],[-134,6],[-9,58],[131,28],[-35,89],[43,8],[190,-53],[-97,79],[-115,23],[58,47],[126,29],[20,43],[-100,47],[-31,64],[193,-5],[56,-14],[111,45],[-160,14],[-247,-8],[-125,42],[-59,49],[-83,35],[-16,42],[106,23],[82,4],[140,20],[104,46],[87,-6],[77,-35],[53,66],[94,20],[127,13],[216,5],[38,-13],[205,21],[153,-8],[153,-8]],[[13483,16183],[-5,-50],[-32,-20],[-52,15],[-15,-49],[-34,-4],[-13,19],[-39,-41],[-34,-6],[-30,26]],[[13229,16073],[-24,54],[-34,-19],[1,55],[52,68],[-3,31],[32,-11],[19,21]],[[13272,16272],[61,-1],[14,27],[76,-38]],[[8003,3751],[-23,-49],[-61,-38],[-35,4],[-42,10],[-51,36],[-74,18],[-89,68],[-72,66],[-98,136],[58,-25],[100,-81],[94,-44],[36,56],[23,83],[65,50],[50,-14]],[[7889,4068],[-63,1],[-34,-30],[-63,-44],[-12,-114],[-30,-3],[-80,40],[-81,85]],[[7526,4003],[-88,69],[-23,78],[21,72],[-36,81],[-9,208],[30,117],[75,95],[-108,36],[68,107],[24,203],[79,-42],[37,253],[-48,32],[-22,-153],[-45,17],[23,175],[24,227],[32,83],[-20,119],[-6,138],[30,4],[43,197],[50,195],[30,182],[-17,184],[21,100],[-8,150],[41,150],[13,236],[22,254],[22,273],[-5,200],[-15,172]],[[7761,8215],[37,31],[19,62]],[[20556,12737],[-61,-58],[-58,37],[-2,105],[35,55],[77,35],[41,-2],[16,-48],[-31,-53],[-17,-71]],[[21905,16494],[84,-86],[29,-115],[108,0],[61,48],[116,36],[-37,-110],[-26,-45],[-25,-133],[-47,-120],[-86,22],[-61,-43],[18,-104],[-10,-145],[-36,-4],[0,-61]],[[21993,15634],[-45,72],[-29,-69],[-109,-52],[11,-64],[-62,4],[-32,38],[-49,-86],[-78,-66],[-58,-79]],[[21542,15332],[-99,-35],[-52,-57],[-77,-33],[38,56],[-15,48],[56,82],[-37,64],[-62,-44],[-79,-84],[-44,-79],[-69,-6],[-37,-56],[38,-84],[58,-20],[2,-54],[56,-36],[79,87],[63,-47],[46,-4],[11,-63],[-100,-34],[-33,-67],[-68,-61],[-37,-85],[76,-67],[28,-121],[43,-111],[48,-94],[-1,-91],[-45,-34],[17,-64],[42,-38],[-11,-100],[-18,-97],[-40,-11],[-51,-131],[-57,-161],[-66,-145],[-97,-114],[-99,-102],[-80,-14],[-43,-54],[-25,39],[-40,-61],[-98,-61],[-75,-19],[-24,-128],[-40,-8],[-18,89],[16,47],[-95,39],[-33,-20]],[[20394,13088],[-72,32],[-33,50],[11,70],[-64,22],[-34,46],[-61,-65],[-69,-14],[-56,1],[-38,-30]],[[19978,13200],[-37,-18],[11,-140],[-38,3],[-7,29]],[[19907,13074],[-2,50],[-52,-35],[-31,22],[-52,46],[20,102],[-44,24],[-16,112],[-75,-21],[8,146],[67,101],[3,101],[-2,94],[-31,29],[-23,72],[-42,-9]],[[19635,13908],[-76,18],[24,51],[-34,77],[-50,-53],[-60,31],[-82,-78],[-64,-91],[-56,-15]],[[19032,13790],[-6,96],[-43,-25]],[[18983,13861],[-83,12],[-80,28],[-58,53],[-54,24],[-24,59],[-39,18],[-72,79],[-57,38],[-29,-30]],[[18487,14142],[-99,86],[-70,78],[-20,134],[51,-17],[3,63],[-29,62],[8,100],[-77,143]],[[18254,14791],[-115,49],[-21,95],[-53,56]],[[18053,15026],[-11,70],[3,47],[-44,29],[-23,-13],[-18,113]],[[17960,15272],[20,28],[-9,28],[67,58],[49,24],[75,-17],[27,79],[90,14],[26,49],[111,66],[10,27]],[[18426,15628],[-5,70],[48,32],[-64,212],[141,48],[36,28],[51,218],[140,-40],[40,55],[3,123],[59,12],[54,81]],[[18929,16467],[28,10]],[[18957,16477],[18,-85],[60,-65],[101,-46],[49,-98],[-27,-143],[25,-53],[84,-21],[95,-17],[86,-76],[44,-14],[32,-112],[42,-73],[78,3],[145,-28],[95,17],[70,-18],[105,-74],[85,0],[32,-37],[81,65],[115,42],[106,5],[83,43],[51,66],[50,41],[-12,40],[-22,47],[37,78],[40,-11],[72,-25],[71,65],[108,48],[52,81],[50,34],[103,16],[56,-13],[7,43],[-64,86],[-57,39],[-54,-46],[-70,20],[-41,-15],[-18,49],[50,122],[35,92]],[[21005,16549],[85,-46],[100,78],[-1,53],[63,129],[40,39],[-1,68],[-39,29],[59,61],[88,22],[94,3],[106,-36],[62,-45],[44,-124],[27,-52],[23,-75],[27,-120],[123,-39]],[[12542,11066],[-32,-1],[-50,23],[-45,-1],[-84,-21],[-50,-35],[-69,-45],[-14,3]],[[12198,10989],[6,100],[7,16],[-3,48],[-30,52],[-22,8],[-21,33],[16,54],[-7,59],[3,35]],[[12147,11394],[11,1],[4,53],[-5,24],[7,17],[26,15],[-18,97],[-16,50],[6,42],[14,9]],[[12176,11702],[9,11],[20,-18],[54,-1],[13,35],[12,-2],[20,14],[11,-52],[17,15],[29,18]],[[12544,11634],[19,-175],[-30,-102],[-19,-137],[31,-106],[-3,-48]],[[13670,10733],[-9,7],[-42,-16],[-43,16],[-34,-8]],[[13542,10732],[-115,3]],[[13427,10735],[10,96],[-27,82],[-33,20],[-14,55],[-18,17],[1,34]],[[13346,11039],[18,86],[34,118],[20,1],[42,72],[27,2],[40,-50],[49,41],[6,50],[16,49],[11,63],[38,50],[15,85],[15,27],[10,64],[18,78],[59,94],[4,41],[8,22],[-28,48]],[[13748,11980],[2,39],[20,7]],[[13770,12026],[28,-78],[5,-81],[-3,-80],[39,-112],[-40,1],[-20,-9],[-32,13],[-15,-58],[41,-71],[31,-20],[10,-51],[23,-85],[-12,-33]],[[13877,10733],[-5,-66],[-56,29],[-57,32],[-89,5]],[[14951,10725],[-23,-43],[-27,-32],[-27,-65],[-15,-56],[-4,-98],[-16,-46],[-1,-93]],[[14838,10292],[-20,-34],[-3,-73],[-10,-9],[-6,-67]],[[14821,9906],[13,-112],[-7,-64],[14,-71],[41,-68],[38,-154]],[[14920,9437],[-28,12],[-95,-20],[-19,-15],[-20,-77],[16,-54],[-13,-145],[-9,-122],[19,-22],[50,-47],[20,22],[5,-132],[-54,1],[-29,67],[-25,52],[-54,17],[-16,64],[-44,-38],[-57,17],[-23,55],[-45,11],[-34,-3],[-4,38],[-24,3]],[[13617,9711],[-10,37]],[[13664,9872],[19,-12],[24,46],[38,-1],[5,-34],[26,-22],[42,76],[41,60],[18,39],[-2,101],[30,118],[33,63],[47,59],[8,39],[2,45],[11,42],[-4,69],[9,109],[14,76],[21,65],[5,74]],[[14682,11095],[43,-100],[31,-15],[19,20],[33,-8],[40,26],[16,-52],[63,-82]],[[14927,10884],[-4,-142],[28,-17]],[[13588,9841],[-58,129]],[[13530,9970],[54,67],[-27,81],[24,31],[48,15],[6,54],[38,-59],[62,-5],[21,58],[9,81],[-8,96],[-32,72],[29,141],[-16,25],[-53,-11],[-20,64],[5,53]],[[7407,10438],[-30,28],[-35,41],[-20,-20],[-60,17],[-16,53],[-14,-2],[-71,70]],[[7161,10625],[-9,38],[26,9],[-3,61],[17,44],[35,8],[29,77],[27,65],[-26,28],[13,71],[-16,111],[15,32],[-11,104],[-28,65]],[[7230,11338],[10,59],[21,-8],[14,36],[-17,72],[9,18]],[[7267,11515],[37,-4],[53,85],[29,13],[1,41],[13,103],[40,57],[45,2],[6,26],[55,-11],[56,62],[28,27],[34,59],[25,-8],[19,-32],[-14,-41]],[[7694,11894],[-45,-20],[-18,-61],[-28,-35],[-21,-46],[-8,-87],[-20,-71],[37,-8],[9,-56],[15,-27],[6,-50],[-8,-45],[2,-25],[18,-11],[17,-42],[91,12],[40,-16],[50,-105],[29,13],[51,-6],[40,14],[25,-21],[-13,-67],[-15,-41],[-6,-87],[14,-81],[20,-37],[3,-27],[-36,-61],[26,-27],[19,-42],[21,-122]],[[7795,9931],[-35,65],[-21,2],[45,125],[-53,57],[-43,-10],[-25,21],[-39,-32],[-53,15],[-42,128],[-33,31],[-23,58],[-47,58],[-19,-11]],[[6870,11460],[-39,28],[-14,26],[8,21],[-3,27],[-19,29],[-28,24],[-25,15],[-3,36],[-19,22],[5,-36],[-14,-29],[-17,34],[-22,12],[-10,24],[0,38],[10,39],[-20,17],[16,24]],[[6676,11811],[11,15],[46,-32],[16,16],[22,-10],[12,-25],[21,-8],[17,25]],[[6821,11792],[18,-67],[27,-49],[34,-52]],[[6900,11624],[-28,-11],[1,-49],[14,-18],[-10,-14],[2,-22],[-5,-25],[-4,-25]],[[6919,13288],[62,-9],[55,-1],[67,-41],[28,-45],[66,14],[26,-29],[59,-76],[44,-55],[23,2],[42,-25],[-5,-34],[53,-5],[53,-50],[-8,-29],[-47,-15],[-48,-7],[-49,10],[-101,-12],[47,68],[-29,32],[-45,8],[-24,35],[-17,70],[-40,-5],[-66,32],[-22,26],[-92,19],[-25,25],[27,30],[-70,6],[-51,-64],[-29,-2],[-10,-29],[-35,-14],[-30,12],[37,37],[15,45],[32,27],[36,24],[54,12],[17,13]],[[15062,14748],[5,0],[10,30],[51,-2],[64,36],[-48,-51],[6,-23]],[[15150,14738],[-8,4],[-14,-9],[-10,2],[-4,-4],[-1,12],[-5,7],[-14,2],[-19,-11],[-13,7]],[[15150,14738],[2,-10],[-73,-49],[-35,15],[-16,49],[34,5]],[[13707,16426],[-40,52],[-36,29],[-8,51],[-12,38],[51,26],[27,30],[51,24],[16,23],[19,-14],[32,13]],[[13807,16698],[33,-39],[53,-11],[-4,-33],[39,-26],[10,32],[49,-14],[7,-38],[52,-8],[33,-60]],[[14079,16501],[-21,0],[-11,-22],[-16,-5],[-5,-28],[-14,-6],[-2,-11],[-24,-13],[-31,2],[-10,-27]],[[13446,17172],[2,-48],[71,-29],[0,-43],[72,23],[40,33],[80,-48],[33,-39]],[[13744,17021],[16,-61],[-19,-33],[25,-43],[17,-66],[-5,-42],[29,-78]],[[13272,16272],[9,87],[36,84],[-101,22],[-34,32]],[[13182,16497],[4,53],[-14,29]],[[13180,16661],[-12,128],[43,0],[18,45],[17,113],[-13,41]],[[13233,16988],[13,26],[60,6],[13,-26],[48,60],[-16,45],[-4,70]],[[13347,17169],[54,-16],[45,19]],[[15794,12007],[17,-38],[-3,-51],[-40,-29],[30,-33]],[[15798,11856],[-26,-65]],[[15772,11791],[-16,22],[-16,-9],[-39,2],[-1,37],[-6,34],[24,57],[25,53]],[[15743,11987],[29,-10],[22,30]],[[13643,17248],[-43,-99],[-74,69],[-10,51],[104,40],[23,-61]],[[13347,17169],[-28,68],[-3,124],[12,33],[21,38],[62,7],[25,34],[57,34],[-2,-63],[-21,-40],[8,-34],[39,-19],[-18,-46],[-21,14],[-51,-88],[19,-59]],[[7667,12863],[9,21],[55,0],[41,-32],[19,3],[13,-43],[39,3],[-3,-37],[32,-4],[35,-45],[-26,-49],[-34,26],[-33,-5],[-23,6],[-13,-22],[-27,-8],[-10,30],[-23,-18],[-29,-83],[-18,19],[-4,35]],[[7667,12660],[2,33],[-18,37],[17,20],[5,47],[-6,66]],[[13594,13323],[-243,-233],[-205,-240],[-100,-55]],[[13046,12795],[-78,-12],[-1,78],[-33,20],[-44,35],[-17,57],[-238,267],[-240,267]],[[12395,13507],[-266,295]],[[12129,13802],[2,24],[0,8]],[[12131,13834],[-1,144],[114,91],[71,18],[58,33],[27,61],[83,48],[3,91],[41,11],[32,45],[93,21],[13,47],[-19,26],[-24,129],[-5,74],[-26,78]],[[12591,14751],[68,67],[76,21],[44,51],[69,37],[120,22],[117,10],[36,-18],[67,48],[75,0],[28,-28],[49,8]],[[13340,14969],[-15,-63],[12,-117],[-17,-100],[-44,-68],[7,-93],[58,-72],[0,-30],[44,-49],[30,-219]],[[13415,14158],[23,-108],[4,-57],[-13,-100],[6,-55],[-9,-67],[6,-77],[-28,-51],[42,-89],[2,-52],[25,-69],[34,23],[56,-57],[31,-76]],[[7059,10040],[37,92],[-15,53],[-27,-57],[-42,54],[14,34],[-12,110],[25,20],[13,75],[27,79],[-5,50],[39,26],[48,49]],[[7407,10438],[10,-93],[-22,-80],[-77,-127],[-84,-48],[-44,-107],[-13,-82],[-40,-51],[-30,62],[-29,13],[-29,-10],[-2,45],[20,29],[-8,51]],[[15354,13143],[-281,0],[-275,0],[-284,0]],[[14514,13143],[0,450],[0,434],[-21,99],[18,75],[-11,52],[26,59]],[[14526,14312],[94,2],[68,-33],[70,-36],[33,-19],[54,39],[29,34],[63,11],[50,-16],[20,-60],[16,40],[57,-29],[55,-7],[35,31]],[[15170,14269],[47,-210]],[[15217,14059],[-20,-49],[-15,-92],[-20,-64],[-16,-21],[-24,39],[-32,55],[-50,175],[-8,-11],[30,-129],[43,-123],[54,-190],[26,-67],[23,-68],[63,-136],[-15,-21],[3,-79],[82,-111],[13,-24]],[[15743,11987],[-24,40],[-29,72],[-32,39],[-18,42],[-62,49],[-49,2],[-17,25],[-41,-29],[-43,56],[-23,-91],[-82,25]],[[15323,12217],[-8,49],[31,180],[7,81],[22,37],[52,20],[36,70]],[[15463,12654],[42,-141],[19,-112],[39,-59],[97,-116],[39,-70],[39,-70],[21,-42],[35,-37]],[[12105,15571],[3,87],[-29,53],[101,88],[85,-22],[96,1],[75,-21],[59,7],[115,-4]],[[12610,15760],[28,-49],[129,-55],[26,26],[80,-55],[82,16]],[[12955,15643],[4,-71],[-67,-81],[-91,-25],[-6,-42],[-44,-68],[-26,-99],[26,-69],[-40,-56],[-15,-79],[-54,-24],[-50,-94],[-90,-1],[-67,2],[-45,-43],[-27,-47],[-35,10],[-26,42],[-20,70],[-65,19]],[[12217,14987],[-6,40],[26,46],[9,33],[-24,36],[20,81],[-28,73],[30,10],[2,58],[12,17],[0,96],[33,33],[-20,61],[-40,5],[-12,-16],[-42,0],[-18,60],[-29,-18],[-25,-31]],[[14465,17515],[9,72],[-27,-16],[-45,43],[-6,70],[90,35],[89,18],[77,-20],[74,3]],[[14726,17720],[10,-22],[-50,-70],[21,-113],[-31,-39]],[[14676,17476],[-58,0],[-61,45],[-31,15],[-61,-21]],[[15772,11791],[-15,-44],[26,-67],[26,-59],[27,-43],[232,-146],[60,1]],[[16128,11433],[-201,-366],[-92,-6],[-63,-85],[-45,-3],[-19,-38]],[[15708,10935],[-49,0],[-28,41],[-65,-51],[-21,-52],[-47,10],[-16,14],[-17,-3],[-22,1],[-90,104],[-49,0],[-25,40],[0,69],[-36,20]],[[15243,11128],[-41,134],[-33,28],[-12,48],[-36,60],[-44,8],[24,71],[38,3],[11,37]],[[15150,11517],[-1,109]],[[15149,11626],[21,129],[33,34],[8,50],[30,93],[42,60],[29,121],[11,104]],[[14768,18892],[-10,-87],[108,-81],[-65,-92],[82,-139],[-48,-104],[64,-91],[-29,-80],[105,-84],[-26,-62],[-66,-70],[-151,-156]],[[14732,17846],[-129,-10],[-125,-45],[-115,-25],[-41,66],[-69,40],[16,121],[-34,110],[33,70],[65,77],[162,133],[47,25],[-7,52],[-99,57]],[[14436,18517],[-24,49],[-2,187],[-110,84],[-94,60]],[[14206,18897],[42,32],[78,-65],[93,6],[76,-29],[68,54],[35,89],[110,41],[90,-48],[-30,-85]],[[25373,8338],[24,-35],[-12,-64],[-44,-17],[-39,15],[-7,54],[28,42],[32,-15],[18,20]],[[25443,8404],[-45,-25],[-10,45],[36,25],[22,7],[42,38],[0,-60],[-45,-30]],[[6,8441],[-6,-7],[0,60],[15,5],[-9,-58]],[[8411,4124],[85,73],[60,-31],[43,49],[57,-55],[-22,-42],[-95,-38],[-32,44],[-61,-56],[-35,56]],[[13421,15604],[-24,-94],[-32,25],[-16,82],[14,45],[46,47],[12,-105]],[[13146,16505],[16,-11],[20,3]],[[13229,16073],[-3,-34],[20,-47],[-24,-37],[19,-94],[37,-15],[-8,-53]],[[13270,15793],[-63,-69],[-140,33],[-104,-40],[-8,-74]],[[12610,15760],[36,73],[14,243],[-73,128],[-53,62],[-108,47],[-7,89],[92,27],[119,-32],[-23,138],[67,-52],[164,96],[22,99],[62,25]],[[13530,9970],[-73,124],[-47,100],[-43,126],[2,41],[15,39],[18,89],[14,90]],[[13416,10579],[24,7],[103,-1],[-1,147]],[[12305,17035],[-54,25],[-43,-2],[15,66],[-15,66]],[[12208,17190],[59,5],[76,-76],[-38,-84]],[[12502,16737],[-111,20],[-20,49],[74,37],[-39,67],[14,80],[105,-11]],[[12525,16979],[11,70],[-48,75],[-1,2],[-86,22],[-17,33],[26,55],[-24,33],[-38,-57],[-4,117],[-36,62],[26,127],[55,99],[57,-10],[85,10],[-76,-132],[73,17],[78,0],[-19,-101],[-64,-109],[74,-7],[5,-13],[63,-145],[49,-19],[43,-139],[20,-48],[86,-23],[-9,-79],[-36,-36],[28,-63],[-63,-64],[-94,2],[-121,-34],[-33,24],[-47,-57],[-66,14],[-50,-48],[-37,26],[104,127],[63,27]],[[15686,15529],[11,52],[-18,83],[-41,45],[-39,15],[-26,37]],[[15573,15761],[9,15],[60,-21],[103,-20],[97,-59],[12,-23],[43,19],[66,-25],[22,-50],[45,-28]],[[15829,15475],[-68,60],[-75,-6]],[[12819,11180],[-111,-72],[-39,-41],[-64,-36],[-63,35]],[[12745,11802],[-4,-38],[29,-64],[-1,-88],[7,-96],[18,-44],[-16,-111],[6,-60],[19,-78],[16,-43]],[[12147,11394],[-20,4],[-15,-49],[-20,0],[-14,26],[5,49],[-30,75],[-18,-13],[-15,-3]],[[12020,11483],[-20,-7],[1,45],[-11,32],[2,35],[-15,51],[-20,44],[-57,0],[-16,-23],[-20,-3],[-12,-26],[-8,-34],[-38,-53]],[[11806,11544],[-31,72],[-28,47],[-17,16],[-18,24],[-8,55],[-10,27],[-21,20]],[[11673,11805],[32,59],[21,-2],[18,20],[15,0],[12,16],[-7,41],[8,13],[2,41]],[[11774,11993],[34,-1],[51,-30],[15,3],[6,13],[38,-9],[11,6]],[[11929,11975],[4,-44],[11,0],[19,16],[11,-4],[20,-31],[30,-10],[20,27],[23,16],[17,17],[14,-3],[16,-27],[8,-33],[29,-51],[-14,-32],[-3,-39],[15,12],[9,-14],[-4,-38],[22,-35]],[[11552,12063],[9,54]],[[11561,12117],[77,3],[16,29],[23,2],[28,-30],[22,-1],[22,21],[14,-35],[-29,-28],[-31,2],[-31,26],[-26,-28],[-13,-1],[-17,-17],[-64,3]],[[11673,11805],[-38,51],[-30,8],[-16,34],[1,18],[-22,26],[-5,26]],[[11563,11968],[38,20],[23,-4],[19,14],[131,-5]],[[13416,10579],[-13,18],[24,138]],[[14422,14816],[39,-41],[55,7],[53,-8],[-2,-21],[39,14],[-9,-36],[-102,-10],[0,20],[-86,24],[13,51]],[[14589,15442],[-43,4],[-37,11],[-86,-32],[49,-69],[-36,-19],[-40,-1],[-37,63],[-13,-27],[15,-72],[36,-57],[-27,-27],[40,-56],[35,-36],[1,-69],[-66,32],[21,-62],[-45,-13],[27,-107],[-47,-2],[-58,53],[-27,98],[-11,81],[-28,56],[-36,70],[-5,35]],[[14233,15445],[45,11],[27,26],[39,-2],[11,21],[14,4]],[[14593,15565],[35,-33],[-22,-76],[-17,-14]],[[9433,20548],[238,73],[248,-6],[91,45],[249,12],[566,-15],[443,-97],[-130,-48],[-272,-5],[-381,-12],[36,-22],[250,14],[214,-42],[138,37],[59,-44],[-78,-70],[179,45],[345,47],[212,-23],[39,-52],[-288,-87],[-40,-28],[-227,-21],[165,-7],[-83,-89],[-57,-79],[2,-136],[85,-79],[-111,-6],[-115,-38],[129,-65],[17,-104],[-76,-11],[92,-105],[-156,-9],[81,-49],[-23,-43],[-99,-19],[-99,0],[89,-84],[1,-54],[-141,50],[-36,-32],[95,-31],[93,-74],[27,-99],[-126,-23],[-55,47],[-88,70],[25,-83],[-83,-64],[187,-5],[98,-7],[-190,-106],[-193,-97],[-207,-42],[-78,0],[-73,-47],[-99,-129],[-151,-86],[-49,-5],[-95,-30],[-102,-28],[-61,-76],[-1,-85],[-35,-81],[-115,-97],[28,-95],[-31,-102],[-37,-119],[-100,-7],[-105,99],[-141,1],[-69,66],[-47,120],[-122,152],[-36,80],[-10,109],[-98,113],[25,90],[-47,43],[70,142],[107,47],[28,51],[15,95],[-81,-43],[-39,-19],[-64,-17],[-87,40],[-5,83],[28,64],[66,2],[145,-32],[-122,78],[-64,42],[-70,-17],[-60,30],[80,113],[-43,45],[-57,86],[-84,129],[-90,47],[0,51],[-190,72],[-151,9],[-188,-5],[-173,-9],[-83,39],[-122,76],[185,39],[143,6],[-302,32],[-160,50],[9,48],[268,58],[260,59],[27,44],[-191,44],[62,49],[245,85],[102,13],[-29,55],[168,32],[218,19],[217,1],[78,-38],[188,67],[168,-45],[100,-10],[147,-40],[-169,66],[10,53]],[[6365,12134],[-36,21],[-45,2],[-32,24],[-37,50]],[[6215,12231],[1,36],[9,28],[-10,24],[33,99],[91,1],[2,41],[-12,8],[-8,26],[-26,28],[-26,41],[32,0],[0,69],[66,1],[66,-2]],[[6448,12397],[23,-22],[6,18],[21,-16]],[[6498,12377],[-33,-46],[-33,-35],[-5,-24],[5,-24],[-14,-31]],[[6418,12217],[-17,-7],[4,-14],[-14,-14],[-24,-30],[-2,-18]],[[8883,10738],[18,52],[7,56],[12,52]],[[8920,10898],[-28,73],[-5,83],[37,105]],[[8924,11159],[24,-14],[52,-29],[75,-102],[12,-50]],[[8513,11478],[47,-45],[44,-80],[2,-62],[26,-3],[38,-60],[28,-43]],[[8698,11185],[-11,-110],[-43,-31],[4,-29],[-13,-63],[31,-89],[23,0],[9,-69],[44,-106]],[[8444,11091],[-48,92],[19,35],[-1,56],[43,19],[18,23],[-24,45],[6,45],[56,72]],[[6562,12042],[-12,38],[-22,11]],[[6528,12091],[5,49],[-9,13],[-15,9],[-31,-15],[-3,16],[-21,20],[-15,24],[-21,10]],[[6498,12377],[7,-5],[16,22],[20,2],[6,-10],[11,6],[33,-11],[33,3],[23,13],[8,14],[23,-6],[17,-9],[19,3],[14,11],[31,-17],[11,-3],[22,-23],[20,-27],[26,-18],[19,-35]],[[6857,12287],[-24,3],[-10,-17],[-25,-16],[-18,0],[-15,-15],[-15,5],[-11,19],[-7,-4],[-9,-29],[-7,1],[-1,-25],[-25,-34],[-13,-14],[-7,-15],[-21,25],[-16,-33],[-14,1],[-17,-3],[1,-60],[-10,-1],[-9,-28],[-22,-5]],[[14077,16063],[18,-47],[22,-36],[-27,-45]],[[14058,15665],[-8,-21]],[[14050,15644],[-66,45],[-41,45],[-65,36],[-60,90],[14,9],[-32,51],[-1,41],[-46,19],[-21,-52],[-21,40],[2,44],[2,2]],[[13715,16014],[49,-5],[13,21],[24,-20],[28,-2],[0,34],[24,12],[7,49],[57,33]],[[13917,16136],[22,-15],[53,-52],[59,-24],[26,18]],[[7667,12660],[-47,21],[-33,-9],[-43,9],[-34,-23],[-38,38],[7,40],[65,-17],[53,-10],[26,27],[-32,53],[0,46],[-45,19],[16,35],[44,-7],[61,-19]],[[13946,16334],[36,-31],[26,-14],[60,15],[6,25],[28,3],[34,19],[8,-8],[33,16],[17,28],[23,8],[75,-37],[15,12]],[[14307,16370],[40,-33],[5,-33]],[[14352,16304],[-44,-26],[-33,-83],[-42,-82],[-57,-23]],[[14176,16090],[-44,5],[-55,-32]],[[13917,16136],[-14,41],[-12,1]],[[21290,9206],[-30,-4],[-93,87],[66,24],[37,-37],[25,-37],[-5,-33]],[[21592,9370],[7,-24],[1,-37]],[[21600,9309],[-46,-91],[-61,-28],[-8,16],[6,41],[31,74],[70,49]],[[21092,9467],[25,-33],[44,10],[18,-52],[-82,-24],[-50,-16],[-38,1],[25,70],[39,1],[19,43]],[[21445,9467],[-10,-68],[-107,-34],[-93,15],[0,44],[55,26],[45,-37],[47,9],[63,45]],[[20434,9628],[136,-12],[16,50],[132,-58],[24,-79],[107,-22],[87,-74],[-81,-46],[-78,49],[-63,-3],[-74,9],[-66,21],[-83,48],[-52,12],[-29,-15],[-129,50],[-13,52],[-64,9],[48,116],[86,-7],[57,-47],[30,-10],[9,-43]],[[22282,9697],[-36,-83],[-6,91],[11,44],[15,42],[16,-36],[0,-58]],[[21753,10033],[-26,-40],[-49,22],[-14,53],[72,6],[17,-41]],[[21981,10078],[26,-94],[-60,51],[-59,10],[-40,-8],[-49,4],[17,68],[87,5],[78,-36]],[[22727,10139],[1,-399],[2,-398]],[[22730,9342],[-63,100],[-73,25],[-17,-35],[-90,-4],[30,100],[45,34],[-19,132],[-34,104],[-137,103],[-59,10],[-105,112],[-21,-59],[-27,-11],[-17,45],[0,53],[-54,61],[76,44],[51,-3],[-6,32],[-104,1],[-28,72],[-63,23],[-30,61],[95,29],[37,40],[114,-50],[10,-46],[20,-197],[73,-74],[59,130],[82,74],[63,0],[61,-43],[52,-43],[76,-23]],[[21611,10630],[-57,-122],[-53,-23],[-68,23],[-119,-6],[-62,-17],[-10,-92],[64,-109],[38,56],[132,41],[-5,-57],[-31,19],[-31,-73],[-63,-47],[68,-156],[-13,-43],[63,-140],[0,-80],[-38,-37],[-28,44],[34,100],[-69,-47],[-18,33],[9,47],[-51,72],[5,119],[-47,-37],[6,-143],[3,-174],[-44,-18],[-30,36],[20,112],[-11,118],[-30,1],[-22,84],[29,80],[11,96],[35,185],[14,50],[60,90],[56,-36],[89,-16],[82,5],[70,89],[12,-27]],[[21855,10594],[-4,-107],[-36,12],[-11,-74],[29,-64],[-20,-15],[-28,78],[-22,155],[15,98],[23,45],[5,-67],[42,-10],[7,-51]],[[20508,10701],[12,-81],[49,-70],[45,25],[46,-9],[41,63],[34,10],[66,-35],[58,27],[36,169],[28,43],[24,139],[82,0],[61,-20]],[[21090,10962],[-40,-111],[52,-116],[-12,-56],[79,-113],[-84,-15],[-23,-83],[3,-110],[-69,-84],[-1,-121],[-28,-187],[-10,43],[-81,-55],[-28,75],[-50,6],[-36,40],[-83,-44],[-26,60],[-47,-7],[-58,14],[-11,163],[-35,34],[-34,105],[-10,107],[8,113],[42,81]],[[20236,9741],[-78,-3],[-60,103],[-91,99],[-30,74],[-54,100],[-35,91],[-54,172],[-63,101],[-20,105],[-26,96],[-64,77],[-37,104],[-53,69],[-74,134],[-6,62],[45,-5],[110,-23],[63,-120],[54,-83],[39,-51],[67,-130],[72,-2],[60,-84],[41,-103],[54,-55],[-28,-100],[40,-43],[26,-3],[12,-85],[24,-68],[53,-11],[33,-77],[-17,-152],[-3,-189]],[[18487,14142],[-45,-55],[-28,-115],[69,-46],[67,-59],[92,-69],[97,-15],[40,-63],[55,-12],[86,-28],[59,2],[8,48],[-10,78],[6,53]],[[19635,13908],[5,-47],[-24,-22],[5,-75],[-50,22],[-92,-85],[2,-70],[-39,-102],[-4,-59],[-31,-101],[-56,27],[-3,-125],[-16,-42],[8,-52],[-35,-29]],[[19048,13149],[-11,-44],[-48,1],[-87,-25],[4,-91],[-38,-72],[-102,-83],[-79,-144],[-53,-76],[-71,-81],[0,-56],[-35,-30],[-64,-44],[-33,-6],[-21,-94],[14,-158],[4,-101],[-30,-117],[0,-207],[-37,-6],[-32,-93],[21,-40],[-64,-35],[-24,-84],[-28,-35],[-67,115],[-33,171],[-27,123],[-25,58],[-37,117],[-18,153],[-12,76],[-65,168],[-29,237],[-21,156],[0,148],[-14,114],[-103,-73],[-49,15],[-93,147],[34,45],[-21,48],[-83,103]],[[17571,13349],[47,82],[155,-1],[-14,106],[-39,62],[-8,93],[-46,56],[77,127],[83,-9],[74,128],[44,124],[69,122],[-1,88],[60,71],[-57,60],[-24,82],[-26,108],[35,52],[108,-30],[79,19],[67,102]],[[12305,17035],[12,-87],[-54,-110],[-125,-72],[-100,19],[57,128],[-37,124],[97,96],[53,57]],[[16562,14999],[62,24],[51,69],[47,-3],[30,23],[51,-12],[78,-61],[57,-14],[81,-107],[53,-5],[6,-103]],[[17054,14099],[35,-64],[29,-74],[68,-54],[1,-107],[34,-20],[6,-57],[-102,-62],[-27,-142]],[[17098,13519],[-133,37],[-78,28],[-80,16],[-30,150],[-34,21],[-53,-21],[-72,-60],[-87,40],[-71,95],[-69,34],[-47,116],[-52,163],[-38,-20],[-45,41],[-26,-48]],[[16183,14111],[-39,64],[-1,65],[-23,0],[12,89],[-37,93],[-86,66],[-50,117],[17,95],[36,42],[-6,71],[-46,37],[-46,146]],[[15914,14996],[-39,97],[14,38],[-22,141],[48,34]],[[16205,15136],[23,-90],[66,-25],[49,-61],[101,-21],[111,32],[7,28]],[[16183,14111],[-42,6]],[[16141,14117],[-48,10],[-52,-118]],[[16041,14009],[-132,11],[-199,245],[-105,86],[-86,33]],[[15519,14384],[-29,148]],[[15490,14532],[158,128],[26,147],[-6,90],[38,30],[37,76]],[[15743,15003],[29,19],[83,-16],[25,-31],[34,21]],[[11717,18573],[-16,-80],[79,-83],[-91,-93],[-205,-84],[-61,-22],[-93,18],[-197,39],[69,54],[-154,60],[126,23],[-3,36],[-149,28],[48,80],[107,18],[110,-83],[108,67],[89,-35],[116,66],[117,-9]],[[15273,14451],[-13,-38]],[[15260,14413],[-24,16],[-15,-81],[17,-13],[-18,-17],[-3,-33],[33,17]],[[15250,14302],[1,-48],[-34,-195]],[[15170,14269],[21,41],[-5,7],[19,56],[14,92],[10,31],[2,1]],[[15231,14497],[23,0],[7,21],[19,2]],[[15280,14520],[1,-50],[-10,-18],[2,-1]],[[13843,15125],[-26,-96],[11,-38],[-15,-62],[-55,46],[-35,13],[-99,62],[10,62],[83,-11],[72,13],[54,11]],[[13396,15489],[42,-87],[-10,-161],[-32,8],[-29,-41],[-27,32],[-2,147],[-17,71],[39,-6],[36,37]],[[13722,16136],[-8,-60],[17,-51]],[[13731,16025],[-56,17],[-58,-44],[4,-60],[-9,-35],[24,-62],[66,-61],[36,-102],[78,-98],[55,1],[18,-27],[-20,-24],[63,-44],[52,-37],[61,-65],[8,-22],[-14,-44],[-39,57],[-62,20],[-30,-79],[52,-45],[-9,-63],[-29,-8],[-38,-105],[-30,-9],[0,37],[15,66],[15,26],[-27,71],[-22,61],[-29,15],[-21,53],[-45,23],[-31,49],[-52,8],[-56,55],[-65,79],[-48,70],[-22,121],[-35,14],[-58,41],[-33,-17],[-41,-56],[-29,-9]],[[7252,12714],[47,-11],[38,-29],[12,-33],[-50,-2],[-22,-21],[-38,20],[-41,44],[9,28],[29,8],[16,-4]],[[15273,14451],[79,-48],[138,129]],[[15519,14384],[-13,-18],[-143,-61],[71,-123],[-23,-21],[-12,-40],[-54,-17],[-17,-44],[-31,-38],[-78,20]],[[15219,14042],[-2,17]],[[15250,14302],[10,36],[0,75]],[[22276,14627],[9,-42],[-40,-74],[-28,39],[-36,-29],[-19,-71],[-46,35],[0,58],[39,73],[41,-14],[29,51],[51,-26]],[[22726,14992],[-27,-97],[12,-62],[-37,-86],[-90,-57],[-125,-7],[-101,-140],[-48,48],[-3,91],[-122,-27],[-84,-58],[-83,-2],[72,-90],[-48,-208],[-45,-52],[-35,48],[18,110],[-45,36],[-29,83],[67,38],[37,77],[72,63],[52,83],[140,37],[76,-25],[74,217],[47,-58],[104,122],[41,47],[44,150],[-12,137],[30,78],[74,22],[39,-170],[-2,-99],[-65,-123],[2,-126]],[[22933,15851],[50,-26],[50,52],[16,-137],[-106,-34],[-62,-121],[-111,83],[-38,-133],[-79,-2],[-10,121],[35,95],[75,7],[21,168],[21,96],[83,-128],[55,-41]],[[17768,15618],[-40,-23],[-94,-84],[-31,-88],[-26,-1],[-19,58],[-91,4],[-14,100],[-35,1],[6,122],[-85,90],[-121,-10],[-83,-17],[-68,109],[-58,46],[-110,89],[-13,10],[-182,-73],[3,-450]],[[16707,15501],[-36,-5],[-50,95],[-48,34],[-81,-25],[-31,-41]],[[16461,15559],[-4,30],[18,51],[-14,42],[-82,42],[-32,110],[-39,31],[-3,39],[69,-11],[3,89],[60,20],[62,-19],[13,120],[-13,75],[-71,-6],[-60,30],[-82,-53],[-65,-26]],[[16221,16123],[-36,20],[7,62],[-45,83],[-53,-4],[-60,83],[41,92],[-21,25],[57,135],[73,-72],[9,90],[145,132],[111,3],[156,-84],[84,-49],[74,51],[113,3],[91,-63],[20,36],[100,-6],[18,58],[-115,84],[68,60],[-14,33],[69,32],[-52,83],[33,42],[264,42],[35,30],[178,46],[63,51],[127,-27],[22,-127],[74,30],[91,-42],[-6,-66],[68,7],[178,115],[-26,-38],[90,-94],[158,-311],[38,64],[98,-70],[102,31],[39,-22],[34,-70],[49,-23],[30,-53],[91,16],[38,-74]],[[18426,15628],[-43,18],[-36,44],[-105,13],[-117,3],[-26,-14],[-101,53],[-40,-26],[-11,-72],[-117,41],[-46,-17],[-16,-53]],[[15689,10250],[-50,-48],[-18,-51],[-26,-9],[-10,-86],[-23,-50],[-14,-81],[-28,-40]],[[15520,9885],[-102,121],[-5,72],[-256,248],[-12,14]],[[15145,10340],[-1,129],[20,50],[35,80],[26,90],[-31,140],[-8,61],[-34,85]],[[15152,10975],[44,73],[47,80]],[[15708,10935],[-62,-139],[1,-444],[42,-102]],[[17960,15272],[-134,-19],[-87,40],[-77,-9],[7,70],[76,-21],[26,38]],[[17771,15371],[54,-12],[91,89],[-84,64],[-50,-31],[-52,46],[59,79],[-21,12]],[[20007,11944],[-17,148],[46,101],[91,24],[67,-18]],[[20194,12199],[57,-48],[33,84],[62,-44]],[[20346,12191],[17,-82],[-9,-146],[-118,-94],[30,-74],[-73,-9],[-62,-50]],[[20131,11736],[-59,19],[-29,63],[-36,126]],[[21831,15172],[61,-144],[18,-79],[0,-141],[-27,-67],[-64,-24],[-56,-50],[-63,-11],[-8,67],[13,91],[-32,128],[53,20],[-48,104]],[[21678,15066],[4,11],[32,-4],[26,55],[50,6],[31,8],[10,30]],[[14165,15657],[14,28]],[[14179,15685],[17,8],[9,42],[13,6],[10,-17],[13,-7],[9,-21],[11,-5],[14,-23],[10,1],[-8,-30],[-8,-14],[2,-10]],[[14271,15615],[-16,-4],[-41,-19],[-3,-25],[-9,1]],[[16141,14117],[15,-54],[-7,-27],[23,-93]],[[16172,13943],[-50,-3],[-18,58],[-63,11]],[[20194,12199],[23,55],[3,104],[-57,106],[-5,120],[-54,100],[-53,8],[-15,-42],[-41,-3],[-21,21],[-75,-74],[-2,110],[18,129],[-48,5],[-4,74],[-31,38]],[[19832,12950],[15,45],[60,79]],[[19978,13200],[41,-97],[32,-111],[87,-1],[28,-107],[-46,-32],[-20,-43],[85,-73],[58,-145],[45,-107],[53,-85],[18,-87],[-13,-121]],[[15231,14497],[25,100],[35,86],[1,4]],[[15292,14687],[32,-6],[12,-47],[-39,-46],[-17,-68]],[[12198,10989],[-18,-1],[-73,58],[-65,93],[-60,67],[-48,79]],[[11934,11285],[17,39],[4,35],[32,66],[33,58]],[[13795,13249],[-50,-46],[-39,67],[-112,53]],[[13415,14158],[35,28],[6,51],[-8,51],[49,48],[22,39],[35,34],[4,94]],[[13558,14503],[83,-42],[30,11],[59,-21],[93,-54],[33,-109],[64,-24],[100,-51],[76,-60],[34,31],[34,56],[-16,94],[22,60],[51,57],[48,16],[96,-25],[24,-54],[26,-1],[23,-20],[70,-15],[18,-40]],[[14514,13143],[0,-244],[-82,0],[0,-52]],[[14432,12847],[-282,234],[-283,234],[-72,-66]],[[18535,11375],[-11,-127],[-30,-35],[-61,-29],[-34,98],[-13,175],[32,199],[49,-68],[33,-86],[35,-127]],[[14795,6919],[25,-37],[-22,-59],[-12,-40],[-39,-19],[-13,-39],[-25,-12],[-53,94],[38,77],[38,48],[32,25],[31,-38]],[[14353,17091],[-6,31],[8,34],[-31,20],[-75,21]],[[14249,17197],[-14,102]],[[14235,17299],[80,38],[119,-8],[70,12],[10,-26],[38,-7],[68,-59]],[[14407,17040],[-18,38],[-36,13]],[[14235,17299],[3,92],[34,77],[66,42],[57,-91],[57,2],[13,94]],[[14676,17476],[35,-28],[6,-60],[22,-72]],[[12131,13834],[-11,0]],[[12120,13834],[2,-65],[-44,-4],[-23,-28],[-32,0],[-26,16],[-60,-13],[-23,-96],[-22,-9],[-33,-153],[-99,-133],[-22,-168],[-29,-55],[-9,-44],[-160,-10],[-1,0]],[[11539,13072],[3,57],[28,33],[23,64],[-5,41],[25,86],[39,78],[24,19],[19,72],[1,65],[26,75],[46,45],[45,125],[2,2],[35,46],[66,14],[56,83],[36,32],[59,103],[-18,151],[27,106],[10,64],[45,82],[71,56],[52,51],[48,126],[22,75],[52,0],[43,-52],[67,8],[74,-27],[31,-1]],[[14629,16346],[17,18],[47,12],[51,-38],[29,-5],[33,-33],[-6,-42],[26,-20],[11,-51],[24,-31],[-5,-18],[13,-12],[-18,-9],[-42,4],[-7,16],[-15,-9],[5,-22],[-19,-39],[-13,-42],[-17,-13]],[[14743,16012],[-12,56],[7,52],[-2,53],[-41,72],[-22,53],[-22,36],[-22,12]],[[16251,8933],[19,-52],[18,-81],[11,-146],[18,-58],[-7,-58],[-12,-36],[-24,71],[-14,-36],[14,-90],[-6,-52],[-20,-28],[-4,-104],[-27,-142],[-35,-169],[-44,-231],[-27,-169],[-32,-143],[-58,-28],[-62,-52],[-41,31],[-56,44],[-20,64],[-5,109],[-24,97],[-7,88],[13,88],[32,21],[1,41],[33,92],[7,79],[-17,57],[-13,77],[-6,112],[25,69],[10,77],[35,5],[40,25],[26,22],[31,2],[40,69],[59,76],[21,61],[-10,52],[31,-15],[39,85],[1,74],[23,55],[24,-53]],[[6215,12231],[-81,132],[-36,40],[-58,32],[-40,-9],[-57,-46],[-35,-12],[-51,32],[-53,23],[-65,56],[-53,17],[-81,57],[-59,59],[-18,32],[-39,8],[-73,38],[-30,56],[-76,69],[-35,78],[-17,59],[23,12],[-7,35],[16,31],[1,42],[-24,55],[-7,49],[-22,62],[-63,121],[-71,96],[-35,76],[-61,49],[-13,30],[11,75],[-36,29],[-42,60],[-18,85],[-38,10],[-41,64],[-33,59],[-3,39],[-38,92],[-25,93],[2,47],[-52,49],[-23,-5],[-41,33],[-11,-50],[11,-59],[7,-91],[25,-50],[52,-85],[12,-29],[11,-8],[9,-42],[13,1],[13,-78],[22,-31],[15,-43],[44,-63],[24,-113],[21,-54],[20,-57],[3,-65],[35,-4],[28,-55],[26,-54],[-2,-22],[-30,-45],[-12,1],[-19,74],[-46,69],[-52,59],[-36,32],[2,89],[-10,66],[-34,38],[-48,54],[-9,-16],[-18,33],[-44,29],[-42,71],[5,9],[30,-7],[26,46],[3,55],[-55,87],[-42,34],[-26,76],[-26,80],[-33,98],[-29,110]],[[4451,14430],[81,9],[90,13],[-7,-24],[107,-59],[161,-86],[141,0],[57,0],[0,52],[123,0],[26,-44],[35,-39],[42,-53],[23,-64],[18,-67],[37,-37],[59,-37],[44,97],[58,2],[50,-48],[36,-85],[25,-71],[41,-69],[16,-85],[20,-59],[54,-37],[51,-27],[27,4]],[[5866,13616],[-27,-107],[-13,-89],[-5,-163],[-7,-59],[13,-68],[22,-59],[14,-95],[47,-90],[16,-71],[28,-60],[75,-32],[30,-51],[62,34],[54,13],[53,21],[44,21],[45,50],[17,71],[6,103],[12,36],[48,32],[75,28],[63,-4],[43,10],[17,-26],[-2,-58],[-39,-73],[-16,-75],[13,-21],[-11,-53],[-18,-95],[-18,32],[-15,-2]],[[14271,15615],[24,8],[33,2]],[[11882,12241],[24,22],[12,73],[22,3],[50,-35],[40,25],[27,-8],[11,27],[284,2],[15,85],[-12,15],[-34,527],[-34,527],[108,3]],[[13046,12795],[0,-281],[-38,-81],[-6,-75],[-63,-20],[-97,-10],[-26,-44],[-46,-5]],[[11929,11975],[3,38],[-6,48],[-27,35],[-14,69],[-3,76]],[[13775,14834],[-3,-4],[-6,1],[-6,6],[0,13],[6,-3],[7,-8],[2,-5]],[[13757,14856],[-4,-2],[-5,4],[-1,2],[6,2],[3,-2],[1,-3],[0,-1]],[[19722,11669],[-7,91],[22,93],[-24,72],[6,134],[-29,63],[-23,146],[-13,155],[-30,100],[-47,-61],[-81,-86],[-40,10],[-44,29],[25,151],[-15,115],[-56,140],[9,44],[-41,15],[-51,101]],[[19832,12950],[-41,-28],[-41,-54],[-49,-5],[-33,-132],[-29,-22],[34,-107],[45,-90],[28,-80],[-25,-106],[-25,-23],[17,-61],[47,-97],[8,-68],[-1,-58],[27,-111],[-39,-113],[-33,-126]],[[14116,15571],[-15,9],[-20,40],[-31,24]],[[14105,15772],[19,-21],[10,-17],[23,-13],[27,-26],[-5,-10]],[[18957,16477],[75,21],[135,106],[107,57],[61,-37],[74,-2],[48,-58],[71,-5],[102,-30],[69,86],[-29,71],[73,126],[79,-50],[65,-14],[83,-31],[14,-92],[100,-51],[68,23],[88,16],[71,-16],[70,-60],[43,-62],[66,1],[89,-20],[65,31],[94,20],[103,86],[42,-13],[37,-41],[85,10]],[[15191,9049],[53,10],[85,-34],[18,15],[50,3],[25,37],[43,-2],[77,47],[57,70]],[[15599,9195],[11,-54],[-3,-121],[9,-108],[3,-190],[12,-60],[-21,-88],[-28,-85],[-45,-75],[-65,-46],[-79,-60],[-81,-131],[-27,-22],[-48,-88],[-30,-28],[-6,-87],[34,-92],[13,-71],[1,-38],[12,7],[-2,-120],[-11,-56],[17,-21],[-11,-51],[-29,-44],[-58,-41],[-85,-66],[-32,-45],[6,-51],[19,-9],[-6,-65]],[[15069,7189],[-54,1]],[[15015,7190],[-6,55],[-11,55]],[[14998,7300],[-6,43],[13,136],[-19,88],[-34,171]],[[14952,7738],[75,139],[19,88],[10,11],[8,72],[-11,37],[3,91],[14,84],[0,155],[-37,39],[-34,9],[-15,30],[-33,26],[-59,-3],[-5,46]],[[14887,8562],[-7,87],[216,101]],[[15096,8750],[41,-59],[19,11],[28,-30],[4,-50],[-15,-57],[6,-86],[46,-75],[21,85],[30,25],[-6,158],[-29,88],[-25,39],[-25,-2],[-20,159],[20,93]],[[11882,12241],[-47,85],[-43,89],[-47,32],[-33,36],[-39,-1],[-35,-27],[-35,11],[-24,-39]],[[11579,12427],[-7,65],[20,60],[9,116],[-8,120],[-8,61],[7,61],[-19,58],[-37,53]],[[11536,13021],[15,40],[277,0],[-13,176],[17,63],[67,11],[-3,312],[233,-6],[0,185]],[[15096,8750],[-38,31],[22,113],[22,44],[-13,100],[14,99],[12,33],[-18,104],[-33,55]],[[15064,9329],[69,-23],[14,-34],[24,-57],[20,-166]],[[19976,11216],[16,-11],[42,-75],[30,-81],[4,-82],[-8,-55],[7,-43],[5,-72],[25,-34],[28,-107],[-1,-43],[-51,-8],[-67,91],[-84,97],[-8,62],[-41,82],[-10,101],[-25,67],[7,89],[-15,52]],[[19830,11246],[12,21],[58,-53],[6,-63],[46,14],[24,51]],[[20508,10701],[52,-42],[55,23],[14,103],[31,23],[84,27],[50,97],[35,77]],[[20918,11121],[54,86],[36,95],[29,0],[36,-61],[4,-53],[46,-35],[59,-37],[-5,-48],[-47,-6],[12,-59],[-52,-41]],[[13901,6966],[-53,92],[-27,89],[-16,119],[-18,89],[-23,188],[-2,146],[-9,66],[-27,51],[-36,101],[-38,146],[-15,77],[-58,119],[-4,93]],[[14387,8315],[59,28],[46,-7],[28,-27],[0,-11]],[[14153,7431],[0,-451],[-63,-63],[-39,-9],[-44,23],[-32,10],[-12,52],[-28,33],[-34,-60]],[[24481,7881],[58,-75],[37,-57],[-27,-29],[-39,33],[-50,56],[-46,64],[-47,86],[-10,41],[31,-2],[39,-41],[32,-41],[22,-35]],[[13795,13249],[17,-191],[27,-31],[1,-39],[30,-42],[-16,-52],[-27,-248],[-4,-159],[-89,-115],[-31,-161],[30,-46],[-1,-78],[45,-3],[-7,-58]],[[13748,11980],[-13,-2],[-48,134],[-16,5],[-56,-68],[-55,35],[-38,7],[-20,-17],[-42,4],[-42,-53],[-36,-3],[-86,64],[-33,-30],[-36,2],[-26,46],[-71,46],[-77,-15],[-18,-26],[-10,-70],[-20,-50],[-5,-109]],[[13346,11039],[-74,-44],[-27,6],[-26,-27],[-57,3],[-38,76],[-23,88],[-51,81],[-53,-1],[-63,0]],[[6676,11811],[-25,38],[-33,49],[-15,41],[-30,38],[-36,55],[8,20],[12,-19],[5,9]],[[6857,12287],[-6,-12],[-4,-27],[7,-44],[-16,-42],[-8,-49],[-2,-53],[4,-33],[2,-55],[-11,-11],[-7,-53],[5,-32],[-14,-31],[3,-33],[11,-20]],[[12979,16727],[36,33],[62,181],[97,50],[59,-3]],[[14206,18897],[-44,-5],[-10,-82],[-134,20],[-19,-68],[-68,1],[-47,-87],[-71,-136],[-109,-171],[26,-42],[-25,-48],[-70,2],[-46,-115],[4,-162],[46,-62],[-24,-143],[-59,-84],[-31,-71]],[[13525,17644],[-48,76],[-140,-142],[-93,-29],[-99,62],[-25,132],[-22,282],[65,78],[186,103],[140,126],[130,170],[170,236],[118,91],[195,154],[155,53],[117,-6],[108,102],[129,-6],[128,25],[221,-90],[-92,-33],[78,-76]],[[14946,18952],[-121,-49],[-57,-11]],[[14494,19965],[-158,-51],[-124,29],[48,32],[-42,39],[146,24],[28,-45],[102,-28]],[[14036,20190],[233,-91],[-178,-48],[-39,-90],[-62,-23],[-34,-101],[-86,-5],[-151,75],[63,43],[-105,36],[-138,103],[-56,95],[194,44],[39,-43],[100,2],[27,41],[104,5],[89,-43]],[[14546,20277],[139,-44],[-105,-65],[-206,-15],[-208,21],[-13,33],[-102,2],[-77,57],[219,34],[102,-29],[71,36],[180,-30]],[[24994,5458],[16,-50],[50,49],[21,-51],[0,-52],[-26,-56],[-47,-91],[-36,-49],[26,-58],[-55,-2],[-60,-46],[-19,-79],[-41,-124],[-55,-55],[-35,-34],[-65,2],[-46,40],[-77,9],[-12,45],[38,90],[89,121],[46,23],[50,46],[61,64],[42,64],[32,91],[27,31],[10,67],[50,57],[16,-52]],[[25107,6040],[51,-129],[2,84],[32,-34],[10,-92],[56,-39],[48,-10],[41,46],[36,-14],[-17,-109],[-22,-71],[-54,3],[-19,-37],[7,-53],[-11,-22],[-27,-67],[-34,-83],[-55,-49],[-12,32],[-29,18],[40,100],[-23,68],[-76,49],[2,44],[51,42],[12,95],[-3,79],[-29,81],[2,22],[-34,50],[-56,108],[-29,87],[26,9],[39,-67],[55,-32],[20,-109]],[[16504,12490],[-23,85],[-56,201]],[[16425,12776],[213,123],[48,244],[-33,87]],[[16737,13500],[31,-84],[40,-44],[52,-16],[42,-22],[32,-70],[19,-40],[25,-16],[0,-27],[-26,-73],[-11,-34],[-30,-39],[-26,-84],[-32,7],[-15,-29],[-12,-63],[9,-81],[-7,-15],[-32,0],[-45,-45],[-6,-60],[-16,-25],[-44,1],[-28,-31],[1,-50],[-35,-34],[-39,11],[-47,-41],[-33,-6]],[[16714,13638],[21,42],[8,-11],[-6,-50],[-9,-22]],[[17571,13349],[-52,31],[-21,89],[-55,92],[-131,-23],[-114,-2],[-100,-17]],[[7230,11338],[-23,35],[-15,66],[17,33],[-18,9],[-13,40],[-35,34],[-31,-8],[-15,-42],[-29,-31],[-15,-4],[-7,-26],[34,-66],[-19,-16],[-11,-18],[-33,-6],[-12,72],[-9,-20],[-24,7],[-14,49],[-29,8],[-18,14],[-31,0],[-2,-26],[-8,18]],[[6900,11624],[25,-43],[-1,-26],[28,-6],[7,10],[19,-30],[35,9],[30,31],[43,24],[24,37],[40,-7],[-3,-12],[40,-4],[31,-22],[23,-36],[26,-34]],[[7761,8215],[-70,70],[-6,50],[-141,123],[-127,133],[-55,76],[-29,101],[12,35],[-61,160],[-68,225],[-68,243],[-29,57],[-22,89],[-55,80],[-51,49],[23,54],[-34,118],[22,85],[57,77]],[[21692,11484],[7,-82],[4,-68],[-24,-111],[-26,124],[-33,-62],[23,-90],[-21,-58],[-83,72],[-20,88],[22,58],[-45,57],[-23,-50],[-33,5],[-53,-68],[-11,35],[28,103],[44,35],[39,46],[25,-56],[54,34],[12,55],[50,3],[-5,94],[58,-58],[6,-61],[5,-45]],[[21522,11711],[-25,-40],[-23,-77],[-22,-36],[-44,84],[15,33],[18,34],[8,76],[39,8],[-12,-83],[53,118],[-7,-117]],[[21134,11594],[-94,-116],[35,85],[51,76],[43,84],[37,122],[12,-100],[-46,-68],[-38,-83]],[[21373,11908],[43,-37],[45,0],[-2,-51],[-32,-52],[-45,-37],[-3,57],[5,62],[-11,58]],[[21630,11941],[20,-136],[-55,33],[2,-41],[17,-76],[-34,-28],[-3,87],[-21,6],[-11,74],[41,-10],[0,46],[-44,93],[68,-2],[20,-46]],[[21348,12053],[-19,-107],[-30,61],[-37,94],[61,-5],[25,-43]],[[21333,12716],[44,-35],[22,32],[6,-31],[-11,-50],[24,-89],[-19,-101],[-42,-40],[-11,-99],[16,-97],[38,-14],[31,15],[89,-68],[-7,-66],[23,-29],[-7,-57],[-56,61],[-26,63],[-18,-44],[-45,73],[-65,-18],[-35,27],[4,50],[22,31],[-21,28],[-9,-44],[-36,70],[-9,54],[-3,117],[28,-41],[7,192],[23,110],[43,0]],[[23780,9623],[-20,-12],[-30,47],[-31,77],[-15,94],[10,11],[7,-36],[22,-27],[33,-79],[34,-41],[-10,-34]],[[23504,9787],[-37,-10],[-11,-35],[-39,-29],[-36,-29],[-38,0],[-58,36],[-41,34],[6,38],[64,-18],[39,10],[10,58],[11,3],[7,-64],[40,9],[20,42],[40,43],[-8,72],[42,2],[15,-20],[-2,-67],[-24,-75]],[[22727,10139],[122,-84],[132,-71],[48,-62],[40,-61],[11,-72],[118,-76],[17,-65],[-65,-13],[16,-81],[63,-81],[45,-129],[41,4],[-3,-54],[54,-21],[-21,-23],[76,-52],[-8,-35],[-47,-8],[-18,31],[-61,14],[-70,19],[-55,78],[-41,67],[-37,106],[-92,54],[-60,-34],[-44,-42],[10,-89],[-56,-42],[-40,20],[-72,5]],[[23587,9906],[-23,-32],[-13,72],[-17,47],[-32,40],[-40,53],[-51,35],[19,30],[39,-34],[24,-27],[30,-29],[28,-52],[27,-39],[9,-64]],[[13744,17021],[48,36],[110,57],[90,42],[70,-21],[6,-31],[68,-1]],[[14136,17103],[88,-14],[129,2]],[[14410,16755],[35,-106],[-7,-34],[-36,-14],[-64,-102],[18,-55],[-15,7]],[[14341,16451],[-68,47],[-50,-17],[-33,12],[-42,-26],[-36,43],[-29,-16],[-4,7]],[[8051,12717],[37,-10],[12,-25],[-18,-30],[-53,0],[-42,-4],[-4,52],[10,18],[58,-1]],[[21993,15634],[10,-22]],[[22003,15612],[-27,8],[-30,-42],[-22,-41],[3,-87],[-37,-28],[-12,-22],[-27,-36],[-47,-20],[-31,-32],[-2,-53],[-9,-14],[29,-19],[40,-54]],[[21678,15066],[-35,23],[-8,-22],[-21,-10],[-3,22],[-18,12],[-19,19],[19,55],[17,14],[-6,22],[18,66],[-5,20],[-41,13],[-34,32]],[[12217,14987],[-29,-32],[-37,18],[-37,-14],[11,95],[-7,75],[-31,11],[-17,48],[5,79],[29,44],[5,50],[14,74],[-1,51],[-14,44],[-3,41]],[[16341,13480],[-5,88],[19,64],[20,13],[21,-38],[2,-71],[-16,-72]],[[16382,13464],[-20,-8],[-21,24]],[[14352,16304],[30,27],[44,-14],[46,0],[33,-30],[24,19],[52,11],[18,29],[30,0]],[[14743,16012],[31,-23],[33,20],[33,-22]],[[14840,15987],[1,-31],[-34,-26],[-22,11],[-20,-147]],[[14348,15859],[-13,21],[16,20],[-17,16],[-22,-28],[-42,36],[-5,50],[-43,29],[-8,39],[-38,48]],[[22914,16654],[72,-216],[-106,40],[-43,-176],[69,-126],[-2,-85],[-54,74],[-46,-95],[-13,103],[8,119],[-9,131],[17,92],[3,164],[-42,120],[7,167],[65,56],[-28,56],[32,18],[18,-81],[25,-117],[-2,-121],[29,-123]],[[14136,17103],[16,54],[97,40]],[[353,18589],[48,-31],[-17,89],[193,-18],[139,-115],[-71,-53],[-116,-13],[-2,-119],[-28,-25],[-67,3],[-54,43],[-94,35],[-16,53],[-71,20],[-81,-16],[-38,43],[15,45],[-85,-29],[32,-57],[-40,-52],[0,487],[174,-94],[185,-121],[-6,-75]],[[25488,19107],[-78,-7],[-12,40],[90,51],[0,-84]],[[93,19114],[-93,-7],[0,84],[9,5],[60,0],[103,-35],[-6,-17],[-73,-30]],[[22911,19397],[-108,-1],[-144,15],[-12,6],[67,49],[88,11],[100,-47],[9,-33]],[[23416,19626],[-82,-48],[-113,11],[-132,48],[17,39],[133,-18],[177,-32]],[[23016,19685],[-56,-91],[-260,3],[-118,-28],[-140,79],[38,84],[93,23],[187,-5],[256,-65]],[[16817,19093],[-42,-11],[-231,16],[-18,55],[-129,33],[-10,66],[72,26],[-2,66],[141,105],[-66,15],[170,107],[-19,55],[158,65],[234,78],[235,23],[122,45],[138,16],[49,-48],[-48,-38],[-251,-60],[-216,-59],[-220,-116],[-106,-119],[-110,-118],[14,-101],[135,-101]],[[16221,16123],[-33,-72],[-68,-20],[-71,-127],[65,-115],[-7,-83],[77,-144]],[[15573,15761],[-90,103],[-81,46],[-62,71],[52,21],[59,102],[-40,48],[105,50],[-2,26],[-64,-19]],[[15450,16209],[2,54],[37,35],[69,9],[11,40],[-16,67],[29,64],[-1,36],[-105,39],[-41,-1],[-44,58],[-54,-19],[-90,42],[1,24],[-24,53],[-57,6],[-5,38],[17,25],[-45,68],[-74,-11],[-21,6],[-18,-28],[-27,5]],[[14726,17720],[79,68],[-73,58]],[[14946,18952],[73,42],[117,-74],[193,-29],[268,-138],[54,-58],[5,-81],[-79,-64],[-116,-34],[-315,94],[-52,-16],[115,-90],[5,-56],[4,-124],[91,-38],[55,-32],[9,60],[-42,52],[45,46],[171,-76],[60,30],[-48,89],[166,120],[64,-7],[66,-43],[42,85],[-59,72],[34,73],[-52,75],[199,-39],[40,-68],[-90,-15],[1,-68],[56,-41],[109,26],[18,78],[147,58],[247,105],[54,-6],[-70,-75],[88,-12],[51,41],[132,4],[105,51],[81,-74],[80,81],[-74,71],[37,40],[210,-37],[97,-38],[257,-140],[47,65],[-72,64],[-2,26],[-85,12],[23,58],[-38,95],[-2,40],[131,110],[46,110],[53,24],[187,-32],[15,-67],[-67,-99],[44,-39],[22,-86],[-16,-167],[79,-75],[-31,-82],[-139,-173],[81,-18],[29,44],[78,32],[18,60],[62,58],[-42,69],[34,81],[-78,10],[-17,68],[57,122],[-93,100],[127,82],[-16,87],[35,3],[38,-68],[-28,-117],[76,-22],[-33,87],[119,48],[146,7],[131,-70],[-63,102],[-7,130],[123,25],[171,-5],[153,15],[-58,64],[82,80],[82,3],[138,62],[186,16],[24,33],[186,12],[58,-28],[158,65],[131,-2],[19,52],[68,52],[167,50],[121,-39],[-96,-30],[160,-19],[19,-60],[65,30],[208,-2],[158,-59],[57,-46],[-17,-64],[-78,-36],[-186,-68],[-53,-36],[87,-17],[105,-31],[63,23],[36,-78],[32,32],[113,19],[228,-20],[17,-58],[296,-18],[4,94],[150,-21],[113,0],[114,-65],[33,-78],[-42,-51],[89,-95],[111,-51],[69,129],[114,-55],[119,33],[138,-38],[52,34],[116,-17],[-51,113],[94,53],[638,-79],[61,-72],[185,-94],[286,24],[141,-21],[59,-51],[-9,-89],[88,-34],[95,25],[125,3],[134,-24],[134,14],[123,-109],[88,39],[-58,78],[32,54],[226,-34],[148,7],[203,-58],[99,-53],[0,-487],[-1,0],[-91,-54],[-92,9],[64,-65],[43,-101],[32,-33],[9,-50],[-19,-32],[-132,26],[-197,-91],[-63,-15],[-109,-86],[-103,-75],[-26,-55],[-100,84],[-185,-95],[-33,45],[-68,-52],[-95,16],[-23,-81],[-84,-118],[3,-49],[80,-27],[-10,-178],[-65,-5],[-30,-101],[29,-53],[-124,-63],[-24,-139],[-106,-30],[-21,-124],[-103,-114],[-26,84],[-30,179],[-40,271],[34,169],[60,74],[4,56],[110,28],[127,154],[122,125],[127,97],[57,173],[-87,-11],[-42,-100],[-179,-134],[-58,150],[-183,-42],[-177,-204],[59,-76],[-159,-32],[-109,-12],[5,89],[-111,18],[-87,-60],[-216,22],[-234,-38],[-229,-237],[-271,-288],[111,-16],[35,-77],[69,-27],[46,61],[77,-8],[102,-134],[2,-104],[-54,-122],[-6,-145],[-32,-196],[-107,-177],[-24,-84],[-96,-143],[-96,-140],[-46,-72],[-93,-73],[-45,-1],[-44,60],[-96,-90],[-11,-41]],[[20184,20020],[-400,-47],[129,160],[59,14],[53,-8],[180,-69],[-21,-50]],[[16364,20294],[-95,-16],[-63,-9],[-10,-20],[-83,-21],[-77,29],[41,38],[-158,4],[139,22],[107,2],[15,-33],[41,29],[65,20],[106,-26],[-28,-19]],[[19819,20090],[-153,-15],[-198,35],[-118,47],[-54,87],[-96,25],[183,83],[154,28],[138,-62],[162,-118],[-18,-110]],[[14897,10317],[29,-69],[-4,-71],[-21,-16]],[[14838,10292],[17,-13],[42,38]],[[11536,13021],[3,51]],[[15772,12453],[-9,52],[-20,36],[-6,49],[-36,44],[-38,102],[-20,100],[-49,84],[-32,20],[-47,116],[-8,85],[3,73],[-41,135],[-33,47],[-38,26],[-24,70],[4,28],[-20,63],[-20,27],[-28,91],[-43,99],[-35,83],[-36,0],[11,67],[4,42],[8,50]],[[16172,13943],[28,-105],[35,-28],[11,-43],[48,-52],[5,-50],[-7,-40],[9,-41],[20,-34],[9,-40],[11,-30]],[[16382,13464],[14,-47]],[[16425,12776],[-203,-46],[-66,-55],[-51,-129],[-33,-20],[-18,40],[-27,-6],[-69,13],[-13,12],[-82,-3],[-19,-11],[-29,33],[-19,-61],[7,-52],[-31,-38]],[[15149,11612],[-10,2],[1,61],[-8,42],[-37,49],[-8,87],[8,90],[-33,9],[-4,-28],[-43,-6],[17,-35],[6,-73],[-39,-68],[-35,-88],[-37,-13],[-59,71],[-27,-25],[-8,-35],[-36,-23],[-3,-25],[-69,0],[-10,25],[-51,4],[-26,-21],[-19,11],[-37,71],[-12,33],[-51,-17],[-20,-56],[-18,-109],[-24,-23],[-22,-13]],[[14435,11509],[-6,6]],[[14363,11817],[0,30],[-26,35],[0,71],[-15,47],[-25,-7],[7,46],[18,50],[-8,51],[24,37],[-15,29],[19,75],[32,90],[61,-8],[-3,484]],[[15354,13143],[23,-120],[-16,-22],[10,-126],[27,-146],[27,-30],[38,-45]],[[15149,11626],[0,-14]],[[15149,11612],[1,-95]],[[15152,10975],[-44,-56],[-50,1],[-57,-30],[-45,28],[-29,-34]],[[14483,11461],[-48,48]],[[11561,12117],[-29,94],[-36,44],[31,23],[35,86],[17,63]],[[11563,11968],[-11,95]],[[24222,9175],[19,-42],[-48,1],[-27,76],[42,-30],[14,-5]],[[24133,9250],[-28,-2],[-44,12],[-14,19],[4,48],[47,-19],[23,-26],[12,-32]],[[24191,9284],[-10,-23],[-53,106],[-15,72],[24,0],[26,-97],[28,-58]],[[24063,9437],[3,-24],[-55,51],[-39,45],[-27,41],[11,12],[32,-29],[59,-57],[16,-39]],[[23898,9559],[-15,-7],[-31,28],[-29,50],[4,20],[42,-52],[29,-39]],[[11934,11285],[-19,9],[-51,49],[-37,65],[-13,45],[-8,91]],[[6528,12091],[-8,-29],[-41,2],[-25,12],[-30,24],[-39,8],[-20,26]],[[15798,11856],[23,-22],[14,-51],[32,-52],[36,0],[66,32],[78,14],[62,38],[35,8],[26,22],[40,5]],[[16210,11850],[0,-2],[-1,-50],[0,-124],[0,-64],[-32,-74],[-49,-103]],[[16210,11850],[23,2],[31,18],[38,12],[34,42],[26,0],[2,-33],[-7,-71],[1,-64],[-15,-45],[-20,-131],[-34,-137],[-44,-156],[-60,-179],[-61,-136],[-83,-167],[-71,-99],[-106,-122],[-66,-92],[-77,-148],[-16,-65],[-16,-29]],[[8698,11185],[84,-24],[8,22],[57,9],[77,-33]],[[8920,10898],[-12,-53],[-6,-55],[-19,-52]],[[14341,16451],[-20,-32],[-14,-49]],[[13715,16014],[16,11]],[[14436,18517],[-122,-34],[-69,-85],[11,-75],[-111,-98],[-137,-105],[-52,-172],[50,-86],[68,-68],[-65,-138],[-74,-29],[-27,-204],[-40,-115],[-86,12],[-39,-97],[-82,-5],[-23,115],[-59,139],[-54,172]],[[13952,17465],[-50,-102],[5,-46],[55,141],[-10,7]],[[14115,17535],[1,4],[-19,0],[-5,-6],[-27,-2],[-40,-46],[4,-19],[-5,-15],[8,-20],[-6,-27],[15,4],[10,26],[18,9],[-1,12],[18,8],[3,9],[-12,0],[-2,25],[40,38]],[[14220,18251],[-3,-6],[1,-8],[-8,-15],[9,-1],[10,16],[7,14],[-16,0]],[[15015,7190],[-15,-54],[-41,-13],[-43,66],[0,43],[19,46],[7,35],[20,9],[36,-22]],[[15292,14687],[-6,94],[17,50]],[[15303,14831],[19,26],[19,28],[4,68],[23,-24],[78,34],[38,-23],[58,1],[82,45],[38,-2],[81,19]],[[12876,11207],[-57,-27]],[[20007,11944],[-64,56],[-60,-2],[10,96],[-62,0],[-6,-135],[-38,-178],[-23,-108],[5,-89],[46,-3],[29,-111],[12,-107],[40,-69],[43,-15],[37,-63]],[[19830,11246],[-28,46],[-12,61],[-38,68],[-33,59],[-12,-72],[-14,68],[8,76],[21,117]],[[17546,14993],[40,123],[-15,92],[-52,29],[18,53],[60,-6],[33,68],[23,78],[94,29],[-14,-57],[9,-34],[29,3]],[[16562,14999],[-13,86],[10,129],[-55,41],[18,83],[-47,7],[15,104],[67,-31],[63,40],[-52,73],[-20,70],[-57,-31],[-8,-90],[-22,79]],[[16707,15501],[79,2],[-12,61],[61,42],[60,71],[95,-64],[8,-97],[27,-25],[77,5],[24,-22],[34,-126],[82,-84],[45,-58],[74,-60],[94,-52],[-2,-75]],[[21592,9370],[8,28],[61,28],[50,4],[22,15],[26,-15],[-25,-33],[-74,-53],[-60,-35]],[[8377,11771],[41,15],[15,-4],[-3,-92],[-60,-13],[-12,11],[20,33],[-1,50]],[[13340,14969],[77,49],[50,-15],[-2,-62],[60,45],[5,-23],[-36,-60],[0,-57],[25,-30],[-10,-106],[-46,-61],[13,-67],[37,-2],[18,-58],[27,-19]],[[15303,14831],[-26,56],[27,46],[-43,-11],[-59,28],[-49,-70],[-107,-15],[-58,67],[-76,4],[-17,-51],[-49,-14],[-68,65],[-77,-2],[-42,121],[-51,67],[34,96],[-45,58],[79,116],[108,5],[30,94],[135,-16],[85,79],[83,34],[117,2],[123,-85],[102,-47],[83,18],[61,-10],[83,63]],[[14727,15586],[8,-46],[61,-40],[-13,-29],[-83,-7],[-30,-39],[-60,-65],[-22,56],[1,26]],[[21366,13435],[-43,-195],[-31,-101],[-37,104],[-8,90],[42,120],[57,93],[32,-37],[-12,-74]],[[15520,9885],[-33,-151],[4,-69],[45,-44],[3,-32],[-20,-74],[4,-38],[-5,-58],[25,-76],[30,-120],[26,-28]],[[15064,9329],[-41,36],[-45,21],[-28,20],[-30,31]],[[14897,10317],[25,15],[78,-2],[145,10]],[[15450,16209],[-56,-10],[-48,-40],[-66,-6],[-60,-45],[4,-76],[34,-29],[72,7],[-14,-45],[-77,-21],[-96,-70],[-39,25],[15,57],[-77,36],[12,24],[68,40],[-20,28],[-111,31],[-4,45],[-66,-15],[-26,-67],[-55,-91]],[[8965,6331],[-31,-76],[-80,-68],[-52,24],[-39,-13],[-64,53],[-48,-4],[-43,67]],[[1732,12787],[-10,-21],[-18,18],[2,34],[-12,44],[4,13],[12,21],[-5,24],[4,12],[6,-3],[27,-20],[12,-11],[11,-17],[18,-43],[-2,-6],[-27,-26],[-22,-19]],[[1694,12977],[-24,-8],[-12,25],[-8,10],[-1,8],[7,10],[25,-11],[19,-19],[-6,-15]],[[1646,13042],[-2,-13],[-38,4],[5,15],[35,-6]],[[1582,13060],[-3,-7],[-6,2],[-24,4],[-9,27],[-3,5],[19,17],[6,-8],[20,-40]],[[1462,13140],[-8,-12],[-24,22],[4,9],[10,13],[17,-2],[1,-30]],[[7991,15968],[12,-39],[-76,-59],[-73,-42],[-75,-36],[-36,-73],[-12,-28],[-1,-65],[22,-64],[30,-3],[-8,44],[22,-27],[-6,-35],[-47,-19],[-34,2],[-52,-21],[-31,-6],[-41,-6],[-60,-35],[105,22],[21,-23],[-100,-37],[-45,0],[2,16],[-21,-35],[20,-6],[-15,-87],[-51,-94],[-6,31],[-15,7],[-24,30],[15,-65],[18,-22],[1,-47],[-23,-47],[-40,-98],[-6,5],[22,83],[-37,47],[-8,102],[-14,-53],[16,-78],[-47,19],[49,-39],[3,-116],[20,-8],[7,-43],[10,-122],[-45,-91],[-73,-36],[-46,-71],[-35,-8],[-36,-46],[-10,-40],[-78,-79],[-40,-58],[-34,-74],[-11,-86],[13,-85],[24,-104],[31,-87],[1,-52],[33,-142],[-2,-83],[-3,-47],[-18,-74],[-21,-16],[-35,15],[-11,54],[-27,28],[-38,104],[-33,94],[-10,48],[14,81],[-20,67],[-55,102],[-28,19],[-70,-55],[-13,6],[-34,57],[-45,30],[-80,-15],[-63,13],[-54,-8],[-29,-19],[12,-33],[-1,-49],[15,-24],[-13,-16],[-27,18],[-26,-24],[-52,4],[-53,65],[-61,-15],[-51,28],[-44,-9],[-60,-28],[-65,-91],[-70,-53],[-39,-58],[-16,-55],[-1,-85],[4,-58],[13,-41]],[[4451,14430],[-12,62],[-46,70],[-33,14],[-7,36],[-40,6],[-26,33],[-65,12],[-18,20],[-8,67],[-69,123],[-59,169],[2,28],[-31,41],[-55,103],[-10,99],[-38,66],[16,102],[-2,105],[-23,93],[28,116],[8,110],[9,111],[-13,164],[-22,105],[-21,56],[9,24],[102,-41],[38,-116],[17,32],[-11,101],[-24,100]],[[1911,17432],[-71,-47],[-36,32],[-11,57],[64,44],[38,18],[47,-8],[30,-38],[-61,-58]],[[1021,17773],[-43,-19],[-47,23],[-43,33],[70,21],[56,-11],[7,-47]],[[586,18246],[43,-24],[45,13],[57,-32],[69,-16],[-5,-14],[-53,-25],[-54,26],[-27,22],[-63,-7],[-17,11],[5,46]],[[3502,17150],[-39,46],[-62,38],[-21,106],[-91,100],[-38,115],[-67,8],[-113,3],[-83,35],[-147,127],[-68,23],[-123,44],[-98,-11],[-140,56],[-84,52],[-79,-26],[15,-84],[-38,-8],[-82,-26],[-63,-41],[-79,-26],[-10,72],[32,120],[76,37],[-20,31],[-90,-68],[-49,-81],[-102,-87],[52,-60],[-67,-87],[-75,-51],[-71,-37],[-18,-54],[-111,-64],[-22,-57],[-83,-52],[-49,9],[-66,-34],[-72,-41],[-58,-41],[-122,-36],[-11,21],[78,58],[69,37],[75,67],[88,13],[35,50],[98,74],[16,25],[52,43],[13,92],[36,72],[-82,-37],[-23,21],[-38,-45],[-47,62],[-19,-43],[-26,60],[-71,-48],[-44,0],[-6,72],[13,46],[-45,43],[-92,-23],[-60,57],[-48,29],[-1,69],[-54,52],[27,71],[58,68],[25,62],[58,9],[48,-19],[56,58],[52,-10],[54,38],[-13,56],[-40,22],[53,47],[-44,-1],[-74,-27],[-22,-27],[-56,27],[-100,-14],[-104,30],[-30,49],[-90,70],[100,51],[158,61],[59,0],[-10,-62],[149,5],[-57,76],[-87,46],[-51,61],[-68,52],[-97,39],[40,64],[126,4],[89,56],[17,59],[71,58],[70,14],[134,54],[65,-8],[109,66],[107,-26],[51,-56],[32,24],[119,-8],[-4,-28],[109,-20],[72,12],[149,-39],[136,-11],[55,-16],[94,20],[108,-37],[76,-17]],[[7694,11894],[-2,-29],[-42,-14],[24,-55],[-1,-65],[-32,-70],[27,-97],[31,8],[16,88],[-22,43],[-4,93],[88,49],[-10,58],[25,38],[25,-85],[50,-2],[46,-68],[3,-41],[63,-2],[76,14],[41,-56],[54,-15],[40,38],[1,32],[87,7],[85,2],[-61,-37],[25,-57],[56,-9],[54,-60],[11,-98],[37,3],[28,-29]],[[20394,13088],[-95,-104],[-59,-116],[-15,-85],[54,-128],[66,-160],[64,-75],[43,-98],[33,-226],[-10,-215],[-59,-80],[-81,-80],[-58,-101],[-87,-113],[-26,78],[20,82],[-53,69]],[[24628,8445],[-24,-16],[-23,53],[2,33],[45,-70]],[[24575,8631],[12,-98],[-19,16],[-15,-7],[-10,34],[-2,94],[34,-39]],[[16504,12490],[-51,-33],[-14,-54],[-2,-42],[-70,-52],[-114,-57],[-62,-86],[-31,-6],[-22,7],[-41,-51],[-45,-23],[-60,-7],[-18,-6],[-15,-33],[-19,-8],[-11,-32],[-35,2],[-23,-16],[-49,6],[-18,72],[2,67],[-12,35],[-14,91],[-20,50],[14,6],[-7,56],[8,24],[-3,53]],[[14827,7757],[29,-1],[35,-21],[24,15],[37,-12]],[[15069,7189],[-18,-88],[-9,-101],[-18,-55],[-48,-63],[-14,-17],[-30,-62],[-20,-63],[-40,-88],[-80,-125],[-50,-73],[-53,-56],[-74,-48],[-36,-6],[-10,-34],[-43,18],[-35,-23],[-77,23],[-43,-15],[-29,7],[-73,-48],[-60,-20],[-44,-46],[-32,-3],[-30,44],[-24,2],[-30,54],[-4,-17],[-9,33],[0,73],[-23,81],[23,22],[-2,94],[-46,115],[-36,103]],[[13952,6807],[-51,159]],[[14887,8562],[-54,-17],[-40,-49],[-9,-42],[-25,-9],[-61,-101],[-39,-79],[-24,-3],[-23,14],[-79,13]]],"transform":{"scale":[0.014124293785310738,0.00818760487616099],"translate":[-180,-85.609038]},"objects":{"countries1":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"name":"Afghanistan","Alpha-2":"AF"},"id":"AFG"},{"arcs":[[[6,7,8,9]],[[10,11,12]]],"type":"MultiPolygon","properties":{"name":"Angola","Alpha-2":"AO"},"id":"AGO"},{"arcs":[[13,14,15,16,17]],"type":"Polygon","properties":{"name":"Albania","Alpha-2":"AL"},"id":"ALB"},{"arcs":[[18,19,20,21,22]],"type":"Polygon","properties":{"name":"United Arab Emirates","Alpha-2":"AE"},"id":"ARE"},{"arcs":[[[23,24]],[[25,26,27,28,29,30]]],"type":"MultiPolygon","properties":{"name":"Argentina","Alpha-2":"AR"},"id":"ARG"},{"arcs":[[31,32,33,34,35]],"type":"Polygon","properties":{"name":"Armenia","Alpha-2":"AM"},"id":"ARM"},{"arcs":[[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]]],"type":"MultiPolygon","properties":{"name":"Antarctica","Alpha-2":"AQ"},"id":"ATA"},{"arcs":[[44]],"type":"Polygon","properties":{"name":"French Southern and Antarctic Lands","Alpha-2":"TF"},"id":"ATF"},{"arcs":[[[45]],[[46]]],"type":"MultiPolygon","properties":{"name":"Australia","Alpha-2":"AU"},"id":"AUS"},{"arcs":[[47,48,49,50,51,52,53]],"type":"Polygon","properties":{"name":"Austria","Alpha-2":"AT"},"id":"AUT"},{"arcs":[[[54,-35]],[[55,56,57,-33,58,59]]],"type":"MultiPolygon","properties":{"name":"Azerbaijan","Alpha-2":"AZ"},"id":"AZE"},{"arcs":[[60,61,62]],"type":"Polygon","properties":{"name":"Burundi","Alpha-2":"BI"},"id":"BDI"},{"arcs":[[63,64,65,66,67,68]],"type":"Polygon","properties":{"name":"Belgium","Alpha-2":"BE"},"id":"BEL"},{"arcs":[[69,70,71,72,73]],"type":"Polygon","properties":{"name":"Benin","Alpha-2":"BJ"},"id":"BEN"},{"arcs":[[74,75,76,-72,77,78]],"type":"Polygon","properties":{"name":"Burkina Faso","Alpha-2":"BF"},"id":"BFA"},{"arcs":[[79,80,81]],"type":"Polygon","properties":{"name":"Bangladesh","Alpha-2":"BD"},"id":"BGD"},{"arcs":[[82,83,84,85,86,87]],"type":"Polygon","properties":{"name":"Bulgaria","Alpha-2":"BG"},"id":"BGR"},{"arcs":[[[88]],[[89]],[[90]]],"type":"MultiPolygon","properties":{"name":"The Bahamas","Alpha-2":"BS"},"id":"BHS"},{"arcs":[[91,92,93]],"type":"Polygon","properties":{"name":"Bosnia and Herzegovina","Alpha-2":"BA"},"id":"BIH"},{"arcs":[[94,95,96,97,98]],"type":"Polygon","properties":{"name":"Belarus","Alpha-2":"BY"},"id":"BLR"},{"arcs":[[99,100,101]],"type":"Polygon","properties":{"name":"Belize","Alpha-2":"BZ"},"id":"BLZ"},{"arcs":[[102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119]],"type":"Polygon","properties":{"name":"Bermuda","Alpha-2":"BM"},"id":"BMU"},{"arcs":[[120,121,122,123,-31]],"type":"Polygon","properties":{"name":"Bolivia","Alpha-2":"BO"},"id":"BOL"},{"arcs":[[-27,124,-123,125,126,127,128,129,130,131,132]],"type":"Polygon","properties":{"name":"Brazil","Alpha-2":"BR"},"id":"BRA"},{"arcs":[[133,134]],"type":"Polygon","properties":{"name":"Brunei","Alpha-2":"BN"},"id":"BRN"},{"arcs":[[135,136]],"type":"Polygon","properties":{"name":"Bhutan","Alpha-2":"BT"},"id":"BTN"},{"arcs":[[137,138,139,140]],"type":"Polygon","properties":{"name":"Botswana","Alpha-2":"BW"},"id":"BWA"},{"arcs":[[141,142,143,144,145,146,147]],"type":"Polygon","properties":{"name":"Central African Republic","Alpha-2":"CF"},"id":"CAF"},{"arcs":[[[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]]],"type":"MultiPolygon","properties":{"name":"Canada","Alpha-2":"CA"},"id":"CAN"},{"arcs":[[-51,181,182,183]],"type":"Polygon","properties":{"name":"Switzerland","Alpha-2":"CH"},"id":"CHE"},{"arcs":[[[-24,184]],[[-30,185,186,187,-121]]],"type":"MultiPolygon","properties":{"name":"Chile","Alpha-2":"CL"},"id":"CHL"},{"arcs":[[[188]],[[189,190,191,192,193,194,195,-137,196,197,198,199,-4,200,201,202,203,204,205]]],"type":"MultiPolygon","properties":{"name":"China","Alpha-2":"CN"},"id":"CHN"},{"arcs":[[206,207,208,209,-75,210]],"type":"Polygon","properties":{"name":"Ivory Coast","Alpha-2":"CI"},"id":"CIV"},{"arcs":[[211,212,213,214,215,216,-148,217]],"type":"Polygon","properties":{"name":"Cameroon","Alpha-2":"CM"},"id":"CMR"},{"arcs":[[218,219,-61,220,221,-10,222,-13,223,-146,224,225]],"type":"Polygon","properties":{"name":"Democratic Republic of the Congo","Alpha-2":"CD"},"id":"COD"},{"arcs":[[-12,226,227,-218,-147,-224]],"type":"Polygon","properties":{"name":"Republic of the Congo","Alpha-2":"CG"},"id":"COG"},{"arcs":[[228,229,230,231,232,-127,233]],"type":"Polygon","properties":{"name":"Colombia","Alpha-2":"CO"},"id":"COL"},{"arcs":[[234,235,236,237]],"type":"Polygon","properties":{"name":"Costa Rica","Alpha-2":"CR"},"id":"CRI"},{"arcs":[[238]],"type":"Polygon","properties":{"name":"Cuba","Alpha-2":"CU"},"id":"CUB"},{"arcs":[[239,240]],"type":"Polygon","properties":{"name":"Northern Cyprus","Alpha-2":null},"id":"-99"},{"arcs":[[241,-241]],"type":"Polygon","properties":{"name":"Cyprus","Alpha-2":"CY"},"id":"CYP"},{"arcs":[[-53,242,243,244]],"type":"Polygon","properties":{"name":"Czech Republic","Alpha-2":"CZ"},"id":"CZE"},{"arcs":[[245,246,-243,-52,-184,247,248,-65,249,250,251]],"type":"Polygon","properties":{"name":"Germany","Alpha-2":"DE"},"id":"DEU"},{"arcs":[[252,253,254,255]],"type":"Polygon","properties":{"name":"Djibouti","Alpha-2":"DJ"},"id":"DJI"},{"arcs":[[[256]],[[-252,257]]],"type":"MultiPolygon","properties":{"name":"Denmark","Alpha-2":"DK"},"id":"DNK"},{"arcs":[[258,259]],"type":"Polygon","properties":{"name":"Dominican Republic","Alpha-2":"DO"},"id":"DOM"},{"arcs":[[260,261,262,263,264,265,266,267]],"type":"Polygon","properties":{"name":"Algeria","Alpha-2":"DZ"},"id":"DZA"},{"arcs":[[268,-229,269]],"type":"Polygon","properties":{"name":"Ecuador","Alpha-2":"EC"},"id":"ECU"},{"arcs":[[270,271,272,273,274]],"type":"Polygon","properties":{"name":"Egypt","Alpha-2":"EG"},"id":"EGY"},{"arcs":[[275,276,277,-256]],"type":"Polygon","properties":{"name":"Eritrea","Alpha-2":"ER"},"id":"ERI"},{"arcs":[[278,279,280,281]],"type":"Polygon","properties":{"name":"Spain","Alpha-2":"ES"},"id":"ESP"},{"arcs":[[282,283,284]],"type":"Polygon","properties":{"name":"Estonia","Alpha-2":"EE"},"id":"EST"},{"arcs":[[-276,-255,285,286,287,288,289,290]],"type":"Polygon","properties":{"name":"Ethiopia","Alpha-2":"ET"},"id":"ETH"},{"arcs":[[291,292,293,294]],"type":"Polygon","properties":{"name":"Finland","Alpha-2":"FI"},"id":"FIN"},{"arcs":[[[295]],[[296]],[[297]]],"type":"MultiPolygon","properties":{"name":"Fiji","Alpha-2":"FJ"},"id":"FJI"},{"arcs":[[298]],"type":"Polygon","properties":{"name":"Falkland Islands","Alpha-2":"FK"},"id":"FLK"},{"arcs":[[[299]],[[300,-248,-183,301,302,-280,303,-67]]],"type":"MultiPolygon","properties":{"name":"France","Alpha-2":"FR"},"id":"FRA"},{"arcs":[[304,305,-212,-228]],"type":"Polygon","properties":{"name":"Gabon","Alpha-2":"GA"},"id":"GAB"},{"arcs":[[[306,307]],[[308,309]]],"type":"MultiPolygon","properties":{"name":"United Kingdom","Alpha-2":"GB"},"id":"GBR"},{"arcs":[[310,311,-59,-32,312]],"type":"Polygon","properties":{"name":"Georgia","Alpha-2":"GE"},"id":"GEO"},{"arcs":[[313,-211,-79,314]],"type":"Polygon","properties":{"name":"Ghana","Alpha-2":"GH"},"id":"GHA"},{"arcs":[[315,316,317,318,319,320,-209]],"type":"Polygon","properties":{"name":"Guinea","Alpha-2":"GN"},"id":"GIN"},{"arcs":[[321,322]],"type":"Polygon","properties":{"name":"Gambia","Alpha-2":"GM"},"id":"GMB"},{"arcs":[[323,324,-319]],"type":"Polygon","properties":{"name":"Guinea Bissau","Alpha-2":"GW"},"id":"GNB"},{"arcs":[[325,-213,-306]],"type":"Polygon","properties":{"name":"Equatorial Guinea","Alpha-2":"GQ"},"id":"GNQ"},{"arcs":[[[326]],[[327,-14,328,-86,329]]],"type":"MultiPolygon","properties":{"name":"Greece","Alpha-2":"GR"},"id":"GRC"},{"arcs":[[330]],"type":"Polygon","properties":{"name":"Greenland","Alpha-2":"GL"},"id":"GRL"},{"arcs":[[331,332,-102,333,334,335]],"type":"Polygon","properties":{"name":"Guatemala","Alpha-2":"GT"},"id":"GTM"},{"arcs":[[336,337,338,-131]],"type":"Polygon","properties":{"name":"French Guiana","Alpha-2":"GF"},"id":"GUF"},{"arcs":[[339,340,-129,341]],"type":"Polygon","properties":{"name":"Guyana","Alpha-2":"GY"},"id":"GUY"},{"arcs":[[342,343,-335,344,345]],"type":"Polygon","properties":{"name":"Honduras","Alpha-2":"HN"},"id":"HND"},{"arcs":[[346,-94,347,348,349,350]],"type":"Polygon","properties":{"name":"Croatia","Alpha-2":"HR"},"id":"HRV"},{"arcs":[[-260,351]],"type":"Polygon","properties":{"name":"Haiti","Alpha-2":"HT"},"id":"HTI"},{"arcs":[[-48,352,353,354,355,-351,356]],"type":"Polygon","properties":{"name":"Hungary","Alpha-2":"HU"},"id":"HUN"},{"arcs":[[[357]],[[358,359]],[[360]],[[361]],[[362]],[[363]],[[364]],[[365]],[[366,367]],[[368]],[[369]],[[370,371]],[[372]]],"type":"MultiPolygon","properties":{"name":"Indonesia","Alpha-2":"ID"},"id":"IDN"},{"arcs":[[-199,373,-197,-136,-196,374,-82,375,376]],"type":"Polygon","properties":{"name":"India","Alpha-2":"IN"},"id":"IND"},{"arcs":[[377,-307]],"type":"Polygon","properties":{"name":"Ireland","Alpha-2":"IE"},"id":"IRL"},{"arcs":[[378,-6,379,380,381,382,-55,-34,-58,383]],"type":"Polygon","properties":{"name":"Iran","Alpha-2":"IR"},"id":"IRN"},{"arcs":[[-382,384,385,386,387,388,389]],"type":"Polygon","properties":{"name":"Iraq","Alpha-2":"IQ"},"id":"IRQ"},{"arcs":[[390]],"type":"Polygon","properties":{"name":"Iceland","Alpha-2":"IS"},"id":"ISL"},{"arcs":[[391,392,393,-274,394,395,396]],"type":"Polygon","properties":{"name":"Israel","Alpha-2":"IL"},"id":"ISR"},{"arcs":[[[397]],[[398]],[[399,400,-302,-182,-50]]],"type":"MultiPolygon","properties":{"name":"Italy","Alpha-2":"IT"},"id":"ITA"},{"arcs":[[401]],"type":"Polygon","properties":{"name":"Jamaica","Alpha-2":"JM"},"id":"JAM"},{"arcs":[[-392,402,-388,403,404,-394,405]],"type":"Polygon","properties":{"name":"Jordan","Alpha-2":"JO"},"id":"JOR"},{"arcs":[[[406]],[[407]],[[408]]],"type":"MultiPolygon","properties":{"name":"Japan","Alpha-2":"JP"},"id":"JPN"},{"arcs":[[409,410,411,412,-203,413]],"type":"Polygon","properties":{"name":"Kazakhstan","Alpha-2":"KZ"},"id":"KAZ"},{"arcs":[[414,415,416,417,-288,418]],"type":"Polygon","properties":{"name":"Kenya","Alpha-2":"KE"},"id":"KEN"},{"arcs":[[-414,-202,419,420]],"type":"Polygon","properties":{"name":"Kyrgyzstan","Alpha-2":"KG"},"id":"KGZ"},{"arcs":[[421,422,423,424]],"type":"Polygon","properties":{"name":"Cambodia","Alpha-2":"KH"},"id":"KHM"},{"arcs":[[425,426]],"type":"Polygon","properties":{"name":"South Korea","Alpha-2":"KR"},"id":"KOR"},{"arcs":[[-17,427,428,429]],"type":"Polygon","properties":{"name":"Kosovo","Alpha-2":null},"id":"CS-KM"},{"arcs":[[430,431,-386]],"type":"Polygon","properties":{"name":"Kuwait","Alpha-2":"KW"},"id":"KWT"},{"arcs":[[432,433,-194,434,-423]],"type":"Polygon","properties":{"name":"Laos","Alpha-2":"LA"},"id":"LAO"},{"arcs":[[-396,435,436]],"type":"Polygon","properties":{"name":"Lebanon","Alpha-2":"LB"},"id":"LBN"},{"arcs":[[437,438,-316,-208]],"type":"Polygon","properties":{"name":"Liberia","Alpha-2":"LR"},"id":"LBR"},{"arcs":[[439,-268,440,441,-272,442,443]],"type":"Polygon","properties":{"name":"Libya","Alpha-2":"LY"},"id":"LBY"},{"arcs":[[444]],"type":"Polygon","properties":{"name":"Sri Lanka","Alpha-2":"LK"},"id":"LKA"},{"arcs":[[445]],"type":"Polygon","properties":{"name":"Lesotho","Alpha-2":"LS"},"id":"LSO"},{"arcs":[[446,447,448,-95,449]],"type":"Polygon","properties":{"name":"Lithuania","Alpha-2":"LT"},"id":"LTU"},{"arcs":[[-249,-301,-66]],"type":"Polygon","properties":{"name":"Luxembourg","Alpha-2":"LU"},"id":"LUX"},{"arcs":[[450,-285,451,-96,-449]],"type":"Polygon","properties":{"name":"Latvia","Alpha-2":"LV"},"id":"LVA"},{"arcs":[[-265,452,453,454]],"type":"Polygon","properties":{"name":"Morocco","Alpha-2":"MA"},"id":"MAR"},{"arcs":[[455,456]],"type":"Polygon","properties":{"name":"Moldova","Alpha-2":"MD"},"id":"MDA"},{"arcs":[[457]],"type":"Polygon","properties":{"name":"Madagascar","Alpha-2":"MG"},"id":"MDG"},{"arcs":[[-100,-333,458,459,460]],"type":"Polygon","properties":{"name":"Mexico","Alpha-2":"MX"},"id":"MEX"},{"arcs":[[-430,461,-87,-329,-18]],"type":"Polygon","properties":{"name":"Macedonia","Alpha-2":"MK"},"id":"MKD"},{"arcs":[[462,-262,463,-76,-210,-321,464]],"type":"Polygon","properties":{"name":"Mali","Alpha-2":"ML"},"id":"MLI"},{"arcs":[[[465]],[[466]]],"type":"MultiPolygon","properties":{"name":"Malta","Alpha-2":"MT"},"id":"MLT"},{"arcs":[[467,-80,-375,-195,-434,468]],"type":"Polygon","properties":{"name":"Myanmar","Alpha-2":"MM"},"id":"MMR"},{"arcs":[[-16,469,-348,-93,470,-428]],"type":"Polygon","properties":{"name":"Montenegro","Alpha-2":"ME"},"id":"MNE"},{"arcs":[[471,-205]],"type":"Polygon","properties":{"name":"Mongolia","Alpha-2":"MN"},"id":"MNG"},{"arcs":[[472,473,474,475,476,477,478,479]],"type":"Polygon","properties":{"name":"Mozambique","Alpha-2":"MZ"},"id":"MOZ"},{"arcs":[[480,481,482,-263,-463]],"type":"Polygon","properties":{"name":"Mauritania","Alpha-2":"MR"},"id":"MRT"},{"arcs":[[-480,483,484]],"type":"Polygon","properties":{"name":"Malawi","Alpha-2":"MW"},"id":"MWI"},{"arcs":[[[485,486]],[[-371,487,-135,488]]],"type":"MultiPolygon","properties":{"name":"Malaysia","Alpha-2":"MY"},"id":"MYS"},{"arcs":[[489,-8,490,-139,491]],"type":"Polygon","properties":{"name":"Namibia","Alpha-2":"NA"},"id":"NAM"},{"arcs":[[492]],"type":"Polygon","properties":{"name":"New Caledonia","Alpha-2":"NC"},"id":"NCL"},{"arcs":[[-77,-464,-261,-440,493,-216,494,-73]],"type":"Polygon","properties":{"name":"Niger","Alpha-2":"NE"},"id":"NER"},{"arcs":[[495,-74,-495,-215]],"type":"Polygon","properties":{"name":"Nigeria","Alpha-2":"NG"},"id":"NGA"},{"arcs":[[496,-346,497,-236]],"type":"Polygon","properties":{"name":"Nicaragua","Alpha-2":"NI"},"id":"NIC"},{"arcs":[[-250,-64,-69,498]],"type":"Polygon","properties":{"name":"Netherlands","Alpha-2":"NL"},"id":"NLD"},{"arcs":[[[-295,499,500,501]],[[502]],[[503]],[[504]]],"type":"MultiPolygon","properties":{"name":"Norway","Alpha-2":"NO"},"id":"NOR"},{"arcs":[[-374,-198]],"type":"Polygon","properties":{"name":"Nepal","Alpha-2":"NP"},"id":"NPL"},{"arcs":[[[505]],[[506]]],"type":"MultiPolygon","properties":{"name":"New Zealand","Alpha-2":"NZ"},"id":"NZL"},{"arcs":[[[507,508,-22,509]],[[-20,510]]],"type":"MultiPolygon","properties":{"name":"Oman","Alpha-2":"OM"},"id":"OMN"},{"arcs":[[-200,-377,511,-380,-5]],"type":"Polygon","properties":{"name":"Pakistan","Alpha-2":"PK"},"id":"PAK"},{"arcs":[[512,-238,513,-231]],"type":"Polygon","properties":{"name":"Panama","Alpha-2":"PA"},"id":"PAN"},{"arcs":[[-188,514,-270,-234,-126,-122]],"type":"Polygon","properties":{"name":"Peru","Alpha-2":"PE"},"id":"PER"},{"arcs":[[[515]],[[516]],[[517]],[[518]],[[519]],[[520]],[[521]]],"type":"MultiPolygon","properties":{"name":"Philippines","Alpha-2":"PH"},"id":"PHL"},{"arcs":[[[522]],[[523]],[[-367,524]],[[525]]],"type":"MultiPolygon","properties":{"name":"Papua New Guinea","Alpha-2":"PG"},"id":"PNG"},{"arcs":[[-247,526,527,-450,-99,528,529,-244]],"type":"Polygon","properties":{"name":"Poland","Alpha-2":"PL"},"id":"POL"},{"arcs":[[530]],"type":"Polygon","properties":{"name":"Puerto Rico","Alpha-2":"PR"},"id":"PRI"},{"arcs":[[531,532,-427,533,-191]],"type":"Polygon","properties":{"name":"North Korea","Alpha-2":"KP"},"id":"PRK"},{"arcs":[[-282,534]],"type":"Polygon","properties":{"name":"Portugal","Alpha-2":"PT"},"id":"PRT"},{"arcs":[[-124,-125,-26]],"type":"Polygon","properties":{"name":"Paraguay","Alpha-2":"PY"},"id":"PRY"},{"arcs":[[535,536]],"type":"Polygon","properties":{"name":"Qatar","Alpha-2":"QA"},"id":"QAT"},{"arcs":[[537,-457,538,539,-83,540,-355]],"type":"Polygon","properties":{"name":"Romania","Alpha-2":"RO"},"id":"ROU"},{"arcs":[[[541]],[[-528,542,-447]],[[543]],[[544]],[[545]],[[546]],[[547]],[[548]],[[549]],[[-190,-206,-472,-204,-413,550,-56,-60,-312,551,552,-97,-452,-284,553,-292,-502,554,-532]],[[555]],[[556]],[[557]]],"type":"MultiPolygon","properties":{"name":"Russia","Alpha-2":"RU"},"id":"RUS"},{"arcs":[[558,-62,-220,559]],"type":"Polygon","properties":{"name":"Rwanda","Alpha-2":"RW"},"id":"RWA"},{"arcs":[[-453,-264,-483,560,-454]],"type":"Polygon","properties":{"name":"Western Sahara","Alpha-2":"EH"},"id":"ESH"},{"arcs":[[561,-404,-387,-432,562,-537,563,-23,-509,564]],"type":"Polygon","properties":{"name":"Saudi Arabia","Alpha-2":"SA"},"id":"SAU"},{"arcs":[[565,566,-143,567,-443,-271,568,-277,-291,569]],"type":"Polygon","properties":{"name":"Sudan","Alpha-2":"SD"},"id":"SDN"},{"arcs":[[570,-289,-418,571,-225,-145,572,-566]],"type":"Polygon","properties":{"name":"South Sudan","Alpha-2":null},"id":"SSD"},{"arcs":[[573,-481,-465,-320,-325,574,-323]],"type":"Polygon","properties":{"name":"Senegal","Alpha-2":"SN"},"id":"SEN"},{"arcs":[[[575]],[[576]],[[577]],[[578]],[[579]]],"type":"MultiPolygon","properties":{"name":"Solomon Islands","Alpha-2":"SB"},"id":"SLB"},{"arcs":[[580,-317,-439]],"type":"Polygon","properties":{"name":"Sierra Leone","Alpha-2":"SL"},"id":"SLE"},{"arcs":[[581,-336,-344]],"type":"Polygon","properties":{"name":"El Salvador","Alpha-2":"SV"},"id":"SLV"},{"arcs":[[-286,-254,582,583]],"type":"Polygon","properties":{"name":"Somaliland","Alpha-2":null},"id":"-99"},{"arcs":[[-419,-287,-584,584]],"type":"Polygon","properties":{"name":"Somalia","Alpha-2":"SO"},"id":"SOM"},{"arcs":[[-88,-462,-429,-471,-92,-347,-356,-541]],"type":"Polygon","properties":{"name":"Republic of Serbia","Alpha-2":"RS"},"id":"SRB"},{"arcs":[[585,-338,586,-130,-341]],"type":"Polygon","properties":{"name":"Suriname","Alpha-2":"SR"},"id":"SUR"},{"arcs":[[-530,587,-353,-54,-245]],"type":"Polygon","properties":{"name":"Slovakia","Alpha-2":"SK"},"id":"SVK"},{"arcs":[[-49,-357,-350,588,-400]],"type":"Polygon","properties":{"name":"Slovenia","Alpha-2":"SI"},"id":"SVN"},{"arcs":[[-500,-294,589],[590],[591],[592]],"type":"Polygon","properties":{"name":"Sweden","Alpha-2":"SE"},"id":"SWE"},{"arcs":[[593,-476]],"type":"Polygon","properties":{"name":"Swaziland","Alpha-2":"SZ"},"id":"SWZ"},{"arcs":[[-403,-397,-437,594,595,-389]],"type":"Polygon","properties":{"name":"Syria","Alpha-2":"SY"},"id":"SYR"},{"arcs":[[-494,-444,-568,-142,-217]],"type":"Polygon","properties":{"name":"Chad","Alpha-2":"TD"},"id":"TCD"},{"arcs":[[596,-315,-78,-71]],"type":"Polygon","properties":{"name":"Togo","Alpha-2":"TG"},"id":"TGO"},{"arcs":[[597,-487,598,-469,-433,-422]],"type":"Polygon","properties":{"name":"Thailand","Alpha-2":"TH"},"id":"THA"},{"arcs":[[-420,-201,-3,599]],"type":"Polygon","properties":{"name":"Tajikistan","Alpha-2":"TJ"},"id":"TJK"},{"arcs":[[-379,600,-411,601,-1]],"type":"Polygon","properties":{"name":"Turkmenistan","Alpha-2":"TM"},"id":"TKM"},{"arcs":[[602,-359]],"type":"Polygon","properties":{"name":"East Timor","Alpha-2":"TL"},"id":"TLS"},{"arcs":[[603]],"type":"Polygon","properties":{"name":"Trinidad and Tobago","Alpha-2":"TT"},"id":"TTO"},{"arcs":[[-267,604,-441]],"type":"Polygon","properties":{"name":"Tunisia","Alpha-2":"TN"},"id":"TUN"},{"arcs":[[[-313,-36,-383,-390,-596,605]],[[-330,-85,606]]],"type":"MultiPolygon","properties":{"name":"Turkey","Alpha-2":"TR"},"id":"TUR"},{"arcs":[[607]],"type":"Polygon","properties":{"name":"Taiwan","Alpha-2":"TW"},"id":"TWN"},{"arcs":[[-416,608,-473,-485,609,-221,-63,-559,610]],"type":"Polygon","properties":{"name":"United Republic of Tanzania","Alpha-2":"TZ"},"id":"TZA"},{"arcs":[[-560,-219,-226,-572,-417,-611]],"type":"Polygon","properties":{"name":"Uganda","Alpha-2":"UG"},"id":"UGA"},{"arcs":[[-553,611,-539,-456,-538,-354,-588,-529,-98]],"type":"Polygon","properties":{"name":"Ukraine","Alpha-2":"UA"},"id":"UKR"},{"arcs":[[-133,612,-28]],"type":"Polygon","properties":{"name":"Uruguay","Alpha-2":"UY"},"id":"URY"},{"arcs":[[[613]],[[614]],[[615]],[[616]],[[617]],[[618,-460,619,-159]],[[620]],[[621]],[[622]],[[-161,623]]],"type":"MultiPolygon","properties":{"name":"United States of America","Alpha-2":"US"},"id":"USA"},{"arcs":[[-602,-410,-421,-600,-2]],"type":"Polygon","properties":{"name":"Uzbekistan","Alpha-2":"UZ"},"id":"UZB"},{"arcs":[[624,-342,-128,-233]],"type":"Polygon","properties":{"name":"Venezuela","Alpha-2":"VE"},"id":"VEN"},{"arcs":[[625,-424,-435,-193]],"type":"Polygon","properties":{"name":"Vietnam","Alpha-2":"VN"},"id":"VNM"},{"arcs":[[[626]],[[627]]],"type":"MultiPolygon","properties":{"name":"Vanuatu","Alpha-2":"VU"},"id":"VUT"},{"arcs":[[-406,-393]],"type":"Polygon","properties":{"name":"West Bank","Alpha-2":"PS"},"id":"PSE"},{"arcs":[[628,-565,-508]],"type":"Polygon","properties":{"name":"Yemen","Alpha-2":"YE"},"id":"YEM"},{"arcs":[[-492,-138,629,-477,-594,-475,630,631],[-446]],"type":"Polygon","properties":{"name":"South Africa","Alpha-2":"ZA"},"id":"ZAF"},{"arcs":[[-484,-479,632,-140,-491,-7,-222,-610]],"type":"Polygon","properties":{"name":"Zambia","Alpha-2":"ZM"},"id":"ZMB"},{"arcs":[[-630,-141,-633,-478]],"type":"Polygon","properties":{"name":"Zimbabwe","Alpha-2":"ZW"},"id":"ZWE"}]}}} \ No newline at end of file diff --git a/samples/highcharts/studies/projection/demo.html b/samples/highcharts/studies/projection/demo.html index 15fe68781b9..6d0a4147c5a 100644 --- a/samples/highcharts/studies/projection/demo.html +++ b/samples/highcharts/studies/projection/demo.html @@ -1,11 +1,10 @@ - - + diff --git a/samples/highcharts/studies/projection/demo.js b/samples/highcharts/studies/projection/demo.js index 4540531150b..97bdeb8ab46 100644 --- a/samples/highcharts/studies/projection/demo.js +++ b/samples/highcharts/studies/projection/demo.js @@ -6,8 +6,9 @@ delete window.d3; delete window.proj4; // Get random data for this sample -function getRandomData(geojson) { - return geojson.features.map(() => Math.round(Math.random() * 100)); +function getRandomData(topology) { + return topology.objects.default.geometries.map(() => + Math.round(Math.random() * 100)); } function getGraticule() { @@ -49,7 +50,7 @@ function getGraticule() { } const static = { - geojson: undefined, + topology: undefined, data: undefined }; @@ -57,9 +58,7 @@ let chart; const drawMap = projectionKey => { - const geojson = JSON.parse(static.geojson); - - // geojson.features = geojson.features.filter(f => f.properties.name === 'Antarctica'); + const topology = JSON.parse(static.topology); // Apply projection using Proj4 const projection = Highcharts.merge({ @@ -136,7 +135,7 @@ const drawMap = projectionKey => { chart = Highcharts.mapChart('container', { chart: { - map: geojson + map: topology }, title: { @@ -376,21 +375,12 @@ const enableInputs = () => { }; Highcharts.getJSON( - 'https://cdn.jsdelivr.net/gh/highcharts/highcharts@2e11000c966a20f08afc4e0927b91df99821de99/samples/data/world-countries.topo.json', + 'https://code.highcharts.com/mapdata/custom/world.topo.json', topology => { - // Convert the topoJSON feature into geoJSON - const geojson = window.topojson.feature( - topology, - // For this demo, get the first of the named objects - topology.objects[Object.keys(topology.objects)[0]] - ); - geojson.copyrightUrl = topology.copyrightUrl; - geojson.copyrightShort = topology.copyrightShort; - - const data = getRandomData(geojson); + const data = getRandomData(topology); - static.geojson = JSON.stringify(geojson); + static.topology = JSON.stringify(topology); static.data = data; drawMap('equalearth'); diff --git a/samples/maps/chart/topojson/demo.html b/samples/maps/chart/topojson/demo.html index 18ac85d58a5..1fa46899d9f 100644 --- a/samples/maps/chart/topojson/demo.html +++ b/samples/maps/chart/topojson/demo.html @@ -1,9 +1,5 @@ - - - - diff --git a/samples/maps/chart/topojson/demo.js b/samples/maps/chart/topojson/demo.js index c42b3c42c9e..6727895a3a1 100644 --- a/samples/maps/chart/topojson/demo.js +++ b/samples/maps/chart/topojson/demo.js @@ -1,24 +1,14 @@ -// Source: https://github.com/leakyMirror/map-of-europe Highcharts.getJSON( - 'https://cdn.jsdelivr.net/gh/highcharts/highcharts@v9.2.0/samples/data/europe.topo.json', + 'https://code.highcharts.com/mapdata/custom/europe.topo.json', topology => { - // Convert the topoJSON feature into geoJSON - const geojson = window.topojson.feature( - topology, - // For this demo, get the first of the named objects - topology.objects[Object.keys(topology.objects)[0]] - ); - geojson.copyrightUrl = 'https://github.com/leakyMirror/map-of-europe'; - geojson.copyrightShort = 'leakyMirror'; - - // Create a dummy data value for each feature - const data = geojson.features.map((f, i) => i % 5); + // Create a dummy data value for each geometry + const data = topology.objects.default.geometries.map((f, i) => i % 5); // Initialize the chart Highcharts.mapChart('container', { chart: { - map: geojson + map: topology }, title: { @@ -28,7 +18,7 @@ Highcharts.getJSON( mapView: { projection: { name: 'Orthographic', - rotation: [-15, -40] + rotation: [-12, -40] } }, @@ -38,10 +28,6 @@ Highcharts.getJSON( maxColor: '#900037' }, - tooltip: { - pointFormat: '{point.properties.NAME}: {point.value}' - }, - series: [{ data, joinBy: null, @@ -53,7 +39,7 @@ Highcharts.getJSON( }, dataLabels: { enabled: true, - format: '{point.properties.NAME}' + format: '{point.name}' } }] }); diff --git a/samples/maps/demo/topojson-projection/demo.html b/samples/maps/demo/topojson-projection/demo.html index f53d082d25f..cc9b15cee43 100644 --- a/samples/maps/demo/topojson-projection/demo.html +++ b/samples/maps/demo/topojson-projection/demo.html @@ -1,5 +1,4 @@ - @@ -7,7 +6,7 @@

- Map showing how a TopoJSON source file is handled and how the built-in + Map showing how a TopoJSON map source is handled and how the built-in orthographic projection is used.

diff --git a/samples/maps/demo/topojson-projection/demo.js b/samples/maps/demo/topojson-projection/demo.js index 88ef183ed06..c6ee04c9815 100644 --- a/samples/maps/demo/topojson-projection/demo.js +++ b/samples/maps/demo/topojson-projection/demo.js @@ -1012,21 +1012,12 @@ const afterAnimate = e => { Highcharts.getJSON( - 'https://cdn.jsdelivr.net/gh/highcharts/highcharts@2e11000c966a20f08afc4e0927b91df99821de99/samples/data/world-countries.topo.json', + 'https://code.highcharts.com/mapdata/custom/world.topo.json', topology => { - // Convert the topoJSON feature into geoJSON - const geojson = window.topojson.feature( - topology, - // For this demo, get the first of the named objects - topology.objects[Object.keys(topology.objects)[0]] - ); - geojson.copyrightUrl = topology.copyrightUrl; - geojson.copyrightShort = topology.copyrightShort; - const chart = Highcharts.mapChart('container', { chart: { - map: geojson + map: topology }, title: { diff --git a/samples/maps/series/data-geometry/demo.html b/samples/maps/series/data-geometry/demo.html index 18ac85d58a5..c8915cfe681 100644 --- a/samples/maps/series/data-geometry/demo.html +++ b/samples/maps/series/data-geometry/demo.html @@ -1,7 +1,4 @@ - - - diff --git a/samples/maps/series/data-geometry/demo.js b/samples/maps/series/data-geometry/demo.js index fbad9a71a95..c6b1fb19256 100644 --- a/samples/maps/series/data-geometry/demo.js +++ b/samples/maps/series/data-geometry/demo.js @@ -1,24 +1,14 @@ -// Source: https://github.com/leakyMirror/map-of-europe Highcharts.getJSON( - 'https://cdn.jsdelivr.net/gh/highcharts/highcharts@v9.2.0/samples/data/europe.topo.json', + 'https://code.highcharts.com/mapdata/custom/europe.topo.json', topology => { - // Convert the topoJSON feature into geoJSON - const geojson = window.topojson.feature( - topology, - // For this demo, get the first of the named objects - topology.objects[Object.keys(topology.objects)[0]] - ); - geojson.copyrightUrl = 'https://github.com/leakyMirror/map-of-europe'; - geojson.copyrightShort = 'leakyMirror'; - // Create a dummy data value for each feature - const data = geojson.features.map((f, i) => i % 5); + const data = topology.objects.default.geometries.map((f, i) => i % 5); // Initialize the chart Highcharts.mapChart('container', { chart: { - map: geojson + map: topology }, title: { @@ -28,7 +18,7 @@ Highcharts.getJSON( mapView: { projection: { name: 'Orthographic', - rotation: [-15, -40] + rotation: [-12, -40] } }, @@ -38,10 +28,6 @@ Highcharts.getJSON( maxColor: '#900037' }, - tooltip: { - pointFormat: '{point.properties.NAME}: {point.value}' - }, - series: [{ data, joinBy: null, diff --git a/ts/Extensions/GeoJSON.ts b/ts/Extensions/GeoJSON.ts index 353049eca32..66f2f6397da 100644 --- a/ts/Extensions/GeoJSON.ts +++ b/ts/Extensions/GeoJSON.ts @@ -522,7 +522,6 @@ Chart.prototype.fromLatLonToPoint = function ( // Based on https://github.com/topojson/topojson-specification /* @todo -- Update demos currently using TopoJSON-client - General docs */ const topo2geo = (topology: TopoJSON, objectName?: string): GeoJSON => { From c26e39cc8c7f61fb7e190bcff614a171ce81a2af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torstein=20H=C3=B8nsi?= Date: Sun, 24 Oct 2021 09:25:04 +0200 Subject: [PATCH 04/10] TopoJSON: Docs --- docs/maps/adding-points-and-lines.md | 2 +- docs/maps/custom-geojson-maps.md | 7 ++++++- docs/maps/getting-started.md | 4 ++-- docs/maps/latlon.md | 2 +- docs/maps/map-collection.md | 23 ++++++++++++++--------- docs/maps/map-series.md | 6 +++--- ts/Extensions/GeoJSON.ts | 2 +- 7 files changed, 28 insertions(+), 18 deletions(-) diff --git a/docs/maps/adding-points-and-lines.md b/docs/maps/adding-points-and-lines.md index e55cbe30705..ca242aa9133 100644 --- a/docs/maps/adding-points-and-lines.md +++ b/docs/maps/adding-points-and-lines.md @@ -3,6 +3,6 @@ Adding points and lines Map points and lines are added to the map by coordinates. The coordinate system used in most of our maps is a custom one, where both the X and Y values range from 0 to some thousands. The rationale for not using latitude and longitude coordinates in version 1 of the [Map Collection](https://code.highcharts.com/mapdata/) is partly to save downloading weight, partly to not have to deal with projection on the client side, and partly because many of the maps are composite. For example Alaska is moved into the Pacific next to the US mainland on most US maps, thus Alaska would need its own projection within the same map. With the support of the _proj4js_ library, points can be placed by latitude and longitude. See the [Latitude/longitude](latlon) article. -Since Highcharts v9.3 there is beta support for built-in projections, and points and lines can be added as [geometry](https://api.highcharts.com/highmaps/series.map.data.geometry), like in geoJSON. A new version of the Map Collection is planned (as of 2021), where the maps will be encoded as topoJSON and projection handled internally in Highcharts Maps. +Since Highcharts v9.3 there is beta support for built-in projections, and points and lines can be added as [geometry](https://api.highcharts.com/highmaps/series.map.data.geometry), like in GeoJSON. A new version of the Map Collection is planned (as of 2021), where the maps will be encoded as TopoJSON and projection handled internally in Highcharts Maps. Points are added as x, y pairs on the same coordinate system as the map. Maplines however are given as paths. In order to ease the process of placing your own points on the map, we have created [a utility script](https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/maps/chart/events-click-getcoordinates/) that allows you to click around in the map, then view and copy-paste the coordinates into your own map setup. \ No newline at end of file diff --git a/docs/maps/custom-geojson-maps.md b/docs/maps/custom-geojson-maps.md index 6c60d2e1b7f..24f21353e50 100644 --- a/docs/maps/custom-geojson-maps.md +++ b/docs/maps/custom-geojson-maps.md @@ -5,7 +5,12 @@ This article contains information on creating maps from data in common mapping f We see that many users have map data in ESRI Shapefile format or other common mapping formats. These can easily be converted for use with Highcharts Maps using an editor with GeoJSON exporting capabilities, as Highcharts Maps supports the GeoJSON format natively. Most full-featured GIS editors will be able to perform this conversion. [QGIS](https://qgis.org "QGIS") is a free alternative that supports both Shapefile, KML, and a number of other formats. See [this demo](https://highcharts.com/maps/demo/geojson "GeoJSON demo") for an example of how to load polygonal data from a GeoJSON file, and [this demo](https://highcharts.com/maps/demo/geojson-multiple-types "GeoJSON multiple types demo") for a more complex example with line and point data. -The Highcharts Maps map collection is supplied in both SVG and GeoJSON formats, and can be edited using any compatible editor. Simple changes can be made using a text editor. [InkScape](https://inkscape.org "InkScape") is a free visual editor for SVG files. Please note that different coordinate systems are used in the SVG and GeoJSON files, mainly for optimization reasons. The map collection is also supplied as executable Javascript files. These Javascript files are identical to the GeoJSON files, except for a small amount of wrapping code. +The Highcharts Maps map collection is supplied in both SVG, GeoJSON and TopoJSON formats, and can be edited using any compatible editor. Simple changes can be made using a text editor. [InkScape](https://inkscape.org "InkScape") is a free visual editor for SVG files. The map collection is also supplied as executable JavaScript files. These Javascript files are identical to the GeoJSON files, except for a small amount of wrapping code. + +Please note that different coordinate systems are used in the Map Collection's SVG, GeoJSON and TopoJSON files, mainly for optimization reasons. +- **TopoJSON** files, available since Map Collection v1.1.4, are not projected, meaning coordinates are given as `[longitude, latitude]`. This relies on projection being done in Highcharts, which is more intuitive and allows easier navigation, re-projection, addition of points and lines etc. +- **GeoJSON** files in the Map Collection date back to when projection was not supported natively in Highcharts. The coordinates are pre-projected with the projection given in the `crs` property, in addition to some compression defined in `hc-transform`. In order to deal with longitude and latitude on the client side, the `proj4.js` library must be used. Since v9.3, Highcharts has built-in support for projection, so custom GeoJSON maps may dropp pre-projection. +- **SVG** files don't deal with geographic information at all. In general, these are only recommended for simple choropleth maps. Creating maps for Highcharts Maps -------------------------- diff --git a/docs/maps/getting-started.md b/docs/maps/getting-started.md index d60df1ec61f..3aa72ac99de 100644 --- a/docs/maps/getting-started.md +++ b/docs/maps/getting-started.md @@ -19,7 +19,7 @@ If you already have Highcharts installed in the web page and want to run Highcha Load the map ------------ -Highcharts Maps loads its maps from [GeoJSON](https://en.wikipedia.org/wiki/GeoJSON), an open standard for description of geographic features. Most GIS software supports this format as export from for instance Shapefile or KML export. Read more in the [API reference](https://api.highcharts.com/class-reference/Highcharts.GeoJSON) and [see the live demo](https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/maps/demo/geojson-multiple-types/). +Highcharts Maps loads its maps from [GeoJSON](https://en.wikipedia.org/wiki/GeoJSON) or [TopoJSON](https://github.com/topojson/topojson) which are open standards for description of geographic features. Most GIS software supports these formats as export from for instance Shapefile or KML export. Read more in the [API reference](https://api.highcharts.com/class-reference/Highcharts.GeoJSON) and [see the live demo](https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/maps/demo/geojson-multiple-types/). There are three basic sources for your map: @@ -41,4 +41,4 @@ Add and join data Once the empty map is in place, we're ready to add the data to the [series.data](https://api.highcharts.com/highmaps/series.map.data) option. For the joining to work, each data point must have some identifier that relates to the same identifier in the map data set. This or these identifiers are then specified in the [joinBy](https://api.highcharts.com/highmaps/plotOptions.series.joinBy) option. See detailed documentation and examples there. -Another way to join the data is to simply skip the mapData and set the [path](https://api.highcharts.com/highmaps/series.map.data.path) directly on the data point. This mixes the data and the structure and is not generally recommended, but it performs faster, and may be considered in situations where you have static data and a backend to perform the joining. +Another way to join the data is to simply skip the `mapData` and set the [geometry](https://api.highcharts.com/highmaps/series.map.data.geometry) directly on the data point. This mixes the data and the structure and is not generally recommended, but it performs faster, and may be considered in situations where you have static data and a backend to perform the joining. diff --git a/docs/maps/latlon.md b/docs/maps/latlon.md index ec3f9de2a04..6671d3f9b64 100644 --- a/docs/maps/latlon.md +++ b/docs/maps/latlon.md @@ -5,7 +5,7 @@ Latitude/longitude Highcharts Maps from version 1.1.0 comes with support for latitude/longitude. This feature requires that the [proj4js](http://proj4js.org) library has been loaded before Highcharts Maps. The latest version of the _proj4js_ library can be loaded from [cdnjs](https://cdnjs.com/libraries/proj4js). -Note: since Highcharts v9.3, experimental projection is built in, allowing the use of `lat` and `lon` properties to be handled without the use of proj4js, as well as applying geoJSON-compliant [geometry](https://api.highcharts.com/highmaps/series.data.geometry) configuration to points, maplines and map points directly. +Note: since Highcharts v9.3, experimental projection is built in, allowing the use of `lat` and `lon` properties to be handled without the use of proj4js, as well as applying GeoJSON-compliant [geometry](https://api.highcharts.com/highmaps/series.data.geometry) configuration to points, maplines and map points directly. diff --git a/docs/maps/map-collection.md b/docs/maps/map-collection.md index dfa360b23a4..54f7f9244b0 100644 --- a/docs/maps/map-collection.md +++ b/docs/maps/map-collection.md @@ -1,14 +1,14 @@ Map collection === -For your convenience, Highcharts Maps offers a free [collection of maps](https://code.highcharts.com/mapdata/), optimized for use with Highcharts Maps. For common maps, it saves you the trouble of finding or drawing suitable SVG or GeoJSON maps. Instead, you can choose between hundreds of pre-generated maps of countries, regions and other administration levels. +For your convenience, Highcharts Maps offers a free [collection of maps](https://code.highcharts.com/mapdata/), optimized for use with Highcharts Maps. For common maps, it saves you the trouble of finding or drawing suitable SVG or GeoJSON/TopoJSON maps. Instead, you can choose between hundreds of pre-generated maps of countries, regions and other administration levels. License ------- The Highcharts Maps Map Collection comes with the license of the source data. For Admin0 (countries) and Admin1 (US states, German Bundesländer, Dutch regions etc), the source data is [Natural Earth](https://www.naturalearthdata.com/), which is [Public Domain](https://en.wikipedia.org/wiki/Public_domain). For Admin2, we have only compiled selected countries, and these maps are created from national files with their own license which is specified on the SVG map and in the other format files as meta data. If your country is missing from the list, please contact us and we'll try to find a suitable shapefile and generate more maps.  -For maps loaded using the default GeoJSON input into the mapData option, a short version of the copyright will be printed in the chart's credits label. +For maps loaded using the default TopoJSON or GeoJSON input into the `mapData` option, a short version of the copyright will be printed in the chart's credits label. Using the map collection ------------------------ @@ -37,7 +37,7 @@ map: 'custom/world' ``` 3. Join your data with the map. By default Highcharts Maps is set up to map your data against the `hc-key` property of the map collection, allowing you to define your data like this: -```js +```js data: [['us-ny', 0], ['us-mi', 5], ['us-tx', 3], ['us-ak', 5]] ``` For other data joining options, see the [`series.joinBy`](https://api.highcharts.com/highmaps/plotOptions.series.joinBy) and [`series.keys`](https://api.highcharts.com/highcharts/plotOptions.series.keys) options. @@ -51,18 +51,18 @@ npm i @highcharts/map-collection To load a map in Node.js and use it in Highcharts Maps you can do the following: -```js -var Highcharts = require('highcharts/highmaps.js'), - map = require('@highcharts/map-collection/custom/world.geo.json'); - +```js +const Highcharts = require('highcharts/highmaps.js'), + map = require('@highcharts/map-collection/custom/world.topo.json'); + Highcharts.mapChart('container', { chart: { - map: geojson + map: geojson }, // ... }); ``` - + Map properties -------------- @@ -109,6 +109,11 @@ Using parts of a map If you can't find the exact map that you want in the collection, it is easy to use only selected parts of a larger area. Say you want a comparative map of Canada, USA and Mexico. Since we don't have that exact combination in the collection (as of now), you can use the map called "North America without Central". This map also contains Greenland as well as Caribbean islands. So we apply a data set only for the three countries we want, and set the [allAreas](https://api.highcharts.com/highmaps/plotOptions.map.allAreas) option to false. This option makes sure all null points (the countries that don't have data), are hidden. See [demo on jsFiddle](https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/maps/plotoptions/series-allareas-false/). +Combine maps +____________ + +Another way to approach the same problem, is to combine two or more map sources into the same chart. This is supported since Highcharts v9.3, where client-side projection is available. To achive this, the unprojected TopoJSON maps must be used. See the [demo on jsFiddle](https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/maps/series/mapdata-multiple/). + Modify our maps --------------- diff --git a/docs/maps/map-series.md b/docs/maps/map-series.md index 6f545219fa2..62157e740e4 100644 --- a/docs/maps/map-series.md +++ b/docs/maps/map-series.md @@ -19,11 +19,11 @@ For an overview of the `map` series options see the [API reference](https://api Load the map ------------ -Highcharts Maps loads its maps from GeoJSON. -A more detailed instruction on how to work with it is written here: [Load the map](https://www.highcharts.com/docs/maps/getting-started#load-the-map) +Highcharts Maps loads its maps from TopoJSON or GeoJSON. +A more detailed instruction on how to work with it is written here: [Load the map](https://www.highcharts.com/docs/maps/getting-started#load-the-map) Add and join data ----------------- -In this [link](https://www.highcharts.com/docs/maps/getting-started#add-and-join-data), you can find detailed descriptions of how to work with [series.map.data](https://api.highcharts.com/highmaps/series.map.data), and [series.joinBy](https://api.highcharts.com/highmaps/plotOptions.series.joinBy). +In this [link](https://www.highcharts.com/docs/maps/getting-started#add-and-join-data), you can find detailed descriptions of how to work with [series.map.data](https://api.highcharts.com/highmaps/series.map.data), and [series.joinBy](https://api.highcharts.com/highmaps/plotOptions.series.joinBy). You can also find there another way of joining the data by omitting [mapData](https://api.highcharts.com/highmaps/series.map.mapData) and setting the [path](https://api.highcharts.com/highmaps/series.map.data.path) directly on the data point. \ No newline at end of file diff --git a/ts/Extensions/GeoJSON.ts b/ts/Extensions/GeoJSON.ts index 66f2f6397da..9b41113cb6f 100644 --- a/ts/Extensions/GeoJSON.ts +++ b/ts/Extensions/GeoJSON.ts @@ -522,7 +522,7 @@ Chart.prototype.fromLatLonToPoint = function ( // Based on https://github.com/topojson/topojson-specification /* @todo -- General docs +- See if mapData can take topology directly (mapdata-multiple) */ const topo2geo = (topology: TopoJSON, objectName?: string): GeoJSON => { From d01d07e26a67950b2c64cf682af8f0f01f432306 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torstein=20H=C3=B8nsi?= Date: Sun, 24 Oct 2021 22:55:22 +0200 Subject: [PATCH 05/10] TopoJSON: Docs & demo --- samples/maps/series/mapdata-multiple/demo.js | 6 ++---- ts/Core/Chart/ChartDefaults.ts | 2 +- ts/Extensions/GeoJSON.ts | 12 +++++++++--- ts/Series/Map/MapSeries.ts | 5 +++-- 4 files changed, 15 insertions(+), 10 deletions(-) diff --git a/samples/maps/series/mapdata-multiple/demo.js b/samples/maps/series/mapdata-multiple/demo.js index db89a88c540..501c401226f 100644 --- a/samples/maps/series/mapdata-multiple/demo.js +++ b/samples/maps/series/mapdata-multiple/demo.js @@ -3,12 +3,10 @@ const norway = await fetch( 'https://code.highcharts.com/mapdata/countries/no/no-all.topo.json' ).then(response => response.json()); - const norwayMapData = Highcharts.geojson(norway); const sweden = await fetch( 'https://code.highcharts.com/mapdata/countries/se/se-all.topo.json' ).then(response => response.json()); - const swedenMapData = Highcharts.geojson(sweden); // Initialize the chart @@ -39,10 +37,10 @@ series: [{ data: [], - mapData: norwayMapData + mapData: norway }, { data: [], - mapData: swedenMapData + mapData: sweden }] }); })(); diff --git a/ts/Core/Chart/ChartDefaults.ts b/ts/Core/Chart/ChartDefaults.ts index e481ac99fba..bac0473d772 100644 --- a/ts/Core/Chart/ChartDefaults.ts +++ b/ts/Core/Chart/ChartDefaults.ts @@ -46,7 +46,7 @@ const ChartDefaults: ChartOptions = { * @sample maps/chart/topojson * Loading TopoJSON data * - * @type {string|Array<*>|Highcharts.GeoJSON} + * @type {string|Array<*>|Highcharts.GeoJSON|Highcharts.TopoJSON} * @since 5.0.0 * @product highmaps * @apioption chart.map diff --git a/ts/Extensions/GeoJSON.ts b/ts/Extensions/GeoJSON.ts index 9b41113cb6f..4213ebaac43 100644 --- a/ts/Extensions/GeoJSON.ts +++ b/ts/Extensions/GeoJSON.ts @@ -242,6 +242,12 @@ declare global { * @typedef {Array} Highcharts.LonLatArray */ +/** + * A TopoJSON object, see description on the + * [project's GitHub page](https://github.com/topojson/topojson). + * + * @typedef {Object} Highcharts.TopoJSON + */ ''; // detach doclets above /* eslint-disable no-invalid-this, valid-jsdoc */ @@ -519,10 +525,10 @@ Chart.prototype.fromLatLonToPoint = function ( ); }; -// Based on https://github.com/topojson/topojson-specification /* -@todo -- See if mapData can take topology directly (mapdata-multiple) + * Convert a TopoJSON topology to GeoJSON. By default the first object is + * handled. + * Based on https://github.com/topojson/topojson-specification */ const topo2geo = (topology: TopoJSON, objectName?: string): GeoJSON => { diff --git a/ts/Series/Map/MapSeries.ts b/ts/Series/Map/MapSeries.ts index d24183b69cf..76732644faf 100644 --- a/ts/Series/Map/MapSeries.ts +++ b/ts/Series/Map/MapSeries.ts @@ -1286,14 +1286,15 @@ export default MapSeries; /** * An array of objects containing a `geometry` or `path` definition and * optionally additional properties to join in the `data` as per the `joinBy` - * option. + * option. GeoJSON and TopoJSON structures can also be passed directly into + * `mapData`. * * @sample maps/demo/category-map/ * Map data and joinBy * @sample maps/series/mapdata-multiple/ * Multiple map sources * - * @type {Array|*} + * @type {Array|Highcharts.GeoJSON|Highcharts.TopoJSON} * @product highmaps * @apioption series.mapData */ From ab8e1fd8af68301c21d6bdc820e464ce2af31a8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torstein=20H=C3=B8nsi?= Date: Sun, 24 Oct 2021 23:19:27 +0200 Subject: [PATCH 06/10] Samples: Use client side projection for Mapview.center demos --- samples/maps/mapview/center-zoom/demo.css | 8 +++---- samples/maps/mapview/center-zoom/demo.html | 3 --- samples/maps/mapview/center-zoom/demo.js | 28 +++++++++++++--------- samples/maps/mapview/get-view/demo.css | 7 +++--- samples/maps/mapview/get-view/demo.html | 2 -- samples/maps/mapview/get-view/demo.js | 23 ++++++++++++++---- 6 files changed, 43 insertions(+), 28 deletions(-) diff --git a/samples/maps/mapview/center-zoom/demo.css b/samples/maps/mapview/center-zoom/demo.css index 6482d99cf26..20b68f66b5a 100644 --- a/samples/maps/mapview/center-zoom/demo.css +++ b/samples/maps/mapview/center-zoom/demo.css @@ -1,8 +1,8 @@ #container { - height: 500px; - min-width: 310px; - max-width: 800px; - margin: 0 auto; + height: 500px; + min-width: 310px; + max-width: 600px; + margin: 0 auto; } .loading { margin-top: 10em; diff --git a/samples/maps/mapview/center-zoom/demo.html b/samples/maps/mapview/center-zoom/demo.html index d1ad95cd351..a52b0e1f1f6 100644 --- a/samples/maps/mapview/center-zoom/demo.html +++ b/samples/maps/mapview/center-zoom/demo.html @@ -1,8 +1,5 @@ - - -
diff --git a/samples/maps/mapview/center-zoom/demo.js b/samples/maps/mapview/center-zoom/demo.js index 4a1abfca616..a92e5fdd429 100644 --- a/samples/maps/mapview/center-zoom/demo.js +++ b/samples/maps/mapview/center-zoom/demo.js @@ -1,12 +1,15 @@ -Highcharts.getJSON('https://cdn.jsdelivr.net/gh/highcharts/highcharts@v7.0.0/samples/data/world-population-density.json', function (data) { +(async () => { + + const mapData = await fetch( + 'https://code.highcharts.com/mapdata/custom/world.topo.json' + ).then(response => response.json()); + + const data = await fetch( + 'https://cdn.jsdelivr.net/gh/highcharts/highcharts@v7.0.0/samples/data/world-population-density.json' + ).then(response => response.json()); // Initialize the chart Highcharts.mapChart('container', { - chart: { - width: 600, - height: 500 - }, - title: { text: 'Predefined zoomed area' }, @@ -19,8 +22,11 @@ Highcharts.getJSON('https://cdn.jsdelivr.net/gh/highcharts/highcharts@v7.0.0/sam }, mapView: { - center: [4500, 8300], // In terms of pre-projected units - zoom: 15 + projection: { + name: 'WebMercator' + }, + center: [10, 58], + zoom: 2.8 }, colorAxis: { @@ -36,8 +42,8 @@ Highcharts.getJSON('https://cdn.jsdelivr.net/gh/highcharts/highcharts@v7.0.0/sam }, series: [{ - data: data, - mapData: Highcharts.maps['custom/world'], + data, + mapData, joinBy: ['iso-a2', 'code'], name: 'Population density', states: { @@ -50,4 +56,4 @@ Highcharts.getJSON('https://cdn.jsdelivr.net/gh/highcharts/highcharts@v7.0.0/sam } }] }); -}); \ No newline at end of file +})(); \ No newline at end of file diff --git a/samples/maps/mapview/get-view/demo.css b/samples/maps/mapview/get-view/demo.css index 5437fd5a646..3f4ea1a0525 100644 --- a/samples/maps/mapview/get-view/demo.css +++ b/samples/maps/mapview/get-view/demo.css @@ -1,7 +1,8 @@ #container { - height: 500px; - width: 800px; - margin: 0 auto; + height: 500px; + min-width: 360px; + max-width: 800px; + margin: 0 auto; } .loading { margin-top: 10em; diff --git a/samples/maps/mapview/get-view/demo.html b/samples/maps/mapview/get-view/demo.html index 3bc67659b0e..6691b11fa11 100644 --- a/samples/maps/mapview/get-view/demo.html +++ b/samples/maps/mapview/get-view/demo.html @@ -2,8 +2,6 @@
- - diff --git a/samples/maps/mapview/get-view/demo.js b/samples/maps/mapview/get-view/demo.js index 9aab62027c1..822d1a79310 100644 --- a/samples/maps/mapview/get-view/demo.js +++ b/samples/maps/mapview/get-view/demo.js @@ -1,8 +1,15 @@ -let chart; -Highcharts.getJSON('https://cdn.jsdelivr.net/gh/highcharts/highcharts@v7.0.0/samples/data/world-population-density.json', function (data) { +(async () => { + + const mapData = await fetch( + 'https://code.highcharts.com/mapdata/custom/world.topo.json' + ).then(response => response.json()); + + const data = await fetch( + 'https://cdn.jsdelivr.net/gh/highcharts/highcharts@v7.0.0/samples/data/world-population-density.json' + ).then(response => response.json()); // Initialize the chart - chart = Highcharts.mapChart('container', { + const chart = Highcharts.mapChart('container', { title: { text: 'Get MapView state' @@ -18,9 +25,15 @@ Highcharts.getJSON('https://cdn.jsdelivr.net/gh/highcharts/highcharts@v7.0.0/sam enabled: true }, + mapView: { + projection: { + name: 'WebMercator' + } + }, + series: [{ data, - mapData: Highcharts.maps['custom/world'], + mapData, joinBy: ['iso-a2', 'code'], name: 'Population density', states: { @@ -51,4 +64,4 @@ Highcharts.getJSON('https://cdn.jsdelivr.net/gh/highcharts/highcharts@v7.0.0/sam }; printView(); Highcharts.addEvent(chart.mapView, 'afterSetView', printView); -}); +})(); From 0d357c86365109a25e58998fdd32b3b717d59cd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torstein=20H=C3=B8nsi?= Date: Mon, 25 Oct 2021 18:18:35 +0200 Subject: [PATCH 07/10] Tests: Missing files for map tests --- test/json-sources.js | 6 +++++- test/karma-setup.js | 16 ++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/test/json-sources.js b/test/json-sources.js index 24be9025a95..278f1aa61b7 100644 --- a/test/json-sources.js +++ b/test/json-sources.js @@ -1135,5 +1135,9 @@ window.JSONSources = { 12 ] ] - } + }, + "https://code.highcharts.com/mapdata/custom/europe.topo.json": { "type": "Topology", "objects": { "default": { "type": "GeometryCollection", "geometries": [{ "type": "MultiPolygon", "arcs": [[[0]], [[1]], [[2]], [[3]], [[4]], [[5]], [[6]], [[7]], [[8]], [[9]], [[10]], [[11]], [[12, 13]], [[14]]], "id": "DK", "properties": { "hc-group": "admin0", "hc-middle-x": 0.19, "hc-middle-y": 0.44, "hc-key": "dk", "hc-a2": "DK", "name": "Denmark", "labelrank": "4", "country-abbrev": "Den.", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "DNK", "iso-a2": "DK", "woe-id": "23424796", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[15]], [[16]], [[17]], [[18]], [[19]], [[20]], [[21]], [[22]]], "id": "FO", "properties": { "hc-group": "admin0", "hc-middle-x": 0.56, "hc-middle-y": 0.16, "hc-key": "fo", "hc-a2": "FO", "name": "Faroe Islands", "labelrank": "6", "country-abbrev": "Faeroe Is.", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "FRO", "iso-a2": "FO", "woe-id": "23424816", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[23]], [[24]], [[25]], [[26]], [[27]], [[28]], [[29]], [[30]], [[31]], [[32]], [[33]], [[34]], [[35]], [[36]], [[37]], [[38, 39, 40]], [[41, 42, 43, 44, 45]]], "id": "HR", "properties": { "hc-group": "admin0", "hc-middle-x": 0.09, "hc-middle-y": 0.39, "hc-key": "hr", "hc-a2": "HR", "name": "Croatia", "labelrank": "6", "country-abbrev": "Cro.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "HRV", "iso-a2": "HR", "woe-id": "23424843", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[46]], [[47]], [[48]], [[49]], [[50]], [[51]], [[52, 53]], [[54, 55, 56], [57]]], "id": "NL", "properties": { "hc-group": "admin0", "hc-middle-x": 0.34, "hc-middle-y": 0.59, "hc-key": "nl", "hc-a2": "NL", "name": "Netherlands", "labelrank": "5", "country-abbrev": "Neth.", "subregion": "Western Europe", "region-wb": "Europe & Central Asia", "iso-a3": "NLD", "iso-a2": "NL", "woe-id": "-90", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[58]], [[59]], [[60]], [[61, 62, 63, 64, 65, 66, 67, 68, 69, 70]], [[71]]], "id": "EE", "properties": { "hc-group": "admin0", "hc-middle-x": 0.6, "hc-middle-y": 0.53, "hc-key": "ee", "hc-a2": "EE", "name": "Estonia", "labelrank": "6", "country-abbrev": "Est.", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "EST", "iso-a2": "EE", "woe-id": "23424805", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[72, 73, 74, 75, 76, 77, 78, 79]], "id": "BG", "properties": { "hc-group": "admin0", "hc-middle-x": 0.54, "hc-middle-y": 0.49, "hc-key": "bg", "hc-a2": "BG", "name": "Bulgaria", "labelrank": "4", "country-abbrev": "Bulg.", "subregion": "Eastern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "BGR", "iso-a2": "BG", "woe-id": "23424771", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[80]], [[81]], [[82]], [[83]], [[84]], [[85]], [[86, 87, 88, 89, 90, 91, 92, 93]]], "id": "ES", "properties": { "hc-group": "admin0", "hc-middle-x": 0.38, "hc-middle-y": 0.53, "hc-key": "es", "hc-a2": "ES", "name": "Spain", "labelrank": "2", "country-abbrev": "Sp.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "ESP", "iso-a2": "ES", "woe-id": "23424950", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[94]], [[95]], [[96]], [[97]], [[98]], [[99]], [[100]], [[101, 102, 103, 104, 105], [106], [107]], [[108]], [[109]]], "id": "IT", "properties": { "hc-group": "admin0", "hc-middle-x": 0.44, "hc-middle-y": 0.38, "hc-key": "it", "hc-a2": "IT", "name": "Italy", "labelrank": "2", "country-abbrev": "Italy", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "ITA", "iso-a2": "IT", "woe-id": "23424853", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-107]], "id": "SM", "properties": { "hc-group": "admin0", "hc-middle-x": 0.68, "hc-middle-y": 0.41, "hc-key": "sm", "hc-a2": "SM", "name": "San Marino", "labelrank": "6", "country-abbrev": "S.M.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "SMR", "iso-a2": "SM", "woe-id": "23424947", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[107]], "id": "VA", "properties": { "hc-group": "admin0", "hc-middle-x": 0.62, "hc-middle-y": 0.44, "hc-key": "va", "hc-a2": "VA", "name": "Vatican", "labelrank": "6", "country-abbrev": "Vat.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "VAT", "iso-a2": "VA", "woe-id": "23424986", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[110]], [[111]], [[-74, 112, 113]], [[114]]], "id": "TR", "properties": { "hc-group": "admin0", "hc-middle-x": 0.62, "hc-middle-y": 0.51, "hc-key": "tr", "hc-a2": "TR", "name": "Turkey", "labelrank": "2", "country-abbrev": "Tur.", "subregion": "Western Asia", "region-wb": "Europe & Central Asia", "iso-a3": "TUR", "iso-a2": "TR", "woe-id": "23424969", "continent": "Asia" } }, { "type": "MultiPolygon", "arcs": [[[115]], [[116]]], "id": "MT", "properties": { "hc-group": "admin0", "hc-middle-x": 0.67, "hc-middle-y": 0.77, "hc-key": "mt", "hc-a2": "MT", "name": "Malta", "labelrank": "5", "country-abbrev": "Malta", "subregion": "Southern Europe", "region-wb": "Middle East & North Africa", "iso-a3": "MLT", "iso-a2": "MT", "woe-id": "23424897", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[117]], [[118]], [[119]], [[120]], [[121, 122, -103, 123, 124, 125, -92, 126, -90, 127, 128, 129, 130, 131, 132], [-86]], [[133]]], "id": "FR", "properties": { "hc-group": "admin0", "hc-middle-x": 0.47, "hc-middle-y": 0.47, "hc-key": "fr", "hc-a2": "FR", "name": "France", "labelrank": "2", "country-abbrev": "Fr.", "subregion": "Western Europe", "region-wb": "Europe & Central Asia", "iso-a3": "FRA", "iso-a2": "FR", "woe-id": "-90", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[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]]], "id": "NO", "properties": { "hc-group": "admin0", "hc-middle-x": 0.43, "hc-middle-y": 0.8, "hc-key": "no", "hc-a2": "NO", "name": "Norway", "labelrank": "3", "country-abbrev": "Nor.", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "NOR", "iso-a2": "NO", "woe-id": "-90", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[221, 222, -132, 223, 224, -56, 225, 226, -14, 227, 228, 229, 230, 231, 232], [233]], [[234]], [[235]], [[236]], [[237]], [[238]], [[239]], [[240, -241, 241]]], "id": "DE", "properties": { "hc-group": "admin0", "hc-middle-x": 0.47, "hc-middle-y": 0.53, "hc-key": "de", "hc-a2": "DE", "name": "Germany", "labelrank": "2", "country-abbrev": "Ger.", "subregion": "Western Europe", "region-wb": "Europe & Central Asia", "iso-a3": "DEU", "iso-a2": "DE", "woe-id": "23424829", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[242]], [[243, 244]]], "id": "IE", "properties": { "hc-group": "admin0", "hc-middle-x": 0.61, "hc-middle-y": 0.6, "hc-key": "ie", "hc-a2": "IE", "name": "Ireland", "labelrank": "3", "country-abbrev": "Ire.", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "IRL", "iso-a2": "IE", "woe-id": "23424803", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[245]], [[246]], [[247]], [[248, 249, 250, 251, 252, 253, 254, 255, 256], [257], [258]]], "id": "UA", "properties": { "hc-group": "admin0", "hc-middle-x": 0.58, "hc-middle-y": 0.41, "hc-key": "ua", "hc-a2": "UA", "name": "Ukraine", "labelrank": "3", "country-abbrev": "Ukr.", "subregion": "Eastern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "UKR", "iso-a2": "UA", "woe-id": "23424976", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[259]], [[260]], [[261]], [[262]], [[263]], [[264]], [[265]], [[266]], [[267]], [[268]], [[269]], [[270]], [[271]], [[272]], [[273]], [[274]], [[275]], [[276]], [[277]], [[278]], [[279]], [[280]], [[281]], [[282, -214, 283, 284]]], "id": "FI", "properties": { "hc-group": "admin0", "hc-middle-x": 0.58, "hc-middle-y": 0.72, "hc-key": "fi", "hc-a2": "FI", "name": "Finland", "labelrank": "3", "country-abbrev": "Fin.", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "FIN", "iso-a2": "FI", "woe-id": "23424812", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[285]], [[286]], [[287]], [[288]], [[289]], [[290]], [[291]], [[292]], [[293]], [[294]], [[295]], [[296]], [[297]], [[298]], [[299]], [[300]], [[301]], [[302]], [[303]], [[-283, 304, -215]]], "id": "SE", "properties": { "hc-group": "admin0", "hc-middle-x": 0.52, "hc-middle-y": 0.34, "hc-key": "se", "hc-a2": "SE", "name": "Sweden", "labelrank": "3", "country-abbrev": "Swe.", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "SWE", "iso-a2": "SE", "woe-id": "23424954", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[305, -66, 306, 307, -63, 62, 308, -71, 309, -284, -213, 310, 311, -252, 312, 313, -68], [314]], [[315]], [[316]], [[317]], [[318]], [[319]], [[320]], [[321]], [[322, 323, 324, 325, 326, 327]], [[328, 329, 330]], [[331]], [[332, 333]], [[334]]], "id": "RU", "properties": { "hc-group": "admin0", "hc-middle-x": 0.59, "hc-middle-y": 0.45, "hc-key": "ru", "hc-a2": "RU", "name": "Russia", "labelrank": "2", "country-abbrev": "Rus.", "subregion": "Eastern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "RUS", "iso-a2": "RU", "woe-id": "23424936", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[335]], [[336]], [[337]], [[338]], [[339]], [[340]], [[341]], [[342]], [[343]], [[344]], [[345]], [[346]], [[347]], [[348]], [[349]], [[350]], [[351]], [[352]], [[353]], [[354]], [[355]], [[356]], [[357]], [[358]], [[359]], [[360]], [[361]], [[362]], [[363]], [[364]], [[365]], [[366, -94]], [[367, 368]], [[369, 370, -371, 371, 372, 373, 374, 375, 376], [377]], [[378]], [[379]], [[380]], [[381, -245]]], "id": "GB", "properties": { "hc-group": "admin0", "hc-middle-x": 0.18, "hc-middle-y": 0.36, "hc-key": "gb", "hc-a2": "GB", "name": "United Kingdom", "labelrank": "2", "country-abbrev": "U.K.", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "GBR", "iso-a2": "GB", "woe-id": "-90", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[-378]], [[382, -377, 383]], [[384, -369, 385, 386, 387, 388, -373]], [[389, 370]]], "id": "CY", "properties": { "hc-group": "admin0", "hc-middle-x": 0.19, "hc-middle-y": 0.71, "hc-key": "cy", "hc-a2": "CY", "name": "Cyprus", "labelrank": "5", "country-abbrev": "Cyp.", "subregion": "Western Asia", "region-wb": "Europe & Central Asia", "iso-a3": "CYP", "iso-a2": "CY", "woe-id": "-90", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[390, -88, 391], [392]], "id": "PT", "properties": { "hc-group": "admin0", "hc-middle-x": 0.48, "hc-middle-y": 0.36, "hc-key": "pt", "hc-a2": "PT", "name": "Portugal", "labelrank": "2", "country-abbrev": "Port.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "PRT", "iso-a2": "PT", "woe-id": "23424925", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[393]], [[394]], [[395]], [[396]], [[397]], [[398]], [[399]], [[400]], [[401]], [[402]], [[403]], [[404]], [[405]], [[406]], [[407]], [[408]], [[409]], [[410]], [[411]], [[412]], [[413]], [[414]], [[415]], [[416]], [[417]], [[418]], [[419]], [[420]], [[421]], [[422]], [[423]], [[424]], [[425]], [[426]], [[427]], [[428]], [[429]], [[430]], [[431]], [[432]], [[433]], [[434]], [[435, 436, 437, 438, 439, -75, -114, 440]], [[441]], [[442]], [[443]], [[444]]], "id": "GR", "properties": { "hc-group": "admin0", "hc-middle-x": 0.21, "hc-middle-y": 0.4, "hc-key": "gr", "hc-a2": "GR", "name": "Greece", "labelrank": "3", "country-abbrev": "Greece", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "GRC", "iso-a2": "GR", "woe-id": "23424833", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[445, 446, 447, 448, -324]], [[449, -328]]], "id": "LT", "properties": { "hc-group": "admin0", "hc-middle-x": 0.6, "hc-middle-y": 0.49, "hc-key": "lt", "hc-a2": "LT", "name": "Lithuania", "labelrank": "5", "country-abbrev": "Lith.", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "LTU", "iso-a2": "LT", "woe-id": "23424875", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[450, -106, 451, 452, -45]], "id": "SI", "properties": { "hc-group": "admin0", "hc-middle-x": 0.38, "hc-middle-y": 0.62, "hc-key": "si", "hc-a2": "SI", "name": "Slovenia", "labelrank": "6", "country-abbrev": "Slo.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "SVN", "iso-a2": "SI", "woe-id": "23424945", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[453, -43, 454, 455, -40]], "id": "BA", "properties": { "hc-group": "admin0", "hc-middle-x": 0.49, "hc-middle-y": 0.42, "hc-key": "ba", "hc-a2": "BA", "name": "Bosnia and Herzegovina", "labelrank": "5", "country-abbrev": "B.H.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "BIH", "iso-a2": "BA", "woe-id": "23424761", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[456, -125]], "id": "MC", "properties": { "hc-group": "admin0", "hc-middle-x": 0.47, "hc-middle-y": 0.63, "hc-key": "mc", "hc-a2": "MC", "name": "Monaco", "labelrank": "6", "country-abbrev": "Mco.", "subregion": "Western Europe", "region-wb": "Europe & Central Asia", "iso-a3": "MCO", "iso-a2": "MC", "woe-id": "23424892", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[457, 458]], [[459, 460, 461, 462, -438, 463, -436, 464, 465, 466, 467, 468, 469]], [[470, 471]]], "id": "AL", "properties": { "hc-group": "admin0", "hc-middle-x": 0.3, "hc-middle-y": 0.65, "hc-key": "al", "hc-a2": "AL", "name": "Albania", "labelrank": "6", "country-abbrev": "Alb.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "ALB", "iso-a2": "AL", "woe-id": "23424742", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[472, -384, -376, 473]], [[474, 475, 476, -387]], [[477, 478, -374, -389]]], "id": "CNM", "properties": { "hc-group": "admin0", "hc-middle-x": 0.66, "hc-middle-y": 0.61, "hc-key": "cnm", "hc-a2": "CN", "name": "Cyprus No Mans Area", "labelrank": "9", "country-abbrev": null, "subregion": "Western Asia", "region-wb": "Europe & Central Asia", "iso-a3": "-99", "iso-a2": null, "woe-id": "-99", "continent": "Asia" } }, { "type": "MultiPolygon", "arcs": [[[479, -474, -375, -479]], [[480, -476]]], "id": "NC", "properties": { "hc-group": "admin0", "hc-middle-x": 0.59, "hc-middle-y": 0.61, "hc-key": "nc", "hc-a2": "NC", "name": "Northern Cyprus", "labelrank": "6", "country-abbrev": "N. Cy.", "subregion": "Western Asia", "region-wb": "Europe & Central Asia", "iso-a3": "-99", "iso-a2": "NC", "woe-id": "-90", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[-42, 481, 482, 483, 484, -77, 485, 486, 487, -455]], "id": "RS", "properties": { "hc-group": "admin0", "hc-middle-x": 0.47, "hc-middle-y": 0.51, "hc-key": "rs", "hc-a2": "RS", "name": "Republic of Serbia", "labelrank": "5", "country-abbrev": "Serb.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "SRB", "iso-a2": "RS", "woe-id": "-90", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-483, 488, -256, 489, -254, 490, -80, -79, 491]], "id": "RO", "properties": { "hc-group": "admin0", "hc-middle-x": 0.45, "hc-middle-y": 0.54, "hc-key": "ro", "hc-a2": "RO", "name": "Romania", "labelrank": "3", "country-abbrev": "Rom.", "subregion": "Eastern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "ROU", "iso-a2": "RO", "woe-id": "23424933", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-468, 492, -472, 493, -466, 494, -41, -456, -488, 495]], "id": "ME", "properties": { "hc-group": "admin0", "hc-middle-x": 0.29, "hc-middle-y": 0.67, "hc-key": "me", "hc-a2": "ME", "name": "Montenegro", "labelrank": "6", "country-abbrev": "Mont.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "MNE", "iso-a2": "ME", "woe-id": "20069817", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[496, 497]], "id": "LI", "properties": { "hc-group": "admin0", "hc-middle-x": 0.62, "hc-middle-y": 0.51, "hc-key": "li", "hc-a2": "LI", "name": "Liechtenstein", "labelrank": "6", "country-abbrev": "Liech.", "subregion": "Western Europe", "region-wb": "Europe & Central Asia", "iso-a3": "LIE", "iso-a2": "LI", "woe-id": "23424879", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-497, 498, 499, -233, 500, 501, 502, -452, -105, 503]], "id": "AT", "properties": { "hc-group": "admin0", "hc-middle-x": 0.68, "hc-key": "at", "hc-a2": "AT", "name": "Austria", "labelrank": "4", "country-abbrev": "Aust.", "subregion": "Western Europe", "region-wb": "Europe & Central Asia", "iso-a3": "AUT", "iso-a2": "AT", "woe-id": "23424750", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-502, 504, 505, -249, 506]], "id": "SK", "properties": { "hc-group": "admin0", "hc-middle-x": 0.4, "hc-middle-y": 0.46, "hc-key": "sk", "hc-a2": "SK", "name": "Slovakia", "labelrank": "6", "country-abbrev": "Svk.", "subregion": "Eastern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "SVK", "iso-a2": "SK", "woe-id": "23424877", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-453, -503, -507, -257, -489, -482, -46]], "id": "HU", "properties": { "hc-group": "admin0", "hc-middle-x": 0.45, "hc-middle-y": 0.54, "hc-key": "hu", "hc-a2": "HU", "name": "Hungary", "labelrank": "5", "country-abbrev": "Hun.", "subregion": "Eastern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "HUN", "iso-a2": "HU", "woe-id": "23424844", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-91, -127]], "id": "AD", "properties": { "hc-group": "admin0", "hc-middle-x": 0.48, "hc-middle-y": 0.52, "hc-key": "ad", "hc-a2": "AD", "name": "Andorra", "labelrank": "6", "country-abbrev": "And.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "AND", "iso-a2": "AD", "woe-id": "23424744", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-131, 507, -224]], "id": "LU", "properties": { "hc-group": "admin0", "hc-middle-y": 0.58, "hc-key": "lu", "hc-a2": "LU", "name": "Luxembourg", "labelrank": "6", "country-abbrev": "Lux.", "subregion": "Western Europe", "region-wb": "Europe & Central Asia", "iso-a3": "LUX", "iso-a2": "LU", "woe-id": "23424881", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-223, 508, 240, 509, -499, -498, -504, -104, -123, 510, -133]], "id": "CH", "properties": { "hc-group": "admin0", "hc-middle-x": 0.51, "hc-middle-y": 0.49, "hc-key": "ch", "hc-a2": "CH", "name": "Switzerland", "labelrank": "4", "country-abbrev": "Switz.", "subregion": "Western Europe", "region-wb": "Europe & Central Asia", "iso-a3": "CHE", "iso-a2": "CH", "woe-id": "23424957", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-508, -130, 511, 512, -54, 513, -57, -225]], "id": "BE", "properties": { "hc-group": "admin0", "hc-middle-x": 0.53, "hc-middle-y": 0.37, "hc-key": "be", "hc-a2": "BE", "name": "Belgium", "labelrank": "2", "country-abbrev": "Belg.", "subregion": "Western Europe", "region-wb": "Europe & Central Asia", "iso-a3": "BEL", "iso-a2": "BE", "woe-id": "23424757", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-469, -496, -487, 514]], "id": "KV", "properties": { "hc-group": "admin0", "hc-middle-x": 0.89, "hc-middle-y": 0.48, "hc-key": "kv", "hc-a2": "KV", "name": "Kosovo", "labelrank": "6", "country-abbrev": "Kos.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "-99", "iso-a2": "KV", "woe-id": "-90", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[-449, 515, -250, -506, 516, -231, 517, -229, 518, 519, -325]], [[-329, 520, 521]], [[522, 523]]], "id": "PL", "properties": { "hc-group": "admin0", "hc-middle-x": 0.56, "hc-key": "pl", "hc-a2": "PL", "name": "Poland", "labelrank": "3", "country-abbrev": "Pol.", "subregion": "Eastern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "POL", "iso-a2": "PL", "woe-id": "23424923", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[524, 525]], [[-76, -440, 526, -459, -461, 527, -470, -515, -486]]], "id": "MK", "properties": { "hc-group": "admin0", "hc-middle-x": 0.49, "hc-middle-y": 0.49, "hc-key": "mk", "hc-a2": "MK", "name": "Macedonia", "labelrank": "6", "country-abbrev": "Mkd.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "MKD", "iso-a2": "MK", "woe-id": "23424890", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[528, -447, 529, -69, -314]], "id": "LV", "properties": { "hc-group": "admin0", "hc-middle-x": 0.68, "hc-middle-y": 0.47, "hc-key": "lv", "hc-a2": "LV", "name": "Latvia", "labelrank": "5", "country-abbrev": "Lat.", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "LVA", "iso-a2": "LV", "woe-id": "23424874", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-529, -313, -251, -516, -448]], "id": "BY", "properties": { "hc-group": "admin0", "hc-middle-x": 0.48, "hc-middle-y": 0.57, "hc-key": "by", "hc-a2": "BY", "name": "Belarus", "labelrank": "4", "country-abbrev": "Bela.", "subregion": "Eastern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "BLR", "iso-a2": "BY", "woe-id": "23424765", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[530]], "id": "IS", "properties": { "hc-group": "admin0", "hc-middle-x": 0.59, "hc-middle-y": 0.68, "hc-key": "is", "hc-a2": "IS", "name": "Iceland", "labelrank": "3", "country-abbrev": "Iceland", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "ISL", "iso-a2": "IS", "woe-id": "23424845", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-490, -255]], "id": "MD", "properties": { "hc-group": "admin0", "hc-middle-x": 0.47, "hc-middle-y": 0.3, "hc-key": "md", "hc-a2": "MD", "name": "Moldova", "labelrank": "6", "country-abbrev": "Mda.", "subregion": "Eastern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "MDA", "iso-a2": "MD", "woe-id": "23424885", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-505, -501, -232, -517]], "id": "CZ", "properties": { "hc-group": "admin0", "hc-middle-x": 0.39, "hc-middle-y": 0.51, "hc-key": "cz", "hc-a2": "CZ", "name": "Czech Republic", "labelrank": "5", "country-abbrev": "Cz. Rep.", "subregion": "Eastern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "CZE", "iso-a2": "CZ", "woe-id": "23424810", "continent": "Europe" } }], "hc-transform": { "default": { "crs": "+proj=lcc +lat_1=43 +lat_2=62 +lat_0=30 +lon_0=10 +x_0=0 +y_0=0 +ellps=intl +units=m +no_defs", "scale": 0.000169255094964, "jsonres": 15.5, "jsonmarginX": -999, "jsonmarginY": 9851, "xoffset": -1706316.2597, "yoffset": 4824494.18154 } } } }, "arcs": [[[4019, 5560], [38, -39], [15, 17], [14, -36], [-9, -26], [-33, -5], [-54, 44], [10, 42], [19, 3]], [[3918, 5545], [18, -13], [-15, -5], [-19, 29], [16, -11]], [[4163, 5573], [-35, -30], [-11, 17], [23, 22], [23, -9]], [[3855, 5595], [26, -33], [-7, -27], [-17, 11], [-2, 49]], [[3972, 5556], [-12, -54], [-10, 27], [35, 86], [-13, -59]], [[4427, 5637], [30, -28], [-10, -39], [-43, 31], [9, 56], [14, -20]], [[3700, 5693], [5, -3], [-1, -24], [-9, 23], [5, 4]], [[3916, 5740], [51, -69], [-6, -78], [-22, -12], [-38, 17], [-36, 44], [0, 26], [-24, 40], [75, 32]], [[4168, 5724], [-7, 18], [10, 23], [7, -26], [-10, -15]], [[3948, 5813], [0, -23], [-12, -1], [7, 29], [5, -5]], [[3756, 6108], [-4, -42], [-25, -33], [-12, 30], [11, 27], [30, 18]], [[4012, 6209], [-15, -9], [-3, -24], [-20, 17], [38, 16]], [[3728, 5544], [2, 66], [-22, -19], [-2, 30], [25, -9], [-8, 81], [-35, 34], [-24, 0], [11, 68], [22, 22], [-12, 50], [-20, 12], [2, 119], [7, 32], [14, -25], [29, 0], [18, -26], [2, 42], [24, 46], [25, -27], [-15, -23], [26, 3], [-13, 71], [31, 36], [20, -14], [19, 35], [-58, -27], [-17, 15], [-49, -28], [-22, -47], [6, -52], [-33, 50], [42, 95], [89, 11], [18, 22], [44, 95], [26, 2], [45, 42], [-19, -50], [14, -37], [-1, -54], [-11, -14], [-20, -76], [11, -95], [47, -7], [21, -24], [-25, -63], [-14, 6], [-10, -38], [-4, 48], [-11, 6], [-20, -41], [2, -64], [-39, -22], [19, -23], [-30, -20], [7, -14], [-41, -37], [25, -66], [-25, -24], [28, -49], [0, -40], [-17, 25], [-17, -32]], [[3815, 5521], [-69, 26], [-18, -3]], [[4044, 5830], [21, -9], [16, -62], [24, 71], [-18, 9], [43, 42], [42, -23], [-12, -33], [10, -58], [-40, -45], [-2, -30], [24, -23], [-6, -27], [-23, -7], [-3, -64], [-11, -6], [12, -36], [-23, -40], [-24, 49], [16, 28], [-27, 56], [-44, 6], [-19, 45], [13, 7], [-6, 45], [-21, 46], [32, 1], [26, 31], [0, 27]], [[1981, 7385], [18, -12], [7, -50], [-22, 29], [-3, 33]], [[1987, 7461], [26, -22], [-6, -20], [-23, 26], [3, 16]], [[1951, 7524], [14, -11], [-17, -18], [-27, 34], [30, -5]], [[1948, 7573], [53, -76], [-2, -26], [-33, 49], [-23, 16], [5, 37]], [[1982, 7576], [37, -51], [-15, -16], [-30, 31], [-14, 33], [22, 3]], [[2016, 7561], [-6, 4], [-4, 12], [1, 13], [9, -29]], [[2009, 7554], [-3, 0], [-13, 34], [1, 4], [15, -38]], [[2029, 7571], [-10, 25], [6, -2], [6, -17], [-1, -6], [9, -9], [-13, -5], [-5, -7], [-3, 34], [11, -13]], [[4657, 2227], [-1, -9], [-11, -3], [-3, 12], [15, 0]], [[4707, 2234], [39, -23], [2, -6], [-41, 21], [0, 8]], [[4638, 2282], [30, 2], [18, -16], [-39, -6], [-9, 20]], [[4573, 2309], [3, -11], [-11, -6], [-8, 15], [16, 2]], [[4615, 2352], [21, -19], [50, -9], [-56, 0], [-36, 19], [21, 9]], [[4642, 2383], [1, -21], [-44, 14], [0, 20], [43, -13]], [[4585, 2400], [11, -16], [-5, -2], [-16, 13], [10, 5]], [[4489, 2535], [-9, 5], [-12, 25], [14, -11], [7, -19]], [[4465, 2581], [-4, -5], [-8, 12], [-7, 19], [19, -26]], [[4425, 2601], [39, -62], [-9, -3], [-15, 41], [-15, 24]], [[4422, 2727], [7, 3], [39, -74], [-40, 41], [-6, 30]], [[4373, 2728], [0, -7], [-8, 38], [7, -9], [1, -22]], [[4412, 2794], [8, -21], [3, -18], [-19, 39], [8, 0]], [[4380, 2824], [-5, -81], [-14, 78], [10, 4], [-13, 47], [10, 7], [12, -55]], [[4391, 2904], [11, -43], [16, -31], [-43, 31], [16, 43]], [[4832, 2129], [-78, 109], [-41, 16], [-22, 41], [46, -36]], [[4737, 2259], [23, -20], [65, -70]], [[4825, 2169], [1, -22], [6, -18]], [[4878, 3091], [-7, -33], [19, -66], [-1, -55], [40, -33], [4, -21], [-38, -6], [-5, -77]], [[4890, 2800], [-14, -2], [-22, 60], [-17, -6], [-34, 28], [-25, -3], [-20, -23], [-17, 27], [-13, -12], [-34, 20], [-9, -12], [-29, 37], [-16, -28], [-34, 5], [-16, -53], [-14, 7], [-25, 51], [-24, -16], [-1, -86], [39, -89], [11, -86], [52, -100], [3, -19], [42, -71], [18, -9], [3, -34], [19, -55], [17, -20], [-1, -38]], [[4729, 2273], [-57, 81], [-21, 46], [-40, 25], [-62, 2], [-5, 47], [-52, 68], [-40, 93], [22, 25], [-46, 92], [3, 73], [-11, 43], [-27, 47], [-29, 19], [-41, -149], [-39, 84], [-12, 107], [9, -6]], [[4281, 2970], [34, -17], [9, 24], [45, -10], [21, 49], [12, -33], [53, -29], [25, 14], [-13, 62], [23, 29], [24, 5], [4, 56], [-12, 21], [8, 28], [69, 44], [-5, 32], [31, 2]], [[4609, 3247], [40, -38], [12, -41], [25, -25], [17, -45], [27, -5], [32, -45], [38, 3], [22, -12], [30, 47], [26, 5]], [[3206, 4670], [-4, -21], [-33, 27], [28, 5], [9, -11]], [[3304, 5055], [-10, -29], [-10, 15], [16, 36], [4, -22]], [[3309, 5087], [-6, -1], [12, 19], [8, 7], [-14, -25]], [[3365, 5137], [-25, -15], [-3, 9], [45, 19], [-17, -13]], [[3419, 5155], [5, -4], [-31, -8], [-1, 10], [27, 2]], [[3446, 5154], [-3, 4], [9, 7], [14, -2], [-20, -9]], [[3131, 4581], [22, 11], [35, -19], [14, 18], [27, -12]], [[3229, 4579], [-33, -44], [-32, 22], [-28, -11], [-5, 35]], [[3234, 4579], [-36, 23], [-13, -16], [-33, 18], [-8, 26], [41, 16], [34, -47], [12, 21], [-28, 20], [21, 26], [-24, 44], [6, 37], [15, 6], [41, 91], [26, 173], [19, -17], [52, 52], [24, 57], [44, 27], [84, 15], [52, -59]], [[3563, 5092], [-1, -76], [-12, -31], [-4, -56], [-31, -2], [-8, -45], [31, -7], [6, -60], [-39, -53], [15, -21], [-48, -36], [-29, 19], [-22, -25], [19, -44], [12, -71], [-16, -43], [9, -21], [-25, -33], [16, -34], [-8, -43]], [[3428, 4410], [-34, 3], [16, 108], [-41, 36], [-28, -8], [-23, 59], [-12, -23], [-16, 29], [-15, -21], [-17, 15], [-10, -33], [-14, 4]], [[3395, 4859], [9, 10], [1, 3], [8, 11], [-1, 31], [-21, 5], [20, -11], [-6, -36], [-10, -13], [-31, -32], [-32, 30], [59, 63], [-5, 44], [12, 17], [-35, 5], [-4, 61], [-37, -39], [8, -44], [21, -19], [-31, -22], [7, -51], [-14, -19], [54, -31], [28, 37]], [[5376, 6565], [-14, -25], [-18, 19], [11, 19], [21, -13]], [[5361, 6680], [15, -2], [3, -17], [-25, -1], [7, 20]], [[5306, 6670], [24, -7], [12, -39], [-34, -10], [-21, -33], [-13, 43], [-42, 31], [45, 4], [15, 32], [14, -21]], [[5919, 6764], [-7, -2], [-13, -4]], [[5899, 6758], [8, -3]], [[5907, 6755], [1, 0], [1, 0], [-7, -4]], [[5902, 6751], [-16, -8], [-5, -32]], [[5881, 6711], [-6, -23], [-8, -22]], [[5867, 6666], [-20, 6], [-51, -16], [-14, -45], [23, -36], [11, -70], [17, -31], [26, -80]], [[5859, 6394], [17, -39], [-29, -13], [-20, -78]], [[5827, 6264], [-55, 27], [-42, -29], [-53, 70], [-2, 20], [-46, 18], [-37, 44], [-82, -35], [-26, -22]], [[5484, 6357], [18, 57], [7, 76], [-22, 10], [-25, -40], [-41, 27], [-9, 54], [-16, 5], [1, 52], [31, -5], [1, 19], [-43, -9], [-1, 39], [15, 17], [-16, 15], [7, 51], [69, 28], [-8, 18], [126, 44], [30, -14], [36, 48], [81, -32], [24, 2], [18, -21], [118, -19], [16, 20]], [[5901, 6799], [10, -11], [8, -24]], [[5210, 6466], [16, 24], [-13, 40], [25, 0], [53, 37], [6, -12], [29, 9], [47, -41], [-18, 1], [-15, -30], [-39, -39], [-40, -5], [-15, -61], [-21, 0], [23, 45], [-38, 32]], [[5964, 2492], [3, -56], [-15, -47], [-35, 12], [-24, -69], [-7, -40], [1, -82], [-17, 2], [-33, -70], [21, -1], [13, -50], [26, -56], [4, -27]], [[5901, 2008], [-24, 5], [-29, -25], [-31, 52], [-28, -5], [-9, -20], [-44, -20], [-3, -28], [-21, -30]], [[5712, 1937], [-32, -7], [13, -46], [-5, -44], [-27, -15], [-37, 3], [-30, -21], [-45, 44], [-12, -14], [-20, 22], [-10, 36], [-52, -9], [-49, -43], [-36, 8], [-20, -24], [-22, 7]], [[5328, 1834], [2, 68], [9, 36], [-19, 82], [-35, 31], [-21, 51]], [[5264, 2102], [18, 24], [-9, 46], [9, 82], [25, 4], [28, 86], [-52, 74], [-19, 92], [6, 51], [23, 24]], [[5293, 2585], [5, 36], [5, 5]], [[5303, 2626], [0, -1]], [[5303, 2625], [38, -37], [-16, -27], [3, -44], [46, 15], [94, -37], [38, 13], [52, -14], [45, -26], [47, 21], [41, 77], [99, 45], [25, -15], [15, -29], [30, 2], [8, -20], [21, 12], [8, -39], [27, -24], [40, -6]], [[2917, 1126], [5, -15], [-11, -14], [0, 18], [6, 11]], [[2932, 1223], [5, -20], [-24, -55], [-21, 20], [16, 47], [24, 8]], [[3112, 1460], [-2, -55], [35, -6], [-28, -106], [-18, -25], [-33, 36], [-13, 45], [-18, -26], [-15, 39], [64, 83], [28, 15]], [[3217, 1485], [18, -25], [3, -41], [-32, 29], [-21, 3], [-1, 31], [33, 3]], [[2147, 349], [6, 4], [8, -9], [-5, -12], [-9, 17]], [[2975, 2137], [-1, 6], [2, 6], [4, -12], [-5, 0]], [[2153, 413], [-28, -38], [-61, 82], [-9, 74], [-18, 17], [1, 47], [-13, 41], [-44, 57], [-58, 7]], [[1923, 700], [-13, 102], [22, 68], [7, 45], [28, 12], [8, 48], [-17, -7], [-29, 75], [10, 80], [24, 32], [10, 43], [-22, 27], [-18, 63], [1, 32], [-27, 61], [58, 2], [18, 87], [-18, 48], [27, 47], [-7, 24], [3, 110], [-12, 47], [13, 11], [20, 58], [17, 8], [32, 75], [-41, 46], [1, 51], [-65, 17], [-12, -34], [-42, -8], [-11, 18], [-51, -24], [-6, 20], [15, 42], [-14, 31], [-45, -28], [-14, -22]], [[1773, 2007], [-13, -22], [-4, 58], [31, 55], [-27, -12], [23, 47], [-23, -4], [9, 62], [-25, -31], [-7, 18], [17, 53], [-24, 7], [0, 28], [-18, 2], [2, 36], [15, 40], [20, 8], [13, 29], [17, -12], [41, 31], [2, 44], [48, 53], [58, -21], [16, -32], [112, 8], [90, -9], [28, -20], [89, -29], [93, 36], [6, -24], [46, -17], [38, 23], [43, -37], [27, -7], [38, 27]], [[2554, 2395], [5, -27], [38, -12], [-9, -45], [57, -34], [25, -3], [20, -41], [29, 13], [32, -43], [23, 11], [12, -15], [42, 4], [1, 42], [74, -34], [13, -32]], [[2916, 2179], [8, -47], [23, 21]], [[2947, 2153], [39, -41], [25, 21], [21, -24], [53, 35], [27, -10]], [[3112, 2134], [16, -31], [-19, -17], [-3, -33], [12, -47], [-34, -69], [-71, -68], [-26, -52], [-59, -24], [-62, -40], [-31, -61], [16, -39], [-28, -17], [-28, -90], [-33, -69], [-43, -141], [13, -120], [22, -57], [27, -37], [-36, -55], [-28, -20], [-19, -34], [-28, -129], [6, -68], [-45, -23], [-15, 13], [-48, -59], [-16, -44], [-10, -70], [-26, -58], [-26, 28], [-24, -8], [-9, -31], [-64, 17], [-21, -17], [-21, 13], [-51, 1], [-43, -10], [-10, -36], [-22, -24], [-20, 4], [-32, -25], [-17, -74]], [[2156, 413], [-3, 0]], [[4100, 600], [8, -11], [-2, -12], [-11, 12], [5, 11]], [[4436, 1040], [-2, 5], [-6, 8], [7, 11], [1, -24]], [[3694, 1227], [11, -17], [-6, -26], [-6, 28], [1, 15]], [[3688, 1224], [-6, 0], [-3, 13], [9, 11], [0, -24]], [[4323, 1663], [-13, 1], [2, 13], [11, -8], [0, -6]], [[3691, 1770], [0, -11], [-10, -5], [4, 17], [6, -1]], [[3926, 2238], [-5, -25], [-31, 10], [6, 17], [30, -2]], [[4295, 2999], [2, 30], [-20, 24], [-15, -18], [-22, 14], [-16, -37], [-76, -56], [11, 37], [-26, -30], [-7, -42], [14, -57], [22, -36], [-10, -41], [-16, 6], [-2, -97], [10, -65], [38, -73], [27, -23], [34, -54], [41, -46], [24, -111], [13, -90], [14, -54], [75, -141], [43, -41], [37, -8], [65, 10], [18, -42], [-30, -41], [-1, -38], [12, -20], [64, -60], [52, -35], [47, -69], [60, -49], [26, -53], [31, -94], [-16, -87], [-34, 32], [-8, 57], [-17, 46], [-38, 4], [-33, 28], [-19, 32], [-15, -21], [-34, -99], [3, -32], [-16, -44], [2, -32], [27, -19], [46, -59], [-4, -77], [9, -25], [-12, -36], [-29, 5], [-34, -53], [3, -81], [-44, -78], [-9, -53], [-48, 5], [-1, 75], [14, 10], [14, 54], [-7, 51], [38, 23], [4, 42], [-15, 48], [-10, 100], [-14, 34], [-10, 83], [-19, 57], [-30, -20], [-25, 46], [-24, 19], [10, 42], [-28, 78], [-47, -25], [16, 39], [-20, 30], [-22, -2], [-42, 114], [-17, -11], [-28, 24], [-31, -19], [-17, 47], [-29, 13], [-21, 50], [-24, 29], [-10, 46], [-36, 36], [-19, 67], [-29, 33], [-34, 0], [10, 33], [-22, 52], [-29, 26], [5, 24], [-29, 8], [3, 61], [-12, 66], [-12, 25], [-7, 91], [-18, 57], [-32, 12], [-66, 79], [-57, 19], [-29, -32], [-27, -55], [-7, -40], [-23, -29], [-52, -16]], [[3597, 2506], [-2, 20], [24, 60], [-4, 25], [-31, -14], [-39, 32], [-19, 35], [-2, 48], [24, 38], [-14, 49], [-23, 18], [-14, 48], [27, 7], [29, 35], [6, 42], [-20, 27], [-2, 36], [-19, 21], [1, 29], [25, 28]], [[3544, 3090], [18, -12], [40, 28], [32, -19], [32, 58], [-4, 35], [41, 49], [-1, -50], [19, -36], [26, -15], [8, -65], [17, 15], [-8, 24], [32, 92], [-1, 49], [20, 2], [13, -55], [46, 17], [9, -37], [13, 12], [-13, 46], [5, 47], [38, -19], [-7, 38], [10, 53]], [[3929, 3347], [61, -27], [11, 40], [24, 20], [49, -4], [52, 29], [-11, -23], [33, -83], [93, -38], [52, -8]], [[4293, 3253], [-37, -63], [31, -30], [-20, -48], [18, -11], [-5, -43], [35, -49], [-20, -10]], [[4154, 2534], [2, 24], [-6, -4], [-4, -12], [8, -8]], [[4153, 1989], [0, 0]], [[4358, 925], [40, 19], [31, 28], [20, -16], [48, 46], [-2, -58], [-32, -92], [-13, -70], [2, -47], [25, -85], [-18, -18], [-11, -78], [-66, 37], [-24, 68], [-21, 20], [-22, -4], [-49, 54], [-32, 51], [-35, 25], [-23, -3], [-26, 67], [9, 55], [29, 46], [16, -41], [22, 43], [25, 10], [8, -33], [45, -35], [25, 20], [29, -9]], [[3774, 1253], [-6, -61], [-19, -31], [-28, 5], [-5, 44], [-21, 47], [1, 41], [19, 137], [-17, 7], [11, 55], [-4, 57], [-16, 72], [-17, -3], [-4, 44], [11, 50], [33, -22], [27, 23], [52, 96], [24, -22], [14, -18], [-6, -28], [36, -136], [-23, -70], [12, -49], [-10, -164], [-10, -94], [-30, 22], [-24, -2]], [[5670, 1511], [-22, -16], [-11, 7], [28, 33], [5, -24]], [[5857, 1650], [11, -6], [-13, -18], [-9, 17], [11, 7]], [[5901, 2008], [-5, -41], [12, -48], [34, -55], [59, -49], [22, -9], [-14, -64], [-43, -6], [-40, 29], [-32, -30], [-49, 4], [-11, -43], [-28, -55], [-55, -48], [-7, -26], [-52, -84], [11, 38], [-5, 35], [70, 77], [-5, 16], [-32, -17], [-48, 4], [-4, 34]], [[5679, 1670], [36, 62], [-3, 79], [34, 35], [-5, 63], [-29, 28]], [[6881, 594], [-10, 6], [-14, -91], [4, -19], [-11, -54], [-11, 0], [-2, -64], [-18, -12], [-6, -36], [-26, 27], [7, 27], [-20, 83], [44, 78], [0, 54], [-19, 34], [-37, -44], [-6, -43], [-32, -18], [-65, 75], [-24, -13], [-54, -97], [-13, -55], [-10, 28], [-21, -47], [-61, -3], [-38, -29], [-49, 41], [-38, 101], [-77, 72], [-74, 23], [-12, -30], [-1, -70], [-19, -76], [-16, 16], [-65, -51], [-8, 23], [-28, 8], [-24, 31], [-12, 54], [7, 33], [-18, 23], [-10, -31], [-25, 17], [-2, 32], [-37, 10], [1, -30], [-19, -38], [-17, 24], [9, 19], [-35, 0], [-7, -29], [-35, 8], [30, 32], [48, 2], [-3, 32], [31, 34], [-83, -21], [-14, 15], [-20, -18], [7, 44], [17, -8], [16, 49], [-17, -6], [-3, 38], [-26, -9], [0, 66], [-22, 19], [27, 21], [-1, 66], [-42, 15], [-12, 48], [-20, -30], [-39, 45], [27, 26], [-15, 70], [18, 9], [14, -37], [5, -58], [47, 26], [-17, 9], [-25, 79], [19, 2], [18, 57], [-21, -7], [2, 43], [-30, 56], [35, 57], [-3, 28], [-92, -30], [8, 41], [0, 87], [18, 21], [11, 47], [37, 58], [31, -3], [33, 17], [17, -37], [37, 0], [-12, 49], [40, -7], [-15, -21], [98, 1], [20, -10], [22, 19], [-42, 24], [24, 33], [64, 13], [42, 19], [-65, 0], [-37, 61], [5, 47], [18, 23], [74, -25], [28, -1], [15, 18], [63, -36], [45, 4], [19, 30], [0, 31], [82, 78], [15, 33], [39, 32], [35, 12], [45, 38], [113, -20], [41, 0], [28, 41], [21, -21], [-5, -20], [15, -50], [35, -35], [47, 27], [19, -30], [1, -45], [36, -60], [19, 37], [41, -23], [6, -30], [61, -40], [12, 28], [23, -44], [49, -16], [43, 10], [24, 24], [4, 0], [-249, -1160]], [[4391, 331], [-25, 10], [-3, 25], [21, -12], [7, -23]], [[4358, 378], [-10, 5], [8, 11], [9, -11], [-7, -5]], [[2611, 3110], [12, -28], [-4, -23], [-18, 45], [10, 6]], [[2590, 3179], [18, -13], [7, -12], [-34, 25], [9, 0]], [[2509, 3378], [-6, -4], [-5, 18], [10, -1], [1, -13]], [[2405, 3475], [6, -8], [-20, 4], [0, 21], [14, -17]], [[3454, 3190], [8, 22], [55, 11]], [[3517, 3223], [8, -80], [19, -53]], [[3597, 2506], [-3, -7], [-4, -6]], [[3590, 2493], [-3, 5], [-5, -11]], [[3582, 2487], [-24, -19], [-1, -27], [-46, -41], [-15, -33], [9, -23], [-92, -43], [-25, 40], [-32, 7], [-6, 38], [-26, -7], [12, 27], [-28, 4], [-11, -26], [-29, 6], [-6, 24], [-35, 1], [-11, 25], [-19, -5], [-62, -68], [-30, -49], [-9, -45], [2, -106], [14, -33]], [[2947, 2153], [1, 30], [-32, -4]], [[2554, 2395], [15, 4], [20, 49], [33, 297], [-8, -10], [14, 236], [5, 21], [36, -67], [2, 27], [-50, 79], [14, 53], [-4, 97], [-78, 67], [-6, 36], [-30, 51], [14, 63], [-19, 31], [2, 40], [-15, -17], [-31, 37], [19, 11], [-12, 28], [-36, -8], [5, 36], [-34, -14], [-51, 55], [-36, 6], [-10, 23], [-49, -22], [-7, 46], [-28, 26], [45, 11], [-2, 24], [-27, 30], [21, 29], [-44, -19], [-3, 41], [24, 37], [29, 4], [37, 25], [14, -29], [4, 29], [27, -12], [7, 41], [47, 9], [46, -99], [42, 48], [11, -29], [41, 37], [1, -25], [52, 11], [-20, 23], [0, 77], [-6, 53], [-24, 48], [-13, 89], [38, -19], [23, 16], [19, -24], [-9, -18], [13, -35], [41, -18], [46, -7], [21, -17], [44, 38], [28, 9], [-35, 12], [15, 65], [49, 40], [56, 22], [35, 63], [6, 25], [4, 161], [45, 39], [62, 21]], [[3039, 4502], [-1, 0], [8, -67]], [[3046, 4435], [22, -32], [40, 12], [15, -66], [42, -23], [1, -34], [41, 5], [20, -23], [-7, -76], [33, -12], [25, 16], [3, 26], [21, 15], [-9, -45], [8, -52], [10, 3], [59, -83], [35, 12]], [[3405, 4078], [20, -27], [19, 15], [24, -10]], [[3468, 4056], [17, -6], [23, -72], [14, 10], [49, -28], [14, 18], [29, -38], [32, 1], [30, -22], [-11, -37], [-33, -57], [-6, -70], [-21, -71], [6, -26], [-11, -60], [7, -55]], [[3607, 3543], [-23, -42], [-42, 19], [-16, -40], [20, -3], [-50, -97], [-18, -11], [-1, -51], [-34, -45], [-8, -48], [9, -17], [-20, -62], [37, 30], [-7, 14]], [[3737, 2027], [-22, 55], [19, 87], [44, 45], [20, -14], [6, 87], [9, 7], [7, -51], [-3, -51], [9, -28], [2, -118], [-17, -43], [0, -68], [-20, -92], [-49, 53], [15, 36], [-25, 9], [5, 56], [-18, 10], [18, 20]], [[3385, 6704], [19, -6], [-3, -11], [-20, 14], [4, 3]], [[3367, 6712], [-8, 12], [4, 9], [6, -9], [-2, -12]], [[3430, 6731], [-9, 3], [3, 11], [16, -2], [-10, -12]], [[3348, 6747], [2, -33], [-14, 7], [4, 60], [8, -34]], [[3341, 6894], [12, -21], [-27, 4], [3, 28], [12, -11]], [[3373, 6887], [-22, -2], [-6, 31], [19, 8], [9, -37]], [[3391, 6959], [-2, -41], [-15, -4], [-6, 42], [23, 3]], [[3346, 6962], [1, -22], [-11, 13], [4, 17], [6, -8]], [[3327, 7029], [2, -33], [-19, 25], [3, 42], [14, -34]], [[3319, 7084], [15, -6], [4, -23], [-22, 25], [3, 4]], [[3297, 7196], [11, -15], [-5, -3], [-12, 17], [6, 1]], [[3287, 7222], [-3, -10], [-7, 19], [6, 6], [4, -15]], [[3304, 7254], [11, -7], [-21, -16], [0, 26], [10, -3]], [[3311, 7460], [20, -11], [-23, -21], [-14, 17], [17, 15]], [[3324, 7490], [9, -3], [-6, -19], [-12, 29], [9, -7]], [[3396, 7570], [8, -25], [-26, -4], [2, 27], [16, 2]], [[3385, 7579], [15, 8], [-2, -10], [-23, 3], [10, -1]], [[3437, 7584], [-22, -26], [-8, 29], [15, 18], [15, -21]], [[3453, 7609], [12, -11], [-26, 1], [-8, 9], [22, 1]], [[3530, 7689], [1, -9], [-27, -12], [2, 20], [24, 1]], [[3520, 7722], [12, 1], [-4, -23], [-11, 10], [3, 12]], [[3644, 7784], [-14, -16], [-12, 9], [5, 11], [21, -4]], [[3617, 7767], [-17, -20], [-14, 30], [19, -9], [12, -1]], [[3688, 7808], [-13, -1], [-2, 15], [7, 0], [8, -14]], [[3675, 7805], [-20, -6], [-9, 12], [16, 17], [13, -23]], [[3665, 7855], [-33, 9], [22, 27], [20, -22], [-9, -14]], [[3743, 7982], [3, -23], [-9, -9], [-48, -5], [54, 37]], [[4032, 8209], [10, -12], [-3, -13], [-9, 6], [2, 19]], [[4016, 8203], [21, -38], [-26, 9], [-11, 40], [16, -11]], [[4029, 8214], [-4, -14], [-14, 20], [13, 5], [5, -11]], [[4014, 8284], [-15, -2], [-29, -12], [30, 26], [14, -12]], [[3970, 8273], [-9, -5], [5, 21], [37, 13], [-33, -29]], [[4077, 8339], [-24, -18], [-5, 3], [8, 15], [21, 0]], [[4132, 8350], [-12, -26], [-18, 6], [22, 38], [8, -18]], [[4148, 8448], [9, -32], [-45, -48], [4, 39], [32, 41]], [[4097, 8500], [-4, -29], [-18, 7], [8, 21], [14, 1]], [[4185, 8576], [-28, -26], [-13, 3], [12, 25], [29, -2]], [[4171, 8633], [5, -19], [-14, -14], [-26, -13], [35, 46]], [[4193, 8666], [8, -16], [-13, -6], [-5, 9], [10, 13]], [[4210, 8701], [-7, -21], [-11, 8], [2, 16], [16, -3]], [[4354, 8888], [-4, -29], [-24, 18], [8, 16], [20, -5]], [[4372, 8973], [-1, -7], [-18, -6], [16, 18], [3, -5]], [[4452, 9123], [20, -13], [-36, -3], [1, 15], [15, 1]], [[4470, 9121], [-10, 0], [-2, 8], [7, 12], [5, -20]], [[4226, 9146], [4, -28], [-39, -40], [22, 62], [13, 6]], [[4259, 9146], [-17, -20], [-7, 21], [29, 17], [-5, -18]], [[4428, 9197], [-11, 0], [10, 15], [7, -6], [-6, -9]], [[4354, 9216], [-5, -17], [-5, 12], [-9, 10], [19, -5]], [[4323, 9204], [8, -25], [-30, -5], [-14, -24], [-18, 16], [2, 31], [52, 7]], [[4457, 9250], [-44, -49], [-64, -29], [34, 45], [-12, 15], [29, 16], [57, 2]], [[4597, 9248], [-34, -10], [10, 33], [18, 6], [6, -29]], [[4413, 9266], [-19, 17], [45, -1], [-12, -16], [-14, 0]], [[4676, 9338], [-30, -10], [1, 14], [19, 24], [10, -28]], [[4689, 9365], [0, 17], [24, -15], [-24, -20], [0, 18]], [[4435, 9370], [-13, 3], [4, 11], [9, 0], [0, -14]], [[4599, 9397], [16, -2], [0, -22], [-34, 22], [18, 2]], [[4709, 9401], [-6, 12], [11, 14], [11, -8], [-16, -18]], [[4531, 9410], [-44, -16], [16, 39], [60, 57], [-4, -47], [-28, -33]], [[4870, 9644], [22, -37], [-26, -17], [3, -25], [-71, -16], [-22, 16], [33, 1], [-12, 32], [20, 22], [48, -2], [5, 26]], [[5074, 9624], [-12, -1], [2, 26], [17, 3], [-7, -28]], [[6126, 9633], [7, -5], [-42, -16], [19, 42], [16, -21]], [[4965, 9638], [-22, -5], [5, 22], [37, 15], [-20, -32]], [[5110, 9687], [14, -7], [-18, -17], [-20, 14], [24, 10]], [[4913, 9697], [40, -21], [-19, -43], [-32, -13], [-44, 43], [13, 19], [42, 15]], [[4866, 9695], [20, 2], [-31, -24], [0, 35], [11, -13]], [[5101, 9699], [-8, -2], [1, 22], [10, -12], [-3, -8]], [[4950, 9703], [-21, 5], [1, 12], [9, 0], [11, -17]], [[5088, 9709], [-21, -19], [-23, 16], [23, 36], [27, -11], [-6, -22]], [[4911, 9747], [3, -33], [-14, -4], [-12, 9], [23, 28]], [[4967, 9746], [13, -22], [37, -16], [-37, -14], [-20, 43], [7, 9]], [[5195, 9750], [-6, 5], [4, 29], [9, -9], [-7, -25]], [[5303, 9783], [30, -16], [5, -21], [-63, 11], [5, 26], [23, 0]], [[5394, 9846], [18, -40], [-31, -41], [-32, -10], [-23, 46], [68, 45]], [[5430, 9871], [34, -24], [-42, -27], [-12, 50], [20, 1]], [[5458, 9954], [1, -27], [-20, 12], [6, 20], [13, -5]], [[5537, 9977], [0, -19], [-19, 9], [12, 14], [7, -4]], [[5638, 9995], [24, -30], [33, -13], [-73, -20], [-28, 31], [44, 32]], [[1861, 9999], [-4, -39], [-79, -26], [-29, -33], [-17, 16], [68, 40], [21, 35], [40, 7]], [[6218, 9625], [10, -38], [-9, -39], [-38, 2], [-25, 23], [-18, -49], [-25, -23], [-64, -22], [-11, -44], [-32, -24]], [[6006, 9411], [-14, 22], [4, 30], [54, 68], [-24, 57], [-82, 36], [-26, 25], [-31, 48], [-37, -13], [-52, -33], [-27, 10], [-40, -6], [-34, -55], [-19, -6], [-17, -47], [-1, -42], [-16, -48], [8, -50], [-16, -35], [-52, -20], [-9, -47], [-29, -20], [-21, 28], [-37, 11], [-46, 29], [-22, -27], [-61, -27], [-19, 19], [-67, 7], [-6, 30], [-39, 52], [-41, 69], [-39, 7], [-31, -29], [14, -26], [-14, -13], [-32, 17], [-14, -18]], [[5071, 9414], [-58, -5], [26, -30], [-11, -68], [-31, -33], [31, -17], [-35, -35], [-100, 42], [-44, 0], [-24, 20], [-29, -11], [-1, -103], [-30, -52], [-65, 37], [-58, -53], [-37, -97], [-31, -13], [-8, -24], [35, -60], [-3, -41], [-42, -46], [-42, -78], [-27, -30], [6, -59], [-47, -33], [-59, -8], [12, -77], [-9, -39], [-5, -105], [-23, -63], [-75, -138], [53, -39], [5, -65], [-25, -53], [-79, 22], [-62, -36], [-57, -99], [3, -39], [-23, -45], [26, -79], [-14, -21], [6, -52], [-7, -40], [25, -97], [-17, -139], [29, -39], [21, -9], [30, -49], [-22, -91], [-48, -16], [14, -62], [25, -65], [-13, -60], [3, -49], [-42, -59], [-32, -8], [5, -28], [-24, -58], [15, -84], [-17, -90], [-24, -7], [-1, 26]], [[4040, 6665], [-8, 30], [-52, 26], [-10, -9], [-25, 71], [7, 47], [-11, 36], [10, 36], [-13, 7], [-5, -41], [12, -45], [-13, -15], [-1, -73], [-13, 7], [-5, -40], [-40, -46], [-30, 0], [-47, -35], [20, 1], [-106, -158], [-17, -3], [-26, -39], [-10, 34], [-13, -40], [-38, -17], [-65, 3], [-53, 25], [19, 28], [-78, 45], [-4, 22], [-29, 15], [-26, 63], [9, 78], [21, -31], [33, -6], [-18, 50], [42, 52], [-20, 35], [-45, -27], [-9, 30], [-13, -37], [-33, 63], [34, 62], [29, -16], [17, 22], [-28, 26], [36, 28], [20, 71], [47, 68], [-42, -30], [-37, -53], [0, -37], [-20, 4], [3, 33], [-16, 21], [-16, -20], [-22, 13], [-5, 49], [14, 37], [13, -11], [-11, 16], [41, 36], [-1, -55], [-15, -8], [8, -8], [10, 15], [-2, 77], [-18, -34], [-26, -18], [-42, 65], [43, -25], [-2, 31], [-27, 6], [-3, 56], [46, -6], [51, 26], [44, -20], [36, 35], [41, -26], [43, 17], [2, 13], [-46, -22], [-51, 41], [-7, -40], [-30, 19], [-68, -13], [-21, -15], [-14, 28], [-26, 9], [-8, 55], [46, 37], [-41, 21], [-2, 29], [41, 29], [3, 17], [41, -19], [89, -5], [-123, 33], [-31, -11], [18, 35], [-27, 38], [12, 14], [31, -42], [-3, 34], [56, 3], [11, 30], [76, 40], [-45, 2], [26, 21], [-31, -2], [7, 22], [33, -14], [18, 26], [36, 0], [48, -30], [0, 36], [35, 15], [33, -3], [-6, 16], [-78, -25], [-8, 16], [-38, -6], [-7, 57], [41, 22], [25, -27], [54, 17], [12, 37], [29, -41], [-1, -22], [32, -1], [-51, 65], [43, 5], [-2, 11], [-12, -3], [-18, 19], [25, 5], [2, -5], [-3, 18], [32, 14], [7, 23], [49, -19], [-11, 40], [60, 38], [29, -60], [-14, -27], [31, -1], [-1, 31], [23, 7], [56, -13], [13, 13], [-27, 23], [40, 47], [48, 22], [-41, 24], [45, 36], [-27, 4], [-33, -24], [13, -30], [-19, -29], [-55, -41], [-56, -18], [-14, 49], [26, 25], [-54, -33], [0, 30], [73, 45], [-29, 5], [26, 66], [49, 45], [0, 24], [32, 6], [8, 36], [23, -43], [23, -14], [16, 48], [-13, 37], [50, 26], [-23, 5], [30, 36], [-48, -39], [-27, 3], [18, 28], [49, 18], [17, 22], [19, -8], [50, 24], [37, 57], [-48, -52], [-18, 34], [33, 40], [-7, 48], [-19, -15], [-7, 28], [50, 89], [27, 28], [-36, -6], [18, 25], [74, 29], [50, -1], [-44, 14], [-62, -25], [33, 28], [-36, 16], [19, 14], [9, 61], [26, 11], [6, 36], [30, 1], [-24, 35], [71, 12], [15, 49], [48, 15], [13, -20], [22, 20], [30, -13], [11, 13], [-44, 9], [11, 18], [-56, -26], [2, 16], [-40, -9], [37, 50], [19, -13], [25, 18], [-36, 12], [31, 21], [52, -29], [45, 31], [-42, -17], [-26, 4], [-7, 33], [45, 28], [-25, 15], [-61, -44], [-5, 24], [25, 5], [-25, 21], [23, 19], [34, -1], [55, 17], [20, 16], [-6, 0], [-8, -7], [-15, 7], [-14, 4], [-34, 3], [26, 27], [47, -1], [4, 32], [15, -21], [-7, -38], [22, -40], [7, 29], [19, -25], [4, 32], [-17, 17], [10, 40], [-30, 25], [48, -17], [-42, 26], [53, 15], [14, -22], [81, 28], [0, 29], [-56, -27], [-58, 1], [11, 56], [68, 31], [52, 37], [-31, 2], [30, 53], [44, 21], [-8, 32], [33, 55], [34, -51], [37, 9], [-52, 31], [3, 20], [39, 9], [19, -43], [38, -14], [-5, -33], [19, -1], [-14, 44], [-22, -1], [-23, 50], [16, 48], [23, 13], [54, 6], [-12, -34], [20, -15], [2, 38], [16, 1], [17, 48], [28, -15], [-25, -130], [-31, -39], [40, 33], [25, 51], [3, 52], [73, 29], [25, 42], [58, -55], [3, 43], [-11, 20], [-36, 9], [-35, 32], [43, 29], [32, -45], [-5, 33], [49, 7], [12, -13], [67, -11], [7, -49], [34, -21], [23, 20], [-41, 19], [26, 12], [-14, 24], [32, 18], [-6, 20], [46, 40], [44, -8], [-22, 19], [26, 38], [30, -17], [-8, 33], [-28, 4], [12, 28], [24, -24], [5, 55], [54, -15], [11, -36], [20, 18], [52, 10], [5, -10], [-95, -97], [18, 7], [-4, -61], [-25, -21], [-2, -41], [20, 0], [45, 60], [-14, 7], [67, 82], [6, 24], [34, 43], [36, 24], [6, -36], [-11, -32], [-34, -17], [35, -2], [-17, -75], [71, 71], [0, 32], [44, 29], [-45, 20], [25, 7], [-10, 23], [33, -20], [1, 38], [35, -16], [35, 13], [-1, -24], [41, -4], [-11, -32], [-25, -21], [-52, 1], [42, -15], [-55, -36], [74, 27], [-8, -25], [-44, -36], [37, -23], [-1, -71], [10, 76], [31, 83], [30, 42], [30, 3], [39, -27], [-6, -25], [48, 9], [-11, -29], [35, 25], [91, -81], [13, 11], [18, -46], [-60, -10], [-44, -49], [-104, 14], [-53, 13], [-17, -14], [121, -41], [-27, -19], [33, 2], [-6, -47], [35, -2], [24, 16], [-5, 25], [36, -16], [40, -3]], [[3769, 7934], [1, 7], [9, 0], [5, -6], [-13, -4], [14, -13], [-75, -37], [-25, 9], [30, 37], [47, 14], [7, -7]], [[4440, 9399], [21, -13], [12, -8], [4, -69], [-30, -21], [-28, 17], [39, 17], [-2, 15], [-59, -36], [-29, 17], [36, 22], [36, 7], [0, 52]], [[5318, 9854], [38, 23], [-15, 17], [33, -3], [8, 17], [-14, -44], [-45, -39], [-82, -15], [22, 35], [-37, -3], [42, 27], [50, -15]], [[4617, 9323], [-12, -43], [-43, -4], [-14, -38], [-24, 9], [-14, -35], [-31, 15], [-24, -11], [-15, 0], [30, 40], [-4, 28], [31, 20], [-7, 48], [22, 39], [29, 2], [-4, -49], [14, -5], [-20, -42], [32, 36], [17, 44], [21, -14], [16, -40]], [[4653, 9457], [26, 32], [-22, 24], [50, -5], [12, 13], [-25, 14], [6, 16], [36, -21], [22, 36], [24, -27], [3, -39], [-20, -9], [7, -38], [-53, -7], [-75, -28], [26, 22], [-17, 17]], [[3846, 3534], [-44, 36], [-28, 38], [12, -41]], [[3786, 3567], [-31, -5], [-34, 39], [-23, -35], [6, -22], [-97, -1]], [[3468, 4056], [17, 93], [-31, 25], [-12, 63]], [[3442, 4237], [3, 26], [26, 28], [-5, 45], [-15, 3], [-2, 34], [-21, 37]], [[3563, 5092], [12, 25], [-31, 11], [7, 58], [15, 22], [82, 15], [24, -46], [-12, -14], [17, -25], [12, 27], [-7, 26], [35, -16], [-9, 38], [10, 47], [32, -7], [39, 7]], [[3789, 5260], [-22, 9], [-20, 40], [1, 60], [-21, 5], [-3, 31], [26, 8], [17, 25], [-36, 62], [-3, 44]], [[3815, 5521], [16, 15], [51, -53], [-2, -35], [85, -62], [34, 7], [-1, -44], [-36, -38], [16, -21], [32, 14], [31, -30], [5, 25], [26, 43], [42, 4], [27, 36], [18, 47], [42, -30], [18, 19], [8, -42], [40, -49], [27, 14], [9, -24], [3, 29], [45, -64]], [[4351, 5282], [-4, -8], [3, -8]], [[4350, 5266], [-37, -9], [8, 61], [-15, -10], [11, -24], [-10, -18], [18, -29], [32, -20]], [[4357, 5217], [16, -117], [-7, -61], [-22, -25], [-3, -29], [59, -75], [-12, -43], [17, -46], [8, -48], [-20, -75], [15, -35], [1, -43], [24, -19], [9, -58], [-24, -103]], [[4418, 4440], [-22, -4], [-14, 46], [-22, 6], [6, -42], [-84, -46], [-17, -32], [-24, -4], [-25, -24], [-56, -29], [-26, -62], [-23, 41], [19, -73], [31, -38], [-15, -45], [46, -113], [23, -9], [20, -49], [34, -49], [14, 3], [24, -50]], [[4307, 3867], [-12, -67], [-22, 18], [-13, -57], [-41, -31], [-33, -40], [28, -75], [-11, -33], [14, -3], [2, -61], [-29, 17], [-2, 31], [-30, -10], [-35, 21], [-2, -28], [-61, -4], [-41, -52], [-31, -2], [-21, 33], [-43, 16], [5, -37], [-16, -37], [-41, 61], [-26, 7]], [[3789, 5260], [10, -2], [30, -68], [-19, 63], [-11, 5], [-2, 4], [-8, -2]], [[4046, 5305], [-3, -14], [-11, 3], [11, 14], [3, -3]], [[3753, 5427], [-9, 9], [4, 5], [14, 1], [-9, -15]], [[4019, 5430], [6, -18], [-34, 15], [13, 19], [15, -16]], [[4259, 5477], [27, -18], [-7, -31], [22, -34], [-30, 0], [-26, -25], [-17, 23], [15, 13], [-9, 44], [25, 28]], [[3718, 5489], [-20, 6], [7, 10], [10, 1], [3, -17]], [[3697, 5544], [-11, -1], [9, 39], [-2, -18], [4, -20]], [[3787, 3566], [1, -3]], [[3787, 3566], [0, 0]], [[1637, 5304], [0, -38], [-11, 21], [-23, 7], [34, 10]], [[2051, 5326], [18, -26], [-26, 0], [11, -38], [3, -60], [14, -18], [-3, -51], [14, -117], [-25, -82], [1, -33], [-20, -51], [2, -49], [-52, 16], [-7, -24], [-60, -7], [-18, -37], [-27, -10], [-19, -34], [-28, -7], [-50, -62], [-18, 6], [-47, -25], [-14, 11], [-47, -28], [30, 46], [3, 31], [-57, -36], [-6, 21], [39, 45], [-39, -22], [-39, 35], [19, 28], [37, 24], [3, 16], [-62, -8], [-1, 21], [33, 29], [34, -14], [4, 38], [-13, 11], [30, 19], [8, 26], [38, 0], [36, 20], [-5, 30], [-17, -37], [-45, 4], [-31, -12], [37, 43], [16, 50], [-14, 1], [23, 57], [38, -1], [-1, 34], [-77, -3], [3, 30], [-32, -13], [11, 20], [-26, -2], [-18, 47], [37, 17], [-6, 39], [38, 10], [0, 27], [-39, -11], [12, 23], [-23, 76], [19, 30], [70, -13], [9, -37], [10, 40], [65, -4], [-21, 22], [44, 45], [16, 34], [-61, -7], [-14, 21], [27, 36], [26, 2], [-16, 28], [21, 61], [54, 12], [17, 19], [20, -64], [-7, 68], [22, 5], [-6, 21], [50, -45], [-34, -41]], [[1942, 5592], [-18, -18], [-16, -72], [-33, -3], [10, -32], [-48, -41], [38, -71], [60, -25], [29, 82], [19, -19], [10, -38], [17, -9], [2, -37], [39, 17]], [[6102, 3005], [30, 48], [6, 6], [-25, -40], [-11, -14]], [[6420, 3126], [16, -4], [22, 3], [7, -12], [-45, 13]], [[6365, 3153], [-46, 17], [-14, 11], [51, -21], [9, -7]], [[5240, 3768], [3, 50], [19, 31], [4, 40], [20, 61]], [[5286, 3950], [35, -20], [-17, 47], [3, 54], [-10, 44], [52, 118], [73, 118], [25, 4], [15, 37], [-15, 79], [17, 3], [-24, 46], [-4, 35], [-27, 56], [-4, 49]], [[5405, 4620], [17, 35], [26, -17], [29, 37], [17, 44], [37, 1], [52, 18], [65, -6], [72, -21], [50, -27], [37, -2], [8, -41], [48, 0], [5, -36], [10, 38], [29, -12], [15, 26], [16, -35], [29, 7], [14, -41], [15, 43], [29, 18], [22, -70], [34, 32], [26, -14], [33, 14], [24, -49], [20, -19], [11, 28], [-14, 72], [17, 59], [33, 70], [33, -8], [25, 20], [33, -5]], [[6322, 4779], [14, -17], [38, 12], [14, 66], [64, -21], [30, 34], [32, -4], [6, -19], [31, 19], [28, -51], [5, -60], [32, -36], [-1, -29], [-28, -9], [20, -85], [-13, -33], [48, -6], [15, -17], [39, 5], [20, -52], [22, -89], [-11, -12], [8, -40], [28, -36], [16, 22], [30, -1], [19, -38], [13, 6], [23, -28], [36, 37], [58, 23], [19, -36], [14, -58], [31, -49], [18, 11], [1, 33], [58, -40], [28, -30], [27, 15], [17, -36], [26, -1], [27, -50], [35, 13], [-8, -36], [11, -58], [-25, -54], [-27, -7], [9, -34], [22, -12], [-28, -29], [-8, -44], [20, -1], [20, -85], [-17, -42], [-9, -78], [-104, 4], [-11, -47], [-43, -19], [-17, -87], [2, -52]], [[7046, 3411], [-71, -3], [-28, -56], [-8, 14], [-28, -18], [-24, -40], [-12, 15], [-57, -30], [-32, -4], [-58, -78], [-11, 18], [-24, -44], [-30, -29], [8, -66], [19, -70], [32, -82], [17, -20], [24, 8], [18, 39], [14, -29], [18, 27], [50, -10], [-19, -53], [3, -45], [-25, -17], [-20, 12], [-22, -15], [-24, 32], [-70, -75], [-28, -5], [-33, -25], [-16, -51], [-41, -44], [-27, 5], [-38, 45], [21, 15], [-6, 46], [12, 39], [-7, 45], [-16, 25], [-17, -8], [-41, 54], [-43, -4], [1, 32], [38, 48], [102, 82], [-14, 13], [-4, 46], [-11, -28], [-31, 49], [-13, -23], [-37, -1], [-33, -16], [-27, 15], [-49, 59], [21, 28], [-48, 26], [87, -21], [19, 35], [-56, 9], [-10, 47], [-9, -47], [-42, 5], [-55, -12], [-27, -23], [5, -20], [-34, -100], [-40, -71], [-17, 7], [-6, -34], [-23, -29], [-10, 58], [-4, -94], [14, -3], [3, -42], [-11, -29]], [[6085, 2895], [-1, 36], [-36, 27], [-61, -59], [-51, 25], [-15, 39]], [[5921, 2963], [32, 10], [-1, 44], [30, 49], [2, 33], [22, 11], [7, 50], [-9, 21], [1, 53], [25, 23], [4, -49], [29, 35], [15, -34], [13, 30], [15, -35], [27, 9], [-19, 39], [2, 79], [-42, 38], [5, 28], [-5, 76], [-17, -12], [-32, 69], [13, 92], [-13, 29], [-19, -12], [-18, 49], [-31, 10], [-17, 22], [-32, 4], [-37, 57], [-28, 6], [-37, -31], [-37, 9], [-25, -37]], [[5744, 3728], [-35, -12], [-15, -61], [-102, -26], [-16, -34], [-26, -17], [-37, 63], [-37, -12], [-51, 25], [-47, 1], [-27, 28], [-27, -40]], [[5324, 3643], [-15, 46], [-17, -4], [-12, 39], [-15, 0], [-9, 44], [-16, 0]], [[6138, 3212], [33, -77], [9, 14], [-33, 70], [-9, -7]], [[6570, 3115], [7, 19], [30, -25], [20, -33], [-3, -28], [33, 35], [-12, -32], [36, -32], [18, -92], [31, -22], [-7, 25], [-38, 91], [-23, 97], [-20, 36], [-5, -45], [-18, 2], [13, 34], [-39, 42], [-16, -40], [-6, 18], [-36, 7], [35, -57]], [[5051, 6939], [-14, -4], [-5, 0], [7, 11], [12, -7]], [[5051, 6952], [11, 8], [8, -7], [-5, -11], [-14, 10]], [[5012, 6967], [14, -24], [-6, -10], [-17, 19], [9, 15]], [[5028, 6974], [6, 1], [-4, -18], [-7, 8], [5, 9]], [[4963, 6995], [-11, -19], [-6, 15], [8, 21], [9, -17]], [[4992, 7043], [40, -26], [-11, -30], [-17, 24], [1, -46], [-31, -4], [-13, 53], [31, 29]], [[5275, 6959], [0, -19], [-6, -1], [-4, 22], [10, -2]], [[5185, 6979], [-3, -10], [-11, -2], [6, 21], [8, -9]], [[5212, 6991], [-15, -18], [-6, 2], [5, 19], [16, -3]], [[5225, 6976], [-7, 13], [12, 10], [-3, -11], [-2, -12]], [[5633, 7001], [-8, 16], [3, 5], [11, -14], [-6, -7]], [[5319, 6994], [-17, -54], [-24, 0], [-2, 52], [43, 2]], [[5256, 7010], [-22, 5], [6, 13], [22, -6], [-6, -12]], [[5273, 7032], [-7, -11], [-6, 8], [10, 9], [3, -6]], [[5244, 7040], [13, 3], [1, -4], [-11, -4], [-3, 5]], [[5221, 7027], [-19, 16], [11, 21], [12, -31], [-4, -6]], [[5165, 7088], [-2, -18], [-6, 5], [-7, 18], [15, -5]], [[5150, 7185], [-9, 17], [6, 5], [8, -11], [-5, -11]], [[5122, 7841], [13, -13], [18, -9], [-13, -16], [-18, 38]], [[5232, 7842], [6, 10], [15, -7], [-13, -15], [-8, 12]], [[5153, 7848], [-4, -8], [-11, 12], [14, 9], [1, -13]], [[5315, 7975], [0, -12], [-6, -4], [-7, 12], [13, 4]], [[5548, 8328], [-27, -28], [-8, 19], [11, 12], [24, -3]], [[5468, 8535], [-16, 61], [-33, 44], [-9, 62], [27, 35], [1, 52], [12, 16], [-48, 94], [21, 72], [-37, 18], [14, 28], [-7, 81], [18, 14], [-56, 54], [-11, 46], [-28, 26], [-57, 23], [-26, 0], [-17, 25], [-51, 32], [-60, 77], [-34, 19]], [[6006, 9411], [-56, -35], [39, -17], [-38, -80], [23, -93], [71, -34], [39, -70], [40, -38], [-10, -49], [-44, -57], [-48, -84], [-1, -42], [49, -95], [8, -39], [34, -66], [20, -77], [2, -46], [-44, -8], [2, -82], [-15, -25], [28, -9], [-2, -30], [-26, -28], [22, -54], [31, -3], [13, -39], [-24, -17], [8, -50], [59, -48], [-6, -62], [-34, -55], [-25, -14], [58, -77], [37, -23], [45, -50], [3, -21], [36, -58], [-37, -110], [-37, -57], [-31, -31], [-96, -161], [-27, -30], [-38, -65], [-46, -40], [-73, -93], [-38, -57]], [[5877, 7092], [-40, -24], [-31, 28], [-19, -21], [-77, -29], [-34, 21], [-9, -59], [-23, 0], [-6, 33], [-19, -33], [-34, 0], [-3, -17], [-65, -15], [-14, -36], [-12, 21], [-85, -32], [-20, 0], [-20, -32], [-39, -7], [38, 30], [-16, 5], [17, 27], [-29, 6], [-6, 13], [-3, -11], [-4, -16], [-4, 20], [11, 9], [-9, 18], [2, 32], [-40, -26], [-8, 11], [20, 36], [-38, 2], [-47, 40], [-4, 28], [-22, -37], [-29, 41], [5, 70], [-15, 43], [18, -2], [12, 42], [-6, 100], [23, -12], [-20, 33], [-18, 79], [-15, 13], [11, 102], [-23, 13], [7, 54], [-13, 21], [16, 49], [27, 26], [4, 32], [21, -11], [-21, 49], [44, 14], [2, -23], [52, 40], [-20, 38], [26, 8], [18, 59], [27, -16], [19, 46], [42, 23], [1, 41], [63, 54], [6, 37], [40, 41], [8, 39], [39, 52], [34, 14], [21, -27], [12, 22], [-16, 26], [25, -7], [-26, 43], [11, 36], [5, 62], [-30, 33], [-45, 8], [-16, 48], [-16, -10], [-27, 15]], [[4672, 6214], [-1, -32], [-47, -180], [-8, -60], [-18, -33], [-1, 86], [24, 91], [11, 5], [28, 112], [12, 11]], [[4913, 6391], [14, -7], [-34, -17], [5, 19], [15, 5]], [[4073, 6410], [-8, -26], [-16, -3], [-2, 25], [26, 4]], [[4079, 6461], [2, -33], [-33, -11], [-10, 21], [27, 34], [14, -11]], [[4649, 6477], [-2, -8], [-7, 29], [14, -13], [-5, -8]], [[4816, 6658], [-5, -11], [-11, -6], [1, 12], [15, 5]], [[4800, 6674], [-9, -16], [-8, 5], [5, 11], [12, 0]], [[4741, 6647], [-6, 2], [1, 36], [8, -19], [-3, -19]], [[4828, 6683], [-6, -13], [-7, 6], [13, 23], [0, -16]], [[4835, 6747], [2, -8], [-3, -9], [-19, 19], [20, -2]], [[4853, 6814], [-14, -31], [-6, 17], [9, 15], [11, -1]], [[4873, 6833], [9, 12], [-4, -18], [-6, 5], [1, 1]], [[4888, 6890], [0, -5], [-12, -2], [8, 20], [4, -13]], [[4826, 7066], [13, -41], [-18, 18], [1, 36], [4, -13]], [[4787, 7693], [7, -1], [-4, -15], [-11, -1], [8, 17]], [[5099, 7968], [8, 6], [-2, -20], [-7, -7], [1, 21]], [[5259, 8453], [-3, -5], [0, -8], [-10, 17], [13, -4]], [[5290, 8469], [6, -1], [-5, -13], [-6, 12], [5, 2]], [[4789, 6260], [39, 80], [31, 31], [5, -21], [25, 17], [9, -21], [-31, -25], [-2, -78], [15, -12], [-29, -29], [6, -16], [-38, -31], [-9, -51], [-18, -5], [14, 32], [-19, 60], [9, 33], [-7, 36]], [[5468, 8535], [-26, -18], [-27, 19], [-35, -1], [-28, -30], [-49, 40], [-1, -27], [-23, 26], [-25, -45], [16, -42], [-69, 40], [44, -40], [-36, -1], [10, -34], [-51, -5], [24, -30], [-9, -37], [-50, -86], [-15, -4], [50, -100], [-61, -89], [-19, -71], [-31, -13], [-22, -46], [-26, 3], [-36, -39], [-7, -25], [-25, 36], [4, -41], [-25, 13], [-1, -32], [-27, -45], [-13, 9], [-31, -18], [-28, -55], [9, -22], [-44, -25], [-17, 14], [13, -55], [-38, -51], [-30, 28], [-12, -38], [20, -50], [-17, -72], [5, -64], [-39, -38], [14, -26], [-2, -135], [17, -68], [-14, -12], [43, -15], [7, -36], [32, 23], [6, -24], [66, -78], [-26, 16], [20, -35], [35, -12], [15, -58], [-18, -33], [28, 1], [-43, -41], [-27, -40], [-46, -21], [54, -18], [-7, 25], [36, -23], [-7, -14], [-45, 3], [15, -47], [-42, -22], [-16, -39], [-17, 2], [1, 55], [-17, -9], [-2, -62], [-75, -66], [-77, 12], [20, -20], [42, 3], [17, -32], [-24, -14], [9, -32], [-3, -53], [-21, -53], [-19, -11], [32, -56], [-15, 5], [13, -65], [-16, -25], [-9, -56], [13, -35], [-54, -172], [-7, -45], [-21, -46], [-3, 20], [-28, 13], [-29, -18], [-41, 9], [-30, -7], [9, -32], [-32, 0], [-30, -58], [-2, -26], [19, -55], [-21, -36], [-33, 11], [-68, -24], [-36, 22], [-3, 42], [14, 26], [-15, 21], [-47, 144], [33, -13], [-20, 52], [30, 10], [-2, 53], [-15, 0], [-15, 47], [-25, 25], [-36, 150], [-14, -27], [-2, 71], [-23, 27], [-2, 33], [19, 103], [-4, 28], [-36, -11], [-10, 42], [-21, -26], [6, 66], [-18, 106], [11, 34], [25, -27]], [[5859, 6394], [54, -39], [3, 40], [-23, 47], [-36, -11], [-14, 28], [32, 64], [0, 107], [-8, 36]], [[5881, 6711], [12, 33], [9, 7]], [[5902, 6751], [5, 4]], [[5907, 6755], [12, 9]], [[5901, 6799], [-3, 61], [10, 27], [33, -37], [16, 53], [23, -21], [29, 13], [20, 47], [116, -34], [2, 34], [-29, 7], [-12, 38], [-93, 8], [-23, 45], [-23, 8], [-19, 46], [28, -28], [-3, 62], [-29, -5], [-21, -32], [-46, 1]], [[6218, 9625], [48, -13], [20, -20], [41, 0], [-6, 46], [30, -20], [-12, 39], [15, 10], [65, -49], [32, -1], [23, -33], [-29, -21], [-78, 20], [-17, -25], [41, 6], [17, -21], [62, -9], [-25, -30], [52, 23], [22, -6], [-26, -54], [23, -12]], [[6516, 9455], [14, 38], [90, -4], [27, -17], [67, -9], [8, 16], [72, -27], [38, -32], [59, -31], [71, -56], [24, -8], [84, -97], [20, 8], [102, -85], [55, -16], [40, -31], [16, -42], [18, 16], [39, -30], [-2, -63], [17, -13], [-4, -46], [22, -5], [6, -61], [-20, -56], [-83, -110], [-40, -32], [-84, -42], [-88, -22], [-71, 9], [-117, 54], [-53, 3], [-115, 33], [-66, 54], [-40, -18], [-30, 38], [-38, 2], [-35, 37], [-5, -27], [-71, 67], [-4, 32], [-48, 18], [-13, -9], [33, -37], [-2, -29], [30, -41], [42, -11], [-27, -46], [38, -1], [47, -22], [-11, -31], [101, -59], [39, -59], [6, -53], [-24, 29], [10, -59], [-38, -62], [43, -89], [-13, -18], [26, -33], [-16, -27], [20, -40], [-23, -15], [72, -74], [45, 16], [19, -40], [29, -20], [6, -32], [47, -23], [52, -8], [13, -21], [80, 38], [10, 21], [-20, 51], [10, 26], [-35, 31], [-39, -24], [-25, 14], [-43, 79], [-20, 10], [-14, 55], [42, 11], [1, 51], [21, 8], [79, -43], [38, -45], [99, -33], [71, -51], [33, 36], [36, -33], [38, -4], [-15, 104], [-30, 42], [-45, 89], [13, 56], [51, 34], [57, 71], [62, 20], [58, 64], [38, 65], [50, -23], [-11, -18], [79, 14], [47, -60], [-43, -34], [62, 26], [24, -29], [13, -53], [-4, 117], [40, 98], [-14, 30], [15, 38], [-23, 46], [-53, 24], [-3, 46], [38, 125], [-4, 25], [17, 99], [-10, 22], [-94, 76], [18, 15], [57, -32], [148, -2], [71, -27], [10, -33], [57, -52], [21, -80], [-80, -20], [-74, -11], [-4, -37], [-33, -17], [-8, -58], [72, -45], [29, -73], [22, -16], [60, 12], [1, -17], [92, 32], [36, 20], [-4, 56], [28, 65], [-13, 31], [49, 34], [58, 13], [7, 37], [33, 0], [58, 32], [88, 65], [40, 43], [18, -9], [141, 66], [1, -1], [8, -22], [-17, -33], [29, -11], [34, 34], [70, -43], [-9, -14], [38, -4], [1228, -974], [-2702, -5780], [-24, 4], [-20, -11], [-8, -40], [-30, 50], [-84, 158], [-42, 51], [-47, 20], [-34, 77], [-45, -3], [-21, 68], [-78, 77], [22, 23], [5, 42], [34, -30], [-3, -26], [46, 35], [24, -15], [-4, 69], [-13, -36], [3, 62], [24, 26], [17, 77], [31, 29], [21, -30], [13, 23], [-29, 27], [-20, 44], [-17, -4], [-26, 86], [34, -13], [41, 52], [45, 20], [30, 38], [21, -5], [1, 68], [-37, -20], [-81, -24]], [[6322, 4779], [-22, 58], [-7, 147], [-29, 46], [18, 50], [37, -2], [38, -30], [37, 31], [35, 67], [-30, 29], [1, 43], [-43, 29], [-38, -4], [8, 72], [-55, 47], [-13, 60], [-16, 12], [12, 36], [-45, 44], [5, 39], [22, 26], [-24, 72], [14, 34], [-4, 52], [-16, -1], [-31, 54], [-28, 17], [-39, -7], [-46, -39], [-13, 27], [3, 46], [-38, 19], [-25, -24], [-21, 40], [-37, -10], [-16, 26]], [[5916, 5885], [7, 38], [-9, 70], [-30, 57], [-9, 35], [-18, -7], [22, 86], [2, 36], [-37, 38], [2, 27], [-19, -1]], [[6516, 9455], [-1, -2], [-47, -33], [41, 13], [6, 20], [3, 1], [-2, 1]], [[5957, 7030], [10, 5], [13, -16], [-11, -4], [-12, 15]], [[6797, 8127], [-16, 19], [7, 3], [12, -11], [-3, -11]], [[6776, 8351], [5, -40], [-40, 25], [2, 13], [33, 2]], [[6796, 8361], [7, -9], [23, -1], [-21, -8], [-9, 18]], [[7546, 8765], [-21, 11], [-3, 19], [14, -2], [10, -28]], [[8500, 9255], [-42, -21], [43, 34], [37, -4], [-38, -9]], [[6618, 9500], [-43, 1], [-2, 9], [24, 5], [21, -15]], [[5112, 5648], [-51, -85], [61, -17], [17, 10], [-6, 70], [10, 15]], [[5143, 5641], [94, -60], [54, 8], [25, -45], [-15, -121], [11, -26]], [[5312, 5397], [-8, -4], [-331, 25]], [[4973, 5418], [74, 70], [-51, 3], [-13, -22]], [[4983, 5469], [22, 89], [37, 0], [30, 28], [32, 64]], [[5104, 5650], [8, -2]], [[4958, 5423], [-1, 1]], [[4957, 5424], [14, 22]], [[4971, 5446], [-13, -23]], [[7270, 8227], [-16, 16], [30, 4], [7, -16], [0, -24], [-16, 16], [23, -30], [-30, 0], [-38, 33], [14, 9], [26, -8]], [[4971, 5446], [12, 23]], [[4983, 5469], [-1, -6], [-11, -17]], [[8179, 9480], [32, 34], [159, -84], [-6, -6], [-26, -50], [-53, -30], [-74, -14], [-42, 48], [10, 102]], [[2517, 4002], [11, -24], [-24, 3], [0, 18], [13, 3]], [[2610, 4417], [26, -23], [-28, -28], [-21, 23], [23, 28]], [[2233, 5113], [3, 0], [7, -18], [-13, 9], [3, 9]], [[2283, 5107], [18, 1], [-33, -46], [-26, 38], [0, 33], [33, 2], [8, -28]], [[2180, 5693], [-25, 12], [-1, 56], [22, -3], [4, -65]], [[2193, 5773], [-12, 15], [-9, 34], [13, -9], [8, -40]], [[2070, 5801], [9, -41], [-25, -6], [-12, 30], [-17, -25], [6, 44], [35, 28], [4, -30]], [[2067, 5877], [-5, -19], [-9, -3], [8, 24], [6, -2]], [[2109, 5891], [1, -23], [-24, -75], [-13, 30], [36, 68]], [[1983, 5968], [-12, 16], [27, 12], [-14, -18], [-1, -10]], [[2078, 6016], [9, -26], [26, -9], [7, -25], [-75, -34], [22, 54], [-24, 22], [25, 28], [10, -10]], [[2018, 6010], [-15, -4], [12, 19], [16, 9], [-13, -24]], [[1927, 6117], [-11, -13], [-10, 4], [12, 21], [9, -12]], [[2051, 6125], [-4, -20], [-16, 16], [14, 15], [6, -11]], [[1930, 6231], [17, -31], [-17, -53], [-11, 38], [11, 46]], [[1937, 6253], [9, -18], [-9, -4], [-14, 11], [14, 11]], [[1948, 6300], [4, -40], [-44, 23], [8, 18], [32, -1]], [[2432, 6618], [-7, -24], [-10, 26], [9, 4], [8, -6]], [[2391, 6639], [8, -21], [-14, -11], [-15, 26], [21, 6]], [[2401, 6706], [51, -58], [-15, -12], [-16, 21], [-25, -13], [-19, 28], [5, 30], [19, 4]], [[2461, 6709], [12, -16], [-9, -5], [-8, 22], [5, -1]], [[2415, 6717], [7, -13], [-11, -1], [-4, 17], [8, -3]], [[2445, 6734], [3, -26], [-5, -2], [-6, 15], [8, 13]], [[2487, 6748], [-14, -17], [-10, 3], [3, 8], [21, 6]], [[2424, 6763], [9, -25], [-14, 2], [-9, 19], [14, 4]], [[2664, 7108], [3, -9], [-11, -2], [-6, 16], [14, -5]], [[2628, 6990], [-16, -81], [-11, 7], [12, 92], [-21, -24], [-23, 41], [33, 4], [-9, 47], [-19, -3], [32, 35], [-5, -57], [34, 12], [-7, -73]], [[2634, 7142], [10, -1], [-5, -63], [-13, 2], [8, 62]], [[2668, 7158], [-5, -29], [-16, 0], [9, 43], [12, -14]], [[2470, 4049], [-14, -1], [1, 8], [16, 16], [-3, -23]], [[2240, 5324], [-22, -8], [8, 44], [20, 39], [21, 13], [4, -34], [-31, -54]], [[2156, 413], [-1, -9], [-2, 9]], [[6462, 0], [-12, 6], [-16, -1]], [[6434, 5], [7, 13], [21, -18]], [[6561, 89], [-6, -4], [-7, 9]], [[6548, 94], [-2, 3]], [[6548, 94], [-2, 0], [-7, -1]], [[6539, 93], [0, 4]], [[6539, 97], [0, 9], [-2, 3]], [[6537, 109], [9, -1], [16, 11]], [[6562, 119], [-1, -3]], [[6561, 116], [-11, -5], [11, -22]], [[6544, 101], [1, 2], [-2, 1], [0, -3], [1, 0]], [[2849, 4580], [16, -6], [50, 11], [-7, -71], [-37, -24], [-6, -34], [-20, 6], [-49, -33], [-10, -19], [-50, 21], [-45, -7], [-27, -19], [-10, 27], [-47, -8], [-69, -30], [-6, -26], [-50, 11], [-3, -15], [-46, 41], [-44, -16], [-26, -34], [1, -38], [-18, -51], [-16, -3], [-42, 45], [-66, -13], [-6, -28], [-28, -9], [0, -37], [-16, -27], [-32, 46], [-25, -21], [2, 30], [28, 9], [43, 64], [3, 26], [26, 20], [27, 58], [3, 56], [21, -5], [21, 59], [43, 10], [43, -17], [41, 1], [1, 34], [33, 51], [26, 66], [-23, -40], [-32, -9], [-23, -45], [-40, 0], [-35, 62], [-14, -17], [-35, -2], [-12, 57], [-32, -12], [-30, -34], [-7, 31], [-31, 58], [23, 27], [28, 0], [71, 71], [16, 73], [-5, 101], [-35, -6], [-12, -28], [-28, 0], [19, 38], [27, 27], [23, 55], [93, 34], [23, -25], [-7, 31], [14, 17], [-5, 29], [22, 53], [-16, 9], [4, 44], [25, 53], [-26, 27], [-25, -30], [-26, 77], [-18, 32], [28, 102], [20, 19], [-41, 12], [-3, -33], [-28, -2], [-13, -26], [-23, 5], [-26, 31], [4, -61], [-55, 50], [-11, -16], [11, -48], [-30, 59], [13, 81], [44, 97], [-34, 58], [3, 50], [12, 17], [-7, 44], [-15, -67], [-21, 18], [-19, -11], [2, -31], [-19, -38], [-3, -74], [-30, -17], [19, 124], [-10, 60], [22, 56], [-18, 9], [17, 50], [38, 16], [-33, 4], [23, 65], [-45, -59], [-38, 33], [12, 15], [-36, 6], [4, 16], [37, -3], [-2, 39], [30, 107], [-23, 21], [-3, 62], [21, -13], [-16, 44], [-2, 41], [22, 23], [18, -21], [10, 25], [30, -19], [-40, 57], [17, -3], [-11, 48], [34, 9], [-8, 21], [20, 75], [37, -20], [95, 5], [45, 22], [44, -4], [-12, -35], [5, -27], [-15, -29], [-96, -100], [4, -34], [28, 3], [-52, -91], [74, 39], [11, 20], [47, -11], [18, 9], [44, -10], [66, 4], [20, -57], [-25, -43], [-8, -54], [-19, -68], [-25, -38], [-10, -41], [-40, -34], [6, -26], [29, -22], [-23, -25], [-21, 3], [-23, -39], [-45, -12], [54, -19], [33, 32], [18, -2], [55, -38], [37, -78], [21, -13], [12, -114], [25, -107], [22, -42], [61, -40], [19, -57], [36, -43], [-16, -24], [7, -34], [32, -70], [-20, -6], [-29, 32], [13, -33], [38, -39], [21, -69], [-1, -37], [-36, -56], [42, -26], [21, 50], [45, 0], [34, -12], [42, -42], [14, -79], [-16, -59], [-5, -52], [-43, -55], [-7, -27], [-18, 12], [-12, -73], [-47, -15], [27, -7], [-16, -18], [27, -9], [-2, 19], [13, -8], [5, -13], [-11, 0]], [[2076, 6212], [7, -13], [38, -7], [-5, -20], [-35, -44], [-2, 46], [-33, -10], [-18, 42], [-34, 39], [24, 13], [-9, 29], [29, -26], [8, 51], [19, -31], [-1, -50], [12, -18], [-1, 31], [8, 19], [-4, -29], [-3, -22]], [[1966, 6461], [27, -9], [-3, 20], [61, 62], [12, -46], [-26, -37], [5, -47], [-20, -32], [-50, -50], [-14, 21], [29, 33], [-30, 15], [9, 70]], [[1942, 5592], [20, -7], [12, 41], [23, -5], [31, 20], [42, -11], [42, -131], [22, -20], [11, -53], [-7, -34], [-8, 52], [-15, -49], [17, -14], [-35, -18], [-20, -54], [-26, 17]], [[6575, 115], [9, -25], [-23, -1]], [[6561, 116], [4, -2], [10, 1]], [[6539, 93], [-11, -42], [-66, -51]], [[6434, 5], [-40, 28], [-14, 93], [19, -10], [15, 31]], [[6414, 147], [4, -6], [4, 10]], [[6422, 151], [4, 0]], [[6426, 151], [14, -33], [40, 27], [27, -1], [4, -44], [28, -3]], [[6546, 97], [1, 0], [2, -3], [-1, 0]], [[1731, 1116], [-42, -1], [7, 88], [11, 64], [-7, 31], [18, 12], [19, 71], [23, 121], [0, 42], [24, 196], [-14, 130], [-12, 73], [15, 64]], [[1923, 700], [-42, -47], [-19, -5], [-25, 23], [-50, 9], [-42, -27], [22, 128], [-2, 120], [-8, 7], [13, 64], [-2, 47], [-18, 40], [-28, -25], [-6, 69], [15, 13]], [[1731, 1116], [1, 0], [0, 1], [0, 1], [19, 17], [-8, 36], [-11, -53], [-1, -2]], [[5787, 216], [1, -7], [-14, -12], [1, 19], [12, 0]], [[5812, 321], [-7, -53], [-1, -54], [-10, 47], [18, 60]], [[5343, 429], [-16, 1], [6, 49], [16, -41], [-6, -9]], [[5926, 492], [-20, -87], [-32, -61], [-11, 73], [25, 49], [38, 26]], [[5617, 477], [-5, -11], [-9, 6], [8, 8], [6, -3]], [[5828, 503], [2, -15], [-1, -10], [-8, 21], [7, 4]], [[5726, 537], [-18, -22], [-4, 22], [9, -8], [13, 8]], [[5879, 544], [5, 0], [1, -22], [-13, 9], [7, 13]], [[5510, 588], [1, -26], [-25, -11], [4, 29], [20, 8]], [[5607, 573], [-3, -20], [-13, 20], [5, 18], [11, -18]], [[5808, 596], [-30, -27], [15, 34], [25, 19], [-10, -26]], [[5683, 619], [-22, -28], [-3, 16], [17, 23], [8, -11]], [[5524, 660], [12, -24], [-6, -15], [-8, 33], [2, 6]], [[5784, 659], [7, -9], [-2, -18], [-12, 0], [7, 27]], [[5570, 644], [9, 33], [12, 5], [-6, -37], [-15, -1]], [[5766, 700], [8, -24], [-6, 0], [-7, 21], [5, 3]], [[5629, 675], [-16, -50], [-12, 43], [21, 34], [7, -27]], [[5504, 704], [5, -2], [1, -19], [-11, 1], [5, 20]], [[5399, 743], [-5, -8], [-14, -3], [10, 13], [9, -2]], [[5503, 764], [-12, -32], [1, 35], [7, 13], [4, -16]], [[5601, 787], [13, -11], [-7, -14], [-10, -2], [4, 27]], [[5558, 757], [-9, -10], [-2, 10], [7, 29], [4, -29]], [[5571, 825], [19, -7], [-4, -25], [-24, 29], [9, 3]], [[5492, 835], [2, -17], [-13, -25], [0, 24], [11, 18]], [[5710, 821], [-29, -32], [-9, 9], [11, 23], [27, 0]], [[5393, 834], [-4, 2], [-4, 21], [16, 0], [-8, -23]], [[5782, 854], [12, -14], [-31, -16], [-24, 26], [30, 19], [13, -15]], [[5085, 881], [26, -34], [-19, -21], [-22, 46], [15, 9]], [[5545, 898], [12, -3], [-4, -50], [-26, 57], [18, -4]], [[5397, 915], [2, -14], [-9, -11], [-7, 7], [14, 18]], [[5065, 1050], [25, -111], [-32, 12], [-12, 69], [9, -14], [10, 44]], [[5682, 1081], [11, -12], [0, -65], [-18, -40], [-16, 28], [15, 23], [-17, 65], [25, 1]], [[5084, 1099], [-18, -9], [-2, 20], [14, 44], [6, -55]], [[5514, 1163], [12, -22], [-16, -3], [-5, 51], [9, -26]], [[5395, 1243], [-6, -12], [-7, 3], [8, 19], [5, -10]], [[5405, 1252], [22, -25], [-6, -10], [-9, 3], [-7, 32]], [[5438, 1239], [-2, 5], [7, 27], [4, -3], [-9, -29]], [[5721, 1283], [20, -85], [-19, -12], [-29, 14], [-37, 44], [2, 22], [55, 33], [8, -16]], [[4993, 1411], [-10, -38], [10, -47], [-34, 73], [34, 12]], [[5611, 1475], [-10, -65], [-17, 29], [-17, -15], [-1, 43], [28, -9], [17, 17]], [[5638, 1601], [1, -17], [-11, -7], [-14, 23], [24, 1]], [[5538, 1638], [-30, 5], [14, 45], [15, -15], [1, -35]], [[5001, 1384], [18, -13], [26, 52], [-10, 43], [38, 27], [21, 103], [21, 22], [0, 38]], [[5115, 1656], [13, 20], [-13, -18]], [[5115, 1658], [-8, 20], [2, 8]], [[5109, 1686], [7, 14], [10, 2]], [[5126, 1702], [30, 12], [22, -9], [37, 64], [31, 16], [26, -12], [35, 15], [3, 40], [18, 6]], [[5679, 1670], [-10, 29], [-47, 8], [-56, 36], [-26, -42], [-26, 28], [-20, -5], [-6, -29], [-26, -27], [-34, 14], [-13, -24], [78, -140], [-9, -15], [-15, 41], [-28, 25], [-25, -12], [9, -33], [24, -23], [0, -46], [-23, 31], [-13, 42], [-31, 16], [-7, -19], [41, -81], [-38, 13], [-7, 76], [-30, 24], [-24, 49], [18, 14], [-7, 24], [-38, -48], [10, -27], [-13, -55], [2, -31], [33, -77], [7, -47], [20, -29], [27, -86], [-46, 49], [-9, -55], [25, -32], [-32, -45], [-19, 10], [17, -35], [32, -16], [4, -22], [25, -1], [4, -39], [19, -3], [17, -37], [31, -18], [15, -34], [-10, -12], [10, -101], [-6, -28], [-30, 46], [-20, 63], [-40, -21], [-24, -34], [19, -11], [-2, -53], [16, 1], [25, -43], [-51, -29], [7, 26], [-46, 25], [3, -38], [23, -76], [17, -94], [-10, -18], [20, -77], [-43, 64], [-6, 38], [-21, -6], [-10, -49], [3, -38], [-18, 12], [0, 53], [-23, 87], [-24, -11], [-7, -70], [-18, 21], [-1, 43], [-15, 54], [13, 35], [-15, 76], [-48, 75], [27, 78], [1, 27], [26, -19], [18, 40], [21, 11], [31, -41], [50, -33], [22, -35], [-2, 26], [41, 20], [-10, 18], [-49, 41], [-16, -5], [-17, 41], [-2, -30], [-44, 18], [-52, -31], [-17, 30], [-25, -28], [-7, 63], [-31, 106], [39, 21], [-36, 30], [-12, -43], [-5, 33], [-36, 59], [-26, 67], [5, 25], [-20, 19]], [[5076, 1025], [5, -18], [-5, 17], [0, 1]], [[5409, 1035], [0, 30], [-49, 83], [-26, 17], [37, 41], [16, -39], [17, -34], [30, -25], [24, -2], [18, -42], [-5, -31], [18, -69], [27, 0], [-4, -49], [-20, -2], [-39, 98], [1, 18], [-45, 6]], [[5616, 182], [32, 10], [-6, -42], [12, -19], [50, 47], [-3, -67], [-71, -7], [-57, -21], [-40, -2], [-4, 45], [-34, 27], [-69, 11], [-30, 16], [9, 88], [13, -27], [3, 47], [8, -41], [42, 13], [9, -60], [51, 17], [28, -1], [9, -19], [48, -15]], [[5076, 1025], [-6, 24], [7, 5], [-1, -29]], [[5143, 5641], [-5, 74], [-17, 62], [-2, 89]], [[5119, 5866], [16, 3], [15, 39], [86, 52], [66, -17], [23, 15], [26, -26], [19, 16], [47, -4], [45, -26], [38, -1], [50, 49], [24, -69], [62, -12], [6, -16], [52, -64], [12, -29], [35, -21]], [[5741, 5755], [-16, -90], [39, -17], [-24, -43], [-31, 7], [-19, -48], [-40, -26], [-5, -84], [-24, -60], [19, -7], [5, -48], [-22, -2], [-8, 43], [-28, -10], [-17, -35], [-24, 4], [-8, -48], [-12, 6], [-34, -29], [-19, 18], [-63, -14], [-18, 11]], [[5392, 5283], [-6, 62], [-64, 63], [-10, -11]], [[5104, 5650], [19, 59], [-11, -61]], [[4281, 2970], [0, 13], [14, 16]], [[4293, 3253], [80, -23], [15, -17], [35, 62], [23, 13], [45, -10], [20, 29], [42, -7], [9, 46]], [[4562, 3346], [20, 0], [27, -99]], [[4737, 2259], [-11, 13], [3, 1]], [[4890, 2800], [18, 16], [22, -11], [-5, -42], [-22, -58], [5, -64], [50, -69], [-44, -21], [27, -53], [1, -56], [-15, 13], [-17, -20]], [[4910, 2435], [-32, -12], [18, -50], [-19, 12], [-25, -28], [-4, -62], [-21, -8], [2, -62], [9, -35], [-13, -21]], [[3590, 2493], [-3, -7], [-5, 1]], [[5109, 1711], [-1, 0], [-1, 5]], [[5107, 1716], [1, -3], [1, -2]], [[5072, 1765], [2, -45], [8, -3]], [[5082, 1717], [11, 3], [14, -4]], [[5107, 1716], [-2, -4], [4, -9]], [[5109, 1703], [-6, -22], [6, 5]], [[5115, 1658], [-2, -4], [2, 2]], [[5001, 1384], [2, 42], [-19, 56], [-42, 45], [0, 65], [-19, 52], [12, 62], [10, 10], [-7, 66], [9, 30], [-14, 40], [19, 50], [2, 63], [-24, 10]], [[4930, 1975], [-2, 30], [2, 34]], [[4930, 2039], [12, 15], [-9, 51]], [[4933, 2105], [34, 90], [14, -52], [27, 22]], [[5008, 2165], [18, -60], [31, -32], [11, -72], [-4, -20]], [[5064, 1981], [-13, -88], [10, -41], [-7, -23], [18, -64]], [[4930, 2095], [0, -3], [-1, 0]], [[4929, 2092], [1, 3]], [[6574, 117], [1, -2]], [[6562, 119], [7, 0], [5, -2]], [[6414, 147], [1, 2]], [[6415, 149], [2, -4], [3, 6]], [[6420, 151], [1, 1], [1, -1]], [[6426, 151], [2, -2]], [[6428, 149], [14, -27], [40, 30], [23, 2], [9, -28], [23, -17]], [[6428, 149], [17, -6], [6, 66], [57, -19], [69, 39], [62, 60], [-2, -13], [-73, -100], [10, -59]], [[6415, 149], [3, 1], [2, 1]], [[4878, 3091], [18, 22], [22, -8], [32, 50], [43, 0], [35, -15]], [[5028, 3140], [11, -32], [50, -66], [-3, -71], [25, -43], [57, -51], [-15, -43], [18, -16], [-17, -19], [33, -48], [39, -10], [20, -37], [27, 60], [38, -42], [-32, -22]], [[5279, 2700], [24, -75]], [[5303, 2625], [-10, -40]], [[5264, 2102], [-9, 14], [-79, -33]], [[5176, 2083], [23, 115], [-44, 21], [3, 31], [-16, 8], [-19, 56], [-28, 21], [-2, 25], [-25, -20], [8, -21], [-37, -77]], [[5039, 2242], [0, 22], [-25, 19], [-21, 37], [-35, 15], [-48, 100]], [[5028, 3140], [25, 18], [16, -12], [26, 38], [33, 2], [21, 93], [21, 29], [14, 82], [16, 25], [24, 103], [31, 62], [54, 29], [15, 34]], [[5744, 3728], [21, 0], [21, -25], [20, -53], [15, -84], [29, -54], [27, -89], [25, -31], [23, -101], [2, -64], [-18, -117], [9, -101], [-12, -10], [15, -36]], [[6085, 2895], [-5, -97], [-5, -11], [-53, -12], [-14, 65], [-12, -34], [7, -57], [-22, -31], [20, 5], [-30, -70], [3, -89], [-10, -72]], [[5303, 2626], [-24, 74]], [[4933, 2105], [-2, -5], [-1, -5]], [[4929, 2092], [-24, -3], [25, -50]], [[4930, 1975], [-23, 23], [-3, 29], [-30, 68], [-10, -6], [-14, 50], [-18, -10]], [[5039, 2242], [-36, -29], [5, -48]], [[3824, 3456], [11, -44], [-4, -13]], [[3831, 3399], [-12, 2], [5, 55]], [[3824, 3456], [15, 40], [-11, 27]], [[3828, 3523], [13, -3], [5, 14]], [[4307, 3867], [29, -48], [27, -9], [15, 23], [27, -14], [12, 51], [13, -4], [7, 67], [32, -7], [47, -34], [15, 4], [25, -32], [36, -7], [8, 17], [49, -20], [9, -31]], [[4658, 3823], [-11, -66], [34, -98]], [[4681, 3659], [-17, -39], [8, -42], [-31, -10], [-21, 21], [-23, -25], [25, -10], [2, -47], [-25, -27], [7, -97], [-23, 2], [-21, -39]], [[3929, 3347], [-10, 35], [-28, -40], [-29, 25], [0, 21], [-31, 11]], [[4658, 3823], [25, 69], [41, -12], [36, 30], [25, 34], [13, 63], [38, 56], [34, 8]], [[4870, 4071], [14, -34], [24, 4], [30, 54], [21, -54], [16, -2], [-3, -52], [34, -9], [9, 36], [20, 23], [43, 4], [29, -29], [10, 28], [25, 14], [63, -20], [22, -45], [59, -39]], [[5240, 3768], [-45, -18], [-34, 61], [-36, -20], [-36, 22], [-34, -12], [-18, -67], [-50, -41], [-28, 27], [-17, -32], [-72, -20], [-11, -18], [9, -38], [-65, -22], [-46, -1], [-29, 22], [-26, 46], [-21, 2]], [[3405, 4078], [11, 29], [-19, 65], [31, 80], [14, -15]], [[3786, 3567], [1, -1]], [[3788, 3563], [33, -46], [7, 6]], [[3517, 3223], [10, 12], [-28, 17], [-35, -18], [-10, -44]], [[3046, 4435], [-7, 67]], [[3039, 4502], [67, 66], [25, 13]], [[3229, 4579], [11, -25], [-6, 25]], [[5176, 2083], [-16, -2], [-20, -39], [-16, 27], [-37, -36], [-2, -43], [-21, -9]], [[5392, 5283], [12, -91], [34, -125], [3, -112], [-6, -19], [-53, -45], [-26, -60], [53, -56], [5, -25], [-14, -66], [5, -64]], [[4870, 4071], [-7, 45], [-15, 7], [-9, 56], [-59, 28], [-22, -9], [-28, 51], [2, 26], [-30, 3], [-18, 31], [-35, 11], [11, -52], [-30, -38], [-41, 77], [-16, 13], [21, 25], [-5, 36], [-28, 1], [-72, 41], [-11, -4], [-8, 47], [-35, 10], [2, -36], [-19, 0]], [[4357, 5217], [28, -9], [13, 51], [-48, 7]], [[4351, 5282], [18, -5], [46, 32], [152, 70], [48, 73], [42, 13], [45, 39], [61, 20], [49, 5], [28, -79], [2, -32], [47, -25], [40, 9]], [[4929, 5402], [-15, -10], [18, -17], [41, 43]], [[4958, 5423], [-20, -15]], [[4938, 5408], [19, 16]], [[4929, 5402], [9, 6]], [[4938, 5408], [-7, -5], [-2, -1]], [[5109, 1703], [1, 0], [-1, 0]], [[5109, 1703], [0, 0]], [[5126, 1702], [-17, 44], [0, -35]], [[5082, 1717], [11, 55], [-21, -7]], [[5916, 5885], [-27, -11], [-30, -49], [-6, -35], [-69, 9], [-18, -33], [-25, -11]], [[5119, 5866], [-9, 50], [10, 162], [38, 52], [3, 69], [30, 73], [34, 12], [66, 44], [8, -48], [53, -59], [14, -69], [50, -41], [29, 13], [47, 60], [4, 31], [-12, 142]], [[823, 7985], [-42, -19], [-14, 10], [-30, -31], [21, 1], [-19, -41], [-87, -34], [-62, 11], [-54, 26], [-47, 3], [-42, 53], [-68, 37], [-3, 24], [-20, -31], [-47, 6], [-31, -10], [-31, 8], [-42, -10], [2, 72], [18, -29], [38, 10], [52, 55], [-22, 4], [24, 44], [-27, -27], [-16, 5], [14, 52], [41, 42], [-66, -51], [-16, 23], [2, 53], [-143, 17], [-6, -17], [-34, 3], [-12, 35], [47, 2], [47, 15], [1, 18], [30, -8], [21, 23], [10, -18], [33, 14], [64, -4], [5, 45], [-30, -26], [-59, 15], [7, 19], [68, 50], [-12, 24], [-29, -20], [-33, 35], [-20, -15], [-52, 19], [-80, -47], [-7, 16], [-65, 12], [29, 35], [43, -25], [-21, 29], [4, 43], [75, -46], [-39, 37], [-10, 41], [33, -11], [-33, 34], [3, 17], [31, -12], [-17, 25], [23, 24], [32, -15], [8, -21], [40, -4], [26, -23], [10, -35], [-2, 63], [-47, 23], [-9, 39], [-28, 14], [7, 22], [63, 8], [34, -25], [6, -28], [26, 1], [27, -25], [3, -28], [19, 4], [26, -29], [4, -36], [-23, -81], [18, 11], [-5, -32], [19, -16], [9, -43], [23, 91], [26, 25], [21, -54], [26, 68], [-20, 78], [2, 15], [37, 12], [24, -61], [20, -9], [6, -29], [24, -9], [-9, 60], [18, 37], [32, -5], [0, 24], [25, 13], [34, -34], [1, -29], [21, -6], [19, -58], [13, 25], [-18, 29], [-8, 66], [43, -8], [35, -50], [21, 7], [23, 55], [31, -16], [50, 15], [8, 26], [-14, 61], [58, 8], [9, -31], [27, -8], [-8, -29], [44, -38], [9, 32], [22, 3], [30, 31], [26, -8], [-45, -26], [6, -22], [-25, -21], [12, -17], [45, 3], [7, -30], [-27, -59], [58, 13], [-7, -14], [69, -57], [20, -2], [-21, -56], [25, -14], [4, -56], [-13, -19], [-44, 27], [33, -47], [-25, -21], [-2, -26], [-51, -18], [-12, -73], [-20, 0], [-26, -24], [-50, -13], [-66, -35], [-41, -49], [-48, -33], [-18, 15], [-7, -28], [-23, 5]]], "bbox": [-24.540373460134713, 34.63473866791714, 64.51840875277185, 71.1751405875999], "transform": { "scale": [0.008906768898180475, 0.003654405632531529], "translate": [-24.540373460134713, 34.63473866791714] }, "copyright": "Copyright (c) 2020 Highsoft AS, Based on data from Natural Earth", "copyrightShort": "Natural Earth", "copyrightUrl": "http://www.naturalearthdata.com" }, + "https://code.highcharts.com/mapdata/custom/world.topo.json": { "type": "Topology", "objects": { "default": { "type": "GeometryCollection", "geometries": [{ "type": "Polygon", "arcs": [[0]], "id": "FO", "properties": { "hc-group": "admin0", "hc-middle-x": 0.48, "hc-middle-y": 0.54, "hc-key": "fo", "hc-a2": "FO", "name": "Faroe Islands", "labelrank": "6", "country-abbrev": "Faeroe Is.", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "FRO", "iso-a2": "FO", "woe-id": "23424816", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[1]], "id": "UM", "properties": { "hc-group": "admin0", "hc-middle-x": 0.57, "hc-middle-y": 0.58, "hc-key": "um", "hc-a2": "UM", "name": "United States Minor Outlying Islands", "labelrank": "5", "country-abbrev": "U.S. MOI", "subregion": "Seven seas (open ocean)", "region-wb": "East Asia & Pacific", "iso-a3": "UMI", "iso-a2": "UM", "woe-id": "28289407", "continent": "North America" } }, { "type": "MultiPolygon", "arcs": [[[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]]], "id": "US", "properties": { "hc-group": "admin0", "hc-middle-x": 0.68, "hc-middle-y": 0.68, "hc-key": "us", "hc-a2": "US", "name": "United States of America", "labelrank": "2", "country-abbrev": "U.S.A.", "subregion": "Northern America", "region-wb": "North America", "iso-a3": "USA", "iso-a2": "US", "woe-id": "23424977", "continent": "North America" } }, { "type": "MultiPolygon", "arcs": [[[63]], [[64]], [[65]], [[66]]], "id": "JP", "properties": { "hc-group": "admin0", "hc-middle-x": 0.52, "hc-middle-y": 0.66, "hc-key": "jp", "hc-a2": "JP", "name": "Japan", "labelrank": "2", "country-abbrev": "Japan", "subregion": "Eastern Asia", "region-wb": "East Asia & Pacific", "iso-a3": "JPN", "iso-a2": "JP", "woe-id": "23424856", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[67]], "id": "SC", "properties": { "hc-group": "admin0", "hc-middle-x": 0.58, "hc-middle-y": 0.41, "hc-key": "sc", "hc-a2": "SC", "name": "Seychelles", "labelrank": "6", "country-abbrev": "Syc.", "subregion": "Eastern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "SYC", "iso-a2": "SC", "woe-id": "23424941", "continent": "Seven seas (open ocean)" } }, { "type": "MultiPolygon", "arcs": [[[68]], [[69, 70, 71, 72, 73, 74, 75, 76, 77, 78]]], "id": "IN", "properties": { "hc-group": "admin0", "hc-middle-x": 0.34, "hc-middle-y": 0.43, "hc-key": "in", "hc-a2": "IN", "name": "India", "labelrank": "2", "country-abbrev": "India", "subregion": "Southern Asia", "region-wb": "South Asia", "iso-a3": "IND", "iso-a2": "IN", "woe-id": "23424848", "continent": "Asia" } }, { "type": "MultiPolygon", "arcs": [[[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]]], "id": "FR", "properties": { "hc-group": "admin0", "hc-middle-x": 0.28, "hc-middle-y": 0.04, "hc-key": "fr", "hc-a2": "FR", "name": "France", "labelrank": "2", "country-abbrev": "Fr.", "subregion": "Western Europe", "region-wb": "Europe & Central Asia", "iso-a3": "FRA", "iso-a2": "FR", "woe-id": "-90", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[105]], "id": "FM", "properties": { "hc-group": "admin0", "hc-middle-y": 0.52, "hc-key": "fm", "hc-a2": "FM", "name": "Federated States of Micronesia", "labelrank": "6", "country-abbrev": "F.S.M.", "subregion": "Micronesia", "region-wb": "East Asia & Pacific", "iso-a3": "FSM", "iso-a2": "FM", "woe-id": "23424815", "continent": "Oceania" } }, { "type": "MultiPolygon", "arcs": [[[106]], [[-70, 107, -78, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, -72, 126]]], "id": "CN", "properties": { "hc-group": "admin0", "hc-middle-x": 0.41, "hc-middle-y": 0.56, "hc-key": "cn", "hc-a2": "CN", "name": "China", "labelrank": "2", "country-abbrev": "China", "subregion": "Eastern Asia", "region-wb": "East Asia & Pacific", "iso-a3": "CHN", "iso-a2": "CN", "woe-id": "23424781", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[127, 128]], "id": "PT", "properties": { "hc-group": "admin0", "hc-middle-x": 0.46, "hc-key": "pt", "hc-a2": "PT", "name": "Portugal", "labelrank": "2", "country-abbrev": "Port.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "PRT", "iso-a2": "PT", "woe-id": "23424925", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[129]], "id": "SW", "properties": { "hc-group": "admin0", "hc-middle-x": 0.86, "hc-middle-y": 0.57, "hc-key": "sw", "hc-a2": "SW", "name": "Serranilla Bank", "labelrank": "5", "country-abbrev": "S.B.", "subregion": "Caribbean", "region-wb": "Latin America & Caribbean", "iso-a3": "-99", "iso-a2": "SW", "woe-id": "-99", "continent": "North America" } }, { "type": "Polygon", "arcs": [[130]], "id": "SH", "properties": { "hc-group": "admin0", "hc-middle-x": 0.54, "hc-middle-y": 0.51, "hc-key": "sh", "hc-a2": "SH", "name": "Scarborough Reef", "labelrank": "6", "country-abbrev": "S.R.", "subregion": "South-Eastern Asia", "region-wb": "East Asia & Pacific", "iso-a3": "-99", "iso-a2": "SH", "woe-id": "-99", "continent": "Asia" } }, { "type": "MultiPolygon", "arcs": [[[131]], [[132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, -104, 144, 145]]], "id": "BR", "properties": { "hc-group": "admin0", "hc-middle-x": 0.54, "hc-middle-y": 0.34, "hc-key": "br", "hc-a2": "BR", "name": "Brazil", "labelrank": "2", "country-abbrev": "Brazil", "subregion": "South America", "region-wb": "Latin America & Caribbean", "iso-a3": "BRA", "iso-a2": "BR", "woe-id": "23424768", "continent": "South America" } }, { "type": "Polygon", "arcs": [[146]], "id": "KI", "properties": { "hc-group": "admin0", "hc-middle-x": 0.28, "hc-middle-y": 0.65, "hc-key": "ki", "hc-a2": "KI", "name": "Kiribati", "labelrank": "6", "country-abbrev": "Kir.", "subregion": "Micronesia", "region-wb": "East Asia & Pacific", "iso-a3": "KIR", "iso-a2": "KI", "woe-id": "23424867", "continent": "Oceania" } }, { "type": "MultiPolygon", "arcs": [[[147]], [[148]], [[149, 150]], [[151]], [[152]], [[153]], [[154]]], "id": "PH", "properties": { "hc-group": "admin0", "hc-middle-x": 0.4, "hc-middle-y": 0.19, "hc-key": "ph", "hc-a2": "PH", "name": "Philippines", "labelrank": "2", "country-abbrev": "Phil.", "subregion": "South-Eastern Asia", "region-wb": "East Asia & Pacific", "iso-a3": "PHL", "iso-a2": "PH", "woe-id": "23424934", "continent": "Asia" } }, { "type": "MultiPolygon", "arcs": [[[155]], [[156]], [[157]], [[158]], [[159]], [[160]], [[161]], [[162]], [[163, -34, 164, -53, 165, 166, 167, 168, -36], [169]]], "id": "MX", "properties": { "hc-group": "admin0", "hc-middle-x": 0.51, "hc-middle-y": 0.49, "hc-key": "mx", "hc-a2": "MX", "name": "Mexico", "labelrank": "2", "country-abbrev": "Mex.", "subregion": "Central America", "region-wb": "Latin America & Caribbean", "iso-a3": "MEX", "iso-a2": "MX", "woe-id": "23424900", "continent": "North America" } }, { "type": "MultiPolygon", "arcs": [[[170]], [[171, 172, 173, 174]], [[175, 176]], [[177, -129, 178, -93, 179, -91, 180, -89, 181, 182]]], "id": "ES", "properties": { "hc-group": "admin0", "hc-middle-x": 0.76, "hc-middle-y": 0.27, "hc-key": "es", "hc-a2": "ES", "name": "Spain", "labelrank": "2", "country-abbrev": "Sp.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "ESP", "iso-a2": "ES", "woe-id": "23424950", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[183]], "id": "BU", "properties": { "hc-group": "admin0", "hc-middle-x": 0.49, "hc-middle-y": 0.73, "hc-key": "bu", "hc-a2": "BU", "name": "Bajo Nuevo Bank (Petrel Is.)", "labelrank": "8", "country-abbrev": null, "subregion": "Caribbean", "region-wb": "Latin America & Caribbean", "iso-a3": "-99", "iso-a2": "BU", "woe-id": "-99", "continent": "North America" } }, { "type": "Polygon", "arcs": [[184]], "id": "MV", "properties": { "hc-group": "admin0", "hc-middle-x": 0.57, "hc-middle-y": 0.53, "hc-key": "mv", "hc-a2": "MV", "name": "Maldives", "labelrank": "5", "country-abbrev": "Mald.", "subregion": "Southern Asia", "region-wb": "South Asia", "iso-a3": "MDV", "iso-a2": "MV", "woe-id": "23424899", "continent": "Seven seas (open ocean)" } }, { "type": "Polygon", "arcs": [[185]], "id": "SP", "properties": { "hc-group": "admin0", "hc-key": "sp", "hc-a2": "SP", "name": "Spratly Islands", "labelrank": "6", "country-abbrev": "Spratly Is.", "subregion": "South-Eastern Asia", "region-wb": "East Asia & Pacific", "iso-a3": "SPI", "iso-a2": "SP", "woe-id": "23424921", "continent": "Asia" } }, { "type": "MultiPolygon", "arcs": [[[186]], [[187]], [[188]], [[189]], [[190]], [[191]], [[192]], [[193]], [[194]], [[195]], [[196]], [[197, 198, 199, 200, 201, 202, 203, 204, 205, 206], [207, 208]], [[209, -183]], [[210, 211]], [[212, 213]], [[214]]], "id": "GB", "properties": { "hc-group": "admin0", "hc-middle-x": 0.69, "hc-middle-y": 0.09, "hc-key": "gb", "hc-a2": "GB", "name": "United Kingdom", "labelrank": "2", "country-abbrev": "U.K.", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "GBR", "iso-a2": "GB", "woe-id": "-90", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[215]], [[216]], [[217]], [[218]], [[219]], [[220]], [[221]], [[222]], [[223]], [[224, 225, 226, 227, 228, 229, 230, 231]], [[232, 233]]], "id": "GR", "properties": { "hc-group": "admin0", "hc-middle-x": 0.3, "hc-middle-y": 0.43, "hc-key": "gr", "hc-a2": "GR", "name": "Greece", "labelrank": "3", "country-abbrev": "Greece", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "GRC", "iso-a2": "GR", "woe-id": "23424833", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[234]], "id": "AS", "properties": { "hc-group": "admin0", "hc-middle-x": 0.56, "hc-middle-y": 0.57, "hc-key": "as", "hc-a2": "AS", "name": "American Samoa", "labelrank": "4", "country-abbrev": "Am. Samoa", "subregion": "Polynesia", "region-wb": "East Asia & Pacific", "iso-a3": "ASM", "iso-a2": "AS", "woe-id": "23424746", "continent": "Oceania" } }, { "type": "MultiPolygon", "arcs": [[[235]], [[236]], [[237]], [[238]], [[239]], [[240]], [[241, 242]]], "id": "DK", "properties": { "hc-group": "admin0", "hc-middle-x": 0.35, "hc-middle-y": 0.49, "hc-key": "dk", "hc-a2": "DK", "name": "Denmark", "labelrank": "4", "country-abbrev": "Den.", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "DNK", "iso-a2": "DK", "woe-id": "23424796", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[243]], [[244]], [[245]], [[246]], [[247]], [[248]], [[249]], [[250]], [[251]], [[252]], [[253]], [[254]], [[255]], [[256]], [[257]], [[258]], [[259]], [[260]]], "id": "GL", "properties": { "hc-group": "admin0", "hc-middle-x": 0.55, "hc-middle-y": 0.43, "hc-key": "gl", "hc-a2": "GL", "name": "Greenland", "labelrank": "3", "country-abbrev": "Grlnd.", "subregion": "Northern America", "region-wb": "Europe & Central Asia", "iso-a3": "GRL", "iso-a2": "GL", "woe-id": "23424828", "continent": "North America" } }, { "type": "Polygon", "arcs": [[261]], "id": "GU", "properties": { "hc-group": "admin0", "hc-middle-x": 0.45, "hc-middle-y": 0.44, "hc-key": "gu", "hc-a2": "GU", "name": "Guam", "labelrank": "6", "country-abbrev": "Guam", "subregion": "Micronesia", "region-wb": "East Asia & Pacific", "iso-a3": "GUM", "iso-a2": "GU", "woe-id": "23424832", "continent": "Oceania" } }, { "type": "Polygon", "arcs": [[262]], "id": "MP", "properties": { "hc-group": "admin0", "hc-middle-x": 0.45, "hc-middle-y": 0.49, "hc-key": "mp", "hc-a2": "MP", "name": "Northern Mariana Islands", "labelrank": "6", "country-abbrev": "N.M.I.", "subregion": "Micronesia", "region-wb": "East Asia & Pacific", "iso-a3": "MNP", "iso-a2": "MP", "woe-id": "23424788", "continent": "Oceania" } }, { "type": "Polygon", "arcs": [[263]], "id": "PR", "properties": { "hc-group": "admin0", "hc-middle-x": 0.48, "hc-middle-y": 0.65, "hc-key": "pr", "hc-a2": "PR", "name": "Puerto Rico", "labelrank": "5", "country-abbrev": "P.R.", "subregion": "Caribbean", "region-wb": "Latin America & Caribbean", "iso-a3": "PRI", "iso-a2": "PR", "woe-id": "23424935", "continent": "North America" } }, { "type": "Polygon", "arcs": [[264]], "id": "VI", "properties": { "hc-group": "admin0", "hc-middle-x": 0.48, "hc-middle-y": 0.19, "hc-key": "vi", "hc-a2": "VI", "name": "United States Virgin Islands", "labelrank": "6", "country-abbrev": "V.I. (U.S.)", "subregion": "Caribbean", "region-wb": "Latin America & Caribbean", "iso-a3": "VIR", "iso-a2": "VI", "woe-id": "23424985", "continent": "North America" } }, { "type": "MultiPolygon", "arcs": [[[265], [266]], [[267, 268, 269, -42, 270, -40, 271, -38, 272, -32, 273, -59, 274, -48, 275, 276], [277], [278], [279], [280], [281], [282]], [[283], [284], [285]], [[286]], [[287]], [[288]], [[289]], [[290]], [[291]], [[292]], [[293]], [[294]], [[295]], [[296]], [[297]], [[298]], [[299]], [[300]], [[301]], [[302]], [[303]], [[304]], [[305]], [[306]], [[307]], [[308]], [[309]], [[310]], [[311]], [[312]], [[313]], [[314]], [[315]], [[316]], [[317]], [[318]], [[319]], [[320]], [[321]], [[322]], [[323]], [[324]], [[325]], [[326]], [[327]], [[328]], [[329]], [[330]], [[331]], [[332]], [[333]], [[334]], [[335]], [[336]], [[337]], [[338]], [[339]], [[340]], [[341]], [[342]], [[343]], [[344]], [[345]], [[346]], [[347]], [[348]], [[349]], [[350]], [[351]], [[352]], [[353]], [[354]], [[355]], [[356]], [[357]], [[358]], [[359]], [[360]], [[361]], [[362]], [[363]], [[364]], [[365]], [[366]], [[367]], [[368]], [[369]], [[370]], [[371]], [[372]], [[373]], [[374]], [[375]], [[376]], [[377]], [[378]], [[379]], [[380]], [[381]], [[382]], [[383]], [[384]], [[385]], [[386]], [[387]], [[388]], [[389]], [[390]], [[391]], [[392]], [[393]], [[394]], [[395]], [[396]], [[397]], [[398]], [[399]], [[400]], [[401]], [[402]], [[403]], [[404]], [[405]], [[406]], [[407]], [[408]], [[409]], [[410]], [[411]], [[412]], [[413]], [[414]], [[415]], [[416]], [[417]], [[418]], [[-51, 419, -49, 420]], [[421]], [[422]], [[423]], [[424]], [[425]], [[426]], [[427]], [[428]], [[429]], [[430]], [[431]], [[432]], [[433]], [[434]], [[435]], [[436]], [[437]]], "id": "CA", "properties": { "hc-group": "admin0", "hc-middle-x": 0.29, "hc-middle-y": 0.64, "hc-key": "ca", "hc-a2": "CA", "name": "Canada", "labelrank": "2", "country-abbrev": "Can.", "subregion": "Northern America", "region-wb": "North America", "iso-a3": "CAN", "iso-a2": "CA", "woe-id": "23424775", "continent": "North America" } }, { "type": "Polygon", "arcs": [[438]], "id": "ST", "properties": { "hc-group": "admin0", "hc-middle-x": 0.55, "hc-key": "st", "hc-a2": "ST", "name": "Sao Tome and Principe", "labelrank": "6", "country-abbrev": "S.T.P.", "subregion": "Middle Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "STP", "iso-a2": "ST", "woe-id": "23424966", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[439]], "id": "CV", "properties": { "hc-group": "admin0", "hc-middle-x": 0.56, "hc-key": "cv", "hc-a2": "CV", "name": "Cape Verde", "labelrank": "4", "country-abbrev": "C.Vd.", "subregion": "Western Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "CPV", "iso-a2": "CV", "woe-id": "23424794", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[440]], "id": "DM", "properties": { "hc-group": "admin0", "hc-middle-x": 0.54, "hc-middle-y": 0.47, "hc-key": "dm", "hc-a2": "DM", "name": "Dominica", "labelrank": "6", "country-abbrev": "D'inca", "subregion": "Caribbean", "region-wb": "Latin America & Caribbean", "iso-a3": "DMA", "iso-a2": "DM", "woe-id": "23424798", "continent": "North America" } }, { "type": "MultiPolygon", "arcs": [[[441]], [[442, -85]], [[443, 444]], [[445, 446, 447]]], "id": "NL", "properties": { "hc-group": "admin0", "hc-middle-x": 0.99, "hc-middle-y": 0.01, "hc-key": "nl", "hc-a2": "NL", "name": "Netherlands", "labelrank": "5", "country-abbrev": "Neth.", "subregion": "Western Europe", "region-wb": "Europe & Central Asia", "iso-a3": "NLD", "iso-a2": "NL", "woe-id": "-90", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[448]], "id": "JM", "properties": { "hc-group": "admin0", "hc-middle-y": 0.52, "hc-key": "jm", "hc-a2": "JM", "name": "Jamaica", "labelrank": "4", "country-abbrev": "Jam.", "subregion": "Caribbean", "region-wb": "Latin America & Caribbean", "iso-a3": "JAM", "iso-a2": "JM", "woe-id": "23424858", "continent": "North America" } }, { "type": "Polygon", "arcs": [[449]], "id": "WS", "properties": { "hc-group": "admin0", "hc-middle-y": 0.54, "hc-key": "ws", "hc-a2": "WS", "name": "Samoa", "labelrank": "4", "country-abbrev": "Samoa", "subregion": "Polynesia", "region-wb": "East Asia & Pacific", "iso-a3": "WSM", "iso-a2": "WS", "woe-id": "23424992", "continent": "Oceania" } }, { "type": "MultiPolygon", "arcs": [[[450]], [[451, 452]], [[453, 454, 455, 456]]], "id": "OM", "properties": { "hc-group": "admin0", "hc-middle-x": 0.88, "hc-middle-y": 0.44, "hc-key": "om", "hc-a2": "OM", "name": "Oman", "labelrank": "4", "country-abbrev": "Oman", "subregion": "Western Asia", "region-wb": "Middle East & North Africa", "iso-a3": "OMN", "iso-a2": "OM", "woe-id": "23424898", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[457]], "id": "VC", "properties": { "hc-group": "admin0", "hc-key": "vc", "hc-a2": "VC", "name": "Saint Vincent and the Grenadines", "labelrank": "6", "country-abbrev": "St.V.G.", "subregion": "Caribbean", "region-wb": "Latin America & Caribbean", "iso-a3": "VCT", "iso-a2": "VC", "woe-id": "23424981", "continent": "North America" } }, { "type": "MultiPolygon", "arcs": [[[458]], [[459, -230, 460]], [[461, 462, 463, 464, 465, 466, 467, 468, 469]]], "id": "TR", "properties": { "hc-group": "admin0", "hc-middle-x": 0.34, "hc-middle-y": 0.49, "hc-key": "tr", "hc-a2": "TR", "name": "Turkey", "labelrank": "2", "country-abbrev": "Tur.", "subregion": "Western Asia", "region-wb": "Europe & Central Asia", "iso-a3": "TUR", "iso-a2": "TR", "woe-id": "23424969", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[470, -74, 471]], "id": "BD", "properties": { "hc-group": "admin0", "hc-middle-x": 0.85, "hc-middle-y": 0.61, "hc-key": "bd", "hc-a2": "BD", "name": "Bangladesh", "labelrank": "3", "country-abbrev": "Bang.", "subregion": "Southern Asia", "region-wb": "South Asia", "iso-a3": "BGD", "iso-a2": "BD", "woe-id": "23424759", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[472]], "id": "LC", "properties": { "hc-group": "admin0", "hc-middle-x": 0.52, "hc-middle-y": 0.47, "hc-key": "lc", "hc-a2": "LC", "name": "Saint Lucia", "labelrank": "6", "country-abbrev": "S.L.", "subregion": "Caribbean", "region-wb": "Latin America & Caribbean", "iso-a3": "LCA", "iso-a2": "LC", "woe-id": "23424951", "continent": "North America" } }, { "type": "Polygon", "arcs": [[473]], "id": "NR", "properties": { "hc-group": "admin0", "hc-middle-x": 0.53, "hc-key": "nr", "hc-a2": "NR", "name": "Nauru", "labelrank": "6", "country-abbrev": "Nauru", "subregion": "Micronesia", "region-wb": "East Asia & Pacific", "iso-a3": "NRU", "iso-a2": "NR", "woe-id": "23424912", "continent": "Oceania" } }, { "type": "MultiPolygon", "arcs": [[[474]], [[475]], [[476]], [[477]], [[478]], [[479]], [[480]], [[481]], [[482]], [[483]], [[484]], [[485]], [[486]], [[487]], [[488]], [[489]], [[490]], [[491]], [[492]], [[493, 494, 495, 496], [497]], [[498]], [[499]], [[500]], [[501]], [[502]], [[503]]], "id": "NO", "properties": { "hc-group": "admin0", "hc-middle-x": 0.1, "hc-middle-y": 0.93, "hc-key": "no", "hc-a2": "NO", "name": "Norway", "labelrank": "3", "country-abbrev": "Nor.", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "NOR", "iso-a2": "NO", "woe-id": "-90", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[504]], "id": "KN", "properties": { "hc-group": "admin0", "hc-middle-x": 0.57, "hc-middle-y": 0.49, "hc-key": "kn", "hc-a2": "KN", "name": "Saint Kitts and Nevis", "labelrank": "6", "country-abbrev": "St.K.N.", "subregion": "Caribbean", "region-wb": "Latin America & Caribbean", "iso-a3": "KNA", "iso-a2": "KN", "woe-id": "23424940", "continent": "North America" } }, { "type": "Polygon", "arcs": [[505]], "id": "BH", "properties": { "hc-group": "admin0", "hc-middle-x": 0.45, "hc-key": "bh", "hc-a2": "BH", "name": "Bahrain", "labelrank": "4", "country-abbrev": "Bahr.", "subregion": "Western Asia", "region-wb": "Middle East & North Africa", "iso-a3": "BHR", "iso-a2": "BH", "woe-id": "23424753", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[506]], "id": "TO", "properties": { "hc-group": "admin0", "hc-middle-x": 0.54, "hc-middle-y": 0.34, "hc-key": "to", "hc-a2": "TO", "name": "Tonga", "labelrank": "4", "country-abbrev": "Tongo", "subregion": "Polynesia", "region-wb": "East Asia & Pacific", "iso-a3": "TON", "iso-a2": "TO", "woe-id": "23424964", "continent": "Oceania" } }, { "type": "MultiPolygon", "arcs": [[[507]], [[508]], [[509]], [[510]], [[511]], [[512]], [[513]], [[514]], [[515, -495, 516, 517]]], "id": "FI", "properties": { "hc-group": "admin0", "hc-middle-x": 0.63, "hc-middle-y": 0.54, "hc-key": "fi", "hc-a2": "FI", "name": "Finland", "labelrank": "3", "country-abbrev": "Fin.", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "FIN", "iso-a2": "FI", "woe-id": "23424812", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[518]], [[519]], [[520]], [[521]], [[522, 523, 524, 525]], [[526, 527]], [[528, 529]], [[530]], [[531]], [[532]], [[533]], [[534, 535]], [[536]]], "id": "ID", "properties": { "hc-group": "admin0", "hc-middle-x": 0.38, "hc-middle-y": 0.41, "hc-key": "id", "hc-a2": "ID", "name": "Indonesia", "labelrank": "2", "country-abbrev": "Indo.", "subregion": "South-Eastern Asia", "region-wb": "East Asia & Pacific", "iso-a3": "IDN", "iso-a2": "ID", "woe-id": "23424846", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[537]], "id": "MU", "properties": { "hc-group": "admin0", "hc-middle-x": 0.63, "hc-middle-y": 0.58, "hc-key": "mu", "hc-a2": "MU", "name": "Mauritius", "labelrank": "5", "country-abbrev": "Mus.", "subregion": "Eastern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "MUS", "iso-a2": "MU", "woe-id": "23424894", "continent": "Seven seas (open ocean)" } }, { "type": "MultiPolygon", "arcs": [[[538]], [[539]], [[540, -496, -516], [541]]], "id": "SE", "properties": { "hc-group": "admin0", "hc-middle-x": 0.4, "hc-middle-y": 0.48, "hc-key": "se", "hc-a2": "SE", "name": "Sweden", "labelrank": "3", "country-abbrev": "Swe.", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "SWE", "iso-a2": "SE", "woe-id": "23424954", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[542]], "id": "TT", "properties": { "hc-group": "admin0", "hc-middle-x": 0.46, "hc-middle-y": 0.44, "hc-key": "tt", "hc-a2": "TT", "name": "Trinidad and Tobago", "labelrank": "5", "country-abbrev": "Tr.T.", "subregion": "Caribbean", "region-wb": "Latin America & Caribbean", "iso-a3": "TTO", "iso-a2": "TT", "woe-id": "23424958", "continent": "North America" } }, { "type": "MultiPolygon", "arcs": [[[543]], [[-528, 544, -536, 545, 546, 547, 548, 549]], [[550, 551]]], "id": "MY", "properties": { "hc-group": "admin0", "hc-middle-x": 0.9, "hc-middle-y": 0.26, "hc-key": "my", "hc-a2": "MY", "name": "Malaysia", "labelrank": "3", "country-abbrev": "Malay.", "subregion": "South-Eastern Asia", "region-wb": "East Asia & Pacific", "iso-a3": "MYS", "iso-a2": "MY", "woe-id": "23424901", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[552, 553, 554, 555, 556, 557]], "id": "PA", "properties": { "hc-group": "admin0", "hc-middle-x": 0.22, "hc-key": "pa", "hc-a2": "PA", "name": "Panama", "labelrank": "4", "country-abbrev": "Pan.", "subregion": "Central America", "region-wb": "Latin America & Caribbean", "iso-a3": "PAN", "iso-a2": "PA", "woe-id": "23424924", "continent": "North America" } }, { "type": "Polygon", "arcs": [[558]], "id": "PW", "properties": { "hc-group": "admin0", "hc-middle-x": 0.38, "hc-middle-y": 0.44, "hc-key": "pw", "hc-a2": "PW", "name": "Palau", "labelrank": "6", "country-abbrev": "Palau", "subregion": "Micronesia", "region-wb": "East Asia & Pacific", "iso-a3": "PLW", "iso-a2": "PW", "woe-id": "23424927", "continent": "Oceania" } }, { "type": "Polygon", "arcs": [[559]], "id": "TV", "properties": { "hc-group": "admin0", "hc-middle-x": 0.25, "hc-key": "tv", "hc-a2": "TV", "name": "Tuvalu", "labelrank": "6", "country-abbrev": "Tuv.", "subregion": "Polynesia", "region-wb": "East Asia & Pacific", "iso-a3": "TUV", "iso-a2": "TV", "woe-id": "23424970", "continent": "Oceania" } }, { "type": "Polygon", "arcs": [[560]], "id": "MH", "properties": { "hc-group": "admin0", "hc-middle-x": 0.49, "hc-middle-y": 0.6, "hc-key": "mh", "hc-a2": "MH", "name": "Marshall Islands", "labelrank": "6", "country-abbrev": "M. Is.", "subregion": "Micronesia", "region-wb": "East Asia & Pacific", "iso-a3": "MHL", "iso-a2": "MH", "woe-id": "23424932", "continent": "Oceania" } }, { "type": "MultiPolygon", "arcs": [[[561]], [[562]], [[563]], [[564, 565, 566, 567]], [[568, 569, 570, 571]], [[572, 573]]], "id": "CL", "properties": { "hc-group": "admin0", "hc-middle-x": 0.51, "hc-middle-y": 0.9, "hc-key": "cl", "hc-a2": "CL", "name": "Chile", "labelrank": "2", "country-abbrev": "Chile", "subregion": "South America", "region-wb": "Latin America & Caribbean", "iso-a3": "CHL", "iso-a2": "CL", "woe-id": "23424782", "continent": "South America" } }, { "type": "MultiPolygon", "arcs": [[[574]], [[-551, 575, 576, 577, 578, 579]]], "id": "TH", "properties": { "hc-group": "admin0", "hc-middle-x": 0.25, "hc-middle-y": 0.49, "hc-key": "th", "hc-a2": "TH", "name": "Thailand", "labelrank": "3", "country-abbrev": "Thai.", "subregion": "South-Eastern Asia", "region-wb": "East Asia & Pacific", "iso-a3": "THA", "iso-a2": "TH", "woe-id": "23424960", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[580]], "id": "GD", "properties": { "hc-group": "admin0", "hc-key": "gd", "hc-a2": "GD", "name": "Grenada", "labelrank": "6", "country-abbrev": "Gren.", "subregion": "Caribbean", "region-wb": "Latin America & Caribbean", "iso-a3": "GRD", "iso-a2": "GD", "woe-id": "23424826", "continent": "North America" } }, { "type": "MultiPolygon", "arcs": [[[581]], [[582]], [[583]], [[584]], [[585, 586, 587, 588, 589, 590, 591, 592, 593, 594]]], "id": "EE", "properties": { "hc-group": "admin0", "hc-middle-x": 0.35, "hc-middle-y": 0.41, "hc-key": "ee", "hc-a2": "EE", "name": "Estonia", "labelrank": "6", "country-abbrev": "Est.", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "EST", "iso-a2": "EE", "woe-id": "23424805", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[595]], "id": "AG", "properties": { "hc-group": "admin0", "hc-middle-y": 0.48, "hc-key": "ag", "hc-a2": "AG", "name": "Antigua and Barbuda", "labelrank": "6", "country-abbrev": "Ant.B.", "subregion": "Caribbean", "region-wb": "Latin America & Caribbean", "iso-a3": "ATG", "iso-a2": "AG", "woe-id": "23424737", "continent": "North America" } }, { "type": "Polygon", "arcs": [[596]], "id": "TW", "properties": { "hc-group": "admin0", "hc-middle-x": 0.49, "hc-middle-y": 0.41, "hc-key": "tw", "hc-a2": "TW", "name": "Taiwan", "labelrank": "3", "country-abbrev": "Taiwan", "subregion": "Eastern Asia", "region-wb": "East Asia & Pacific", "iso-a3": "TWN", "iso-a2": "TW", "woe-id": "23424971", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[597]], "id": "BB", "properties": { "hc-group": "admin0", "hc-middle-x": 0.31, "hc-middle-y": 0.56, "hc-key": "bb", "hc-a2": "BB", "name": "Barbados", "labelrank": "5", "country-abbrev": "Barb.", "subregion": "Caribbean", "region-wb": "Latin America & Caribbean", "iso-a3": "BRB", "iso-a2": "BB", "woe-id": "23424754", "continent": "North America" } }, { "type": "MultiPolygon", "arcs": [[[598]], [[599]], [[-102, 600, 601, 602, 603], [604], [605]]], "id": "IT", "properties": { "hc-group": "admin0", "hc-middle-x": 0.79, "hc-middle-y": 0.71, "hc-key": "it", "hc-a2": "IT", "name": "Italy", "labelrank": "2", "country-abbrev": "Italy", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "ITA", "iso-a2": "IT", "woe-id": "23424853", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[606]], "id": "MT", "properties": { "hc-group": "admin0", "hc-middle-x": 0.49, "hc-middle-y": 0.53, "hc-key": "mt", "hc-a2": "MT", "name": "Malta", "labelrank": "5", "country-abbrev": "Malta", "subregion": "Southern Europe", "region-wb": "Middle East & North Africa", "iso-a3": "MLT", "iso-a2": "MT", "woe-id": "23424897", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[607]], "id": "VU", "properties": { "hc-group": "admin0", "hc-middle-x": 0.6, "hc-middle-y": 0.53, "hc-key": "vu", "hc-a2": "VU", "name": "Vanuatu", "labelrank": "4", "country-abbrev": "Van.", "subregion": "Melanesia", "region-wb": "East Asia & Pacific", "iso-a3": "VUT", "iso-a2": "VU", "woe-id": "23424907", "continent": "Oceania" } }, { "type": "Polygon", "arcs": [[608]], "id": "SG", "properties": { "hc-group": "admin0", "hc-middle-y": 0.57, "hc-key": "sg", "hc-a2": "SG", "name": "Singapore", "labelrank": "6", "country-abbrev": "Sing.", "subregion": "South-Eastern Asia", "region-wb": "East Asia & Pacific", "iso-a3": "SGP", "iso-a2": "SG", "woe-id": "23424948", "continent": "Asia" } }, { "type": "MultiPolygon", "arcs": [[[-209, -208]], [[609, -207, 610, 611]], [[-199, 612]], [[613, -212, 614, 615, 616, 617, 618, -201]]], "id": "CY", "properties": { "hc-group": "admin0", "hc-middle-x": 0.39, "hc-middle-y": 0.51, "hc-key": "cy", "hc-a2": "CY", "name": "Cyprus", "labelrank": "5", "country-abbrev": "Cyp.", "subregion": "Western Asia", "region-wb": "Europe & Central Asia", "iso-a3": "CYP", "iso-a2": "CY", "woe-id": "-90", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[619]], "id": "LK", "properties": { "hc-group": "admin0", "hc-middle-x": 0.62, "hc-middle-y": 0.91, "hc-key": "lk", "hc-a2": "LK", "name": "Sri Lanka", "labelrank": "3", "country-abbrev": "Sri L.", "subregion": "Southern Asia", "region-wb": "South Asia", "iso-a3": "LKA", "iso-a2": "LK", "woe-id": "23424778", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[620]], "id": "KM", "properties": { "hc-group": "admin0", "hc-middle-x": 0.41, "hc-middle-y": 0.51, "hc-key": "km", "hc-a2": "KM", "name": "Comoros", "labelrank": "6", "country-abbrev": "Com.", "subregion": "Eastern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "COM", "iso-a2": "KM", "woe-id": "23424786", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[621]], "id": "FJ", "properties": { "hc-group": "admin0", "hc-middle-x": 0.44, "hc-middle-y": 0.33, "hc-key": "fj", "hc-a2": "FJ", "name": "Fiji", "labelrank": "6", "country-abbrev": "Fiji", "subregion": "Melanesia", "region-wb": "East Asia & Pacific", "iso-a3": "FJI", "iso-a2": "FJ", "woe-id": "23424813", "continent": "Oceania" } }, { "type": "MultiPolygon", "arcs": [[[622]], [[623]], [[624]], [[625]], [[626]], [[627]], [[628]], [[629]], [[630]], [[631]], [[632, 633, 634, 635, -587, 636, -595, 637, -592, 591, 638, -590, 639, -517, -494, 640, 641, -121, 642, -119, 643, -115, 644, 645, 646, 647]], [[648]], [[649]], [[650]], [[651]], [[652]], [[653, 654, 655, 656, 657, 658]], [[659]], [[660]], [[661]], [[662]], [[663]], [[664]], [[665]], [[666]]], "id": "RU", "properties": { "hc-group": "admin0", "hc-middle-x": 0.57, "hc-middle-y": 0.56, "hc-key": "ru", "hc-a2": "RU", "name": "Russia", "labelrank": "2", "country-abbrev": "Rus.", "subregion": "Eastern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "RUS", "iso-a2": "RU", "woe-id": "23424936", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[604]], "id": "VA", "properties": { "hc-group": "admin0", "hc-middle-x": 0.61, "hc-middle-y": 0.44, "hc-key": "va", "hc-a2": "VA", "name": "Vatican", "labelrank": "6", "country-abbrev": "Vat.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "VAT", "iso-a2": "VA", "woe-id": "23424986", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-606]], "id": "SM", "properties": { "hc-group": "admin0", "hc-middle-x": 0.48, "hc-middle-y": 0.42, "hc-key": "sm", "hc-a2": "SM", "name": "San Marino", "labelrank": "6", "country-abbrev": "S.M.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "SMR", "iso-a2": "SM", "woe-id": "23424947", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[667, 668, 669, 670, 671, 672, 673, -645, -114, 674, 675, 676], [677]], [[678]]], "id": "KZ", "properties": { "hc-group": "admin0", "hc-middle-x": 0.57, "hc-middle-y": 0.46, "hc-key": "kz", "hc-a2": "KZ", "name": "Kazakhstan", "labelrank": "3", "country-abbrev": "Kaz.", "subregion": "Central Asia", "region-wb": "Europe & Central Asia", "iso-a3": "KAZ", "iso-a2": "KZ", "woe-id": "-90", "continent": "Asia" } }, { "type": "MultiPolygon", "arcs": [[[679]], [[680]], [[681]], [[-470, 682, 683]], [[-647, 684, 685, 686, 687]]], "id": "AZ", "properties": { "hc-group": "admin0", "hc-middle-x": 0.83, "hc-middle-y": 0.51, "hc-key": "az", "hc-a2": "AZ", "name": "Azerbaijan", "labelrank": "5", "country-abbrev": "Aze.", "subregion": "Western Asia", "region-wb": "Europe & Central Asia", "iso-a3": "AZE", "iso-a2": "AZ", "woe-id": "23424741", "continent": "Asia" } }, { "type": "MultiPolygon", "arcs": [[[688]], [[689]], [[-112, 690, 691, 692]]], "id": "TJ", "properties": { "hc-group": "admin0", "hc-middle-x": 0.28, "hc-middle-y": 0.56, "hc-key": "tj", "hc-a2": "TJ", "name": "Tajikistan", "labelrank": "4", "country-abbrev": "Tjk.", "subregion": "Central Asia", "region-wb": "Europe & Central Asia", "iso-a3": "TJK", "iso-a2": "TJ", "woe-id": "23424961", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[693]], "id": "LS", "properties": { "hc-group": "admin0", "hc-middle-x": 0.52, "hc-middle-y": 0.45, "hc-key": "ls", "hc-a2": "LS", "name": "Lesotho", "labelrank": "6", "country-abbrev": "Les.", "subregion": "Southern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "LSO", "iso-a2": "LS", "woe-id": "23424880", "continent": "Africa" } }, { "type": "MultiPolygon", "arcs": [[[694]], [[695]], [[696, -676, 697, -692, 698, 699, 700, 701, -670, 702, -668], [-689]]], "id": "UZ", "properties": { "hc-group": "admin0", "hc-middle-x": 0.46, "hc-middle-y": 0.53, "hc-key": "uz", "hc-a2": "UZ", "name": "Uzbekistan", "labelrank": "3", "country-abbrev": "Uzb.", "subregion": "Central Asia", "region-wb": "Europe & Central Asia", "iso-a3": "UZB", "iso-a2": "UZ", "woe-id": "23424980", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[-173, 703, 704, 705, 706, -177, 707, 174, 708]], "id": "MA", "properties": { "hc-group": "admin0", "hc-middle-x": 0.6, "hc-middle-y": 0.21, "hc-key": "ma", "hc-a2": "MA", "name": "Morocco", "labelrank": "3", "country-abbrev": "Mor.", "subregion": "Northern Africa", "region-wb": "Middle East & North Africa", "iso-a3": "MAR", "iso-a2": "MA", "woe-id": "23424893", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[709, -558, 710, 711, -141, 712, 713]], "id": "CO", "properties": { "hc-group": "admin0", "hc-middle-y": 0.54, "hc-key": "co", "hc-a2": "CO", "name": "Colombia", "labelrank": "2", "country-abbrev": "Col.", "subregion": "South America", "region-wb": "Latin America & Caribbean", "iso-a3": "COL", "iso-a2": "CO", "woe-id": "23424787", "continent": "South America" } }, { "type": "MultiPolygon", "arcs": [[[714, -523]], [[715, -525]]], "id": "TL", "properties": { "hc-group": "admin0", "hc-middle-x": 0.65, "hc-middle-y": 0.36, "hc-key": "tl", "hc-a2": "TL", "name": "East Timor", "labelrank": "5", "country-abbrev": "T.L.", "subregion": "South-Eastern Asia", "region-wb": "East Asia & Pacific", "iso-a3": "TLS", "iso-a2": "TL", "woe-id": "23424968", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735]], "id": "TZ", "properties": { "hc-group": "admin0", "hc-key": "tz", "hc-a2": "TZ", "name": "United Republic of Tanzania", "labelrank": "3", "country-abbrev": "Tanz.", "subregion": "Eastern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "TZA", "iso-a2": "TZ", "woe-id": "23424973", "continent": "Africa" } }, { "type": "MultiPolygon", "arcs": [[[736, -567]], [[-135, 737, 738, -571, 739, 740]], [[-565, 741, 742, 743]]], "id": "AR", "properties": { "hc-group": "admin0", "hc-middle-x": 0.46, "hc-middle-y": 0.27, "hc-key": "ar", "hc-a2": "AR", "name": "Argentina", "labelrank": "2", "country-abbrev": "Arg.", "subregion": "South America", "region-wb": "Latin America & Caribbean", "iso-a3": "ARG", "iso-a2": "AR", "woe-id": "23424747", "continent": "South America" } }, { "type": "Polygon", "arcs": [[744, 745, 746, 747, -454, 748, 749, 750, 751, 752]], "id": "SA", "properties": { "hc-group": "admin0", "hc-middle-x": 0.45, "hc-middle-y": 0.53, "hc-key": "sa", "hc-a2": "SA", "name": "Saudi Arabia", "labelrank": "2", "country-abbrev": "Saud.", "subregion": "Western Asia", "region-wb": "Middle East & North Africa", "iso-a3": "SAU", "iso-a2": "SA", "woe-id": "23424938", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[-110, 753, -76, 754, 755, 756]], "id": "PK", "properties": { "hc-group": "admin0", "hc-middle-x": 0.34, "hc-middle-y": 0.64, "hc-key": "pk", "hc-a2": "PK", "name": "Pakistan", "labelrank": "2", "country-abbrev": "Pak.", "subregion": "Southern Asia", "region-wb": "South Asia", "iso-a3": "PAK", "iso-a2": "PK", "woe-id": "23424922", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[-457, 757, -749]], "id": "YE", "properties": { "hc-group": "admin0", "hc-middle-x": 0.39, "hc-middle-y": 0.75, "hc-key": "ye", "hc-a2": "YE", "name": "Yemen", "labelrank": "3", "country-abbrev": "Yem.", "subregion": "Western Asia", "region-wb": "Middle East & North Africa", "iso-a3": "YEM", "iso-a2": "YE", "woe-id": "23425002", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[758, -455, -748, 759, -453], [-451]], "id": "AE", "properties": { "hc-group": "admin0", "hc-middle-x": 0.59, "hc-middle-y": 0.65, "hc-key": "ae", "hc-a2": "AE", "name": "United Arab Emirates", "labelrank": "4", "country-abbrev": "U.A.E.", "subregion": "Western Asia", "region-wb": "Middle East & North Africa", "iso-a3": "ARE", "iso-a2": "AE", "woe-id": "23424738", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[-734, 760, 761, 762, 763, 764, 765]], "id": "KE", "properties": { "hc-group": "admin0", "hc-middle-x": 0.87, "hc-middle-y": 0.7, "hc-key": "ke", "hc-a2": "KE", "name": "Kenya", "labelrank": "2", "country-abbrev": "Ken.", "subregion": "Eastern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "KEN", "iso-a2": "KE", "woe-id": "23424863", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-713, -140, 766, 767, 768, 769, 770, -569, 771, 772]], "id": "PE", "properties": { "hc-group": "admin0", "hc-middle-x": 0.69, "hc-middle-y": 0.71, "hc-key": "pe", "hc-a2": "PE", "name": "Peru", "labelrank": "2", "country-abbrev": "Peru", "subregion": "South America", "region-wb": "Latin America & Caribbean", "iso-a3": "PER", "iso-a2": "PE", "woe-id": "23424919", "continent": "South America" } }, { "type": "Polygon", "arcs": [[773, 774, 775, 776, 777]], "id": "DO", "properties": { "hc-group": "admin0", "hc-middle-x": 0.46, "hc-middle-y": 0.38, "hc-key": "do", "hc-a2": "DO", "name": "Dominican Republic", "labelrank": "5", "country-abbrev": "Dom. Rep.", "subregion": "Caribbean", "region-wb": "Latin America & Caribbean", "iso-a3": "DOM", "iso-a2": "DO", "woe-id": "23424800", "continent": "North America" } }, { "type": "MultiPolygon", "arcs": [[[773, -774, 778]], [[-776, 779, -778, 780]]], "id": "HT", "properties": { "hc-group": "admin0", "hc-middle-x": 0.82, "hc-middle-y": 0.96, "hc-key": "ht", "hc-a2": "HT", "name": "Haiti", "labelrank": "5", "country-abbrev": "Haiti", "subregion": "Caribbean", "region-wb": "Latin America & Caribbean", "iso-a3": "HTI", "iso-a2": "HT", "woe-id": "23424839", "continent": "North America" } }, { "type": "MultiPolygon", "arcs": [[[-529, 781]], [[782]], [[783]]], "id": "PG", "properties": { "hc-group": "admin0", "hc-middle-x": 0.14, "hc-key": "pg", "hc-a2": "PG", "name": "Papua New Guinea", "labelrank": "2", "country-abbrev": "P.N.G.", "subregion": "Melanesia", "region-wb": "East Asia & Pacific", "iso-a3": "PNG", "iso-a2": "PG", "woe-id": "23424926", "continent": "Oceania" } }, { "type": "MultiPolygon", "arcs": [[[784, 785, 786]], [[787, 788, 789, 790]]], "id": "AO", "properties": { "hc-group": "admin0", "hc-middle-y": 0.67, "hc-key": "ao", "hc-a2": "AO", "name": "Angola", "labelrank": "3", "country-abbrev": "Ang.", "subregion": "Middle Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "AGO", "iso-a2": "AO", "woe-id": "23424745", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[791, 792, -579, 793]], "id": "KH", "properties": { "hc-group": "admin0", "hc-middle-x": 0.84, "hc-middle-y": 0.49, "hc-key": "kh", "hc-a2": "KH", "name": "Cambodia", "labelrank": "3", "country-abbrev": "Camb.", "subregion": "South-Eastern Asia", "region-wb": "East Asia & Pacific", "iso-a3": "KHM", "iso-a2": "KH", "woe-id": "23424776", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[-792, 794, -124, 795]], "id": "VN", "properties": { "hc-group": "admin0", "hc-middle-x": 0.59, "hc-middle-y": 0.89, "hc-key": "vn", "hc-a2": "VN", "name": "Vietnam", "labelrank": "2", "country-abbrev": "Viet.", "subregion": "South-Eastern Asia", "region-wb": "East Asia & Pacific", "iso-a3": "VNM", "iso-a2": "VN", "woe-id": "23424984", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[796, -736, 797, 798, 799, 800, 801, 802, 803]], "id": "MZ", "properties": { "hc-group": "admin0", "hc-middle-x": 0.83, "hc-middle-y": 0.28, "hc-key": "mz", "hc-a2": "MZ", "name": "Mozambique", "labelrank": "3", "country-abbrev": "Moz.", "subregion": "Eastern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "MOZ", "iso-a2": "MZ", "woe-id": "23424902", "continent": "Africa" } }, { "type": "MultiPolygon", "arcs": [[[804, -556, 805, 806]], [[553, -554, 807]]], "id": "CR", "properties": { "hc-group": "admin0", "hc-middle-x": 0.55, "hc-middle-y": 0.31, "hc-key": "cr", "hc-a2": "CR", "name": "Costa Rica", "labelrank": "5", "country-abbrev": "C.R.", "subregion": "Central America", "region-wb": "Latin America & Caribbean", "iso-a3": "CRI", "iso-a2": "CR", "woe-id": "23424791", "continent": "North America" } }, { "type": "Polygon", "arcs": [[808, 809, 810, 811, 812]], "id": "BJ", "properties": { "hc-group": "admin0", "hc-middle-x": 0.57, "hc-middle-y": 0.49, "hc-key": "bj", "hc-a2": "BJ", "name": "Benin", "labelrank": "5", "country-abbrev": "Benin", "subregion": "Western Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "BEN", "iso-a2": "BJ", "woe-id": "23424764", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-809, 813, 814, 815, 816]], "id": "NG", "properties": { "hc-group": "admin0", "hc-middle-x": 0.36, "hc-middle-y": 0.33, "hc-key": "ng", "hc-a2": "NG", "name": "Nigeria", "labelrank": "2", "country-abbrev": "Nigeria", "subregion": "Western Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "NGA", "iso-a2": "NG", "woe-id": "23424908", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-462, -684, 817, -686, 818, 819, 820, -756, 821, 822]], "id": "IR", "properties": { "hc-group": "admin0", "hc-middle-x": 0.58, "hc-middle-y": 0.51, "hc-key": "ir", "hc-a2": "IR", "name": "Iran", "labelrank": "2", "country-abbrev": "Iran", "subregion": "Southern Asia", "region-wb": "Middle East & North Africa", "iso-a3": "IRN", "iso-a2": "IR", "woe-id": "23424851", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[823, 824, 825]], "id": "SV", "properties": { "hc-group": "admin0", "hc-middle-y": 0.55, "hc-key": "sv", "hc-a2": "SV", "name": "El Salvador", "labelrank": "6", "country-abbrev": "El. S.", "subregion": "Central America", "region-wb": "Latin America & Caribbean", "iso-a3": "SLV", "iso-a2": "SV", "woe-id": "23424807", "continent": "North America" } }, { "type": "Polygon", "arcs": [[826, 827, 828]], "id": "SL", "properties": { "hc-group": "admin0", "hc-middle-x": 0.48, "hc-middle-y": 0.48, "hc-key": "sl", "hc-a2": "SL", "name": "Sierra Leone", "labelrank": "4", "country-abbrev": "S.L.", "subregion": "Western Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "SLE", "iso-a2": "SL", "woe-id": "23424946", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[829, 830, 831]], "id": "GW", "properties": { "hc-group": "admin0", "hc-middle-x": 0.55, "hc-middle-y": 0.49, "hc-key": "gw", "hc-a2": "GW", "name": "Guinea Bissau", "labelrank": "6", "country-abbrev": "GnB.", "subregion": "Western Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "GNB", "iso-a2": "GW", "woe-id": "23424929", "continent": "Africa" } }, { "type": "MultiPolygon", "arcs": [[[832, 833, 834]], [[835, 836, 837, 838, 839]]], "id": "HR", "properties": { "hc-group": "admin0", "hc-middle-x": 0.35, "hc-middle-y": 0.59, "hc-key": "hr", "hc-a2": "HR", "name": "Croatia", "labelrank": "6", "country-abbrev": "Cro.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "HRV", "iso-a2": "HR", "woe-id": "23424843", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-167, 840, 841]], "id": "BZ", "properties": { "hc-group": "admin0", "hc-middle-x": 0.53, "hc-key": "bz", "hc-a2": "BZ", "name": "Belize", "labelrank": "6", "country-abbrev": "Belize", "subregion": "Central America", "region-wb": "Latin America & Caribbean", "iso-a3": "BLZ", "iso-a2": "BZ", "woe-id": "23424760", "continent": "North America" } }, { "type": "Polygon", "arcs": [[-799, 842, 843, 844, 845, -801, 846], [-694]], "id": "ZA", "properties": { "hc-group": "admin0", "hc-middle-x": 0.36, "hc-middle-y": 0.7, "hc-key": "za", "hc-a2": "ZA", "name": "South Africa", "labelrank": "2", "country-abbrev": "S.Af.", "subregion": "Southern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "ZAF", "iso-a2": "ZA", "woe-id": "23424942", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[847, 848, 849, 850, 851, 852]], "id": "CF", "properties": { "hc-group": "admin0", "hc-middle-x": 0.47, "hc-middle-y": 0.46, "hc-key": "cf", "hc-a2": "CF", "name": "Central African Republic", "labelrank": "4", "country-abbrev": "C.A.R.", "subregion": "Middle Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "CAF", "iso-a2": "CF", "woe-id": "23424792", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-848, 853, 854, 855, 856, 857, 858, 859]], "id": "SD", "properties": { "hc-group": "admin0", "hc-middle-y": 0.38, "hc-key": "sd", "hc-a2": "SD", "name": "Sudan", "labelrank": "3", "country-abbrev": "Sudan", "subregion": "Northern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "SDN", "iso-a2": "SD", "woe-id": "-90", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[860, 861, 862, 863, -790, 864, -787, 865, -850, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875]], "id": "CD", "properties": { "hc-group": "admin0", "hc-middle-x": 0.58, "hc-middle-y": 0.42, "hc-key": "cd", "hc-a2": "CD", "name": "Democratic Republic of the Congo", "labelrank": "2", "country-abbrev": "D.R.C.", "subregion": "Middle Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "COD", "iso-a2": "CD", "woe-id": "23424780", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-753, 876, 877]], "id": "KW", "properties": { "hc-group": "admin0", "hc-middle-x": 0.61, "hc-middle-y": 0.4, "hc-key": "kw", "hc-a2": "KW", "name": "Kuwait", "labelrank": "6", "country-abbrev": "Kwt.", "subregion": "Western Asia", "region-wb": "Middle East & North Africa", "iso-a3": "KWT", "iso-a2": "KW", "woe-id": "23424870", "continent": "Asia" } }, { "type": "MultiPolygon", "arcs": [[[878, -879, 879]], [[-242, 880, 881, 882, 883, 884, 885, 886, 887, -97, 888, 889, -446, 890]]], "id": "DE", "properties": { "hc-group": "admin0", "hc-middle-x": 0.52, "hc-middle-y": 0.34, "hc-key": "de", "hc-a2": "DE", "name": "Germany", "labelrank": "2", "country-abbrev": "Ger.", "subregion": "Western Europe", "region-wb": "Europe & Central Asia", "iso-a3": "DEU", "iso-a2": "DE", "woe-id": "23424829", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-890, 891, -95, 892, -445, 893, -447]], "id": "BE", "properties": { "hc-group": "admin0", "hc-middle-x": 0.54, "hc-middle-y": 0.4, "hc-key": "be", "hc-a2": "BE", "name": "Belgium", "labelrank": "2", "country-abbrev": "Belg.", "subregion": "Western Europe", "region-wb": "Europe & Central Asia", "iso-a3": "BEL", "iso-a2": "BE", "woe-id": "23424757", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-214, 894]], "id": "IE", "properties": { "hc-group": "admin0", "hc-middle-x": 0.45, "hc-middle-y": 0.48, "hc-key": "ie", "hc-a2": "IE", "name": "Ireland", "labelrank": "3", "country-abbrev": "Ire.", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "IRL", "iso-a2": "IE", "woe-id": "23424803", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[895, 896, 897, -122, -642]], "id": "KP", "properties": { "hc-group": "admin0", "hc-middle-x": 0.32, "hc-middle-y": 0.63, "hc-key": "kp", "hc-a2": "KP", "name": "North Korea", "labelrank": "3", "country-abbrev": "N.K.", "subregion": "Eastern Asia", "region-wb": "East Asia & Pacific", "iso-a3": "PRK", "iso-a2": "KP", "woe-id": "23424865", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[-897, 898]], "id": "KR", "properties": { "hc-group": "admin0", "hc-middle-x": 0.54, "hc-key": "kr", "hc-a2": "KR", "name": "South Korea", "labelrank": "2", "country-abbrev": "S.K.", "subregion": "Eastern Asia", "region-wb": "East Asia & Pacific", "iso-a3": "KOR", "iso-a2": "KR", "woe-id": "23424868", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[899, 900, -143, 901]], "id": "GY", "properties": { "hc-group": "admin0", "hc-middle-x": 0.26, "hc-middle-y": 0.07, "hc-key": "gy", "hc-a2": "GY", "name": "Guyana", "labelrank": "4", "country-abbrev": "Guy.", "subregion": "South America", "region-wb": "Latin America & Caribbean", "iso-a3": "GUY", "iso-a2": "GY", "woe-id": "23424836", "continent": "South America" } }, { "type": "Polygon", "arcs": [[902, 903, 904, -826, 905]], "id": "HN", "properties": { "hc-group": "admin0", "hc-middle-x": 0.71, "hc-middle-y": 0.09, "hc-key": "hn", "hc-a2": "HN", "name": "Honduras", "labelrank": "5", "country-abbrev": "Hond.", "subregion": "Central America", "region-wb": "Latin America & Caribbean", "iso-a3": "HND", "iso-a2": "HN", "woe-id": "23424841", "continent": "North America" } }, { "type": "Polygon", "arcs": [[-472, -73, -126, 906, -577, 907]], "id": "MM", "properties": { "hc-group": "admin0", "hc-middle-x": 0.17, "hc-middle-y": 0.49, "hc-key": "mm", "hc-a2": "MM", "name": "Myanmar", "labelrank": "3", "country-abbrev": "Myan.", "subregion": "South-Eastern Asia", "region-wb": "East Asia & Pacific", "iso-a3": "MMR", "iso-a2": "MM", "woe-id": "23424763", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[908, 909, 910, 911]], "id": "GA", "properties": { "hc-group": "admin0", "hc-middle-x": 0.36, "hc-middle-y": 0.65, "hc-key": "ga", "hc-a2": "GA", "name": "Gabon", "labelrank": "4", "country-abbrev": "Gabon", "subregion": "Middle Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "GAB", "iso-a2": "GA", "woe-id": "23424822", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-909, 912, 913]], "id": "GQ", "properties": { "hc-group": "admin0", "hc-middle-x": 0.53, "hc-middle-y": 0.55, "hc-key": "gq", "hc-a2": "GQ", "name": "Equatorial Guinea", "labelrank": "4", "country-abbrev": "Eq. G.", "subregion": "Middle Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "GNQ", "iso-a2": "GQ", "woe-id": "23424804", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[914, -904, 915, -807]], "id": "NI", "properties": { "hc-group": "admin0", "hc-middle-x": 0.84, "hc-key": "ni", "hc-a2": "NI", "name": "Nicaragua", "labelrank": "5", "country-abbrev": "Nic.", "subregion": "Central America", "region-wb": "Latin America & Caribbean", "iso-a3": "NIC", "iso-a2": "NI", "woe-id": "23424915", "continent": "North America" } }, { "type": "Polygon", "arcs": [[-636, 916, 917, 918, -588]], "id": "LV", "properties": { "hc-group": "admin0", "hc-middle-x": 0.05, "hc-middle-y": 0.36, "hc-key": "lv", "hc-a2": "LV", "name": "Latvia", "labelrank": "5", "country-abbrev": "Lat.", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "LVA", "iso-a2": "LV", "woe-id": "23424874", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[919, -732]], [[-872, 920, -870, 921, -868, 922, -762, 923, -730, 924]]], "id": "UG", "properties": { "hc-group": "admin0", "hc-middle-x": 0.16, "hc-middle-y": 0.56, "hc-key": "ug", "hc-a2": "UG", "name": "Uganda", "labelrank": "3", "country-abbrev": "Uga.", "subregion": "Eastern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "UGA", "iso-a2": "UG", "woe-id": "23424974", "continent": "Africa" } }, { "type": "MultiPolygon", "arcs": [[[925, 925, 925]], [[926, -719]], [[720, -721, 927]], [[928, -723]], [[-725, 929, -804, 930]]], "id": "MW", "properties": { "hc-group": "admin0", "hc-middle-x": 0.16, "hc-middle-y": 0.29, "hc-key": "mw", "hc-a2": "MW", "name": "Malawi", "labelrank": "6", "country-abbrev": "Mal.", "subregion": "Eastern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "MWI", "iso-a2": "MW", "woe-id": "23424889", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-818, -683, -469, 931, -687], [-680], [-681], [-682]], "id": "AM", "properties": { "hc-group": "admin0", "hc-middle-x": 0.1, "hc-middle-y": 0.12, "hc-key": "am", "hc-a2": "AM", "name": "Armenia", "labelrank": "6", "country-abbrev": "Arm.", "subregion": "Western Asia", "region-wb": "Europe & Central Asia", "iso-a3": "ARM", "iso-a2": "AM", "woe-id": "23424743", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[932, 933, 934, 935]], "id": "SX", "properties": { "hc-group": "admin0", "hc-middle-x": 0.76, "hc-middle-y": 0.53, "hc-key": "sx", "hc-a2": "SX", "name": "Somaliland", "labelrank": "5", "country-abbrev": "Solnd.", "subregion": "Eastern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "-99", "iso-a2": "SX", "woe-id": "-99", "continent": "Africa" } }, { "type": "MultiPolygon", "arcs": [[[936, -700, 937, -820, 938, -671, -702]], [[939, 671]], [[940, -673]]], "id": "TM", "properties": { "hc-group": "admin0", "hc-middle-x": 0.4, "hc-middle-y": 0.42, "hc-key": "tm", "hc-a2": "TM", "name": "Turkmenistan", "labelrank": "4", "country-abbrev": "Turkm.", "subregion": "Central Asia", "region-wb": "Europe & Central Asia", "iso-a3": "TKM", "iso-a2": "TM", "woe-id": "23424972", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[941, -862, 942, -726, -931, -803, 943, 944, 945, 946, -791, -864]], "id": "ZM", "properties": { "hc-group": "admin0", "hc-middle-x": 0.36, "hc-middle-y": 0.58, "hc-key": "zm", "hc-a2": "ZM", "name": "Zambia", "labelrank": "3", "country-abbrev": "Zambia", "subregion": "Eastern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "ZMB", "iso-a2": "ZM", "woe-id": "23425003", "continent": "Africa" } }, { "type": "MultiPolygon", "arcs": [[[-205, -204, 947, 948, 949]], [[950, 951]]], "id": "NC", "properties": { "hc-group": "admin0", "hc-middle-x": 0.56, "hc-middle-y": 0.71, "hc-key": "nc", "hc-a2": "NC", "name": "Northern Cyprus", "labelrank": "6", "country-abbrev": "N. Cy.", "subregion": "Western Asia", "region-wb": "Europe & Central Asia", "iso-a3": "-99", "iso-a2": "NC", "woe-id": "-90", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[952, 953, 954, 955, 956]], "id": "MR", "properties": { "hc-group": "admin0", "hc-middle-x": 0.61, "hc-middle-y": 0.63, "hc-key": "mr", "hc-a2": "MR", "name": "Mauritania", "labelrank": "3", "country-abbrev": "Mrt.", "subregion": "Western Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "MRT", "iso-a2": "MR", "woe-id": "23424896", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-953, 957, -705, 958, 959, 960, 961, 962]], "id": "DZ", "properties": { "hc-group": "admin0", "hc-middle-x": 0.63, "hc-key": "dz", "hc-a2": "DZ", "name": "Algeria", "labelrank": "3", "country-abbrev": "Alg.", "subregion": "Northern Africa", "region-wb": "Middle East & North Africa", "iso-a3": "DZA", "iso-a2": "DZ", "woe-id": "23424740", "continent": "Africa" } }, { "type": "MultiPolygon", "arcs": [[[963, -918, 964, 965, -658]], [[966, -656]]], "id": "LT", "properties": { "hc-group": "admin0", "hc-middle-x": 0.27, "hc-middle-y": 0.06, "hc-key": "lt", "hc-a2": "LT", "name": "Lithuania", "labelrank": "5", "country-abbrev": "Lith.", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "LTU", "iso-a2": "LT", "woe-id": "23424875", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[967, 968, -935, 969, -764, 970, -859, 971, 972]], "id": "ET", "properties": { "hc-group": "admin0", "hc-middle-x": 0.45, "hc-middle-y": 0.58, "hc-key": "et", "hc-a2": "ET", "name": "Ethiopia", "labelrank": "2", "country-abbrev": "Eth.", "subregion": "Eastern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "ETH", "iso-a2": "ET", "woe-id": "23424808", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-972, -858, 973, 974]], "id": "ER", "properties": { "hc-group": "admin0", "hc-middle-x": 0.29, "hc-middle-y": 0.05, "hc-key": "er", "hc-a2": "ER", "name": "Eritrea", "labelrank": "4", "country-abbrev": "Erit.", "subregion": "Eastern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "ERI", "iso-a2": "ER", "woe-id": "23424806", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[975, 976, 977, 978, 979]], "id": "GH", "properties": { "hc-group": "admin0", "hc-middle-x": 0.13, "hc-middle-y": 0.77, "hc-key": "gh", "hc-a2": "GH", "name": "Ghana", "labelrank": "3", "country-abbrev": "Ghana", "subregion": "Western Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "GHA", "iso-a2": "GH", "woe-id": "23424824", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[980, -603, 981, 982, -836]], "id": "SI", "properties": { "hc-group": "admin0", "hc-middle-x": 0.52, "hc-middle-y": 0.57, "hc-key": "si", "hc-a2": "SI", "name": "Slovenia", "labelrank": "6", "country-abbrev": "Slo.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "SVN", "iso-a2": "SI", "woe-id": "23424945", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[983, -906, -825, 984, -168, -842]], "id": "GT", "properties": { "hc-group": "admin0", "hc-middle-x": 0.44, "hc-middle-y": 0.87, "hc-key": "gt", "hc-a2": "GT", "name": "Guatemala", "labelrank": "3", "country-abbrev": "Guat.", "subregion": "Central America", "region-wb": "Latin America & Caribbean", "iso-a3": "GTM", "iso-a2": "GT", "woe-id": "23424834", "continent": "North America" } }, { "type": "Polygon", "arcs": [[985, -839, 986, 987, -834]], "id": "BA", "properties": { "hc-group": "admin0", "hc-middle-x": 0.45, "hc-middle-y": 0.48, "hc-key": "ba", "hc-a2": "BA", "name": "Bosnia and Herzegovina", "labelrank": "5", "country-abbrev": "B.H.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "BIH", "iso-a2": "BA", "woe-id": "23424761", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[988, 989, 990, 991, 992, 993, -751, 994, 995]], "id": "JO", "properties": { "hc-group": "admin0", "hc-middle-x": 0.45, "hc-middle-y": 0.85, "hc-key": "jo", "hc-a2": "JO", "name": "Jordan", "labelrank": "4", "country-abbrev": "Jord.", "subregion": "Western Asia", "region-wb": "Middle East & North Africa", "iso-a3": "JOR", "iso-a2": "JO", "woe-id": "23424860", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[-993, 996, 997, 998, -464, 999]], "id": "SY", "properties": { "hc-group": "admin0", "hc-middle-x": 0.25, "hc-middle-y": 0.54, "hc-key": "sy", "hc-a2": "SY", "name": "Syria", "labelrank": "3", "country-abbrev": "Syria", "subregion": "Western Asia", "region-wb": "Middle East & North Africa", "iso-a3": "SYR", "iso-a2": "SY", "woe-id": "23424956", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[1000, -87]], "id": "MC", "properties": { "hc-group": "admin0", "hc-middle-y": 0.67, "hc-key": "mc", "hc-a2": "MC", "name": "Monaco", "labelrank": "6", "country-abbrev": "Mco.", "subregion": "Western Europe", "region-wb": "Europe & Central Asia", "iso-a3": "MCO", "iso-a2": "MC", "woe-id": "23424892", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[1001, -1002, 1002]], [[1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, -226, 1011, -232, 1012, 1013]], [[1014, -1015, 1015]]], "id": "AL", "properties": { "hc-group": "admin0", "hc-middle-x": 0.39, "hc-middle-y": 0.49, "hc-key": "al", "hc-a2": "AL", "name": "Albania", "labelrank": "6", "country-abbrev": "Alb.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "ALB", "iso-a2": "AL", "woe-id": "23424742", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[1016, -146, 1017, -738, -134]], "id": "UY", "properties": { "hc-group": "admin0", "hc-middle-x": 0.81, "hc-middle-y": 0.63, "hc-key": "uy", "hc-a2": "UY", "name": "Uruguay", "labelrank": "4", "country-abbrev": "Ury.", "subregion": "South America", "region-wb": "Latin America & Caribbean", "iso-a3": "URY", "iso-a2": "UY", "woe-id": "23424979", "continent": "South America" } }, { "type": "MultiPolygon", "arcs": [[[611, -612, -611, -206, -950]], [[-952, -616]], [[-618, 617, 1018]], [[-203, -202, -619, -948]]], "id": "CNM", "properties": { "hc-group": "admin0", "hc-middle-x": 0.39, "hc-middle-y": 0.11, "hc-key": "cnm", "hc-a2": "CN", "name": "Cyprus No Mans Area", "labelrank": "9", "country-abbrev": null, "subregion": "Western Asia", "region-wb": "Europe & Central Asia", "iso-a3": "-99", "iso-a2": null, "woe-id": "-99", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[1019, -116, -644, -118]], "id": "MN", "properties": { "hc-group": "admin0", "hc-middle-x": 0.49, "hc-middle-y": 0.53, "hc-key": "mn", "hc-a2": "MN", "name": "Mongolia", "labelrank": "3", "country-abbrev": "Mong.", "subregion": "Eastern Asia", "region-wb": "East Asia & Pacific", "iso-a3": "MNG", "iso-a2": "MN", "woe-id": "23424887", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[-875, 1020, -873, -925, -729, 1021]], "id": "RW", "properties": { "hc-group": "admin0", "hc-middle-x": 0.48, "hc-middle-y": 0.56, "hc-key": "rw", "hc-a2": "RW", "name": "Rwanda", "labelrank": "3", "country-abbrev": "Rwa.", "subregion": "Eastern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "RWA", "iso-a2": "RW", "woe-id": "23424937", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-970, -934, 1022, -765]], "id": "SO", "properties": { "hc-group": "admin0", "hc-middle-x": 0.39, "hc-middle-y": 0.74, "hc-key": "so", "hc-a2": "SO", "name": "Somalia", "labelrank": "6", "country-abbrev": "Som.", "subregion": "Eastern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "SOM", "iso-a2": "SO", "woe-id": "-90", "continent": "Africa" } }, { "type": "MultiPolygon", "arcs": [[[1023, -769]], [[-771, 1024, -767, -139, 1025, -740, -570]]], "id": "BO", "properties": { "hc-group": "admin0", "hc-middle-x": 0.48, "hc-middle-y": 0.59, "hc-key": "bo", "hc-a2": "BO", "name": "Bolivia", "labelrank": "3", "country-abbrev": "Bolivia", "subregion": "South America", "region-wb": "Latin America & Caribbean", "iso-a3": "BOL", "iso-a2": "BO", "woe-id": "23424762", "continent": "South America" } }, { "type": "MultiPolygon", "arcs": [[[-910, -914, 1026, -816, 1027, 1028, 1029, -852, 1030]], [[1031, -1032, 1032]]], "id": "CM", "properties": { "hc-group": "admin0", "hc-middle-y": 0.81, "hc-key": "cm", "hc-a2": "CM", "name": "Cameroon", "labelrank": "3", "country-abbrev": "Cam.", "subregion": "Middle Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "CMR", "iso-a2": "CM", "woe-id": "23424785", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-1031, -851, -866, -786, 1033, -911]], "id": "CG", "properties": { "hc-group": "admin0", "hc-middle-x": 0.15, "hc-middle-y": 0.78, "hc-key": "cg", "hc-a2": "CG", "name": "Republic of Congo", "labelrank": "4", "country-abbrev": "Rep. Congo", "subregion": "Middle Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "COG", "iso-a2": "CG", "woe-id": "23424779", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[1034, -706, -958, -957]], "id": "EH", "properties": { "hc-group": "admin0", "hc-middle-x": 0.41, "hc-middle-y": 0.71, "hc-key": "eh", "hc-a2": "EH", "name": "Western Sahara", "labelrank": "7", "country-abbrev": "W. Sah.", "subregion": "Northern Africa", "region-wb": "Middle East & North Africa", "iso-a3": "ESH", "iso-a2": "EH", "woe-id": "23424990", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-987, -838, 1035, 1036, 1037, 1038, 1039, 1040]], "id": "RS", "properties": { "hc-group": "admin0", "hc-middle-x": 0.42, "hc-middle-y": 0.52, "hc-key": "rs", "hc-a2": "RS", "name": "Republic of Serbia", "labelrank": "5", "country-abbrev": "Serb.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "SRB", "iso-a2": "RS", "woe-id": "-90", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-1041, 1041, -1005, 1042, 1014, 1043, -1014, 1044, -835, -988]], "id": "ME", "properties": { "hc-group": "admin0", "hc-middle-x": 0.42, "hc-middle-y": 0.47, "hc-key": "me", "hc-a2": "ME", "name": "Montenegro", "labelrank": "6", "country-abbrev": "Mont.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "MNE", "iso-a2": "ME", "woe-id": "20069817", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-811, 1045, -980, 1046]], "id": "TG", "properties": { "hc-group": "admin0", "hc-middle-x": 0.76, "hc-middle-y": 0.81, "hc-key": "tg", "hc-a2": "TG", "name": "Togo", "labelrank": "6", "country-abbrev": "Togo", "subregion": "Western Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "TGO", "iso-a2": "TG", "woe-id": "23424965", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-794, -578, -907, -125, -795]], "id": "LA", "properties": { "hc-group": "admin0", "hc-middle-x": 0.88, "hc-middle-y": 0.79, "hc-key": "la", "hc-a2": "LA", "name": "Laos", "labelrank": "4", "country-abbrev": "Laos", "subregion": "South-Eastern Asia", "region-wb": "East Asia & Pacific", "iso-a3": "LAO", "iso-a2": "LA", "woe-id": "23424872", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[-111, -757, -821, -938, -699, -691]], "id": "AF", "properties": { "hc-group": "admin0", "hc-middle-x": 0.37, "hc-middle-y": 0.52, "hc-key": "af", "hc-a2": "AF", "name": "Afghanistan", "labelrank": "3", "country-abbrev": "Afg.", "subregion": "Southern Asia", "region-wb": "South Asia", "iso-a3": "AFG", "iso-a2": "AF", "woe-id": "23424739", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[1047, 1048, 1049, -634, 1050, 1051, 1052, 1053, 1054], [1055], [1056]], "id": "UA", "properties": { "hc-group": "admin0", "hc-middle-x": 0.7, "hc-middle-y": 0.46, "hc-key": "ua", "hc-a2": "UA", "name": "Ukraine", "labelrank": "3", "country-abbrev": "Ukr.", "subregion": "Eastern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "UKR", "iso-a2": "UA", "woe-id": "23424976", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-1048, 1057, 1058, 1059, 1060]], "id": "SK", "properties": { "hc-group": "admin0", "hc-middle-x": 0.21, "hc-middle-y": 0.52, "hc-key": "sk", "hc-a2": "SK", "name": "Slovakia", "labelrank": "6", "country-abbrev": "Svk.", "subregion": "Eastern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "SVK", "iso-a2": "SK", "woe-id": "23424877", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-77, -754, -109]], "id": "JK", "properties": { "hc-group": "admin0", "hc-middle-x": 0.4, "hc-middle-y": 0.63, "hc-key": "jk", "hc-a2": "JK", "name": "Siachen Glacier", "labelrank": "5", "country-abbrev": "Siachen", "subregion": "Southern Asia", "region-wb": "South Asia", "iso-a3": "-99", "iso-a2": "JK", "woe-id": "23424928", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[1061, -461, -229, 1062, -1038, 1063]], "id": "BG", "properties": { "hc-group": "admin0", "hc-middle-x": 0.76, "hc-middle-y": 0.51, "hc-key": "bg", "hc-a2": "BG", "name": "Bulgaria", "labelrank": "4", "country-abbrev": "Bulg.", "subregion": "Eastern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "BGR", "iso-a2": "BG", "woe-id": "23424771", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[1064, -746]], "id": "QA", "properties": { "hc-group": "admin0", "hc-middle-x": 0.36, "hc-middle-y": 0.46, "hc-key": "qa", "hc-a2": "QA", "name": "Qatar", "labelrank": "5", "country-abbrev": "Qatar", "subregion": "Western Asia", "region-wb": "Middle East & North Africa", "iso-a3": "QAT", "iso-a2": "QA", "woe-id": "23424930", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[1065, 1066]], "id": "LI", "properties": { "hc-group": "admin0", "hc-middle-x": 0.61, "hc-middle-y": 0.53, "hc-key": "li", "hc-a2": "LI", "name": "Liechtenstein", "labelrank": "6", "country-abbrev": "Liech.", "subregion": "Western Europe", "region-wb": "Europe & Central Asia", "iso-a3": "LIE", "iso-a2": "LI", "woe-id": "23424879", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-1066, 1067, 1068, -886, 1069, -1059, 1070, -982, -602, 1071]], "id": "AT", "properties": { "hc-group": "admin0", "hc-middle-x": 0.52, "hc-middle-y": 0.62, "hc-key": "at", "hc-a2": "AT", "name": "Austria", "labelrank": "4", "country-abbrev": "Aust.", "subregion": "Western Europe", "region-wb": "Europe & Central Asia", "iso-a3": "AUT", "iso-a2": "AT", "woe-id": "23424750", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-800, -847]], "id": "SZ", "properties": { "hc-group": "admin0", "hc-middle-x": 0.51, "hc-middle-y": 0.45, "hc-key": "sz", "hc-a2": "SZ", "name": "Swaziland", "labelrank": "4", "country-abbrev": "Swz.", "subregion": "Southern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "SWZ", "iso-a2": "SZ", "woe-id": "23424993", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-1055, 1072, -1036, -837, -983, -1071, -1058]], "id": "HU", "properties": { "hc-group": "admin0", "hc-middle-x": 0.27, "hc-middle-y": 0.61, "hc-key": "hu", "hc-a2": "HU", "name": "Hungary", "labelrank": "5", "country-abbrev": "Hun.", "subregion": "Eastern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "HUN", "iso-a2": "HU", "woe-id": "23424844", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-1037, -1073, -1054, 1073, -1052, 1074, -1064]], "id": "RO", "properties": { "hc-group": "admin0", "hc-middle-x": 0.67, "hc-key": "ro", "hc-a2": "RO", "name": "Romania", "labelrank": "3", "country-abbrev": "Rom.", "subregion": "Eastern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "ROU", "iso-a2": "RO", "woe-id": "23424933", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-813, 1075, 1076, -962, 1077, 1078, -814]], "id": "NE", "properties": { "hc-group": "admin0", "hc-middle-x": 0.64, "hc-middle-y": 0.53, "hc-key": "ne", "hc-a2": "NE", "name": "Niger", "labelrank": "3", "country-abbrev": "Niger", "subregion": "Western Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "NER", "iso-a2": "NE", "woe-id": "23424906", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-96, -892, -889]], "id": "LU", "properties": { "hc-group": "admin0", "hc-middle-x": 0.48, "hc-middle-y": 0.6, "hc-key": "lu", "hc-a2": "LU", "name": "Luxembourg", "labelrank": "6", "country-abbrev": "Lux.", "subregion": "Western Europe", "region-wb": "Europe & Central Asia", "iso-a3": "LUX", "iso-a2": "LU", "woe-id": "23424881", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-92, -180]], "id": "AD", "properties": { "hc-group": "admin0", "hc-middle-x": 0.58, "hc-middle-y": 0.28, "hc-key": "ad", "hc-a2": "AD", "name": "Andorra", "labelrank": "6", "country-abbrev": "And.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "AND", "iso-a2": "AD", "woe-id": "23424744", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[-978, 1079, 1080, 1081, 1082, 1083]], [[1084, 1085]]], "id": "CI", "properties": { "hc-group": "admin0", "hc-middle-y": 0.48, "hc-key": "ci", "hc-a2": "CI", "name": "Ivory Coast", "labelrank": "3", "country-abbrev": "I.C.", "subregion": "Western Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "CIV", "iso-a2": "CI", "woe-id": "23424854", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-1081, 1086, -829, 1087]], "id": "LR", "properties": { "hc-group": "admin0", "hc-middle-x": 0.96, "hc-middle-y": 0.75, "hc-key": "lr", "hc-a2": "LR", "name": "Liberia", "labelrank": "4", "country-abbrev": "Liberia", "subregion": "Western Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "LBR", "iso-a2": "LR", "woe-id": "23424876", "continent": "Africa" } }, { "type": "MultiPolygon", "arcs": [[[1088, -549]], [[1089, -547]]], "id": "BN", "properties": { "hc-group": "admin0", "hc-middle-x": 0.32, "hc-middle-y": 0.34, "hc-key": "bn", "hc-a2": "BN", "name": "Brunei", "labelrank": "6", "country-abbrev": "Brunei", "subregion": "South-Eastern Asia", "region-wb": "East Asia & Pacific", "iso-a3": "BRN", "iso-a2": "BN", "woe-id": "23424773", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[1090, -877, -752, -994, -1000, -463, -823]], "id": "IQ", "properties": { "hc-group": "admin0", "hc-middle-x": 0.46, "hc-middle-y": 0.44, "hc-key": "iq", "hc-a2": "IQ", "name": "Iraq", "labelrank": "3", "country-abbrev": "Iraq", "subregion": "Western Asia", "region-wb": "Middle East & North Africa", "iso-a3": "IRQ", "iso-a2": "IQ", "woe-id": "23424855", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[-932, -468, 1091, -648, -688]], "id": "GE", "properties": { "hc-group": "admin0", "hc-middle-x": 0.99, "hc-middle-y": 0.82, "hc-key": "ge", "hc-a2": "GE", "name": "Georgia", "labelrank": "5", "country-abbrev": "Geo.", "subregion": "Western Asia", "region-wb": "Europe & Central Asia", "iso-a3": "GEO", "iso-a2": "GE", "woe-id": "23424823", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[1092, 1093]], "id": "GM", "properties": { "hc-group": "admin0", "hc-middle-x": 0.51, "hc-middle-y": 0.51, "hc-key": "gm", "hc-a2": "GM", "name": "Gambia", "labelrank": "6", "country-abbrev": "Gambia", "subregion": "Western Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "GMB", "iso-a2": "GM", "woe-id": "23424821", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[878, 1094, -1068, -1067, -1072, -601, -101, 1095, 1096, -98, -888]], "id": "CH", "properties": { "hc-group": "admin0", "hc-middle-x": 0.12, "hc-middle-y": 0.55, "hc-key": "ch", "hc-a2": "CH", "name": "Switzerland", "labelrank": "4", "country-abbrev": "Switz.", "subregion": "Western Europe", "region-wb": "Europe & Central Asia", "iso-a3": "CHE", "iso-a2": "CH", "woe-id": "23424957", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[1097, 1031, 1098, -1028, -815, -1079, 1099, -854, -853, -1030]], "id": "TD", "properties": { "hc-group": "admin0", "hc-middle-x": 0.47, "hc-middle-y": 0.63, "hc-key": "td", "hc-a2": "TD", "name": "Chad", "labelrank": "3", "country-abbrev": "Chad", "subregion": "Middle Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "TCD", "iso-a2": "TD", "woe-id": "23424777", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-1006, -1042, -1040, 1100]], "id": "KV", "properties": { "hc-group": "admin0", "hc-middle-x": 0.49, "hc-middle-y": 0.52, "hc-key": "kv", "hc-a2": "KV", "name": "Kosovo", "labelrank": "6", "country-abbrev": "Kos.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "-99", "iso-a2": "KV", "woe-id": "-90", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[1101, -998, 1102]], "id": "LB", "properties": { "hc-group": "admin0", "hc-middle-x": 0.39, "hc-middle-y": 0.57, "hc-key": "lb", "hc-a2": "LB", "name": "Lebanon", "labelrank": "5", "country-abbrev": "Leb.", "subregion": "Western Asia", "region-wb": "Middle East & North Africa", "iso-a3": "LBN", "iso-a2": "LB", "woe-id": "23424873", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[-969, 1103, -973, -975, 1104, -936]], "id": "DJ", "properties": { "hc-group": "admin0", "hc-middle-x": 0.56, "hc-middle-y": 0.55, "hc-key": "dj", "hc-a2": "DJ", "name": "Djibouti", "labelrank": "5", "country-abbrev": "Dji.", "subregion": "Eastern Africa", "region-wb": "Middle East & North Africa", "iso-a3": "DJI", "iso-a2": "DJ", "woe-id": "23424797", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[1105, -876, -1022, -728]], "id": "BI", "properties": { "hc-group": "admin0", "hc-middle-x": 0.57, "hc-middle-y": 0.47, "hc-key": "bi", "hc-a2": "BI", "name": "Burundi", "labelrank": "6", "country-abbrev": "Bur.", "subregion": "Eastern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "BDI", "iso-a2": "BI", "woe-id": "23424774", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-144, -901, 1106, -105]], "id": "SR", "properties": { "hc-group": "admin0", "hc-middle-x": 0.91, "hc-middle-y": 0.09, "hc-key": "sr", "hc-a2": "SR", "name": "Suriname", "labelrank": "4", "country-abbrev": "Sur.", "subregion": "South America", "region-wb": "Latin America & Caribbean", "iso-a3": "SUR", "iso-a2": "SR", "woe-id": "23424913", "continent": "South America" } }, { "type": "Polygon", "arcs": [[1107, -1103, -997, -992, 1108, -990, 1109, -996, 1110, 1111]], "id": "IL", "properties": { "hc-group": "admin0", "hc-middle-x": 0.68, "hc-middle-y": 0.1, "hc-key": "il", "hc-a2": "IL", "name": "Israel", "labelrank": "4", "country-abbrev": "Isr.", "subregion": "Western Asia", "region-wb": "Middle East & North Africa", "iso-a3": "ISR", "iso-a2": "IL", "woe-id": "23424852", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[-1083, 1112, 1113, -954, -963, -1077, 1114]], "id": "ML", "properties": { "hc-group": "admin0", "hc-middle-x": 0.59, "hc-middle-y": 0.38, "hc-key": "ml", "hc-a2": "ML", "name": "Mali", "labelrank": "3", "country-abbrev": "Mali", "subregion": "Western Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "MLI", "iso-a2": "ML", "woe-id": "23424891", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[1115, -1094, 1116, -955, -1114, 1117, -831]], "id": "SN", "properties": { "hc-group": "admin0", "hc-middle-x": 0.2, "hc-middle-y": 0.55, "hc-key": "sn", "hc-a2": "SN", "name": "Senegal", "labelrank": "3", "country-abbrev": "Sen.", "subregion": "Western Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "SEN", "iso-a2": "SN", "woe-id": "23424943", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-1113, -1082, -1088, -828, 1118, -832, -1118]], "id": "GN", "properties": { "hc-group": "admin0", "hc-middle-x": 0.24, "hc-middle-y": 0.51, "hc-key": "gn", "hc-a2": "GN", "name": "Guinea", "labelrank": "3", "country-abbrev": "Gin.", "subregion": "Western Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "GIN", "iso-a2": "GN", "woe-id": "23424835", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-946, 1119, -944, -802, -846, 1120]], "id": "ZW", "properties": { "hc-group": "admin0", "hc-middle-x": 0.81, "hc-middle-y": 0.42, "hc-key": "zw", "hc-a2": "ZW", "name": "Zimbabwe", "labelrank": "3", "country-abbrev": "Zimb.", "subregion": "Eastern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "ZWE", "iso-a2": "ZW", "woe-id": "23425004", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[1121, -659, -966, 1122, -1049, -1061, 1123, -884, 1124, -882, 1125]], "id": "PL", "properties": { "hc-group": "admin0", "hc-middle-y": 0.48, "hc-key": "pl", "hc-a2": "PL", "name": "Poland", "labelrank": "3", "country-abbrev": "Pol.", "subregion": "Eastern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "POL", "iso-a2": "PL", "woe-id": "23424923", "continent": "Europe" } }, { "type": "MultiPolygon", "arcs": [[[1126, 1126, 1126]], [[-1063, -228, 1127, 1001, -1009, 1128, -1007, -1101, -1039]]], "id": "MK", "properties": { "hc-group": "admin0", "hc-middle-x": 0.49, "hc-middle-y": 0.44, "hc-key": "mk", "hc-a2": "MK", "name": "Macedonia", "labelrank": "6", "country-abbrev": "Mkd.", "subregion": "Southern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "MKD", "iso-a2": "MK", "woe-id": "23424890", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[1129, -136, -741, -1026, -138]], "id": "PY", "properties": { "hc-group": "admin0", "hc-middle-x": 0.35, "hc-middle-y": 0.36, "hc-key": "py", "hc-a2": "PY", "name": "Paraguay", "labelrank": "4", "country-abbrev": "Para.", "subregion": "South America", "region-wb": "Latin America & Caribbean", "iso-a3": "PRY", "iso-a2": "PY", "woe-id": "23424917", "continent": "South America" } }, { "type": "Polygon", "arcs": [[-1123, -965, -917, -635, -1050]], "id": "BY", "properties": { "hc-group": "admin0", "hc-key": "by", "hc-a2": "BY", "name": "Belarus", "labelrank": "4", "country-abbrev": "Bela.", "subregion": "Eastern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "BLR", "iso-a2": "BY", "woe-id": "23424765", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-1060, -1070, -885, -1124]], "id": "CZ", "properties": { "hc-group": "admin0", "hc-middle-x": 0.49, "hc-middle-y": 0.56, "hc-key": "cz", "hc-a2": "CZ", "name": "Czech Republic", "labelrank": "5", "country-abbrev": "Cz. Rep.", "subregion": "Eastern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "CZE", "iso-a2": "CZ", "woe-id": "23424810", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-1047, -979, -1084, -1115, -1076, -812]], "id": "BF", "properties": { "hc-group": "admin0", "hc-middle-x": 0.45, "hc-middle-y": 0.54, "hc-key": "bf", "hc-a2": "BF", "name": "Burkina Faso", "labelrank": "3", "country-abbrev": "B.F.", "subregion": "Western Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "BFA", "iso-a2": "BF", "woe-id": "23424978", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-947, 1130, -844, 1131, -788]], "id": "NA", "properties": { "hc-group": "admin0", "hc-middle-x": 0.33, "hc-middle-y": 0.37, "hc-key": "na", "hc-a2": "NA", "name": "Namibia", "labelrank": "3", "country-abbrev": "Nam.", "subregion": "Southern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "NAM", "iso-a2": "NA", "woe-id": "23424987", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-1078, -961, 1132, 1133, 1134, -855, -1100]], "id": "LY", "properties": { "hc-group": "admin0", "hc-middle-x": 0.51, "hc-middle-y": 0.38, "hc-key": "ly", "hc-a2": "LY", "name": "Libya", "labelrank": "3", "country-abbrev": "Libya", "subregion": "Northern Africa", "region-wb": "Middle East & North Africa", "iso-a3": "LBY", "iso-a2": "LY", "woe-id": "23424882", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-1133, -960, 1135]], "id": "TN", "properties": { "hc-group": "admin0", "hc-middle-x": 0.53, "hc-middle-y": 0.03, "hc-key": "tn", "hc-a2": "TN", "name": "Tunisia", "labelrank": "3", "country-abbrev": "Tun.", "subregion": "Northern Africa", "region-wb": "Middle East & North Africa", "iso-a3": "TUN", "iso-a2": "TN", "woe-id": "23424967", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-127, -71]], "id": "BT", "properties": { "hc-group": "admin0", "hc-middle-x": 0.48, "hc-middle-y": 0.48, "hc-key": "bt", "hc-a2": "BT", "name": "Bhutan", "labelrank": "5", "country-abbrev": "Bhutan", "subregion": "Southern Asia", "region-wb": "South Asia", "iso-a3": "BTN", "iso-a2": "BT", "woe-id": "23424770", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[-1074, -1053]], "id": "MD", "properties": { "hc-group": "admin0", "hc-middle-x": 0.52, "hc-middle-y": 0.42, "hc-key": "md", "hc-a2": "MD", "name": "Moldova", "labelrank": "6", "country-abbrev": "Mda.", "subregion": "Eastern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "MDA", "iso-a2": "MD", "woe-id": "23424885", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[-923, -867, -849, -860, -971, -763]], "id": "SS", "properties": { "hc-group": "admin0", "hc-middle-x": 0.49, "hc-middle-y": 0.58, "hc-key": "ss", "hc-a2": "SS", "name": "South Sudan", "labelrank": "3", "country-abbrev": "S. Sud.", "subregion": "Eastern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "SSD", "iso-a2": "SS", "woe-id": "-99", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-1121, -845, -1131]], "id": "BW", "properties": { "hc-group": "admin0", "hc-middle-x": 0.49, "hc-middle-y": 0.6, "hc-key": "bw", "hc-a2": "BW", "name": "Botswana", "labelrank": "4", "country-abbrev": "Bwa.", "subregion": "Southern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "BWA", "iso-a2": "BW", "woe-id": "23424755", "continent": "Africa" } }, { "type": "MultiPolygon", "arcs": [[[1136, 1137]], [[1138]], [[1139]]], "id": "BS", "properties": { "hc-group": "admin0", "hc-middle-x": 0.8, "hc-middle-y": 0.92, "hc-key": "bs", "hc-a2": "BS", "name": "The Bahamas", "labelrank": "4", "country-abbrev": "Bhs.", "subregion": "Caribbean", "region-wb": "Latin America & Caribbean", "iso-a3": "BHS", "iso-a2": "BS", "woe-id": "23424758", "continent": "North America" } }, { "type": "MultiPolygon", "arcs": [[[1140]], [[1141]]], "id": "NZ", "properties": { "hc-group": "admin0", "hc-middle-x": 0.25, "hc-middle-y": 0.81, "hc-key": "nz", "hc-a2": "NZ", "name": "New Zealand", "labelrank": "2", "country-abbrev": "N.Z.", "subregion": "Australia and New Zealand", "region-wb": "East Asia & Pacific", "iso-a3": "NZL", "iso-a2": "NZ", "woe-id": "23424916", "continent": "Oceania" } }, { "type": "Polygon", "arcs": [[1142]], "id": "CU", "properties": { "hc-group": "admin0", "hc-middle-x": 0.67, "hc-middle-y": 0.64, "hc-key": "cu", "hc-a2": "CU", "name": "Cuba", "labelrank": "3", "country-abbrev": "Cuba", "subregion": "Caribbean", "region-wb": "Latin America & Caribbean", "iso-a3": "CUB", "iso-a2": "CU", "woe-id": "23424793", "continent": "North America" } }, { "type": "Polygon", "arcs": [[1143, -714, -773]], "id": "EC", "properties": { "hc-group": "admin0", "hc-middle-x": 0.16, "hc-middle-y": 0.37, "hc-key": "ec", "hc-a2": "EC", "name": "Ecuador", "labelrank": "3", "country-abbrev": "Ecu.", "subregion": "South America", "region-wb": "Latin America & Caribbean", "iso-a3": "ECU", "iso-a2": "EC", "woe-id": "23424801", "continent": "South America" } }, { "type": "MultiPolygon", "arcs": [[[1144]], [[1145]]], "id": "AU", "properties": { "hc-group": "admin0", "hc-middle-x": 0.53, "hc-middle-y": 0.39, "hc-key": "au", "hc-a2": "AU", "name": "Australia", "labelrank": "2", "country-abbrev": "Auz.", "subregion": "Australia and New Zealand", "region-wb": "East Asia & Pacific", "iso-a3": "AUS", "iso-a2": "AU", "woe-id": "-90", "continent": "Oceania" } }, { "type": "Polygon", "arcs": [[1146, -902, -142, -712]], "id": "VE", "properties": { "hc-group": "admin0", "hc-middle-y": 0.33, "hc-key": "ve", "hc-a2": "VE", "name": "Venezuela", "labelrank": "3", "country-abbrev": "Ven.", "subregion": "South America", "region-wb": "Latin America & Caribbean", "iso-a3": "VEN", "iso-a2": "VE", "woe-id": "23424982", "continent": "South America" } }, { "type": "Polygon", "arcs": [[1147]], "id": "SB", "properties": { "hc-group": "admin0", "hc-middle-x": 0.13, "hc-middle-y": 0.24, "hc-key": "sb", "hc-a2": "SB", "name": "Solomon Islands", "labelrank": "3", "country-abbrev": "S. Is.", "subregion": "Melanesia", "region-wb": "East Asia & Pacific", "iso-a3": "SLB", "iso-a2": "SB", "woe-id": "23424766", "continent": "Oceania" } }, { "type": "Polygon", "arcs": [[1148]], "id": "MG", "properties": { "hc-group": "admin0", "hc-middle-x": 0.45, "hc-middle-y": 0.48, "hc-key": "mg", "hc-a2": "MG", "name": "Madagascar", "labelrank": "3", "country-abbrev": "Mad.", "subregion": "Eastern Africa", "region-wb": "Sub-Saharan Africa", "iso-a3": "MDG", "iso-a2": "MG", "woe-id": "23424883", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[1149]], "id": "IS", "properties": { "hc-group": "admin0", "hc-key": "is", "hc-a2": "IS", "name": "Iceland", "labelrank": "3", "country-abbrev": "Iceland", "subregion": "Northern Europe", "region-wb": "Europe & Central Asia", "iso-a3": "ISL", "iso-a2": "IS", "woe-id": "23424845", "continent": "Europe" } }, { "type": "Polygon", "arcs": [[1150, -856, -1135, 1151, -1112]], "id": "EG", "properties": { "hc-group": "admin0", "hc-middle-y": 0.66, "hc-key": "eg", "hc-a2": "EG", "name": "Egypt", "labelrank": "2", "country-abbrev": "Egypt", "subregion": "Northern Africa", "region-wb": "Middle East & North Africa", "iso-a3": "EGY", "iso-a2": "EG", "woe-id": "23424802", "continent": "Africa" } }, { "type": "Polygon", "arcs": [[-693, -698, -675, -113], [-690], [-695], [-696]], "id": "KG", "properties": { "hc-group": "admin0", "hc-middle-x": 0.48, "hc-middle-y": 0.43, "hc-key": "kg", "hc-a2": "KG", "name": "Kyrgyzstan", "labelrank": "4", "country-abbrev": "Kgz.", "subregion": "Central Asia", "region-wb": "Europe & Central Asia", "iso-a3": "KGZ", "iso-a2": "KG", "woe-id": "23424864", "continent": "Asia" } }, { "type": "Polygon", "arcs": [[-79, -108]], "id": "NP", "properties": { "hc-group": "admin0", "hc-middle-x": 0.52, "hc-middle-y": 0.54, "hc-key": "np", "hc-a2": "NP", "name": "Nepal", "labelrank": "3", "country-abbrev": "Nepal", "subregion": "Southern Asia", "region-wb": "South Asia", "iso-a3": "NPL", "iso-a2": "NP", "woe-id": "23424911", "continent": "Asia" } }], "hc-transform": { "default": { "crs": "+proj=mill +lat_0=0 +lon_0=0 +x_0=0 +y_0=0 +R_A +datum=WGS84 +units=m +no_defs", "scale": 0.0000172182781654, "jsonres": 15.5, "jsonmarginX": -999, "jsonmarginY": 9851, "xoffset": -19495356.3693, "yoffset": 12635908.1982 } } } }, "arcs": [[[4802, 8470], [13, -20], [-1, -6], [-14, 17], [2, 9]], [[503, 4426], [-1, 0], [1, 0]], [[1589, 7478], [3, -4], [-10, 7], [1, 8], [6, -11]], [[1591, 7494], [2, -1], [-2, -6], [-5, 2], [5, 5]], [[1317, 7940], [2, 0], [-1, -11], [-3, 9], [2, 2]], [[1315, 7959], [3, -9], [-2, -5], [-3, 3], [2, 11]], [[1303, 7962], [4, -3], [11, -37], [-13, 19], [-2, 21]], [[1355, 7955], [-1, -8], [-7, 0], [2, 19], [6, -11]], [[1303, 7962], [-5, -1], [-1, 7], [5, 1], [1, -7]], [[1342, 7976], [5, -8], [-3, -13], [-3, 18], [1, 3]], [[1291, 7978], [6, 3], [0, -8], [-6, -7], [0, 12]], [[1302, 7978], [-1, -2], [-4, 7], [5, 0], [0, -5]], [[1286, 8011], [4, 12], [12, 5], [-4, -9], [-12, -8]], [[1323, 8031], [11, -7], [-5, -13], [-10, 10], [4, 10]], [[1319, 8050], [0, -12], [-12, 3], [4, 9], [8, 0]], [[1332, 8043], [3, -17], [-8, 12], [0, 15], [5, -10]], [[1313, 8075], [9, -17], [-6, -5], [-5, 2], [2, 20]], [[1288, 8094], [22, -10], [-5, -34], [-15, 0], [-2, 44]], [[1238, 8106], [-2, -15], [-5, -2], [3, 12], [4, 5]], [[1216, 8163], [-2, -14], [-3, 7], [2, 12], [3, -5]], [[2545, 7457], [-4, -10], [-14, -15], [-3, 6], [21, 19]], [[2587, 7255], [-2, -17], [-6, -20], [-4, 8], [12, 29]], [[2628, 7286], [0, -11], [-4, -2], [2, 11], [2, 2]], [[2681, 7306], [2, -10], [-8, 0], [4, 8], [2, 2]], [[1278, 8012], [-8, 65], [11, 3], [8, -20], [-11, -48]], [[390, 7882], [-14, -41], [-34, -10], [-32, -38], [18, 43], [32, 0], [0, 28], [30, 18]], [[1249, 8092], [-6, 37], [15, -22], [5, -78], [-14, 63]], [[1240, 8149], [-6, -33], [-19, 33], [16, 32], [9, -32]], [[1255, 8181], [20, -12], [8, -58], [-14, 7], [-14, 63]], [[296, 8546], [21, -5], [-29, -24], [-26, 30], [-32, 9], [43, 13], [23, -23]], [[1586, 7515], [-2, -2], [0, 2]], [[1584, 7515], [2, 0]], [[2248, 5909], [-1, 27], [-7, 7]], [[2240, 5943], [-23, 87], [-20, 85]], [[2197, 6115], [-4, 4], [-2, 7]], [[2191, 6126], [-31, 20], [-22, -64], [-38, 49], [-11, 64], [-45, 88], [-46, 0], [0, -33], [-80, 0], [-104, 83], [2, 15], [-66, -13]], [[1750, 6335], [-6, 41], [-34, 67], [-35, 3], [-23, 36], [-49, 187], [-3, 46], [-34, 79], [-3, 64], [-15, 45], [9, 72], [-14, 98], [12, 76], [7, 120], [-19, 201], [52, -19], [0, 8], [10, -19], [-11, 21], [0, 1], [4, 10], [-4, -8], [-1, 51]], [[1593, 7515], [766, 0], [71, -32], [34, -36], [51, -3]], [[2515, 7444], [-40, -37], [-30, -49], [36, 7], [10, -23], [50, 48], [1, -4], [0, 4], [15, 17], [9, -3], [-16, -27], [27, -39], [66, 20], [13, -23]], [[2656, 7335], [11, 3], [0, -13]], [[2667, 7325], [-18, -35], [-63, 4], [-28, -96], [19, 18], [-16, -111], [3, -72], [15, -46], [16, 18], [13, 78], [-9, 48], [8, 75], [46, 82], [30, -33], [4, -74], [-14, -24], [33, -6], [7, -64]], [[2713, 7087], [-3, -26], [-3, -8]], [[2707, 7053], [-5, 8], [-6, -26]], [[2696, 7035], [-12, -40], [27, -24], [23, 10], [70, 74], [7, 26]], [[2811, 7081], [-4, 12]], [[2807, 7093], [0, 12]], [[2807, 7105], [64, 4], [27, 83]], [[2898, 7192], [14, 28], [16, 10]], [[2928, 7230], [88, 0], [34, 62], [8, 60], [21, 54], [40, -27], [0, -95]], [[3119, 7284], [4, -11], [7, 0]], [[3130, 7273], [-1, -26], [7, -6]], [[3136, 7241], [6, -25], [-35, -31], [2, -2], [-7, -14], [0, 10], [-9, -8], [4, 2], [0, -12], [-5, 2], [-2, 6], [-5, -4], [-42, -58], [-2, -112], [-63, -34], [-33, -47], [-1, -60], [-43, -128], [-20, 91], [3, -96], [-6, -71], [13, 0], [8, -91], [-22, -75], [-17, 7], [-23, -61], [-34, -47], [-55, -105], [-9, -72], [27, -160], [14, -119], [-10, -118], [-20, -5], [-29, 96], [-19, 103], [6, 72], [-40, 87], [-26, -36], [-30, 51], [-77, 7], [-22, -20], [13, -82], [-23, 33], [-18, -27], [-27, 47], [-20, -13], [-49, 9], [-67, -96], [-29, -106], [11, -63]], [[2304, 5866], [-29, 6], [-27, 37]], [[1300, 8000], [-4, -3], [-4, 8], [8, 0], [1, 0], [3, 36], [34, -80], [-1, -37], [-24, 47], [-14, 21], [1, 8]], [[671, 5475], [-7, 18]], [[664, 5493], [6, -7], [1, -11]], [[671, 5475], [33, -75], [-30, -30], [-3, 105]], [[1357, 7945], [-1, -9], [-5, 5], [6, 4]], [[1086, 8996], [1, -670], [51, -16], [43, -60], [6, -24], [29, 49], [24, 14], [15, -36], [43, -64], [44, -129], [50, -49], [0, -45]], [[1392, 7966], [-25, -35], [1, 66], [-4, 2], [-5, 15], [-5, -10], [-9, 5], [-8, 34], [-31, 53], [-32, 80], [-2, 3], [2, -5], [-9, 4], [0, 6], [-5, 4], [-53, -10], [-45, 61], [-43, 32], [-82, 41], [-40, 3], [-52, 24], [1, 26], [-50, 0], [5, -61], [-47, 0], [-10, -23], [-60, -37], [21, 32], [-20, 10], [13, 69], [27, 24], [-3, 21], [-50, -61], [-10, -40], [-39, -39], [22, -33], [-29, -61], [-51, -43], [-31, -68], [-12, 12], [-30, -60], [-28, 0], [-46, -34], [-25, -38], [-67, -32], [7, 35], [34, 16], [54, 60], [32, -9], [-4, 33], [40, 39], [33, 52], [18, 95], [-54, -33], [-37, 46], [-39, -36], [2, 67], [-17, 44], [-35, -23], [-40, 41], [-15, -26], [-30, -10], [-22, 24], [49, 8], [31, 39], [-43, 47], [10, 38], [45, 88], [21, -17], [27, 29], [44, 23], [-17, 48], [7, 38], [-54, -39], [-85, 13], [-53, 80], [77, 53], [44, 11], [2, -37], [50, -5], [5, 73], [-57, 7], [-11, 35], [-70, 52], [12, 39], [52, 3], [34, 34], [-1, 19], [34, 49], [29, 0], [34, 33], [45, 2], [34, 33], [47, -11], [28, -25], [49, 5], [10, -29], [76, 6], [59, -27], [70, -13], [36, 9], [63, -33]], [[720, 8082], [-16, 32], [43, 50], [24, 42], [7, -72], [-42, -43], [-54, -89], [38, 80]], [[664, 5493], [-43, 35], [30, -7], [13, -28]], [[1357, 7945], [1, 5], [0, -5], [-1, 0]], [[8917, 7247], [1, 6], [7, -12], [-4, -3], [-4, 9]], [[8692, 6450], [-19, -24], [-30, 11], [41, 107], [53, 17], [33, -13], [43, 146], [-9, -48], [36, 23], [6, 52], [27, 17], [16, 85], [-7, 37], [16, 103], [10, -31], [19, 22], [18, -124], [-27, -75], [0, -71], [-14, -80], [8, -39], [-25, -57], [-4, 43], [-44, -58], [-47, -9], [10, -23], [-26, -50], [-25, 22], [9, 56], [-46, -11], [-22, -26], [16, -13], [19, 39], [13, -15], [-13, -76], [-12, 22], [-33, -59], [-8, 52], [18, 48]], [[8594, 6383], [-7, 65], [19, -56], [18, 38], [34, -19], [9, -46], [-20, -113], [-31, -9], [-1, 112], [-21, 28]], [[8908, 7001], [-14, -30], [-9, 90], [17, 52], [26, -2], [14, 156], [52, -98], [35, -28], [12, -42], [-36, -16], [-27, -74], [-39, 48], [-43, -24], [12, -32]], [[6540, 3679], [3, -8], [-1, -9], [-7, 26], [5, -9]], [[7447, 5570], [2, 2], [0, -18], [-3, 4], [1, 12]], [[7448, 6001], [20, 9], [1, -47]], [[7469, 5963], [26, -45], [63, 18], [-13, 58]], [[7545, 5994], [28, 12], [55, 100], [19, -20], [24, 22], [32, -82]], [[7703, 6026], [-17, -61], [-46, -63], [-1, -52], [-26, -137], [-21, 11], [-4, -115], [-17, -30]], [[7571, 5579], [-11, 127], [-16, -57], [-12, 48], [37, 94], [-13, 18], [-45, -2], [-15, 59], [-39, 34], [-10, -39], [23, -52], [-25, -39], [20, -25], [-5, -46], [14, -108]], [[7474, 5591], [-22, -42], [-3, 40], [-26, -40], [-24, -114], [-25, -4], [-38, -118], [-50, -87], [1, -33], [-57, -64], [-6, -47], [8, -119], [-13, -96], [0, -125], [-66, -159], [-26, 61], [-21, 156], [-28, 125], [-13, 124], [-24, 106], [-23, 273], [7, 49], [-15, 130], [-6, -83], [-32, -35], [-18, 16], [-31, 74], [27, 42], [-43, 44], [-13, 48]], [[6894, 5713], [19, 30], [31, -7], [31, 39], [-45, 152], [28, 88], [39, -7], [29, 78], [12, 62], [33, 86], [-1, 42], [21, 33], [-35, 74], [-7, 84], [16, 30], [40, -19], [35, 43]], [[7140, 6521], [22, 27]], [[7162, 6548], [13, -59], [17, -22], [-3, -58], [19, -59], [-30, -15], [10, -85], [62, -82]], [[7250, 6168], [-17, -31], [-10, -67], [76, -96], [51, -11], [34, -54], [41, -16], [24, 27], [-1, 81]], [[3442, 7360], [-6, -2], [0, 23], [2, -16], [4, -5]], [[5264, 7061], [-7, -92], [-11, 14], [-3, 72], [21, 6]], [[9642, 2496], [-9, -97], [-43, 62], [-25, 58], [-6, 49], [61, -114], [22, 42]], [[6921, 497], [39, -9], [-12, -43], [-37, 0], [10, 52]], [[3249, 5299], [3, 5], [0, -7]], [[3252, 5297], [-3, 2]], [[5210, 7143], [-1, -2], [-1, -2]], [[5208, 7139], [-1, 2], [-1, -4]], [[5206, 7137], [-35, -46], [-60, 34], [-25, -44], [3, -36]], [[5089, 7045], [-17, -8], [-15, 8]], [[5057, 7045], [-1, 0]], [[5056, 7045], [-7, 4]], [[5049, 7049], [0, 8], [-8, 0]], [[5041, 7057], [-40, 6], [-49, 50]], [[4952, 7113], [8, 14], [13, 177], [-27, 71], [-23, 32], [-51, 42], [-1, 36], [44, 21], [12, -25], [36, 10], [-15, 76], [47, -31], [12, 30], [38, 37], [1, 47], [26, 15]], [[5072, 7665], [45, -79], [45, -32]], [[5162, 7554], [5, -7], [10, 2]], [[5177, 7549], [52, -36], [-17, -98]], [[5212, 7415], [-40, -73], [3, -21]], [[5175, 7321], [1, 6], [2, 2]], [[5178, 7329], [12, 2]], [[5190, 7331], [0, -20], [6, -15]], [[5196, 7296], [-11, -58], [25, -95]], [[3497, 4387], [7, 30], [27, -22], [35, -100]], [[3566, 4295], [-35, -133], [-46, 10]], [[3485, 4172], [17, 82], [-13, 102], [8, 31]], [[9394, 4504], [3, -3], [0, -9], [-3, 0], [0, 12]], [[8019, 5377], [25, 61], [30, 11], [9, -32], [-16, -73], [-20, -35], [-28, 23], [0, 45]], [[7448, 6001], [-43, 18], [-16, -16], [-25, 29], [-28, 70], [-15, -7], [-41, 82], [-30, -9]], [[7162, 6548], [-13, -2], [-16, 13]], [[7133, 6559], [-22, 59], [-40, 41]], [[7071, 6659], [-5, 6], [14, 8]], [[7080, 6673], [-3, 92], [-26, 4], [-5, 63]], [[7046, 6832], [9, 43], [44, 41], [4, -25], [30, 47], [36, 8], [8, 23], [51, 58]], [[7228, 7027], [17, 70], [-20, 135], [61, 35], [21, 119], [47, -26], [21, 17], [8, 97], [42, 49]], [[7425, 7523], [6, 1], [8, 4]], [[7439, 7528], [4, -41], [31, -43], [36, -25], [19, -77], [-4, -99], [73, -17], [51, -47], [28, -114], [146, -14], [11, -24], [47, -30], [41, -2], [43, 40], [76, 12], [68, 88], [-14, 55], [16, 46], [44, -26], [26, 47], [32, 4], [25, 62], [47, 29], [39, -10], [6, 23], [-37, 77], [-23, 0]], [[8270, 7442], [-2, 0], [-4, -14]], [[8264, 7428], [-46, -5], [-10, 30], [33, 122]], [[8241, 7575], [30, -23], [40, 36], [-2, 26], [27, 93], [18, 33], [-20, 44], [22, 38], [68, 21], [68, -42], [65, -247], [36, -7], [40, -83], [7, -43], [39, 2], [53, 49], [12, -49], [-18, -33], [-7, -71], [-30, -85]], [[8689, 7234], [-7, 17], [-16, -6]], [[8666, 7245], [-29, -27], [8, -57], [-7, -86], [-12, -24]], [[8626, 7051], [-20, 32], [-4, -38], [-46, -32], [3, -44], [-42, 22], [-18, -55], [-45, -57]], [[8454, 6879], [-53, -49], [-36, -50], [4, 47], [27, 81], [-30, 28], [-21, -51], [-25, -23], [-14, -49], [-35, -6], [9, -69], [21, 0], [17, -73], [35, 50], [24, -29], [31, 0], [-55, -70], [-42, -100], [29, -53], [17, -117], [26, -52], [5, -75], [-28, -26], [39, -51], [-22, -38], [2, -69], [-19, -25], [-42, -144], [8, -41], [-25, -21], [-65, -155], [-48, -10], [-16, -44], [-16, 60], [-2, -64], [-79, -56], [-22, -79], [-5, 89], [-36, 27], [-12, -27]], [[8000, 5545], [-40, 62], [5, 28], [-40, 43], [-37, -59], [-42, 18], [-10, -28]], [[7836, 5609], [-16, -9], [5, -81], [-15, 30]], [[7810, 5549], [-27, -9], [-7, 44], [-22, 9], [10, 65], [-18, 9], [-7, 64], [-27, -18], [2, 89], [28, 59], [-1, 120], [-32, 67], [-6, -22]], [[7545, 5994], [-38, 43], [-38, -74]], [[4796, 6669], [-44, -10], [6, 81], [-20, 38], [22, 150], [-2, 83]], [[4758, 7011], [61, 0], [10, -28], [-20, -39], [-1, -143], [-12, -132]], [[2818, 5141], [0, 0]], [[8271, 5091], [-1, 0], [1, 0]], [[3622, 3994], [35, -7], [-11, -85], [-50, -24], [-5, 85], [31, 31]], [[3515, 1602], [11, 54], [-1, 11]], [[3525, 1667], [-67, 129], [-11, -18], [-24, 71], [-21, -5]], [[3402, 1844], [51, 138], [54, 79], [-2, 109], [-19, 4]], [[3486, 2174], [0, 2], [-1, 7]], [[3485, 2183], [10, 55], [0, 43]], [[3495, 2281], [-32, 10], [-6, 94], [-21, 39], [-44, 0], [4, 81], [-9, 56]], [[3387, 2561], [17, 143], [-24, 66], [-2, 66], [-46, 5], [-10, 176], [-37, 19], [-35, 64], [-36, 14], [-28, 94], [-1, 103], [-34, -14], [-46, -77], [-35, 2]], [[3070, 3222], [-29, -5], [3, 113], [-19, -36], [-28, -4], [-51, 176], [25, 82], [6, 89], [59, 71], [23, -5]], [[3059, 3703], [14, 201], [-16, 90], [5, 134], [47, 0], [23, 27], [13, -61]], [[3145, 4094], [36, -41], [40, 65], [22, 61], [-20, 5], [-16, 107], [85, 19], [23, 68]], [[3315, 4378], [21, -7], [13, -83], [-14, -90], [8, -58], [26, -49], [47, 59], [18, -5]], [[3434, 4145], [14, 41], [37, -14]], [[3566, 4295], [17, -12], [12, -121], [21, -37], [2, -119], [-43, -34], [20, -94], [40, -13], [42, 103], [76, -59], [9, -97], [27, 32], [57, -47], [45, 5], [42, -60], [37, -88], [45, -17], [20, -145], [-14, -145], [-44, -113], [-32, -134], [-25, -43], [3, -188], [-8, -130], [-14, -37], [-1, -85], [-39, -153], [3, -31], [-30, -71], [-64, 0], [-72, -94], [-24, -48], [-22, -80], [5, -97], [-9, -81], [-29, -64], [-14, -73], [-25, 17], [-7, -64], [-21, -46], [-12, -98], [-20, -45]], [[3520, 1589], [-5, 6], [0, 7]], [[631, 4150], [3, -12], [4, -10], [-6, 5], [-1, 17]], [[8454, 4843], [19, 5], [-21, 55], [25, 2], [14, -103], [-18, 10], [-7, -67], [-12, 98]], [[8326, 4824], [4, 65], [12, -17], [-16, -48]], [[8322, 4805], [-1, 2], [5, 17]], [[8326, 4824], [0, -2], [-4, -17]], [[8387, 4752], [2, 130], [32, -56], [-6, -43], [31, 29], [-2, -62], [-27, -97], [-18, 58], [6, 60], [-18, -19]], [[8451, 4535], [-23, 29], [-25, -7], [-16, -92], [4, 94], [36, 70], [13, -38], [26, 65], [20, -5], [0, 75], [23, -87], [8, -111], [-10, -39], [-13, 44], [-11, -49], [0, -80], [-32, 44], [0, 87]], [[8455, 4984], [-10, -138], [-17, 33], [-7, 91], [-18, 36], [2, -57], [-24, 57], [-14, -38], [15, -36], [-15, -50], [-24, 93], [19, 2], [-27, 88], [-7, 114], [16, -17], [-2, 102], [25, 108], [-3, -30], [33, -29], [6, -84], [-8, -59], [-18, -24], [5, -124], [20, 12], [53, -50]], [[8322, 4805], [3, -46], [-66, -147], [62, 193], [1, 0]], [[2594, 5479], [-8, -23], [0, 9], [2, 12], [6, 2]], [[2040, 5561], [3, -5], [10, -25], [-8, 11], [-5, 19]], [[1893, 5761], [4, 0], [3, -9], [0, -5], [-7, 14]], [[1887, 5795], [-1, -11], [-2, -2], [2, 15], [1, -2]], [[1804, 6019], [-2, -4], [-3, 4], [5, 18], [0, -18]], [[1720, 6077], [-2, -2], [-2, 18], [3, -5], [1, -11]], [[1877, 6062], [2, 33], [7, -11], [-2, -20], [-7, -2]], [[1851, 6122], [8, -18], [2, -22], [-13, 31], [3, 9]], [[2191, 6126], [-1, -9], [7, -2]], [[2240, 5943], [6, -18], [2, -16]], [[2304, 5866], [-14, -105], [-5, -140], [19, -137], [38, -135], [37, -43], [72, 33], [26, 40], [16, 133], [62, 42], [39, -26], [-20, -74], [-11, -141], [-13, 17]], [[2550, 5330], [-15, -42], [-9, -7]], [[2526, 5281], [-50, 0], [-12, -41], [29, -61], [-38, -24], [-15, -106]], [[2440, 5049], [-46, 109], [-26, 23], [-47, -54], [-61, 64], [-64, 52], [-21, 45], [-46, 30], [-42, 73], [-20, 77], [15, 74], [-18, 86], [-70, 185], [-31, 39], [0, 68], [-31, 47], [-44, 115], [-27, 130], [2, 25], [-42, 43], [-3, -112], [29, -64], [86, -316], [-2, -45], [23, -7], [9, -67], [-12, -25], [-12, 48], [-51, 96], [-3, 82], [-36, 48], [-41, 81], [24, 9], [4, 36], [-46, 93], [-10, 75], [-30, 123]], [[2293, 5829], [-5, -34], [2, -29], [7, 61], [-4, 2]], [[4575, 6001], [-30, 20], [-18, -2], [27, 34], [21, -52]], [[4920, 6536], [1, -3]], [[4921, 6533], [-1, -2]], [[4920, 6531], [-1, 5]], [[4919, 6536], [1, 0]], [[4852, 6578], [2, 0], [-1, -4]], [[4853, 6574], [-1, 2], [0, 2]], [[4853, 6595], [-23, 11], [-9, 46], [-25, 17]], [[4758, 7011], [-13, 86], [37, 44], [17, -16], [103, -2], [50, -10]], [[5041, 7057], [3, -12], [5, 4]], [[5056, 7045], [0, 2], [0, 2], [1, -4]], [[5089, 7045], [2, -34], [-32, -48], [-30, -17], [-37, -110], [16, -54], [-20, -29], [-6, -52], [-27, -19], [-11, -42], [-66, -5], [-24, -40]], [[4854, 6595], [-1, 0]], [[2781, 5136], [0, 0]], [[7039, 4414], [8, -27], [-10, 3], [4, 12], [-2, 12]], [[8218, 4781], [-1, 0], [1, 0]], [[4912, 8226], [2, -7], [-4, -2], [-4, 7], [6, 2]], [[4915, 8244], [0, -12], [4, -2], [-11, 4], [7, 10]], [[4921, 8248], [-5, 9], [12, -10], [-4, -5], [-3, 6]], [[4973, 8328], [-7, -34], [-1, 24], [-9, 8], [17, 2]], [[4975, 8349], [6, -2], [-12, -5], [2, 15], [4, -8]], [[4980, 8362], [-2, -10], [-4, 2], [1, 8], [5, 0]], [[2742, 5388], [3, 5], [6, -5], [-6, -2], [-3, 2]], [[3015, 5565], [-8, 0], [0, 5], [5, 0], [3, -5]], [[3000, 5572], [-1, -7], [-5, 0], [4, 3], [2, 4]], [[4805, 8136], [-1, 38], [24, 24], [-3, -34], [-20, -28]], [[3345, 258], [19, 77], [30, -10], [5, -23], [-54, -44]], [[5943, 6510], [-1, -2], [-2, 4]], [[5940, 6512], [-1, 0]], [[5939, 6512], [0, -2], [-2, 0]], [[5937, 6510], [0, 2]], [[5937, 6512], [1, 0]], [[5938, 6512], [-2, 2]], [[5936, 6514], [3, 0]], [[5939, 6514], [4, 5]], [[5943, 6519], [0, -3]], [[5943, 6516], [-3, 0], [3, -6]], [[5938, 6512], [1, 2]], [[5939, 6514], [-1, 0], [0, -2]], [[4854, 6595], [-1, -2], [0, 2]], [[5918, 6486], [-2, 3], [-5, 0]], [[5911, 6489], [2, 2], [5, -5]], [[4800, 7950], [28, 18], [20, -47], [-20, -39]], [[4828, 7882], [-29, 0], [-25, 25], [26, 43]], [[4833, 8113], [30, 93], [54, 1], [-29, -51], [16, -15], [44, -3], [5, -15], [-39, -100], [43, -35], [11, -69], [32, -37], [11, -73], [-9, -14], [46, -11], [-2, -48], [-25, -42], [18, -25], [-30, -28], [-103, -9], [-55, -31], [35, 73], [30, 0], [-36, 42], [-26, 5], [31, 29], [1, 68], [27, 13], [9, 56], [-21, 23], [6, 28], [-28, 2], [2, -37], [-22, 32], [14, 46], [-29, 66], [-26, 17], [23, 10], [-28, 49], [20, -10]], [[5731, 6523], [-43, -15], [-33, 25], [18, 18], [58, -28]], [[5768, 6599], [17, 17], [-4, -23], [-9, -17], [-4, 23]], [[5756, 6629], [-7, 4], [7, 15], [-1, -8], [1, -11]], [[5748, 6663], [4, -7], [-3, -4], [1, 7], [-2, 4]], [[5701, 6654], [10, 17], [1, -15], [-6, -25], [-5, 23]], [[5732, 6701], [-7, -9], [-2, 2], [3, 9], [6, -2]], [[5750, 6711], [3, -4], [-8, -4], [-5, 8], [10, 0]], [[5726, 6769], [1, -20], [-4, 4], [-4, 16], [7, 0]], [[5708, 6873], [-6, -2], [6, 35], [6, 0], [-6, -33]], [[5585, 6920], [3, 6], [-3, -6]], [[5585, 6920], [-2, 6], [0, 2]], [[5583, 6928], [2, 4], [3, 0]], [[5588, 6932], [22, 18], [28, 17]], [[5638, 6967], [44, 16], [20, -22], [30, 32]], [[5732, 6993], [9, -22], [-16, -47]], [[5725, 6924], [-28, 18], [-38, -22], [20, -37], [-49, 23], [-2, -31], [79, -189], [-40, 63], [2, -44], [-23, 21], [-14, -30], [13, -80], [-36, 19], [-14, 109], [-38, 104]], [[5557, 6848], [11, 10], [17, 62]], [[5736, 6817], [5, -14], [-6, -7], [-16, 17], [14, 8]], [[5733, 6821], [2, 0], [1, -4]], [[265, 2986], [-2, -3], [-2, -7], [-2, 5], [6, 5]], [[5314, 7943], [14, -22], [-8, -2], [-13, 10], [7, 14]], [[5289, 7938], [4, -3], [-3, 0], [-6, 10], [5, -7]], [[5350, 7947], [-10, -9], [-1, 7], [5, 3], [6, -1]], [[5274, 7952], [6, -9], [-2, -7], [-5, 4], [1, 12]], [[5303, 7941], [-3, -13], [-3, 7], [9, 22], [-3, -16]], [[5351, 7997], [-17, -73], [-25, 69], [32, 33], [10, -29]], [[5263, 7933], [-16, 7], [-5, -2]], [[5242, 7938], [-15, 119], [47, 40], [22, 46], [-9, -61], [19, -32], [-13, -26], [9, -62], [-35, 14], [-4, -43]], [[3532, 8910], [2, -2], [-7, -4], [-4, 5], [9, 1]], [[3553, 8929], [-26, -10], [2, 5], [11, 5], [13, 0]], [[3484, 9048], [-7, 0], [-3, 8], [6, -2], [4, -6]], [[3516, 9096], [-13, 5], [10, 15], [7, -15], [-4, -5]], [[3473, 9187], [-12, -12], [-4, 7], [17, 10], [-1, -5]], [[3456, 9220], [-6, -7], [-10, 2], [8, 5], [8, 0]], [[3475, 9223], [-15, -18], [-2, 14], [9, 4], [8, 0]], [[3449, 9277], [13, -10], [-4, -1], [-14, 11], [5, 0]], [[3439, 9299], [9, -1], [-18, -3], [0, 8], [9, -4]], [[3434, 9343], [-17, 0], [-13, 0], [23, 5], [7, -5]], [[3070, 9491], [-12, 1], [0, 2], [13, 1], [-1, -4]], [[2997, 9555], [23, -6], [-9, -3], [-23, 5], [9, 4]], [[3033, 9557], [18, -7], [-22, 0], [-7, 6], [11, 1]], [[4521, 9736], [-33, -20], [-25, 12], [46, 17], [12, -9]], [[3144, 9787], [9, -5], [-6, -1], [-3, 1], [0, 5]], [[3579, 9881], [-24, 1], [-30, 8], [11, 15], [43, -24]], [[3510, 8968], [9, 13], [-44, 19], [4, 36], [44, 0], [35, -29], [-4, -24], [-44, -15]], [[3530, 8703], [-5, 0], [0, 5], [1, 0], [-3, 4], [-11, 58], [38, 30], [-46, 12], [22, 80], [55, 27], [10, 81], [-18, 19], [-66, 29], [-21, 24], [59, -1], [50, -27], [-22, 43], [-28, 23], [-6, -5], [-12, 3], [4, 13], [4, -1], [-5, 4], [34, 13], [-28, 2], [-13, -8], [-6, 8], [11, 2], [4, 0], [-32, 3], [4, -20], [-38, -4], [-16, 22], [7, 12], [-5, 3], [7, 3], [2, -1], [17, 24], [8, 41], [-15, 9], [2, 0], [-13, 7], [-1, -1], [-3, 1], [11, 24], [-21, 18], [10, 18], [-20, 13], [7, 22], [-26, 39], [-30, 10], [-14, 23], [5, 25], [-66, 31], [-73, 15], [-15, -16], [-61, 9], [-7, -24], [-54, 10], [-34, 22], [46, 21], [-67, 9], [-26, 14], [12, 14], [70, 13], [44, -1], [14, 18], [-81, -11], [-8, 17], [-50, 5], [-44, 28], [8, 26], [90, 21], [37, 19], [57, 2], [31, 29], [-5, 37], [-56, 3], [-11, 20], [64, 31], [10, 15], [50, 18], [40, -13], [21, 33], [-19, 17], [80, 26], [115, 19], [25, -19], [-7, -40], [24, 35], [43, -10], [53, 3], [-31, 15], [-15, 25], [59, -4], [84, -29], [23, -18], [25, 4], [-19, 14], [5, 4], [-59, 19], [-40, 31], [17, -11], [38, 2], [53, -20], [-8, -20], [27, 21], [-56, 27], [133, 0], [-129, 7], [-34, 6], [23, 9], [25, -8], [13, 14], [70, 5], [64, -3], [28, -2], [4, 18], [54, 8], [118, 7], [50, -2], [140, -22], [-13, -6], [-129, -5], [-117, -18], [86, 7], [49, 10], [75, -5], [61, 8], [20, -20], [51, -6], [36, -13], [-31, -20], [-205, -15], [-82, -21], [31, -1], [109, 16], [87, -5], [-2, -15], [-45, -12], [-2, -13], [73, 23], [16, 20], [49, 4], [4, -41], [-51, -43], [32, 7], [92, 58], [44, -18], [35, 19], [52, -2], [53, -12], [17, -13], [-54, -32], [-34, -2], [8, -14], [-32, -11], [-45, 1], [35, -17], [-18, -14], [-65, -7], [-44, -17], [32, -13], [-10, -23], [17, -16], [-26, -10], [14, -23], [-29, 12], [-24, -43], [-3, -28], [61, 4], [-3, -14], [41, -7], [-41, -9], [-42, 9], [11, -19], [59, -12], [-12, -48], [5, -43], [-15, 38], [9, 21], [-48, 14], [-34, -21], [1, -29], [49, 0], [17, -62], [55, -26], [-30, -4], [-26, -51], [-53, -13], [20, -46], [-27, 4], [-22, -18], [-47, 25], [-59, -26], [15, -5], [-3, 1], [34, 18], [34, -25], [37, -12], [0, -16], [-28, 6], [28, -20], [-20, -1], [12, -26], [-60, 34], [-4, 17], [23, 0], [-24, 5], [-17, 11], [-15, -11], [32, -34], [57, -38], [-15, -13], [34, -32], [10, -52], [-53, -8], [-25, 47], [-44, 35], [7, -27], [-65, -23], [-8, -36], [26, 4], [-22, 0], [11, 22], [65, 25], [1, -31], [-24, -14], [-19, 0], [-29, -26], [17, -8], [55, 31], [49, -22], [32, 0], [-24, -33], [-23, -8], [-61, -61], [-49, -10], [-37, -25], [-73, -11], [-37, -35], [1, -19], [-37, -66], [-49, -39], [-41, -17], [-4, 46], [-14, -39], [-45, -16], [18, -11], [-21, -22], [-16, -45], [9, -46], [-46, -83], [-13, -121], [-22, -29], [5, -38], [-31, -5], [-29, 22], [-1, 31], [-70, 16], [-30, 39], [-7, 54], [-28, 25], [5, 32], [-35, 38], [4, 67], [-24, -20], [2, 62], [-27, 41]], [[9021, 4968], [-2, -15], [-2, 15], [6, 16], [-2, -16]], [[9045, 5082], [2, 12], [2, 5], [-1, -12], [-3, -5]], [[3189, 5316], [-26, -26], [-25, 2], [1, 40], [50, -16]], [[3204, 5278], [5, 0], [-9, -7], [1, 7], [3, 0]], [[2671, 9558], [-45, 4], [14, 38], [-34, 9], [-33, -5], [0, 23], [24, 26], [38, 7], [57, -7], [39, 4], [-69, 7], [-21, 47], [-40, 9], [1, 42], [73, -6], [45, -27], [15, -20], [5, 26], [-48, 27], [144, 19], [-54, 1], [93, 21], [-84, -5], [-92, -21], [-26, 16], [-15, -18], [-64, 6], [17, 28], [-32, -26], [-59, 18], [74, 9], [6, 9], [-93, -8], [-14, 11], [55, 30], [-58, -15], [24, 19], [-65, 0], [26, 15], [81, 19], [93, -9], [-55, 11], [38, 11], [-11, 12], [77, -11], [82, -24], [-75, 29], [18, 21], [41, -8], [-27, 17], [46, -2], [-7, 12], [84, -5], [28, 13], [54, -4], [10, -9], [23, 15], [92, 3], [2, -9], [91, -7], [-63, -19], [33, 2], [75, 18], [50, -29], [37, -1], [7, -21], [-84, -34], [-28, 3], [-36, -19], [-94, -25], [153, 29], [-104, -57], [-66, -44], [-23, -30], [-53, 4], [6, -17], [-76, -14], [-41, 7], [2, -13], [79, -3], [-1, -14], [-45, 6], [-49, -4], [59, -5], [31, -14], [-4, -15], [-47, -3], [38, -12], [-13, -19], [-56, -21], [-19, -32], [-69, -3], [49, -16], [-11, -13], [42, 3], [3, -22], [-41, -25], [11, -32], [-25, 1], [11, 30], [-47, -13], [8, 21], [-87, 4], [-14, -12], [-83, 11], [-74, 2], [-14, 16], [64, 31], [16, 15], [-14, 33], [27, 6], [35, -13], [5, -20], [51, 4]], [[2671, 9558], [1, 0], [14, 2], [17, 36], [-31, -38], [-1, 0]], [[2807, 7093], [0, -6], [4, -6]], [[2811, 7081], [-68, -20], [-35, -44], [-12, 18]], [[2696, 7035], [17, 4], [-6, 14]], [[2713, 7087], [19, 24], [12, 136], [34, -55], [10, 22], [-28, 82], [-93, 29]], [[2656, 7335], [-10, 103], [-28, 6], [-16, 56], [-45, 15], [-42, -71]], [[1593, 7515], [-5, 8], [-2, -8]], [[1584, 7515], [-5, 28], [-41, 41], [4, 20], [-7, 4], [2, -2], [3, -5], [-5, -6], [-1, 13], [-9, 4], [1, 3], [-3, 4], [-1, -5], [-8, 1], [-2, 2], [-9, 4], [7, -6], [-1, 0], [-3, 2], [4, -3], [2, 1], [6, -3], [4, -13], [0, -2], [5, -9], [17, -45], [29, -47], [-2, 15], [7, -9], [8, -2], [-12, -4], [5, -7], [-8, -23], [-31, 19], [-52, 60], [-3, 17], [1, 0], [-3, 15], [-1, 7], [-29, 9], [-17, 50], [15, 7], [37, -20], [2, 2], [-3, 2], [8, 0], [3, 7], [-3, 6], [-8, -13], [-33, 37], [-6, 65], [-4, -24], [-3, 9], [3, 13], [4, 2], [0, 2], [1, 0], [2, 5], [-3, 0], [0, 2], [2, 0], [-1, 7], [-1, -3], [-3, 35], [-14, 27], [-8, -34], [-8, 25], [1, 7], [-5, 2], [0, 7], [5, 6], [0, -11], [2, 11], [10, -9], [-4, 7], [7, 55], [-12, -28], [6, 5], [-2, -9], [-5, -5], [-1, 3], [-6, -12], [-32, 65], [13, 51], [0, 19]], [[1086, 8996], [53, -10], [53, -40], [38, -4], [1, 29], [57, 14], [15, -7], [79, 55], [24, -10], [-69, -35], [-24, -35], [46, 39], [7, -24], [17, 30], [89, 41], [14, -38], [33, -28], [26, 55], [3, -53], [34, 10], [6, 24], [42, -5], [33, -26], [61, -27], [58, -16], [0, 14], [49, -30], [5, -24], [-26, 3], [-15, -25], [45, -17], [65, 1], [33, 19], [33, -15], [10, -29], [22, -6], [12, -53], [11, 42], [-23, 42], [66, 66], [-55, -33], [-33, 8], [15, 25], [68, 18], [13, -37], [24, -24], [31, -2], [51, -24], [22, 13], [66, -4], [22, -14], [-32, 55], [41, 8], [12, -32], [25, 19], [-16, -59], [32, -41], [-4, 84], [17, -3], [36, 58], [-29, -7], [8, 51], [-52, 30], [-10, 34], [3, 68], [34, 47], [17, 3], [-15, -1], [1, 34], [-17, 26], [0, 59], [13, 27], [44, 11], [39, -12], [57, -8], [-46, -75], [-15, -10], [-48, 5], [18, -23], [-17, -31], [-12, -1], [37, -39], [5, -43], [41, -51], [-37, -32], [30, -15], [38, -44], [4, -46], [17, 57], [21, 14], [27, -36], [-13, -32], [25, -83], [45, 66], [6, 49], [27, 22], [-22, 18], [-1, 35], [33, 6], [13, -4], [0, 2], [9, -4], [-1, -1], [27, -8], [35, -33], [-13, -19], [15, -21], [-38, -13], [39, -71], [-7, -33], [-52, -46], [-28, 45], [19, -57], [-43, 6], [-6, 22], [-37, -10], [26, -20], [-42, -59], [-15, 0], [-50, 44], [19, -46], [55, -5], [-26, -75], [-30, -18], [-25, 16], [-6, -36], [-22, -6], [1, -2], [8, -4], [-2, -3], [-1, 3], [-5, 4], [8, -36], [-57, -42], [-46, -115], [-13, -65], [10, -89], [36, 2], [20, -93], [-6, -35], [46, 21], [59, -28], [36, -58], [82, -57], [64, -14], [6, -89], [-5, -60], [70, -132], [35, 87], [-13, 48], [-5, 80], [-17, 37], [55, 45], [30, 55], [6, 53], [-16, 84], [-42, 48], [35, 83], [-24, 77], [18, 45], [-17, 58], [19, 21], [75, -32], [31, 25], [55, -60], [-4, -22], [67, -39], [-12, -20], [10, -116], [19, 1], [31, -58], [51, 53], [8, 62], [19, 46], [13, -9], [5, -35], [3, 8], [3, -6], [-4, -5], [-2, 3], [4, -24], [19, -9], [12, -49], [44, -107], [-16, -35], [59, -108], [70, -44], [-20, -19], [25, -35], [36, -22], [6, -87], [-38, -58], [-45, -17], [-34, -60], [-53, -17], [-17, 13], [-114, -2], [-26, -67], [-46, -39], [-25, -72], [-40, -74], [-45, -39], [-47, -85]], [[2898, 7192], [-89, -45], [-22, -38], [20, -4]], [[2807, 7105], [0, -8], [0, -4]], [[1495, 7625], [-1, 2], [-1, 0], [2, -2]], [[1578, 7545], [-1, 9], [-3, -2], [0, -5], [4, -2]], [[1465, 7749], [4, 12], [-14, -12], [-4, -22], [14, 22]], [[2299, 8859], [-6, -3], [1, -6], [5, 4], [0, 5]], [[1505, 7528], [4, -2], [0, 6], [-2, 0], [-2, -4]], [[1502, 7536], [-1, 7], [-4, 0], [0, -7], [5, 0]], [[3207, 8573], [0, -59], [-17, -11], [-36, 17], [-26, 30], [-3, -24], [46, -64], [-10, -25], [-62, 29], [-29, 29], [-59, 37], [4, 29], [-30, 20], [-23, 54], [-34, -17], [-31, 17], [-25, -30], [-31, 12], [-9, 42], [20, 37], [47, -18], [43, 22], [20, -4], [-28, 50], [42, 41], [22, 39], [-23, 69], [-23, 7], [-46, 49], [-32, -24], [0, 24], [29, 15], [-58, 43], [0, 26], [-35, 9], [4, -32], [-82, 19], [-11, -26], [-114, 24], [-68, 26], [-24, 45], [62, -11], [-21, 19], [-48, 9], [-8, 42], [15, 62], [17, 36], [33, 31], [29, 9], [44, -3], [-44, -71], [9, -58], [43, -52], [-18, 70], [27, -10], [-32, 37], [14, 43], [65, 36], [37, -1], [34, -70], [-16, -55], [28, 38], [26, -36], [13, 41], [23, 13], [66, -19], [-1, -27], [29, -3], [-1, -24], [33, -34], [16, 27], [39, -27], [-27, -13], [-1, -8], [7, 6], [9, -9], [20, 13], [-11, -38], [35, 21], [43, -21], [35, -62], [-20, -3], [3, -4], [-5, -5], [5, -1], [7, 5], [5, -4], [-8, -3], [10, -4], [12, -23], [-26, -7], [-10, -18], [-3, 1], [-6, 0], [8, -2], [-7, -13], [42, -12], [8, -16], [3, 3], [6, 0], [-1, -5], [-8, 1], [8, -15], [37, 5], [29, -54], [3, 0], [6, 3], [7, -3], [-1, 0], [10, -1], [-9, -29], [37, 12], [15, -48], [-30, -10], [-2, -41], [-29, -14], [4, -40], [-29, 13], [-64, 104], [-28, -6], [21, -32], [-23, -32], [66, -58], [-4, -19], [30, -36], [0, -6], [1, -8], [5, -9], [-6, 6]], [[2999, 9084], [-2, -8], [8, 5], [-5, -2], [-1, 5]], [[3115, 8998], [-22, -2], [12, -4], [10, 6]], [[3029, 7363], [-2, 0], [6, 12], [1, -6], [-5, -6]], [[1567, 7524], [5, -11], [6, -3], [-6, 1], [-5, 13]], [[3221, 7584], [63, -43], [-10, -20], [-38, 22], [-15, 41]], [[1532, 7590], [-2, 5], [2, 6], [3, -8], [-3, -3]], [[1451, 7692], [-5, 2], [-2, 9], [4, 8], [3, -19]], [[2806, 7738], [-7, -9], [-8, -4], [0, 7], [15, 6]], [[1364, 7738], [-2, -2], [-1, -6], [0, 11], [3, -3]], [[1442, 7732], [-2, 6], [1, 7], [3, 0], [-2, -13]], [[1440, 7749], [-1, -8], [-5, 0], [1, 8], [5, 0]], [[1429, 7765], [2, -11], [-2, -4], [-2, 13], [2, 2]], [[1434, 7774], [0, -7], [0, -4], [-6, 11], [6, 0]], [[1347, 7783], [4, 0], [1, -6], [-4, -3], [-1, 9]], [[1437, 7758], [-2, 17], [2, 13], [3, -21], [-3, -9]], [[1411, 7788], [10, -13], [1, -8], [-5, 5], [-6, 16]], [[1441, 7775], [-1, 4], [-1, 7], [4, 2], [-2, -13]], [[1405, 7806], [0, -7], [-2, 0], [-3, 12], [5, -5]], [[1408, 7813], [4, -11], [-3, 0], [-3, 15], [2, -4]], [[2741, 7818], [9, -1], [11, -36], [-37, 23], [17, 14]], [[2784, 7815], [2, -4], [-3, -2], [0, 6], [1, 0]], [[1422, 7827], [-5, -2], [-1, 4], [4, 12], [2, -14]], [[1376, 7836], [2, 13], [18, -18], [-2, -16], [-18, 21]], [[1390, 7845], [-7, 2], [-2, 5], [6, 5], [3, -12]], [[1399, 7850], [12, -21], [-6, -11], [-21, 45], [15, -13]], [[1375, 7882], [8, -3], [3, -8], [-10, -12], [-1, 23]], [[1362, 7917], [10, 0], [2, -17], [-8, 7], [-4, 10]], [[2801, 7938], [-9, -5], [-2, 2], [18, 6], [-7, -3]], [[1380, 7929], [-1, 4], [9, 15], [-3, -13], [-5, -6]], [[2810, 8023], [5, 25], [2, 2], [0, -19], [-7, -8]], [[2793, 8062], [-1, -14], [-10, -17], [9, 17], [2, 14]], [[2784, 8079], [-1, -2], [1, 9], [4, -9], [-4, 2]], [[3127, 8183], [-4, 1], [1, 5], [2, 2], [1, -8]], [[3085, 8234], [-9, -4], [0, 12], [7, 0], [2, -8]], [[2769, 8281], [5, 3], [2, -3], [-3, -3], [-4, 3]], [[2781, 8296], [2, -2], [-3, -6], [-4, -2], [5, 10]], [[3205, 8346], [8, -21], [-9, 6], [-2, 8], [3, 7]], [[3112, 8347], [6, -9], [-3, -13], [-13, 1], [10, 21]], [[2830, 8365], [-4, -5], [-9, -5], [2, 5], [11, 5]], [[3203, 8420], [-2, -20], [-17, 19], [12, 7], [7, -6]], [[3175, 8436], [3, -6], [-7, 3], [4, 6], [0, -3]], [[2424, 8444], [-6, -8], [-4, 6], [5, 0], [5, 2]], [[3195, 8442], [7, -11], [-9, 2], [-4, 6], [6, 3]], [[2797, 8475], [2, -28], [-12, -28], [-12, 39], [22, 17]], [[2437, 8475], [1, 3], [6, -2], [-3, -3], [-4, 2]], [[3205, 8486], [9, 0], [-6, -13], [-9, 5], [6, 8]], [[2841, 8487], [-7, 3], [13, 0], [-4, -4], [-2, 1]], [[3200, 8487], [-6, -1], [2, 4], [4, 0], [0, -3]], [[2935, 8500], [11, -3], [2, -5], [-11, 1], [-2, 7]], [[3036, 8507], [17, -17], [-15, -3], [-14, 23], [12, -3]], [[2722, 8517], [4, -19], [-32, -37], [-22, 22], [17, 32], [33, 2]], [[3147, 8515], [0, -1], [-8, 12], [5, -2], [3, -9]], [[2825, 8555], [20, -5], [3, -18], [-10, -6], [-13, 29]], [[3220, 8563], [-3, -10], [1, -10], [-7, 21], [9, -1]], [[2859, 8567], [17, -14], [-12, -4], [-12, 14], [7, 4]], [[3218, 8573], [-2, 2], [0, 4], [4, -1], [-2, -5]], [[2849, 8593], [-6, -6], [-6, 1], [1, 3], [11, 2]], [[3199, 8606], [-2, -1], [-1, 9], [4, -5], [-1, -3]], [[2960, 8626], [-1, -12], [-2, 0], [-1, 15], [4, -3]], [[3189, 8642], [2, -6], [-13, -9], [6, 12], [5, 3]], [[3268, 8716], [6, 0], [2, -7], [-9, 1], [1, 6]], [[2689, 8724], [-6, -3], [-1, 4], [5, 0], [2, -1]], [[2639, 8738], [10, -13], [2, -22], [-13, 15], [1, 20]], [[2660, 8743], [17, -12], [9, -23], [-20, 10], [-6, 25]], [[2694, 8757], [6, -3], [-3, -6], [-8, 6], [5, 3]], [[3269, 8819], [1, -1], [-12, -10], [4, 11], [7, 0]], [[2020, 8812], [-4, 0], [-2, 6], [0, 2], [6, -8]], [[2006, 8835], [-2, -6], [-4, 7], [6, 4], [0, -5]], [[1992, 8846], [3, 0], [-2, -7], [-4, 6], [3, 1]], [[3231, 8843], [-7, 2], [2, 8], [5, -7], [0, -3]], [[2005, 8846], [-5, 0], [0, 8], [3, -1], [2, -7]], [[1857, 8871], [-5, 2], [14, 1], [0, -3], [-9, 0]], [[2001, 8870], [-4, 0], [1, 4], [2, 2], [1, -6]], [[1971, 8877], [8, -3], [-2, -5], [-6, 4], [0, 4]], [[1966, 8881], [1, -4], [-5, 4], [0, 4], [4, -4]], [[1952, 8890], [7, 4], [-9, -10], [-9, -3], [11, 9]], [[2940, 8884], [23, -8], [0, -15], [-27, 0], [4, 23]], [[2604, 8873], [-7, -14], [-9, 14], [6, 26], [10, -26]], [[1901, 8894], [-3, 0], [2, 5], [5, 2], [-4, -7]], [[2903, 8901], [12, -6], [2, -49], [-22, -21], [-31, -2], [-9, 34], [17, 40], [31, 4]], [[2808, 8891], [-5, 3], [1, 8], [9, -4], [-5, -7]], [[2722, 8904], [3, -2], [-2, -3], [-5, 5], [4, 0]], [[2942, 8895], [-6, 14], [5, 0], [3, -7], [-2, -7]], [[1927, 8919], [0, -3], [1, -3], [-11, -1], [10, 7]], [[2100, 8906], [-15, 11], [10, 2], [6, -4], [-1, -9]], [[2820, 8923], [-2, -11], [-9, 0], [8, 8], [3, 3]], [[2933, 8919], [-7, -2], [-4, 6], [3, 3], [8, -7]], [[2922, 8917], [3, -15], [-17, 13], [5, 15], [9, -13]], [[2176, 8934], [-2, -15], [-14, 8], [9, 10], [7, -3]], [[2221, 8944], [-7, -14], [-6, 3], [0, 16], [13, -5]], [[2225, 8945], [-6, 4], [2, 11], [3, -4], [1, -11]], [[1224, 8959], [2, -3], [-7, 1], [1, 6], [4, -4]], [[2179, 8956], [1, 10], [3, -2], [-1, -7], [-3, -1]], [[2487, 8975], [4, -9], [-4, -2], [-3, 11], [3, 0]], [[2824, 8978], [0, -12], [-12, -24], [-15, 2], [27, 34]], [[1238, 8990], [5, 6], [-6, -14], [-6, 3], [7, 5]], [[2733, 8981], [6, -3], [0, -4], [-11, 5], [5, 2]], [[2498, 8978], [-5, -11], [-4, 6], [4, 8], [5, -3]], [[2863, 8979], [10, -2], [-14, -20], [-6, 11], [10, 11]], [[2190, 8989], [9, -6], [-7, -6], [-3, 5], [1, 7]], [[2319, 8990], [14, 0], [0, -15], [-12, 8], [-2, 7]], [[2346, 8993], [7, -5], [-8, -15], [-1, 16], [2, 4]], [[1146, 8992], [-6, -4], [-5, 4], [5, 4], [6, -4]], [[2837, 8998], [-15, -13], [-10, 1], [16, 16], [9, -4]], [[2790, 9008], [4, -14], [-35, 3], [15, 10], [16, 1]], [[2711, 9004], [-1, -2], [-8, 3], [5, 4], [4, -5]], [[2452, 9009], [2, 4], [8, -5], [-2, -7], [-8, 8]], [[2299, 9015], [-3, 0], [-1, 2], [4, 0], [0, -2]], [[2586, 9029], [11, 0], [-4, -10], [-17, 9], [10, 1]], [[1901, 9043], [-12, 0], [-5, 5], [12, -4], [5, -1]], [[1768, 9060], [10, 0], [-13, -5], [-6, 5], [9, 0]], [[1756, 9060], [-9, 0], [-2, 2], [2, 2], [9, -4]], [[1446, 9066], [-5, -2], [-3, -4], [3, 8], [5, -2]], [[2206, 9071], [6, -1], [7, -15], [-12, 5], [-1, 11]], [[2971, 9124], [9, 1], [-5, -9], [-7, 2], [3, 6]], [[2983, 9133], [-8, 0], [2, 6], [5, 2], [1, -8]], [[2098, 9259], [-19, -34], [-35, 41], [-1, 21], [39, 3], [16, -31]], [[2103, 9474], [11, 26], [35, -26], [10, -22], [-36, -8], [-20, 30]], [[2494, 9568], [19, -21], [-13, -9], [-30, 15], [24, 15]], [[2087, 9553], [14, -19], [-21, 0], [-23, 42], [30, -23]], [[2625, 7426], [-3, -1], [-6, 0], [2, 5], [7, -4]], [[2565, 7504], [4, -6], [-10, 0], [1, 8], [5, -2]], [[2718, 7304], [8, -4], [4, -33], [-39, 25], [27, 12]], [[2689, 7298], [-1, -6], [-5, 2], [2, 6], [4, -2]], [[2668, 7323], [8, -6], [-5, -11], [-4, 9], [1, 8]], [[2882, 7171], [-4, -4], [2, 6], [6, 2], [-4, -4]], [[2347, 9578], [66, -2], [-7, -20], [-70, 1], [11, 21]], [[3342, 7302], [-34, -39], [-15, 41], [26, 71], [5, -54], [18, -19]], [[3280, 7390], [1, -57], [-16, -35], [-19, 33], [31, 4], [3, 55]], [[1328, 7801], [-7, 12], [22, 7], [2, -39], [-17, 20]], [[1309, 7887], [38, -1], [-10, -66], [-24, 16], [-4, 51]], [[2794, 8023], [-14, -12], [20, 54], [7, -17], [-13, -25]], [[2374, 9433], [32, -34], [-3, -44], [-41, 3], [-43, 22], [12, 32], [43, 21]], [[1964, 9617], [-49, 6], [-52, -9], [-5, 9], [78, 26], [26, -12], [2, -20]], [[2339, 9630], [30, -9], [-2, -18], [-54, -23], [-26, 17], [-17, 34], [6, 23], [56, -15], [7, -9]], [[3130, 7273], [-8, 4], [-3, 7]], [[2928, 7230], [32, 29], [11, 45], [73, 69], [41, 88], [78, 69], [35, 2], [20, -24], [-2, -34], [-31, -30], [-30, 7], [24, -30], [32, 11], [-18, -46], [29, -82], [45, -31], [16, 19], [25, -39], [-57, -47], [-23, 2], [-48, -91], [-17, 46], [6, 35], [32, 41], [9, 55], [-37, -49], [-37, -4]], [[2957, 7273], [5, 7], [-3, -13], [-1, -6], [-10, 0], [6, 8], [-3, 0], [4, 9], [4, 0], [-2, -5]], [[1553, 7554], [-13, 15], [10, -3], [3, -12]], [[1657, 9439], [-11, 27], [-12, -21], [-31, 1], [-11, 23], [35, 14], [76, 66], [66, 15], [29, -18], [-24, -9], [10, -36], [-32, -13], [-12, -30], [-31, -42], [-23, 7], [49, 37], [-2, 47], [-22, -4], [-16, -45], [-38, -19]], [[3507, 7425], [26, 26], [8, -42], [-9, -51], [-35, 9], [11, 37], [-31, -10], [-23, -32], [2, 59], [-96, -8], [-8, 23], [20, 49], [55, 196], [30, -25], [-30, -66], [35, -8], [-6, -39], [44, 26], [18, -35], [-13, -49], [23, -9], [-21, -51]], [[2624, 8567], [-43, -6], [27, 36], [-6, 36], [14, 85], [12, 11], [19, -51], [6, 19], [63, -52], [22, -39], [37, -28], [-22, -26], [-71, 47], [-2, -24], [-46, -48], [-10, 40]], [[2280, 9013], [33, -28], [28, -44], [18, -1], [-37, -30], [-26, 6], [-60, 36], [34, 23], [10, 38]], [[2115, 9076], [68, -47], [18, -24], [-42, 3], [-13, -31], [22, 8], [6, -33], [-44, -18], [-83, 29], [-3, 22], [-22, -34], [-45, -20], [-120, -21], [-12, 53], [-63, 8], [-41, 49], [13, 11], [77, 13], [74, -4], [-18, 18], [-50, 14], [-57, -12], [-42, 4], [-23, 31], [63, 25], [8, 13], [-65, -13], [3, 21], [-28, -3], [-1, 21], [27, 22], [-13, 14], [34, 35], [78, 34], [17, -17], [6, -38], [20, 29], [49, -22], [-12, -30], [30, 21], [23, -6], [-26, 36], [17, -2], [40, -30], [26, -67], [13, 19], [-14, 17], [-10, 45], [3, 57], [24, -26], [18, 2], [31, -31], [2, -24], [26, -63], [-6, -35], [17, -23]], [[2832, 9284], [52, -41], [-1, -20], [-102, 4], [-22, 30], [-3, 33], [76, -6]], [[2322, 9159], [-46, -20], [-15, -27], [-54, 66], [-33, 10], [-25, 35], [23, 20], [17, -27], [24, 2], [6, 27], [-39, 27], [15, 17], [81, 26], [11, 27], [-6, -38], [21, -6], [2, -34], [-33, -25], [31, -5], [12, 16], [14, -55], [-6, -36]], [[1626, 9348], [40, -21], [58, 2], [33, -15], [43, -43], [-106, -61], [-28, -35], [-14, -47], [-68, -29], [-27, 44], [-51, 20], [29, 77], [30, 52], [-27, 42], [88, 14]], [[2217, 9381], [-12, 30], [26, 15], [-79, -10], [-19, 17], [31, 18], [11, 33], [56, -37], [-38, 46], [6, 12], [91, -19], [7, -73], [-17, -31], [-63, -1]], [[1946, 9444], [21, 15], [-30, 14], [45, 41], [7, -59], [40, -11], [13, 12], [30, -12], [0, -24], [54, -27], [-28, -10], [-30, 22], [-10, -21], [-66, -10], [-11, 10], [-80, -41], [-56, -3], [-20, 18], [45, 20], [28, 0], [24, 20], [-84, -14], [-2, 22], [-26, -29], [-71, 17], [44, 83], [28, 11], [1, 19], [13, -4], [13, -38], [27, 6], [42, -31], [6, -23], [65, -1], [2, 14], [-34, 14]], [[2797, 9371], [-21, -18], [-45, -12], [-48, 8], [-115, -8], [-33, 14], [-30, -9], [-58, 18], [-13, 31], [10, 48], [-28, 35], [-26, -8], [-49, 10], [-27, 42], [29, 7], [57, -12], [18, -21], [45, 5], [58, -36], [-23, -9], [55, -39], [61, 1], [63, 21], [73, -3], [40, -23], [1, -20], [-23, -11], [29, -11]], [[1942, 9559], [-53, -12], [-30, 13], [-11, 22], [-16, -8], [-26, 18], [21, 9], [30, -12], [70, 13], [29, -9], [-14, -34]], [[2122, 9693], [37, -25], [20, 4], [58, -35], [-8, -11], [24, -40], [-62, -3], [5, 27], [-48, 0], [1, 12], [-48, -8], [-15, 17], [41, 0], [-15, 35], [-41, 3], [4, 22], [47, 2]], [[2482, 9779], [40, -2], [8, -25], [16, 18], [20, -2], [21, -36], [-6, -24], [45, 0], [18, -21], [-44, -16], [-69, -63], [-83, 2], [-64, 55], [29, 14], [37, 0], [-19, 20], [-37, -14], [-51, 11], [-26, 53], [51, -7], [-48, 16], [15, 22], [24, 2], [-9, 14], [18, 18], [47, 3], [-34, 12], [31, 8], [41, -16], [29, -42]], [[1553, 7554], [1, -3], [0, -2], [-1, 5]], [[5185, 4011], [-4, 10], [5, 15], [4, -10], [-5, -15]], [[4342, 5103], [7, -14], [0, -14], [-7, 7], [0, 21]], [[3297, 5122], [4, -14], [-3, -14], [-3, 21], [2, 7]], [[5156, 7834], [-9, -7], [0, 4], [12, 5], [-3, -2]], [[3252, 5297], [-3, 0], [0, 2]], [[5094, 7685], [11, 0], [13, 0]], [[5118, 7685], [-11, -11], [-13, 11]], [[5201, 7820], [-5, -73], [-18, -29], [-10, -77]], [[5168, 7641], [-27, 51], [-22, -7]], [[5119, 7685], [-11, 18], [35, 96], [38, 44], [20, -23]], [[2852, 5328], [34, -38], [-28, -17], [-32, 40], [26, 15]], [[218, 3038], [2, -21], [-8, 0], [-8, 21], [14, 0]], [[6564, 5813], [-1, -2], [0, 7], [3, 0], [-2, -5]], [[6558, 5872], [9, 23], [-3, -54]], [[6564, 5841], [-4, 4], [-2, 27]], [[6445, 5365], [83, 73], [18, 141], [-12, 53]], [[6534, 5632], [17, 156], [16, 7]], [[6567, 5795], [21, -73], [45, -30], [29, -94], [-59, -179], [4, -49], [-33, -33], [-8, -47], [-26, -7], [-11, -59], [-53, -26]], [[6476, 5198], [-10, 47], [-21, 120]], [[3303, 4939], [-3, 14], [4, 10], [1, -12], [-2, -12]], [[5722, 6883], [-5, -4], [-3, 2], [7, 8], [1, -6]], [[5779, 7013], [31, -55], [-44, -16], [-10, -26], [-31, 8]], [[5732, 6993], [21, 26], [26, -6]], [[6246, 6846], [-23, -21], [6, -99], [15, -59]], [[6244, 6667], [-56, 15], [-11, -17]], [[6177, 6665], [-3, 15], [-69, -43], [-43, 13], [-44, -6], [-19, -66]], [[5999, 6578], [2, 72], [-19, -25], [-22, 15], [-48, -53], [-22, 36], [-36, 25], [-9, -46], [-19, -9], [-39, 68], [-31, 21], [1, 46], [-27, 19], [23, 43], [-17, 27]], [[5736, 6817], [-3, 4]], [[5733, 6821], [-6, 11], [16, 67], [68, 2], [2, 60], [56, -13], [58, 67], [73, -20], [44, -51], [52, 6], [20, -14], [38, 43]], [[6154, 6979], [36, 6], [17, -35]], [[6207, 6950], [7, -71], [31, -29]], [[6245, 6850], [1, -4]], [[7563, 5514], [-23, 125], [-35, -71], [-31, 23]], [[7571, 5579], [2, -48], [-10, -17]], [[3309, 4989], [-4, 10], [5, 16], [1, -9], [-2, -17]], [[9636, 3968], [-1, 0], [0, 2], [2, 0], [-1, -2]], [[5579, 9029], [-6, -5], [-5, 4], [5, 10], [6, -9]], [[5556, 9023], [-6, 4], [-6, 12], [17, -10], [-5, -6]], [[5631, 9048], [9, -9], [-15, 3], [1, 6], [5, 0]], [[5654, 9066], [4, -11], [-15, -13], [-7, 9], [18, 15]], [[5663, 9072], [8, -6], [-10, -7], [-4, 12], [6, 1]], [[5651, 9081], [-9, -18], [-26, -7], [11, 16], [24, 9]], [[5669, 9093], [1, -6], [-4, 2], [1, 6], [2, -2]], [[5714, 9104], [8, -11], [-11, -5], [-7, 8], [10, 8]], [[5597, 9637], [23, -23], [-34, -4], [-24, 21], [35, 6]], [[5744, 9641], [-8, 5], [5, 7], [5, -7], [-2, -5]], [[5808, 9660], [-26, -6], [-8, 1], [16, 10], [18, -5]], [[5563, 9675], [17, -5], [-12, -3], [-10, 3], [5, 5]], [[5561, 9693], [-12, -2], [-3, 4], [3, 1], [12, -3]], [[5935, 9754], [-22, -6], [-34, -4], [-3, 3], [59, 7]], [[5679, 9767], [-7, -1], [0, 4], [2, 1], [5, -4]], [[5672, 9775], [4, -2], [-2, -1], [-5, 1], [3, 2]], [[5556, 9773], [-3, 1], [2, 3], [5, -2], [-4, -2]], [[5594, 9789], [-6, -4], [-3, 4], [6, 1], [3, -1]], [[5579, 9784], [0, 5], [-8, 5], [12, -4], [-4, -6]], [[5858, 9008], [-25, -33], [-28, -23]], [[5805, 8952], [11, 30], [-40, 45], [-52, -29], [-11, -57], [-21, -24], [-26, 20], [-42, -8], [-21, 39], [-29, -16]], [[5574, 8952], [-18, -48], [-50, 12], [-8, -40], [-16, 9], [-32, -49], [7, -26], [-52, -67], [0, -58], [-25, -52], [9, -42], [-36, -3], [-18, -48], [8, -71], [-4, -41], [20, -25], [-17, -27], [7, -63], [-18, -17], [-12, -64]], [[5319, 8232], [-27, 18], [-55, -71], [-25, -16], [-29, 6], [-36, 73], [12, 67], [-28, 72], [19, 34], [-15, 21], [21, 36], [39, 28], [-2, 14], [52, 30], [-27, 5], [28, 29], [36, -35], [38, 33], [-43, -20], [-11, 19], [47, 75], [23, 19], [4, 28], [39, 105], [56, 58], [-23, 6], [46, 28], [-9, 12], [32, 24], [-13, 23], [15, 35], [27, 1], [20, 20], [-1, 23], [12, -21], [-31, -22], [18, 1], [33, 27], [10, -12], [2, 2], [2, 0], [1, 4], [5, 6], [-3, 3], [5, 3], [1, 0], [17, 20], [2, 0], [0, -1], [2, -2], [1, 3], [34, -7], [44, 42], [37, 5], [-23, -25], [1, -31], [43, 62], [-4, -42], [29, 53], [67, -28], [30, -30], [-25, -15], [-39, 6], [58, -25]], [[5835, 9009], [-4, 6], [-4, -11], [10, 4], [-2, 1]], [[5698, 9487], [0, 4], [14, 11], [-14, -15]], [[5400, 8927], [30, 14], [19, 32], [13, -44], [-26, -30], [-62, -16], [3, 12], [48, 15], [-25, 17]], [[5646, 9542], [-18, 15], [-46, -2], [21, 34], [-21, 12], [58, 12], [17, -28], [23, -3], [-34, -40]], [[5437, 9717], [24, 25], [64, -44], [2, -20], [72, -22], [-70, -27], [-22, -71], [-13, -1], [-26, -65], [-67, 46], [-13, 24], [79, 24], [-85, -8], [-3, 21], [40, 4], [21, 17], [-27, 27], [-3, -24], [-47, -13], [-27, 28], [3, -28], [-30, 17], [-17, 32], [24, 6], [-17, 42], [8, 9], [31, -1], [46, 15], [3, -24], [19, 19], [20, -15], [29, -50], [-18, 57]], [[5661, 9761], [85, -10], [10, -23], [-33, -25], [-54, -23], [-31, 3], [-1, 14], [-57, -3], [-33, 17], [61, 6], [2, 9], [-87, -8], [1, 23], [-29, 7], [10, 11], [34, -14], [29, 24], [14, -16], [26, 4], [15, -19], [10, 36], [7, -24], [21, 11]], [[5698, 9487], [-2, -4], [1, 4], [1, 0]], [[3263, 5238], [-6, 12], [1, 2], [3, -4], [2, -10]], [[6403, 5886], [4, -4], [-1, -30], [-4, 16], [1, 18]], [[145, 2482], [-1, -5], [-10, 12], [7, 5], [4, -12]], [[5574, 8313], [-1, -8], [-8, -3], [3, 7], [6, 4]], [[5562, 8310], [3, 3], [-3, -11], [-5, 5], [5, 3]], [[5567, 8323], [-9, -13], [-13, 13], [14, 7], [8, -7]], [[5600, 8320], [0, -3], [11, 0], [-13, -5], [2, 8]], [[5625, 8304], [0, 14], [11, -6], [-10, -16], [-1, 8]], [[5593, 8346], [1, -7], [-1, -8], [-1, 8], [1, 7]], [[5592, 8541], [3, -7], [-4, -4], [-4, 7], [5, 4]], [[5692, 8668], [-7, -8], [-1, 5], [2, 3], [6, 0]], [[5672, 8722], [-14, 44], [10, 26], [-16, 48], [6, 36], [-84, 76]], [[5805, 8952], [-14, -36], [7, -24], [37, -36], [-26, -61], [22, -52], [-8, -81], [27, -69], [-16, -20], [44, -61], [-9, -28], [-56, -91], [-40, -49]], [[5773, 8344], [-112, -42], [-37, 24], [2, 2], [-5, 0], [-11, 6], [2, -3], [-1, -5], [-4, 7], [0, 3], [-6, 3], [-10, 108], [7, 87], [25, 9], [66, 110], [14, -3], [1, 49], [-32, 23]], [[8729, 3599], [14, 0], [-16, -90], [-2, 61], [-26, 50], [30, -21]], [[7986, 3805], [-27, -22], [-21, 68], [8, 41], [15, -95], [25, 8]], [[8266, 3405], [40, 10], [1, -27], [-57, -36], [-32, 22], [15, 43], [33, -12]], [[8559, 4169], [-3, -70], [23, -76], [-25, 17], [-6, -131], [-18, 76], [16, 7], [-7, 99], [20, 78]], [[8445, 3338], [6, -12], [5, 21]], [[8456, 3347], [5, 3], [8, 14]], [[8469, 3364], [1, -19], [3, -19]], [[8473, 3326], [-17, -46], [-27, -17], [16, 75]], [[8275, 4303], [-7, -12], [1, 12]], [[8269, 4303], [6, 0]], [[8916, 3819], [0, -308], [0, -156]], [[8916, 3355], [-27, 72], [-66, -24], [9, 55], [25, 22], [-29, 150], [-53, 53], [-20, 3], [-43, 70], [-21, -43], [-19, 101], [50, 20], [-36, 7], [-52, 68], [-16, 90], [27, -51], [41, 32], [35, -27], [5, -102], [23, -85], [36, 56], [-2, 65], [46, 12], [56, -63], [31, -17]], [[8346, 3268], [-42, 53], [20, 14], [14, 77], [58, -24], [18, 29], [79, 15], [-47, -39], [-7, 19], [-57, -43], [-51, 5], [24, -84], [-9, -22]], [[8009, 3446], [-50, 29], [-28, 44], [15, 65], [63, -27], [8, -36], [52, -12], [12, 39], [32, -37], [88, 5], [0, -142], [-55, 38], [-16, -12], [-54, 20], [-38, 33], [-29, -7]], [[8559, 3785], [-39, -55], [-21, 36], [-1, 68], [4, -51], [28, -17], [25, 31], [43, 10], [29, -27], [6, -50], [-74, 55]], [[8411, 3599], [-23, 14], [25, 73], [-39, -15], [4, 42], [-33, 60], [-3, -162], [-27, 12], [8, 73], [-23, 121], [15, 48], [19, 192], [24, 47], [21, -22], [63, -17], [33, 68], [-18, -95], [-116, -2], [-8, -44], [19, -85], [28, 65], [47, -12], [-3, -80], [-15, 46], [-33, -58], [26, -88], [15, -89], [-6, -92]], [[8266, 4303], [-6, -61], [20, -73], [-6, -27], [32, -63], [-36, -19], [-8, -92], [-25, -66], [1, -54], [-16, -99], [-38, -41], [-11, 58], [-34, 12], [-33, -24], [-3, 53], [-40, -17], [-10, 136], [-13, -12], [-17, 151], [23, 90]], [[8046, 4155], [25, -88], [67, 51], [42, -10], [28, 115], [10, 97], [48, -17]], [[7729, 4305], [42, -73], [33, -92], [20, 17], [58, -134], [-10, -70], [27, -22], [9, -95], [25, -2], [14, -63], [-7, -170], [-31, -19], [-87, 194], [-21, 75], [-14, 97], [-28, 75], [-26, -19], [24, -126], [-10, 7], [-17, 119], [23, 44], [-16, 97], [-34, 7], [17, -75], [-6, -29], [-15, 107], [-21, 19], [25, -12], [8, 48], [-60, 141], [-4, 70], [31, -41], [30, 3], [21, -78]], [[6604, 2566], [-1, -26], [-8, -2], [3, 33], [6, -5]], [[5511, 8230], [0, 9], [4, 0], [-4, -9]], [[5619, 8693], [0, 9], [4, -3], [0, -6], [-4, 0]], [[5672, 8722], [-63, -20], [-21, -63], [13, -16], [-22, -41], [-49, -50], [-34, -49], [-19, -79], [5, -46], [17, -11], [32, -61], [-18, -42], [-47, -40], [-9, -51], [9, -71], [10, 32], [28, -7], [18, 47], [-1, -48], [-46, 0], [-16, -71], [-50, -7], [-14, -54], [-33, 0], [-17, 110], [-24, 74], [4, 0], [2, 6], [-6, 0], [0, -5], [-8, 27], [6, 46]], [[5329, 8179], [-10, -6], [2, -5], [8, 1], [0, 10]], [[3310, 4781], [-2, -48], [-13, 9], [-5, 32], [20, 7]], [[7787, 4397], [-1, -14], [-3, 0], [0, 14], [4, 0]], [[8269, 4303], [1, 2], [-4, -2]], [[8046, 4155], [37, -37], [9, 61], [2, -3], [0, 13], [1, 9], [44, 34], [27, 102]], [[8166, 4334], [18, -41], [9, 63]], [[8193, 4356], [1, 2], [1, -7]], [[8195, 4351], [9, -36], [-6, 41]], [[8198, 4356], [27, 90], [33, 36], [54, -104], [-31, -22], [12, -39], [-20, -10], [2, -4]], [[7781, 4467], [27, -14], [1, -44], [26, 44]], [[7835, 4453], [39, -104], [0, -134], [23, -111], [-25, 12], [-58, 94], [-16, 73], [-17, 184]], [[2839, 4523], [-18, 97], [-28, 29], [-25, -66], [12, -43], [-50, -17], [2, 70], [-32, -12]], [[2700, 4581], [-4, 22]], [[2696, 4603], [0, 2]], [[2696, 4605], [14, 87]], [[2710, 4692], [13, -46], [28, -10], [40, 58], [33, -14], [30, -53]], [[2854, 4627], [5, -53], [-20, -51]], [[8736, 4530], [-1, 10], [2, 10], [3, 0], [-4, -20]], [[9977, 3396], [0, 4], [0, -4]], [[9750, 4518], [5, -5], [1, -2], [-1, 2], [-5, 5]], [[2966, 183], [33, -32], [-20, -24], [-26, 51], [13, 5]], [[2918, 580], [15, -60], [1, -92], [-32, 23], [20, 26], [-21, 28], [2, 56], [15, 19]], [[2960, 969], [-5, -72], [-29, -20], [15, 46], [4, 78], [15, -32]], [[3096, 235], [0, -154]], [[3096, 81], [-2, 0], [2, -1]], [[3096, 80], [0, -6]], [[3096, 74], [-37, 7], [-16, -29], [-21, 66], [23, 49], [4, -53], [38, -8], [-30, 24], [-11, 78], [28, 40], [22, -13]], [[3047, 2692], [12, 7], [13, 52]], [[3072, 2751], [15, -103], [15, -35], [-10, -70], [16, -61], [8, -111], [20, 0]], [[3136, 2371], [-4, -85], [-34, -55], [7, -152], [-14, -16], [-23, -92], [-26, -226], [22, -130], [-17, -127], [0, -66], [-18, -30], [-4, -86], [9, -71], [-15, -17], [-15, -129], [6, -98], [-11, -66], [13, -65], [-11, -60], [21, -39], [-17, -139], [-18, -49], [8, -31], [-37, -86], [12, -87], [24, 8], [-4, -64], [15, -31], [54, -2], [43, -25]], [[3102, 255], [-20, 11], [-44, -38], [-9, -77], [-59, 41], [5, 29], [-32, 9], [-7, 41], [20, -7], [-5, 69], [-34, 34], [23, 24], [-4, 133], [-9, 64], [13, 67], [-32, 9], [27, 88], [12, -43], [22, 52], [-5, 32], [-28, 3], [15, 73], [7, -69], [31, 193], [-13, 41], [-22, -18], [-5, 54], [19, 107], [-11, 127], [12, 39], [16, 115], [11, 32], [23, 196], [-6, 154], [9, 22], [-7, 71], [18, 94], [12, 161], [-3, 162], [15, 120], [-10, 222]], [[3135, 67], [20, -20], [-58, 8], [43, -55], [-21, 2], [-28, 50], [-27, -16], [-4, 26], [69, 9]], [[3129, 71], [4, 0], [2, -4]], [[7841, 4877], [2, -5], [2, -7], [-3, -3], [-1, 15]], [[7781, 4467], [-23, 85], [-30, 68], [15, 127]], [[7743, 4747], [25, 106], [-14, 136], [-25, 76], [16, 97], [-39, 168], [17, 94], [14, -10], [44, 47]], [[7781, 5461], [10, -56], [22, -3], [-4, -145], [26, 54], [15, -28], [22, 45], [17, -10], [23, -68], [-2, -61], [23, -57], [-12, -100]], [[7921, 5032], [-42, 7], [-36, -62], [16, -136]], [[7859, 4841], [-30, 72], [-24, -5], [-1, 62], [-25, -5], [-1, -86], [-20, -113], [-1, -98], [16, 2], [17, -152], [31, -22], [14, -43]], [[3290, 4867], [-2, 0], [0, 10], [3, 5], [-1, -15]], [[5630, 8202], [10, -14], [-22, -17], [-10, 27], [22, 4]], [[5650, 8206], [-4, -7], [-5, 5], [4, 5], [5, -3]], [[5646, 8235], [4, 0], [1, -5], [-7, 0], [2, 5]], [[5632, 8234], [9, -13], [-15, -10], [-13, 16], [19, 7]], [[5771, 8232], [-21, -15], [19, -56]], [[5769, 8161], [-3, -13], [-5, -20]], [[5761, 8128], [-24, -2], [-34, 40], [-27, -15]], [[5676, 8151], [-21, 50], [-1, 47], [69, 30], [56, -12]], [[5779, 8266], [3, -1], [2, -7]], [[5784, 8258], [-2, -1], [-3, 0]], [[5779, 8257], [2, -2]], [[5781, 8255], [1, 0], [-1, 0]], [[5781, 8255], [-3, 0], [-4, -11]], [[5774, 8244], [-3, -12]], [[3287, 5233], [2, -7], [-4, -2], [-2, 7], [4, 2]], [[8321, 5690], [15, 0], [27, 110], [22, 4], [-13, -142], [-16, -85], [-35, 113]], [[3349, 4941], [-3, 5], [1, 14], [4, -11], [-2, -8]], [[5345, 6721], [91, 26], [-13, -36], [-2, -80], [-17, 11], [-59, 79]], [[5263, 6956], [12, -48], [-8, -97], [-32, -15], [2, 95], [-7, 43], [33, 22]], [[5196, 7296], [30, 23], [21, -13], [31, 21], [14, 36]], [[5292, 7363], [48, 16], [6, -29], [36, -12]], [[5382, 7338], [-9, -17], [9, -48]], [[5382, 7273], [-14, 11], [-29, -33], [7, -78], [33, -50], [14, -66], [30, -48], [24, 2], [-3, -34], [57, -59], [14, -37], [-40, 27], [-15, -60], [18, -21], [-30, -103], [4, 60], [-16, 93], [-54, 84], [-18, -3], [-52, 93], [-30, 108], [-37, 29], [-35, -45]], [[5348, 7007], [0, 0]], [[5348, 7151], [0, 6], [-1, -2], [-1, -2], [2, -2]], [[5398, 6585], [7, -7], [0, -8], [-4, 4], [-3, 11]], [[9649, 2981], [21, -48], [10, -137], [-25, 28], [-23, 97], [17, 60]], [[7885, 4108], [4, -4], [-4, -8], [-6, 3], [6, 9]], [[5946, 6516], [2, -6], [-5, 0]], [[5943, 6516], [2, 0]], [[5945, 6516], [1, 0]], [[5940, 6512], [0, -2], [-1, 2]], [[5937, 6510], [-3, -11], [-16, -13]], [[5911, 6489], [-13, 27], [8, 9]], [[5906, 6525], [1, -2], [1, 4]], [[5908, 6527], [1, -2]], [[5909, 6525], [1, 0]], [[5910, 6525], [20, 0], [7, -13]], [[7221, 4699], [22, -24], [30, -125], [-1, -71], [-33, -48], [-14, 15], [-8, 137], [11, 102], [-7, 14]], [[6208, 3150], [-6, 15], [1, 26], [3, -2], [2, -39]], [[9919, 2765], [31, -2], [1, 38], [45, 42], [-46, -87], [13, -19], [-7, -85], [-9, 45], [-22, 12], [-6, 56]], [[9133, 7253], [-31, -23], [-21, -42], [-43, -43], [20, 49], [69, 71], [6, -12]], [[6393, 8946], [-42, -16], [-9, 40], [27, 16], [26, -18], [-2, -22]], [[6649, 9047], [32, -31], [-25, -15], [-29, 26], [22, 20]], [[6976, 9262], [15, -9], [-49, -15], [2, 26], [32, -2]], [[8149, 9334], [-16, -20], [-37, 18], [15, 15], [38, -13]], [[6588, 9752], [-40, -6], [8, 17], [69, 9], [10, -42], [-47, 22]], [[6518, 9773], [-6, -19], [-49, -3], [7, 17], [42, -10], [6, 15]], [[6560, 9816], [70, -3], [-48, -28], [-30, -2], [-51, 13], [59, 20]], [[6798, 9824], [21, -19], [-65, -17], [-16, 11], [41, 10], [19, 15]], [[6609, 9861], [14, -17], [-20, -25], [-51, 4], [57, 38]], [[6112, 7113], [-28, 56], [-67, 74], [26, 12], [9, 80], [40, 38], [-30, 8]], [[6062, 7381], [17, 53], [26, -2], [-1, 66], [12, 36], [-26, 43], [-49, 40], [-50, -5], [-16, 62], [-25, 4], [7, 34], [-17, 44], [-56, -18]], [[5884, 7738], [-15, 66], [41, 30], [-27, 25], [-24, 129], [-76, 40]], [[5783, 8028], [-14, 51], [-8, 49]], [[5769, 8161], [5, 33], [-3, 38]], [[5774, 8244], [3, 8], [4, 3]], [[5781, 8255], [3, 3]], [[5779, 8266], [2, 23], [49, 28], [-57, 27]], [[5858, 9008], [33, 11], [30, -18], [-31, -11], [110, -28], [141, -108], [8, -34], [-25, -57], [-30, -19], [-39, -3], [-123, 45], [-35, 29], [76, -100], [-14, -27], [13, -35], [21, 22], [36, 0], [71, -45], [24, 18], [-17, 58], [42, 32], [35, 51], [44, -64], [8, 58], [-18, 36], [12, 78], [-25, 25], [72, -13], [22, -42], [-38, -8], [-12, -30], [25, -30], [52, 7], [9, 47], [21, 6], [67, 54], [62, 31], [15, -42], [20, -11], [36, 35], [37, -7], [43, 30], [22, -47], [34, 57], [-21, 31], [17, 21], [94, -22], [43, -33], [43, -19], [29, -35], [23, 43], [-18, 3], [-12, 37], [-34, 7], [15, 80], [-25, -2], [13, 44], [43, 38], [15, 62], [16, 14], [56, 2], [35, -15], [1, -31], [-29, -53], [23, -30], [-6, -59], [4, -97], [29, -30], [-13, -56], [-16, -9], [-28, -68], [-34, -23], [48, -8], [39, 42], [34, 63], [-7, 71], [53, 22], [27, -34], [-6, -54], [27, 34], [-12, 46], [-60, 27], [-49, -4], [-6, 38], [21, 57], [-35, 65], [14, 28], [39, 20], [-6, 57], [25, 47], [31, -5], [-34, -53], [6, -36], [-14, -60], [71, -19], [14, 9], [-55, 21], [-9, 24], [26, 11], [18, -16], [8, 34], [36, 57], [7, -51], [65, -49], [42, 1], [-27, -31], [16, -21], [9, -49], [16, 12], [-18, 55], [14, 28], [-40, 46], [-41, 20], [-10, 46], [5, 28], [182, 21], [-8, 22], [-40, 41], [45, -10], [-7, 24], [30, 6], [59, 39], [100, 19], [-16, 16], [45, 0], [34, 17], [-13, 26], [24, 23], [7, -46], [-16, -14], [17, -19], [38, 8], [28, 37], [56, 3], [9, 39], [57, 41], [42, 3], [31, -10], [-19, -26], [63, -22], [-29, -28], [39, 2], [3, 15], [89, 0], [38, -10], [3, -28], [21, -1], [9, -43], [-32, 17], [29, -40], [-101, -68], [-52, -50], [-26, -2], [-22, -30], [38, -2], [88, 37], [-35, 2], [11, 22], [65, -22], [21, 12], [9, -26], [55, 14], [84, -9], [-3, -21], [52, -22], [76, -6], [16, 23], [-7, 25], [36, 25], [4, -15], [47, -21], [17, 10], [67, -38], [-14, -68], [-30, 25], [53, -91], [31, -28], [19, 8], [27, 72], [31, -32], [23, -4], [41, 18], [29, -7], [49, 8], [35, -13], [-23, 51], [9, 23], [57, 20], [106, -15], [42, -18], [-28, -8], [7, -27], [29, 36], [67, -13], [12, -16], [-29, -16], [70, -26], [19, -33], [40, -1], [64, 17], [71, -9], [33, -21], [11, -31], [-11, -26], [38, -32], [83, 24], [22, -15], [58, -5], [37, 38], [32, -11], [-6, -22], [-31, 10], [8, -34], [35, -32], [37, 19], [-10, 76], [137, -18], [50, -17], [-9900, -63], [4, -15], [94, -62], [25, -81], [11, 30], [64, 0], [56, -59], [-24, -36], [-45, -8], [-13, -61], [12, -19], [-32, -9], [-38, 37], [-31, 15], [-1, 28], [-30, 15], [-43, -7], [-32, 49], [11, -40], [-10, -36], [9946, -34], [-50, 15], [44, -47], [8, 11], [37, -119], [-14, -29], [-29, 17], [-38, -3], [-89, -68], [-42, -49], [-39, -30], [-5, -34], [-31, 44], [-65, -20], [-23, -34], [8, 47], [-44, -50], [-33, 18], [-13, -39], [17, -42], [24, -4], [-31, -29], [-13, 37], [-29, -62], [37, -29], [-15, -67], [16, -41], [-34, -5], [-10, -36], [10, -54], [-58, -49], [-12, -67], [-27, -25], [-24, -97], [-56, -97], [-15, 2], [43, 55], [-18, 139], [-16, 169], [14, 106], [39, 74], [43, 45], [24, 51], [56, 76], [2, 16], [58, 67], [2, 66], [30, 9], [-17, 21], [-37, -11], [-8, -53], [-78, -87], [-10, 25], [15, 73], [-80, -11], [-70, -102], [-24, -61], [31, -25], [-51, 5], [-55, -28], [-17, 44], [-33, 22], [-22, -38], [-136, 13], [-36, -15], [-47, -60], [-11, -39], [-51, -62], [-30, -61], [-65, -88], [36, -21], [5, 26], [39, 4], [-22, -68], [17, -34], [22, 51], [30, -2], [45, -81], [-27, -188], [3, -69], [-11, -78], [-25, -50], [-33, -111], [-61, -130], [-21, -66], [-54, -58], [-38, 46], [-31, -74]], [[8630, 7035], [-2, 8], [-2, 8]], [[8666, 7245], [10, -51], [13, 40]], [[8241, 7575], [-36, 5], [-30, 28], [-35, -50], [-64, -32], [-61, 13], [-17, 43], [-72, 39], [-47, -24], [-38, 35], [-2, 49], [-92, 59], [-31, -80], [14, -35], [-26, -56], [-77, 21], [-9, 38], [-52, 22], [-127, -122]], [[7425, 7523], [-19, 35], [-38, 0], [-50, 100], [-55, -19], [-22, 42], [-20, -36], [-58, 177], [-37, 49], [4, 34], [-68, -60], [-20, 25], [-65, 12], [-9, 86], [-71, -9], [-3, -16], [-82, -43], [-117, -34], [5, -44], [24, -11], [-38, -32], [10, -25], [-25, -31], [37, -34], [-3, -46], [-39, 4], [-5, -20], [-33, 34], [-58, 2], [-23, -38], [-33, 24], [-32, 47], [-76, 9], [-54, -77], [-6, -55], [-24, 46], [-18, -44], [4, -45], [-16, -56], [17, -44], [27, -2], [32, -103]], [[6368, 7325], [-45, -45], [-24, -76], [24, -63], [-4, -54], [32, -84]], [[6351, 7003], [-24, -47], [-36, 51]], [[6291, 7007], [-45, 60], [-25, -14], [-30, 44], [-79, 16]], [[43, 9128], [21, -18], [-13, -14], [9948, -4], [-34, -13], [3, 30], [-9968, 26], [43, -7]], [[8905, 9304], [40, -2], [38, -26], [-7, -27], [-74, 22], [3, 33]], [[7558, 9725], [-27, 17], [72, -9], [-30, -18], [-15, 10]], [[6304, 9792], [38, 6], [-61, -28], [-28, 14], [51, 8]], [[6677, 9806], [37, 12], [16, -23], [-33, -27], [-39, 1], [-13, 16], [32, 21]], [[5550, 7905], [18, 19], [-22, -17]], [[5546, 7907], [8, 31], [28, 28]], [[5582, 7966], [2, 0]], [[5584, 7966], [-12, -25], [20, 23]], [[5592, 7964], [43, -26], [-1, -38]], [[5634, 7900], [-2, 0], [-82, 5]], [[7638, 9745], [-20, -3], [-16, -4], [-60, 21], [35, 16], [7, 35], [76, 21], [61, -42], [-21, -5], [0, -29], [-52, -9], [63, 5], [21, -21], [24, 12], [20, -26], [-15, -62], [-46, -1], [-26, 13], [-49, 3], [-36, 37], [34, 39]], [[8978, 7543], [-19, -98], [23, -107], [-25, 8], [-10, -52], [-8, 50], [10, 98], [-6, 64], [8, 165], [-16, 41], [2, 117], [29, 23], [-7, 44], [20, -83], [5, -117], [23, -162], [-29, 9]], [[6569, 9253], [-30, -67], [20, -74], [42, -38], [-13, -18], [-48, 19], [-7, -15], [-51, 23], [7, 24], [-19, 13], [4, -25], [-42, 39], [-2, 26], [26, 10], [20, 73], [50, 24], [43, -14]], [[9087, 9404], [34, 6], [20, -11], [49, -10], [-8, -17], [-67, -7], [-58, 31], [8, 25], [22, -17]], [[8926, 9464], [33, -22], [39, -3], [39, -22], [-38, -35], [-41, 24], [4, -19], [29, -12], [-37, -7], [-15, 12], [-79, -25], [-30, 14], [-28, 37], [-24, 6], [-16, -6], [6, 36], [36, -18], [13, 23], [41, 20], [58, -43], [10, 40]], [[6878, 9524], [34, -10], [4, -22], [-50, -33], [-161, -55], [-62, -64], [-26, 9], [2, -28], [-42, -67], [-48, 14], [-21, -9], [-17, 31], [32, 17], [20, 48], [42, 53], [32, 13], [15, 23], [66, 13], [0, 14], [35, -6], [46, 9], [99, 50]], [[7802, 9652], [5, 25], [35, 21], [23, -9], [-7, -19], [26, 8], [34, -23], [29, -41], [-25, 15], [-41, -16], [-70, -4], [-32, -17], [-21, 5], [44, 55]], [[6296, 9761], [84, 23], [-18, 10], [38, 17], [37, -24], [-55, -13], [14, -36], [-19, 12], [-81, 11]], [[6652, 7239], [-20, 24]], [[6632, 7263], [5, 12], [-9, -6]], [[6628, 7269], [-73, -39], [0, -263]], [[6555, 6967], [-13, -6], [-36, 76], [-19, -16]], [[6487, 7021], [-11, -10]], [[6476, 7011], [-19, -14]], [[6457, 6997], [8, 70], [-22, 6], [-45, 131], [30, 49], [32, 6], [15, 43], [0, 63], [-27, -5], [-24, 21], [-56, -56]], [[7228, 7027], [-50, 50], [-89, -2], [-28, 30], [-19, -60], [-46, 28], [-25, -42]], [[6971, 7031], [-53, -62], [-12, -55], [-18, 42], [-35, 0], [-5, 57], [-14, 2], [-5, 62], [-25, 60], [-80, -16], [-28, 64], [-27, 33]], [[6669, 7218], [-9, 60], [18, 18], [-5, 4], [-29, -22], [8, -39]], [[6677, 7302], [2, 0], [0, -4], [22, 19], [-24, -15]], [[6395, 7220], [-6, 6], [2, 8], [8, 2], [-4, -16]], [[6251, 6946], [-1, -2], [-1, 4], [2, 0], [0, -2]], [[6257, 6940], [-1, 0], [0, 2], [1, -2]], [[6264, 6914], [0, 4], [2, 0], [-1, -4], [-1, 0]], [[6245, 6850], [28, -12], [9, -48]], [[6282, 6790], [-19, 11], [-17, 45]], [[6351, 7003], [28, -87], [-21, -157]], [[6358, 6759], [-23, 27], [-2, 64], [-40, -60]], [[6293, 6790], [-25, 83], [10, 14], [-28, 76]], [[6250, 6963], [43, -17], [-2, 61]], [[6962, 6938], [-2, 6], [1, -2], [1, -4]], [[6962, 6860], [2, -2], [-3, -4], [-2, 8], [3, -2]], [[7080, 6673], [-44, 17], [-47, -55], [0, 84], [-28, 34], [-13, -59], [-24, -31], [-41, 6]], [[6883, 6669], [16, 75], [-7, 54], [-20, 17], [30, 23], [27, 90], [29, 16], [14, -57]], [[6972, 6887], [-28, 0], [-18, -51], [60, 8], [21, -31], [39, 19]], [[5784, 1949], [13, 11], [22, -56], [-38, -95], [-29, 75], [32, 65]], [[6993, 6865], [-1, 0], [-1, 2], [3, 4], [-1, -6]], [[6977, 6875], [1, -13], [-4, 0], [-2, 15], [5, -2]], [[6652, 7239], [-7, -29], [20, -37], [4, 45]], [[6971, 7031], [-22, -46], [35, -33], [9, 23], [39, -47], [-41, -47], [-19, 6]], [[6883, 6669], [-14, 0], [-21, 13]], [[6848, 6682], [1, 48], [-26, 14], [-88, 127], [-13, 71], [-52, 29], [-6, 64], [-36, 36], [-26, -46]], [[6602, 7025], [-6, 14], [-10, -30]], [[6586, 7009], [-2, -48], [-29, 6]], [[6628, 7269], [-8, -81], [12, 75]], [[4921, 6533], [1, -10], [18, -4]], [[4940, 6519], [12, -24], [3, -108], [18, -52], [-6, -30], [-36, 2], [-31, -35], [1, -66], [-59, -80], [-53, -15], [-29, -52], [0, -71]], [[4760, 5988], [-3, -41], [-26, -18], [-46, 2], [-17, -61], [-12, -86], [-44, -101], [-5, -78], [-17, -63], [-61, -2]], [[4529, 5540], [38, 187], [21, 48], [11, 102], [25, 41], [18, 88], [41, 29], [25, 47], [27, 102], [-7, 70], [16, 85], [21, 50], [48, 54], [24, 127], [15, 8]], [[4853, 6574], [27, -51], [39, 13]], [[4920, 6536], [0, -5]], [[2813, 4108], [3, 54], [25, 39], [20, 80], [-6, 46], [0, 150], [-16, 46]], [[2854, 4627], [11, -10], [37, 65], [3, 80], [39, 57], [23, -5], [49, 82], [5, -41]], [[3021, 4855], [-18, -14], [-26, -89], [-3, -82], [18, -65], [8, -92], [55, -7], [18, -63], [55, 7], [-11, -121], [16, -77], [-15, -39], [18, -37], [9, -82]], [[3059, 3703], [-21, 31], [19, 78], [-28, 36], [-37, -19], [-22, 17], [-13, 70], [-45, 83]], [[2912, 3999], [-28, 39], [-33, 15], [-38, 55]], [[8445, 3338], [5, 7], [6, 2]], [[8469, 3364], [7, 24], [51, 22], [-15, -46], [-39, -38]], [[5973, 3177], [-1, 4], [-1, 8]], [[5971, 3189], [-4, 4], [-1, 5]], [[5966, 3198], [-1, 3]], [[5965, 3201], [-6, 93], [-5, 17]], [[5954, 3311], [-3, 7]], [[5951, 3318], [-3, 5]], [[5948, 3323], [-1, 0], [0, 3]], [[5947, 3326], [-3, -5], [-1, -12]], [[5943, 3309], [-14, 9], [-13, 15]], [[5916, 3333], [-27, 24], [-22, 34]], [[5867, 3391], [-34, 191], [-8, 104]], [[5825, 3686], [32, 87], [-7, 61]], [[5850, 3834], [8, 58], [-11, 37]], [[5847, 3929], [11, 4], [26, 0]], [[5884, 3933], [0, -2], [1, 2]], [[5885, 3933], [1, 0]], [[5886, 3933], [1, -102], [36, -4], [24, 104]], [[5947, 3931], [99, -143], [4, -44], [40, -73]], [[6090, 3671], [18, -41], [-15, -34], [7, -51], [-6, -164], [30, -125]], [[6124, 3256], [-82, -89], [-69, 10]], [[3096, 80], [2, -6], [-2, 0]], [[3402, 1844], [-16, -123], [0, -39]], [[3386, 1682], [-10, -132], [40, -84], [-8, -29], [20, -75], [-25, -90], [-41, -37], [-50, -21], [-34, 4], [-7, -140], [-41, -20], [-30, 33], [-5, -90], [13, -34], [24, 24], [3, -48], [-22, 18], [0, -34], [-25, -50], [-8, -96], [-17, 2], [-31, -45], [-8, -39], [23, -61], [23, -4], [0, -71], [-44, -69], [-10, -69], [-27, -24], [-8, -48], [21, -98]], [[3136, 2371], [26, 74], [46, -30], [8, -49], [11, 63], [35, -16]], [[3262, 2413], [46, -113], [26, -14], [70, -103], [-29, -133], [78, -9], [27, 56], [6, 77]], [[3096, 235], [6, -48], [31, -53], [41, -44], [34, -17], [-54, -11], [-19, 5]], [[3135, 67], [-6, 4]], [[3129, 71], [-33, 10]], [[6346, 6050], [13, -69], [35, -66], [0, -65], [18, -71]], [[6412, 5779], [5, -13], [7, 4]], [[6424, 5770], [1, -23], [8, -4]], [[6433, 5743], [28, -94], [73, -17]], [[6445, 5365], [-79, -26], [-28, -33], [-20, -77], [-63, 26], [-55, -7], [-10, -69]], [[6190, 5179], [-44, 165], [-8, 58], [-35, 68], [-16, 63], [0, 88], [-18, 87], [-25, 37], [-9, 64], [-56, 206], [-18, 4], [11, 89]], [[5972, 6108], [31, -11], [53, 93], [-28, 71], [61, 46]], [[6089, 6307], [35, -16], [46, -59], [72, -135], [51, -7]], [[6293, 6090], [26, -8], [27, -32]], [[7133, 6559], [7, -38]], [[6894, 5713], [-22, 16], [-28, 100], [-80, -18], [-52, 0]], [[6712, 5811], [6, 73], [35, 29], [-9, 115], [-24, 22], [-29, 94]], [[6691, 6144], [45, -31], [45, -2], [58, 31], [5, 79], [49, 64], [33, 9], [6, 80], [21, 18], [-8, 51], [30, 3], [15, 81], [-13, 60], [39, 57], [55, 15]], [[6476, 5198], [-24, -73], [-74, -65], [-25, -49], [-18, 2], [-37, -45], [-24, -5], [-53, -55], [-13, 17], [-20, 195], [2, 59]], [[6564, 5841], [3, -7], [0, -39]], [[6433, 5743], [71, -7], [54, 136]], [[5947, 3931], [5, 56], [-7, 36]], [[5945, 4023], [28, 100], [-2, 61], [-26, 123]], [[5945, 4307], [40, 59], [14, -29]], [[5999, 4337], [25, -15], [36, -58], [39, -15], [34, 63], [31, -21]], [[6164, 4291], [-25, -83], [0, -265], [16, -58]], [[6155, 3885], [-38, -78], [-27, -136]], [[3070, 3222], [25, -112], [-12, -84], [6, -36], [-14, -97]], [[3075, 2893], [-17, -21], [25, -29]], [[3083, 2843], [2, 2], [2, -2]], [[3087, 2843], [-4, -19], [2, -5]], [[3085, 2819], [-17, -51], [4, -17]], [[3047, 2692], [-31, 76], [-102, 137], [-30, 92], [1, 53], [-39, 146], [-37, 221], [-27, 102], [-32, 51], [-4, 133], [25, 60]], [[2771, 3763], [-4, -50], [40, -66], [19, 116], [46, 59], [31, 73], [9, 104]], [[3005, 5330], [-1, 2]], [[3004, 5332], [-2, 5]], [[3002, 5337], [9, 12], [-1, 68]], [[3010, 5417], [20, 16], [29, -19], [10, -42], [34, -30], [-15, -17], [-49, 0], [-20, -59], [-10, 31]], [[3009, 5297], [2, 21], [-6, 12]], [[3005, 5330], [0, 0]], [[3002, 5337], [1, -7], [2, 0]], [[3009, 5297], [-43, 16], [-16, -16], [-10, 47], [43, -19], [0, 73], [-20, 26], [47, -7]], [[8916, 3819], [84, -85], [14, -2], [35, -75], [0, -44], [46, -34], [12, -53], [-26, -5], [7, -51], [26, -41], [30, -103], [49, -8], [-8, -69], [-76, 29], [-25, 50], [-27, 99], [-65, 36], [-9, -99], [-21, -26], [-46, 17]], [[9165, 3829], [-8, 63], [15, -58], [51, -61], [30, -73], [-7, -41], [-17, 90], [-64, 80]], [[9156, 3553], [-44, 41], [82, 24], [16, 31], [-2, 56], [25, -9], [-8, -76], [-46, -63], [-23, -4]], [[5340, 3594], [1, 19], [-6, 34]], [[5335, 3647], [21, 44], [9, -17]], [[5365, 3674], [-18, -29], [-7, -51]], [[5651, 2742], [-72, -29], [-56, 22], [-9, 25], [-125, -2], [-22, 33], [-39, -21]], [[5328, 2770], [0, 104], [21, 171], [31, 84], [4, 112], [-21, 114], [10, 53], [-31, 159], [25, 20]], [[5367, 3587], [96, -5], [10, -100], [17, -57], [49, 7], [4, 72], [63, -19], [1, -152], [10, -39], [2, -93], [48, 26]], [[5667, 3227], [1, -153], [-57, 0], [0, -226], [40, -106]], [[7987, 5058], [0, -169], [-50, -94], [-35, -43]], [[7902, 4752], [-24, 5], [-19, 84]], [[7921, 5032], [46, 0], [20, 26]], [[7987, 5058], [3, 41], [-31, 123], [-51, 129], [-23, 37], [31, 57], [-26, 62], [-26, -7], [-4, 51], [-24, 58]], [[8000, 5545], [-30, -40], [-25, -67], [-12, -71], [28, -110], [60, -149], [19, -179], [-12, -110], [-49, -69], [-15, 9], [-6, -70], [-48, -53], [1, 102], [-9, 14]], [[5969, 3038], [-4, 96], [8, 43]], [[6124, 3256], [11, -311], [-26, -114], [-77, -106], [-62, -143], [-6, -39], [24, -121], [-12, -177], [-38, -37], [-34, -61], [11, -63]], [[5915, 2084], [-15, -3], [-7, 3]], [[5893, 2084], [-2, 38], [-3, 25]], [[5888, 2147], [1, 109], [-18, 145]], [[5871, 2401], [30, 79], [17, 91], [-7, 42], [8, 79], [-3, 118], [-71, 76]], [[5845, 2886], [-4, 47], [82, 69]], [[5923, 3002], [12, -43], [20, 17], [-3, -109], [25, -45], [18, 35], [2, 100], [-28, 81]], [[2680, 4788], [4, -31], [26, -65]], [[2696, 4605], [-3, 19], [-75, 123], [5, 53]], [[2623, 4800], [37, -7], [20, -5]], [[2700, 4581], [0, 0]], [[5102, 4843], [6, -79], [-30, -111], [-2, -190]], [[5076, 4463], [-22, -8], [-8, -5]], [[5046, 4450], [0, 203], [-19, 140]], [[5027, 4793], [15, 33], [26, 32]], [[5068, 4858], [12, 36], [22, -51]], [[5102, 4843], [14, 127], [39, 31], [39, -64], [25, 23], [50, -35], [13, 31], [37, 7], [29, -22], [31, 46]], [[5379, 4987], [13, -46]], [[5392, 4941], [16, -64], [-67, -274], [-25, -136], [-21, 49], [-48, -92], [-7, -73]], [[5240, 4351], [-66, -39], [-17, 25], [-33, 123], [-48, 3]], [[6282, 6790], [7, 4], [4, -4]], [[6358, 6759], [5, -50], [32, -25], [25, -47], [22, -10], [59, 17], [-3, 36]], [[6498, 6680], [42, 54], [50, 13], [4, -21], [40, -21], [43, -76], [23, -4], [2, -68]], [[6702, 6557], [-19, -183], [7, -113], [24, -9], [3, -37], [-26, -71]], [[6712, 5811], [-47, 9], [-72, 32], [-9, 77], [-18, 25], [-43, -50], [-95, 102], [-36, 162], [-31, 16], [-12, -31]], [[6349, 6153], [-24, 73], [4, 54], [-11, 46], [-32, 39], [-24, 74], [26, 131], [-28, 15], [-16, 82]], [[2564, 4965], [-28, -12], [-36, 36]], [[2500, 4989], [0, 7], [21, 43]], [[2521, 5039], [45, -43], [-2, -31]], [[4683, 4501], [-41, 46], [-10, 106]], [[4632, 4653], [22, 58], [35, 10], [27, -109]], [[4716, 4612], [-9, -50], [-24, -61]], [[4584, 4790], [-24, 20], [-22, 79]], [[4538, 4889], [42, 24], [41, 0]], [[4621, 4913], [0, -70], [-28, -14], [-9, -39]], [[5515, 7043], [-20, 30], [-3, 4]], [[5492, 7077], [5, -4], [16, -20]], [[5513, 7053], [0, -4], [2, -6]], [[5379, 7265], [48, -4], [9, 54], [24, 22]], [[5460, 7337], [23, -39], [43, -2]], [[5526, 7296], [4, -57], [-1, -19]], [[5529, 7220], [-58, 29], [-32, -8], [13, -68], [38, -92]], [[5490, 7081], [-25, 14], [-51, 76], [0, 65], [-24, -20], [-11, 49]], [[2550, 5330], [2, -108], [-19, -78]], [[2533, 5144], [-9, 0], [2, 137]], [[5915, 2084], [-14, -124], [-34, -71], [-22, -93], [-42, -103], [-49, -89], [-62, -46], [-64, 13], [-18, -25], [-63, -31], [-32, 67], [-19, 72], [13, 13], [-2, 67], [-26, 97], [-22, 129]], [[5459, 1960], [17, 38], [8, -49], [48, -18], [24, 38], [0, 264]], [[5556, 2233], [24, -100], [-4, -54], [27, 2], [29, 64], [8, 47], [51, -36], [21, 14], [8, 63], [26, 35], [6, 46], [33, 69], [31, 34]], [[5816, 2417], [27, -11], [28, -5]], [[5888, 2147], [-14, 14], [-17, -46], [9, -58], [27, 27]], [[5636, 4788], [22, -77], [-4, -77], [18, -7]], [[5672, 4627], [33, -94], [29, -51], [1, -41], [28, -73]], [[5763, 4368], [-51, 22], [-86, -85], [-53, 17], [-24, 51], [-33, -58], [3, -61]], [[5519, 4254], [-33, 17], [-24, -17], [-10, -87]], [[5452, 4167], [-3, 41], [-26, 68], [-22, 162], [30, 107]], [[5431, 4545], [36, 2], [51, 34], [14, 70], [36, 10], [57, 132], [11, -5]], [[5636, 4788], [-18, 129], [-4, 74], [13, 27], [15, 111], [26, 3], [0, 270]], [[5668, 5402], [0, 36], [27, 0], [0, 144]], [[5695, 5582], [174, 0], [157, 0]], [[6026, 5582], [10, -84], [8, -152], [30, -51]], [[6074, 5295], [-45, -66], [-16, -140], [3, -62]], [[6016, 5027], [-12, -112], [-12, -2], [-23, -139], [-8, 12], [-14, -104]], [[5947, 4682], [-24, 101], [1, 96], [-32, -14], [9, -67], [-32, -92], [-34, 36], [-33, -69], [-63, 14], [-21, 65], [-20, -10], [-26, -115]], [[5813, 3766], [-4, -124], [11, -116], [30, -109]], [[5850, 3417], [-47, -19]], [[5803, 3398], [-15, -43], [5, -22]], [[5793, 3333], [6, -29], [-10, -118], [19, -67], [21, 17], [0, -91], [-17, -2], [-56, 134], [-14, -31], [-37, 26], [-1, 31], [-28, -12], [-9, 36]], [[5367, 3587], [-20, -15], [-7, 22]], [[5365, 3674], [36, 26], [12, -38], [39, 106], [0, 85], [43, 115], [8, 191], [16, 95]], [[5763, 4368], [26, -56], [40, 20], [29, -75]], [[5858, 4257], [-4, -76], [16, -19]], [[5870, 4162], [-22, -49], [-1, -19]], [[5847, 4094], [-14, -29], [-7, -66]], [[5826, 3999], [-11, -29], [10, 2]], [[5825, 3972], [-3, -31], [1, -34]], [[5823, 3907], [-7, -10], [-3, -12]], [[5813, 3885], [-8, -20], [-2, -36]], [[5803, 3829], [0, -15], [4, -4]], [[5807, 3810], [7, -22], [-1, -22]], [[6293, 6090], [16, 63], [24, 2]], [[6333, 6155], [4, -47], [9, -58]], [[5257, 7421], [0, -2]], [[5257, 7421], [0, 0]], [[5263, 7933], [57, -65], [29, 40], [31, 7], [11, -36], [5, -9]], [[5396, 7870], [-1, -2], [0, -2]], [[5395, 7866], [-3, 7], [5, -21]], [[5397, 7852], [-3, -60], [14, -20], [5, -123]], [[5413, 7649], [-64, -34], [-4, -46], [40, -71]], [[5385, 7498], [-30, -45], [9, -46], [-25, 16], [-32, -23], [-36, 11]], [[5271, 7411], [-18, 19], [4, -9]], [[5257, 7421], [-21, -6], [-24, 0]], [[5177, 7549], [5, 24], [-10, 22]], [[5172, 7595], [6, 15], [-10, 31]], [[5201, 7820], [4, 34], [34, -13], [12, 25], [-9, 72]], [[5172, 7595], [-11, -16], [1, -25]], [[5072, 7665], [17, 18], [5, 2]], [[5118, 7685], [2, -4], [-1, 4]], [[4828, 7882], [7, -83], [-10, -54], [-34, -9], [-31, -36], [-31, -9], [-17, 32], [42, 99], [-30, 7], [4, 69], [34, -5], [9, 64], [29, -7]], [[8630, 7035], [-30, -52], [2, -53], [-61, -78], [-1, -41], [25, -39]], [[8565, 6772], [-33, -23], [-14, -34]], [[8518, 6715], [-30, 15], [-6, -25], [-16, 60], [18, 56], [-30, 58]], [[8565, 6772], [27, -97], [4, -124], [-24, -58], [-16, 15], [-15, -37], [-30, 13], [7, 231]], [[3335, 4620], [26, -41], [53, -138], [-2, -41]], [[3412, 4400], [-22, -95], [44, -160]], [[3315, 4378], [-18, 51], [5, 46], [26, 41], [-7, 48], [14, 56]], [[2552, 5132], [64, 21], [45, -14], [33, -59]], [[2694, 5080], [-46, -12], [-26, -62], [-28, -15], [-16, -54]], [[2578, 4937], [-6, 21], [-8, 7]], [[2521, 5039], [5, 45], [26, 48]], [[7810, 5549], [-12, -16], [-17, -72]], [[7743, 4747], [-5, 204], [-22, 121], [-3, 100], [-13, 52], [-49, -92], [-34, 21], [11, 109], [-17, 133], [-27, 45], [-21, 74]], [[5274, 4077], [42, 0], [0, 85]], [[5316, 4162], [1, 10], [54, -13]], [[5371, 4159], [-2, -65], [34, -22], [-18, -80], [19, -29], [-11, -136], [-46, 43], [-25, -31], [8, -100], [-20, -14]], [[5310, 3725], [-51, 150], [-16, 88], [16, 14], [1, 68], [14, 32]], [[5274, 4077], [-13, 14], [13, 83]], [[5274, 4174], [4, -12], [38, 0]], [[2623, 4800], [-55, 127], [10, 10]], [[2694, 5080], [-21, -258], [7, -34]], [[5783, 8028], [-15, -26], [-28, -9]], [[5740, 7993], [-48, 57], [-12, -14], [-65, 12], [-29, -25]], [[5586, 8023], [0, 56], [19, 52], [24, 12], [30, -56], [19, 19], [-2, 45]], [[5885, 3933], [0, 3], [1, -3]], [[5825, 3972], [6, 22], [-5, 5]], [[5847, 4094], [26, 48], [-3, 20]], [[5858, 4257], [73, 17], [14, 33]], [[5945, 4023], [-39, -7], [-22, -83]], [[5847, 3929], [-15, -30], [-9, 8]], [[5971, 3189], [0, 0]], [[5966, 3198], [0, 3], [-1, 0]], [[5954, 3311], [0, 0]], [[5948, 3323], [-1, 3]], [[5943, 3309], [12, -140], [-1, -121], [15, -10]], [[5923, 3002], [-10, 22], [15, 83], [-4, 120], [12, 22], [-20, 84]], [[6207, 6950], [21, 8], [22, 5]], [[6202, 4829], [29, -75], [41, 32], [19, -15], [27, 36], [42, 5]], [[6360, 4812], [0, -130], [-26, -103]], [[6334, 4579], [-28, 0], [-83, 70], [-37, 117], [7, 27]], [[6193, 4793], [9, 36]], [[6586, 7009], [22, -18], [-6, 34]], [[6848, 6682], [-20, 14], [-28, -33], [-9, -59], [-61, -81], [-28, 34]], [[6498, 6680], [2, 112], [-11, 75], [-23, 8], [5, 65], [22, -24], [28, 34], [-24, 69], [-10, 2]], [[6476, 7011], [2, 10], [9, 0]], [[6476, 7011], [-9, -40], [-10, 26]], [[5793, 3333], [18, 50], [-8, 15]], [[5850, 3417], [13, -41], [4, 15]], [[5845, 2886], [-43, -31], [-2, -33], [-18, -24]], [[5782, 2798], [-15, -19], [-15, -59]], [[5752, 2720], [-10, -9], [-39, 21]], [[5703, 2732], [-29, 21], [-23, -11]], [[5936, 6514], [-6, 13], [-20, -2]], [[5910, 6525], [52, 38], [-17, -47]], [[5945, 6516], [-2, 3]], [[5906, 6525], [2, 2]], [[5908, 6527], [-1, -2], [-1, 0]], [[4760, 5961], [88, -134], [20, -32]], [[4868, 5795], [-50, 0], [30, -680], [-144, -5], [-28, 10], [-15, -57]], [[4661, 5063], [-57, 135], [-56, -14], [-6, -45]], [[4542, 5139], [14, 153], [-13, 103], [9, 59], [-24, 39]], [[4528, 5493], [3, 40], [109, 0], [0, 122], [28, 30], [0, 183], [92, 0], [0, 93]], [[4760, 5961], [0, 27]], [[4940, 6519], [91, 99], [52, 24], [51, 6], [13, -17], [59, 32], [34, -11]], [[5240, 6652], [-6, -36], [-4, -130], [-21, -53], [24, -98], [19, -33], [13, -132]], [[5265, 6170], [10, -77], [0, -189], [-12, -27], [17, -91], [41, -41], [13, -55]], [[5334, 5690], [-125, -190], [-47, -102], [-44, -21]], [[5118, 5377], [-30, 0], [2, 47], [-36, 30], [-21, 63], [-165, 278]], [[5592, 7964], [-3, 31], [-3, 28]], [[5740, 7993], [4, -25], [-24, -27], [-11, -45], [-31, -30], [-24, 4]], [[5654, 7870], [-1, 16], [-19, 14]], [[5582, 7966], [5, 15], [-3, -15]], [[6162, 4814], [-3, -7], [3, -7]], [[6162, 4800], [4, -12], [27, 5]], [[6334, 4579], [-85, -221], [-27, 3], [-58, -70]], [[5999, 4337], [-33, 145], [-28, 72], [-19, 10], [5, 48], [20, -2], [3, 72]], [[6016, 5027], [37, 45], [82, -57], [43, -117]], [[6178, 4898], [-17, -67], [1, -17]], [[6074, 5295], [30, -206], [41, -36], [54, -138]], [[6199, 4915], [-12, -24], [-9, 7]], [[5034, 4443], [-90, -99], [-29, 27]], [[4915, 4371], [4, 0], [4, 4]], [[4923, 4375], [-11, 121], [20, 97], [-5, 92]], [[4927, 4685], [-2, 108], [72, 9]], [[4997, 4802], [15, -64], [4, -242], [18, -53]], [[5379, 7265], [0, 4], [3, 4]], [[5382, 7338], [23, -9], [44, 34]], [[5449, 7363], [4, 0], [7, -26]], [[2533, 5144], [8, -10], [11, -2]], [[2500, 4989], [-34, 17], [-26, 43]], [[5492, 7077], [-3, 4], [1, 0]], [[5529, 7220], [10, 2], [-4, -99]], [[5535, 7123], [-21, -38], [-1, -32]], [[5985, 6232], [3, 7], [-3, 4]], [[5985, 6243], [-1, 2], [1, 5]], [[5985, 6250], [3, 0], [0, 30]], [[5988, 6280], [0, 64], [6, 6]], [[5994, 6350], [29, -30], [55, 76]], [[6078, 6396], [8, -63], [3, -26]], [[5972, 6108], [2, 14], [-2, 2]], [[5972, 6124], [5, 62], [8, 46]], [[5994, 6350], [4, 15], [-2, 33]], [[5996, 6398], [21, 58], [-17, 33]], [[6000, 6489], [-1, 53], [0, 36]], [[6177, 6665], [-27, -44], [-4, -124], [-14, -32], [-54, -69]], [[5208, 7139], [-1, -2], [-1, 0]], [[5583, 6934], [-1, 2]], [[5583, 6934], [0, 0]], [[5539, 7021], [0, 10], [1, 6]], [[5540, 7037], [9, 24], [9, -8]], [[5558, 7053], [12, -24], [2, -24]], [[5572, 7005], [-3, -22], [5, -35]], [[5574, 6948], [1, -12], [2, 0]], [[5577, 6936], [3, 0], [2, 0]], [[5582, 6936], [0, -2], [1, -2]], [[5583, 6932], [-1, -6], [1, 2]], [[5585, 6920], [-1, 0], [1, 0]], [[5557, 6848], [-19, 70], [1, 85]], [[5539, 7003], [0, 8], [0, 10]], [[5539, 7035], [0, -2]], [[5539, 7035], [0, 0]], [[3525, 1667], [-13, -33], [3, -32]], [[3520, 1589], [-12, -48], [-32, -38], [-34, 0], [-47, 34], [-15, 37], [6, 108]], [[5910, 6525], [0, 0]], [[8264, 7428], [10, 6], [-4, 8]], [[5803, 3829], [13, 32], [-3, 24]], [[5850, 3834], [-19, -20], [-24, -4]], [[6360, 4812], [65, 41], [-12, -171], [-80, -358], [-54, -143], [-71, -131], [-53, -165]], [[3083, 2843], [0, 12], [4, -12]], [[3085, 2819], [13, 17], [-23, 57]], [[3387, 2561], [-26, 63], [-74, -25], [-14, -66], [-11, -120]], [[5274, 4174], [-5, 109], [-29, 68]], [[5392, 4941], [7, 0]], [[5399, 4941], [-2, -12], [7, 5]], [[5404, 4934], [18, -103], [-2, -53], [17, -57], [-42, 0], [-6, -24], [34, -85], [8, -67]], [[5452, 4167], [-1, -37], [-45, 34], [-35, -5]], [[5401, 4941], [-1, 0]], [[5401, 4941], [0, 0]], [[5335, 3647], [-6, 32], [-19, 46]], [[4528, 5493], [-2, 7], [3, 40]], [[5526, 7296], [18, 17], [20, -4]], [[5564, 7309], [34, -70], [-2, -25], [35, -39]], [[5631, 7175], [-9, -32], [17, -50], [-17, -56]], [[5622, 7037], [-11, 0], [-11, -6]], [[5600, 7031], [6, 30], [-28, 44], [-11, -32]], [[5567, 7073], [-21, 26], [-11, 24]], [[5567, 7073], [-10, -8], [1, -12]], [[5540, 7037], [-1, -2]], [[5539, 7033], [-6, 0], [6, -12]], [[5539, 7003], [-16, 30], [-8, 10]], [[5046, 4450], [-5, -2], [-7, -5]], [[4997, 4802], [18, -9], [12, 0]], [[5616, 7474], [5, 19], [6, 28]], [[5627, 7521], [3, 33], [40, 73], [-13, 69]], [[5657, 7696], [22, 25], [38, 4], [41, -23], [57, -17], [34, 15], [11, 36], [24, 2]], [[6062, 7381], [-64, -33], [-30, -35], [21, -75], [-44, -53], [-31, 90], [25, 21], [-56, 21], [16, 18], [-32, 11], [-38, -73], [-4, -28]], [[5825, 7245], [-24, 2], [-16, 16]], [[5785, 7263], [20, 70], [32, -6], [-27, 84], [4, 23], [-42, 42], [-31, -14]], [[5741, 7462], [-38, -24], [-66, 2]], [[5637, 7440], [-8, 11], [-13, 23]], [[5838, 7327], [8, -19], [2, 3], [-8, 18], [-2, -2]], [[5945, 7308], [28, -31], [-5, 27], [-18, 17], [-5, -13]], [[5616, 7474], [-46, 7], [-16, -28], [-58, -27], [-18, 19]], [[5478, 7445], [-9, 25], [3, 17]], [[5472, 7487], [32, 36], [20, 29]], [[5524, 7552], [84, -9], [19, -22]], [[5795, 7139], [-24, -94], [8, -32]], [[5638, 6967], [2, 28], [-18, 42]], [[5631, 7175], [18, -26], [57, -16], [46, 38], [43, -32]], [[6412, 5779], [-2, 53], [24, 27], [-10, -89]], [[5266, 7392], [2, -11], [-1, -4]], [[5267, 7377], [-3, 0], [2, 15]], [[5266, 7392], [3, 10], [-2, 7]], [[5267, 7409], [3, -2], [1, 4]], [[5385, 7498], [24, -11], [8, 26], [55, -26]], [[5478, 7445], [-16, -19], [-13, -63]], [[5292, 7363], [-10, -1], [-15, 15]], [[5637, 7440], [-25, -33], [-24, -86], [-24, -12]], [[5741, 7462], [10, -5], [34, -111], [0, -83]], [[5825, 7245], [-28, -64], [-2, -42]], [[5068, 4858], [-6, 50], [-33, 31], [-22, 136]], [[5007, 5075], [31, 26], [61, 5], [19, 75], [0, 196]], [[5334, 5690], [42, -23], [20, -42], [22, 28]], [[5418, 5653], [5, -108], [22, -82], [-7, -32], [-7, -214], [-56, -180], [4, -50]], [[4923, 4375], [-84, -9], [-47, -49]], [[4792, 4317], [2, 104], [-32, 49], [4, 77]], [[4766, 4547], [18, 133], [-4, 53]], [[4780, 4733], [48, 7], [20, 12]], [[4848, 4752], [24, -53], [41, 17], [14, -31]], [[4915, 4371], [-4, 2], [4, -2]], [[4915, 4371], [0, 0]], [[4792, 4317], [-48, 58], [-61, 126]], [[4716, 4612], [22, -9], [10, -82], [18, 26]], [[8195, 4351], [3, 3], [0, 2]], [[8166, 4334], [15, 7], [12, 15]], [[6349, 6153], [-12, 4], [-4, -2]], [[6154, 6979], [0, 80], [-42, 54]], [[4537, 4941], [-2, 19], [7, 20]], [[4542, 4980], [46, 14], [-26, -45], [-25, -8]], [[5257, 7419], [8, -12], [2, 2]], [[5190, 7331], [-5, 7], [-7, -9]], [[5178, 7329], [-3, -8]], [[5404, 4934], [7, 7], [-10, 0]], [[5400, 4941], [-2, 5], [1, -5]], [[5418, 5653], [27, 32], [223, -283]], [[5600, 7031], [-13, -2], [-15, -24]], [[5976, 6376], [13, 59], [11, 54]], [[5996, 6398], [-9, -22], [-11, 0]], [[6162, 4800], [2, 7], [-2, 7]], [[6199, 4915], [6, -50], [-3, -36]], [[5825, 3686], [-8, 41], [-4, 39]], [[3412, 4400], [9, 36], [81, -12], [-5, -37]], [[5951, 6248], [18, 70], [7, 58]], [[5988, 6280], [-4, -17], [1, -13]], [[5985, 6243], [-2, -4], [2, -7]], [[5972, 6124], [-1, -7], [-1, 0]], [[5970, 6117], [-2, 18], [-17, 113]], [[4780, 4733], [-11, 86], [-23, 79], [-42, -40], [-19, 36]], [[4685, 4894], [-19, 93], [-5, 76]], [[5007, 5075], [-25, 12], [-39, -67], [-20, -9], [-20, -62], [-15, 16], [-13, -88], [-17, -17], [-10, -108]], [[4538, 4889], [-3, 36], [2, 16]], [[4542, 4980], [-17, 95], [17, 64]], [[4685, 4894], [-27, -8], [-37, 27]], [[4632, 4653], [-15, 58], [-33, 79]], [[5752, 2720], [30, 78]], [[5816, 2417], [-36, 44], [-9, 75], [-44, 72], [-24, 124]], [[5546, 7907], [-7, -13], [11, 11]], [[5654, 7870], [10, -91], [-20, -27], [13, -56]], [[5524, 7552], [-7, 28], [-60, 50], [-44, 19]], [[5397, 7852], [11, 11], [-13, 3]], [[5396, 7870], [54, 24], [12, 20], [48, 21], [8, -30], [28, 2]], [[5583, 6932], [0, 0]], [[5588, 6932], [-5, 12], [0, -10]], [[5577, 6936], [3, 14], [-6, -2]], [[3495, 2281], [-3, -27], [-7, -71]], [[5703, 2732], [-47, -49], [-8, 33], [-65, -21], [1, -262], [-28, -4], [0, -196]], [[5459, 1960], [-33, 88], [-19, 199], [-6, 163], [-27, 102], [-24, 126], [-14, 43], [-8, 89]], [[5265, 6170], [22, 51], [-5, 35], [40, 75], [-1, 52]], [[5321, 6383], [23, -26], [28, 6], [51, -37], [24, -81], [36, -13], [48, -59], [19, 17], [4, 90], [18, 57], [30, 28], [41, -21], [-1, -22], [53, -26], [4, -22]], [[5699, 6274], [-12, -106], [8, -73], [0, -513]], [[5240, 6652], [32, 30], [39, -153], [-28, -64], [6, -45], [19, 6], [13, -43]], [[2899, 5768], [-18, 50]], [[2881, 5818], [6, -11], [12, -39]], [[2899, 5768], [13, -32], [5, -74], [65, -55], [-58, 37], [-32, 57], [16, 39], [-9, 28]], [[2881, 5818], [-25, 43], [-19, -54], [10, -101], [-19, 66], [2, 37], [27, 70], [24, -61]], [[9711, 668], [-38, 4], [-3, -40], [-12, 65], [-27, -2], [-7, 29], [13, 47], [39, 81], [38, 31], [38, 72], [27, 121], [18, 27], [10, -57], [20, 28], [11, -69], [-49, -132], [-30, -39], [-20, -102], [-28, -64]], [[9890, 1058], [-24, -34], [-17, 24], [17, 71], [-40, 64], [22, 41], [8, 75], [-14, 82], [-35, 102], [22, 15], [35, -87], [19, -38], [5, -63], [40, -25], [31, 19], [-19, -98], [-13, 2], [-37, -150]], [[2861, 5472], [-43, 14], [-16, 63], [-34, 37], [-38, 9], [-2, 35], [-24, 2], [-49, -67], [4, 42], [32, 46], [34, 14], [54, -9], [22, -49], [14, 10], [11, 2], [51, -97], [50, -42], [13, -40], [-96, -16], [17, 46]], [[2771, 3763], [16, 51], [-32, 25], [0, 90], [24, 80], [-1, 48], [35, 51]], [[9079, 885], [-24, 0], [-21, 68], [-16, 109], [2, 45], [-19, 29], [60, -78], [55, 39], [2, -86], [-9, -102], [-13, 26], [-17, -50]], [[9059, 2742], [8, -104], [74, -100], [14, -125], [34, -33], [2, -62], [28, -41], [19, -75], [22, 13], [-9, -57], [14, -115], [1, -105], [-29, -256], [-21, -33], [-46, -215], [-5, -114], [-46, -25], [-51, -64], [-43, 16], [2, 44], [-40, -69], [-32, 36], [-48, 21], [-26, 62], [-4, 85], [-17, 34], [-63, -38], [18, 36], [-10, 47], [28, 127], [-16, 0], [-50, -129], [-12, 75], [-25, 52], [-4, 50], [-54, 30], [-29, 42], [-60, -15], [-48, -44], [-30, 4], [-58, -67], [-16, -56], [-98, 2], [-44, -71], [-36, -11], [-31, 17], [-29, 54], [20, 56], [0, 118], [-20, 103], [0, 51], [-22, 98], [-5, 59], [-29, 111], [16, 18], [16, -68], [2, 47], [-21, 91], [7, 141], [64, 108], [49, 28], [89, 73], [38, 107], [-3, 64], [21, 47], [17, -66], [1, 97], [22, -12], [1, 78], [18, 45], [42, 27], [10, 38], [34, -72], [41, -26], [-8, 48], [44, 176], [-25, 10], [9, 43], [29, -2], [1, -75], [34, 10], [-2, 79], [16, -48], [52, -41], [39, 34], [12, -34], [-28, -105], [-12, -83], [30, -59], [68, -83], [29, -59], [23, 19], [22, 168], [-1, 183], [10, 36], [4, 132], [14, -38], [25, -216], [12, -54], [15, 23], [23, -54], [2, -100], [21, -94]], [[3021, 4855], [-16, -17], [10, -64], [-15, -65], [16, -56], [13, 51], [-14, 77], [39, 45], [35, 0], [27, -72], [45, 15], [42, -41], [24, 38], [34, 10], [13, -50], [40, -49], [-3, -33], [24, -24]], [[9467, 3299], [-28, 5], [0, 89], [-42, 70], [-20, -31], [17, -49], [-39, 42], [3, 65], [48, -27], [33, -53], [7, -51], [25, 29], [-4, -89]], [[6385, 2822], [-63, -524], [-14, -81], [-53, -45], [-31, 43], [-7, 110], [-15, 88], [7, 67], [27, 95], [-15, 181], [14, 89], [33, 17], [52, 64], [20, 119], [14, -2], [14, 107], [20, -79], [15, -171], [-23, -7], [5, -71]], [[4334, 8654], [61, 11], [-4, 26], [-33, 14], [-38, -6], [23, 19], [7, 30], [28, -8], [-3, 27], [34, -33], [-4, -31], [17, -15], [21, 55], [51, 4], [19, -15], [31, 16], [-2, 22], [52, -32], [-5, -23], [30, -15], [7, -32], [-29, -48], [-88, -50], [-28, -23], [-40, 11], [-28, 24], [-42, -3], [28, 39], [-21, 30], [-44, 6]], [[5970, 6117], [-18, -125], [-28, 61], [-20, 100], [3, -71], [27, -85], [11, -86], [43, -189], [4, -73], [34, -67]], [[5699, 6274], [61, -22], [47, -37], [37, 48], [33, -4], [16, -29], [58, 18]]], "bbox": [-179.9549585688054, -55.8628450158186, 179.80942508815713, 83.58435182440637], "transform": { "scale": [0.03598003636933319, 0.01394611429545204], "translate": [-179.9549585688054, -55.8628450158186] }, "copyright": "Copyright (c) 2020 Highsoft AS, Based on data from Natural Earth", "copyrightShort": "Natural Earth", "copyrightUrl": "http://www.naturalearthdata.com" }, + "https://code.highcharts.com/mapdata/countries/no/no-all.topo.json": { "type": "Topology", "objects": { "default": { "type": "GeometryCollection", "geometries": [{ "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]]], "id": "NO.VL.46", "properties": { "hc-group": "admin2", "hc-key": "no-vl-46", "hc-a2": "VE", "name": "Vestland" } }, { "type": "MultiPolygon", "arcs": [[[24]], [[25]], [[26]], [[27]], [[28]], [[29]], [[30, 31]], [[32]], [[33]], [[34]], [[35]], [[36]], [[37]], [[38, 39, 40]], [[41, 42]], [[43, 44, 45, -16]], [[46]]], "id": "NO.MR.15", "properties": { "hc-group": "admin2", "hc-key": "no-mr-15", "hc-a2": "MO", "name": "Møre og Romsdal" } }, { "type": "MultiPolygon", "arcs": [[[47]], [[48, 49, 50]]], "id": "NO.AG.42", "properties": { "hc-group": "admin2", "hc-key": "no-ag-42", "hc-a2": "AG", "name": "Agder", "hc-middle-x": 0.6, "hc-middle-y": 0.75 } }, { "type": "MultiPolygon", "arcs": [[[51]], [[52]], [[53]], [[54]], [[55]], [[56]], [[57]], [[58]], [[59]], [[60]], [[61]], [[62]], [[63]], [[64]], [[65]], [[66]], [[67]], [[68]], [[69]], [[70]], [[71]], [[72]], [[73, -74, 74]], [[75, 76]], [[77, 78, 79, 80]], [[81, 82]], [[83]], [[84, 85]], [[86]], [[87]], [[88]], [[89]], [[90]], [[91]], [[92]]], "id": "NO.NO.18", "properties": { "hc-group": "admin2", "hc-key": "no-no-18", "hc-a2": "NO", "name": "Nordland" } }, { "type": "MultiPolygon", "arcs": [[[93]], [[94, 95, -18, 96, 97, 98]]], "id": "NO.VI.30", "properties": { "hc-group": "admin2", "hc-key": "no-vi-30", "hc-a2": "VI", "name": "Viken", "hc-middle-x": 0.4, "hc-middle-y": 0.275 } }, { "type": "MultiPolygon", "arcs": [[[99]], [[100]], [[101]], [[102]], [[103]], [[-21, 104, -20, 105, -50, 106]], [[107, -14]]], "id": "NO.RO.11", "properties": { "hc-group": "admin2", "hc-key": "no-ro-11", "hc-a2": "RO", "name": "Rogaland", "hc-middle-x": 0.6, "hc-middle-y": 0.1 } }, { "type": "MultiPolygon", "arcs": [[[108]], [[109]], [[110]], [[111]], [[112]], [[113]], [[114]], [[115]], [[116]], [[117]], [[118]], [[119]], [[120]], [[121]], [[122]], [[123]], [[124]], [[125]], [[126]], [[127]], [[128]], [[129]], [[130]], [[73, 131, 82, -86, 132]], [[133, -78]], [[134]], [[135]], [[136]], [[137]], [[138]], [[139]], [[140]], [[141]], [[142]], [[143]]], "id": "NO.TF.54", "properties": { "hc-group": "admin2", "hc-key": "no-tf-54", "hc-a2": "TO", "name": "Troms og Finnmark" } }, { "type": "MultiPolygon", "arcs": [[[144]], [[145]], [[146]], [[147]], [[148]], [[149]], [[150]], [[151]], [[-77, 152, -80, 153, 154, -45, 155, -43, 156, 157, -40, 158, -32, 159]], [[160]], [[161]], [[162]], [[163]]], "id": "NO.TD.50", "properties": { "hc-group": "admin2", "hc-key": "no-td-50", "hc-a2": "TR", "name": "Trøndelag" } }, { "type": "Polygon", "arcs": [[164, -99]], "id": "NO.OS.0301", "properties": { "hc-group": "admin2", "hc-key": "no-os-0301", "hc-a2": "OS", "name": "Oslo" } }, { "type": "Polygon", "arcs": [[-106, -19, -96, 165, -51]], "id": "NO.VT.38", "properties": { "hc-group": "admin2", "hc-key": "no-vt-38", "hc-a2": "VO", "name": "Vestfold og Telemark", "hc-middle-y": 0.7 } }, { "type": "Polygon", "arcs": [[166, -97, -17, -46, -155]], "id": "NO.IN.34", "properties": { "hc-group": "admin2", "hc-key": "no-in-34", "hc-a2": "IN", "name": "Innlandet", "hc-middle-y": 0.3 } }], "hc-transform": { "default": { "crs": "+proj=utm +zone=33 +datum=WGS84 +units=m +no_defs", "scale": 0.000471660091353, "jsonres": 15.5, "jsonmarginX": -999, "jsonmarginY": 9851, "xoffset": -60446.6157859, "yoffset": 7938888.08155 } } } }, "arcs": [[[209, 1532], [2, -29], [-30, -6], [-10, 18], [38, 17]], [[233, 1578], [14, -37], [-11, -24], [-35, 39], [11, 46], [21, -24]], [[162, 1725], [15, -52], [-21, -5], [-7, 33], [-17, -9], [-20, 50], [30, 12], [-19, 20], [-9, 73], [9, 11], [47, -94], [-8, -39]], [[70, 2001], [6, -32], [-23, 2], [3, 56], [14, -26]], [[160, 3047], [33, -9], [-22, -54], [-28, 9], [12, 25], [-26, 47], [31, -18]], [[308, 1443], [15, -72], [-29, -33], [-17, 26], [-25, 2], [-23, 86], [20, 52], [33, -16], [26, -45]], [[332, 1446], [-16, 46], [-34, 3], [-10, 22], [32, 8], [5, 36], [74, 20], [1, -48], [-20, -41], [13, -35], [-45, -11]], [[128, 1941], [17, -23], [47, -16], [16, -23], [0, -40], [-26, -12], [3, 31], [-26, 16], [-4, 29], [-24, 3], [-3, 35]], [[68, 2227], [18, 3], [19, -43], [-16, -10], [-38, 50], [17, 0]], [[147, 2164], [-26, 15], [-4, 53], [20, -14], [10, -54]], [[36, 2301], [-12, -29], [-24, 53], [21, 18], [15, -42]], [[86, 2384], [-10, 46], [44, -15], [10, -44], [-36, -48], [-13, 34], [-23, -29], [-1, 69], [29, -13]], [[430, 1256], [38, 20], [-40, -12]], [[428, 1264], [-3, 19], [-1, 5]], [[424, 1288], [49, 52], [35, -20], [80, 56], [17, 26], [-78, -60], [-27, -4], [-15, 33], [-36, -23], [-27, 34], [-43, 29], [36, 21], [12, 36], [73, 20], [-7, 31], [24, 45], [33, 26], [73, 23], [-12, 31], [-22, -28], [-37, -13], [-11, 69], [26, 12], [25, 47], [54, 69], [34, 16], [23, 32], [53, -11], [-43, -117], [-7, -116], [26, 87], [-3, 36], [31, 84], [56, 69], [53, 15], [52, -10], [11, 20], [-78, 0], [44, 62], [-39, -26], [-22, -38], [-32, -14], [-37, -37], [-31, 6], [39, 57], [-50, -43], [-73, -29], [-28, -27], [-67, -15], [26, -11], [-32, -83], [-40, 15], [-35, -78], [-17, 1], [-2, -106], [-37, -25], [-29, 37], [16, 34], [-6, 58], [20, 37], [-29, -14], [-34, -40], [-19, 18], [8, 32], [55, 26], [-52, 0], [36, 88], [-13, 10], [-40, -114], [-38, -41], [-7, -24], [-40, 17], [19, 47], [-49, -4], [33, 42], [-53, 10], [-9, 49], [12, 34], [45, 5], [-18, 27], [-5, 44], [26, 30], [54, -62], [20, -8], [-66, 84], [98, 68], [9, 39], [30, -9], [-3, -147], [-27, -29], [-40, -5], [43, -15], [35, 41], [5, 149], [11, 38], [-33, -10], [12, 36], [-39, -41], [-27, -9], [2, -44], [-32, -11], [-53, -40], [-30, 10], [-52, 68], [54, -33], [-114, 136], [31, 1], [64, -45], [48, -23], [2, -26], [47, -37], [-8, 57], [-22, 32], [-45, 23], [43, 28], [-5, 20], [35, 23], [41, 5], [-25, 24], [-55, -30], [-12, -35], [-94, 17], [-13, 92], [27, -19], [22, 39], [-48, -7], [1, 49], [44, 23], [56, -30], [58, -8], [35, 37], [100, 22], [-4, -31], [42, 44], [79, 0], [60, -21], [6, -35], [36, 6], [-12, -34], [48, 60], [38, 21], [13, 43], [71, -19], [26, -16], [9, -31], [32, -6], [15, -61], [-15, -26], [33, -1], [40, -51], [1, 41], [-23, 6], [-32, 70], [-5, 31], [63, 13], [15, 23], [86, -29], [-34, 31], [41, 38], [-41, 22], [-12, 66], [66, 115], [-54, -53], [-31, 4], [16, -35], [-25, -39], [45, -81], [-29, -20], [-19, 15], [-36, -29], [-70, -26], [-13, 19], [32, 36], [-41, -16], [-86, 25], [-41, 22], [52, 91], [1, 41], [-23, -67], [-28, -34], [-24, -2], [14, -45], [-11, -43], [-28, -25], [-57, 9], [-41, 44], [-38, -28], [-51, 17], [-51, -11], [-8, 31], [-13, -31], [-72, -15], [-31, -31], [-38, -10], [-30, 37], [-39, -19], [-12, 38], [-45, 6], [6, 19], [62, -18], [10, 14], [-42, 32], [-44, -6], [-16, 45], [68, 27], [7, 21], [33, -8], [26, -55], [-5, 46], [-24, 24], [70, 14], [73, -4], [-31, 12], [-147, -16], [-40, -25], [-23, 40], [36, 33], [-55, -3], [103, 40], [44, -3], [56, -25], [99, 46], [-31, 5], [-34, -26], [-51, -3], [-16, 20], [-40, -6], [-58, 34], [1, 23], [82, -1], [-80, 32], [106, -4], [-74, 29], [-90, 2], [-18, 28], [11, 54], [30, 9], [30, 34], [77, 35], [-15, 21], [25, 28], [47, 2], [71, -16], [23, -39], [70, 10], [10, -9], [-18, -75], [28, 70], [14, 0], [42, -46], [22, -3], [-47, 52], [89, 1], [35, -21], [53, 4], [25, 43], [20, 4], [51, -26], [-2, 22], [-33, 18], [-49, -12], [-30, -41], [-82, 25], [-62, -6], [-22, 15], [-62, 9], [-29, -18], [-26, 31], [78, 3], [11, 11], [-121, 7], [-82, 10], [-103, -33], [-21, 16], [21, 45], [29, -14], [30, 53], [25, -8], [-63, 65], [-38, 5], [-15, 42], [42, 37], [36, -33], [16, -48], [51, -34], [13, -31]], [[319, 3055], [-4, -26], [28, -19], [65, 14], [30, -11], [48, 23], [41, -30], [40, 13], [15, 28], [62, -36], [28, 15], [31, -45], [45, 27], [167, 23], [5, 15], [62, 8], [41, -9]], [[1023, 3045], [19, -22], [5, -91], [39, -75], [0, -24], [90, 20], [59, -25], [-5, -59], [19, -66], [65, -26], [30, 19], [25, -11], [23, -59], [-19, -19], [-46, -2], [2, -42], [36, -25], [-75, -91], [34, -83], [40, -28]], [[1364, 2336], [12, -31], [-22, -49], [-26, 11], [-43, -68], [-39, 3], [-22, 20], [-29, -20], [-37, -79], [-7, -46], [-27, 9], [-67, -64], [41, -2], [34, -19], [1, -56], [35, -29], [-14, -71], [-8, -100], [-24, -39], [-10, -51], [-36, -59]], [[1076, 1596], [-20, -60], [-77, -44], [-33, -62], [5, -40], [-24, -34]], [[927, 1356], [-44, -9], [-102, -58], [-22, 18], [15, 39], [-1, 47], [-56, 8], [-43, -40], [-36, -6], [-40, -68], [-16, -81], [-80, 10], [-72, 40]], [[340, 1259], [3, -68], [-34, -51], [-56, -17], [-49, 30]], [[204, 1153], [46, 86], [31, 15], [39, 68], [6, -51], [-8, -77], [-25, -20], [-1, -29], [34, 21], [14, 93]], [[139, 2885], [-46, -8], [14, 32], [-47, 10], [24, 36], [33, 6], [102, -37], [-39, -20], [2, 26], [-43, -45]], [[220, 1335], [-25, -55], [10, -21], [6, -31], [-18, -17], [-16, 46], [7, 45], [22, 36], [-43, 6], [9, 46], [26, 17], [35, -36], [32, -70], [-13, -15], [-8, 45], [-24, 4]], [[563, 3467], [0, -25], [-44, 19], [40, 25], [4, -19]], [[497, 3360], [30, -66], [-62, -60], [-26, 81], [12, 30], [46, 15]], [[595, 3375], [38, -28], [-85, -2], [-26, 27], [73, 3]], [[340, 3187], [-15, 24], [23, 50], [50, 8], [39, -19], [-8, -53], [-29, -12], [-60, 2]], [[1385, 3925], [-41, 1], [-10, 40], [25, 2], [26, -43]], [[1341, 3918], [-63, -14], [-36, 30], [57, 48], [30, -23], [12, -41]], [[1585, 3958], [-84, -4], [-15, 37], [-36, 31], [85, 23], [24, 19], [-48, 32], [13, 23], [32, 0]], [[1556, 4119], [16, -38], [40, -17], [-33, -63], [6, -43]], [[1425, 4014], [62, -63], [-3, -17], [-55, -13], [-29, 11], [-31, 43], [6, 33], [28, -6], [16, -31], [6, 43]], [[1150, 3846], [18, 25], [18, -10], [41, 13], [10, -13], [-47, -47], [-40, 32]], [[1083, 3840], [23, -26], [14, 53], [16, 15], [3, -44], [19, -35], [-68, -45], [-50, 25], [16, 31], [-13, 27], [40, -1]], [[818, 3688], [45, 1], [-14, -61], [-39, 25], [8, 35]], [[407, 3315], [8, -2], [-5, -26], [-47, 2], [44, 26]], [[855, 3596], [4, -26], [-91, -32], [-10, 21], [14, 34], [22, -4], [42, 17], [19, -10]], [[1526, 3941], [59, 11]], [[1585, 3952], [-6, -5]], [[1579, 3947], [-21, -4], [-32, -2]], [[1488, 3930], [12, 6], [22, 5]], [[1522, 3941], [-25, -8], [-9, -3]], [[319, 3055], [29, 53], [-54, 14], [-11, 18], [15, 41], [72, -16], [15, -33], [33, -26], [-30, 42], [6, 27], [32, 0], [33, 19], [25, -30], [-6, -54], [-24, -55], [35, 50], [7, 41], [34, -31], [2, -24], [28, 12], [92, -12], [-105, 31], [-41, 57], [-20, 12], [7, 35], [30, 45], [108, 51], [31, -69], [25, -25], [35, -59], [-9, -47], [24, 21], [-37, 89], [-29, 43], [-7, 59], [38, 9], [25, -34], [-8, 43], [62, 31], [64, -27], [-1, -47], [39, -54], [11, -57], [-24, -54], [5, -27], [27, 49], [3, 80], [29, 6], [37, -22], [38, 23], [40, -37], [-16, 31], [-31, 19], [-50, -9], [-77, 30], [-17, 33], [24, 5], [-46, 59], [-61, 18], [-79, -35], [-33, -4], [-35, 25], [57, 33], [83, -7], [-23, 20], [-52, -5], [22, 18], [-103, -7], [-5, 36], [27, 25], [82, 6], [28, -42], [13, 38], [50, 30], [40, -37], [18, 41], [62, -3], [-22, -22], [23, -7], [14, -61], [9, 73], [79, -27], [24, -35], [33, -5], [9, -28], [12, 35], [77, 19], [-12, 9], [-91, -16], [-30, 24], [-3, 27], [23, 5], [7, -39], [14, 19], [-4, 47], [36, 19], [82, 24], [78, -3], [33, -26], [0, 19], [-32, 31], [12, 16], [-80, -24], [-83, -15], [-45, -28], [-53, -3], [-7, 34], [40, 26], [79, 20], [-27, 2], [-112, -39], [-130, -15], [-5, 34], [39, 43], [59, -9], [-32, 26], [-43, -5], [-41, 66], [63, 41], [74, 23], [87, -78], [63, 52], [41, -1], [-31, -50], [106, 49], [38, -20], [30, -103], [63, -29], [36, -39], [49, -3], [-136, 96], [-4, 56], [-81, 81], [-31, -14], [44, 63], [34, 13], [17, -45], [79, -70], [-12, -10], [8, -49], [28, 5], [45, -33], [19, 25], [49, -41], [-31, 42], [-53, 22], [-24, 39], [86, 7], [-1, 16], [-45, 1], [25, 24], [-73, -37], [-28, 21], [43, 7], [0, 16], [-66, -7]], [[1368, 3815], [84, 45], [17, -18], [61, 13], [45, 40], [20, -10], [42, 15], [0, -46], [43, 14], [8, -48], [19, -11], [-17, -32], [10, -33], [49, -2], [24, -48], [-2, -40], [15, -11], [-83, -29], [-60, -11], [-25, -23], [87, -106], [35, -12], [-38, -120], [-30, -19]], [[1672, 3323], [-55, -15], [-47, 19], [-153, -12], [-70, -23], [-28, -31], [-56, -87], [-45, -5], [-49, 11], [-58, -48], [19, -28], [-18, -14], [-26, 24], [-38, -4], [-28, -44], [3, -21]], [[1186, 4111], [55, 20], [30, 27], [37, -7], [31, -56], [-36, -47], [-35, -10], [-31, 21], [19, 8], [-60, 14], [-10, 30]], [[748, 177], [3, -23], [-17, 3], [-22, 31], [36, -11]], [[1785, 589], [-21, -26], [-86, 4], [-6, -15], [57, -1], [-22, -26], [17, -12], [-63, -59], [-32, -12], [-2, -40], [-72, -75], [-18, -37], [-48, -24], [-30, -69], [-29, 10], [-26, -19], [-48, -61], [-10, -31], [-16, 16], [-14, -32], [-37, 30], [21, 15], [-19, 48], [-9, -61], [-35, -47], [-99, -13], [-28, -36], [-71, 0], [-46, 14], [-7, 17], [-29, -21], [-35, 4], [-2, -22], [-29, -8], [0, 25], [56, 53], [-80, -41], [17, 46], [-30, -41], [-37, 37], [55, 15], [-29, 11], [-35, 35], [10, -46], [-28, 0], [-3, 52], [-14, -52], [36, -39], [-62, -1], [-33, 40], [25, 43], [29, 4], [9, 32], [-30, 72], [3, -57], [-93, 25]], [[657, 213], [68, 38], [18, 35], [8, 53], [-14, 51], [10, 34], [-14, 46], [-32, -5], [-23, 30], [70, 36], [-17, 50], [-22, 4], [34, 86], [-18, 23], [28, 22], [12, 34], [90, 98], [-9, 21], [23, 31], [-35, 0], [-6, 102], [22, 62], [-3, 23], [53, 40], [-22, 27], [10, 61], [22, -8], [19, 50], [43, 15]], [[972, 1272], [68, -30], [4, 21], [30, -18], [26, -38], [-6, -47], [34, -48], [-33, -47], [21, -18], [8, -36], [31, -1], [11, -51], [20, -30], [-14, -58], [24, -21], [40, -81], [28, -37], [41, -9], [-5, 17], [35, 9], [45, -36], [70, -38], [37, 35], [30, -48], [34, -28], [33, 61], [-26, 19], [27, 38], [61, 4], [15, -45], [47, -37], [14, -61], [63, -24]], [[3016, 6513], [8, 25], [17, -12], [-13, -34], [-12, 21]], [[3302, 6671], [34, -4], [-6, -14], [-72, -8], [44, 26]], [[3273, 7711], [53, -20], [-30, -88], [-13, 15], [-31, -34], [-23, 56], [22, 25], [28, -26], [10, 22], [-16, 50]], [[3144, 6406], [-21, -60], [-37, 23], [19, 19], [-13, 25], [27, 10], [25, -17]], [[3488, 6881], [-41, -11], [1, 23], [25, 8], [15, -20]], [[3622, 6954], [21, 8], [-30, -62], [4, -57], [-18, -6], [-22, 46], [-41, 12], [28, 43], [41, -18], [17, 34]], [[3225, 6288], [-91, -39], [23, 34], [64, 10], [4, -5]], [[3088, 6307], [23, -9], [4, -37], [-44, -16], [-18, 29], [35, 33]], [[2948, 5895], [-23, -11], [14, 26], [31, 16], [-22, -31]], [[4019, 7570], [-31, 0], [-10, 22], [27, 31], [14, -53]], [[3932, 7570], [26, 25], [13, -31], [56, -25], [-48, -12], [-71, 5], [2, 42], [22, -4]], [[3879, 7780], [-9, -16], [-30, 19], [35, 41], [25, -18], [-21, -26]], [[3593, 7807], [-32, 14], [3, 27], [66, -15], [10, -24], [-24, -25], [-23, 23]], [[4135, 7614], [108, 2], [28, -24], [-34, -9], [-52, 21], [-34, -20], [-50, 13], [34, 17]], [[3902, 8260], [-44, 8], [12, 32], [32, -1], [0, -39]], [[2766, 5846], [6, -49], [-21, -32], [-60, 22], [25, 57], [50, 2]], [[2952, 5860], [-39, -51], [-14, 12], [15, 23], [38, 16]], [[2848, 5677], [-23, -43], [-23, -14], [19, 24], [27, 33]], [[3054, 7343], [-55, -11], [29, 22], [25, 9], [1, -20]], [[3892, 7980], [-81, -12], [-43, 52], [41, 13], [108, -17], [-25, -36]], [[3690, 7158], [-2, -20], [-62, -15], [54, 48], [10, -13]], [[2817, 5430], [2, 23], [36, 27], [31, -38], [-18, -30], [32, -10], [-58, -43], [-59, 16], [37, 36], [-3, 19]], [[4351, 7993], [-2, 0]], [[4351, 7993], [0, 0]], [[2800, 5362], [41, -15], [7, -27]], [[2848, 5320], [-33, -3], [-15, 45]], [[4509, 7928], [-4, 39], [62, 16], [57, 47], [124, -11], [54, 3], [80, 26], [180, 9], [38, -54]], [[5100, 8003], [-9, -100], [19, -157], [-96, -174], [-88, 53], [-145, 60], [-39, -51], [-167, -104], [-69, -203], [-56, -86], [-94, -11], [-27, -64], [120, -174], [-6, -121], [-74, -49], [-58, -53], [-158, -241], [-93, -84], [41, -153], [-170, -98], [-196, -16], [26, -175], [15, -68], [-32, -84], [-16, -137], [3, -161], [-48, -46], [-20, -99]], [[3663, 5407], [-61, 16], [-203, -26], [-37, 9], [-45, -13], [-98, 13], [-26, -5], [-34, -31], [-33, -72], [-50, 1], [-3, -27], [-52, -1], [-18, 36], [-73, 3], [-43, -24], [-35, 27]], [[2852, 5313], [4, 43], [66, 29], [40, 0], [13, 25], [37, 3], [72, 71], [51, 70], [0, 16], [-100, -104], [-62, -39], [-50, 5], [37, 24], [-29, 45], [108, 6], [2, 10], [-94, 7], [-33, -4], [-39, -25], [38, 52], [56, 51], [20, -4], [-25, 62], [61, -23], [6, 49], [-35, 25], [20, 12], [-16, 46], [-23, -59], [-41, 18], [5, 46], [-19, -3], [-8, 35], [57, 72], [29, -9], [31, -63], [50, 0], [-39, 17], [-13, 37], [-29, 19], [-2, 24], [54, 46], [-36, 18], [25, 58], [41, 29], [94, -30], [52, -53], [-24, 69], [-51, 10], [-21, 26], [38, 56], [-117, -19], [-17, 15], [31, 33], [45, 21], [67, 14], [68, 25], [30, 25], [83, 17], [19, -16], [-31, -26], [33, 0], [-19, -49], [41, 28], [73, 9], [-85, 12], [34, 41], [53, -13], [52, 12], [13, 25], [48, 35], [-2, 20], [-63, -29], [-21, -27], [-58, 20], [-21, -33], [-30, -9], [-17, 37], [-61, -34], [-49, -2], [-31, -28], [-51, -24], [-14, 20], [50, 46], [60, 31], [66, -1], [-52, 32], [-50, -34], [-35, 5], [10, 18], [-47, -5], [-14, 27], [54, 23], [10, 20], [-33, 65], [-42, 18], [50, 15], [44, -29], [51, 30], [51, 5], [69, -26], [-18, 18], [-63, 18], [54, 34], [-37, -1], [-29, -33], [-58, -11], [-25, 6], [17, 44], [46, 15], [-46, 0], [-22, 24], [59, -15], [49, 22], [-80, 20], [-4, 18], [89, -8], [14, -15], [62, -2], [2, 17], [58, 2], [15, 14], [-68, 0], [-38, -16], [-24, 8], [16, 28], [48, -8], [2, 14], [-81, 10], [13, 16], [56, 2], [29, -10], [86, -3], [-73, 15], [-61, 49], [-13, 25], [-32, 0], [27, 24], [58, -1], [6, 23], [38, 1], [42, 20], [-31, -31], [16, -16], [41, 47], [-11, 21], [18, 29], [18, -53], [43, -7], [20, 59], [54, 3], [65, -28], [-3, 24], [-109, 14], [27, 63], [36, -5], [100, 6], [-80, 15], [35, 18], [18, -14], [49, 22], [55, -11], [-11, -45], [46, 48], [28, 7], [99, -36], [8, -52], [24, 0], [6, 56], [-30, 23], [30, 9], [99, -31], [-5, 32], [-37, -9], [-75, 25], [-36, -21], [11, 25], [-49, -5], [-57, 10], [33, 23], [6, 25], [-57, -15], [-13, -17], [-78, 1], [23, -11], [-61, -29], [3, 46], [-40, -20], [-94, -7], [104, 103], [19, 37], [57, -3], [8, -34], [86, 52], [-86, 0], [-37, 32], [26, 28], [100, 39], [38, -32], [-19, -4], [-38, 26], [17, -37], [-16, -21], [-59, -13], [62, -1], [59, 40], [15, -25], [-30, -52], [40, 44], [49, 8], [38, -21], [39, -99], [32, -41], [16, 20], [-30, 24], [-14, 46], [-27, 24], [27, 27], [-21, 3], [26, 33], [102, 48], [-76, -16], [-64, -32], [-87, 11], [-10, 45], [25, 8], [60, -13], [-22, 42], [-18, -21], [-32, 15], [-30, -12], [0, 27], [54, 33], [-15, 25], [43, -24], [48, -12], [-9, 16], [53, -11], [-41, 24], [-23, -9], [-32, 32], [74, 5], [76, -52], [-4, 37], [-73, 34], [-80, 23], [-72, -63], [-58, -33], [-78, -27], [-40, 13], [56, 32], [-32, 21], [122, 10], [-37, 4], [7, 27], [-72, -10], [-35, 26], [14, 14], [104, 12], [5, 18], [-86, -13], [56, 39], [73, -7], [4, -42], [38, 45], [184, 47], [29, -38], [39, 81], [36, 6], [-80, 15], [-94, 1], [-22, 28], [-60, -39], [-12, -21], [-28, 31], [46, 51], [40, 21], [1, -28], [45, 30], [2, 24], [37, -20], [1, -36], [-45, -1], [1, -26], [77, 28], [38, 30], [-19, 28], [26, 13], [9, 46], [27, -4], [3, -60], [20, 8], [-10, -47], [7, -29], [-18, -33], [57, -37], [16, -74], [76, -58], [6, 33], [-53, 17], [-22, 20], [18, 72], [39, -57], [23, -15], [1, 31], [-51, 41], [18, 11], [38, -40], [8, 46], [-52, 10], [38, 49], [74, -33], [11, 15], [-43, 11], [-28, 25], [-59, -28], [-20, 7], [15, -10], [-5, -25], [-53, 12], [36, 28], [6, -4], [10, 26], [37, 25], [-1, 21], [50, -17], [-40, 47], [-13, -14], [-88, -3], [16, 17], [50, 1], [-3, 17], [-56, 6], [-33, 20], [27, 25], [41, -8], [13, -18], [72, -20], [21, -47], [67, -43], [24, -4], [-61, 52], [-15, 42], [-30, 25], [-42, 7], [-73, 40], [77, 29], [103, 12], [65, -25], [-16, -37], [115, 38], [35, -68], [42, -21], [8, -24], [25, 8], [-11, 24], [-46, 33], [-23, 48], [15, 24], [30, 2], [64, -32], [18, 9], [-68, 27], [67, 12], [104, -24], [-77, 41], [-54, -3], [30, 63], [-70, -21], [-40, -36], [-80, -16], [10, 42], [-37, 14], [-48, -45], [-108, -8]], [[4330, 7998], [2, 3], [11, -3]], [[4343, 7998], [-13, 0]], [[3113, 7463], [-32, -12], [42, 112], [36, 68], [26, 18], [-3, 26], [38, -15], [-35, -40], [18, -3], [8, -58], [-35, -9], [-24, 22], [-1, -27], [28, -14], [-13, -28], [-43, -18], [-10, -22]], [[4330, 7998], [-13, -50], [-33, -55], [-35, -18], [3, 58], [-51, -15], [-8, -40], [-39, -54], [-37, 28], [-56, -8], [-8, 20], [96, 92], [-22, 0], [-43, -43], [-20, 2], [-57, -64], [-38, -22], [-19, -28], [-33, -14], [4, 46], [43, 60], [56, 52], [0, 41], [-34, 6], [21, 32], [82, 25], [23, 29], [-21, 24], [-4, 47], [72, 11], [-68, 10], [-2, 42], [70, 9], [-28, 12], [-4, 25], [34, 62], [100, 4], [6, -56], [-23, -78], [-38, -36], [35, 9], [38, 33], [12, -29]], [[4291, 8167], [-40, -33], [-36, -1], [-3, -42], [-50, -16], [8, -34], [-28, -13], [31, -64], [59, 37], [22, 0], [28, 60], [33, -63], [15, 0]], [[2961, 6062], [49, 31], [3, -31], [59, 28], [52, -2], [-105, -55], [-49, -47], [-6, 14], [-41, -6], [38, 68]], [[3027, 6163], [-42, -41], [-91, -34], [107, 109], [-55, 11], [62, 24], [6, -36], [-24, -19], [37, -14]], [[3983, 7940], [-52, -69], [-102, -79], [-17, 3], [20, 42], [-15, 14], [-23, -67], [-66, -39], [-113, -34], [-1, 37], [61, 31], [-21, 53], [35, -19], [38, 22], [-42, 43], [65, 16], [36, 26], [21, -38], [7, 39], [26, -2], [11, -27], [-15, -28], [36, 24], [8, 36], [41, -4], [62, 20]], [[3679, 8117], [66, 37], [-40, 15], [33, 39], [23, -51], [9, 51], [29, 13], [-2, -44], [77, 18], [23, -4], [-16, 46], [18, 16], [21, -55], [17, 45], [41, -27], [-35, 46], [-22, 78], [49, 25], [5, -39], [54, -42], [-20, -63], [32, 26], [22, -5], [-12, -37], [-26, 0], [-3, -30], [45, -25], [1, -28], [-23, -31], [-104, -57], [-71, 5], [-21, 41], [82, 21], [49, 27], [-5, 41], [-51, 10], [20, -15], [-19, -28], [-73, -29], [-7, 29], [-22, -34], [-28, 15], [-23, -47], [-68, -10], [-25, 57]], [[2843, 5618], [65, 54], [-6, 21], [-45, -16], [29, 82], [20, -37], [45, -50], [18, -60], [-20, -14], [-38, -29], [-48, -5], [14, -34], [-64, -50], [16, 67], [-15, 5], [15, 36], [25, -2], [-11, 32]], [[3356, 7754], [38, 13], [-43, 12], [51, 39], [58, -19], [32, 43], [41, 9], [4, -60], [36, 19], [26, -21], [-18, -36], [-29, -21], [-79, -28], [-19, -31], [-19, 16], [-2, -35], [-28, -5], [-7, 28], [-26, 9], [2, -28], [-18, -32], [-22, 24], [11, 27], [39, 40], [-42, -22], [19, 31], [-5, 28]], [[4319, 8464], [-69, -63], [-11, -25], [-82, -32], [-31, 23], [7, -29], [-16, -49], [-36, -22], [-2, 58], [13, 39], [41, 71], [34, 25], [50, 17], [28, 67], [90, 50], [16, -36], [-32, -94]], [[2419, 818], [17, 3], [-14, -39], [-21, 5], [18, 31]], [[2274, 1438], [-47, -6], [-13, -37], [-2, -78], [35, -53], [12, -41], [-8, -28], [-42, -43], [-22, 15], [2, 48], [-22, 83], [-50, 24], [7, -28], [39, -22], [11, -26], [-4, -78]], [[2170, 1168], [-13, 22], [-12, 74], [-75, 7], [-10, -22], [-32, 17], [-31, -62], [52, -83], [-53, -13], [-61, 1], [8, -34], [-45, -4], [-41, 61], [-30, -4], [16, 42], [-16, 15], [-26, 96], [-27, 7], [13, 67], [-69, 34], [3, 69], [-34, 31], [-41, 17], [-6, 67], [-13, 24], [-84, 63], [-90, -11], [-144, 11], [-111, -61], [-62, 18], [-60, -21]], [[1364, 2336], [23, 13], [50, -53], [38, -8], [42, -57], [89, -29], [11, -25], [141, -77], [16, -25], [-5, -36], [43, -63], [-7, -39], [24, -14], [49, 7], [0, -28], [84, -34], [-8, 75], [54, 42], [-19, 17], [51, -1], [22, -55], [23, -27], [15, -94], [55, -26], [18, 7], [-8, -41], [133, 6], [56, -11], [25, 24], [-12, 38], [-31, 23], [-56, 5], [15, 15], [1, 54], [18, -23], [58, -15], [58, 34], [33, 65], [23, -31], [-2, -44], [50, -36], [34, -90], [64, -55], [-15, -65], [36, -46], [46, -24], [23, -56], [-18, -46], [18, -87]], [[2722, 1400], [33, -36], [5, -75], [-19, -1], [-13, -34], [-51, -18], [-11, -27], [48, -185], [4, -79], [-18, -27], [-3, -91], [-24, -40], [-8, -59], [-22, -36], [-40, -24], [-25, 9], [2, 78], [-47, 94], [-59, 1], [-3, 62], [-29, -49], [-25, -4], [-13, 34], [-36, 18], [-30, -25], [-31, 79], [14, 34], [-40, 2], [-5, 64], [-24, 18], [22, 57], [0, 73], [-36, 100], [21, 82], [15, 17], [24, -90], [13, 74]], [[2311, 1396], [48, -19], [22, 16], [-12, 29], [18, 61], [-54, 58], [-28, 75], [-50, 7], [-9, -44], [-35, -45], [46, -31], [17, -65]], [[534, 980], [17, -9], [-17, -27], [-37, -9], [-2, 42], [39, 3]], [[364, 864], [65, -17], [-10, -31], [-67, 40], [12, 8]], [[467, 889], [-31, -22], [-6, 29], [20, 18], [17, -25]], [[305, 886], [-27, 33], [13, 25], [21, -27], [-7, -31]], [[214, 1077], [40, -107], [-7, -80], [-23, -22], [-26, 42], [5, 73], [18, -4], [-20, 48], [13, 50]], [[340, 1259], [8, 17], [49, -6], [9, -47], [24, 33]], [[927, 1356], [6, -62], [39, -22]], [[657, 213], [-67, 44], [-24, 3], [-53, 39], [-14, 59], [-63, 16], [-7, 24], [-28, 0], [-50, 82], [-35, 95], [18, 23], [1, 64], [13, 10], [-10, 57], [34, -24], [-40, 50], [11, 36], [62, -47], [1, -83], [7, 47], [56, 23], [79, -86], [-13, 43], [26, 44], [26, 17], [162, 53], [-103, -16], [-73, -26], [-47, -70], [-22, 44], [28, 26], [-16, 21], [-28, -5], [-23, 52], [19, 19], [77, 27], [-44, 1], [26, 51], [35, 34], [30, 12], [24, 35], [-42, -35], [-35, -2], [-10, 25], [58, 4], [-15, 30], [-40, -24], [-13, 25], [-24, -15], [32, 52], [42, 20], [20, 62], [99, 46], [-63, -13], [-38, -21], [15, 35], [-4, 41], [-11, -58], [-28, -62], [-91, -86], [-14, 70], [101, 23], [-49, -2], [-57, 10], [-21, 39], [-15, -11], [7, -46], [-28, -10], [-22, -34], [37, 20], [34, -36], [3, -26], [-61, -10], [-12, -25], [-30, 85], [-7, -76], [-35, -29], [-28, 77], [-1, -63], [-10, 7], [-15, 80], [-14, -51], [-36, 65], [-7, 65]], [[428, 1264], [-11, 10], [7, 14]], [[6461, 9128], [-13, -20], [-48, 20], [16, 20], [45, -20]], [[6148, 9174], [-27, -5], [-11, 35], [14, 25], [31, -33], [-7, -22]], [[6013, 9011], [8, 23], [57, 11], [-1, -70], [-58, -12], [-6, 48]], [[6145, 9142], [28, -26], [52, 6], [-45, -22], [-15, -26], [-51, 0], [-17, 40], [15, 29], [33, -1]], [[5234, 8977], [10, 30], [28, -7], [-2, -21], [-36, -2]], [[5359, 9137], [-42, -35], [-16, 48], [17, 48], [31, -7], [9, -32], [32, 35], [32, -25], [-63, -32]], [[4412, 8351], [61, -25], [37, 4], [13, -16], [-12, -45], [-65, 11], [-51, 50], [17, 21]], [[7692, 9907], [26, -10], [-17, -26], [-27, 18], [18, 18]], [[7617, 9944], [22, 5], [-26, -56], [-59, 23], [39, 39], [24, -11]], [[7360, 9820], [-36, -5], [-35, 25], [37, 7], [-37, 13], [18, 34], [48, -2], [-5, -47], [52, 3], [-19, -30], [-23, 2]], [[6463, 9315], [-19, 15], [13, 79], [31, -23], [-25, -71]], [[7826, 9334], [5, -21], [-37, -17], [17, 36], [15, 2]], [[8025, 9623], [-18, -6], [-7, 23], [23, 11], [2, -28]], [[4827, 8346], [-19, 34], [37, 39], [37, 5], [-3, -27], [-52, -51]], [[4380, 7993], [46, 10], [26, -13], [20, -39], [-36, -16], [11, -25], [-63, -4], [-41, -23], [-3, 41], [40, 69]], [[9528, 8991], [-5, 40], [23, 18], [44, -16], [11, -47], [24, -11], [-68, -30], [-23, 14], [-19, -31], [-31, 6], [44, 57]], [[5639, 9186], [-72, 14], [3, 31], [30, 1], [48, -33], [-9, -13]], [[5385, 9260], [1, -38], [-38, 11], [20, 26], [17, 1]], [[5894, 9280], [-9, 6], [1, 61], [33, -33], [-25, -34]], [[5746, 9109], [9, -16], [-51, -82], [-90, -20], [-15, 15], [33, 47], [61, 33], [31, 31], [22, -8]], [[5482, 9296], [23, 13], [21, -54], [-10, -39], [-46, -13], [-40, 26], [53, 35], [-1, 32]], [[4729, 8180], [-115, -34], [1, 36], [65, 67], [49, -69]], [[4741, 8214], [-7, 39], [-27, 25], [7, 19], [46, -48], [-1, 45], [36, -2], [46, -39], [-53, -47], [-47, 8]], [[4349, 7993], [-3, 3], [-3, 2]], [[4291, 8167], [-20, -52], [-53, -32], [-6, -61], [14, 37], [71, 51], [22, -37], [8, 33], [-19, 29], [29, 22], [39, -3], [-33, 37], [-7, 39], [33, 16], [29, -14], [-5, 49], [22, -25], [47, -16], [6, -26], [39, 8], [-24, -27], [13, -52], [18, -10], [-7, -40], [-27, -46], [-2, -36], [-51, 9], [-76, -27]], [[4509, 7928], [-20, 2], [-17, 53], [29, 25], [23, -11], [-12, 63], [22, 22], [138, 50], [59, -57], [-13, 51], [51, 19], [45, -10], [34, -33], [61, 11], [-47, 6], [-35, 41], [-30, -9], [-34, 18], [86, 45], [39, -19], [83, -9], [-120, 40], [86, 46], [38, -18], [11, 19], [-44, 16], [5, 16], [-111, -27], [40, 46], [-17, 27], [72, 73], [-8, 19], [80, 3], [34, 21], [73, 4], [-27, 12], [9, 45], [-33, 0], [-5, 43], [41, 37], [26, 56], [-10, 38], [56, 22], [78, -99], [-5, -50], [16, 3], [11, 53], [14, -49], [37, -28], [-4, 42], [50, 5], [73, -23], [-32, 30], [-101, 27], [-38, 51], [-37, 7], [12, 58], [50, 15], [84, 8], [61, -118], [50, -34], [77, -6], [8, -33], [-45, -20], [19, -39], [30, 15], [36, -17], [-8, 74], [-40, 46], [-73, -1], [-58, 66], [1, 32], [85, 47], [-67, -13], [-36, 8], [-5, 41], [53, 59], [6, 32], [74, 36], [56, -5], [44, 18], [85, 3], [-43, -93], [21, -30], [-32, -77], [2, -62], [-44, -45], [59, 34], [21, 128], [70, -6], [-26, 17], [-14, 46], [19, 57], [50, 61], [-14, -61], [15, 4], [61, 132], [13, -14], [42, 30], [39, -56], [-9, -65], [-26, -103], [21, -53], [-34, -19], [-4, -67], [-24, -12], [-9, -43], [-80, -56], [-24, -53], [31, 13], [27, 37], [78, 43], [84, 141], [56, -43], [27, 6], [-35, 50], [-50, 24], [16, 79], [-9, 29], [49, 3], [54, 22], [15, 30], [-12, 29], [98, 50], [-60, -70], [48, -49], [-9, 28], [24, 26], [42, 12], [-16, -48], [30, 14], [1, 58], [44, 1], [-44, 20], [16, 52], [53, 20], [62, -30], [8, -47], [68, -34], [56, -44], [20, -36], [49, -29], [-12, 41], [-54, 35], [37, 15], [-30, 15], [4, 81], [31, -1], [11, 24], [-70, -3], [-11, 33], [63, 4], [35, 45], [-52, -28], [-46, 7], [-45, -24], [-40, 28], [-38, -4], [-29, 43], [22, 20], [-52, -8], [-56, 33], [22, 23], [65, 24], [19, -47], [8, 64], [29, 15], [19, -39], [27, -8], [63, -79], [-21, 92], [63, 42], [9, -28], [35, 14], [14, -16], [47, 9], [19, -18], [-22, -32], [14, -47], [-22, -20], [103, 4], [-69, 16], [18, 63], [36, 7], [51, -32], [138, -8], [-41, -61], [-116, -31], [-44, 3], [-16, -22], [96, 11], [83, 24], [58, 30], [-8, -49], [12, -39], [31, 10], [18, -70], [46, 32], [18, -35], [52, 29], [27, 29], [-91, 12], [-46, 40], [68, 17], [18, 19], [-40, 21], [47, 21], [-54, 2], [-1, 21], [79, 7], [-7, 16], [-66, -9], [40, 27], [65, 8], [-33, 20], [12, 37], [90, 64], [33, 36], [29, 9], [151, -20], [-32, 32], [-45, 18], [58, 44], [10, 45], [23, 20], [54, -11], [45, -38], [41, -5], [1, 34], [-69, 61], [-95, 14], [-17, 16], [8, 40], [48, 22], [25, -37], [59, -30], [5, 67], [35, 4], [-56, 48], [34, 32], [41, -7], [33, -30], [-15, -15], [63, 4], [2, 44], [26, -11], [-34, -62], [37, -18], [28, 53], [33, -37], [5, -63], [37, 17], [19, 54], [-19, 53], [8, 16], [66, -39], [-43, -49], [106, 27], [17, -24], [50, 25], [17, -30], [-75, -61], [-37, -9], [10, -21], [-54, -50], [-25, -7], [-36, -41], [-95, -64], [-11, -15], [65, 18], [-1, -31], [-68, 2], [13, -13], [56, 5], [5, -70], [-22, 10], [-45, -30], [40, -15], [6, -26], [-84, -58], [-13, -55], [7, -58], [28, -13], [-12, 42], [33, 27], [-5, -37], [22, -20], [44, 17], [21, 53], [27, 18], [60, 78], [-45, 20], [89, 88], [80, 94], [55, 47], [21, 66], [115, 118], [92, 61], [29, 5], [15, -43], [-23, -51], [28, -6], [-39, -89], [-114, -45], [60, 11], [59, -16], [-35, -93], [6, -31], [-25, -34], [-2, -53], [54, 13], [4, 35], [45, 10], [12, 31], [91, -3], [-32, 48], [33, 54], [80, -19], [-52, 31], [10, 42], [-28, 16], [22, 29], [56, 3], [24, 62], [106, -16], [-57, 16], [21, 15], [-47, 52], [-29, -23], [-54, 9], [-27, 19], [19, 35], [67, -19], [-44, 41], [8, 23], [85, -15], [30, -39], [10, 47], [-23, 38], [18, 23], [55, 6], [-7, -30], [68, -22], [63, 26], [17, -23], [39, 34], [26, -22], [-28, -46], [18, -15], [42, 21], [56, -3], [20, -15], [-23, -69], [-43, -2], [28, -16], [-39, -15], [8, -15], [-53, -31], [-102, 9], [-74, -4], [94, -38], [47, -4], [-22, -26], [-53, -11], [-52, -39], [-55, -23], [55, 6], [136, 49], [38, 28], [18, -10], [-26, -67], [-146, -100], [14, -41], [11, 34], [102, 23], [-39, -20], [17, -27], [48, 52], [32, 6], [-62, -94], [-6, -112], [4, -84], [-39, -55], [45, 40], [16, 44], [-13, 84], [21, 98], [28, 19], [12, 34], [28, 9], [24, -38], [24, 49], [-27, 1], [-32, 28], [45, 99], [36, -4], [-32, 37], [76, 96], [25, 19], [100, 7], [2, -18], [60, -3], [30, -43], [40, -11], [-42, -30], [21, -37], [62, 8], [70, 29], [30, -14], [-6, -47], [-32, -34], [54, 11], [65, 61], [42, -3], [38, -22], [-41, -25], [54, -11], [33, -38], [-77, -25], [15, -20], [111, 27], [48, -14], [-7, -19], [64, -37], [29, -41], [44, 32], [51, -68], [-15, -32], [20, -30], [-53, -16], [-146, -12], [-23, -34], [-34, -5], [-30, -60], [-66, -19], [5, -16], [-353, 37], [-215, 48], [-23, -17], [59, 5], [-54, -36], [22, -15], [40, 8], [29, -14], [-44, -6], [72, -8], [26, -14], [55, 2], [8, -38], [71, 7], [129, -36], [-94, -52], [-29, -32], [27, 3], [31, 35], [85, -2], [13, -51], [-47, -52], [-62, -84], [73, 57], [84, 0], [48, 30], [-11, -38], [31, 10], [41, -32], [-29, 45], [37, 22], [-19, 20], [2, 52], [47, 5], [-8, -31], [50, -5], [4, -103], [12, -19], [15, 107], [81, -8], [7, -29], [38, 19], [27, -42], [25, -81], [-6, -55], [-46, -25], [-114, 10], [-37, 37], [-101, 61], [14, -76], [-25, -42], [-1, -33], [-42, -42], [-56, 6], [-48, -25], [-61, -55], [-66, 5], [-42, -23], [11, -44], [-27, -93], [-76, -78], [-71, 50], [-19, 26], [10, 86], [147, 132], [44, 61], [-62, 122], [-14, 42], [-276, 94], [-29, 23], [7, 24], [-70, 31], [-68, 71], [-9, 59], [-83, -22], [-47, 9], [-33, -38], [-37, -4], [-59, -31], [12, -16], [-104, -36], [-17, 18], [-37, -2], [-14, 21], [-45, -10], [-19, 14], [-81, -18], [-41, -73], [-43, -20], [0, -18], [-52, -50], [-36, -4], [-46, -45], [32, -41], [-37, -62], [-25, -76], [13, -26], [-33, -41], [-24, -104], [18, -45], [-7, -49], [20, -47], [-56, -95], [-57, 9], [-80, -41], [-42, -39], [-33, -136], [-58, -11], [-22, -33], [-28, 56], [-67, 35], [-115, 27], [-57, 27], [2, 28], [-31, -8], [-36, 36], [-41, 7], [-36, -13], [-39, -86], [-88, -10], [-103, -49], [-47, 47], [-92, -2], [-101, 43], [-60, -21], [-13, 84], [-56, 70], [-7, 28], [-208, 244], [-131, 26], [-69, -39], [-42, -52], [46, -67], [-19, -51], [-128, 63], [-63, -45], [-186, -11], [93, -91], [12, -94], [-51, -103], [-58, -57], [-42, -25], [109, -51], [-115, -103], [-355, 123], [-138, -8], [-80, 57], [-107, -34]], [[6001, 9158], [-45, 34], [10, 52], [65, 49], [56, 1], [34, -32], [-20, -61], [9, -36], [-41, 3], [-38, -19], [5, 39], [-35, -30]], [[5372, 9100], [0, 25], [34, 12], [70, 0], [-21, 37], [54, 15], [18, -24], [27, 9], [-13, -36], [39, -30], [28, 41], [33, 8], [10, -48], [27, 21], [11, -27], [-54, -26], [-8, -28], [-42, -58], [-26, -18], [-83, -21], [-28, 39], [-120, 83], [52, -4], [26, 21], [-34, 9]], [[5051, 8804], [53, 34], [38, -6], [20, -28], [42, 37], [-41, -1], [-39, 52], [154, 2], [-79, 7], [-22, 34], [11, 21], [47, -12], [0, -19], [39, 39], [26, 1], [-4, -36], [25, -53], [30, 74], [-38, 38], [-4, 39], [33, -12], [22, 12], [6, -31], [56, -9], [28, -35], [-10, -33], [-45, -34], [-43, -13], [3, -39], [4, -30], [-33, -20], [-41, 11], [-137, -37], [-26, 0], [-34, 31], [-41, 16]], [[6945, 9303], [-103, 6], [-92, 22], [-43, 34], [42, 41], [112, 1], [19, -40], [48, -7], [17, -57]], [[6995, 9429], [-37, -56], [-33, 13], [-30, 33], [35, 15], [-25, 22], [86, 53], [11, -17], [45, 17], [7, -28], [16, 52], [30, 7], [48, -13], [-56, 56], [62, 1], [18, -31], [0, -49], [23, -34], [-27, -41], [-69, -48], [-35, -8], [24, -18], [-62, -27], [-43, 1], [-6, 34], [18, 66]], [[7254, 9652], [55, 1], [38, -46], [24, -23], [-10, -23], [-88, -58], [-44, 9], [-36, 94], [-7, 41], [26, 35], [40, 2], [2, -32]], [[7006, 9740], [40, -36], [22, 2], [-5, 62], [48, -25], [7, -29], [-28, -5], [-43, -78], [-43, 10], [9, -31], [-36, -51], [-27, 13], [-7, -23], [-47, -26], [-86, 19], [-30, -46], [-30, 21], [-7, -27], [-47, 3], [-23, 32], [-15, -39], [-39, -6], [37, 73], [36, 26], [-122, -10], [23, 26], [-46, 11], [35, 8], [57, -20], [13, 32], [71, -37], [-15, 55], [44, -17], [19, 31], [41, -22], [-21, -27], [87, -3], [-36, 62], [12, 18], [64, -28], [-13, -17], [27, -26], [22, 47], [37, -10], [15, 16], [-51, 46], [25, 17], [26, -16], [0, 25]], [[4744, 8373], [-53, -5], [25, 51], [-109, -23], [-16, 12], [13, 37], [92, 10], [9, 37], [-70, 10], [19, 32], [53, -6], [9, 18], [-69, 31], [-5, 18], [83, -5], [-30, 41], [-66, -4], [22, 29], [53, -8], [24, 10], [94, -15], [-41, 26], [62, 0], [19, 11], [-96, 19], [-21, 37], [77, -16], [-28, 41], [55, -16], [69, -40], [-29, 47], [-27, 13], [-11, 45], [19, -3], [39, -60], [23, -6], [-3, 71], [30, -47], [32, 39], [21, -42], [-18, -26], [0, -43], [37, 59], [41, -21], [-26, -10], [-16, -42], [23, -13], [30, 12], [1, -56], [-48, -7], [-19, -19], [17, -51], [-27, -1], [30, -52], [-45, -7], [-51, 1], [-36, -14], [-45, -1], [15, 36], [-22, 0], [-90, -72], [-29, -42], [10, -20]], [[5634, 9304], [53, 30], [9, -30], [33, -30], [10, -32], [19, 31], [31, -31], [13, -17], [65, -25], [-38, -9], [-28, -31], [-60, -1], [-27, 19], [-1, 39], [-42, 64], [-37, 23]], [[7986, 9829], [-83, -7], [-44, 38], [54, 26], [-40, 10], [-50, -17], [-11, 28], [67, 44], [90, -31], [-10, 23], [-49, 37], [43, 19], [7, -16], [46, 7], [-9, -32], [37, -12], [47, 22], [11, -29], [-54, -26], [13, -10], [1, -21], [48, -6], [57, 34], [-10, -35], [-40, -21], [-65, -10], [-65, 11], [9, -26]], [[2445, 5293], [-79, -46], [-60, -43], [16, 56], [34, 3], [61, 34], [28, -4]], [[2350, 5309], [38, -6], [-52, -26], [-22, 32], [36, 0]], [[2581, 5003], [-13, -33], [-31, 17], [6, 53], [38, -37]], [[2537, 5053], [-15, -40], [-25, 30], [-27, -1], [5, 27], [45, 15], [17, -31]], [[2698, 5401], [-82, -51], [-15, 8], [23, 42], [74, 1]], [[2000, 4579], [-15, -23], [-17, 22], [16, 17], [16, -16]], [[2485, 4404], [-25, -1], [-54, -41], [12, 35], [65, 21], [2, -14]], [[1663, 4305], [29, 7], [18, -32], [-50, -13], [3, 38]], [[2848, 5320], [0, -4], [4, -3]], [[3663, 5407], [-75, -106], [-160, -257], [-19, -45], [89, -56], [85, -34], [16, -203], [-72, -142], [-95, 30], [-191, 37], [-107, -29], [-93, -64], [-133, -197], [-11, -32], [-57, -59], [23, -88], [-48, -93], [-41, -66], [91, -204], [-54, -74], [23, -118], [-30, -103], [75, -213]], [[2879, 3291], [-47, -16], [-27, 28], [-111, 27], [-14, -26], [-22, 26], [-39, -9], [-52, 83], [-66, 40], [-22, 29], [-14, 58], [-87, 37], [-52, -13], [-19, -25], [-35, 23], [-22, -10], [-101, 24], [-56, 1], [-65, -105], [35, -99], [-55, -23], [-20, -40], [-23, 13], [-4, -48], [-86, -32], [-43, 27], [-160, 62]], [[1368, 3815], [-36, 72], [21, 14], [40, -35], [-34, 47], [116, -14], [13, 31]], [[1522, 3941], [4, 0]], [[1526, 3941], [53, 6]], [[1585, 3952], [41, 8], [-41, -2]], [[1556, 4119], [81, 2], [12, 32], [42, -37], [11, -66], [46, 24], [64, 14], [-81, -7], [-14, 48], [113, 29], [-71, -11], [-48, 6], [-2, 31], [32, 5], [46, 38], [14, -35], [32, 54], [79, 42], [42, -73], [-2, -26], [36, -27], [23, -39], [-12, -38], [-36, -36], [56, 26], [45, -29], [67, -2], [-12, 16], [-61, 13], [-16, 35], [20, 24], [78, 21], [20, -16], [48, 7], [37, -18], [42, 16], [41, -26], [45, 37], [-52, 15], [1, 40], [53, 12], [-27, 33], [-67, -37], [31, 57], [41, 21], [15, 25], [49, 26], [33, -11], [46, 46], [84, 27], [-18, 37], [-62, 14], [-53, -14], [-6, 30], [48, 43], [81, 28], [22, 29], [-88, 12], [-14, 27], [-19, -50], [-80, -44], [-48, -47], [-44, -13], [-55, -46], [73, 32], [63, 36], [46, -28], [7, -20], [-32, -26], [-31, -54], [-37, -7], [-64, -33], [-11, -28], [-74, -47], [-67, -12], [-60, -42], [-39, -11], [-23, 16], [-11, 46], [-21, 21], [-12, 68], [75, 24], [12, 46], [-66, -40], [-118, -50], [3, 46], [86, 36], [-75, -11], [-14, 11], [45, 34], [63, 33], [-14, 17], [43, 0], [109, 41], [-20, 20], [-76, -35], [55, 37], [-10, 15], [-47, -21], [27, 61], [-29, 16], [31, 45], [36, -23], [32, 9], [-33, 12], [25, 15], [0, 47], [73, 6], [-44, 21], [56, 23], [24, 28], [-3, 37], [20, 15], [39, -3], [-21, 29], [-33, 0], [18, 21], [33, -22], [2, 37], [48, -27], [31, -34], [16, 5], [-61, 68], [54, 12], [-18, 46], [39, -52], [24, 58], [0, 39], [37, -17], [8, -44], [39, -33], [-6, -26], [50, 3], [18, -13], [-16, -47], [29, 20], [13, 42], [93, 21], [-83, -10], [8, 34], [30, 8], [44, 36], [-17, 45], [-35, -42], [-36, 48], [-9, 54], [51, 28], [8, 18], [89, 12], [20, 14], [-75, 15], [54, 11], [0, 16], [-52, -11], [29, 26], [128, 63], [61, -15], [-30, 22], [-35, 3], [-53, -18], [-66, -45], [-46, -16], [1, -19], [-54, -25], [-37, -45], [-53, -9], [45, 24], [27, 34], [-32, -8], [-43, 12], [20, 17], [90, 14], [54, 23], [-158, -26], [59, 48], [42, -17], [-14, 25], [61, 10], [74, 31], [-8, 24], [63, 39], [25, -8]], [[2369, 5209], [-30, 1], [99, 69], [68, -39], [-20, -24], [-50, -24], [-14, 17], [13, 31], [-28, 0], [-38, -31]], [[1388, 4307], [7, 25], [70, 13], [86, 42], [-29, 4], [-2, 12], [54, 15], [8, -73], [-31, -24], [-109, -12], [27, 15], [-81, -17]], [[2473, 4943], [-20, 38], [16, 13], [8, 17], [-41, -6], [-15, 32], [16, 16], [69, -45], [17, -40], [42, 0], [-3, -51], [-51, 31], [-38, -5]], [[1644, 4249], [34, 10], [37, -30], [-27, -25], [-93, -35], [-54, -3], [-81, -37], [-43, -1], [-42, 25], [14, 36], [38, 37], [101, 12], [-53, 19], [93, 27], [17, -17], [20, 24], [29, 6], [10, -48]], [[2311, 1396], [0, 41], [-25, 17], [-12, -16]], [[2170, 1168], [-54, 19], [50, -80], [34, -10], [-6, -71], [27, -34], [-17, -43], [-41, 19], [-18, -109], [-16, -10], [-1, -51], [-14, 51], [-1, -65], [-21, -18], [-9, 34], [-73, -71], [-42, -1], [-3, 41], [-30, 17], [-26, 45], [-2, -34], [-21, 65], [-34, -9], [43, -63], [28, -17], [-27, -24], [13, -20], [-44, -27], [-40, 6], [21, -22], [-47, -1], [-23, -27], [-15, 13], [-11, -36], [68, 0], [-33, -46]], [[2879, 3291], [17, -49], [-61, -412], [106, -122], [58, 4], [113, -161], [-30, -121], [-32, -41], [-9, -62], [-27, -11], [-62, 3], [-85, -29], [42, -93], [23, -119], [44, -69], [2, -32], [35, -66], [-1, -82], [-41, -63], [17, -98], [-16, -72], [-20, -45], [-40, -57], [-64, -56], [-70, 8], [-56, -46]]], "bbox": [4.643928385702428, 57.99691361192109, 31.07518912842647, 71.16594089569337], "transform": { "scale": [0.0026433904133137355, 0.00131703443182041], "translate": [4.643928385702428, 57.99691361192109] }, "copyright": "Copyright (c) 2020 Highsoft AS, Based on data from Kartverket", "copyrightShort": "Kartverket", "copyrightUrl": "http://www.kartverket.no" }, + "https://code.highcharts.com/mapdata/countries/se/se-all.topo.json": { "type": "Topology", "objects": { "default": { "type": "GeometryCollection", "geometries": [{ "type": "Polygon", "arcs": [[0]], "id": "SE.4461", "properties": { "hc-group": "admin1", "hc-middle-x": 0.61, "hc-middle-y": 0.37, "hc-key": "se-4461", "hc-a2": "NU", "labelrank": "20", "hasc": "-99", "alt-name": null, "woe-id": "-99", "subregion": null, "fips": null, "postal-code": null, "name": null, "country": "Sweden", "type-en": null, "region": null, "longitude": "12.6979", "woe-name": null, "latitude": "55.9059", "woe-label": null, "type": null } }, { "type": "MultiPolygon", "arcs": [[[1]], [[2, 3, 4, 5, 6, 7, 8]]], "id": "SE.KA", "properties": { "hc-group": "admin1", "hc-middle-x": 0.38, "hc-middle-y": 0.38, "hc-key": "se-ka", "hc-a2": "KA", "labelrank": "7", "hasc": "SE.KA", "alt-name": "Kalmar län", "woe-id": "2347052", "subregion": null, "fips": "SW09", "postal-code": "KA", "name": "Kalmar", "country": "Sweden", "type-en": "County", "region": null, "longitude": "16.0875", "woe-name": "Kalmar", "latitude": "57.2764", "woe-label": "Kalmar, SE, Sweden", "type": "Laen|län" } }, { "type": "MultiPolygon", "arcs": [[[9]], [[10, 11, 12, 13, 14, -7]], [[15, -9]], [[7, 16]]], "id": "SE.OG", "properties": { "hc-group": "admin1", "hc-middle-x": 0.53, "hc-middle-y": 0.39, "hc-key": "se-og", "hc-a2": "OG", "labelrank": "7", "hasc": "SE.OG", "alt-name": "Östergötlands län", "woe-id": "2347059", "subregion": null, "fips": "SW16", "postal-code": "OG", "name": "Östergötland", "country": "Sweden", "type-en": "County", "region": null, "longitude": "15.7022", "woe-name": "Östergötland", "latitude": "58.3655", "woe-label": "Ostergotland, SE, Sweden", "type": "Laen|län" } }, { "type": "MultiPolygon", "arcs": [[[17]], [[18]], [[19]], [[20]], [[21, 22]]], "id": "SE.NB", "properties": { "hc-group": "admin1", "hc-middle-x": 0.52, "hc-middle-y": 0.54, "hc-key": "se-nb", "hc-a2": "NB", "labelrank": "7", "hasc": "SE.NB", "alt-name": "Norrbottens län", "woe-id": "2347057", "subregion": null, "fips": "SW14", "postal-code": "NB", "name": "Norrbotten", "country": "Sweden", "type-en": "County", "region": null, "longitude": "20.4529", "woe-name": "Norrbotten", "latitude": "66.837", "woe-label": "Norrbotten, SE, Sweden", "type": "Laen|län" } }, { "type": "MultiPolygon", "arcs": [[[23]], [[24, 25, 26, 27]]], "id": "SE.VN", "properties": { "hc-group": "admin1", "hc-middle-x": 0.64, "hc-middle-y": 0.28, "hc-key": "se-vn", "hc-a2": "VN", "labelrank": "7", "hasc": "SE.VN", "alt-name": "Västernorrlands län", "woe-id": "2347065", "subregion": null, "fips": "SW24", "postal-code": "VN", "name": "Västernorrland", "country": "Sweden", "type-en": "County", "region": null, "longitude": "17.3697", "woe-name": "Västernorrland", "latitude": "62.9145", "woe-label": "Vasternorrland, SE, Sweden", "type": "Laen|län" } }, { "type": "MultiPolygon", "arcs": [[[28]], [[-27, 29, 30, -23, 31]]], "id": "SE.VB", "properties": { "hc-group": "admin1", "hc-middle-x": 0.43, "hc-middle-y": 0.53, "hc-key": "se-vb", "hc-a2": "VB", "labelrank": "7", "hasc": "SE.VB", "alt-name": "Västerbottens län", "woe-id": "2347064", "subregion": null, "fips": "SW23", "postal-code": "VB", "name": "Västerbotten", "country": "Sweden", "type-en": "County", "region": null, "longitude": "18.3726", "woe-name": "Västerbotten", "latitude": "64.70480000000001", "woe-label": "Vasterbotten, SE, Sweden", "type": "Laen|län" } }, { "type": "MultiPolygon", "arcs": [[[32]], [[33]], [[34]]], "id": "SE.GT", "properties": { "hc-group": "admin1", "hc-middle-x": 0.32, "hc-middle-y": 0.64, "hc-key": "se-gt", "hc-a2": "GT", "labelrank": "7", "hasc": "SE.GT", "alt-name": "Gotlands län|Gothland|Gottland", "woe-id": "2347048", "subregion": null, "fips": "SW18", "postal-code": "GT", "name": "Gotland", "country": "Sweden", "type-en": "County", "region": null, "longitude": "18.4826", "woe-name": "Gotland", "latitude": "57.4733", "woe-label": "Gotland, SE, Sweden", "type": "Laen|län" } }, { "type": "MultiPolygon", "arcs": [[[35]], [[36]], [[37]], [[38]], [[39]], [[40]], [[41]], [[42]], [[43]], [[44]], [[45]], [[46]], [[47, 48, 49]]], "id": "SE.ST", "properties": { "hc-group": "admin1", "hc-middle-x": 0.3, "hc-middle-y": 0.73, "hc-key": "se-st", "hc-a2": "ST", "labelrank": "7", "hasc": "SE.ST", "alt-name": "Stockholms län|Estocolmo|Stoccolmo", "woe-id": "2347067", "subregion": null, "fips": "SW26", "postal-code": "ST", "name": "Stockholm", "country": "Sweden", "type-en": "County", "region": null, "longitude": "17.8652", "woe-name": "Stockholm", "latitude": "59.3659", "woe-label": "Stockholm, SE, Sweden", "type": "Laen|län" } }, { "type": "MultiPolygon", "arcs": [[[50]], [[51, 52, 53, 54, -49]]], "id": "SE.UP", "properties": { "hc-group": "admin1", "hc-middle-x": 0.56, "hc-middle-y": 0.42, "hc-key": "se-up", "hc-a2": "UP", "labelrank": "7", "hasc": "SE.UP", "alt-name": "Uppsala län", "woe-id": "2347062", "subregion": null, "fips": "SW21", "postal-code": "UP", "name": "Uppsala", "country": "Sweden", "type-en": "County", "region": null, "longitude": "17.7896", "woe-name": "Uppsala", "latitude": "60.1522", "woe-label": "Uppsala, SE, Sweden", "type": "Laen|län" } }, { "type": "MultiPolygon", "arcs": [[[55]], [[56, 57, 58, -4]]], "id": "SE.BL", "properties": { "hc-group": "admin1", "hc-middle-x": 0.36, "hc-key": "se-bl", "hc-a2": "BL", "labelrank": "7", "hasc": "SE.BL", "alt-name": "Blekinge län", "woe-id": "2347045", "subregion": null, "fips": "SW02", "postal-code": "BL", "name": "Blekinge", "country": "Sweden", "type-en": "County", "region": null, "longitude": "15.2163", "woe-name": "Blekinge", "latitude": "56.2929", "woe-label": "Blekinge, SE, Sweden", "type": "Laen|län" } }, { "type": "MultiPolygon", "arcs": [[[59]], [[60]], [[61, -12, 62, 63, 64, 65]]], "id": "SE.VG", "properties": { "hc-group": "admin1", "hc-middle-x": 0.45, "hc-middle-y": 0.45, "hc-key": "se-vg", "hc-a2": "VG", "labelrank": "7", "hasc": "SE.VG", "alt-name": null, "woe-id": "20070562", "subregion": null, "fips": null, "postal-code": "VG", "name": "Västra Götaland", "country": "Sweden", "type-en": "County", "region": null, "longitude": "12.8371", "woe-name": "Västra Götaland", "latitude": "58.2428", "woe-label": "Vastra Gotaland, SE, Sweden", "type": "Laen|län" } }, { "type": "Polygon", "arcs": [[66, 67, 68, 69, 70, 71]], "id": "SE.KO", "properties": { "hc-group": "admin1", "hc-middle-x": 0.49, "hc-middle-y": 0.54, "hc-key": "se-ko", "hc-a2": "KO", "labelrank": "7", "hasc": "SE.KO", "alt-name": "Dalecarlia|Kopparberg", "woe-id": "2347053", "subregion": null, "fips": "SW10", "postal-code": "KO", "name": "Dalarna", "country": "Sweden", "type-en": "County", "region": null, "longitude": "14.4404", "woe-name": "Dalarna", "latitude": "60.814", "woe-label": "Dalarna, SE, Sweden", "type": "Laen|län" } }, { "type": "Polygon", "arcs": [[-69, 72, -25, 73, -54, 74]], "id": "SE.GV", "properties": { "hc-group": "admin1", "hc-middle-x": 0.62, "hc-middle-y": 0.28, "hc-key": "se-gv", "hc-a2": "GV", "labelrank": "7", "hasc": "SE.GV", "alt-name": "Gävleborgs län", "woe-id": "2347046", "subregion": null, "fips": "SW03", "postal-code": "GV", "name": "Gävleborg", "country": "Sweden", "type-en": "County", "region": null, "longitude": "16.5023", "woe-name": "Gävleborg", "latitude": "61.3691", "woe-label": "Gavleborg, SE, Sweden", "type": "Laen|län" } }, { "type": "Polygon", "arcs": [[75, 76, -63, -11, -6]], "id": "SE.JO", "properties": { "hc-group": "admin1", "hc-middle-y": 0.53, "hc-key": "se-jo", "hc-a2": "JO", "labelrank": "7", "hasc": "SE.JO", "alt-name": "Jönköpings län", "woe-id": "2347051", "subregion": null, "fips": "SW08", "postal-code": "JO", "name": "Jönköping", "country": "Sweden", "type-en": "County", "region": null, "longitude": "14.424", "woe-name": "Jönköping", "latitude": "57.5478", "woe-label": "Jonkoping, SE, Sweden", "type": "Laen|län" } }, { "type": "Polygon", "arcs": [[-76, -5, -59, 77, 78]], "id": "SE.KR", "properties": { "hc-group": "admin1", "hc-middle-x": 0.61, "hc-middle-y": 0.51, "hc-key": "se-kr", "hc-a2": "KR", "labelrank": "7", "hasc": "SE.KR", "alt-name": "Kronobergs län", "woe-id": "2347055", "subregion": null, "fips": "SW12", "postal-code": "KR", "name": "Kronoberg", "country": "Sweden", "type-en": "County", "region": null, "longitude": "14.5773", "woe-name": "Kronoberg", "latitude": "56.8265", "woe-label": "Kronoberg, SE, Sweden", "type": "Laen|län" } }, { "type": "Polygon", "arcs": [[-71, 79, 80, -13, -62, 81]], "id": "SE.OR", "properties": { "hc-group": "admin1", "hc-middle-y": 0.59, "hc-key": "se-or", "hc-a2": "OR", "labelrank": "7", "hasc": "SE.OR", "alt-name": "Örebro|Örebro län", "woe-id": "2347058", "subregion": null, "fips": "SW15", "postal-code": "OR", "name": "Örebro", "country": "Sweden", "type-en": "County", "region": null, "longitude": "15.0594", "woe-name": "Örebro", "latitude": "59.3913", "woe-label": "Örebro, SE, Sweden", "type": "Laen|län" } }, { "type": "Polygon", "arcs": [[-80, -70, -75, -53, 82]], "id": "SE.VM", "properties": { "hc-group": "admin1", "hc-middle-x": 0.52, "hc-middle-y": 0.38, "hc-key": "se-vm", "hc-a2": "VM", "labelrank": "7", "hasc": "SE.VM", "alt-name": "Västmanlands län", "woe-id": "2347066", "subregion": null, "fips": "SW25", "postal-code": "VM", "name": "Västmanland", "country": "Sweden", "type-en": "County", "region": null, "longitude": "16.4244", "woe-name": "Västmanland", "latitude": "59.7979", "woe-label": "Vastmanland, SE, Sweden", "type": "Laen|län" } }, { "type": "Polygon", "arcs": [[-77, -79, 83, 84, -64]], "id": "SE.HA", "properties": { "hc-group": "admin1", "hc-middle-x": 0.43, "hc-middle-y": 0.48, "hc-key": "se-ha", "hc-a2": "HA", "labelrank": "7", "hasc": "SE.HA", "alt-name": "Hallands län", "woe-id": "2347049", "subregion": null, "fips": "SW06", "postal-code": "HA", "name": "Halland", "country": "Sweden", "type-en": "County", "region": null, "longitude": "12.8007", "woe-name": "Halland", "latitude": "56.9745", "woe-label": "Halland, SE, Sweden", "type": "Laen|län" } }, { "type": "Polygon", "arcs": [[85, -14, -81, -83, -52, -48]], "id": "SE.SD", "properties": { "hc-group": "admin1", "hc-middle-x": 0.58, "hc-middle-y": 0.46, "hc-key": "se-sd", "hc-a2": "SD", "labelrank": "7", "hasc": "SE.SD", "alt-name": "Södermanlands län|Sörmland", "woe-id": "2347061", "subregion": null, "fips": "SW18", "postal-code": "SD", "name": "Södermanland", "country": "Sweden", "type-en": "County", "region": null, "longitude": "16.6334", "woe-name": "Södermanland", "latitude": "59.0778", "woe-label": "Sodermanland, SE, Sweden", "type": "Laen|län" } }, { "type": "Polygon", "arcs": [[-82, -66, 86, -72]], "id": "SE.VR", "properties": { "hc-group": "admin1", "hc-middle-x": 0.52, "hc-middle-y": 0.62, "hc-key": "se-vr", "hc-a2": "VR", "labelrank": "7", "hasc": "SE.VR", "alt-name": "Värmlands län", "woe-id": "2347063", "subregion": null, "fips": "SW22", "postal-code": "VR", "name": "Värmland", "country": "Sweden", "type-en": "County", "region": null, "longitude": "13.0764", "woe-name": "Värmland", "latitude": "59.8068", "woe-label": "Varmland, SE, Sweden", "type": "Laen|län" } }, { "type": "Polygon", "arcs": [[-68, 87, -30, -26, -73]], "id": "SE.JA", "properties": { "hc-group": "admin1", "hc-middle-x": 0.47, "hc-middle-y": 0.53, "hc-key": "se-ja", "hc-a2": "JA", "labelrank": "7", "hasc": "SE.JA", "alt-name": "Jämtlands län", "woe-id": "2347050", "subregion": null, "fips": "SW07", "postal-code": "JA", "name": "Jämtland", "country": "Sweden", "type-en": "County", "region": null, "longitude": "14.4806", "woe-name": "Jämtland", "latitude": "63.3306", "woe-label": "Jamtland, SE, Sweden", "type": "Laen|län" } }, { "type": "Polygon", "arcs": [[88, -84, -78, -58]], "id": "SE.SN", "properties": { "hc-group": "admin1", "hc-middle-x": 0.52, "hc-middle-y": 0.51, "hc-key": "se-sn", "hc-a2": "SN", "labelrank": "7", "hasc": "SE.SN", "alt-name": null, "woe-id": "20070561", "subregion": null, "fips": "SW11", "postal-code": "SN", "name": "Skåne", "country": "Sweden", "type-en": "County", "region": null, "longitude": "13.5193", "woe-name": "Skåne", "latitude": "55.9073", "woe-label": "Skane, SE, Sweden", "type": "Laen|län" } }], "hc-transform": { "default": { "crs": "+proj=utm +zone=33 +datum=WGS84 +units=m +no_defs", "scale": 0.000456260013791, "jsonres": 15.5, "jsonmarginX": -999, "jsonmarginY": 9851, "xoffset": 276816.518623, "yoffset": 7668702.40259 } } } }, "arcs": [[[1223, 399], [-32, 15], [24, 4], [14, -6], [-6, -13]], [[4566, 1459], [38, -18], [-63, -35], [20, -33], [-72, -89], [-30, -63], [-48, -36], [8, -38], [-40, -66], [-37, -12], [-64, -120], [-43, -56], [-58, -162], [-58, -78], [-60, -8], [-10, 230], [42, 69], [127, 171], [74, 14], [132, 166], [15, 61], [39, 20], [5, 54], [69, 40], [14, -11]], [[4270, 1931], [72, -54], [-42, 10], [24, -39], [-88, 33], [-98, 57], [13, -36], [44, -10], [-20, -35], [-79, 4], [164, -95], [-42, 7], [-60, 48], [-95, 40], [135, -88], [73, -35], [13, -27], [-99, 16], [41, -59], [-89, -47], [88, -6], [46, -62], [-39, -17], [26, -25], [-31, -24], [-65, 0], [12, -46], [-60, -18], [-14, -85], [59, -44], [31, -53], [-47, 14], [-63, -37], [22, -47], [-45, -103], [15, -18], [-56, -18], [17, -61], [-94, -18], [-33, -74], [-91, -95], [-21, -61]], [[3794, 723], [-67, -7], [-137, 35], [-157, 93], [-63, -10], [-72, 11], [-45, -15]], [[3253, 830], [35, 56], [9, 86], [-20, 59], [127, 58], [-23, 48], [50, 15], [46, -15], [98, 4], [49, 37], [-31, 45], [-102, 80], [-62, 20], [-30, 40]], [[3399, 1363], [-44, 66], [22, 20], [3, 81], [18, 20], [47, -16], [39, 46], [-36, 41], [37, 27], [-169, 80]], [[3316, 1728], [13, 28], [71, 20], [63, 50], [101, 9], [125, -29], [85, 32], [1, 52], [27, 31], [-41, 43], [12, 33], [103, -6], [17, 22], [82, 16], [105, 1], [119, -35], [38, -62], [13, -1]], [[4250, 1932], [3, 0]], [[4253, 1932], [17, -1]], [[4402, 2231], [-23, -33], [-3, -20], [-31, 38], [57, 15]], [[3316, 1728], [-190, 8], [-32, 12], [-57, 86], [-41, 42], [22, 61], [36, 12], [-84, 103], [-120, -44], [-182, 12], [-87, 31], [-43, 51]], [[2538, 2102], [294, 308]], [[2832, 2410], [63, 26], [90, 13], [122, 80], [82, 27], [115, 0], [85, 21], [65, 67], [76, 14]], [[3530, 2658], [41, -11], [55, 29], [176, -62], [168, -73], [120, -97], [136, -3], [116, -39]], [[4342, 2402], [-421, 25], [40, -38], [28, 14], [68, -28], [22, 36], [61, -16], [90, 1], [118, -14], [41, -45], [80, -28], [-89, -40], [-85, -11], [-208, 27], [203, -58], [46, -40], [-109, 10], [53, -25], [76, 3], [-72, -33], [74, -25], [14, -48], [-33, -35], [-122, 53], [89, -86], [4, -34], [-60, -35]], [[4253, 1932], [4, 1], [13, -2]], [[4253, 1932], [-5, 0], [2, 0]], [[8574, 7433], [-24, -10], [8, -23], [-73, 44], [89, -11]], [[9097, 7563], [-10, -25], [-68, 39], [36, 16], [42, -30]], [[9724, 7594], [-50, -34], [-44, 18], [7, 20], [87, -4]], [[8963, 7572], [-65, 8], [8, 30], [41, -11], [16, -27]], [[3341, 8041], [-37, 99], [185, 79], [283, 211], [66, 34], [223, 86], [17, 108], [-238, 162], [54, 63], [130, 9], [89, 27], [96, 65], [118, 169], [35, 23], [315, 95], [77, 48], [441, -99], [21, 2], [188, 136], [17, 29], [-42, 144], [28, 102], [204, 28], [159, -53], [300, 3], [341, -59], [345, -54], [61, 10], [181, 83], [-218, 47], [145, 48], [66, 38], [90, 106], [-10, 77], [-183, 82], [398, 10], [133, -18], [106, -32], [-21, -54], [128, -18], [110, -38], [75, -47], [69, -3], [46, -45], [194, -50], [14, -22], [139, -15], [117, -66], [179, -1], [231, -38], [110, -28], [44, 6], [75, -42], [114, -28], [78, -59], [-2, -64], [93, 11], [45, -13], [39, -56], [212, -86], [-124, -37], [-9, -106], [51, -110], [-60, -23], [-32, -50], [34, -31], [89, 7], [131, -25], [-21, -95], [-102, -21], [-17, -78], [65, -41], [15, -35], [100, -54], [90, -64], [51, -55], [-82, -45], [-7, -137], [-118, -44], [-67, -49], [27, -54], [-8, -42], [44, -72], [126, -33], [100, -82], [28, -74], [81, -78], [-17, -27], [-141, -10], [-22, -22], [-182, 52], [-62, -16], [-95, 4], [-77, -29], [-7, 35], [-66, -20], [-46, 20], [-30, -25], [65, -19], [-18, -39], [-48, 32], [-85, -34], [-25, 40], [-158, 34], [-42, 41], [-115, 30], [38, -31], [-6, -71], [-111, 32], [-42, 35], [-82, 3], [-38, -43], [5, -49], [48, -46], [-100, 15], [32, -60], [62, 17], [36, -62], [-126, 30], [-5, -16], [-300, 76], [-79, 41], [18, -31], [256, -75], [42, -32], [-77, -16], [-169, 13], [137, -50], [-16, -25], [-53, 15], [-1, -30], [-115, -9], [15, -39], [-67, 27], [-179, 7], [-32, -26], [72, -28], [47, 11], [75, -35], [-96, -35], [-56, 42], [-121, 56], [-63, -26], [98, -10], [113, -67], [61, -61], [-56, -8], [29, -51]], [[8022, 7100], [-242, 71], [-883, 107], [-316, -44], [-57, -30], [-173, -34], [-116, 37], [-15, 35], [-146, 34], [-42, 25], [-127, 23], [-91, 50], [-108, 1], [-75, 28], [-164, 36], [-52, 36], [-307, 56], [-238, 71], [-452, 184], [-293, 51], [-486, 146], [-298, 58]], [[5346, 5406], [53, 0], [-28, -43], [-75, -3], [1, 44], [49, 2]], [[4891, 4968], [-221, 22], [-152, 2], [-401, 51], [-213, 8], [-447, 68], [-73, -4], [-133, -49]], [[3251, 5066], [-127, -6], [-96, 18], [-166, 92], [14, 42], [-34, 75], [129, 19], [137, -6], [335, 37], [212, 42], [327, 10], [60, 15], [205, 130], [236, 41], [3, 11], [-604, 281], [-34, 30], [-90, 31], [-23, 72], [-60, 57], [21, 18], [172, 28], [76, -7], [172, 10], [80, 23], [29, 84], [90, 120]], [[4315, 6333], [119, -42], [634, -51], [486, 68], [81, -8], [-29, -32], [68, -56], [120, -14], [214, -45], [16, -25], [79, -30], [98, -74], [83, -99]], [[6284, 5925], [-26, 0], [-9, -85], [-106, -25], [-14, -64], [-58, -31], [-101, 66], [-115, -19], [120, -21], [-14, -20], [-139, 24], [33, -45], [-110, 16], [22, -51], [-64, 5], [5, -44], [-45, -30], [-78, 30], [22, -30], [-48, 4], [-80, -22], [199, 1], [3, -28], [-84, 11], [-19, -17], [90, -30], [-85, 5], [54, -32], [-107, -20], [-50, 32], [-46, -35], [58, 4], [-67, -47], [-90, -2], [-33, 27], [86, 9], [-70, 22], [-67, -33], [-31, 11], [-4, 67], [-27, -17], [-60, 64], [-89, 10], [95, -37], [56, -53], [-4, -40], [94, -24], [-8, -86], [-96, 5], [131, -33], [17, -22], [-74, -25], [-13, 39], [-32, -48], [-66, -47], [-100, 10], [-26, -27], [38, -18], [-121, 9], [-87, 64], [-74, -28], [29, -64], [-30, -5], [41, -55], [34, 1], [17, -42], [148, -30], [-62, -20], [-48, 10], [-8, -51]], [[7475, 6084], [9, 48], [44, 22], [-11, -50], [-42, -20]], [[4315, 6333], [-371, 175], [-53, 13], [-84, -9], [-75, 67], [-151, 53], [-35, 59], [-54, 15], [-57, -41], [-51, 51], [-184, 75], [52, 16], [-70, 42], [-120, 24], [-68, 64], [-106, 26], [-136, 89], [-287, 83]], [[2465, 7135], [51, 102], [87, 46], [-2, 107], [39, 173], [58, 58], [7, 46], [-80, 206], [391, 20], [329, 89], [-4, 59]], [[8022, 7100], [-88, -9], [26, -25], [-61, -5], [-33, -39], [-96, -3], [-55, -88], [-53, -10], [-22, 26], [-31, -28], [55, -28], [79, 6], [67, -15], [-58, -16], [62, -35], [-26, -20], [-103, 45], [-26, -12], [93, -41], [12, -28], [75, -36], [22, 26], [69, -44], [-59, -20], [69, -4], [11, -44], [83, 15], [1, -25], [-66, -19], [-108, -62], [-98, -17], [-98, -63], [-28, 4], [-102, -71], [-39, -106], [-55, -28], [-36, -56], [-72, -15], [-7, -43], [-48, 24], [-54, -34], [-30, 33], [-68, -39], [5, -40], [-42, -24], [-37, 43], [-8, -62], [-47, 32], [-2, -35], [-93, -6], [-37, 17], [-246, -103], [16, -43], [-65, -25], [-85, 66], [-82, 29], [-13, -38], [54, -17], [-13, -53], [-78, 27], [-69, 6]], [[5877, 1821], [52, 38], [114, 8], [65, -56], [-77, -14], [-33, -56], [-104, 4], [-35, -87], [38, -6], [-37, -73], [20, -43], [92, -7], [17, -26], [-122, -29], [-80, -49], [36, -39], [-94, -18], [-157, -67], [-37, -70], [15, -30], [-46, -35], [-71, -20], [-52, 5], [98, 88], [19, 36], [-50, -22], [3, 52], [-34, 9], [-19, 62], [-47, 21], [62, 88], [-25, 21], [-26, 75], [37, 50], [126, 68], [106, 96], [67, 26], [34, -6], [48, 52], [65, 12], [32, -58]], [[6212, 1931], [90, -19], [-69, -8], [-83, -32], [-9, -45], [-70, 43], [38, 46], [103, 15]], [[6266, 2194], [-59, 4], [-21, 29], [90, -12], [-10, -21]], [[5163, 2562], [12, -32], [-43, 2], [4, 47], [27, -17]], [[5437, 2622], [107, 32], [-26, -39], [-94, -11], [13, 18]], [[5442, 2687], [-53, -15], [-12, -29], [-57, 15], [35, 27], [87, 2]], [[5037, 2614], [-37, 4], [2, 96], [33, -8], [16, -42], [-14, -50]], [[5625, 2710], [-39, -35], [-49, 18], [26, 33], [69, 29], [-7, -45]], [[5678, 2880], [11, -21], [-14, -23], [-135, 52], [138, -8]], [[5811, 2942], [34, -17], [-46, -37], [-35, 50], [47, 4]], [[5466, 2937], [-28, -19], [-68, 12], [-1, 23], [97, -16]], [[5801, 3059], [-69, -35], [-30, -47], [-35, 45], [63, 40], [71, -3]], [[5930, 3108], [-64, -22], [72, 45], [77, 10], [-45, -47], [-40, 14]], [[6036, 3263], [4, -14], [-81, -7], [52, 57], [25, -36]], [[5876, 3528], [-16, -19], [-37, 17], [30, 26], [23, -24]], [[4958, 2643], [-47, 19], [-105, 5], [-78, 168], [36, 20], [8, 51], [81, 23], [-4, 22]], [[4849, 2951], [60, 50], [55, 91], [-9, 64], [70, 31], [82, -13], [176, 44], [62, 0], [93, 64], [137, 31], [29, 72], [47, 20], [-23, 25], [73, 58]], [[5701, 3488], [74, 19], [53, -16], [26, -32], [51, 24], [2, -34], [61, -88], [129, -37], [-4, -46], [-34, 4], [-56, 44], [-67, -71], [-54, -17], [191, 4], [34, -9], [-37, -32], [-74, -3], [-20, 20], [-101, -36], [-94, -49], [20, -22], [-209, -83], [-110, -11], [-15, -20], [44, -38], [-91, 8], [-6, 36], [-74, -13], [11, -23], [-69, 0], [106, -50], [56, -15], [26, 32], [49, 9], [125, -20], [-41, 64], [44, -1], [99, -43], [25, -33], [-98, -24], [-118, 7], [-15, 20], [-53, -16], [2, -37], [44, -19], [61, -70], [-147, -15], [-98, -45], [-41, 1], [-110, -105], [-5, -40], [-32, 47], [-77, -1], [7, 147], [-37, -53], [-34, 20], [20, 38], [-63, -27], [16, -56], [-35, -39]], [[5581, 3772], [59, -58], [-42, 9], [56, -63], [28, 8], [21, -45], [-119, 46], [-14, 36], [11, 67]], [[4849, 2951], [-21, 21], [-89, 32], [-42, 30], [-74, 20], [-139, 4]], [[4484, 3058], [-52, 100], [-83, 100], [52, 29], [0, 28], [113, -14], [34, -19], [99, 33], [21, 61], [-33, 17], [35, 37], [74, 26], [67, 108], [-18, 18], [-111, 43]], [[4682, 3625], [-6, 55], [75, 74], [47, 101]], [[4798, 3855], [152, 17], [65, -28], [-43, -18], [27, -51], [78, -12], [-11, 27], [68, 37], [78, 10], [60, -34], [-20, -30], [99, -34], [62, -48], [64, -13], [-42, -19], [20, -21], [71, 20], [93, -9], [20, -36], [70, -24], [-1, -23], [-178, 42], [88, -55], [-35, -2], [118, -63]], [[3533, 564], [-19, -30], [-39, 9], [15, 25], [43, -4]], [[3794, 723], [-23, -59], [-80, -58], [-62, -65], [-49, 14], [29, 39], [-72, -1], [-64, 27], [-44, -25], [-13, 34], [-107, -20], [-88, -29], [-19, 35], [-47, -23], [-214, 12], [-138, -3], [-68, -15], [63, -85], [-40, -22], [-80, 7], [-5, 34], [-39, -3]], [[2634, 517], [26, 74], [-34, 61], [-63, 12], [-37, 67], [97, 96]], [[2623, 827], [142, -56], [145, -14], [62, 47], [84, 12], [85, -15], [24, 18], [88, 11]], [[477, 1981], [-7, -44], [-27, 12], [-27, -38], [-50, -20], [-52, 14], [-16, 67], [179, 9]], [[515, 2119], [19, -27], [-7, -62], [-75, -19], [-94, 18], [-52, -28], [-85, 33], [18, 22], [133, 56], [46, 0], [6, 34], [52, 1], [39, -28]], [[2449, 2680], [62, -81], [14, -44], [65, -80], [65, -18], [88, 18], [23, -35], [66, -30]], [[2538, 2102], [-148, -162], [9, -45], [-27, -18], [-127, -37], [-34, -26], [-54, 18], [-139, -1], [13, -53], [-65, -157], [-108, -95], [-99, -58], [-74, -28], [-152, -117]], [[1533, 1323], [-126, 31], [-6, 57], [-151, 18], [-56, 32], [-61, 4], [-63, -40], [-61, 7], [-31, 57], [17, 37], [-59, 41], [-6, 67], [-21, 24], [-179, -32], [-121, 8]], [[609, 1634], [-34, 18], [-18, 55], [-106, 29], [73, 38], [-88, 46], [6, 32], [49, 15], [-17, 26], [52, 72], [-17, 24], [35, 38], [25, 71], [-35, 44], [10, 28], [-77, 7], [-111, -56], [-59, 22], [29, 39], [97, 65], [-61, -16], [-27, 46], [-24, -93], [-98, -52], [40, 56], [-25, 66], [-82, -53], [-58, -14], [-21, 45], [68, 50], [-42, 27], [37, 53], [-84, 114], [42, 47], [-28, 89], [-60, 34], [10, 45], [68, 44], [104, 1], [75, -96], [0, -47], [72, -8], [90, 25], [63, 126], [2, 35], [47, 80]], [[531, 2851], [107, -3], [92, -33], [30, 30], [60, 10], [53, -29], [252, -67], [62, 37], [68, -27], [23, -62], [56, -47], [54, -126], [276, -54], [120, 13], [-50, 61], [60, 91], [45, 37], [74, 27], [471, -8], [65, -21]], [[1220, 4172], [29, 68], [56, 40], [53, 105], [-9, 16], [-201, 128], [-153, 26], [-194, 103], [120, 373], [-3, 28]], [[918, 5059], [21, 1], [348, -49], [138, -55], [56, -37], [106, -27], [74, 3], [74, -32], [-41, -72], [149, -134], [64, -46], [529, -44], [66, -12], [77, 6]], [[2579, 4561], [141, -20], [35, -52], [300, 0], [63, 38], [204, -145], [142, -73], [45, -46], [6, -41], [75, -46], [89, -24], [182, -23], [83, -80], [109, -70], [-8, -32], [-102, -74], [-43, -18], [-3, -32], [151, -118], [110, -45], [134, -104]], [[4292, 3556], [-13, -13], [-112, -16], [-61, -47], [-118, -24], [-118, 19], [-10, 33], [-136, 30], [-123, -9], [-50, -23], [-34, -56], [14, -50], [-31, -23], [-115, 2], [-61, -65]], [[3324, 3314], [-166, 96], [-272, 54], [-22, 21], [-64, -14], [0, -55], [-245, 10]], [[2555, 3426], [-149, 52], [-76, 88], [-128, 22], [-13, -45], [-99, 48], [-134, 105], [-107, 30], [-205, 172], [-51, 23], [-74, 75], [-263, 134], [-36, 42]], [[2579, 4561], [30, 29], [18, 67], [44, 65], [100, 50], [81, -61], [0, 32], [94, 10], [126, -2], [15, 67], [-14, 42], [222, 86], [30, 31], [-74, 89]], [[4891, 4968], [-22, -63], [-87, -78], [-14, -92], [53, -6], [-6, -72], [65, 9], [28, -23], [-18, -49], [-39, -2], [-63, 55], [-10, -23], [-96, 36], [-68, -1], [101, -25], [-58, -35], [24, -29], [-129, -15], [100, -20], [-82, -4], [74, -45], [-55, -65], [76, -45], [-13, -33], [-69, 21], [88, -63], [-46, -22], [32, -70], [-20, -45], [63, -25], [-62, -15], [88, -111], [21, -70], [-92, -31], [134, -39], [9, -18]], [[4682, 3625], [-82, -18], [-105, 9], [-51, -37], [-80, -26], [-72, 3]], [[3399, 1363], [-104, 18], [-197, 2], [12, -31], [-172, -33], [-45, 36], [-63, 20], [-70, -6], [-257, -57], [-20, -88], [27, -49], [-43, -45], [-79, 18], [-57, 71], [-72, 26], [-87, -9], [-60, -25], [-71, 23], [-66, -38]], [[1975, 1196], [-67, 27], [-10, 35], [-80, 29], [-72, 9], [-120, -17], [-67, -43], [-48, 52], [22, 35]], [[2623, 827], [-201, 33], [-139, 13], [-78, -45], [-321, -41], [-56, 0]], [[1828, 787], [-39, 50], [-2, 49], [-107, 105], [9, 94], [24, 27], [207, 28], [42, 20], [13, 36]], [[3324, 3314], [17, -43], [48, -13], [32, -48], [-17, -76], [63, -6], [30, -59], [46, -6], [-16, -35], [26, -37], [-83, -23], [-9, -85], [112, -64]], [[3573, 2819], [20, -61], [-71, -20], [-56, -43], [64, -37]], [[2449, 2680], [16, 59], [-17, 48], [13, 101], [109, 144], [-32, 32], [37, 16], [-23, 90], [-23, 175], [-49, 25], [79, 31], [-4, 25]], [[4484, 3058], [-91, -17], [-431, -41], [19, -47], [-81, -20], [-154, -2], [-74, -59], [-7, -27], [-92, -26]], [[1828, 787], [-86, -4], [-122, -55], [-189, 25], [-6, 49], [-51, 23]], [[1374, 825], [18, 52], [-47, 75], [-107, -2], [-90, 76], [-12, 52], [-100, 52], [-72, 14], [-31, 79], [-48, 17], [-62, 124], [-69, 17], [35, 36], [-36, 45], [-39, 2], [46, 32], [-38, 48], [-40, -19], [-12, -49], [-45, -4], [-23, 64], [7, 98]], [[4958, 2643], [32, -35], [-69, -10], [41, -26], [-94, 2], [-6, -58], [-95, 11], [16, -40], [-63, -15], [-86, 1], [-58, 24], [-20, -40], [65, -10], [-41, -26], [-90, 18], [46, -33], [-84, -10], [-110, 6]], [[531, 2851], [-20, 81], [-81, 145], [12, 46], [103, 28], [49, 33], [9, 47], [-47, 50], [5, 25], [71, 21], [154, -2], [112, 44], [121, 67], [49, 49], [9, 59], [-27, 71], [82, 73], [-1, 87], [-85, 104], [-80, 71], [-49, 108], [-45, 58], [20, 25], [176, 24], [131, -6], [21, 13]], [[918, 5059], [-23, 46], [-148, 183], [50, 108], [-46, 111], [6, 27], [91, 58], [-177, 210], [163, 121], [12, 30], [-38, 74], [94, 43], [145, 111], [151, 108], [58, 25], [173, 49], [194, 24], [541, -59], [33, 7], [125, 109], [10, 27], [-35, 172], [-41, 26], [-93, 10], [-227, 68], [529, 388]], [[2634, 517], [-57, -16], [-101, -57], [-106, -96], [-11, -71], [60, -42], [2, -24], [63, -52], [4, -29], [-139, -97], [-67, -2], [-163, 33], [-193, -12], [-37, -20], [-60, -1], [-94, -31], [-77, 0], [-214, 40], [-130, -14], [22, 39], [71, -7], [18, 36], [-38, 33], [1, 44], [76, 34], [26, 35], [-39, 39], [-68, 16], [4, 61], [-80, 39], [-54, 80], [-110, 88], [-79, 116], [-42, 21], [149, -35], [46, -25], [70, 4], [25, 38], [-35, 10], [-40, 49], [-84, 43], [70, 35], [93, -18], [58, 24]]], "bbox": [11.117505899530203, 55.345900735221356, 24.161994725623277, 69.03638976277213], "transform": { "scale": [0.001304579340543362, 0.0013691858213372111], "translate": [11.117505899530203, 55.345900735221356] }, "copyright": "Copyright (c) 2020 Highsoft AS, Based on data from Natural Earth", "copyrightShort": "Natural Earth", "copyrightUrl": "http://www.naturalearthdata.com" } }; diff --git a/test/karma-setup.js b/test/karma-setup.js index ac5d190e2ec..9a1c31d4b40 100644 --- a/test/karma-setup.js +++ b/test/karma-setup.js @@ -180,6 +180,22 @@ XMLHttpRequest.prototype.send = function () { } } +// Hijack fetch to run local sources +var fetch = url => new Promise((resolve, reject) => { + var localData = url && window.JSONSources[url]; + if (localData) { + // Fake the return + resolve({ + ok: true, + json: function () { + return localData; + } + }); + } else { + reject(`Sample error, URL "${url}" missing in JSONSources (trying to fetch)`); + } +}); + function resetDefaultOptions(testName) { var defaultOptionsRaw = JSON.parse(Highcharts.defaultOptionsRaw); From e9925a0dcfae521cf254de8dc74aa79e17690eba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torstein=20H=C3=B8nsi?= Date: Tue, 26 Oct 2021 08:59:38 +0200 Subject: [PATCH 08/10] Tools: IE8-friendly karma setup --- test/karma-setup.js | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/test/karma-setup.js b/test/karma-setup.js index 9a1c31d4b40..3ef1d0ea7dd 100644 --- a/test/karma-setup.js +++ b/test/karma-setup.js @@ -180,21 +180,25 @@ XMLHttpRequest.prototype.send = function () { } } -// Hijack fetch to run local sources -var fetch = url => new Promise((resolve, reject) => { - var localData = url && window.JSONSources[url]; - if (localData) { - // Fake the return - resolve({ - ok: true, - json: function () { - return localData; +// Hijack fetch to run local sources. Note the oldIE-friendly syntax. +if (window.Promise) { + window.fetch = function (url) { + return new Promise(function (resolve, reject) { + var localData = url && window.JSONSources[url]; + if (localData) { + // Fake the return + resolve({ + ok: true, + json: function () { + return localData; + } + }); + } else { + reject('Sample error, URL "' + url + '" missing in JSONSources (trying to fetch)'); } }); - } else { - reject(`Sample error, URL "${url}" missing in JSONSources (trying to fetch)`); - } -}); + }; +} function resetDefaultOptions(testName) { From 82684069a28e644b0dbd88663f8030733923d90f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torstein=20H=C3=B8nsi?= Date: Mon, 1 Nov 2021 10:55:22 +0100 Subject: [PATCH 09/10] TopoJSON: requested changes --- docs/maps/map-collection.md | 2 +- ts/Extensions/GeoJSON.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/maps/map-collection.md b/docs/maps/map-collection.md index 54f7f9244b0..d13afbdef32 100644 --- a/docs/maps/map-collection.md +++ b/docs/maps/map-collection.md @@ -57,7 +57,7 @@ const Highcharts = require('highcharts/highmaps.js'), Highcharts.mapChart('container', { chart: { - map: geojson + map }, // ... }); diff --git a/ts/Extensions/GeoJSON.ts b/ts/Extensions/GeoJSON.ts index 4213ebaac43..4b70e4e5528 100644 --- a/ts/Extensions/GeoJSON.ts +++ b/ts/Extensions/GeoJSON.ts @@ -620,7 +620,7 @@ const topo2geo = (topology: TopoJSON, objectName?: string): GeoJSON => { * * @function Highcharts.geojson * - * @param {Highcharts.GeoJSON} json + * @param {Highcharts.GeoJSON|Highcharts.TopoJSON} json * The GeoJSON or TopoJSON structure to parse, represented as a * JavaScript object. * @@ -630,6 +630,7 @@ const topo2geo = (topology: TopoJSON, objectName?: string): GeoJSON => { * GeoJSON linestrings and multilinestrings. Setting "mappoint" will * return GeoJSON points and multipoints. * + * * @return {Array<*>} * An object ready for the `mapData` option. */ From beb9f1a665fdc0f97a0b626ddabbed5f459ff6de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torstein=20H=C3=B8nsi?= Date: Tue, 9 Nov 2021 08:43:19 +0100 Subject: [PATCH 10/10] Study: all-maps with TopoJSON --- samples/highcharts/studies/all-maps/demo.css | 168 +++++++++++++ .../highcharts/studies/all-maps/demo.details | 7 + samples/highcharts/studies/all-maps/demo.html | 29 +++ samples/highcharts/studies/all-maps/demo.js | 236 ++++++++++++++++++ samples/highcharts/studies/all-maps/readme.md | 4 + .../studies/topojson-decode/demo.css | 11 - .../studies/topojson-decode/demo.details | 6 - .../studies/topojson-decode/demo.html | 5 - .../studies/topojson-decode/demo.js | 45 ---- samples/maps/demo/all-maps/demo.css | 14 +- samples/maps/demo/all-maps/demo.html | 6 +- samples/maps/demo/all-maps/demo.js | 8 +- 12 files changed, 460 insertions(+), 79 deletions(-) create mode 100644 samples/highcharts/studies/all-maps/demo.css create mode 100644 samples/highcharts/studies/all-maps/demo.details create mode 100644 samples/highcharts/studies/all-maps/demo.html create mode 100644 samples/highcharts/studies/all-maps/demo.js create mode 100644 samples/highcharts/studies/all-maps/readme.md delete mode 100644 samples/highcharts/studies/topojson-decode/demo.css delete mode 100644 samples/highcharts/studies/topojson-decode/demo.details delete mode 100644 samples/highcharts/studies/topojson-decode/demo.html delete mode 100644 samples/highcharts/studies/topojson-decode/demo.js diff --git a/samples/highcharts/studies/all-maps/demo.css b/samples/highcharts/studies/all-maps/demo.css new file mode 100644 index 00000000000..2507c569ed9 --- /dev/null +++ b/samples/highcharts/studies/all-maps/demo.css @@ -0,0 +1,168 @@ +#demo-wrapper { + max-width: 1000px; + margin: 0 auto; + height: 560px; + background: white; +} + +#map-box { + width: 80%; + float: left; +} + +#container { + height: 500px; +} + +#side-box { + float: right; + width: 16%; + margin: 100px 1% 0; + padding-left: 1%; + border-left: 1px solid silver; + display: none; +} + +#info-box { + margin-top: 10px; +} + +.or-view-as { + margin: 0.5em 0; +} + +#up { + line-height: 30px; + height: 30px; + max-width: 400px; + margin: 0 auto; +} + +#up a { + cursor: pointer; + padding-left: 40px; +} + +.selector { + height: 40px; + max-width: 400px; + margin: 0 auto; + position: relative; +} + +.selector .prev-next { + position: absolute; + padding: 0 10px; + font-size: 30px; + line-height: 20px; + background: white; + font-weight: bold; + color: #999; + top: -2px; + display: none; + border: none; +} + +.selector .custom-combobox { + display: block; + position: absolute; + left: 40px; + right: 65px; +} + +.selector .custom-combobox .custom-combobox-input { + position: absolute; + font-size: 14px; + color: silver; + border-radius: 3px 0 0 3px; + height: 32px; + display: block; + background: url("https://www.highcharts.com/samples/graphics/search.png") 5px 8px no-repeat white; + padding: 1px 5px 1px 30px; + width: 100%; + box-sizing: border-box; +} + +.selector .custom-combobox .ui-autocomplete-input:focus { + color: black; +} + +.selector .custom-combobox .ui-autocomplete-input.valid { + color: black; +} + +.selector .custom-combobox-toggle { + position: absolute; + display: block; + right: -32px; + border-radius: 0 3px 3px 0; + height: 32px; + width: 32px; +} + +.selector #btn-next-map { + right: -12px; +} + +.ui-autocomplete { + max-height: 500px; + overflow: auto; +} + +.ui-autocomplete .option-header { + font-style: italic; + font-weight: bold; + margin: 5px 0; + font-size: 1.2em; + color: gray; +} + +.loading { + margin-top: 10em; + text-align: center; + color: gray; +} + +.ui-button-icon-only .ui-button-text { + height: 26px; + padding: 0 !important; + background: white; +} + +#info-box .button { + border: none; + border-radius: 3px; + background: #a4edba; + padding: 5px; + color: black; + text-decoration: none; + font-size: 12px; + white-space: nowrap; + cursor: pointer; + margin: 0 3px; + line-height: 30px; +} + +@media (max-width: 768px) { + #demo-wrapper { + width: auto; + height: auto; + } + + #map-box { + width: auto; + float: none; + } + + #container { + height: 310px; + } + + #side-box { + float: none; + width: auto; + margin-top: 0; + border-left: none; + border-top: 1px solid silver; + } +} diff --git a/samples/highcharts/studies/all-maps/demo.details b/samples/highcharts/studies/all-maps/demo.details new file mode 100644 index 00000000000..d2b4097529a --- /dev/null +++ b/samples/highcharts/studies/all-maps/demo.details @@ -0,0 +1,7 @@ +--- +name: Overview +authors: + - Torstein Hønsi +js_wrap: b +requiresManualTesting: true +... diff --git a/samples/highcharts/studies/all-maps/demo.html b/samples/highcharts/studies/all-maps/demo.html new file mode 100644 index 00000000000..60540f7cf90 --- /dev/null +++ b/samples/highcharts/studies/all-maps/demo.html @@ -0,0 +1,29 @@ + + + + + + + + + +
+
+
+
+ + + +
+
+
+ +
diff --git a/samples/highcharts/studies/all-maps/demo.js b/samples/highcharts/studies/all-maps/demo.js new file mode 100644 index 00000000000..c2baf8b2c9b --- /dev/null +++ b/samples/highcharts/studies/all-maps/demo.js @@ -0,0 +1,236 @@ +/** + * This is a complicated demo of Highcharts Maps, not intended to get you up to + * speed quickly, but to show off some basic maps and features in one single + * place. For the basic demo, check out + * https://www.highcharts.com/maps/demo/geojson instead. + * + * @todo + * - Automatic projection from bbox, no WebMercator + * - Remove jQuery where not necessary (the combobox is probably still best + * implemented with jQuery UI) + */ + +// Base path to maps +const baseMapPath = 'https://code.highcharts.com/mapdata/'; + +let showDataLabels = false, // Switch for data labels enabled/disabled + mapCount = 0, + mapOptions = ''; + +// Populate dropdown menus and turn into jQuery UI widgets +$.each(Highcharts.mapDataIndex, (mapGroup, maps) => { + if (mapGroup !== 'version') { + mapOptions += ``; + $.each(maps, (desc, path) => { + mapOptions += ``; + mapCount += 1; + }); + } +}); +const searchText = `Search ${mapCount} maps`; +mapOptions = + `${mapOptions}`; +$("#mapDropdown").append(mapOptions).combobox(); + +// Change map when item selected in dropdown +$("#mapDropdown").on('change', async function () { + const $selectedItem = $('option:selected', this), + mapDesc = $selectedItem.text(), + mapKey = this.value.slice(0, -3), + svgPath = baseMapPath + mapKey + '.svg', + geojsonPath = baseMapPath + mapKey + '.geo.json', + topojsonPath = baseMapPath + mapKey + '.topo.json', + javascriptPath = baseMapPath + this.value, + isHeader = $selectedItem.hasClass('option-header'); + + // Dim or highlight search box + if (mapDesc === searchText || isHeader) { + $('.custom-combobox-input').removeClass('valid'); + location.hash = ''; + } else { + $('.custom-combobox-input').addClass('valid'); + location.hash = mapKey; + } + + if (isHeader) { + return false; + } + + // Show loading + if (Highcharts.charts[0]) { + Highcharts.charts[0].showLoading( + '' + ); + } + + // Load the map + const mapData = await fetch(topojsonPath) + .then(response => response.json()); + + // Update info box download links + $("#download").html( + '' + + 'View clean demo' + + '
... or view as ' + + 'SVG, ' + + 'GeoJSON, ' + + 'TopoJSON, ' + + 'JavaScript.
' + ); + + // Generate non-random data for the map + const data = mapData.objects.default.geometries.map((g, value) => ({ + key: g.properties['hc-key'], + value + })); + + // Show arrows the first time a real map is shown + if (mapDesc !== searchText) { + $('.selector .prev-next').show(); + $('#side-box').show(); + } + + // Is there a layer above this? + const match = mapKey + .match(/^(countries\/[a-z]{2}\/[a-z]{2})-[a-z0-9]+-all$/); + let parent; + if (/^countries\/[a-z]{2}\/[a-z]{2}-all$/.test(mapKey)) { // country + parent = { + desc: 'World', + key: 'custom/world' + }; + } else if (match) { // admin1 + parent = { + desc: $('option[value="' + match[1] + '-all.js"]').text(), + key: match[1] + '-all' + }; + } + $('#up').html(''); + if (parent) { + $('#up').append( + $(' ' + parent.desc + '') + .attr({ + title: parent.key + }) + .on('click', function () { + $('#mapDropdown').val(parent.key + '.js').trigger('change'); + }) + ); + } + + // Data labels formatter. Use shorthand codes for world and US + const formatter = function () { + return ( + mapKey === 'custom/world' || + mapKey === 'countries/us/us-all' + ) ? + (this.point.properties && this.point.properties['hc-a2']) : + this.point.name; + }; + + // On point click, look for a detailed map to drill into + const onPointClick = function () { + const key = this.key; + $('#mapDropdown option').each(function () { + if (this.value === `countries/${key.substr(0, 2)}/${key}-all.js`) { + $('#mapDropdown').val(this.value).trigger('change'); + } + }); + }; + + // Instantiate chart + Highcharts.mapChart('container', { + + title: { + text: null + }, + + mapNavigation: { + enabled: true + }, + + mapView: { + projection: { + name: 'WebMercator' + } + }, + + colorAxis: { + min: 0, + stops: [ + [0, '#EFEFFF'], + [0.5, Highcharts.getOptions().colors[0]], + [ + 1, + Highcharts.color(Highcharts.getOptions().colors[0]) + .brighten(-0.5).get() + ] + ] + }, + + legend: { + layout: 'vertical', + align: 'left', + verticalAlign: 'bottom' + }, + + series: [{ + data, + mapData, + joinBy: ['hc-key', 'key'], + name: 'Random data', + states: { + hover: { + color: Highcharts.getOptions().colors[2] + } + }, + dataLabels: { + enabled: showDataLabels, + formatter + }, + point: { + events: { + click: onPointClick + } + } + }, { + type: 'mapline', + name: "Separators", + data: Highcharts.geojson(mapData, 'mapline'), + nullColor: 'gray', + showInLegend: false, + enableMouseTracking: false + }] + }); + + showDataLabels = $("#chkDataLabels").prop('checked'); +}); + +// Toggle data labels - Note: Reloads map with new random data +$("#chkDataLabels").on('change', function () { + showDataLabels = $("#chkDataLabels").prop('checked'); + $("#mapDropdown").trigger('change'); +}); + +// Switch to previous map on button click +$("#btn-prev-map").on('click', function () { + $("#mapDropdown option:selected") + .prev("option") + .prop("selected", true) + .trigger('change'); +}); + +// Switch to next map on button click +$("#btn-next-map").on('click', function () { + $("#mapDropdown option:selected") + .next("option") + .prop("selected", true) + .trigger('change'); +}); + +// Trigger change event to load map on startup +if (location.hash) { + $('#mapDropdown').val(location.hash.substr(1) + '.js'); +} +$('#mapDropdown').trigger('change'); diff --git a/samples/highcharts/studies/all-maps/readme.md b/samples/highcharts/studies/all-maps/readme.md new file mode 100644 index 00000000000..0fc847fe6bd --- /dev/null +++ b/samples/highcharts/studies/all-maps/readme.md @@ -0,0 +1,4 @@ +# Overview +The Highmaps library allows you to create interactive maps. This example visualizes the whole world with the option to drill up and down between administrative levels. +#### Tip +For more maps check the [Highmaps map collection](https://code.highcharts.com/mapdata/). \ No newline at end of file diff --git a/samples/highcharts/studies/topojson-decode/demo.css b/samples/highcharts/studies/topojson-decode/demo.css deleted file mode 100644 index 6482d99cf26..00000000000 --- a/samples/highcharts/studies/topojson-decode/demo.css +++ /dev/null @@ -1,11 +0,0 @@ -#container { - height: 500px; - min-width: 310px; - max-width: 800px; - margin: 0 auto; -} -.loading { - margin-top: 10em; - text-align: center; - color: gray; -} \ No newline at end of file diff --git a/samples/highcharts/studies/topojson-decode/demo.details b/samples/highcharts/studies/topojson-decode/demo.details deleted file mode 100644 index 7b061cbfd99..00000000000 --- a/samples/highcharts/studies/topojson-decode/demo.details +++ /dev/null @@ -1,6 +0,0 @@ ---- - name: Highcharts Demo - authors: - - Torstein Hønsi - js_wrap: b -... \ No newline at end of file diff --git a/samples/highcharts/studies/topojson-decode/demo.html b/samples/highcharts/studies/topojson-decode/demo.html deleted file mode 100644 index 0ee69c59248..00000000000 --- a/samples/highcharts/studies/topojson-decode/demo.html +++ /dev/null @@ -1,5 +0,0 @@ - - - - -
diff --git a/samples/highcharts/studies/topojson-decode/demo.js b/samples/highcharts/studies/topojson-decode/demo.js deleted file mode 100644 index cf69f7ae186..00000000000 --- a/samples/highcharts/studies/topojson-decode/demo.js +++ /dev/null @@ -1,45 +0,0 @@ -(async () => { - - const topology = await fetch( - 'https://code.highcharts.com/mapdata/custom/europe.topo.json' - // 'https://code.highcharts.com/mapdata/countries/us/us-all-all.topo.json' - ).then(response => response.json()); - - // Create a dummy data value for each feature - const data = topology.objects.default.geometries.map((g, i) => i % 5); - - // Initialize the chart - Highcharts.mapChart('container', { - chart: { - map: topology - }, - - title: { - text: 'TopoJSON in Highcharts Maps' - }, - - mapView: { - projection: { - name: 'Orthographic', - rotation: [-10, -40] - } - }, - - colorAxis: { - tickPixelInterval: 100, - minColor: '#F1EEF6', - maxColor: '#900037' - }, - - series: [{ - data, - joinBy: null, - name: 'Random data', - states: { - hover: { - color: '#a4edba' - } - } - }] - }); -})(); diff --git a/samples/maps/demo/all-maps/demo.css b/samples/maps/demo/all-maps/demo.css index 2fa8ed8d22a..2507c569ed9 100644 --- a/samples/maps/demo/all-maps/demo.css +++ b/samples/maps/demo/all-maps/demo.css @@ -5,7 +5,7 @@ background: white; } -#mapBox { +#map-box { width: 80%; float: left; } @@ -14,7 +14,7 @@ height: 500px; } -#sideBox { +#side-box { float: right; width: 16%; margin: 100px 1% 0; @@ -23,7 +23,7 @@ display: none; } -#infoBox { +#info-box { margin-top: 10px; } @@ -77,7 +77,7 @@ border-radius: 3px 0 0 3px; height: 32px; display: block; - background: url(https://www.highcharts.com/samples/graphics/search.png) 5px 8px no-repeat white; + background: url("https://www.highcharts.com/samples/graphics/search.png") 5px 8px no-repeat white; padding: 1px 5px 1px 30px; width: 100%; box-sizing: border-box; @@ -129,7 +129,7 @@ background: white; } -#infoBox .button { +#info-box .button { border: none; border-radius: 3px; background: #a4edba; @@ -149,7 +149,7 @@ height: auto; } - #mapBox { + #map-box { width: auto; float: none; } @@ -158,7 +158,7 @@ height: 310px; } - #sideBox { + #side-box { float: none; width: auto; margin-top: 0; diff --git a/samples/maps/demo/all-maps/demo.html b/samples/maps/demo/all-maps/demo.html index 651304419f3..60540f7cf90 100644 --- a/samples/maps/demo/all-maps/demo.html +++ b/samples/maps/demo/all-maps/demo.html @@ -8,7 +8,7 @@
-
+
@@ -17,11 +17,11 @@
-