@cdc/map 4.24.1 → 4.24.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cdcmap.js +53648 -47918
- package/examples/508.json +548 -0
- package/examples/default-county.json +0 -28
- package/examples/default-hex.json +110 -13
- package/examples/default-usa.json +69 -28
- package/examples/test.json +0 -9614
- package/examples/usa-special-class-legend.json +501 -0
- package/examples/{private/zika-issue.json → zika.json} +47 -51
- package/index.html +11 -5
- package/package.json +3 -3
- package/src/CdcMap.tsx +84 -32
- package/src/components/BubbleList.jsx +9 -1
- package/src/components/CityList.jsx +94 -31
- package/src/components/DataTable.jsx +7 -7
- package/src/components/EditorPanel/components/EditorPanel.tsx +181 -46
- package/src/components/EditorPanel/components/HexShapeSettings.tsx +18 -3
- package/src/components/Geo.jsx +4 -2
- package/src/components/Legend/components/Legend.tsx +67 -13
- package/src/components/Legend/components/LegendItem.Hex.tsx +5 -9
- package/src/components/Legend/components/index.scss +31 -5
- package/src/components/UsaMap/components/HexIcon.tsx +41 -0
- package/src/components/UsaMap/components/Territory/Territory.Hexagon.tsx +38 -19
- package/src/components/UsaMap/components/Territory/Territory.Rectangle.tsx +10 -21
- package/src/components/UsaMap/components/UsaMap.Region.tsx +11 -37
- package/src/components/UsaMap/components/UsaMap.SingleState.tsx +0 -1
- package/src/components/UsaMap/components/UsaMap.State.tsx +62 -61
- package/src/components/UsaMap/helpers/patternSizes.tsx +5 -0
- package/src/components/WorldMap/components/WorldMap.jsx +16 -8
- package/src/components/WorldMap/data/world-topo-guiana-update.json +1 -0
- package/src/components/WorldMap/data/world-topo-old.json +1 -0
- package/{examples/private/new-world.json → src/components/WorldMap/data/world-topo-recent.json} +23137 -22280
- package/src/components/WorldMap/data/world-topo.json +1 -1
- package/src/data/initial-state.js +5 -2
- package/src/data/supported-geos.js +21 -1
- package/src/hooks/useTooltip.ts +4 -4
- package/src/scss/editor-panel.scss +5 -3
- package/src/scss/main.scss +2 -1
- package/src/scss/map.scss +22 -12
- package/src/types/MapConfig.ts +7 -0
- package/examples/private/map-text-wrap.json +0 -574
- package/examples/private/map-world-data.json +0 -1046
- package/examples/world-geocode-data.json +0 -18
- package/examples/world-geocode.json +0 -108
|
@@ -9,21 +9,20 @@ import hexTopoJSON from '../data/us-hex-topo.json'
|
|
|
9
9
|
import { geoCentroid, geoPath } from 'd3-geo'
|
|
10
10
|
import { feature } from 'topojson-client'
|
|
11
11
|
import { AlbersUsa, Mercator } from '@visx/geo'
|
|
12
|
-
import chroma from 'chroma-js'
|
|
13
12
|
import CityList from '../../CityList'
|
|
14
13
|
import BubbleList from '../../BubbleList'
|
|
15
14
|
import { supportedCities, supportedStates } from '../../../data/supported-geos'
|
|
16
15
|
import { geoAlbersUsa } from 'd3-composite-projections'
|
|
17
|
-
import { Group } from '@visx/group'
|
|
18
|
-
import { Text } from '@visx/text'
|
|
19
16
|
import { PatternLines, PatternCircles, PatternWaves } from '@visx/pattern'
|
|
20
|
-
import
|
|
17
|
+
import HexIcon from './HexIcon'
|
|
18
|
+
import { patternSizes } from '../helpers/patternSizes'
|
|
21
19
|
|
|
22
20
|
import Territory from './Territory'
|
|
23
21
|
|
|
24
22
|
import useMapLayers from '../../../hooks/useMapLayers'
|
|
25
23
|
import ConfigContext from '../../../context'
|
|
26
24
|
import { MapContext } from '../../../types/MapContext'
|
|
25
|
+
import { getContrastColor } from '@cdc/core/helpers/cove/accessibility'
|
|
27
26
|
|
|
28
27
|
const { features: unitedStates } = feature(topoJSON, topoJSON.objects.states)
|
|
29
28
|
const { features: unitedStatesHex } = feature(hexTopoJSON, hexTopoJSON.objects.states)
|
|
@@ -132,19 +131,14 @@ const UsaMap = () => {
|
|
|
132
131
|
|
|
133
132
|
const label = supportedTerritories[territory][1]
|
|
134
133
|
|
|
135
|
-
if (!territoryData) return <Shape key={label} label={label}
|
|
134
|
+
if (!territoryData) return <Shape key={label} label={label} style={styles} text={styles.color} />
|
|
136
135
|
|
|
137
136
|
toolTip = applyTooltipsToGeo(displayGeoName(territory), territoryData)
|
|
138
137
|
|
|
139
138
|
const legendColors = applyLegendToRow(territoryData)
|
|
140
139
|
|
|
141
|
-
let textColor = '#FFF'
|
|
142
|
-
|
|
143
140
|
if (legendColors) {
|
|
144
|
-
|
|
145
|
-
if (chroma.contrast(textColor, legendColors[0]) < 3.5) {
|
|
146
|
-
textColor = '#202020'
|
|
147
|
-
}
|
|
141
|
+
const textColor = getContrastColor('#FFF', legendColors[0])
|
|
148
142
|
|
|
149
143
|
let needsPointer = false
|
|
150
144
|
|
|
@@ -169,7 +163,7 @@ const UsaMap = () => {
|
|
|
169
163
|
|
|
170
164
|
return (
|
|
171
165
|
<>
|
|
172
|
-
<Shape key={label} label={label} style={styles} text={styles.color} strokeWidth={1.5} textColor={textColor} onClick={() => geoClickHandler(territory, territoryData)} data-tooltip-id='tooltip' data-tooltip-html={toolTip} territory={territory} territoryData={territoryData} />
|
|
166
|
+
<Shape key={label} label={label} style={styles} text={styles.color} strokeWidth={1.5} textColor={textColor} onClick={() => geoClickHandler(territory, territoryData)} data-tooltip-id='tooltip' data-tooltip-html={toolTip} territory={territory} territoryData={territoryData} tabIndex={-1} />
|
|
173
167
|
</>
|
|
174
168
|
)
|
|
175
169
|
}
|
|
@@ -204,7 +198,7 @@ const UsaMap = () => {
|
|
|
204
198
|
return 0
|
|
205
199
|
})
|
|
206
200
|
|
|
207
|
-
const geosJsx = geographies.map(({ feature: geo, path = '' }) => {
|
|
201
|
+
const geosJsx = geographies.map(({ feature: geo, path = '' }, geoIndex) => {
|
|
208
202
|
const key = isHex ? geo.properties.iso + '-hex-group' : geo.properties.iso + '-group'
|
|
209
203
|
|
|
210
204
|
let styles = {
|
|
@@ -254,31 +248,51 @@ const UsaMap = () => {
|
|
|
254
248
|
}
|
|
255
249
|
|
|
256
250
|
const getArrowDirection = (geoData, geo, bgColor) => {
|
|
257
|
-
|
|
251
|
+
const centroid = projection(geoCentroid(geo))
|
|
258
252
|
|
|
259
253
|
const iconSize = 8
|
|
260
254
|
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
// Dynamic text color
|
|
264
|
-
if (chroma.contrast(textColor, bgColor) < 3.5) {
|
|
265
|
-
textColor = '#202020' // dark gray
|
|
266
|
-
}
|
|
255
|
+
const textColor = getContrastColor('#FFF', bgColor)
|
|
267
256
|
|
|
268
257
|
return (
|
|
269
258
|
<>
|
|
270
259
|
{state.hexMap.shapeGroups.map((group, groupIndex) => {
|
|
271
260
|
return group.items.map((item, itemIndex) => {
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
<
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
261
|
+
switch (item.operator) {
|
|
262
|
+
case '=':
|
|
263
|
+
if (geoData[item.key] === item.value || Number(geoData[item.key]) === Number(item.value)) {
|
|
264
|
+
return <HexIcon item={item} index={itemIndex} centroid={centroid} iconSize={iconSize} />
|
|
265
|
+
}
|
|
266
|
+
break
|
|
267
|
+
case '≠':
|
|
268
|
+
if (geoData[item.key] !== item.value && Number(geoData[item.key]) !== Number(item.value)) {
|
|
269
|
+
return <HexIcon item={item} index={itemIndex} centroid={centroid} iconSize={iconSize} />
|
|
270
|
+
}
|
|
271
|
+
break
|
|
272
|
+
case '<':
|
|
273
|
+
if (Number(geoData[item.key]) < Number(item.value)) {
|
|
274
|
+
return <HexIcon item={item} index={itemIndex} centroid={centroid} iconSize={iconSize} />
|
|
275
|
+
}
|
|
276
|
+
break
|
|
277
|
+
case '>':
|
|
278
|
+
if (Number(geoData[item.key]) > Number(item.value)) {
|
|
279
|
+
return <HexIcon item={item} index={itemIndex} centroid={centroid} iconSize={iconSize} />
|
|
280
|
+
}
|
|
281
|
+
break
|
|
282
|
+
case '<=':
|
|
283
|
+
if (Number(geoData[item.key]) <= Number(item.value)) {
|
|
284
|
+
return <HexIcon item={item} index={itemIndex} centroid={centroid} iconSize={iconSize} />
|
|
285
|
+
}
|
|
286
|
+
break
|
|
287
|
+
case '>=':
|
|
288
|
+
if (item.operator === '>=') {
|
|
289
|
+
if (Number(geoData[item.key]) >= Number(item.value)) {
|
|
290
|
+
return <HexIcon item={item} index={itemIndex} centroid={centroid} iconSize={iconSize} />
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
break
|
|
294
|
+
default:
|
|
295
|
+
break
|
|
282
296
|
}
|
|
283
297
|
})
|
|
284
298
|
})}
|
|
@@ -286,33 +300,26 @@ const UsaMap = () => {
|
|
|
286
300
|
)
|
|
287
301
|
}
|
|
288
302
|
|
|
289
|
-
const sizes = {
|
|
290
|
-
small: '8',
|
|
291
|
-
medium: '10',
|
|
292
|
-
large: '12'
|
|
293
|
-
}
|
|
294
|
-
|
|
295
303
|
return (
|
|
296
|
-
<g data-name={geoName} key={key}>
|
|
297
|
-
<g className='geo-group' style={styles} onClick={() => geoClickHandler(geoDisplayName, geoData)} id={geoName} data-tooltip-id='tooltip' data-tooltip-html={tooltip}>
|
|
304
|
+
<g data-name={geoName} key={key} tabIndex={-1}>
|
|
305
|
+
<g className='geo-group' style={styles} onClick={() => geoClickHandler(geoDisplayName, geoData)} id={geoName} data-tooltip-id='tooltip' data-tooltip-html={tooltip} tabIndex={-1}>
|
|
306
|
+
{/* state path */}
|
|
298
307
|
<path tabIndex={-1} className='single-geo' strokeWidth={1.3} d={path} />
|
|
299
|
-
{state.map.patterns.map((patternData, patternIndex) => {
|
|
300
|
-
let { pattern, dataKey, size } = patternData
|
|
301
|
-
let defaultPatternColor = 'black'
|
|
302
308
|
|
|
309
|
+
{/* apply patterns on top of state path*/}
|
|
310
|
+
{state.map.patterns.map((patternData, patternIndex) => {
|
|
311
|
+
const { pattern, dataKey, size } = patternData
|
|
312
|
+
const currentFill = styles.fill
|
|
303
313
|
const hasMatchingValues = patternData.dataValue === geoData[patternData.dataKey]
|
|
304
|
-
|
|
305
|
-
if (chroma.contrast(defaultPatternColor, legendColors[0]) < 3.5) {
|
|
306
|
-
defaultPatternColor = 'white'
|
|
307
|
-
}
|
|
314
|
+
const patternColor = getContrastColor('#000', currentFill)
|
|
308
315
|
|
|
309
316
|
return (
|
|
310
317
|
hasMatchingValues && (
|
|
311
318
|
<>
|
|
312
|
-
{pattern === 'waves' && <PatternWaves id={`${dataKey}--${
|
|
313
|
-
{pattern === 'circles' && <PatternCircles id={`${dataKey}--${
|
|
314
|
-
{pattern === 'lines' && <PatternLines id={`${dataKey}--${
|
|
315
|
-
<path className={`pattern-geoKey--${dataKey}`} tabIndex={-1} stroke='transparent' d={path} fill={`url(#${dataKey}--${
|
|
319
|
+
{pattern === 'waves' && <PatternWaves id={`${dataKey}--${geoIndex}`} height={patternSizes[size] ?? 10} width={patternSizes[size] ?? 10} fill={patternColor} />}
|
|
320
|
+
{pattern === 'circles' && <PatternCircles id={`${dataKey}--${geoIndex}`} height={patternSizes[size] ?? 10} width={patternSizes[size] ?? 10} fill={patternColor} />}
|
|
321
|
+
{pattern === 'lines' && <PatternLines id={`${dataKey}--${geoIndex}`} height={patternSizes[size] ?? 6} width={patternSizes[size] ?? 6} stroke={patternColor} strokeWidth={1} orientation={['diagonalRightToLeft']} />}
|
|
322
|
+
<path className={`pattern-geoKey--${dataKey}`} tabIndex={-1} stroke='transparent' d={path} fill={`url(#${dataKey}--${geoIndex})`} />
|
|
316
323
|
</>
|
|
317
324
|
)
|
|
318
325
|
)
|
|
@@ -326,8 +333,8 @@ const UsaMap = () => {
|
|
|
326
333
|
|
|
327
334
|
// Default return state, just geo with no additional information
|
|
328
335
|
return (
|
|
329
|
-
<g data-name={geoName} key={key}>
|
|
330
|
-
<g className='geo-group' style={styles}>
|
|
336
|
+
<g data-name={geoName} key={key} tabIndex={-1}>
|
|
337
|
+
<g className='geo-group' style={styles} tabIndex={-1}>
|
|
331
338
|
<path tabIndex={-1} className='single-geo' stroke={geoStrokeColor} strokeWidth={1.3} d={path} />
|
|
332
339
|
{(isHex || showLabel) && geoLabel(geo, styles.fill, projection)}
|
|
333
340
|
</g>
|
|
@@ -346,7 +353,6 @@ const UsaMap = () => {
|
|
|
346
353
|
displayGeoName={displayGeoName}
|
|
347
354
|
geoClickHandler={geoClickHandler}
|
|
348
355
|
isFilterValueSupported={isFilterValueSupported}
|
|
349
|
-
isGeoCodeMap={state.general.type === 'us-geocode'}
|
|
350
356
|
key='cities'
|
|
351
357
|
projection={projection}
|
|
352
358
|
setSharedFilterValue={setSharedFilterValue}
|
|
@@ -376,12 +382,7 @@ const UsaMap = () => {
|
|
|
376
382
|
|
|
377
383
|
if (undefined === abbr) return null
|
|
378
384
|
|
|
379
|
-
let textColor = '#FFF'
|
|
380
|
-
|
|
381
|
-
// Dynamic text color
|
|
382
|
-
if (chroma.contrast(textColor, bgColor) < 3.5) {
|
|
383
|
-
textColor = '#202020' // dark gray
|
|
384
|
-
}
|
|
385
|
+
let textColor = getContrastColor('#FFF', bgColor)
|
|
385
386
|
|
|
386
387
|
// always make HI black since it is off to the side
|
|
387
388
|
if (abbr === 'US-HI' && !state.general.displayAsHex) {
|
|
@@ -399,7 +400,7 @@ const UsaMap = () => {
|
|
|
399
400
|
|
|
400
401
|
if (undefined === offsets[abbr] || isHex) {
|
|
401
402
|
return (
|
|
402
|
-
<g transform={`translate(${centroid})`}>
|
|
403
|
+
<g transform={`translate(${centroid})`} tabIndex={-1}>
|
|
403
404
|
<text x={x} y={y} fontSize={14} strokeWidth='0' style={{ fill: textColor }} textAnchor='middle'>
|
|
404
405
|
{abbr.substring(3)}
|
|
405
406
|
</text>
|
|
@@ -410,7 +411,7 @@ const UsaMap = () => {
|
|
|
410
411
|
let [dx, dy] = offsets[abbr]
|
|
411
412
|
|
|
412
413
|
return (
|
|
413
|
-
<g>
|
|
414
|
+
<g tabIndex={-1}>
|
|
414
415
|
<line x1={centroid[0]} y1={centroid[1]} x2={centroid[0] + dx} y2={centroid[1] + dy} stroke='rgba(0,0,0,.5)' strokeWidth={1} />
|
|
415
416
|
<text x={4} strokeWidth='0' fontSize={13} style={{ fill: '#202020' }} alignmentBaseline='middle' transform={`translate(${centroid[0] + dx}, ${centroid[1] + dy})`}>
|
|
416
417
|
{abbr.substring(3)}
|
|
@@ -440,7 +441,7 @@ const UsaMap = () => {
|
|
|
440
441
|
<span className='territories-label label'>{state.general.territoriesLabel}</span>
|
|
441
442
|
</div>
|
|
442
443
|
<div>
|
|
443
|
-
<span className={window.visualViewport.width <
|
|
444
|
+
<span className={window.visualViewport.width < 700 ? 'territories--mobile' : 'territories'}>{territories}</span>
|
|
444
445
|
</div>
|
|
445
446
|
</div>
|
|
446
447
|
</>
|
|
@@ -101,14 +101,22 @@ const WorldMap = props => {
|
|
|
101
101
|
|
|
102
102
|
const constructGeoJsx = geographies => {
|
|
103
103
|
const geosJsx = geographies.map(({ feature: geo, path }, i) => {
|
|
104
|
-
|
|
104
|
+
// If the geo.properties.state value is found in the data use that, otherwise fall back to geo.properties.iso
|
|
105
|
+
const dataHasStateName = state.data.some(d => d[state.columns.geo.name] === geo.properties.state)
|
|
106
|
+
const geoKey = geo.properties.state && data[geo.properties.state] ? geo.properties.state : geo.properties.name ? geo.properties.name : geo.properties.iso
|
|
105
107
|
|
|
108
|
+
const additionalData = {
|
|
109
|
+
name: geo.properties.name
|
|
110
|
+
}
|
|
106
111
|
if (!geoKey) return null
|
|
107
112
|
|
|
108
|
-
|
|
113
|
+
let geoData = data[geoKey]
|
|
109
114
|
|
|
110
|
-
|
|
115
|
+
// if ((geoKey === 'Alaska' || geoKey === 'Hawaii') && !geoData) {
|
|
116
|
+
// geoData = data['United States']
|
|
117
|
+
// }
|
|
111
118
|
|
|
119
|
+
const geoDisplayName = displayGeoName(supportedCountries[geoKey]?.[0])
|
|
112
120
|
let legendColors
|
|
113
121
|
|
|
114
122
|
// Once we receive data for this geographic item, setup variables.
|
|
@@ -146,17 +154,17 @@ const WorldMap = props => {
|
|
|
146
154
|
styles.cursor = 'pointer'
|
|
147
155
|
}
|
|
148
156
|
|
|
149
|
-
return
|
|
157
|
+
return (
|
|
158
|
+
<Geo additionalData={additionalData} geoData={geoData} state={state} key={i + '-geo'} style={styles} path={path} stroke={geoStrokeColor} strokeWidth={strokeWidth} onClick={() => geoClickHandler(geoDisplayName, geoData)} data-tooltip-id='tooltip' data-tooltip-html={toolTip} tabIndex={-1} />
|
|
159
|
+
)
|
|
150
160
|
}
|
|
151
161
|
|
|
152
162
|
// Default return state, just geo with no additional information
|
|
153
|
-
return <Geo key={i + '-geo'} stroke={geoStrokeColor} strokeWidth={strokeWidth}
|
|
163
|
+
return <Geo additionalData={additionalData} geoData={geoData} state={state} key={i + '-geo'} stroke={geoStrokeColor} strokeWidth={strokeWidth} style={styles} path={path} />
|
|
154
164
|
})
|
|
155
165
|
|
|
156
166
|
// Cities
|
|
157
|
-
geosJsx.push(
|
|
158
|
-
<CityList applyLegendToRow={applyLegendToRow} applyTooltipsToGeo={applyTooltipsToGeo} data={data} displayGeoName={displayGeoName} geoClickHandler={geoClickHandler} isGeoCodeMap={state.general.type === 'world-geocode'} key='cities' projection={projection} state={state} titleCase={titleCase} />
|
|
159
|
-
)
|
|
167
|
+
geosJsx.push(<CityList applyLegendToRow={applyLegendToRow} applyTooltipsToGeo={applyTooltipsToGeo} data={data} displayGeoName={displayGeoName} geoClickHandler={geoClickHandler} key='cities' projection={projection} state={state} titleCase={titleCase} />)
|
|
160
168
|
|
|
161
169
|
// Bubbles
|
|
162
170
|
if (state.general.type === 'bubble') {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"type":"Topology","arcs":[[[4459,12194],[222,0],[231,0],[77,0],[238,0],[228,0],[235,0],[234,0],[266,0],[266,0],[163,0],[0,44],[25,1],[15,-65],[24,-19],[55,-7],[79,-19],[76,-36],[63,15],[96,-30],[25,0],[71,34],[73,-42],[76,-46],[63,-38],[61,-38],[7,-30],[19,-12],[-4,-11],[20,-4],[15,11],[4,-27],[16,-18],[21,0],[12,-14],[-10,-21],[81,-55],[16,-106],[16,-101],[-23,-69],[-37,-63],[-16,-41],[-2,-13],[8,-16],[27,-18],[19,0],[91,62],[80,18],[103,58],[1,12],[-7,35],[-13,23],[35,18],[77,1],[71,0],[26,45],[10,9],[82,84],[35,21],[119,1],[144,0],[7,29],[25,6],[33,19],[28,52],[25,91],[59,88],[25,-30],[53,19],[34,-34],[0,-158],[51,-66]],[[8804,11743],[14,-39],[-84,-56],[-80,-40],[-82,-35],[-42,-68],[-13,-27],[0,-62],[26,-62],[32,-3],[-8,44],[24,-26],[-7,-34],[-52,-19],[-38,2],[-58,-20],[-34,-6],[-45,-6],[-66,-33],[115,22],[23,-22],[-109,-35],[-50,-1],[2,14],[-23,-32],[23,-5],[-17,-84],[-56,-89],[-7,30],[-17,5],[-25,29],[16,-63],[19,-20],[1,-44],[-25,-46],[-44,-93],[-6,5],[23,80],[-39,44],[-10,97],[-14,-51],[16,-74],[-52,18],[55,-37],[3,-111],[22,-8],[8,-40],[11,-116],[-50,-87],[-80,-34],[-51,-69],[-39,-7],[-40,-43],[-12,-40],[-85,-75],[-44,-56],[-36,-69],[-13,-83],[14,-81],[26,-100],[35,-81],[0,-50],[37,-136],[-3,-79],[-3,-45],[-19,-71],[-23,-15],[-39,14],[-12,51],[-30,27],[-42,101],[-35,89],[-13,45],[17,78],[-22,63],[-60,97],[-30,19],[-79,-54],[-14,6],[-38,54],[-49,29],[-89,-14],[-69,13],[-59,-8],[-32,-19],[13,-31],[-1,-47],[17,-22],[-15,-16],[-28,17],[-31,-21],[-55,2],[-59,62],[-68,-14],[-57,27],[-49,-8],[-66,-28],[-70,-86],[-78,-49],[-42,-56],[-18,-53],[-1,-80],[4,-56],[15,-40],[-31,-3]],[[6433,9494],[-55,26],[-61,35],[-22,56],[-17,81],[-47,67],[-26,67],[-39,79],[-55,47],[-64,-2],[-49,-92],[-65,35],[-40,35],[-20,65],[-26,60],[-46,52],[-40,36],[-28,42],[-136,0],[0,-48],[-61,0],[-155,-1],[-178,82],[-118,57],[7,22],[-99,-12],[-89,-9]],[[4904,10274],[-13,60],[-50,67],[-37,13],[-8,34],[-44,6],[-28,32],[-72,11],[-20,19],[-9,64],[-76,117],[-66,161],[4,27],[-35,39],[-60,97],[-11,96],[-42,63],[17,97],[-3,100],[-25,89],[31,110],[10,106],[8,105],[-13,157],[-24,100],[-24,54],[10,23],[113,-40],[41,-110],[20,31],[-12,96],[-27,96]],[[1919,8822],[14,-9],[12,-17],[20,-40],[-1,-7],[-31,-24],[-25,-19],[-11,-19],[-20,16],[2,33],[-12,43],[3,12],[14,20],[-6,22],[5,12],[6,-3],[30,-20]],[[1873,8903],[-7,-15],[-26,-8],[-13,25],[-9,9],[-1,7],[8,11],[28,-12],[20,-17]],[[1814,8950],[-4,-12],[-41,3],[6,15],[39,-6]],[[1715,9013],[6,-8],[22,-38],[-4,-6],[-6,2],[-26,4],[-10,25],[-4,4],[22,17]],[[1610,9071],[1,-27],[-9,-12],[-27,22],[5,7],[12,12],[18,-2]],[[1056,13519],[61,-10],[8,-45],[-47,-18],[-52,22],[-46,32],[76,19]],[[2089,13239],[52,-8],[32,-37],[-67,-55],[-78,-44],[-40,30],[-12,55],[71,41],[42,18]],[[3044,14607],[0,0],[0,-433],[0,-663],[77,-4],[75,-32],[54,-51],[69,-77],[76,65],[79,38],[40,-60],[52,-48],[71,-53],[49,-82],[81,-133],[132,-75],[2,-73],[-43,-56],[0,0]],[[3858,12870],[0,0],[-42,43],[-70,38],[-22,101],[-100,95],[-42,108],[-75,8],[-124,3],[-91,34],[-160,121],[-75,22],[-137,42],[-108,-10],[-153,53],[-93,50],[-87,-25],[16,-81],[-42,-7],[-92,-25],[-68,-39],[-86,-25],[-12,69],[36,115],[82,36],[-21,29],[-100,-65],[-52,-78],[-113,-83],[57,-57],[-73,-84],[-85,-47],[-78,-36],[-19,-51],[-122,-61],[-25,-54],[-91,-50],[-53,8],[-73,-32],[-80,-39],[-65,-40],[-133,-33],[-12,19],[84,55],[77,36],[84,64],[96,13],[38,48],[109,70],[17,23],[58,42],[13,87],[40,68],[-90,-35],[-25,21],[-43,-43],[-51,59],[-20,-41],[-30,58],[-78,-47],[-48,0],[-7,69],[15,43],[-50,42],[-101,-22],[-67,54],[-54,28],[0,67],[-60,49],[30,67],[64,65],[28,60],[63,8],[53,-18],[64,56],[57,-10],[59,36],[-15,53],[-43,21],[58,46],[-48,-2],[-84,-25],[-23,-26],[-61,26],[-112,-13],[-112,27],[-34,48],[-98,66],[110,50],[173,56],[64,0],[-10,-58],[165,5],[-64,72],[-97,45],[-54,58],[-76,49],[-106,38],[44,61],[138,3],[98,54],[19,56],[79,56],[76,13],[149,52],[71,-8],[120,62],[118,-24],[57,-53],[34,23],[132,-7],[-5,-27],[120,-21],[79,13],[165,-38],[151,-10],[60,-16],[103,20],[118,-35],[85,-17],[0,0]],[[646,13916],[48,-22],[49,12],[62,-31],[78,-15],[-7,-13],[-59,-25],[-59,25],[-30,21],[-69,-6],[-18,10],[5,44]],[[28082,4610],[0,-57],[-50,-29],[-49,-24],[-10,43],[39,23],[24,7],[46,37]],[[27936,4442],[19,19],[27,-34],[-12,-61],[-49,-15],[-44,13],[-7,53],[31,39],[35,-14]],[[16,4615],[-9,-56],[-7,-6],[0,57],[16,5]],[[16686,6372],[12,-14],[284,-237],[4,-67],[113,-117]],[[17099,5937],[-36,-144],[5,-66],[50,-43],[2,-30],[-21,-70],[4,-35],[-5,-56],[28,-73],[32,-115],[28,-26]],[[17186,5279],[0,0],[-63,-68],[-84,-44],[-47,2],[-28,-36],[-54,-3],[-20,-14],[-95,33],[-58,-10]],[[16737,5139],[-22,159],[-27,55],[-16,32],[-76,21]],[[16596,5406],[-44,36],[-50,19],[-31,19],[-32,30]],[[16439,5510],[0,0],[-43,146],[-45,66],[-16,67],[8,61],[-13,107]],[[16330,5957],[32,6],[28,42],[30,61],[20,24],[-1,38],[-17,26],[-5,47]],[[16417,6201],[0,0],[23,14],[4,69],[-31,66]],[[16413,6350],[28,14],[86,-2],[159,10]],[[13366,9705],[0,-7],[-1,-23]],[[13365,9675],[-2,-177],[-256,6],[4,-298],[-74,-10],[-19,-60],[15,-168],[-306,0],[-17,-38]],[[12710,8930],[3,48]],[[12713,8978],[1,0],[176,10],[10,41],[32,53],[26,161],[108,126],[37,147],[24,8],[26,91],[66,13],[28,-15],[35,0],[26,27],[48,3],[-3,62],[13,0]],[[4459,12194],[-11,0],[-150,114],[-57,51],[-142,47],[-43,103],[11,71],[-99,51],[-14,93],[-94,86],[-2,60]],[[3044,14607],[146,-28],[122,-56],[81,-10],[68,48],[94,37],[116,-15],[117,51],[128,29],[53,-48],[59,27],[17,55],[54,-12],[132,-105],[104,80],[10,-89],[96,19],[30,34],[95,-7],[119,-49],[183,-43],[106,-19],[77,8],[106,-60],[-110,-58],[141,-25],[211,14],[65,20],[83,-69],[85,59],[-80,49],[50,40],[96,5],[63,12],[63,-28],[78,-64],[87,10],[138,-52],[121,18],[114,-3],[-9,73],[70,20],[120,-40],[0,-110],[49,93],[64,-3],[34,117],[-83,72],[-91,47],[6,129],[92,85],[104,-19],[78,-51],[107,-132],[-70,-58],[145,-23],[0,-119],[104,91],[93,-75],[-23,-86],[76,-79],[81,84],[57,101],[4,128],[112,-9],[114,-17],[105,-58],[4,-58],[-57,-62],[54,-62],[-10,-57],[-151,-82],[-109,-18],[-81,35],[-23,-58],[-76,-98],[-22,-51],[-90,-78],[-113,-8],[-61,-49],[-5,-77],[-91,-14],[-95,-95],[-85,-132],[-30,-92],[-4,-135],[114,-19],[35,-109],[36,-89],[110,24],[145,-51],[78,-44],[56,-55],[98,-32],[82,-49],[130,-7],[83,-11],[-12,-101],[23,-117],[57,-131],[116,-111],[60,38],[42,119],[-40,185],[-56,62],[126,54],[88,82],[44,82],[-7,77],[-52,99],[-96,88],[92,121],[-33,106],[-27,183],[55,27],[133,-32],[80,-12],[65,31],[74,-39],[95,-68],[24,-46],[139,-8],[-2,-98],[25,-148],[71,-18],[57,-69],[114,65],[74,128],[52,55],[61,-104],[101,-149],[87,-139],[-31,-74],[103,-65],[70,-67],[125,-30],[50,-37],[30,-99],[62,-16],[31,-43],[5,-132],[-57,-43],[-55,-41],[-128,-42],[-99,-94],[-132,-20],[-167,24],[-117,1],[-81,-7],[-66,-84],[-99,-52],[-112,-154],[-90,-108],[67,20],[124,152],[164,98],[117,12],[69,-57],[-74,-79],[25,-126],[25,-88],[102,-58],[129,17],[78,130],[5,-84],[51,-42],[-96,-77],[-174,-69],[-77,-48],[-87,-84],[-60,9],[-2,99],[135,96],[-125,-4],[-87,-13]],[[7489,13761],[58,54],[107,-2],[-2,-22],[-91,-65],[-54,3],[-18,32]],[[7818,14967],[-86,62],[4,42],[37,7],[179,-12],[134,-64],[7,-32],[-82,3],[-85,3],[-86,-17],[-22,8]],[[7776,13719],[30,34],[32,-2],[20,-25],[-31,-61],[-35,10],[-20,35],[4,9]],[[6739,15220],[-42,-44],[-114,9],[-94,30],[41,52],[112,32],[68,-41],[29,-38]],[[6721,15517],[-35,-4],[-146,8],[-21,33],[157,-2],[54,-21],[-9,-14]],[[6494,15662],[93,-40],[-22,-42],[-114,-24],[-64,27],[-33,44],[-7,48],[102,-5],[45,-8]],[[7165,15153],[-125,13],[-209,38],[-26,65],[-9,57],[-79,51],[-162,15],[-90,35],[29,49],[162,-8],[86,-38],[154,0],[67,-37],[-18,-45],[90,-26],[49,-28],[106,-5],[113,-10],[125,26],[157,9],[127,-8],[84,-43],[17,-48],[-49,-31],[-115,-25],[-99,13],[-224,-17],[-161,-2]],[[5362,15591],[109,-19],[-26,-34],[-144,-33],[-116,37],[63,37],[114,12]],[[5385,15667],[102,-24],[-95,-22],[-129,0],[1,16],[80,35],[41,-5]],[[9705,12462],[-41,-73],[-53,-101],[52,39],[52,-24],[-27,-42],[68,-32],[36,29],[78,-35],[-25,-86],[55,20],[10,-62],[24,-73],[-32,-102],[-36,-5],[-51,22],[17,96],[-22,15],[-89,-102],[-47,5],[54,54],[-73,29],[-85,-8],[-151,4],[-12,35],[49,41],[-34,31],[65,71],[81,185],[48,66],[68,40],[37,-5],[-16,-32]],[[7498,14071],[85,-40],[89,-36],[7,-56],[58,10],[55,-39],[-69,-37],[-121,28],[-44,53],[-76,-62],[-112,-61],[-26,68],[-106,-11],[68,58],[10,92],[26,105],[57,-9],[15,-51],[39,18],[45,-30]],[[7897,14915],[73,45],[173,-58],[108,-55],[10,-51],[145,26],[81,-73],[189,-47],[68,-47],[74,-110],[-144,-54],[184,-76],[124,-25],[113,-108],[122,-7],[-24,-83],[-137,-134],[-96,49],[-123,113],[-101,-15],[-10,-68],[83,-66],[106,-54],[32,-31],[50,-116],[-27,-83],[-98,31],[-196,94],[110,-101],[82,-70],[12,-41],[-212,47],[-167,67],[-94,57],[27,33],[-116,60],[-114,57],[1,-34],[-226,-19],[-65,41],[51,86],[147,1],[160,14],[-27,42],[28,58],[102,114],[-23,51],[-30,41],[-119,56],[-158,40],[50,30],[-82,72],[-69,7],[-61,40],[-43,-35],[-141,-15],[-283,26],[-166,34],[-126,18],[-65,41],[82,53],[-111,0],[-25,118],[60,104],[80,47],[202,32],[-58,-75],[62,-73],[72,94],[197,47],[133,-121],[-11,-75],[155,34]],[[6669,15122],[164,-4],[149,-28],[-117,-105],[-94,-22],[-83,-86],[-89,4],[-49,102],[1,58],[41,50],[77,31]],[[4458,15354],[0,0],[132,87],[161,75],[119,-2],[107,18],[-10,-90],[-60,-41],[-74,-5],[-145,-50],[-124,-18],[-106,26]],[[3689,12781],[74,8],[-23,-132],[68,-94],[-31,1],[-47,53],[-29,53],[-39,37],[-15,51],[5,37],[37,-14]],[[5812,15725],[153,-16],[211,-43],[60,-55],[30,-48],[-127,12],[-129,38],[-174,5],[76,35],[-95,28],[-5,44]],[[4407,12137],[-40,-17],[-128,53],[-24,41],[-69,41],[-14,33],[-80,22],[-31,62],[7,27],[81,-25],[48,-17],[74,-13],[26,-40],[39,-55],[78,-49],[33,-63]],[[4560,15159],[112,-25],[199,-5],[76,-34],[84,-50],[-99,-30],[-190,-80],[-97,-82],[0,-50],[-206,-57],[-41,51],[-181,62],[34,49],[54,84],[68,78],[-77,71],[264,18]],[[5630,15322],[69,19],[83,-5],[13,-57],[-48,-56],[-264,-17],[-196,-50],[-119,-3],[-9,37],[162,52],[-353,-14],[-109,21],[107,115],[73,31],[219,-38],[139,-70],[135,-9],[-111,112],[71,42],[81,-13],[26,-55],[31,-42]],[[5732,14999],[86,-47],[49,-114],[25,-82],[131,-57],[141,-56],[-8,-51],[-128,-9],[49,-45],[-26,-43],[-141,19],[-135,31],[-90,-7],[-147,-40],[-197,-17],[-138,-11],[-43,55],[-107,32],[-69,-14],[-96,93],[52,13],[120,19],[110,-5],[103,21],[-152,27],[-167,-10],[-110,3],[-41,43],[180,47],[-120,-2],[-136,31],[66,87],[53,45],[210,71],[80,-22],[-39,-54],[174,34],[108,-58],[88,59],[71,-37],[63,-114],[39,48],[-55,118],[69,17],[78,-18]],[[6206,14955],[-86,77],[92,56],[94,-24],[139,14],[20,-34],[-72,-56],[118,-49],[-15,-104],[-128,-46],[-74,10],[-55,44],[-194,90],[2,37],[159,-15]],[[5725,15060],[105,5],[60,-26],[-69,-77],[-122,81],[26,17]],[[6357,15424],[60,-55],[3,-59],[-36,-87],[-128,-12],[-85,19],[3,68],[-129,-9],[-5,90],[85,-4],[116,41],[111,-7],[5,15]],[[6551,15876],[54,36],[81,8],[-35,27],[182,5],[100,-62],[131,-25],[128,-22],[61,-76],[95,-38],[-108,-35],[-144,-87],[-138,-8],[-161,14],[-85,47],[1,43],[63,31],[-143,-1],[-87,40],[-49,51],[54,52]],[[6897,16027],[116,22],[91,4],[154,18],[115,44],[96,-6],[84,-33],[59,63],[102,19],[141,13],[238,5],[42,-13],[225,20],[169,-7],[170,-8],[208,-9],[168,-15],[142,-32],[-3,-31],[-190,-50],[-190,-24],[-70,-26],[169,0],[-183,-70],[-127,-33],[-134,-95],[-161,-19],[-50,-24],[-236,-13],[108,-14],[-55,-21],[65,-58],[-74,-39],[-121,-33],[-37,-46],[-109,-35],[11,-27],[134,5],[1,-29],[-208,-69],[-203,32],[-229,-18],[-116,14],[-148,6],[-10,56],[145,27],[-39,84],[47,8],[209,-51],[-106,76],[-127,22],[63,44],[138,28],[23,41],[-111,46],[-33,59],[214,-5],[61,-13],[122,43],[-175,13],[-273,-8],[-138,40],[-66,47],[-91,35],[-17,40]],[[8174,14342],[-51,-34],[-87,-6],[-20,58],[33,65],[72,16],[61,-33],[1,-49],[-9,-17]],[[6533,14581],[47,-44],[-48,-41],[-106,35],[-63,-13],[-107,53],[69,36],[54,51],[83,-33],[47,-22],[24,-22]],[[9009,12295],[27,10],[102,-29],[80,-50],[3,-21],[-38,-2],[-102,37],[-72,55]],[[9048,11964],[28,-57],[57,-15],[72,3],[-39,-48],[-29,-7],[-99,49],[-19,39],[29,36]],[[20855,12219],[-60,-79],[-64,-10],[-4,-117],[-43,-53],[-155,38],[-56,-209],[-40,-26],[-154,-46],[70,-202],[-54,-30],[7,-67]],[[20302,11418],[-48,17],[-40,42],[-116,13],[-129,2],[-28,-12],[-111,49],[-45,-24],[-12,-70],[-128,41],[-51,-16],[-18,-52]],[[19576,11408],[-44,-21],[-104,-81],[-33,-84],[-30,0],[-22,55],[-99,4],[-15,95],[-38,0],[5,117],[-93,85],[-134,-9],[-92,-17],[-74,105],[-64,44],[-121,83],[-15,11],[-200,-69],[3,-429]],[[18406,11297],[-40,-6],[-54,91],[-53,33],[-88,-24],[-35,-39]],[[18136,11352],[-4,28],[19,50],[-15,40],[-91,40],[-34,103],[-44,30],[-2,38],[76,-12],[3,86],[66,19],[68,-18],[14,115],[-13,72],[-79,-6],[-66,28],[-90,-51],[-74,-24]],[[17870,11890],[-39,18],[8,60],[-50,79],[-58,-3],[-67,79],[46,88],[-23,24],[62,128],[80,-68],[10,85],[162,127],[121,3],[173,-81],[91,-47],[82,48],[125,3],[99,-60],[24,34],[109,-5],[20,56],[-127,80],[74,57],[-14,32],[76,30],[-57,80],[35,40],[292,40],[39,29],[195,43],[70,48],[140,-25],[25,-121],[81,28],[100,-39],[-5,-64],[74,7],[196,110],[-29,-37],[99,-90],[175,-296],[41,61],[108,-68],[112,30],[43,-20],[37,-67],[54,-23],[34,-49],[100,15],[42,-70]],[[19576,11408],[23,-11],[-65,-76],[58,-43],[55,29],[93,-62],[-100,-84],[-59,11]],[[19581,11172],[-33,-3],[-11,33],[16,54],[-105,-27],[-24,-75],[-37,-65],[-66,6],[-20,-51],[58,-28],[17,-87],[-45,-118]],[[19331,10811],[-59,25],[-43,0]],[[19229,10836],[2,71],[-104,51],[-81,57],[-51,55],[-89,80],[-39,121],[-26,21],[-84,-6],[-30,25],[-8,92],[-106,62],[-66,-67],[-66,-41],[13,-59],[-88,-1]],[[25039,6179],[135,-81],[145,-66],[53,-60],[44,-58],[12,-69],[130,-73],[19,-62],[-72,-12],[17,-78],[70,-75],[51,-124],[44,4],[-3,-52],[60,-19],[-23,-23],[83,-49],[-9,-34],[-51,-8],[-20,30],[-67,14],[-79,17],[-60,75],[-45,64],[-40,102],[-102,50],[-66,-33],[-48,-38],[10,-86],[-61,-40],[-44,20],[-80,4]],[[25042,5419],[-2,379],[-1,381]],[[25948,6056],[29,-38],[10,-61],[-25,-31],[-14,69],[-19,45],[-35,38],[-44,50],[-57,34],[21,29],[42,-33],[27,-26],[34,-28],[31,-48]],[[25843,5800],[-43,-28],[-40,-27],[-42,0],[-63,34],[-45,33],[7,36],[69,-18],[44,10],[11,56],[11,3],[8,-62],[44,9],[22,39],[44,42],[-9,69],[47,3],[16,-20],[-2,-65],[-25,-71],[-42,-10],[-12,-33]],[[26113,5859],[24,-26],[38,-74],[37,-40],[-12,-33],[-22,-11],[-33,45],[-35,74],[-16,89],[11,11],[8,-35]],[[25042,5419],[-71,96],[-79,23],[-19,-33],[-98,-3],[34,93],[48,33],[-19,127],[-38,98],[-152,99],[-64,10],[-116,107],[-23,-56],[-29,-11],[-18,43],[-1,51],[-59,57],[83,42],[56,-2],[-7,31],[-113,0],[-32,70],[-70,21],[-32,58],[105,28],[40,38],[126,-48],[12,-43],[21,-189],[80,-69],[66,123],[89,71],[69,0],[66,-41],[58,-41],[84,-23]],[[23790,5445],[8,-23],[1,-35]],[[23799,5387],[-51,-87],[-67,-26],[-9,15],[7,39],[33,71],[78,46]],[[24510,5678],[-6,88],[13,41],[17,40],[17,-34],[0,-56],[-41,-79]],[[23237,6964],[-45,-106],[57,-110],[-13,-53],[88,-108],[-93,-14],[-27,-79],[4,-106],[-75,-79],[-2,-116],[-30,-179],[-11,42],[-89,-53],[-31,71],[-56,7],[-39,38],[-92,-42],[-29,56],[-51,-7],[-63,14],[-12,156],[-39,33],[-38,99],[-10,102],[9,108],[45,77]],[[22595,6715],[14,-77],[53,-66],[49,23],[50,-8],[46,59],[38,10],[73,-33],[64,25],[40,163],[30,41],[27,132],[90,0],[68,-20]],[[24133,6155],[86,-34],[29,-89],[-66,48],[-66,10],[-44,-7],[-54,4],[19,63],[96,5]],[[23938,6040],[-53,21],[-16,51],[79,6],[19,-39],[-29,-39]],[[24020,6736],[6,-64],[47,-11],[6,-47],[-3,-103],[-40,12],[-12,-71],[32,-61],[-22,-13],[-31,72],[-24,149],[16,94],[25,43]],[[23630,6584],[90,5],[77,85],[14,-26],[-63,-117],[-58,-22],[-76,22],[-130,-5],[-68,-17],[-11,-88],[70,-103],[42,53],[145,39],[-6,-54],[-34,18],[-33,-69],[-70,-45],[74,-149],[-15,-41],[71,-134],[0,-77],[-43,-34],[-30,41],[38,96],[-77,-46],[-19,32],[10,46],[-56,68],[5,114],[-51,-36],[7,-136],[2,-167],[-49,-16],[-34,34],[23,107],[-12,113],[-33,0],[-24,80],[32,77],[11,93],[39,175],[17,48],[66,86],[61,-34],[98,-16]],[[23425,5286],[-104,82],[73,23],[41,-35],[28,-36],[-6,-31],[-32,-3]],[[23506,5487],[52,9],[71,43],[-13,-65],[-117,-33],[-103,14],[0,43],[61,24],[49,-35]],[[23266,5507],[49,10],[19,-49],[-91,-23],[-54,-17],[-41,1],[26,68],[43,1],[21,40],[28,-31]],[[22504,5733],[11,-42],[149,-12],[17,49],[144,-56],[29,-76],[117,-21],[95,-69],[-89,-44],[-85,47],[-72,-3],[-80,8],[-72,21],[-90,44],[-58,12],[-33,-15],[-142,48],[-13,51],[-72,8],[54,112],[94,-7],[64,-46],[32,-9]],[[22182,6355],[14,-81],[28,-65],[56,-10],[38,-74],[-19,-145],[-3,-181],[-87,-2],[-66,97],[-100,96],[-33,71],[-59,94],[-39,88],[-59,164],[-69,95],[-22,101],[-29,91],[-71,73],[-41,100],[-59,66],[-81,128],[-7,59],[50,-3],[122,-24],[69,-114],[60,-79],[42,-48],[75,-125],[79,-2],[66,-80],[45,-98],[59,-53],[-31,-95],[45,-41],[27,-3]],[[8687,347],[30,-54],[39,-87],[102,-71],[110,-29],[-36,-58],[-74,-5],[-39,40]],[[8819,83],[-48,4],[-84,0],[0,260]],[[9547,2960],[-19,-93],[-21,-120],[1,-117],[-18,-25],[-6,-75]],[[9484,2530],[-5,-61],[99,-101],[-10,-80],[48,-50],[-3,-57],[-76,-149],[-115,-63],[-157,-24],[-86,11],[17,-69],[-17,-87],[15,-59],[-47,-41],[-80,-16],[-75,42],[-30,-31],[12,-116],[52,-35],[42,37],[24,-61],[-72,-36],[-63,-72],[-11,-117],[-19,-62],[-74,0],[-61,-60],[-22,-88],[77,-85],[74,-23],[-27,-106],[-92,-65],[-50,-137],[-71,-46],[-33,-54],[26,-122],[51,-66],[-32,6]],[[8693,387],[-72,18],[-190,16],[-32,66],[2,87],[-52,-6],[-28,41],[-7,124],[61,51],[24,75],[-9,59],[41,99],[29,155],[-9,69],[35,21],[-9,44],[-36,23],[26,49],[-36,44],[-17,135],[31,23],[-14,142],[19,120],[20,105],[47,41],[-23,114],[0,107],[59,76],[-3,98],[45,113],[1,107],[-21,22],[-36,202],[48,120],[-6,112],[27,105],[52,109],[54,74],[-23,45],[16,38],[-3,195],[86,57],[27,121],[-10,29]],[[8807,3832],[65,105],[103,-28],[45,-84],[30,93],[89,-5],[13,-24]],[[9152,3889],[143,-190],[65,-18],[94,-86],[82,-46],[11,-51],[-77,-178],[78,-31],[88,-18],[61,19],[70,89],[14,102]],[[9781,3481],[38,24],[39,-68],[-2,-93],[-65,-65],[-53,-47],[-87,-113],[-104,-159]],[[8819,83],[-27,-47],[-67,-36],[-38,4],[-46,10],[-57,34],[-81,17],[-98,66],[-81,62],[-106,131],[63,-25],[110,-78],[104,-41],[40,53],[25,79],[72,49],[55,-14]],[[8613,4433],[39,-79],[10,-84],[41,-50],[-25,-113],[42,-130],[31,-161],[56,16]],[[8693,387],[-70,1],[-37,-29],[-71,-43],[-12,-108],[-34,-3],[-88,38],[-89,81],[0,0],[-97,67],[-24,73],[22,68],[-40,77],[-10,199],[33,113],[83,90],[-118,34],[74,103],[26,193],[87,-41],[41,241],[-52,31],[-25,-145],[-49,17],[25,166],[26,217],[36,79],[-22,114],[-7,131],[32,4],[49,188],[54,187],[33,174],[-18,174],[23,97],[-9,143],[45,142],[15,226],[24,242],[25,260],[-6,191],[-16,164]],[[8552,4343],[40,30],[21,60]],[[16439,5510],[-32,12],[-104,-19],[-21,-15],[-23,-74],[18,-52],[-14,-138],[-9,-117],[21,-20],[55,-46],[21,22],[6,-126],[-60,1],[-32,64],[-28,49],[-59,16],[-18,61],[-48,-36],[-62,16],[-26,53],[-50,11],[-36,-3],[-5,37],[-27,3]],[[15906,5209],[-35,6],[-48,-17],[-35,3],[-19,-11],[5,138],[-27,44],[-5,72],[11,70],[-16,45],[-1,72],[-95,-1],[7,43],[-40,-1],[-4,-20],[-48,-4],[-20,-68],[-11,-29],[-44,15],[-25,-15],[-52,-9],[-30,60],[-18,38],[-22,69],[-20,88],[-230,1],[-27,-14],[-23,2],[-33,-16]],[[15001,5770],[-10,37]],[[14991,5807],[19,12],[4,51],[12,30],[29,24]],[[15055,5924],[20,-11],[27,44],[42,-1],[5,-33],[29,-20],[46,72],[46,57],[20,38],[-4,96],[35,113],[35,60],[52,56],[9,37],[2,42],[12,41],[-3,66],[9,103],[15,74],[24,62],[4,70]],[[15480,6890],[8,81],[30,59],[41,38],[65,-39],[50,-43],[56,-12],[58,-23],[24,71],[11,9],[36,-12],[86,59],[32,-25],[24,4],[12,28],[29,9],[59,-11],[50,-3],[26,12]],[[16177,7092],[46,-96],[35,-14],[21,19],[36,-7],[43,24],[19,-49],[68,-78]],[[16445,6891],[0,0],[-4,-136],[31,-17],[-24,-41],[-31,-31],[-30,-61],[-16,-54],[-5,-94],[-18,-44],[-1,-87]],[[16347,6326],[-22,-32],[-2,-70],[-11,-9],[-7,-64]],[[16305,6151],[19,-53],[6,-141]],[[17285,6286],[-46,97],[-1,423],[68,133]],[[17306,6939],[21,36],[50,2],[70,82],[102,6],[219,349]],[[17768,7414],[55,98],[35,72],[0,61],[0,117],[0,48],[0,2],[0,0]],[[17858,7812],[26,2],[35,17],[42,13],[37,39],[29,0],[3,-31],[-8,-68],[0,-62],[-16,-42],[-22,-126],[-38,-131],[-48,-149],[-67,-170],[-66,-131],[-93,-158],[-78,-95],[-116,-116],[-72,-89],[-86,-140],[-17,-61],[-18,-28]],[[16686,6372],[-1,122],[22,47],[38,77],[29,86],[-35,134],[-9,58],[-36,81]],[[16694,6977],[47,70],[53,77]],[[16794,7124],[41,-20],[0,-65],[27,-39],[54,0],[98,-99],[25,-1],[19,4],[16,-14],[53,-9],[23,48],[71,49],[31,-39],[54,0]],[[17285,6286],[-55,-47],[-19,-48],[-30,-9],[-10,-82],[-25,-47],[-16,-78],[-31,-38]],[[15958,7440],[-59,52],[-28,34],[-5,35],[13,49],[0,48],[-45,73],[-9,50]],[[15825,7781],[0,28],[-28,34],[-1,68],[-17,45],[-26,-7],[8,43],[20,49],[-9,48],[25,35],[-16,27],[21,72],[35,86],[67,-8],[-3,463]],[[15901,8764],[1,49],[89,1],[0,232]],[[15991,9046],[313,0],[303,0],[309,0]],[[16916,9046],[26,-114],[-17,-21],[11,-120],[28,-140],[30,-28],[44,-43]],[[17038,8580],[-40,-67],[-58,-19],[-25,-36],[-8,-78],[-33,-171],[9,-47]],[[16883,8162],[-12,-99],[-33,-115],[-46,-58],[-34,-89],[-8,-47],[-37,-33],[-23,-122],[1,-105]],[[16691,7494],[-1,91],[-11,2],[1,59],[-9,39],[-40,47],[-10,84],[10,86],[-36,8],[-6,-27],[-47,-5],[19,-34],[7,-71],[-43,-64],[-38,-84],[-41,-11],[-65,67],[-30,-24],[-8,-34],[-40,-22],[-4,-24],[-76,0],[-11,24],[-56,4],[-28,-19],[-21,9],[-40,68],[-14,32],[-56,-16],[-22,-54],[-20,-104],[-26,-22],[-25,-13],[54,-46]],[[15825,7781],[-50,-20],[-39,-48],[-57,-126],[-73,-55],[-76,7],[-22,-11],[8,-40],[-40,-42],[-34,-45],[-98,-45],[-20,27],[-12,2],[-15,-30],[-64,-8]],[[15233,7347],[12,31],[-24,81],[-12,48],[-34,20],[-46,67],[17,55],[36,-11],[22,8],[43,0],[-42,105],[2,78],[-4,78],[-31,74]],[[15172,7981],[7,55],[-50,2],[0,76],[-32,42],[33,154],[101,110],[3,151],[30,237],[18,50],[-34,41],[-1,37],[-29,30],[-19,180]],[[15199,9146],[80,64],[310,-223],[312,-223]],[[8447,8780],[8,-64],[-7,-44],[-19,-20],[20,-36],[-1,-31]],[[8448,8585],[-52,20],[-37,-8],[-48,8],[-36,-21],[-42,35],[7,38],[72,-15],[59,-10],[28,26],[-36,50],[0,45],[-49,18],[18,32],[48,-5],[67,-18]],[[8447,8780],[10,20],[61,-1],[46,-30],[21,3],[14,-41],[43,2],[-2,-34],[34,-5],[38,-43],[-29,-47],[-37,25],[-35,-5],[-26,6],[-14,-21],[-31,-8],[-11,29],[-26,-17],[-32,-80],[-20,19],[-3,33]],[[27983,14769],[99,48],[0,-79],[-86,-6],[-13,37]],[[17870,11890],[-35,-70],[-76,-19],[-77,-120],[70,-111],[-7,-78],[85,-137],[0,0]],[[17830,11355],[-46,-47],[-14,-29],[-34,7],[-54,71],[-22,4]],[[17660,11361],[-49,27],[-23,48],[-73,25],[-47,-19],[-14,21],[-106,57],[-114,18],[-67,19],[-9,-13]],[[17158,11544],[-99,98],[-89,45],[-68,68],[57,19],[64,98],[-43,45],[114,48],[-2,25],[-69,-18]],[[17023,11972],[2,51],[40,33],[76,9],[12,39],[-17,64],[32,61],[-1,34],[-115,38],[-46,-1],[-49,55],[-59,-18],[-100,40],[2,23],[-27,50],[-63,6],[-6,35],[20,25],[-50,65],[-82,-11],[-23,6],[-20,-27],[-29,5]],[[16520,12554],[0,0],[-19,75],[-19,38],[16,12],[62,-5],[31,26],[-22,31],[-54,21],[6,21],[-32,21],[-49,76],[16,31],[-7,56],[-76,28],[-41,-15],[-11,29],[-83,30]],[[16238,13029],[-24,69],[-7,56],[-37,27]],[[16170,13181],[33,38],[-23,107],[55,68],[-12,20],[0,0]],[[16223,13414],[89,64],[-82,56]],[[16230,13534],[0,0],[167,149],[73,67],[29,60],[-116,80],[32,75],[-70,87],[52,99],[-90,133],[72,88],[-120,78],[12,82]],[[16271,14532],[63,11],[132,46]],[[16466,14589],[0,0],[81,41],[129,-71],[214,-27],[295,-133],[59,-55],[5,-78],[-87,-61],[-127,-31],[-348,89],[-58,-15],[127,-86],[5,-54],[6,-118],[100,-35],[61,-31],[11,57],[-48,50],[50,44],[189,-73],[66,29],[-54,84],[183,114],[72,-7],[73,-40],[45,80],[-66,70],[39,69],[-57,73],[217,-38],[44,-65],[-98,-14],[0,-65],[62,-41],[121,27],[19,74],[162,55],[273,101],[59,-6],[-77,-71],[97,-12],[55,39],[146,3],[115,50],[90,-71],[89,77],[-83,68],[41,38],[231,-35],[108,-37],[283,-133],[52,62],[-79,61],[-2,25],[-95,11],[26,55],[-42,91],[-2,38],[144,106],[51,105],[58,22],[207,-30],[17,-65],[-75,-93],[49,-38],[25,-81],[-18,-161],[87,-71],[-34,-78],[-153,-165],[89,-18],[31,42],[86,30],[21,58],[68,55],[-46,67],[37,77],[-86,10],[-19,65],[62,117],[-101,94],[139,80],[-18,81],[39,3],[42,-64],[-32,-112],[84,-21],[-36,84],[132,45],[161,7],[145,-67],[-70,97],[-8,124],[136,23],[187,-5],[169,16],[-63,60],[90,77],[90,3],[151,58],[206,15],[27,32],[205,11],[63,-26],[175,62],[144,-2],[21,51],[74,49],[185,48],[134,-38],[-106,-28],[177,-19],[21,-58],[71,29],[228,-1],[176,-58],[62,-43],[-20,-61],[-86,-34],[-204,-65],[-59,-34],[97,-17],[115,-29],[70,21],[40,-74],[34,30],[124,18],[251,-19],[19,-54],[327,-18],[4,89],[165,-20],[125,1],[127,-62],[35,-73],[-46,-50],[98,-91],[123,-47],[75,122],[126,-52],[131,31],[151,-36],[58,33],[126,-17],[-55,109],[102,49],[706,-75],[66,-69],[204,-89],[315,22],[155,-19],[66,-49],[-10,-85],[97,-33],[104,24],[138,3],[147,-23],[147,13],[136,-104],[97,38],[-63,75],[35,51],[248,-32],[163,7],[225,-56],[109,-51],[0,-464],[-1,-1],[-100,-51],[-102,9],[72,-62],[45,-97],[37,-31],[9,-48],[-20,-31],[-146,25],[-218,-88],[-69,-14],[-119,-81],[-114,-72],[-29,-53],[-111,81],[-204,-92],[-34,43],[-75,-49],[-105,15],[-25,-76],[-94,-113],[4,-47],[89,-26],[-12,-169],[-72,-5],[-33,-97],[32,-51],[-136,-59],[-28,-133],[-115,-29],[-24,-118],[-112,-109],[-29,80],[-34,170],[-43,260],[37,162],[65,69],[5,55],[121,25],[139,147],[135,120],[140,93],[63,165],[-95,-10],[-47,-97],[-198,-127],[-63,143],[-202,-40],[-196,-195],[65,-72],[-174,-31],[-121,-11],[5,84],[-121,17],[-96,-57],[-239,21],[-256,-35],[-254,-227],[-297,-275],[122,-15],[39,-73],[76,-26],[49,59],[86,-8],[112,-129],[2,-99],[-61,-116],[-7,-139],[-34,-186],[-118,-169],[-25,-81],[-107,-136],[-104,-135],[-49,-68],[-105,-68],[-49,-2],[-49,57],[-105,-85],[-12,-39]],[[24243,11403],[-11,21],[0,0]],[[24232,11424],[0,59],[40,3],[11,137],[-21,100],[67,41],[94,-21],[54,114],[27,128],[30,42],[40,106],[-128,-35],[-68,-46],[-118,0],[-32,110],[-93,83],[-136,37],[-29,114],[-26,71],[-30,51],[-48,117],[-68,43],[-117,35],[-104,-4],[-98,-20],[-63,-58],[42,-28],[1,-65],[-43,-37],[-70,-123],[0,-51],[-110,-74],[-94,44]],[[23142,12297],[-92,-10],[-42,39],[-46,13],[-115,-83],[-102,-19],[-72,-29],[-98,19],[-72,-1],[-47,59],[-77,57],[-78,15],[-99,-15],[-73,-22],[-111,50],[-15,86],[-92,30],[-70,13],[-88,48],[-82,-120],[33,-68],[-76,-81],[-114,30],[-78,4],[-51,54],[-82,2],[-68,34],[-118,-54],[-149,-100],[-83,-20]],[[20885,12228],[-30,-9]],[[21356,15925],[168,27],[153,-59],[179,-112],[-19,-105],[-170,-15],[-218,34],[-129,45],[-61,83],[-105,22],[202,80]],[[22063,15722],[198,-65],[-23,-48],[-441,-45],[144,154],[63,12],[59,-8]],[[24869,15356],[207,-5],[282,-62],[-62,-87],[-288,3],[-129,-27],[-154,75],[43,81],[101,22]],[[25603,15264],[196,-31],[-91,-46],[-124,10],[-146,47],[19,37],[146,-17]],[[24950,15033],[74,46],[98,11],[111,-45],[9,-31],[-118,-1],[-160,14],[-14,6]],[[17540,15874],[151,21],[118,2],[17,-32],[44,28],[74,20],[116,-25],[-30,-19],[-105,-15],[-70,-9],[-11,-19],[-92,-20],[-84,28],[44,37],[-172,3]],[[15814,12813],[-144,-1],[-95,13]],[[15575,12825],[17,51],[108,39]],[[15700,12915],[82,-21],[34,-19],[-8,-32],[6,-30]],[[18214,15077],[186,103],[-21,53],[175,61],[257,75],[261,23],[133,42],[152,16],[54,-47],[-52,-36],[-277,-58],[-238,-56],[-242,-111],[-117,-113],[-122,-111],[15,-98],[150,-96],[-46,-9],[-254,15],[-21,51],[-141,32],[-12,63],[80,25],[-2,62],[155,100],[-73,14]],[[25189,12741],[26,-112],[-2,-115],[32,-117],[79,-206],[-115,38],[-48,-169],[75,-119],[-2,-82],[-59,71],[-51,-90],[-15,97],[9,113],[-9,127],[18,88],[4,155],[-46,115],[7,159],[72,54],[-31,54],[35,16],[21,-77]],[[396,14314],[-6,-72],[52,-29],[-18,85],[212,-18],[152,-109],[-77,-50],[-128,-13],[-2,-113],[-31,-24],[-74,4],[-59,40],[-103,34],[-18,50],[-79,19],[-89,-15],[-42,41],[16,43],[-93,-27],[36,-56],[-45,-48],[0,464],[191,-90],[205,-116]],[[102,14745],[-102,-7],[0,79],[10,5],[66,0],[113,-33],[-6,-16],[-81,-28]],[[7880,9605],[37,8],[51,-2],[2,-31],[-84,-19],[-6,44]],[[7973,9634],[62,-52],[-13,-84],[-15,15],[1,61],[-35,46],[0,14]],[[7942,9420],[23,-5],[28,-96],[0,-68],[-19,-6],[-20,68],[-29,34],[17,73]],[[9269,438],[93,70],[66,-29],[46,46],[63,-52],[-24,-41],[-104,-34],[-36,40],[-66,-51],[-38,51]],[[15222,15769],[30,38],[114,4],[98,-39],[258,-87],[-196,-46],[-44,-86],[-69,-22],[-37,-97],[-94,-5],[-168,72],[71,41],[-117,34],[-152,99],[-61,91],[213,40],[42,-39],[112,2]],[[16271,14532],[33,81],[-100,47],[-121,-40],[-37,-85],[-75,-51],[-84,28],[-102,-6],[-87,62],[-47,-31]],[[15651,14537],[-47,-5],[-13,-77],[-147,19],[-20,-65],[-75,0],[-52,-83],[-77,-130],[-122,-162],[28,-41],[-27,-45],[-77,2],[-51,-111],[5,-154],[50,-59],[-26,-138],[-64,-80],[-35,-67]],[[14901,13341],[-52,72],[-155,-135],[-103,-27],[-108,59],[-28,125],[-25,270],[71,75],[206,98],[155,120],[143,162],[187,225],[131,88],[215,147],[170,50],[129,-6],[119,97],[142,-5],[139,23],[245,-86],[-101,-31],[85,-73]],[[16179,15812],[-116,-62],[-226,-13],[-230,19],[-13,32],[-113,2],[-86,53],[242,32],[114,-28],[77,35],[199,-29],[152,-41]],[[15970,15556],[-175,-47],[-137,27],[54,30],[-47,37],[161,24],[31,-45],[113,-26]],[[10394,16112],[261,70],[274,-5],[100,42],[275,12],[622,-15],[489,-92],[-145,-45],[-298,-6],[-419,-10],[39,-22],[276,13],[235,-40],[152,36],[64,-42],[-86,-68],[199,43],[379,46],[234,-22],[45,-51],[-319,-83],[-44,-27],[-250,-19],[181,-6],[-92,-84],[-62,-77],[2,-129],[94,-77],[-122,-4],[-129,-37],[145,-62],[18,-99],[-84,-10],[102,-101],[-174,-9],[91,-47],[-25,-41],[-111,-18],[-109,0],[98,-78],[1,-52],[-154,48],[-40,-31],[105,-29],[103,-72],[29,-93],[-139,-24],[-61,46],[-95,67],[26,-80],[-91,-61],[206,-5],[108,-6],[-209,-102],[-212,-92],[-228,-40],[-86,0],[-81,-46],[-109,-123],[-167,-82],[-55,-5],[-103,-28],[-113,-27],[-66,-71],[-2,-83],[-39,-76],[-128,-93],[33,-92],[-36,-95],[-40,-115],[-110,-7],[-114,96],[-156,0],[-75,64],[-53,114],[-136,145],[-39,76],[-11,105],[-108,107],[28,86],[-51,40],[77,137],[117,43],[31,50],[17,90],[-90,-41],[-43,-18],[-70,-16],[-96,38],[-4,79],[30,63],[72,1],[159,-31],[-133,74],[-70,40],[-78,-16],[-64,29],[86,109],[-48,42],[-60,81],[-95,123],[-99,46],[1,48],[-209,69],[-166,9],[-209,-5],[-191,-9],[-90,37],[-136,73],[205,37],[157,7],[-334,30],[-176,47],[11,46],[296,56],[286,56],[30,42],[-211,41],[68,46],[271,83],[113,12],[-32,52],[185,31],[239,19],[240,1],[84,-37],[207,64],[187,-44],[109,-8],[162,-38],[-185,63],[11,49]],[[19418,814],[50,-36],[74,-15],[3,-22],[-22,-53],[-121,-8],[-1,63],[11,47],[6,24]],[[23790,5445],[9,29],[67,26],[54,4],[25,14],[30,-14],[-29,-32],[-81,-52],[-66,-33]],[[15316,3151],[37,58],[31,-32],[14,-51],[34,-8],[49,-22],[42,8],[69,60],[0,432]],[[15592,3596],[22,-18],[46,-111],[-6,-72],[16,-40],[56,11],[39,53],[38,34],[19,56],[38,28],[33,-14],[37,-33],[63,-6],[50,27],[8,37],[13,55],[44,10],[23,43],[26,79],[69,87],[110,85]],[[16336,3907],[33,-2],[37,-19],[26,13],[41,-11]],[[16473,3888],[38,-164],[20,-82],[-13,-131],[6,-41]],[[16524,3470],[-40,21],[-22,-9],[-7,-33],[-22,-44],[1,-41],[47,-62],[46,12],[15,51]],[[16542,3365],[59,-1]],[[16601,3364],[-19,-84],[-9,-97],[-21,-53],[-52,-59],[-16,-16],[-33,-60],[-21,-59],[-45,-83],[-88,-121],[-55,-70],[-58,-53],[-82,-45],[-40,-6],[-10,-33],[-48,17],[-37,-22],[-85,23],[-48,-14],[-32,6],[-80,-47],[-67,-18],[-48,-44],[-36,-3],[-33,42],[-26,2],[-34,52],[-4,-16],[-10,32],[0,67],[-25,79],[25,21],[-2,90],[-51,109],[-39,98],[0,0],[-56,152]],[[16301,3106],[-34,37],[-37,-24],[-41,-46],[-41,-74],[57,-88],[28,11],[14,37],[44,19],[13,36],[24,57],[-27,35]],[[6433,9494],[31,3],[-31,-102],[-13,-84],[-6,-157],[-8,-57],[14,-63],[24,-57],[16,-90],[52,-87],[18,-67],[31,-57],[82,-31],[33,-48],[68,32],[60,12],[58,21],[50,20],[49,48],[19,67],[6,99],[14,34],[52,31],[82,26],[69,-5],[48,11],[19,-25],[-3,-56],[-41,-69],[-19,-71],[14,-20],[-12,-50],[-19,-92],[-20,30],[-17,-2]],[[7153,8638],[-14,-1],[-28,-71],[-15,14],[-8,-5],[0,-18]],[[7088,8557],[-73,1],[-72,0],[0,-65],[-36,0],[29,-39],[29,-27],[9,-25],[12,-8],[-1,-40],[-100,0],[-38,-95],[11,-22],[-9,-27],[-2,-34]],[[6847,8176],[-88,125],[-40,39],[-65,30],[-43,-9],[-62,-43],[-40,-12],[-55,31],[-59,22],[-72,53],[-59,17],[-88,54],[-66,56],[-19,31],[-44,7],[-79,37],[-34,53],[-83,66],[-39,74],[-19,57],[27,12],[-9,32],[19,30],[0,40],[-27,52],[-7,47],[-27,59],[-68,116],[-79,91],[-37,73],[-67,48],[-15,28],[13,72],[-40,27],[-46,57],[-20,82],[-41,9],[-45,61],[-37,56],[-3,37],[-42,88],[-28,89],[1,44],[-57,47],[-25,-5],[-45,32],[-12,-47],[12,-57],[8,-87],[26,-48],[58,-80],[14,-28],[12,-8],[10,-40],[13,2],[16,-75],[24,-29],[17,-42],[49,-60],[26,-108],[23,-51],[20,-54],[5,-62],[38,-4],[31,-53],[28,-53],[-2,-20],[-33,-42],[-13,0],[-21,70],[-51,67],[-55,57],[-40,29],[2,85],[-11,64],[-38,36],[-54,52],[-10,-15],[-20,30],[-48,28],[-45,68],[5,9],[33,-6],[29,44],[2,52],[-60,82],[-46,33],[-29,72],[-29,77],[-35,93],[-33,105]],[[9547,2960],[51,13],[78,-90],[29,3],[79,-75],[61,-65],[46,-79],[-35,-55],[22,-66]],[[9878,2546],[-34,-73],[-88,-65],[-57,23],[-42,-12],[-72,50],[-53,-4],[-48,65]],[[9781,3481],[14,68],[11,69],[0,65],[-27,21],[-31,-20],[-27,6],[-9,45],[-8,107],[-15,34],[-52,31],[-32,-22],[-83,22],[6,158],[-23,65]],[[9505,4130],[24,24],[-8,66],[23,51],[13,92],[-18,73],[-43,33],[-8,46],[11,67],[-149,5],[-30,135],[22,2],[-1,50],[-16,34],[-3,68],[-45,35],[-49,-1],[-32,34],[-53,23],[-30,43],[-88,20],[-85,104],[7,78],[-10,45],[8,87],[-102,-19],[-41,-44],[-69,-47],[-17,-36],[-40,-2],[-58,10]],[[8618,5206],[-44,-21],[-36,14],[6,177],[-65,-69],[-69,3],[-29,63],[-52,6],[17,50],[-44,72],[-32,103],[20,21],[0,50],[48,33],[-8,63],[20,41],[6,55],[89,79],[63,23],[11,17],[70,-5]],[[8589,5981],[36,319],[1,52],[-12,65],[-35,43],[0,85],[45,18],[16,-11],[2,44],[-46,13],[-1,72],[153,-3],[25,41],[22,-37],[15,-68],[15,13]],[[8825,6627],[43,-61],[61,7],[14,36],[58,28],[33,18],[9,50],[55,33],[-3,25],[-67,10],[-10,74],[2,77],[-34,31],[14,11],[58,-16],[62,-29],[23,28],[55,18],[88,44],[29,45],[-11,33]],[[9304,7089],[41,4],[18,-27],[-10,-51],[27,-17],[18,-55],[-21,-41],[-14,-99],[20,-59],[6,-54],[49,-55],[38,-6],[8,23],[25,5],[36,20],[24,31],[44,-9],[18,4]],[[9631,6703],[43,-9],[8,23],[-14,23],[8,34],[31,-10],[36,12],[46,-25]],[[9789,6751],[33,-24],[24,32],[18,-5],[10,-33],[38,9],[30,43],[24,86],[46,108]],[[10012,6967],[26,4],[20,-63],[43,-204],[43,-20],[2,-81],[-59,-96],[24,-35],[138,-18],[3,-116],[59,75],[99,-40],[128,-72],[38,-68],[-13,-65],[91,37],[152,-62],[116,5],[116,-97],[100,-131],[60,-34],[67,-4],[28,-37],[26,-149],[13,-71],[-30,-191],[-41,-77],[-110,-162],[-50,-132],[-58,-101],[-19,-2],[-22,-86],[6,-218],[-21,-180],[-9,-77],[-25,-45],[-13,-157],[-79,-152],[-14,-121],[-63,-50],[-18,-69],[-86,0],[-122,-44],[-54,-52],[-88,-34],[-91,-93],[-67,-116],[-11,-87],[14,-65],[-15,-118],[-18,-57],[-54,-64],[-87,-204],[-69,-93],[-52,-55],[-36,-110],[-52,-67]],[[9505,4130],[-2,36],[-72,60],[-72,1],[-137,-34],[-37,-102],[-2,-63],[-31,-139]],[[8613,4433],[49,126],[-34,98],[18,39],[-13,43],[30,58],[2,99],[3,82],[17,40],[-67,188]],[[8552,4343],[-78,68],[-7,47],[-155,117],[-140,127],[-60,72],[-32,96],[13,34],[-67,153],[-77,215],[-73,232],[-32,53],[-25,86],[-60,76],[-56,48],[25,52],[-38,111],[24,81],[63,74]],[[7777,6085],[9,-49],[-23,-28],[3,-42],[32,9],[32,-12],[32,-59],[45,47],[14,80],[48,101],[94,46],[86,122],[24,76],[-11,88]],[[8162,6464],[20,10],[52,-55],[25,-54],[37,-30],[45,-122],[58,-14],[43,30],[28,-20],[47,10],[60,-55],[-50,-118],[23,-3],[39,-62]],[[8162,6464],[-33,27],[-39,39],[-23,-19],[-65,17],[-19,50],[-15,-2],[-78,67]],[[7890,6643],[-11,35],[29,9],[-3,59],[19,43],[38,7],[33,73],[30,62],[-29,27],[15,68],[-18,107],[16,31],[-12,98],[-31,61]],[[7966,7323],[10,58],[26,-9],[14,35],[-19,68],[10,17]],[[8007,7492],[40,-3],[59,81],[33,13],[0,38],[14,99],[45,54],[50,2],[5,24],[61,-9],[62,59],[31,26],[38,56],[26,-7],[22,-31],[-16,-40]],[[8477,7854],[-50,-19],[-20,-58],[-30,-34],[-22,-43],[-10,-84],[-22,-67],[40,-9],[10,-53],[17,-26],[7,-47],[-9,-43],[2,-24],[19,-10],[19,-41],[100,11],[46,-14],[54,-100],[33,13],[55,-6],[45,12],[28,-19],[-15,-63],[-16,-40],[-7,-83],[15,-77],[23,-35],[3,-26],[-40,-58],[29,-26],[20,-41],[24,-117]],[[7966,7323],[-26,34],[-16,63],[19,31],[-20,8],[-15,39],[-39,32],[-34,-7],[-16,-41],[-31,-29],[-17,-4],[-8,-25],[37,-63],[-21,-14],[-11,-18],[-37,-6],[-13,70],[-10,-20],[-26,7],[-15,47],[-33,8],[-20,13],[-33,0],[-4,-26],[-8,18]],[[7569,7440],[4,24],[7,23],[-4,21],[13,14],[-17,17],[0,48],[30,9]],[[7602,7596],[28,-41],[-1,-25],[31,-5],[7,9],[21,-29],[39,9],[33,30],[47,23],[27,35],[43,-7],[-3,-11],[43,-4],[36,-21],[25,-34],[29,-33]],[[7569,7440],[-42,26],[-15,25],[9,20],[-3,25],[-22,28],[-30,23],[-27,15],[-5,35],[-20,20],[4,-34],[-15,-28],[-18,33],[-26,12],[-10,23],[0,36],[11,36],[-22,17],[18,22]],[[7356,7774],[11,16],[52,-31],[18,14],[25,-10],[13,-23],[22,-7],[19,24]],[[7516,7757],[20,-63],[29,-48],[37,-50]],[[7356,7774],[-27,37],[-37,47],[-17,40],[-33,36],[-39,53],[9,18],[12,-18],[6,9]],[[7230,7996],[25,4],[10,28],[11,0],[-1,58],[17,2],[17,-1],[17,30],[23,-22],[8,15],[14,12],[27,32],[1,24],[8,-1],[10,28],[8,3],[13,-17],[16,-6],[18,16],[20,0],[26,15],[11,16],[27,-2]],[[7556,8230],[-6,-12],[-5,-26],[8,-43],[-18,-38],[-8,-48],[-3,-51],[4,-30],[3,-52],[-13,-12],[-6,-50],[4,-31],[-15,-29],[3,-32],[12,-19]],[[7230,7996],[-13,36],[-24,10]],[[7193,8042],[6,47],[-11,13],[-16,8],[-34,-14],[-3,16],[-24,17],[-17,24],[-22,10]],[[7072,8163],[16,29],[-6,23],[6,22],[36,33],[36,45]],[[7160,8315],[8,-5],[16,20],[23,2],[7,-10],[13,6],[35,-10],[37,3],[25,13],[10,13],[24,-6],[19,-8],[20,3],[16,10],[35,-16],[12,-3],[25,-22],[22,-26],[28,-17],[21,-32]],[[7193,8042],[-9,-27],[-44,2],[-29,11],[-32,23],[-44,7],[-21,26]],[[7014,8084],[2,16],[27,29],[14,13],[-4,13],[19,8]],[[7088,8557],[0,-92],[-7,-132],[23,0]],[[7104,8333],[26,-21],[7,17],[23,-14]],[[7014,8084],[-40,20],[-49,2],[-36,22],[-42,48]],[[7153,8638],[1,-17],[15,-1],[-1,-32],[-14,-50],[8,-17],[-9,-43],[6,-10],[-9,-59],[-16,-31],[-14,-4],[-16,-41]],[[8477,7854],[-2,-27],[-46,-13],[26,-53],[-1,-61],[-35,-68],[30,-93],[34,8],[17,84],[-24,41],[-5,89],[98,47],[-11,55],[28,37],[28,-82],[54,-2],[51,-65],[3,-39],[70,-1],[84,12],[44,-52],[60,-15],[44,37],[1,29],[97,8],[93,1],[-67,-34],[27,-55],[62,-9],[59,-58],[14,-93],[40,2],[31,-27]],[[9381,7457],[-62,-69],[-7,-42],[27,-44],[-19,-21],[-49,-19],[2,-54],[-21,-31],[52,-88]],[[9381,7457],[51,-44],[48,-75],[2,-60],[29,-3],[43,-56],[31,-41]],[[9585,7178],[-14,-105],[-46,-30],[4,-28],[-14,-60],[34,-84],[25,-1],[10,-66],[47,-101]],[[9585,7178],[93,-23],[8,22],[62,7],[84,-31]],[[9832,7153],[-40,-100],[5,-80],[32,-69],[-14,-51],[-8,-53],[-18,-49]],[[7777,6085],[41,88],[-17,50],[-29,-54],[-46,51],[15,33],[-13,106],[26,18],[15,71],[30,76],[-6,47],[43,25],[54,47]],[[8871,8640],[40,-10],[15,-23],[-20,-30],[-59,1],[-46,-4],[-5,49],[12,18],[63,-1]],[[7990,8637],[53,-10],[41,-28],[13,-33],[-54,-2],[-25,-19],[-43,18],[-45,43],[9,27],[34,8],[17,-4]],[[7623,9184],[68,-8],[61,-2],[74,-39],[31,-43],[72,14],[28,-28],[66,-72],[49,-52],[25,2],[47,-24],[-5,-33],[57,-5],[59,-47],[-10,-27],[-51,-16],[-53,-6],[-54,10],[-111,-12],[52,65],[-32,31],[-50,8],[-27,34],[-19,64],[-43,-3],[-74,30],[-23,25],[-101,18],[-28,22],[30,30],[-77,6],[-56,-61],[-32,-2],[-11,-28],[-38,-12],[-33,10],[41,37],[17,42],[34,26],[40,22],[58,12],[19,12]],[[16336,3907],[-50,52],[-60,18],[-22,74],[-1,42],[-33,12],[-88,128],[-24,67],[-16,22],[-30,93]],[[16012,4415],[87,-13],[26,-14],[26,3],[44,76],[66,96],[28,9],[9,40],[45,47],[59,16]],[[16402,4675],[5,-44],[65,2],[37,-24],[16,-29],[37,-9],[41,-36],[0,-148],[-15,-82],[-4,-87],[13,-35],[-9,-68],[-11,-11],[-21,-84],[-83,-132]],[[15592,3596],[0,339],[78,4],[3,416],[57,4],[121,40],[30,-48],[49,46],[24,0],[44,26]],[[15998,4423],[14,-8]],[[15316,3151],[-59,88],[-30,85],[-18,114],[-18,84],[-26,180],[-2,139],[-10,63],[-30,48],[-40,97],[-42,139],[-16,74],[-65,114],[-4,90]],[[14956,4466],[38,22],[46,19],[50,-3],[47,-53],[12,8],[317,6],[54,-56],[188,-17],[144,48]],[[15852,4440],[64,26],[51,-7],[31,-26],[0,-10]],[[12738,8067],[-32,90],[-39,42],[34,21],[38,82],[18,60]],[[12757,8362],[26,38],[39,-11],[38,26],[44,1],[38,-34],[51,-31],[48,-86],[51,-80]],[[13092,8185],[3,-71],[16,-67],[29,-33],[6,-45],[-3,-36]],[[13143,7933],[-11,-7],[-42,9],[-6,-13],[-18,-3],[-55,29],[-38,1]],[[12973,7949],[-145,5],[-20,-14],[-27,4],[-41,-18]],[[12740,7926],[-12,89]],[[12728,8015],[70,-2],[19,15],[14,1],[29,28],[34,-25],[33,-2],[35,27],[-16,33],[-27,-20],[-23,1],[-31,29],[-25,-2],[-18,-28],[-84,-3]],[[13092,8185],[27,21],[13,69],[24,3],[55,-33],[43,23],[30,-7],[13,26],[312,2],[18,81],[-13,14],[-38,504],[-38,503],[119,2]],[[13657,9393],[264,-255],[261,-254],[19,-54],[49,-34],[35,-19],[2,-74],[86,12]],[[14373,8715],[0,-269],[-42,-78],[-7,-72],[-70,-18],[-105,-11],[-29,-41],[-50,-4]],[[14070,8222],[-49,-1],[-20,22],[-42,-16],[-73,-49],[-15,-36],[-61,-52],[-10,-30],[-32,-23],[-38,16],[-23,-29],[-11,-80],[-62,-96],[2,-40],[-21,-49],[6,-68]],[[13621,7691],[-33,-17],[-19,-16],[-12,50],[-22,-13],[-13,3],[-15,-34],[-60,1],[-21,17],[-11,-10]],[[13415,7672],[-24,33],[5,34],[-10,15],[-17,-12],[3,38],[16,30],[-32,49],[-9,32],[-17,25],[-16,4],[-18,-16],[-26,-17],[-21,-25],[-34,10],[-22,30],[-12,4],[-21,-16],[-13,-1],[-4,44]],[[13365,9675],[292,-282]],[[12757,8362],[-7,63],[22,58],[9,109],[-8,115],[-10,58],[8,59],[-20,55],[-41,51]],[[14250,7211],[-65,-13]],[[14185,7198],[-19,80],[4,268],[-16,24],[-3,57],[-27,41],[-23,35],[10,60]],[[14111,7763],[26,14],[16,51],[38,11],[18,35]],[[14209,7874],[25,34],[28,1],[60,-68]],[[14322,7841],[-3,-39],[18,-69],[-16,-47],[8,-32],[-38,-71],[-23,-36],[-16,-74],[2,-74],[-4,-188]],[[15172,7981],[-23,-7],[-2,-36]],[[15147,7938],[-14,-3],[-54,127],[-18,5],[-61,-66],[-60,35],[-42,7],[-22,-16],[-46,2],[-47,-49],[-39,-3],[-94,60],[-38,-28],[-39,2],[-30,44],[-78,43],[-84,-13],[-20,-26],[-11,-66],[-22,-48],[-6,-104]],[[14209,7874],[1,80],[-90,26],[-3,56],[-43,77],[-11,52],[7,57]],[[14373,8715],[111,51],[226,229],[267,222]],[[14977,9217],[123,-50],[44,-64],[55,43]],[[15147,7938],[31,-48],[-9,-20],[-4,-39],[-66,-91],[-20,-74],[-11,-61],[-17,-25],[-15,-82],[-42,-49],[-13,-59],[-16,-46],[-8,-49],[-54,-38],[-43,47],[-30,-2],[-47,-67],[-22,-1],[-37,-114],[-21,-82]],[[14703,7038],[-80,-41],[-30,5],[-30,-26],[-63,3],[-41,73],[-27,84],[-54,77],[-59,-2],[-69,0]],[[15233,7347],[-39,-118],[-19,-21],[-7,-90],[8,-50],[-5,-35],[36,-61],[7,-41],[29,-60],[36,-38],[3,-53],[8,-34]],[[15290,6746],[-6,-63],[-62,27],[-63,31],[-99,5]],[[15060,6746],[-9,6],[-46,-15],[-48,16],[-37,-8]],[[14920,6745],[-127,3]],[[14793,6748],[11,92],[-30,77],[-35,20],[-16,52],[-20,17],[0,32]],[[14185,7198],[-62,-24]],[[14123,7174],[-18,40],[-21,74],[-6,58],[17,104],[-19,43],[-8,92],[0,85],[-30,60],[4,36]],[[14042,7766],[69,-3]],[[14123,7174],[-121,-69],[-43,-40],[-70,-34],[-70,33]],[[13819,7064],[3,46],[-33,100],[20,132],[33,98],[-21,166]],[[13821,7606],[-10,88],[1,66],[136,5],[34,-8],[26,18],[34,-9]],[[13621,7691],[34,-26],[13,-39],[36,-24],[27,29],[37,5],[53,-30]],[[13819,7064],[-36,-1],[-54,23],[-50,-1],[-93,-21],[-53,-34],[-78,-42],[-15,3]],[[13440,6991],[6,96],[8,14],[-3,46],[-33,49],[-24,8],[-24,32],[18,51],[-8,57],[4,34]],[[13384,7378],[12,0],[4,50],[-5,23],[6,16],[29,14],[-19,94],[-17,47],[6,40],[15,10]],[[13384,7378],[-23,3],[-15,-48],[-23,1],[-15,24],[5,48],[-32,71],[-21,-13],[-17,-2]],[[13243,7462],[-21,-7],[1,43],[-13,30],[3,34],[-17,49],[-22,41],[-62,1],[-18,-22],[-22,-3],[-14,-25],[-8,-32],[-42,-52]],[[13008,7519],[-34,69],[-30,46],[-20,15],[-20,24],[-9,51],[-11,26],[-23,18]],[[12861,7768],[35,57],[23,-2],[20,20],[18,0],[12,15],[-6,39],[9,13],[1,39]],[[12861,7768],[-42,50],[-32,7],[-18,33],[0,18],[-23,25],[-6,25]],[[13440,6991],[-21,-1],[-80,55],[-71,89],[-66,64],[-53,74]],[[13149,7272],[19,38],[4,34],[36,63],[35,55]],[[13149,7272],[-20,9],[-57,47],[-40,62],[-15,43],[-9,86]],[[15480,6890],[-50,7],[-52,19],[-47,-62],[-41,-108]],[[15958,7440],[42,-47],[1,-38],[52,-61],[33,-49],[20,-69],[59,-47],[12,-37]],[[15055,5924],[-30,41],[-24,-21],[-31,-50]],[[14970,5894],[-64,124]],[[14906,6018],[60,65],[-30,77],[26,29],[54,15],[5,51],[43,-56],[69,-5],[23,55],[10,77],[-9,91],[-37,69],[34,135],[-19,24],[-58,-10],[-22,60],[5,51]],[[14906,6018],[-81,118],[-51,96],[-48,121],[4,38],[16,37],[19,85],[16,86]],[[14781,6599],[27,7],[113,-1],[-1,140]],[[14781,6599],[-15,18],[27,131]],[[16596,5406],[36,-51],[20,-100],[-13,-32],[-16,-94],[16,-96],[-24,-41],[-25,-108],[41,-31]],[[16631,4853],[-236,-96],[7,-82]],[[15852,4440],[-51,72],[-53,96],[4,370],[162,-2],[-6,41],[12,44],[-14,55],[8,56],[-8,37]],[[16737,5139],[-22,-89],[22,-151],[27,1],[28,-38],[33,-84],[7,-149],[-35,-24],[-23,-81],[-51,71],[-6,84],[17,53],[-5,46],[-31,30],[-21,-11],[-46,56]],[[17186,5279],[0,0],[13,-52],[-3,-116],[9,-103],[3,-181],[13,-58],[-22,-83],[-31,-81],[-49,-71],[-71,-45],[-88,-57],[-89,-125],[-30,-21],[-55,-83],[-31,-27],[-7,-83],[37,-88],[15,-69],[2,-35],[13,6],[-2,-114],[-13,-54],[18,-20],[-11,-48],[-33,-42],[-64,-39],[-94,-63],[-35,-44],[7,-49],[20,-8],[-7,-62]],[[16542,3365],[-6,53],[-12,52]],[[14991,5807],[-21,87]],[[14956,4466],[-7,72],[10,104],[28,105],[3,51],[26,105],[19,47],[44,77],[25,52],[9,86],[-5,66],[-23,42],[-21,71],[-19,70],[4,24],[25,46],[-25,112],[-15,78],[-39,74],[6,22]],[[16305,6151],[47,-9],[24,66],[41,-7]],[[16835,10361],[-21,-2],[-7,-20],[-27,0]],[[16780,10339],[28,95],[39,82],[1,5]],[[16848,10521],[36,-7],[12,-46],[-42,-43],[-19,-64]],[[17905,5029],[21,-51],[19,-76],[12,-141],[21,-54],[-7,-55],[-15,-34],[-27,67],[-14,-33],[16,-88],[-8,-49],[-21,-27],[-5,-99],[-31,-136],[-39,-160],[-48,-222],[-30,-160],[-34,-136],[-64,-28],[-69,-49],[-43,30],[-63,41],[-21,62],[-6,104],[-26,93],[-8,83],[14,84],[36,20],[0,39],[38,88],[7,74],[-18,55],[-15,74],[-6,108],[26,65],[12,75],[38,3],[43,25],[29,21],[34,1],[45,66],[63,71],[24,59],[-10,50],[33,-14],[42,81],[3,70],[25,52],[27,-49]],[[12728,8015],[10,52]],[[14780,10014],[-34,210],[-48,46],[0,29],[-64,70],[-7,87],[48,66],[19,95],[-12,110],[15,60]],[[14697,10787],[85,48],[55,-15],[-3,-59],[67,44],[6,-22],[-39,-57],[-1,-54],[27,-29],[-11,-101],[-51,-58],[15,-64],[41,-2],[19,-56],[30,-17]],[[14937,10345],[-5,-90],[-38,-34],[-24,-37],[-53,-45],[8,-49],[-6,-49],[-39,-27]],[[13366,9705],[-1,138],[126,86],[78,18],[64,31],[30,59],[91,45],[4,88],[44,9],[36,44],[102,19],[15,46],[-22,25],[-26,122],[-5,71],[-30,75]],[[13872,10581],[76,64],[85,21],[47,46],[74,36],[133,21],[129,9],[40,-17],[73,46],[83,1],[32,-27],[53,6]],[[14780,10014],[25,-103],[5,-54],[-15,-95],[7,-53],[-10,-64],[7,-73],[-31,-48],[45,-86],[4,-50],[27,-65],[37,22],[61,-55],[35,-73]],[[16814,10258],[13,36]],[[16827,10294],[87,-46],[153,125]],[[17067,10373],[32,-143]],[[17099,10230],[-16,-17],[-156,-59],[78,-117],[-25,-19],[-14,-39],[-59,-16],[-19,-43],[-34,-36],[-87,19]],[[16767,9903],[-2,17]],[[16765,9920],[39,187],[-2,45],[12,34],[0,72]],[[18064,9308],[13,6],[4,-32],[61,18],[65,-4],[46,-3],[54,79],[58,75],[49,72]],[[18414,9519],[14,-40]],[[18428,9479],[11,-92]],[[18439,9387],[-40,-1],[-6,-75],[14,-17],[-35,-23],[0,-47],[-23,-49],[-2,-47]],[[18347,9128],[-16,-24],[-235,59],[-29,118],[-3,27]],[[18004,9367],[-6,85],[22,61],[21,12],[24,-36],[1,-68],[-16,-69]],[[18050,9352],[-23,-8],[-23,23]],[[17782,9975],[17,-51],[-7,-27],[25,-87]],[[17817,9810],[-55,-3],[-20,55],[-69,11]],[[17673,9873],[57,112],[52,-10]],[[17067,10373],[173,120],[29,142],[-8,84],[44,29],[40,72]],[[17345,10820],[33,19],[90,-15],[28,-30],[38,20]],[[17534,10814],[49,-139],[51,-35],[6,-67],[-39,-41],[-18,-91],[54,-111],[95,-64],[40,-89],[-12,-84],[25,0],[1,-62],[43,-62]],[[17829,9969],[-47,6]],[[17673,9873],[-144,9],[-220,235],[-117,82],[-93,31]],[[18439,9387],[35,-80],[43,-43],[58,-14],[46,-21],[36,-67],[21,-40],[27,-14],[0,-26],[-28,-70],[-13,-33],[-33,-36],[-29,-80],[-35,7],[-16,-28],[-13,-59],[9,-79],[-6,-14],[-37,1],[-48,-45],[-8,-56],[-17,-25],[-49,1],[-30,-29],[0,-47],[-37,-32],[-44,10],[-51,-39],[-37,-7]],[[18183,8422],[-25,82],[-62,193]],[[18096,8697],[235,116],[52,233],[-36,82]],[[18414,9519],[22,39],[10,-9],[-8,-49],[-10,-21]],[[27085,4630],[48,-67],[-25,-16],[-27,51],[4,32]],[[27051,4656],[-11,32],[-1,88],[37,-36],[12,-92],[-20,14],[-17,-6]],[[22043,7903],[-18,140],[49,97],[102,22],[73,-18]],[[22249,8144],[65,-44],[34,79],[70,-42]],[[22418,8137],[18,-78],[-10,-139],[-131,-90],[34,-70],[-82,-9],[-67,-46]],[[22180,7705],[-66,16],[-31,61],[-40,121]],[[22043,7903],[-70,53],[-67,-2],[11,92],[-68,-1],[-6,-129],[-43,-170],[-24,-103],[4,-85],[52,-3],[31,-107],[14,-100],[44,-67],[48,-14],[40,-60]],[[22009,7207],[-26,-48],[-51,-13],[-7,60],[-63,51],[-14,-22]],[[21848,7235],[-31,45],[-13,57],[-41,66],[-38,56],[-14,-69],[-14,65],[9,73],[22,112]],[[21728,7640],[38,120],[43,108],[-30,106],[1,54],[-8,66],[-53,92],[-19,58],[27,21],[29,102],[-32,77],[-49,85],[-38,103],[32,21],[36,126],[55,6],[46,50],[45,27]],[[21851,8862],[33,-36],[4,-70],[54,-5],[-19,-124],[1,-104],[82,69],[24,-20],[45,4],[16,39],[59,-7],[60,-95],[5,-115],[63,-102],[-3,-98],[-26,-54]],[[21851,8862],[16,43],[67,75]],[[21934,8980],[7,-27],[41,-3],[-11,133],[40,17]],[[22011,9100],[46,-92],[35,-105],[96,-1],[30,-102],[-50,-31],[-22,-41],[93,-70],[65,-138],[50,-103],[59,-81],[19,-82],[-14,-117]],[[21728,7640],[-7,86],[24,90],[-26,68],[6,128],[-31,60],[-26,139],[-14,147],[-34,97],[-51,-59],[-89,-83],[-44,10],[-49,27],[28,146],[-16,109],[-62,134],[10,43],[-45,14],[-56,95]],[[21246,8891],[-5,93],[27,-17],[1,84]],[[21269,9051],[39,27],[-8,50],[17,40],[4,121],[61,-28],[34,97],[5,56],[42,99],[-2,67],[101,80],[56,-21],[-7,71],[28,22],[-7,44]],[[21632,9776],[46,9],[27,-69],[34,-28],[2,-89],[-3,-96],[-74,-97],[-9,-139],[82,20],[19,-108],[49,-23],[-22,-97],[58,-43],[33,-21],[58,33],[2,-48]],[[22011,9100],[42,28],[63,0],[75,14],[67,61],[37,-43],[71,-21],[-12,-68],[38,-47],[78,-30]],[[22470,8994],[-104,-99],[-66,-110],[-16,-82],[59,-122],[73,-153],[71,-73],[47,-93],[36,-215],[-10,-205],[-66,-77],[-89,-75],[-63,-98],[-97,-108],[-29,74],[22,80],[-58,67]],[[24243,11403],[-30,7],[-33,-39],[-24,-40],[4,-84],[-42,-25],[-13,-22],[-30,-33],[-51,-20],[-35,-32],[-2,-50],[-9,-13],[31,-19],[45,-51]],[[24054,10982],[-11,-28],[-34,-8],[-55,-6],[-30,-52],[-36,4],[-4,-11]],[[23884,10881],[-38,23],[-9,-23],[-24,-9],[-2,22],[-21,10],[-20,19],[21,52],[18,14],[-7,21],[20,63],[-5,19],[-46,13],[-37,31]],[[23734,11136],[64,74],[87,63],[53,83],[37,-37],[68,-4],[-13,61],[121,51],[31,65],[50,-68]],[[24054,10982],[67,-137],[19,-76],[1,-133],[-29,-65],[-72,-22],[-62,-49],[-70,-9],[-9,62],[15,88],[-35,121],[58,20],[-53,99]],[[23142,12297],[-38,-88],[-54,-117],[20,-47],[43,14],[78,-17],[59,42],[64,-37],[70,-82],[-8,-41],[-62,13],[-114,-15],[-55,-33],[-56,-77],[-119,-46],[-78,-62],[-81,23],[-44,11],[-40,-74],[24,-46],[13,-39],[-55,-38],[-55,-62],[-91,-41],[-117,-5],[-126,-40],[-91,-63],[-34,37],[-95,0],[-116,70],[-77,18],[-103,-17],[-162,26],[-85,-2],[-46,69],[-36,106],[-47,14],[-95,73],[-106,16],[-92,20],[-28,51],[30,136],[-55,94],[-111,43],[-66,62],[-20,82]],[[21269,9051],[-41,184],[-21,0],[-13,-74],[-43,60],[25,67],[34,6],[36,99],[-44,20],[-73,-2],[-74,16],[-7,81],[-37,6],[-62,50],[-28,-79],[57,-61],[-49,-44],[-18,-42],[49,-32],[-13,-70],[26,-88],[13,-95]],[[20986,9053],[-12,-44],[-53,2],[-96,-24],[5,-87],[-43,-69],[-112,-78],[-87,-138],[-59,-74],[-77,-76],[0,-54],[-39,-29],[-70,-41],[-37,-6],[-23,-89],[17,-151],[4,-97],[-33,-111],[0,-198],[-41,-6],[-36,-89],[24,-38],[-71,-33],[-27,-80],[-31,-33],[-73,109],[-37,163],[-30,118],[-27,55],[-41,113],[-20,146],[-13,71],[-72,161],[-32,226],[-23,149],[1,141],[-16,108],[-113,-68],[-56,13],[-101,141],[38,42],[-24,46],[-91,99]],[[19359,9243],[51,77],[173,0],[-16,101],[-44,59],[-9,90],[-51,52],[86,122],[91,-9],[81,122],[49,118],[75,117],[-1,83],[67,68],[-62,58],[-28,78],[-28,103],[39,50],[118,-28],[87,18],[76,97]],[[20113,10619],[83,-136],[-8,-96],[32,-60],[-3,-59],[-55,16],[21,-129],[77,-73],[109,-83]],[[20369,9999],[-50,-53],[-30,-108],[75,-44],[74,-57],[100,-66],[107,-15],[46,-59],[60,-11],[93,-28],[66,2],[9,47],[-10,74],[5,50]],[[20914,9731],[48,25],[7,-92]],[[20969,9664],[1,-23],[71,-45],[49,18],[66,-7],[63,4],[6,71],[-31,37]],[[21194,9719],[62,14],[71,87],[91,74],[65,-29],[56,49],[37,-72],[-27,-49],[83,-17]],[[21246,8891],[-22,61],[-5,59],[-15,56],[-33,68],[-71,5],[7,-49],[-25,-65],[-33,25],[-11,-22],[-22,13],[-30,11]],[[20969,9664],[51,87],[42,30],[56,-27],[41,-3],[35,-32]],[[20369,9999],[32,28],[62,-35],[78,-77],[44,-16],[27,-56],[60,-23],[63,-51],[88,-26],[91,-12]],[[19359,9243],[-58,29],[-23,84],[-60,89],[-144,-22],[-127,-2],[-110,-16]],[[18837,9405],[30,135],[112,61],[-6,53],[-37,19],[-2,103],[-75,50],[-32,71],[-38,61]],[[18789,9958],[130,-59],[78,17],[47,-14],[16,25],[54,-11],[101,49],[4,99],[43,67],[58,-1],[9,33],[59,15],[29,-10],[31,32],[-4,70],[33,71],[49,29],[-30,77],[73,-4],[23,43],[-4,44],[39,50],[-9,58],[-19,48],[46,51],[84,24],[90,14],[39,21],[45,14]],[[19903,10810],[58,-54],[24,-89],[128,-48]],[[19331,10811],[25,-14],[56,37],[26,-22],[26,53],[46,-2],[12,16],[8,48],[34,40],[42,-26],[-9,-36],[25,-5],[-8,-98],[31,-39],[27,24],[34,12],[49,52],[54,-7],[81,-1]],[[19890,10843],[13,-33]],[[18789,9958],[70,106],[-7,76],[-59,19],[-5,73],[-26,94],[34,64],[-35,17],[22,85],[32,146]],[[18815,10638],[80,-45],[59,16],[15,53],[63,16],[43,36],[16,93],[65,23],[13,41],[36,-31],[24,-4]],[[19581,11172],[-29,-35],[-85,19],[-8,-67],[85,9],[97,-38],[147,18]],[[19788,11078],[20,-109],[25,13],[48,-27],[-3,-46],[12,-66]],[[20302,11418],[-11,-26],[-123,-63],[-28,-46],[-100,-15],[-30,-74],[-82,16],[-55,-23],[-74,-55],[11,-27],[-22,-27]],[[18815,10638],[-7,96],[-58,5],[-89,104],[-62,12],[-87,59],[-56,11],[-33,-21],[-53,2],[-54,-66],[-69,-23]],[[18247,10817],[-15,83],[11,121],[-60,40],[20,80],[-52,7],[18,98],[73,-28],[68,37],[-57,70],[-22,67],[-62,-30],[-8,-85],[-25,75]],[[17534,10814],[0,0],[-43,93],[15,36],[-24,135],[53,32]],[[17535,11110],[12,-43],[40,-54],[53,-16]],[[17640,10997],[28,3]],[[17668,11000],[92,86],[29,9],[24,-34],[-27,-58],[48,-61],[20,6]],[[17854,10948],[24,-86],[75,-24],[53,-59],[112,-20],[121,30],[8,28]],[[18837,9405],[-147,35],[-85,26],[-88,16],[-33,143],[-38,20],[-59,-20],[-78,-57],[-96,39],[-79,90],[-74,33],[-53,110],[-58,155],[-41,-19],[-50,39],[-29,-46]],[[16827,10294],[-1,1],[10,18],[-1,48]],[[16848,10521],[-6,89],[19,48]],[[16861,10658],[21,24],[21,25],[3,66],[26,-23],[87,33],[41,-23],[64,0],[89,45],[43,-2],[89,17]],[[17640,10997],[-32,68],[1,17],[-35,0],[-23,31],[-16,-3]],[[17535,11110],[-30,34],[-59,29],[8,57],[-13,41]],[[17441,11271],[109,18]],[[17550,11289],[14,-30],[30,-20],[-15,-30],[41,-40],[-22,-36],[33,-32],[36,-20],[1,-81]],[[15651,14537],[105,-57],[121,-80],[3,-180],[25,-45]],[[15905,14175],[-133,-33],[-76,-81],[12,-72],[-124,-93],[-151,-100],[-57,-164],[56,-83],[75,-64],[-73,-132],[-81,-28],[-29,-194],[-44,-110],[-95,12],[-45,-93],[-90,-6],[-24,111],[-66,132],[-59,164]],[[16520,12554],[-67,-7],[-24,-26],[-5,-58],[-31,11],[-70,-6],[-21,28],[-29,-20],[-29,16],[-62,2],[-86,28],[-79,10],[-61,-3],[-42,-32],[-38,-4]],[[15876,12493],[-1,52],[-24,54],[46,24],[2,46],[-23,45],[-3,51]],[[15873,12765],[76,0],[84,44],[18,65],[65,38],[-8,52]],[[16108,12964],[48,20],[82,45]],[[17023,11972],[-62,-10],[-53,-37],[-73,-6],[-67,-44],[4,-62]],[[16649,11840],[-11,12],[-121,30],[-6,44],[-72,-15],[-29,-64],[-60,-87]],[[16350,11760],[-36,21],[-37,-19],[-34,22]],[[16243,11784],[20,12],[13,40],[21,37],[-5,22],[16,8],[8,-16],[46,-3],[21,9],[-14,11],[5,18],[-28,30],[-11,48],[-29,19],[6,40],[-35,31],[-32,5],[-57,36],[-51,-12],[-19,-16]],[[16118,12103],[-33,0],[-19,-28],[-58,-11],[-27,-18],[-37,29],[-50,0],[-48,13],[-33,-25]],[[15813,12063],[-6,31],[-43,32]],[[15764,12126],[15,47],[22,30]],[[15801,12203],[16,-7],[-20,53],[72,97],[39,14],[7,31],[-39,102]],[[15801,12203],[-74,45],[-57,-17],[-36,13],[-46,-25],[-40,41],[-32,-16],[-5,8]],[[15511,12252],[-35,57],[-58,6],[-8,37],[-54,14],[-11,-31],[-42,24],[4,32],[-57,9],[-38,38]],[[15212,12438],[-31,75],[5,39],[-19,63],[-29,42],[23,31],[-19,60]],[[15142,12748],[53,34],[122,54],[98,39],[78,-20],[6,-28],[76,-2]],[[15814,12813],[40,-11],[19,-37]],[[15365,12091],[-5,-47],[-45,-1],[16,-25],[-26,-75]],[[15305,11943],[-15,-20],[-68,-3],[-40,-26],[-64,8]],[[15118,11902],[-112,30],[-17,41],[-78,-20],[-9,-22],[-47,16]],[[14855,11947],[-40,4],[-35,21],[12,28],[-3,21]],[[14789,12021],[23,6],[40,-32],[11,31],[69,-5],[56,21],[37,-4],[24,-23],[8,19],[-11,76],[28,15],[28,54]],[[15102,12179],[57,-38],[44,48],[28,8],[60,-34],[36,5],[37,-22]],[[15364,12146],[-6,-14],[7,-41]],[[15813,12063],[-48,-25],[-37,-78],[-48,-80],[-62,-22]],[[15618,11858],[-49,5],[-59,-30],[0,0]],[[15510,11833],[-29,-18],[-64,23],[-59,50],[-25,14]],[[15333,11902],[-16,39],[-12,2]],[[15365,12091],[40,-30],[29,-12],[65,14],[7,23],[31,3],[38,18],[9,-7],[36,15],[18,27],[26,7],[83,-35],[17,12]],[[16243,11784],[-14,53],[8,50],[-2,50],[-45,70],[-24,49],[-25,35],[-23,12]],[[16350,11760],[2,-30],[-38,-25],[-25,12],[-21,-141]],[[16268,11576],[-45,12],[-56,43],[-93,-27],[-38,-30],[-115,5],[-60,19],[-30,-9],[-23,48]],[[15808,11637],[-14,21],[18,19],[-19,15],[-25,-26],[-45,33],[-6,49],[-48,27],[-9,38],[-42,45]],[[15700,12915],[-16,98]],[[15684,13013],[89,35],[131,-7],[77,11],[10,-24],[42,-8],[75,-56]],[[15684,13013],[2,88],[39,73],[73,40],[62,-87],[63,2],[15,90]],[[15938,13219],[66,20],[35,-15],[67,-43],[64,0]],[[15938,13219],[8,67],[-27,-14],[-50,41],[-7,67],[99,32],[98,17],[85,-19],[79,4],[0,0]],[[15212,12438],[-35,-12],[-20,13],[-20,-22],[-56,-22],[-28,-28],[-57,-26],[13,-34],[8,-50],[40,-28],[45,-50]],[[14789,12021],[-84,36],[-15,-26],[-67,1]],[[14623,12032],[10,83],[39,81],[-113,21],[-36,31]],[[14523,12248],[4,51],[-16,26]],[[14511,12325],[9,77]],[[14520,12402],[-13,123],[48,0],[19,44],[20,107],[-15,39]],[[14579,12715],[15,25],[66,7],[14,-26],[53,57],[-17,44],[-5,66]],[[14705,12888],[59,-16],[50,19]],[[14814,12891],[1,-46],[79,-27],[0,-41],[79,22],[44,32],[88,-47],[37,-36]],[[16268,11576],[-41,-48],[-27,-83],[24,-67]],[[16224,11378],[-66,16],[-79,-37]],[[16079,11357],[-1,-58],[-71,-11],[-55,41],[-62,-32],[-58,3]],[[15832,11300],[-6,77],[-39,38]],[[15787,11415],[13,17],[-8,13],[12,37],[30,37],[-38,49],[-6,42],[18,27]],[[16092,10597],[-10,-35],[-112,-10],[1,20],[-96,22],[15,49],[43,-38],[60,6],[58,-8],[-1,-21],[42,15]],[[16079,11357],[38,-31],[-25,-72],[-19,-14]],[[16073,11240],[-46,4],[-42,11],[-94,-30],[54,-66],[-40,-20],[-43,0],[-41,60],[-15,-25],[18,-69],[39,-55],[-30,-26],[43,-54],[39,-34],[1,-65],[-72,31],[23,-60],[-50,-12],[30,-103],[-52,-1],[-63,50],[-29,94],[-15,77],[-30,53],[-40,67],[-6,33]],[[15612,11100],[37,57],[5,38],[25,17],[1,30]],[[15680,11242],[52,11],[30,25],[42,-2],[12,20],[16,4]],[[16861,10658],[-29,51],[30,45],[-48,-11],[-66,27],[-53,-67],[-118,-13],[-64,63],[-83,4],[-19,-49],[-54,-14],[-75,63],[-84,-2],[-47,116],[-56,63],[37,91],[-50,56],[87,112],[119,4],[34,89],[148,-15],[94,75],[91,33],[129,3],[137,-82],[111,-45],[91,18],[67,-11],[93,61]],[[17283,11323],[83,6],[75,-58]],[[16224,11378],[10,-44],[68,-38],[-15,-29],[-91,-7],[-34,-35],[-64,-63],[-25,54],[0,24]],[[15612,11100],[-13,9],[-1,25],[-43,39],[-7,55],[7,81],[11,35],[-14,19],[0,0]],[[15552,11363],[-5,38],[33,57],[6,-23],[21,11]],[[15607,11446],[17,-31],[17,-12],[6,-42]],[[15647,11361],[0,0],[-10,-40],[11,-50],[32,-29]],[[15510,11833],[19,-46],[24,-32],[-30,-45]],[[15523,11710],[-35,26],[-54,-2],[-66,20],[-37,-2],[-17,-25],[-29,27],[-15,-49],[37,-54],[17,-37],[37,-43],[29,-25],[30,-49],[69,-44]],[[15489,11453],[-9,-20]],[[15480,11433],[0,0],[-73,44],[-45,42],[-72,33],[-66,86],[17,9],[-36,49],[-2,39],[-50,19],[-24,-51],[-23,40],[2,40],[2,1]],[[15110,11784],[55,-3],[14,20],[27,-19],[30,-2],[0,32],[27,12],[8,47],[62,31]],[[14855,11947],[-6,-47],[-35,-20],[-58,15],[-16,-48],[-37,-4],[-13,19],[-45,-40],[-38,-5],[-33,26]],[[14574,11843],[-27,51],[-37,-19],[1,53],[57,65],[-2,30],[36,-10],[21,19]],[[14523,12248],[-23,-3],[-17,10]],[[14483,12255],[8,65],[20,5]],[[14483,12255],[-68,54],[-40,-10],[-55,55],[-37,46],[-35,1],[-12,42]],[[14236,12443],[63,23],[0,0]],[[14299,12466],[0,0],[57,-9],[72,24],[50,-51],[42,-28]],[[14299,12466],[40,32],[68,171],[107,50],[65,-4]],[[13337,11364],[28,29],[32,17],[20,-57],[46,0],[13,15],[46,-4],[22,-59],[-37,-31],[-1,-91],[-12,-17],[-4,-56],[-33,-9],[31,-70],[-22,-77],[28,-34],[-11,-32],[-29,-44],[6,-38]],[[13460,10806],[-31,-31],[-41,16],[-40,-12],[11,91],[-7,72],[-35,11],[-18,43],[5,77],[32,42],[5,48],[17,69],[-2,51],[-16,41],[-3,40]],[[13337,11364],[4,83],[-32,50],[110,83],[96,-21],[105,1],[83,-20],[65,7],[125,-4]],[[13893,11543],[32,-45],[141,-53],[29,25],[88,-53],[90,16]],[[14273,11433],[5,-68],[-75,-78],[-100,-25],[-7,-38],[-48,-65],[-28,-96],[28,-67],[-42,-51],[-17,-76],[-59,-24],[-56,-89],[-99,-1],[-74,2],[-49,-42],[-30,-43],[-38,9],[-29,39],[-22,67],[-73,19]],[[13558,12760],[14,-83],[-59,-104],[-140,-69],[-110,17],[64,122],[-41,119],[106,91],[59,55]],[[13451,12908],[16,-63],[-16,-63],[48,2],[59,-24]],[[26973,4025],[63,-73],[41,-54],[-30,-28],[-43,32],[-54,52],[-52,62],[-51,82],[-11,40],[34,-1],[44,-41],[35,-39],[24,-32]],[[26687,5260],[22,-40],[-54,1],[-30,72],[46,-28],[16,-5]],[[26654,5363],[-13,-21],[-58,101],[-16,69],[26,0],[28,-93],[33,-56]],[[26588,5331],[-30,-3],[-48,12],[-17,18],[6,47],[51,-19],[26,-24],[12,-31]],[[26493,5548],[19,-38],[4,-23],[-62,49],[-42,42],[-30,39],[12,11],[36,-28],[63,-52]],[[26298,5663],[32,-38],[-16,-6],[-33,26],[-33,48],[4,19],[46,-49]],[[27839,1812],[-30,-63],[-39,-80],[-60,-46],[-13,31],[-32,16],[44,96],[-26,65],[-83,46],[2,43],[57,40],[12,90],[-3,76],[-31,77],[2,20],[-38,49],[-61,102],[-32,83],[28,9],[43,-65],[60,-30],[22,-103],[57,-123],[2,79],[35,-32],[12,-87],[62,-38],[53,-9],[44,44],[40,-13],[-19,-104],[-23,-68],[-60,3],[-21,-36],[7,-50],[-11,-22]],[[27276,1405],[67,61],[47,61],[34,86],[29,30],[12,65],[55,54],[18,-49],[17,-49],[55,48],[23,-50],[0,-49],[-29,-54],[-51,-86],[-40,-47],[29,-56],[-60,-2],[-67,-43],[-21,-76],[-45,-118],[-61,-52],[-39,-34],[-72,3],[-50,39],[-85,8],[-13,43],[42,86],[98,114],[50,23],[57,44]],[[25561,1725],[47,-8],[6,-138],[-27,-40],[-9,-94],[-27,32],[-54,-82],[-16,7],[-48,3],[-49,101],[-10,76],[-45,102],[2,54],[51,-11],[76,-40],[42,16],[61,22]],[[23881,2727],[-82,-60],[-68,-27],[-14,-61],[-29,-47],[-67,-3],[-49,-11],[-69,21],[-56,-12],[-53,-5],[-47,-63],[-22,6],[-40,-33],[-37,-38],[-57,5],[-52,0],[-84,75],[-42,22],[2,67],[39,16],[14,26],[-4,42],[10,81],[-9,70],[-41,118],[-13,66],[3,65],[-31,77],[-1,33],[-35,47],[-10,92],[-44,92],[-11,50],[34,-50],[-27,108],[39,-34],[24,-45],[-1,60],[-39,91],[-8,37],[-18,35],[9,68],[16,28],[11,59],[-9,66],[32,85],[6,-89],[33,80],[63,40],[38,49],[60,42],[35,10],[22,-14],[61,43],[48,13],[11,26],[22,10],[43,-3],[81,34],[43,53],[20,61],[45,59],[4,48],[2,63],[54,99],[34,-100],[33,23],[-28,55],[25,56],[34,-25],[9,89],[44,56],[17,46],[41,20],[1,33],[34,-14],[1,29],[35,18],[38,15],[56,-53],[44,-70],[49,-1],[50,-10],[-17,63],[37,94],[36,30],[-13,30],[35,67],[47,41],[40,-14],[65,22],[-1,59],[-58,39],[43,16],[51,-28],[41,-48],[66,-30],[22,12],[48,-36],[46,34],[29,-11],[19,23],[35,-58],[-21,-63],[-30,-47],[-27,-4],[9,-46],[-22,-58],[-28,-57],[6,-33],[62,-64],[60,-38],[40,-39],[56,-70],[21,0],[41,-30],[13,-36],[74,-40],[51,40],[16,63],[15,52],[9,64],[25,92],[-11,56],[5,34],[-9,67],[10,88],[16,24],[-12,38],[19,62],[14,64],[2,34],[29,44],[23,-58],[4,-73],[20,-14],[3,-49],[28,-59],[7,-67],[-3,-42],[27,-91],[51,43],[26,-49],[37,-45],[-8,-51],[17,-100],[12,-58],[19,-15],[21,-99],[-6,-60],[24,-80],[85,-60],[55,-57],[53,-50],[-10,-28],[44,-73],[30,-127],[31,26],[32,-50],[20,17],[13,-123],[54,-71],[37,-45],[61,-94],[22,-94],[2,-66],[-6,-73],[38,-99],[-4,-103],[-14,-54],[-21,-103],[1,-67],[-15,-84],[-35,-106],[-58,-58],[-28,-90],[-26,-58],[-23,-100],[-30,-58],[-20,-87],[-10,-80],[4,-37],[-45,-40],[-87,-5],[-72,-47],[-36,-46],[-48,-50],[-64,51],[-48,22],[12,61],[-42,-23],[-68,-85],[-68,32],[-44,19],[-45,8],[-76,34],[-50,72],[-14,88],[-18,59],[-39,47],[-74,14],[26,57],[-19,86],[-38,-81],[-70,-21],[41,64],[11,68],[32,57],[-7,86],[-64,-99],[-48,-40],[-31,-93],[-61,48],[4,62],[-48,85],[-42,44],[15,27],[-100,70],[-55,3],[-76,57],[-139,-11],[-101,-42],[-89,-39],[-75,8]],[[20421,7358],[-12,-121],[-32,-32],[-68,-28],[-37,92],[-15,169],[36,189],[53,-65],[37,-82],[38,-122]],[[22581,8603],[-64,36],[-2,100],[38,53],[86,33],[43,-3],[18,-44],[-33,-51],[-18,-68],[-68,-56]],[[23734,11136],[-109,-34],[-57,-54],[-84,-32],[41,54],[-16,45],[62,79],[-41,61],[-68,-42],[-88,-81],[-48,-76],[-77,-5],[-40,-55],[41,-78],[65,-19],[2,-53],[61,-33],[88,83],[69,-46],[50,-3],[14,-61],[-111,-32],[-36,-64],[-76,-57],[-40,-81],[83,-65],[31,-114],[47,-108],[54,-90],[-1,-86],[-49,-32],[18,-63],[46,-35],[-12,-95],[-20,-92],[-44,-11],[-56,-125],[-64,-154],[-72,-139],[-107,-108],[-109,-98],[-88,-14],[-48,-51],[-27,38],[-44,-58],[-109,-58],[-83,-19],[-25,-122],[-44,-6],[-20,84],[19,44],[-106,37],[-36,-18]],[[23541,9325],[-47,-187],[-34,-96],[-41,99],[-9,87],[46,114],[62,88],[36,-35],[-13,-70]],[[15118,11902],[-9,-57],[19,-50]],[[15128,11795],[-62,18],[-64,-42],[5,-58],[-10,-33],[25,-60],[74,-58],[39,-96],[87,-93],[61,0],[19,-26],[-21,-23],[69,-42],[58,-35],[66,-61],[8,-22],[-14,-42],[-44,54],[-68,20],[-32,-76],[56,-43],[-9,-61],[-32,-7],[-43,-100],[-32,-9],[0,35],[17,63],[16,25],[-30,68],[-24,59],[-32,15],[-24,50],[-50,21],[-33,47],[-58,7],[-61,53],[-72,76],[-52,67],[-24,115],[-39,13],[-64,39],[-37,-16],[-44,-55],[-32,-8]],[[14621,11574],[8,51],[-42,14],[-20,90],[27,36],[-24,45],[4,33]],[[15192,10928],[60,9],[-29,-92],[12,-35],[-17,-60],[-59,43],[-40,13],[-109,60],[11,60],[92,-11],[79,13]],[[14720,11249],[39,37],[46,-84],[-11,-154],[-34,7],[-33,-38],[-30,31],[-2,140],[-18,67],[43,-6]],[[14705,12888],[-31,65],[-2,119],[12,32],[23,34],[68,8],[28,32],[62,33],[-2,-60],[-23,-38],[10,-33],[42,-17],[-20,-45],[-22,13],[-57,-84],[21,-56]],[[15006,13022],[24,-59],[-47,-94],[-81,66],[-11,49],[115,38]],[[13451,12908],[65,4],[85,-71],[-43,-81]],[[13801,12706],[0,0],[11,68],[-52,71],[-1,2],[-95,21],[-19,32],[29,52],[-26,32],[-42,-55],[-4,112],[-40,60],[29,121],[60,93],[62,-9],[95,9],[-84,-124],[79,15],[86,0],[-20,-96],[-70,-104],[80,-8],[7,-11],[69,-139],[53,-18],[46,-133],[22,-46],[95,-22],[-9,-75],[-40,-35],[31,-60],[-70,-60],[-103,1],[-132,-31],[-37,21],[-51,-53],[-73,13],[-54,-45],[-42,24],[114,121],[70,25],[0,0],[-122,20],[-22,47],[81,35],[-42,63],[14,77],[117,-11]],[[12909,14227],[-18,-75],[88,-78],[-101,-89],[-225,-81],[-68,-21],[-102,17],[-218,37],[78,51],[-171,57],[138,23],[-3,34],[-164,27],[53,76],[119,16],[121,-78],[118,63],[99,-33],[127,62],[129,-8]],[[17830,11355],[42,-62],[39,-82],[36,-6],[25,-31],[-65,-9],[-13,-91],[-14,-41],[-29,-27],[3,-58]],[[17550,11289],[18,20],[58,-34],[42,-7],[10,14],[-38,63],[20,16]],[[17283,11323],[11,51],[-19,79],[-46,42],[-42,14],[-29,35]],[[23467,7963],[-40,89],[67,-4],[27,-43],[-20,-100],[-34,58]],[[23603,7646],[20,31],[9,73],[42,7],[-12,-79],[58,114],[-8,-113],[-28,-37],[-24,-74],[-25,-35],[-48,81],[16,32]],[[23899,7463],[8,-79],[5,-64],[-26,-107],[-29,118],[-37,-59],[26,-85],[-23,-54],[-92,68],[-22,83],[24,55],[-50,55],[-24,-48],[-37,5],[-58,-65],[-12,34],[30,98],[49,33],[43,44],[27,-53],[60,32],[12,52],[56,3],[-4,90],[62,-55],[7,-59],[5,-42]],[[23285,7567],[-104,-110],[38,81],[57,73],[46,80],[42,116],[13,-95],[-51,-65],[-41,-80]],[[23584,8606],[-12,-49],[27,-83],[-22,-97],[-45,-39],[-13,-94],[17,-93],[42,-12],[35,13],[97,-64],[-8,-62],[26,-28],[-8,-55],[-61,57],[-28,62],[-21,-43],[-49,69],[-72,-16],[-39,25],[5,47],[24,30],[-23,28],[-10,-43],[-39,68],[-11,50],[-3,112],[31,-39],[9,183],[24,106],[48,0],[48,-33],[24,30],[7,-30]],[[23561,7813],[-13,55],[47,-36],[50,0],[-1,-48],[-37,-50],[-49,-35],[-3,54],[6,60]],[[23831,7900],[22,-131],[-60,31],[1,-38],[19,-73],[-36,-26],[-4,82],[-23,6],[-12,71],[45,-9],[-1,43],[-48,89],[76,-2],[21,-43]],[[22009,7207],[17,-10],[47,-71],[33,-78],[4,-78],[-8,-54],[7,-40],[5,-69],[28,-32],[31,-103],[-2,-40],[-54,-8],[-75,87],[-92,92],[-9,60],[-45,79],[-11,95],[-28,64],[8,85],[-17,49]],[[22595,6715],[58,-39],[59,22],[16,98],[33,22],[94,26],[56,92],[38,73]],[[22949,7009],[36,-60],[16,40],[38,-4],[4,74],[3,59]],[[23046,7118],[60,80],[41,91],[31,0],[40,-58],[3,-51],[51,-33],[66,-34],[-6,-47],[-52,-6],[13,-56],[-56,-40]],[[22949,7009],[32,44],[65,65]],[[15110,11784],[18,11]],[[16230,13534],[0,0],[-141,-10],[-137,-42],[-127,-25],[-46,63],[-75,39],[18,115],[-38,106],[36,67],[72,74],[178,125],[52,26],[-8,48],[-109,55]],[[15364,12146],[11,26],[35,-2],[27,12],[1,11],[15,5],[6,27],[18,5],[11,21],[23,1]],[[17038,8580],[44,-136],[22,-107],[43,-56],[107,-110],[43,-66],[42,-68],[25,-39],[38,-35]],[[17402,7963],[-24,-29],[-33,10]],[[17345,7944],[-27,38],[-32,68],[-35,37],[-20,40],[-68,47],[-53,1],[-19,25],[-46,-28],[-47,53],[-25,-87],[-90,24]],[[25108,11049],[-72,-118],[1,-120],[-30,-93],[15,-58],[-42,-82],[-99,-55],[-137,-7],[-111,-134],[-52,46],[-4,87],[-133,-26],[-93,-55],[-92,-2],[80,-86],[-52,-199],[-52,-49],[-38,45],[21,106],[-51,34],[-31,80],[74,36],[41,73],[78,60],[58,80],[154,35],[83,-24],[82,207],[52,-56],[113,117],[45,44],[49,144],[-14,131],[34,74],[82,21],[44,-162],[-3,-94]],[[25321,11606],[56,49],[16,-131],[-115,-32],[-68,-116],[-124,81],[-42,-128],[-87,-2],[-10,116],[38,90],[83,6],[24,161],[22,91],[92,-122],[60,-39],[55,-24]],[[24368,10382],[42,70],[45,-14],[32,50],[58,-25],[9,-41],[-44,-71],[-32,38],[-40,-27],[-20,-69],[-51,34],[1,55]],[[18183,8422],[-57,-31],[-14,-52],[-2,-40],[-78,-49],[-125,-54],[-69,-81],[-34,-7],[-24,7],[-45,-49],[-50,-22],[-66,-6],[-20,-7],[-17,-31],[-20,-8],[-11,-29],[-39,2],[-25,-16],[-54,6],[-20,68],[2,64],[-12,33],[-16,86],[-22,49],[15,6],[-7,53],[9,22],[-4,51]],[[17378,8387],[35,37],[-8,49],[20,57],[32,-30],[21,11],[90,3],[14,-12],[75,-11],[30,6],[20,-40],[37,20],[55,122],[73,53],[224,45]],[[17817,9810],[31,-101],[38,-26],[13,-41],[54,-49],[4,-48],[-8,-39],[10,-40],[23,-32],[11,-38],[11,-29]],[[18050,9352],[14,-44]],[[17378,8387],[-10,50],[-23,35],[-7,47],[-40,41],[-41,98],[-22,96],[-55,80],[-34,18],[-52,112],[-9,80],[4,69],[-46,130],[-35,46],[-43,24],[-25,66],[3,27],[-21,60],[-24,26],[-30,87],[-47,94],[-39,80],[-39,0],[12,64],[3,39],[9,47]],[[16593,10578],[6,1],[12,28],[56,-2],[71,35],[-53,-50],[6,-22]],[[16691,10568],[-9,5],[-14,-9],[-12,2],[-4,-5],[-2,13],[-5,7],[-15,0],[-21,-9],[-16,6]],[[16691,10568],[3,-9],[-81,-47],[-37,14],[-19,48],[36,4]],[[12713,8978],[4,54],[30,32],[25,61],[-4,40],[27,82],[43,73],[27,20],[20,67],[2,63],[28,72],[52,42],[49,119],[1,2],[40,45],[73,13],[61,79],[39,31],[66,97],[-20,145],[30,101],[10,62],[50,78],[79,53],[58,49],[52,121],[24,71],[57,0],[48,-50],[74,9],[81,-27],[33,-1]],[[15991,9046],[0,429],[0,414],[-23,94],[20,72],[-11,51],[27,55]],[[16004,10161],[104,2],[76,-30],[75,-35],[37,-18],[60,36],[33,34],[67,10],[56,-15],[21,-58],[19,38],[63,-27],[60,-7],[39,29]],[[16714,10120],[0,0],[43,-170]],[[16757,9950],[8,-30],[-22,-47],[-17,-87],[-21,-61],[-18,-21],[-27,38],[-34,52],[-56,167],[-8,-11],[33,-123],[47,-116],[59,-182],[29,-63],[25,-66],[70,-130],[-16,-20],[3,-76],[91,-104],[13,-24]],[[14937,10345],[91,-41],[33,10],[65,-20],[104,-52],[36,-103],[70,-23],[111,-49],[83,-58],[38,31],[38,53],[-19,89],[24,57],[57,55],[54,16],[105,-24],[27,-52],[29,-1],[25,-20],[77,-14],[19,-38]],[[16794,7124],[-46,127],[-35,26],[-14,46],[-40,58],[-48,8],[27,66],[41,3],[12,36]],[[17345,7944],[-28,-52],[-26,-54],[6,-33],[1,-35],[44,-2],[18,8],[18,-20]],[[17378,7756],[-18,-42],[29,-65],[29,-56],[30,-41],[254,-139],[66,1]],[[17402,7963],[19,-37],[-4,-48],[-44,-28],[34,-32]],[[17407,7818],[-29,-62]],[[17407,7818],[25,-22],[15,-48],[36,-48],[39,-1],[72,30],[85,13],[69,37],[38,8],[29,21],[43,4],[0,0]],[[16413,6350],[-47,-36],[-19,12]],[[16445,6891],[33,32],[50,-26],[62,27],[56,0],[48,53]],[[15523,11710],[0,0],[28,0],[-19,-51],[38,-45],[-12,-55],[-18,-5]],[[15540,11554],[-14,-10],[-26,-26],[-11,-65]],[[15647,11361],[10,-1],[3,23],[47,19],[17,4]],[[15724,11406],[27,7],[36,2]],[[15724,11406],[-2,9],[8,14],[9,28],[-11,0],[-14,21],[-14,6],[-10,18],[-14,7],[-11,17],[-15,-6],[-10,-39],[-19,-9]],[[15621,11472],[7,10],[-30,24],[-26,13],[-11,15],[-21,20]],[[15552,11363],[-16,10],[-23,37],[-33,23]],[[15621,11472],[-14,-26]],[[9231,7736],[44,15],[17,-4],[-3,-87],[-65,-13],[-14,11],[22,32],[-1,46]],[[16765,9920],[-8,30]],[[16714,10120],[0,0],[22,39],[-5,7],[20,54],[16,88],[11,30],[2,1]],[[9832,7153],[27,-12],[58,-28],[82,-99],[13,-47]],[[14621,11574],[-72,-65],[-153,31],[-114,-37],[-9,-70]],[[13893,11543],[40,69],[16,232],[-81,123],[-57,59],[-119,46],[-8,85],[100,25],[132,-30],[-25,132],[74,-50],[179,91],[23,95],[69,23]],[[14723,11451],[50,44],[13,-100],[-25,-90],[-36,24],[-18,78],[16,44]]],"transform":{"scale":[0.012819599743608006,0.008579690715297886],"translate":[-180,-55.61183]},"objects":{"countries":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3]],"type":"Polygon","properties":{"iso":"USA","state":null}},{"arcs":[[4]],"type":"Polygon","properties":{"iso":"USA","state":"Hawaii"}},{"arcs":[[5]],"type":"Polygon","properties":{"iso":"USA","state":"Hawaii"}},{"arcs":[[6]],"type":"Polygon","properties":{"iso":"USA","state":"Hawaii"}},{"arcs":[[7]],"type":"Polygon","properties":{"iso":"USA","state":"Hawaii"}},{"arcs":[[8]],"type":"Polygon","properties":{"iso":"USA","state":"Hawaii"}},{"arcs":[[9]],"type":"Polygon","properties":{"iso":"USA","state":"Alaska"}},{"arcs":[[10]],"type":"Polygon","properties":{"iso":"USA","state":"Alaska"}},{"arcs":[[11,12]],"type":"Polygon","properties":{"iso":"USA","state":"Alaska"}},{"arcs":[[13]],"type":"Polygon","properties":{"iso":"USA","state":"Alaska"}},{"arcs":[[[14]],[[15]],[[16]]],"type":"MultiPolygon","properties":{"iso":"FJI","state":null}},{"arcs":[[17,18,19,20,21,22,23,24,25]],"type":"Polygon","properties":{"iso":"TZA","state":null}},{"arcs":[[26,27,28,29]],"type":"Polygon","properties":{"iso":"SAH","state":null}},{"arcs":[[[30,-12,31,-1]],[[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]]],"type":"MultiPolygon","properties":{"iso":"CAN","state":null}},{"arcs":[[61,62,63,64,65,66]],"type":"Polygon","properties":{"iso":"KAZ","state":null}},{"arcs":[[-64,67,68,69,70]],"type":"Polygon","properties":{"iso":"UZB","state":null}},{"arcs":[[[71,72]],[[73]],[[74]],[[75]]],"type":"MultiPolygon","properties":{"iso":"PNG","state":null}},{"arcs":[[[-73,76]],[[77,78]],[[79]],[[80,81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]]],"type":"MultiPolygon","properties":{"iso":"IDN","state":null}},{"arcs":[[[91,92]],[[93,94,95,96,97,98]]],"type":"MultiPolygon","properties":{"iso":"ARG","state":null}},{"arcs":[[[-93,99]],[[100,-96,101,102]]],"type":"MultiPolygon","properties":{"iso":"CHL","state":null}},{"arcs":[[-23,103,104,105,106,107,108,109,110,111,112]],"type":"Polygon","properties":{"iso":"COD","state":null}},{"arcs":[[113,114,115,116]],"type":"Polygon","properties":{"iso":"SOM","state":null}},{"arcs":[[-18,117,118,119,-114,120]],"type":"Polygon","properties":{"iso":"KEN","state":null}},{"arcs":[[121,122,123,124,125,126,127,128]],"type":"Polygon","properties":{"iso":"SDN","state":null}},{"arcs":[[-123,129,130,131,132]],"type":"Polygon","properties":{"iso":"TCD","state":null}},{"arcs":[[133,134]],"type":"Polygon","properties":{"iso":"HTI","state":null}},{"arcs":[[-134,135]],"type":"Polygon","properties":{"iso":"DOM","state":null}},{"arcs":[[[136]],[[137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,-67]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159,160,161]],[[162]],[[163]],[[164]],[[165]]],"type":"MultiPolygon","properties":{"iso":"RUS","state":null}},{"arcs":[[[166]],[[167]],[[168]]],"type":"MultiPolygon","properties":{"iso":"BHS","state":null}},{"arcs":[[169]],"type":"Polygon","properties":{"iso":"FLK","state":null}},{"arcs":[[[170]],[[-148,171,172,173]],[[174]],[[175]]],"type":"MultiPolygon","properties":{"iso":"NOR","state":null}},{"arcs":[[176]],"type":"Polygon","properties":{"iso":"GRL","state":null}},{"arcs":[[177]],"type":"Polygon","properties":{"iso":"ATF","state":null}},{"arcs":[[178,-78]],"type":"Polygon","properties":{"iso":"TLS","state":null}},{"arcs":[[179,180,181,182,183,184,185],[186]],"type":"Polygon","properties":{"iso":"ZAF","state":null}},{"arcs":[[-187]],"type":"Polygon","properties":{"iso":"LSO","state":null}},{"arcs":[[-3,187,188,189,190]],"type":"Polygon","properties":{"iso":"MEX","state":null}},{"arcs":[[191,192,-94]],"type":"Polygon","properties":{"iso":"URY","state":null}},{"arcs":[[-192,-99,193,194,195,196,197,198,199,200,201]],"type":"Polygon","properties":{"iso":"BRA","state":null}},{"arcs":[[-195,202,-97,-101,203]],"type":"Polygon","properties":{"iso":"BOL","state":null}},{"arcs":[[-196,-204,-103,204,205,206]],"type":"Polygon","properties":{"iso":"PER","state":null}},{"arcs":[[-197,-207,207,208,209,210,211]],"type":"Polygon","properties":{"iso":"COL","state":null}},{"arcs":[[-210,212,213,214]],"type":"Polygon","properties":{"iso":"PAN","state":null}},{"arcs":[[-214,215,216,217]],"type":"Polygon","properties":{"iso":"CRI","state":null}},{"arcs":[[-217,218,219,220]],"type":"Polygon","properties":{"iso":"NIC","state":null}},{"arcs":[[-220,221,222,223,224]],"type":"Polygon","properties":{"iso":"HND","state":null}},{"arcs":[[-223,225,226]],"type":"Polygon","properties":{"iso":"SLV","state":null}},{"arcs":[[-190,227,228,-224,-227,229]],"type":"Polygon","properties":{"iso":"GTM","state":null}},{"arcs":[[-189,230,-228]],"type":"Polygon","properties":{"iso":"BLZ","state":null}},{"arcs":[[-198,-212,231,232]],"type":"Polygon","properties":{"iso":"VEN","state":null}},{"arcs":[[-199,-233,233,234]],"type":"Polygon","properties":{"iso":"GUY","state":null}},{"arcs":[[-200,-235,235,236]],"type":"Polygon","properties":{"iso":"SUR","state":null}},{"arcs":[[-206,237,-208]],"type":"Polygon","properties":{"iso":"ECU","state":null}},{"arcs":[[238]],"type":"Polygon","properties":{"iso":"PRI","state":null}},{"arcs":[[239]],"type":"Polygon","properties":{"iso":"JAM","state":null}},{"arcs":[[240]],"type":"Polygon","properties":{"iso":"CUB","state":null}},{"arcs":[[-182,241,242,243]],"type":"Polygon","properties":{"iso":"ZWE","state":null}},{"arcs":[[-181,244,245,-242]],"type":"Polygon","properties":{"iso":"BWA","state":null}},{"arcs":[[-180,246,247,248,-245]],"type":"Polygon","properties":{"iso":"NAM","state":null}},{"arcs":[[249,250,251,252,253,254,255]],"type":"Polygon","properties":{"iso":"SEN","state":null}},{"arcs":[[-252,256,257,258,259,260,261]],"type":"Polygon","properties":{"iso":"MLI","state":null}},{"arcs":[[-28,262,-257,-251,263]],"type":"Polygon","properties":{"iso":"MRT","state":null}},{"arcs":[[264,265,266,267,268]],"type":"Polygon","properties":{"iso":"BEN","state":null}},{"arcs":[[-132,269,270,-268,271,-259,272,273]],"type":"Polygon","properties":{"iso":"NER","state":null}},{"arcs":[[-269,-271,274,275]],"type":"Polygon","properties":{"iso":"NGA","state":null}},{"arcs":[[-131,276,277,278,279,280,-275,-270]],"type":"Polygon","properties":{"iso":"CMR","state":null}},{"arcs":[[-266,281,282,283]],"type":"Polygon","properties":{"iso":"TGO","state":null}},{"arcs":[[-283,284,285,286]],"type":"Polygon","properties":{"iso":"GHA","state":null}},{"arcs":[[-261,287,-286,288,289,290]],"type":"Polygon","properties":{"iso":"CIV","state":null}},{"arcs":[[-253,-262,-291,291,292,293,294]],"type":"Polygon","properties":{"iso":"GIN","state":null}},{"arcs":[[-254,-295,295]],"type":"Polygon","properties":{"iso":"GNB","state":null}},{"arcs":[[-290,296,297,-292]],"type":"Polygon","properties":{"iso":"LBR","state":null}},{"arcs":[[-293,-298,298]],"type":"Polygon","properties":{"iso":"SLE","state":null}},{"arcs":[[-260,-272,-267,-284,-287,-288]],"type":"Polygon","properties":{"iso":"BFA","state":null}},{"arcs":[[-109,299,-277,-130,-122,300]],"type":"Polygon","properties":{"iso":"CAF","state":null}},{"arcs":[[-108,301,302,303,-278,-300]],"type":"Polygon","properties":{"iso":"COG","state":null}},{"arcs":[[-279,-304,304,305]],"type":"Polygon","properties":{"iso":"GAB","state":null}},{"arcs":[[-280,-306,306]],"type":"Polygon","properties":{"iso":"GNQ","state":null}},{"arcs":[[-22,307,308,-243,-246,-249,309,-104]],"type":"Polygon","properties":{"iso":"ZMB","state":null}},{"arcs":[[-21,310,-308]],"type":"Polygon","properties":{"iso":"MWI","state":null}},{"arcs":[[-20,311,-185,312,-183,-244,-309,-311]],"type":"Polygon","properties":{"iso":"MOZ","state":null}},{"arcs":[[-184,-313]],"type":"Polygon","properties":{"iso":"SWZ","state":null}},{"arcs":[[[-107,313,-302]],[[-105,-310,-248,314]]],"type":"MultiPolygon","properties":{"iso":"AGO","state":null}},{"arcs":[[-24,-113,315]],"type":"Polygon","properties":{"iso":"BDI","state":null}},{"arcs":[[316,317,318]],"type":"Polygon","properties":{"iso":"LBN","state":null}},{"arcs":[[319]],"type":"Polygon","properties":{"iso":"MDG","state":null}},{"arcs":[[-256,320]],"type":"Polygon","properties":{"iso":"GMB","state":null}},{"arcs":[[321,322,323]],"type":"Polygon","properties":{"iso":"TUN","state":null}},{"arcs":[[-27,324,325,-322,326,-273,-258,-263]],"type":"Polygon","properties":{"iso":"DZA","state":null}},{"arcs":[[327,328,329,330,331,332]],"type":"Polygon","properties":{"iso":"JOR","state":null}},{"arcs":[[333,334,335,336,337]],"type":"Polygon","properties":{"iso":"ARE","state":null}},{"arcs":[[338,339]],"type":"Polygon","properties":{"iso":"QAT","state":null}},{"arcs":[[340,341,342]],"type":"Polygon","properties":{"iso":"KWT","state":null}},{"arcs":[[-330,343,344,345,346,-343,347]],"type":"Polygon","properties":{"iso":"IRQ","state":null}},{"arcs":[[[-337,348,349,350]],[[-335,351]]],"type":"MultiPolygon","properties":{"iso":"OMN","state":null}},{"arcs":[[[352]],[[353]]],"type":"MultiPolygon","properties":{"iso":"VUT","state":null}},{"arcs":[[354,355,356,357]],"type":"Polygon","properties":{"iso":"KHM","state":null}},{"arcs":[[-355,358,359,360,361,362]],"type":"Polygon","properties":{"iso":"THA","state":null}},{"arcs":[[-356,-363,363,364,365]],"type":"Polygon","properties":{"iso":"LAO","state":null}},{"arcs":[[-362,366,367,368,369,-364]],"type":"Polygon","properties":{"iso":"MMR","state":null}},{"arcs":[[-357,-366,370,371]],"type":"Polygon","properties":{"iso":"VNM","state":null}},{"arcs":[[-150,372,373,374,375]],"type":"Polygon","properties":{"iso":"PRK","state":null}},{"arcs":[[-374,376]],"type":"Polygon","properties":{"iso":"KOR","state":null}},{"arcs":[[-152,377]],"type":"Polygon","properties":{"iso":"MNG","state":null}},{"arcs":[[-369,378,379,380,381,382,383,384,385]],"type":"Polygon","properties":{"iso":"IND","state":null}},{"arcs":[[-368,386,-379]],"type":"Polygon","properties":{"iso":"BGD","state":null}},{"arcs":[[-385,387]],"type":"Polygon","properties":{"iso":"BTN","state":null}},{"arcs":[[-383,388]],"type":"Polygon","properties":{"iso":"NPL","state":null}},{"arcs":[[-381,389,390,391,392]],"type":"Polygon","properties":{"iso":"PAK","state":null}},{"arcs":[[-70,393,394,-392,395,396]],"type":"Polygon","properties":{"iso":"AFG","state":null}},{"arcs":[[-69,397,398,-394]],"type":"Polygon","properties":{"iso":"TJK","state":null}},{"arcs":[[-63,399,-398,-68]],"type":"Polygon","properties":{"iso":"KGZ","state":null}},{"arcs":[[-65,-71,-397,400,401]],"type":"Polygon","properties":{"iso":"TKM","state":null}},{"arcs":[[-346,402,403,404,405,406,-401,-396,-391,407]],"type":"Polygon","properties":{"iso":"IRN","state":null}},{"arcs":[[408,-319,409,410,-344,-329]],"type":"Polygon","properties":{"iso":"SYR","state":null}},{"arcs":[[-405,411,412,413,414]],"type":"Polygon","properties":{"iso":"ARM","state":null}},{"arcs":[[-173,415,416]],"type":"Polygon","properties":{"iso":"SWE","state":null}},{"arcs":[[-143,417,418,419,420]],"type":"Polygon","properties":{"iso":"BLR","state":null}},{"arcs":[[-142,421,422,423,424,425,426,427,428,-418]],"type":"Polygon","properties":{"iso":"UKR","state":null}},{"arcs":[[-419,-429,429,430,431,432,-160,433]],"type":"Polygon","properties":{"iso":"POL","state":null}},{"arcs":[[434,435,436,437,438,439,440]],"type":"Polygon","properties":{"iso":"AUT","state":null}},{"arcs":[[-427,441,442,443,444,-435,445]],"type":"Polygon","properties":{"iso":"HUN","state":null}},{"arcs":[[-425,446]],"type":"Polygon","properties":{"iso":"MDA","state":null}},{"arcs":[[-424,447,448,449,-442,-426,-447]],"type":"Polygon","properties":{"iso":"ROU","state":null}},{"arcs":[[-420,-434,-162,450,451]],"type":"Polygon","properties":{"iso":"LTU","state":null}},{"arcs":[[-144,-421,-452,452,453]],"type":"Polygon","properties":{"iso":"LVA","state":null}},{"arcs":[[-145,-454,454]],"type":"Polygon","properties":{"iso":"EST","state":null}},{"arcs":[[-432,455,-439,456,457,458,459,460,461,462,463]],"type":"Polygon","properties":{"iso":"DEU","state":null}},{"arcs":[[-449,464,465,466,467,468]],"type":"Polygon","properties":{"iso":"BGR","state":null}},{"arcs":[[[469]],[[-467,470,471,472,473]]],"type":"MultiPolygon","properties":{"iso":"GRC","state":null}},{"arcs":[[[-345,-411,474,475,-413,-403]],[[-466,476,-471]]],"type":"MultiPolygon","properties":{"iso":"TUR","state":null}},{"arcs":[[-473,477,478,479,480]],"type":"Polygon","properties":{"iso":"ALB","state":null}},{"arcs":[[-444,481,482,483,484,485]],"type":"Polygon","properties":{"iso":"HRV","state":null}},{"arcs":[[-438,486,487,-457]],"type":"Polygon","properties":{"iso":"CHE","state":null}},{"arcs":[[-459,488,489]],"type":"Polygon","properties":{"iso":"LUX","state":null}},{"arcs":[[-460,-490,490,491,492]],"type":"Polygon","properties":{"iso":"BEL","state":null}},{"arcs":[[-461,-493,493]],"type":"Polygon","properties":{"iso":"NLD","state":null}},{"arcs":[[494,495]],"type":"Polygon","properties":{"iso":"PRT","state":null}},{"arcs":[[-495,496,497,498]],"type":"Polygon","properties":{"iso":"ESP","state":null}},{"arcs":[[499,500]],"type":"Polygon","properties":{"iso":"IRL","state":null}},{"arcs":[[501]],"type":"Polygon","properties":{"iso":"NCL","state":null}},{"arcs":[[[502]],[[503]],[[504]],[[505]],[[506]]],"type":"MultiPolygon","properties":{"iso":"SLB","state":null}},{"arcs":[[[507]],[[508]]],"type":"MultiPolygon","properties":{"iso":"NZL","state":null}},{"arcs":[[[509]],[[510]]],"type":"MultiPolygon","properties":{"iso":"AUS","state":null}},{"arcs":[[511]],"type":"Polygon","properties":{"iso":"LKA","state":null}},{"arcs":[[[512]],[[-62,-153,-378,-151,-376,513,-371,-365,-370,-386,-388,-384,-389,-382,-393,-395,-399,-400]]],"type":"MultiPolygon","properties":{"iso":"CHN","state":null}},{"arcs":[[514]],"type":"Polygon","properties":{"iso":"TWN","state":null}},{"arcs":[[[-437,515,516,517,-487]],[[518]],[[519]]],"type":"MultiPolygon","properties":{"iso":"ITA","state":null}},{"arcs":[[[-463,520]],[[521]]],"type":"MultiPolygon","properties":{"iso":"DNK","state":null}},{"arcs":[[[-501,522]],[[523]]],"type":"MultiPolygon","properties":{"iso":"GBR","state":null}},{"arcs":[[524]],"type":"Polygon","properties":{"iso":"ISL","state":null}},{"arcs":[[[-139,525,-406,-415,526]],[[-404,-412]]],"type":"MultiPolygon","properties":{"iso":"AZE","state":null}},{"arcs":[[-140,-527,-414,-476,527]],"type":"Polygon","properties":{"iso":"GEO","state":null}},{"arcs":[[[528]],[[529]],[[530]],[[531]],[[532]],[[533]],[[534]]],"type":"MultiPolygon","properties":{"iso":"PHL","state":null}},{"arcs":[[[-360,535]],[[-82,536,537,538]]],"type":"MultiPolygon","properties":{"iso":"MYS","state":null}},{"arcs":[[-538,539]],"type":"Polygon","properties":{"iso":"BRN","state":null}},{"arcs":[[-436,-445,-486,540,-516]],"type":"Polygon","properties":{"iso":"SVN","state":null}},{"arcs":[[-147,541,-416,-172]],"type":"Polygon","properties":{"iso":"FIN","state":null}},{"arcs":[[-428,-446,-441,542,-430]],"type":"Polygon","properties":{"iso":"SVK","state":null}},{"arcs":[[-431,-543,-440,-456]],"type":"Polygon","properties":{"iso":"CZE","state":null}},{"arcs":[[-127,543,544,545]],"type":"Polygon","properties":{"iso":"ERI","state":null}},{"arcs":[[[546]],[[547]],[[548]]],"type":"MultiPolygon","properties":{"iso":"JPN","state":null}},{"arcs":[[-194,-98,-203]],"type":"Polygon","properties":{"iso":"PRY","state":null}},{"arcs":[[-350,549,550]],"type":"Polygon","properties":{"iso":"YEM","state":null}},{"arcs":[[-331,-348,-342,551,-340,552,-338,-351,-551,553]],"type":"Polygon","properties":{"iso":"SAU","state":null}},{"arcs":[[554,555]],"type":"Polygon","properties":{"iso":"CYP","state":null}},{"arcs":[[-556,556]],"type":"Polygon","properties":{"iso":"CYP","state":null}},{"arcs":[[-325,-30,557]],"type":"Polygon","properties":{"iso":"MAR","state":null}},{"arcs":[[-125,558,559,560,561]],"type":"Polygon","properties":{"iso":"EGY","state":null}},{"arcs":[[-124,-133,-274,-327,-324,562,-559]],"type":"Polygon","properties":{"iso":"LBY","state":null}},{"arcs":[[-115,-120,563,-128,-546,564,565]],"type":"Polygon","properties":{"iso":"ETH","state":null}},{"arcs":[[-545,566,567,-565]],"type":"Polygon","properties":{"iso":"DJI","state":null}},{"arcs":[[-116,-566,-568,568]],"type":"Polygon","properties":{"iso":"SOM","state":null}},{"arcs":[[-26,569,-111,570,-118]],"type":"Polygon","properties":{"iso":"UGA","state":null}},{"arcs":[[-25,-316,-112,-570]],"type":"Polygon","properties":{"iso":"RWA","state":null}},{"arcs":[[-483,571,572]],"type":"Polygon","properties":{"iso":"BIH","state":null}},{"arcs":[[-468,-474,-481,573,574]],"type":"Polygon","properties":{"iso":"MKD","state":null}},{"arcs":[[-443,-450,-469,-575,575,576,-572,-482]],"type":"Polygon","properties":{"iso":"SRB","state":null}},{"arcs":[[-479,577,-484,-573,-577,578]],"type":"Polygon","properties":{"iso":"MNE","state":null}},{"arcs":[[-480,-579,-576,-574]],"type":"Polygon","properties":{"iso":"KOS","state":null}},{"arcs":[[579]],"type":"Polygon","properties":{"iso":"TTO","state":null}},{"arcs":[[-110,-301,-129,-564,-119,-571]],"type":"Polygon","properties":{"iso":"SDS","state":null}},{"arcs":[[-328,-333,580,-561,581,-317,-409]],"type":"Polygon","properties":{"iso":"ISR","state":null}},{"arcs":[[-201,-237,582]],"type":"Polygon","properties":{"iso":"GUF","state":null}},{"arcs":[[-458,-488,-518,583,-498,584,-491,-489]],"type":"Polygon","properties":{"iso":"FRA","state":null}},{"arcs":[[585]],"type":"Polygon","properties":{"iso":"FRA","state":null}}]}}}
|